@charset "UTF-8";
/* CSS Document */

*,*::before,*::after{
margin: 0;
padding: 0;
box-sizing: border-box;
box-decoration:1px solid #000;
}

html, body {
  max-width: 100%;
  overflow-x: clip;   /* 新しめのブラウザ向け */
  overflow-x: hidden; /* 互換用の保険 */
}

body{
min-width: 0;
background-color: #d1eaf7;
font-family: "noto-sans-jp-", sans-serif;
overflow-x: hidden;
margin: 0 auto;
}
@media (max-width:767px){
body{
min-width:auto;
}
}

.noto-sans-jp- {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img{
max-width: 100%;
height: auto;
vertical-align: bottom;
}

.container{
max-width: 1080px;
margin: 0 auto;
}
@media (max-width:767px){
.container{
width:90%;
}
}

.slick-prev, .slick-next { display: none !important; }
.gallery__slider .slick-prev,
.gallery__slider .slick-next { display: block !important; }
.bnr__slider .slick-prev,
.bnr__slider .slick-next { display: block !important; }

iframe{
vertical-align: middle;
}


header{
height: 80px;
align-items: center;
}

header .container{
display: flex;
justify-content: space-between;
align-items: center;
}

h1{
width: 200px;
}

h1 img{
}

nav{
}

nav ul{
display: flex;
list-style: none;
justify-content: flex-end;
align-content: center;
}

nav a{
color: #000;
display: block;
text-decoration: none;
padding: 20px;
}
@media (max-width:767px){
nav a{
padding:5px;
}
}

nav a:hover{
text-decoration: underline;
}

/* PCではボタンを隠す */
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 6px; line-height: 1; color: #111; cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid #000; outline-offset: 2px; }

/* スマホ幅で切り替え */
@media (max-width: 767px) {
  /* ボタンを表示 */
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  /* navは初期非表示のオーバーレイ */
  #site-nav {
    position: fixed; left: 0; right: 0; top: 80px; bottom: 0;
    background: rgba(209,234,247,0.5);
	backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none; translate: 0 -8px;
    transition: opacity .2s ease, translate .2s ease;
    z-index: 999; padding: 16px 20px;
  }
  #site-nav ul { display: grid; gap: 16px; }
  #site-nav a { display: block; font-size: 18px; padding: 10px 4px; }

  /* 開いたとき（JSが付与） */
  #site-nav.is-open { opacity: 1; pointer-events: auto; translate: 0 0; }

  /* 背景スクロール停止 */
  body.menu-open { overflow: hidden; }
}

/* クリック貫通防止（必要なら） */
header { position: relative; z-index: 1000; }


main{
}

section h2{
font-size: 32px;
margin-bottom: 16px;
}

section p{
margin-bottom: 16px;
}



.main-visual {
 position: relative;
 width: 100%;
 height: 100vh;
 overflow: hidden;
}

.main-visual video {
 position: absolute;
 top: 50%;
 left: 50%;
 min-width: 100%;
 min-height: 100%;
 transform: translate(-50%, -50%);
 object-fit: cover;
}

.main-logo {
position: absolute;
top: 50%;       /* 縦位置の中央 */
left: 50%;      /* 横位置の中央 */
transform: translate(-50%, -50%);
height: calc(60vh - 80px);    /* ロゴの大きさ（調整可） */
z-index: 2;     /* 動画より前面に表示 */
}

/* ヒーローを前面にして下の要素をフタする */
.main-visual { position: relative; z-index: 10; }

/* ヒーロー内に slick UI が来ても出さない（保険） */
.main-visual .slick-prev,
.main-visual .slick-next,
.main-visual .slick-dots { display: none !important; }

.bnr{
padding: 50px 0;
}

.bnr-sp{
display: none;
}

@media(max-width:767px){
.bnr-pc{
display: none;
}
.bnr-sp{
display: block;
}
}

.bnr_image ul{
display: flex;
list-style: none;
justify-content: space-between;
}
@media(max-width:767px){
.bnr_image ul{
display: block;
}}

.bnr_image li{
width: 320px;
height: 160px;
text-align: center;
text-decoration: none;
}

.bnr_image img{
border-radius: 20px;
overflow: hidden;
}

.bnr__slider .slick-slide{
width: 300px;
margin: 10px 10px;
border-radius: 20px;
overflow: hidden;
}

.btn{
margin-top: 40px;
display: flex;
}

.btn a{
  display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
color:#fff;
border-radius: 20px;
overflow: hidden;
padding: 10px 50px;
text-decoration: none;
line-height: 1.8;
text-decoration-line: none;
transition: 0.3s ease-in-out;
font-weight: 500;
background: linear-gradient(270deg, #62C1BE 0%, #62C1BE 25%, #3FA1A7 51%, #1389AB 100%);
background-position: 1% 50%;
background-size: 200% auto;
transition: all 0.3s ease-out;
}

.btn a:hover {
    color: #fff;
    background-position: 99% 50%;
    transform: scale(1.05);
    /*ボックスの影*/  
    box-shadow: 0 15px 15px rgba(87,111,230,0.4);
}
.btn a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.media{
padding: 50px 0;
}


.mediaCard{
display: flex;
justify-content: space-between;
align-items: center;
}
@media(max-width:767px)
{
.mediaCard{
display:block;
}
}

.mediaCard__video{
width: 640px;
}
@media(max-width:767px)
{
.mediaCard__video{
width: 100%;
height: auto;
aspect-ratio: 16 / 9
}
}

.mediaCard__video iframe{
width: 640px;
height: 360px;
}
@media(max-width:767px)
{
.mediaCard__video iframe{
width: 100%;
height: auto;
aspect-ratio: 16 / 9
}
}

.mediaCard__text{
width: 400px;
}
@media(max-width:767px)
{
.mediaCard__text{
width: 90%;
margin: 0 auto;
}
}

.interior{
padding: 50px 0;
}

.interiorList{
display: flex;
list-style: none;
justify-content: space-between;
}
@media(max-width:767px)
{
.interiorList{
display:block;
margin: 0 auto;
}
}

.interiorList li{
width: 300px;
}
@media(max-width:767px)
{
.interiorList li{
width: 90%;
margin:30px auto;
}
}

.interiorList__image{
width: 240px;
border-radius: 10px;
overflow: hidden;
margin: 0 auto 30px;
}
@media(max-width:767px)
{
.interiorList__image{
width: 90%;
margin: 0 auto;
}
}

.interiorList h3{
text-align: center;
margin-bottom: 16px;
}
@media(max-width:767px)
{
.interiorList h3{
margin: 16px;
}
}

@media(max-width:767px)
{
.interiorList p{
margin:0 auto;
}
}

interior a{
text-align:center; 
}

@media(max-width:767px)
{
.pc-br{
display:none;
}
}

.gallery{
padding: 50px 0;
}

.gallery__slider .slick-slide{
width: 560px;
margin: 0 30px;
border-radius: 20px;
overflow: hidden;
}
@media(max-width:767px){
.gallery__slider .slick-slide{
width:300px;
margin: 0 10px;
}
}

.gallery p{
text-align:center; 
}

main h2{
text-align: center;
}


footer{
padding: 60px 0;
}


.footer__logo{
height: 220px;
display: flex;
justify-content: center;
align-items: center;
}

.footer__logo img{
width: 320px;
}

footer ul{
display: flex;
list-style: none;
justify-content: center;
margin-bottom: 20px;
}

footer li{
padding: 0 20px;
border-left:1px solid #000;
border-right: 1px solid #000;
margin-left:-1px;
}

footer a{
color: #000;
text-decoration: none;
}

footer a:hover{
text-decoration: underline;
}

footer a:visited{
color: #000;
}

footer p{
text-align: center;
}

.footer-pdf {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: center;    /* 中央揃え */
  margin: 1em 0;
}

.footer-pdf a {
  display: inline-flex;  
  align-items: center;
  gap: .5em;
  text-decoration: none;
  color: inherit;
}

.footer-pdf .pdf-icon {
  font-size: 1.3em;
}

.footer-pdf .pdf-note {
  margin-top: .3em;  /* 上のリンクと少し間隔 */
  font-size: 0.9em;
  color: #666;       /* 補足っぽくグレー */
}

/* まずデフォルトfocusは消す */
a:focus { outline: none; }

/* キーボード操作のときだけ見える枠を定義（アクセシビリティ配慮） */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* タッチ環境ではfocus-visibleも消す（好みに応じて） */
@media (hover: none) and (pointer: coarse) {
  a:focus-visible { outline: none; }
}

/* iOSのタップ時の薄いハイライトも消す */
a, button { -webkit-tap-highlight-color: transparent; }

/* ==== タッチ端末限定でフォーカス枠を消す（ページ末尾に追記） ==== */
@media (hover: none) and (pointer: coarse) {
  /* グローバルに保険をかける */
  *:focus { outline: none !important; }
  a:focus-visible { outline: none !important; }

  /* iOSのタップハイライトも無効化 */
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ヘッダーナビだけピンポイントで消したい場合（任意・併用可） */
.site-nav a:focus,
.site-nav a:active,
.site-nav a:focus-visible { outline: none !important; }

/* タップ時に枠線が出る指定が紛れていないかの対策 */

.site-nav a { border: none; box-shadow: none; }
.site-nav a:hover,
.site-nav a:active { border: none; box-shadow: none; }

/* ヘッダーの左右振り分けを強制（トップでも崩れないように） */
header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .site-logo { flex: 0 0 auto; }
header .site-nav  { margin-left: auto; }  /* これで確実に右端へ */
header { text-align: unset; }             /* 万が一の中央寄せを無効化 */