@charset "utf-8";

@font-face {
  font-family: 'AngelicaC'; /* フォント名 */
  src: url('../assets/AngelicaC.woff2?v=0') format('woff2'),
       url('../assets/AngelicaC.woff?v=0') format('woff'),
       url('../assets/AngelicaC.ttf?v=0')   format('truetype'); /* 通常のフォントファイル */
  font-weight: normal; /* 通常のウェイト */
  font-style: normal; /* 通常のスタイル */
}


html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*以上がリセットCSS*/


/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  font-family: 'AngelicaC', fot-klee-pro, sans-serif;
  background-color: #a2212a;
  font-weight: 600;
  font-style: normal;
}

/* 外枠グラデーション */
.border-wrapper {
  position: relative;
  height: 100vh;
  padding: 0;
}

.border-wrapper.show-border::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  pointer-events: none;
  background: linear-gradient(to right, #B67D3B, #C4A47F);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hide-border::before {
  display: none;
}

/* --- iOS端末向けにdvh対応（必要なら） --- */
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 1024px) and (orientation: portrait) {
    .menu-center,
    .menu-center.overlay-version {
      height: 100dvh;
    }
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* nav-left/nav-right の項目間隔を少し狭く */
.menu-overlay .overlay-nav-row .nav-left,
.menu-overlay .overlay-nav-row .nav-right {
  gap: 2rem !important;
}

/* ×ボタンと隣接する項目には最低1emの余白を確保 */
.menu-overlay .overlay-nav-row .nav-left a:last-child {
  margin-right: 1em !important;
}
.menu-overlay .overlay-nav-row .nav-right a:first-child {
  margin-left: 1em !important;
}
}

/* 中央縦固定メニュー */
.menu-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  color: #B38A5A;
  font-family: 'AngelicaC';
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 25px 0;
  pointer-events: none;/* 全体はスルー */
}

.top-link,
.bottom-label {
  font-size: 20px;
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  color: #B38A5A;
  text-decoration: none;
}

.bottom-label {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 600;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icon .line {
  width: 30px;
  height: 2.5px;
  background: #B38A5A;
  margin-bottom: 2px;
}

.menu-icon .eight {
  font-size: 48px;
  color: #B38A5A;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.menu-icon:hover .eight {
  transform: rotate(90deg) translateX(-3px) translateY(2px);
}

.menu-label {
  font-size: 16px;
  color: #B38A5A;
  margin-top: -2px;
}

.menu-center .top-link,
.menu-center .menu-icon {
  pointer-events: auto; /* この3つだけは有効に */
}

/* News リンク本体を相対配置に */
.nav-link--news {
  position: relative;
  display: inline-block;     /* 必要に応じて */
}

/* + を小さく・右上に */
.nav-link--news-plus {
  position: absolute;
  top: 0;                    /* 親要素の上端 */
  right: -0.7em;             /* 文字 1 つ分くらい右へ */
  font-size: 0.7em;          /* 本文の60% サイズ */
  line-height: 0.9;            /* 高さを合わせる */
}

/* スクロールエリア */
.scroll-container {
  height: 100svh;                   /* 最新ブラウザでの正確なビューポート高さ */
  height: 100vh;                    /* フォールバック */
  overflow-y: auto;                 /* スクロール可能に */
  overflow-x: hidden;               /* 横スクロールを無効化 */
  scroll-snap-type: y mandatory;    /* 垂直方向に強制スナップ */
  overscroll-behavior-y: contain;   /* バウンス時の伝播抑制 */
  scroll-behavior: smooth;          /* 滑らかなスクロール */
  -webkit-overflow-scrolling: auto; /* iOS慣性スクロールを無効化 */
}

/* 各スナップ要素 */
.snap {
  height: 100svh;       /* セクションをビューポートいっぱいに */
  height: 100vh;        /* フォールバック */
  scroll-snap-align: start;  /* 上端揃えでスナップ */
  scroll-snap-stop: always;  /* 大きなスクロールでも必ず止める */
}

.slide-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-1, .right-1 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.catch {
  max-width: 72%;
  height: auto;
  margin-bottom: 20vh;
  margin-right: 5px;
  padding-right: 5%;
  margin-top: -20px;
}

.logo-1 {
  max-width: 26%;
  height: auto;
}

.hero-video {
  max-height: 90vh;
  max-width: 90%;
  object-fit: cover;
}

/* 予約ボタン */
.reserve-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  z-index: 2300;
  cursor: pointer;
  transform: translate(-20px, -20px);
  fill: #fff;
  color: #fff;
}

.reserve-button svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.reserve-button.dark-mode svg,
.reserve-button.dark-mode text {
  fill: #a2212a;
  color: #a2212a;
}

.reserve-button text {
  fill: #fff;
  letter-spacing: 2px;
}

.reserve-button svg g.rotate-text {
  animation: spin-text 20s linear infinite;
  transform-origin: center center;
}

@keyframes spin-text {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* オーバーレイメニュー */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #a2212a;
  display: none;
  z-index: 2000;
}

.menu-overlay.active {
  display: block;
}

/* メニューオーバーレイが開いているときは常に白系で固定 */
.menu-overlay.active ~ .reserve-button {
  background-color: white !important;
  color: #a2212a !important;
}

.menu-overlay .menu-center.overlay-version {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: 'AngelicaC';
  z-index: 2100;
}

.menu-overlay .menu-center .top-link,
.menu-overlay .menu-center .bottom-label {
  writing-mode: vertical-rl;
  font-size: 20px;
  color: white;
}

.menu-overlay .menu-center .bottom-label {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 600;
}

/* × ボタン単体表示 */
.menu-overlay .menu-close {
  position: fixed;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 64px;
  color: white;
  cursor: pointer;
  z-index: 2200;
  font-family: 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 100;
  text-decoration: none;
}



/* 横並びのメニュー配置 */
.overlay-nav-row {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -51%);
  width: 85%;
  display: flex;
  justify-content: space-between;
  z-index: 2100;
  padding: clamp(120px, 18vh, 220px) 0;
}

.overlay-nav-row .nav-left,
.overlay-nav-row .nav-right {
  display: flex;
  flex-direction: row;
  
}
.overlay-nav-row .nav-left{
    margin: 0;
    transform: translateX(-5%);
    gap: clamp(1vw, 6vw, 150px);
  }
  .overlay-nav-row .nav-right {
    margin: 0;
    transform: translateX(-2%);
    gap: clamp(1vw, 8vw, 150px);
  }

.overlay-nav-row a {
    color: white;
    font-size: 20px;
    font-family: 'Times New Roman',     /* 英語用（スペース必ずクオート） */
    fot-klee-pro,          /* 日本語用（ハイフンのみならクオート省略可） */
    sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
  }

/* セカンドビュー */
.second-view .content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.second-view .left-2,
.second-view .right-2 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-view .left-2 {
  background-color: #a2212a;
}

.second-video {
  max-width: 95%;
  max-height: 95%;
  object-fit: cover;
  margin-left: 5vw;
}

.second-view .right-2 {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 13vw;
  color: white;
  text-align: left;
}

.second-view .headline {
  font-size: 1.8vw;
  margin-bottom: 30px;
  font-family: fot-klee-pro, sans-serif;
  color: #B38A5A;
  white-space: nowrap;
}

.tight-kakko-head {
  display: inline-block;
  margin-left: -0.6em; /* ← 詰め具合はここで調整 */
}

.second-view .description {
  font-size: 1vw;
  line-height: 2;
  margin-bottom: 12vh;
  font-family: fot-klee-pro, sans-serif;
  white-space: nowrap;
}

.second-view .logo-2 {
  width: 10vw;
  height: auto;
}

.description {
  letter-spacing: 0.1em; /* ← 全体の文字間を広げる */
  line-height: 2; /* ← 行間を広げる */
}

.tight-kakko-body {
  display: inline-block;
  margin-left: -0.5em; /* ← これが「の前」の余白を縮める */
}


/*3枚目のビュー*/
.third-view {
  background-color: #e8e9e9;
  color: #a2212a;
}

.third-view .content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-3, .right-3 {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-3 .text-box {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 5%;
}

.left-3 .intro {
  font-size: 1vw;
  margin-bottom: 10px;
  letter-spacing: 0.1em; /* ← 文字間を広げる */
}

.left-3 .intro .strong {
  font-size: 2.6vw;
  font-weight: bold;
}

.left-3 .body {
  font-size: 1vw;
  line-height: 2.4; /* ← 読みやすく広げる */
  letter-spacing: 0.1em; /* ← 文字間を広げる */
  margin-bottom: 40px;
  white-space: nowrap;
}

.left-3 .more-button {
  align-self: flex-end; /* ← 親flex方向に対して右揃え */
}



.more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.more-button .circle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #B38A5A;
  border-radius: 50%;
  left: 0; /* Mの左端に合わせる */
  top: 22%; /* Mの下に食い込む位置調整 */
  transform: translate(-50%, -50%);
  z-index: 0; /* Mの下に潜らせる */
}

.more-button .text {
  position: relative;
  z-index: 1; /* Mの上に見せる */
  font-family: 'Times New Roman', serif;
  font-size: 20px;
}

.more-button .arrow {
  font-size: 28px;
  margin-left: 2px;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.right-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-single {
  max-width: 80%;
  height: auto;
  width: 70%;
}

/* 4枚目のビュー */
.section-4 {
  background-color: #a2212a;
  color: white;
}

.content-wrapper-4 {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-4, .right-4 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-4 {
  max-width: 60%;
  height: auto;
}


.right-4 {
  display: flex;
  flex-direction: column;
  align-items: center;     /* ← 横方向中央に */
  justify-content: center; /* ← 縦方向中央に */
  text-align: center;      /* ← テキストも中央揃え */
  padding: 0 10%;
  height: 100%;
  transform: translateY(40px);
}



.title-4 {
  font-size: 3vw;
  color: #B38A5A;
  margin-bottom: 25px;
  font-family: 'AngelicaC', sans-serif; /* ← 修正済み */
  letter-spacing: 0.2em; /* ← 文字間を広げる */
}


.text-4 {
  font-size: 1.3vw;
  line-height: 1.3;
  color: white;
  margin-bottom: 100px;
}

.button-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  background-color: #B38A5A;
  color: #a2212a;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button-4 .label-4 {
  margin-right: 10px;
  margin-top: 5px;
}

.arrow-4 {
  display: inline-block;
  width: 24.5px;
  height: 1.6px;
  background-color: #a2212a;
  position: relative;
  transition: background-color 0.3s ease;
}

.arrow-4::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1.6px solid #a2212a;
  border-bottom: 1.6px solid #a2212a;
  transition: border-color 0.3s ease;
}

.button-4:hover {
  background-color: transparent;
  color: #B38A5A;
  border: 2px solid #B38A5A;
}

.button-4:hover .arrow-4 {
  background-color: #B38A5A;
}

.button-4:hover .arrow-4::after {
  border-color: #B38A5A;
}

/* 5枚目のビュー */
/* レイアウト */
.section-5 {
  background-color: #e8e9e9;
  color: #a2212a;
}

.content-wrapper-5 {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-5, .right-5 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.left-5 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
}

.inner-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;      /* ← 全体右揃え */
  text-align: right;
  padding-right: 20px;        /* ← やや内側に */
  max-width: 100%;
  box-sizing: border-box;
  height: 80%;      
}

.top-block-5 {
  margin-bottom: 60px;
  text-align: right;
  align-self: flex-end;
  max-width: 100%;           /* ← 念のため追加 */
  width: 100%;               /* ← これで余白内に収まるようにする */
  box-sizing: border-box;    /* ← padding等のずれ防止 */
}

.title-5 {
  font-size: 2.5vw;
  color: #a2212a;
  font-family: 'AngelicaC', sans-serif;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  margin-right: 10px;
}

.subtitle-5 {
  font-size: 1.8vw;
  color: #B38A5A;
  white-space: nowrap;
margin-bottom: 120px;
  letter-spacing: -0.03em;
margin-left: -20px;
}

.body-block-5 {
  text-align: right;
  align-self: flex-end;
}

.text-5 {
  font-size: 1.1vw;
  line-height: 2;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

/* Moreボタン構成（3枚目と一致） */
.button-5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #a2212a;
  text-decoration: none;
  position: relative;
  padding-left: 30px;
  margin-right: 20px;
}

.circle-5 {
  width: 20px;
  height: 20px;
  background-color: #B38A5A;
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 30%;
  transform: translateY(-70%); 
}

.button-5 .label-5 {
  margin-right: 10px;
  font-family: 'Times New Roman', serif;
  font-size: 20px;
  position: relative;
  z-index: 1; /* Mの上に見せる */
  color: #a2212a;
  }

.arrow-5 {
  display: inline-block;
  width: 30px;
  height: 1.4px;
  background-color: #a2212a;
  position: relative;
  margin-left: 2px;
}

.arrow-5::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1.4px solid #a2212a;
  border-bottom: 1.4px solid #a2212a;
}


/* 画像側 */
.right-5 {
  align-items: center;
  justify-content: center;
  padding-left: 30px; /* ← これが中央メニュー対策 */
}

.image-5 {
  max-width: 65%;
  height: auto;
}

/* 6枚目のビュー */
.section-6 {
  background-color: #a2212a;
  color: white;
}

.content-wrapper-6 {
  display: flex;
  height: 100%;
}

.left-6, .right-6 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-video-6 {
  max-width: 80%;
  height: auto;
  padding-right: 10px;
  margin-right: 4%;
}

.right-6 {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 130px;
  position: relative;
}

.top-right-6 {
  align-self: flex-end;
  padding-right: 15%;
  text-align: right;
}

.title-6 {
  font-size: 2.8vw;
  font-family: 'AngelicaC', sans-serif;
  margin-bottom: 15px;
  color: white;
  margin-right: 12px;
}

.subtitle-6 {
  font-size: 1.6vw;
  color: #b38a5a;
}

.center-right-6 {
  margin-top: 80px;
  text-align: left;
  transform: translateY(50px);
}

.lead-6 {
  font-size: 1.1vw;
  margin-bottom: 60px;
  color: white;
  margin-left: 15px;
}

.icon-list-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← 中央揃え → 左揃えに変更！ */
  gap: 45px;
  padding-left: 10px; /* ← 視覚的に少し内側に寄せてもOK */
}


.icon-line-6 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-6 {
  width: 4vw;
  height: 6vh;
  object-fit: contain;
}

.icon-text-6 {
  font-size: 1.4vw;
  color: white;
}

/* 7枚目のビュー */
.section-7 {
  background-color: #e8e9e9;
}

.content-wrapper-7 {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-7{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(15%);
}

.right-7 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-7 {
  max-width: 60%;
  height: auto;
}


/*8枚目のビュー*/
.section-8 {
  background-color: #a2212a;
}

.content-wrapper-8 {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-8 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* ← 左要素右寄せ */
  padding-right: 7%;
  position: relative;
}

.right-8 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 左の中央部分 */
.left-main-8 {
  display: flex;
  align-items: center;
  gap: 6vw;
  margin-bottom: 40px;
}

.domain-8 {
  font-size: 1.8vw;
  font-family: 'Times New Roman', serif;
  font-weight: lighter;
  color: white;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-left: 10px; /* ← これが「の前」の余白を縮める */
  width: 35%; /* ← これで「の前」の余白を縮める */
  max-width: 35%;
  height: auto;
  transform: translateX(01vw);margin-right: 1vw; /* ← これが「の前」の余白を縮める */
}

.sns-icons-8 {
  display: flex;
  gap: 3.5vw; /* ← アイコン同士の間隔広めに */
  margin-left: 0vw;
}

.sns-icon-8 {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ロゴ中央 */
.right-8 {
  justify-content: center;
  align-items: center;
}

.logo-8 {
  max-width: 25%;
  height: auto;
}

/* リンクを横並び＆同じ高さに */
.link-group-8 {
  position: absolute;
  bottom: 30px;
  right: 15%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  height: 2vh;
  transform: translate(2%,-3%);
}

.link-group-8 a {
  display: inline-block;
  font-size: clamp(10px, 1.6vw, 16px);
  color: white;
  text-decoration: none;
  line-height: 1;
  
}

.link-group-8 a:hover {
  text-decoration: underline;
}



@media screen and (min-width: 768px) and (max-width: 1024px) {
  .domain-8 {
    width: 50%; /* ← これで「の前」の余白を縮める */
    max-width: 35%;
    height: auto;
    transform: translateX(15px);
    
    font-size: 2.2vw;
  }
  .left-main-8 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10vw;
    margin-bottom: 40px;
    flex-direction: column;
    transform: translateX(-34%);
  }
  .sns-icons-8 {
    display: flex;
    gap: 5vw; /* ← アイコン同士の間隔広めに */
    margin-left: 0vw;
  }
}

/* ============ Mobile 一覧レイアウト（max-width:768px） ============ */
@media screen and (max-width: 768px) {

  /* 1. 予約ボタンを左下に */
  .reserve-button {
    right: auto !important;
    left: 20px !important;
    bottom: 20px !important;
    transform: none !important;
  }

  .reserve-button {
    width: 80px !important;
    height: 80px !important;
  }
  .reserve-button svg {
    width: 100% !important;
    height: 100% !important;
  }

  .menu-center {
    position: static !important;
    display: block   !important;
    transform: none  !important;
  }

  /* ── 上端リンクを画面上端に固定 ── */
  .menu-center .top-link {
    position: fixed    !important;
    top:      10px        !important;
    right:    18px      !important;
    z-index: 10000     !important;
    white-space: nowrap!important;
    font-size:   14px  !important;
    line-height: 1     !important;
    margin:      0     !important;
    padding:     4px 0 !important;
  }

  /* ── ハンバーガーを画面縦中央に固定 ── */
  .menu-center .menu-icon {
    position: fixed    !important;
    top:      50%      !important;
    right:    18px      !important;
    transform: translateY(-50%) !important;
    z-index: 10000     !important;
    display: flex      !important;
    flex-direction: column!important;
    align-items:    center   !important;
    margin:         0        !important;
    padding:        0        !important;
  }
  .menu-center .menu-icon .line {
    width:  20px !important;
    height: 2px  !important;
    margin: 1px 0 !important;
  }
  .menu-center .menu-icon .eight {
    font-size:   32px !important;
    line-height: 1    !important;
  }
  .menu-center .menu-icon .menu-label {
    font-size:   10px !important;
    line-height: 1     !important;
    white-space: nowrap!important;
    margin:      1px 0 !important;
    padding:     0     !important;
  }

  /* ── 下端ラベルを画面下端に固定 ── */
  .menu-center .bottom-label {
    position: fixed    !important;
    bottom:   10px        !important;
    right:    18px      !important;
    z-index: 10000     !important;
    white-space: nowrap!important;
    font-size:   14px  !important;
    line-height: 1     !important;
    margin:      0     !important;
    padding:     4px 0 !important;
  }




  /* 3. 全スライドを縦レイアウトに切り替え */
  .slide-content,
  .content-wrapper,
  .content-wrapper-4,
  .content-wrapper-5,
  .content-wrapper-6,
  .content-wrapper-7,
  .content-wrapper-8 {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  /* 各カラムを幅100%に */
  .slide-content > div,
  .content-wrapper > div,
  .content-wrapper-4 > div,
  .content-wrapper-5 > div,
  .content-wrapper-6 > div,
  .content-wrapper-7 > div,
  .content-wrapper-8 > div {
    width: 100% !important;
  }

/* ─── 1枚目：モバイル動画を背景 full-screen＋暗めオーバーレイ ─── */
.snap1 {
  position: relative !important;
  overflow: hidden !important;
  height: 100vh !important;
  background: none !important;
}
/* デスクトップ用は隠す */
.snap1 video.hero-video-desktop {
  display: none !important;
}
/* モバイル用を full-screen＋フィルター */
.snap1 video.hero-video-mobile {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
 /* 横×縦ともに画面を覆う設定 */
 min-width: 100% !important;
 min-height: 100% !important;
 width: auto !important;
 height: auto !important;
  object-fit: cover !important;
  min-height: 100vh !important;
  transform: translate(-50%, -50%) !important;
pointer-events: auto !important;
  filter: brightness(0.4) !important;  /* 暗めフィルター */
  z-index: 0 !important;               /* 最背面 */
}
/* ─── キャッチ＆ロゴを最前面・中央固定 ─── */
.snap1 .slide-content .left-1 {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;              /* 動画より前面 */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.snap1 .slide-content {
  /* 親コンテナがタップをブロックしないように */
  pointer-events: none !important;
}

/* ─── 1.5枚目：もともと1枚目のモバイル動画を幅60％で中央配置 ─── */
.snap1-5 {
  position: relative !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.snap1-5 video.hero-video-mobile {
  display: block !important;
  width: 80% !important;
  height: auto !important;
  object-fit: cover !important;
  z-index: 1 !important;
  transform: translate(-3%,-5%);
}
  
  /* 念のため、他のスナップにも干渉しないよう */
  .snap2  video.hero-video-mobile,
  .snap3  video.hero-video-mobile,
  .snap4  video.hero-video-mobile,
  .snap5  video.hero-video-mobile {
    display: none !important;
  }


.snap2 .content-wrapper {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;      /* 縦中央揃え */
  align-items: flex-start !important;      /* 左揃え */
  padding: 16px !important;
  gap: 20px !important;                    /* 項目間隔 20px */
  transform: translate(-10%, -5%) !important;  /* 左へ10%移動 */
  box-sizing: border-box;
}

/* 右コンテンツをテキスト幅にフィット */
.snap2 .right-2 {
  width: fit-content !important;
  flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 動画サイズを70%、下に10px間隔 */
.snap2 .left-2 .second-video {
  width: 80% !important;
  height: auto !important;
  margin-bottom: 70px !important;
  object-fit: cover !important;
  margin-left: 45px;
}

/* タイトルを3.5vw、下マージン10px */
.snap2 .headline {
  font-size: 3.8vw !important;
  margin: 0 0 20px 0 !important;
}

/* 本文を2.3vw */
.snap2 .description {
  font-size: 2.5vw !important;
  line-height: 2 !important;
  margin: 0 !important;
  
}

/* ロゴを20%幅 */
.snap2 .logo-2 {
  width: 20% !important;
  height: auto !important;
  margin: 0 !important;
  transform: translateY(30px) !important;
}

/* === Snap3 Mobile Adjustments === */
.snap3 .content-wrapper {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;  /* 縦中央揃え */
  align-items: center !important;      /* 横中央揃え */
  padding: 16px !important;
  gap: 2px !important;                /*項目間隔*/
  box-sizing: border-box;
  height: 100vh !important;
  overflow-y: auto !important;
  transform: translateY(15px) !important; 
}
.snap3 .left-3 .text-box {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;  /* 左揃え */
  gap: 8px !important;
  box-sizing: border-box;
}
.snap3 .intro {
  font-size: 2.6vw !important;     /* 本文のイントロはやや大きめに */
  margin: 0 !important;
  font-feature-settings: "palt" !important; /* パルタナンを有効化 */
  letter-spacing: 0.08em !important; /* 文字間を広げる */
}
.snap3 .intro .strong {
  font-size: 4.5vw !important;     /* 「成人」だけ大きく */
  font-weight: bold !important;
  line-height: 0.3 !important;
}
.snap3 .body {
  font-size: 2.6vw !important;
  line-height: 1.8 !important;
  white-space: normal !important;
  text-align: left !important;
  margin: 0 !important;
  font-feature-settings: "palt" !important; /* パルタナンを有効化 */
  letter-spacing: 0.05em !important; /* 文字間を広げる */
}
.snap3 .more-button {
  align-self: flex-end !important;     /* ボタンを右揃え */
  margin: 0 !important;
  transform: translateX(-40px) !important; /* ボタンを左に寄せる */
}

.circle{
  width: 16px !important;
  height: 16px !important;
}
.text{
  font-size: 18px !important;
}
.arrow{
  font-size: 24px !important;
  margin-left: 1px !important;
}
.snap3 .right-3 .image-single {
  width: 75% !important;
  max-width: 75% !important;
  height: auto !important;
  align-self: center !important;
  margin: 0 !important;
  transform: translate(-20px,20px) !important; /* 画像を下に寄せる */
  box-sizing: border-box !important;
  padding: 0 10px !important; /* 左右に余白を追加 */
}

/* === Snap4 Mobile Adjustments === */
.snap4 .content-wrapper-4 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 16px !important;
  gap: 10px !important;            /* 画像とテキスト間を狭める */
  box-sizing: border-box !important;
  height: auto !important; /* 高さを自動調整 */
  transform: translate(-15px, 60px) !important; /* 左に10px移動 */
}
.snap4 .left-4 .image-4 {
  width:70% !important;
  height: auto !important;
  margin: 0 !important;
  max-width: 70%;
  transform: translateY(3vh) !important; /* 画像を上に寄せる */
}
.snap4 .right-4 {
  width: auto !important;            /* コンテナ幅を内容にフィット */
  max-width: 80% !important;         /* 必要なら80%以上にならない */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;               /* テキストとボタン間の間隔 */
  transform: translateY(6vh) !important;
}
.snap4 .title-4 {
  font-size:6.8vw !important;
  margin: 0 !important;
  font-feature-settings: "palt" !important; /* パルタナンを有効化 */
  letter-spacing: normal !important; /* 文字間を広げる */
}
.snap4 .text-4 {
  font-size: 2.6vw !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.snap4 .button-4 {
  width: 150px !important;
  height: 35px !important;
  font-size: 16px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.snap4 .button-4 .label-4 {
  font-size: 14px !important;
  padding-bottom: 4px !important;
}
.snap4 .arrow-4 {
  display: inline-block !important; /* 矢印を表示 */
  width: 23px !important;
  height: 1.2px !important;
}
.snap4 .arrow-4::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(-45deg) !important;
  width: 6px !important;
  height: 6px !important;
  border-right: 1.2px solid #a2212a !important;
  border-bottom: 1.2px solid #a2212a !important;
}

/* === Snap5 Mobile Adjustments === */
.snap5 .content-wrapper-5 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;  /* 縦方向中央揃え */
  align-items: center !important;      /* 横中央揃え */
  padding: 16px !important;
  gap: 20px !important;                /* 項目間隔 */
  transform: translateX(-5%) !important; /* 左へ10%移動 */
  box-sizing: border-box !important;
}

.inner-5{
  margin: 0 !important;
  transform: translate(40px,-30px)}

/* タイトルと見出しは左揃えかつ拡大 */
.snap5 .title-5 {
  align-self: flex-start !important;
  text-align: left !important;
  font-size: 6.8vw !important;           /* タイトルを大きく */
  margin: 0 !important;
  transform: translateY(8px);
  
}
.snap5 .subtitle-5 {
  align-self: flex-start !important;
  text-align: left !important;
  font-size: 3.3vw !important;           /* 見出しを大きく */
  margin: 0 !important;
  font-feature-settings: "palt";
  letter-spacing: 0.08em !important; /* 文字間を広げる */
  transform: translateY(10px);
}
/* 本文を右揃え、拡大行間 */
.snap5 .text-5 {
  align-self: flex-end !important;     /* 見出し幅基準で右揃え */
  font-size: 2.8vw !important;           /* 本文を大きく */
  line-height: 1.8 !important;         /* 行間を広げる */
  margin: 0 !important;
  transform: translateY(-25px);
  font-feature-settings: "palt" !important; /* パルタナンを有効化 */
  letter-spacing: 0.1em !important; /* 文字間を広げる */
}
/* ボタンは右揃えかつ下に余白 */
.snap5 .button-5 {
  margin-top: 0px;
  align-self: flex-end !important;
  margin-bottom: 10px !important;      /* ボタン下に余白 */
  transform: translateX(10px);
}

.circle-5 {
  width: 1em !important;               /* 円のサイズ */
  height: 1em !important;
 transform: translate(3px,-10px);
}

.arrow-5 {
  width: 1.5em !important;             /* 矢印の幅 */
  height: 0.1em !important;            /* 矢印の高さ */
  margin: 0px !important;         /* ボタン文字との間隔 */
}

.snap5 .button-5 .label-5 {
  font-size: 4vw !important;          /* ボタン文字を拡大 */
}
/* 画像は中央揃え、大きめに */
.snap5 .image-5 {
  align-self: center !important;
  width: 70% !important;
  height: auto !important;
  margin: 0 !important;
  transform: translate(-20px,-60px);
  max-width: 70% !important; 
}

/* === Snap6 Mobile Adjustments === */
.snap6 .content-wrapper-6 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important; /* 上詰め */
  padding: 16px !important;
  gap: 12px !important;                   /* 各項目の間隔を調整 */
  box-sizing: border-box;
}

/* テキスト群を先に表示、幅100%で左右余白なし */
.snap6 .right-6 {
  order: 1 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 2px !important;  /* アイテム間隔を2pxに */  /* アイテム間隔を4pxに */     /* アイテム間隔 */
  box-sizing: border-box;
  transform: translateY(-15%) !important;
}

/* 動画を最後に配置し、上に60pxの間隔 */
.snap6 .left-6 {
  order: 2 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 60px !important; /* テキスト群との間隔 */
}
.snap6 .left-6 .movie-video-6 {
  width: 90% !important;
  max-width: 90% !important;
  height: auto !important;
}

/* タイトル */
.snap6 .title-6 {
  font-size: 6vw !important;
  margin: 0 !important;
  transform: translateY(-20%) !important; /* 上に移動しない */
}
/* サブタイトルと本文間隔を4pxに */
.snap6 .subtitle-6 {
  font-size: 3.5vw !important;
  font-feature-settings: "palt";
  letter-spacing: normal !important; /* 文字間を広げる */
  margin: 0 0 0 0 !important;  /* 下間隔を0に */
}

.center-right-6 {
  margin-top: 0 !important; /* 上間隔を0に */
  text-align: left !important;
  transform: translate(10%,25%) !important; /* 上に移動しない */
}
/* リード文下に24px間隔 */
.snap6 .lead-6 {
  font-size: 2.6vw !important;
  line-height: 1.6 !important;
  margin: 0 0 25px 0 !important;  /* 下間隔を16pxに */
  width: 100% !important;
}
/* アイコングループは見出しと揃えて左寄せ */
.snap6 .icon-list-6 {
  align-self: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 25px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.snap6 .icon-6 {
  width: 8vw !important;
  height: auto !important;
}
.snap6 .icon-text-6 {
  font-size: 3.2vw !important;
  font-feature-settings: "palt";
  letter-spacing: 0.08em !important; /* 文字間を広げる */
}


/* === Snap7 Mobile Adjustments === */
.snap7 .content-wrapper-7 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;  /* 縦方向中央 */
  align-items: center !important;      /* 横方向中央 */
  padding: 16px !important;
  gap: 12px !important;                /* 項目間隔 */
  box-sizing: border-box;
  transform: translate(-1%,-5%) !important; /* 左へ10%移動 */
}

/* 右側の画像は非表示 */
.snap7 .right-7 {
  display: none !important;
}

/* 左側の画像を置き換え */
.snap7 .left-7 img{
transform: translate(-10%, 5%) !important;
  width: 80% !important;
  height: auto !important;
  max-width: 80%;
}


  /* === Snap8 Mobile (Only Snap8) Final === */
  .snap8 .content-wrapper-8 {
    display: flex !important;
    position: relative !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  /* 動的ビューポートに対応 */
  height: 100dvh !important;
  height: 100svh !important;
  height: 100vh  !important; 
  /* overflow は隠してスクロールを防止 */
  overflow: hidden !important;
  box-sizing: border-box !important;
  padding: 0 16px !important;
  gap: 15px !important;
  /* これまでの translateX(-10%) を解除 */
  transform:none !important;
  }

  /* ドメインはスナップ8 のみ上端中央に固定 */
  .snap8 .domain-8 {
  position: absolute !important;    /* absolute なのでスクロール時には流れる */
    top: 16px !important;             /* お好みの余白に */
    left: 50% !important;             
    transform: translateX(-40%) !important;
    margin: 0 !important;
    font-size: 3.5vw !important;     /* フォントサイズはお好みで */
  }
  /* Snap8: 左右ラッパー非表示で要素を直接配置 */
  .snap8 .left-8,
  .snap8 .left-main-8,
  .snap8 .right-8 {
    display: contents !important;
  }



  /* 1. ロゴを一番上に表示 */
  .snap8 .logo-8 {
    order: 1 !important;
    display: block !important;
    width: 55% !important;
    max-width: 60% !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: translate(-5px, -30px) !important; /* 上に少し上げる */
  }

  /* 2. SNSアイコンをロゴの下に、横並び中央揃え */
  .snap8 .sns-icons-8 {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10vw !important;                   /* アイコン間隔 */
    margin: 0 auto !important;
    align-items: center !important;      /* アイコンを縦方向中央揃え */
    transform: translate(-5px, 20px) !important; /* 下に少し下げる */
  }
  .snap8 .sns-icon-8 {
    width: 7vw !important;
    height: auto !important;
  }

  /* 2. link-group-8 は画面下中央に固定（リンクのみ） */
.snap8 .link-group-8 {
  position:static !important;
  bottom: auto !important;
  left: auto !important;
  transform: translate(15%,300%)!important;
  order: 3 !important;
  margin: 10% 0 0 0 !important; /* 上に12pxの余白 */
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  gap: 10px !important;
  z-index: 1000 !important;
  width: 100% !important;
  max-width: 100% !important; /* 横幅は内容にフィット */
  justify-content: center !important;
  padding: 0 !important;
  height: auto !important;
}

/* 3. リンクの高さと横並びを揃える */
.snap8 .link-group-8 a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px !important;
  width: auto !important;
  max-width: 100% !important; /* 横幅は内容にフィット */
  padding: 0 !important;
  white-space: nowrap !important;
  font-size: clamp(11px, 1.6vw, 16px) !important;
  color: white !important;
  text-decoration: none !important;
margin-right: 4em !important; /* 右側の余白を追加 */
margin-bottom: 2em;
}

.link-group-8 a:hover {
  text-decoration: underline!important;
}

  /* モバイル版: オーバーレイメニュー */

  /* PC用縦バーは隠し、オーバーレイ用縦バー（overlay-version）を表示 */
 
  .menu-overlay .menu-center.overlay-version {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #a2212a !important;
    z-index: 2000 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

 /* 閉じるボタン（×） */
 .menu-overlay.active .menu-close {
  display: block !important;
  position: fixed !important;
  top: 50% !important;               /* 垂直中央 */
  right: 18px !important;             /* 右から18px */
  left: auto !important;              /* 左位置クリア */
  transform: translate(0, -72%) !important; /* 縦方向中央合わせ */
  font-size: 43px !important;
  color: white !important;
  z-index: 2100 !important;
  cursor: pointer !important;
}


  /* メニュー項目: 縦並び、左から20px、中央縦配置 */
  .menu-overlay .overlay-nav-row {
    position: fixed !important;
    top: 50% !important;
    left: 80px !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important; /* 広めの間隔 */
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    z-index: 2000 !important;
  }

  .menu-overlay .overlay-nav-row .nav-left,
  .menu-overlay .overlay-nav-row .nav-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .menu-overlay .overlay-nav-row a {
    color: white !important;
    font-size: 24px !important; /* 文字サイズ大きく */
    text-decoration: none !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* プラス記号の位置調整 */
  .menu-overlay .overlay-nav-row .nav-link--news-plus {
    position: absolute !important;
    top: 0 !important;
    left: 5.5em !important;
    font-size: 0.7em !important;
    line-height: 1 !important;
  }

/* Toggle between main and overlay menus using :has */
/* main menu hidden when overlay active */
body:has(.menu-overlay.active) .menu-center:not(.overlay-version) {
  display: none !important;
}
/* overlay-version shown only when overlay active */
body:has(.menu-overlay.active) .menu-center.overlay-version {
  display: flex !important;
}
/* overlay-version hidden when overlay not active */
body:not(:has(.menu-overlay.active)) .menu-center.overlay-version {
  display: none !important;
}

  
}

/* ─── PC版（769px以上）：1.5枚目を非表示 ─── */
@media screen and (min-width: 769px) {
  .snap1-5 {
    display: none !important;
  }
  .snap1 video.hero-video-mobile {
    display: none !important;
  }
}


