@charset "UTF-8";
/******************************************************************************
*
* Web Font（woff2）
*
******************************************************************************/
@font-face {
  font-family: "BrandonGrotesque";
  src: url("../fonts/BrandonGrotesque_r.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BrandonGrotesque";
  src: url("../fonts/BrandonGrotesque_m.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RyoGothic";
  src: url("../fonts/ryo-gothic_l.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RyoGothic";
  src: url("../fonts/ryo-gothic_r.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RyoGothic";
  src: url("../fonts/ryo-gothic_m.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RyoGothic";
  src: url("../fonts/ryo-gothic_b.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RyoGothic";
  src: url("../fonts/ryo-gothic_h.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/******************************************************************************
*
* カラー変数（CSS変数をSCSS用に変換）
*
******************************************************************************/
/******************************************************************************
*
* フォント
*
******************************************************************************/
/******************************************************************************
*
* レイアウト・余白設定
*
******************************************************************************/
/******************************************************************************
*
* z-index 管理
*
******************************************************************************/
/******************************************************************************
*
* レスポンシブ設定
*
******************************************************************************/
/**
 * 既存互換：mq("md") のように使う
 */
/**
 * min-width系（例：@include mq-up("md")）
 */
/**
 * max-width系（例：@include mq-down("sp")）
 * ※ mapの定義が max-width のキー（xs/sp）を想定
 */
/**
 * 範囲指定（min～max）（例：@include mq-between("md","sp")）
 * - $media_size の値（例: "screen and (min-width: 768px)"）から条件部分 "(min-width: 768px)" を抽出し結合
 */
/******************************************************************************
*
* フォントサイズ + 行間 設定
*
******************************************************************************/
h1 {
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 40px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 44px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  h1 {
    font-size: 48px;
    line-height: 1.4;
  }
}

h2 {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  h2 {
    font-size: 40px;
    line-height: 1.4;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  h3 {
    font-size: 30px;
    line-height: 1.4;
  }
}

h4 {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  h4 {
    font-size: 34px;
    line-height: 1.4;
  }
}

h5 {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  h5 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  h5 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1600px) {
  h5 {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 2500px) {
  h5 {
    font-size: 22px;
    line-height: 1.6;
  }
}

h6 {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  h6 {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  h6 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1600px) {
  h6 {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 2500px) {
  h6 {
    font-size: 18px;
    line-height: 1.6;
  }
}

p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 992px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1600px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 2500px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/******************************************************************************
*
* 画像の表示切替
*
******************************************************************************/
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-only {
    display: block;
  }
}

.md-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-only {
    display: block;
  }
}

.lg-only {
  display: none;
}
@media screen and (min-width: 992px) {
  .lg-only {
    display: block;
  }
}

/******************************************************************************
*
* ベーススタイル（要素初期化・共通設定）
*
******************************************************************************/
/* ----------------------------------------
  Root / box-sizing
---------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ----------------------------------------
  Body
---------------------------------------- */
body {
  margin: 0;
  position: relative;
  font-size: 14px;
  font-family: "RyoGothic", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #322C2C;
  background-color: #F5F3F2;
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.07em;
}

/* ----------------------------------------
  Motion (accessibility)
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* ----------------------------------------
  Headings
---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  color: #322C2C;
  letter-spacing: 0.14em;
}

/* ----------------------------------------
  Text
---------------------------------------- */
p {
  margin: 0;
  line-height: 1.8;
}

small {
  font-size: 0.75em;
  line-height: 1.45;
}

/* ----------------------------------------
  Links
---------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.75;
}

/* キーボード操作時のフォーカスを見える化 */
a:focus-visible {
  outline: 2px solid #CDE1F5;
  outline-offset: 3px;
}

/* ----------------------------------------
  Images / media
---------------------------------------- */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  object-fit: cover;
}

/* ----------------------------------------
  Lists
---------------------------------------- */
ul, ol {
  margin: 0;
  padding-left: 1.5em;
}

li {
  margin: 0;
}

/* ----------------------------------------
  Forms
---------------------------------------- */
input, textarea, select, button {
  font: inherit;
  color: inherit;
}

input, textarea, select {
  border-radius: 0;
  outline: none;
}

textarea {
  resize: vertical;
}

::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------
  Buttons
---------------------------------------- */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  appearance: none;
}

button:focus-visible {
  outline: 2px solid #CDE1F5;
  outline-offset: 3px;
}

/* ----------------------------------------
  Iframe
---------------------------------------- */
iframe {
  max-width: 100%;
  border: none;
  display: block;
}

/* ----------------------------------------
  Misc
---------------------------------------- */
hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0;
}

::selection {
  background: rgba(0, 0, 0, 0.12);
}

/* clearfix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/******************************************************************************
*
* コンテナ（レイアウトのベース幅・余白）
*
******************************************************************************/
.l-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-inline: 40px;
  }
}
.l-container {
  /* 幅バリエーション（必要な時だけ付与） */
}
.l-container.-narrow {
  max-width: min(960px, 100%);
}
.l-container.-wide {
  max-width: min(1440px, 100%);
}
.l-container.-full {
  max-width: none;
}
.l-container {
  /* パディング制御 */
}
.l-container.-no-padding {
  padding-inline: 0;
}

/******************************************************************************
*
* セクション間の余白
*
******************************************************************************/
.l-section {
  padding-block: 30px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block: 60px;
  }
}
.l-section {
  /* 余白バリエーション */
}
.l-section.-xs {
  padding-block: 32px;
}
@media screen and (min-width: 768px) {
  .l-section.-xs {
    padding-block: 64px;
  }
}
.l-section.-sm {
  padding-block: 48px;
}
@media screen and (min-width: 768px) {
  .l-section.-sm {
    padding-block: 96px;
  }
}
.l-section.-lg {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .l-section.-lg {
    padding-block: 160px;
  }
}
.l-section.-no-padding {
  padding-block: 0;
}

/******************************************************************************
*
* 横並び用（flex）
*
******************************************************************************/
.l-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-flex {
    flex-wrap: nowrap;
  }
}
.l-flex {
  /* 並び方向 */
}
.l-flex.-row {
  flex-direction: row;
}
.l-flex.-row-reverse {
  flex-direction: row-reverse;
}
.l-flex.-column {
  flex-direction: column;
}
.l-flex.-column-reverse {
  flex-direction: column-reverse;
}
.l-flex {
  /* 揃え */
}
.l-flex.-start {
  justify-content: flex-start;
  align-items: flex-start;
}
.l-flex.-center {
  justify-content: center;
  align-items: center;
}
.l-flex.-between {
  justify-content: space-between;
}
.l-flex.-around {
  justify-content: space-around;
}
.l-flex.-evenly {
  justify-content: space-evenly;
}
.l-flex.-end {
  justify-content: flex-end;
  align-items: flex-end;
}
.l-flex {
  /* 片方だけ調整 */
}
.l-flex.-jc-center {
  justify-content: center;
}
.l-flex.-ai-center {
  align-items: center;
}
.l-flex {
  /* 折り返し制御 */
}
.l-flex.-nowrap {
  flex-wrap: nowrap;
}
.l-flex.-wrap {
  flex-wrap: wrap;
}
.l-flex {
  /* gapバリエーション（最小限） */
}
.l-flex.-gap-xs {
  gap: 0.5rem;
}
.l-flex.-gap-sm {
  gap: 1rem;
}
.l-flex.-gap-lg {
  gap: 2rem;
}
.l-flex.-gap-xl {
  gap: 3rem;
}

/******************************************************************************
*
* グリッド（汎用）
*
******************************************************************************/
.l-grid {
  display: grid;
  gap: 1.5rem;
  /* 列数（レスポンシブ） */
}
.l-grid.-col2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-grid.-col3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-grid.-col4 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-grid {
  /* 自動フィット（カード一覧に強い） */
}
.l-grid.-auto {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.l-grid {
  /* 揃え */
}
.l-grid.-center {
  place-items: center;
}
.l-grid.-start {
  place-items: start;
}
.l-grid {
  /* gapバリエーション */
}
.l-grid.-gap-xs {
  gap: 0.5rem;
}
.l-grid.-gap-sm {
  gap: 1rem;
}
.l-grid.-gap-lg {
  gap: 2rem;
}
.l-grid.-gap-xl {
  gap: 3rem;
}

.p-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.p-footer__logo {
  width: min(450px, 70%);
  margin: 0 auto;
  height: auto;
  display: block;
}
.p-footer__info {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px 28px;
  margin-top: 28px;
}
.p-footer__infoLabel {
  font-weight: 500;
}
.p-footer__infoValue {
  margin: 0;
}
.p-footer__right .c-infoBlock {
  height: auto;
}

/******************************************************************************
*
* Global Background Video
*
******************************************************************************/
.l-bgVideo {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* 動画ロード前のフォールバック */
  background: url("../images/base/gradients.png") center/cover no-repeat;
}

.l-bgVideo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/******************************************************************************
*
* セクション共通スタイル（タイトル・説明文など）
*
******************************************************************************/
.c-section {
  padding-block: 30px 0;
}
@media screen and (min-width: 768px) {
  .c-section {
    padding-block: 60px 0;
  }
}
.c-section__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .c-section__inner {
    padding-inline: 40px;
  }
}
.c-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.c-section__title {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  flex: 1 1;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .c-section__title {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .c-section__title {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .c-section__title {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  .c-section__title {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  .c-section__title {
    font-size: 30px;
    line-height: 1.4;
  }
}
.c-section__title {
  line-height: 1;
}
.c-section__title::after {
  flex: 1 1;
  content: "";
  height: 1px;
  background: rgba(200, 192, 192, 0.4);
}
.c-section__sub {
  font-size: 12px;
  font-family: "BrandonGrotesque", sans-serif;
  color: #EC7E79;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-section__sub {
    font-size: 14px;
  }
}

.c-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 8px 4px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.c-glass .glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.c-glass .glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent, rgba(255, 255, 255, 0.3));
}
.c-glass--p18 {
  padding: 30px 18px;
}
@media screen and (min-width: 768px) {
  .c-glass--p18 {
    padding: 36px;
  }
}

.c-infoBlock {
  height: 100%;
}
.c-infoBlock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}
.c-infoBlock__sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.7;
  white-space: nowrap;
}
.c-infoDl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 16px;
}
.c-infoDl__dt {
  opacity: 0.7;
}
.c-infoDl__dd {
  margin: 0;
}

.c-hoursTableWrap {
  overflow-x: auto;
}

.c-hoursTable {
  width: 100%;
  border-collapse: collapse;
}
.c-hoursTable th,
.c-hoursTable td {
  padding: 10px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.c-hoursTable thead th {
  font-weight: 600;
}
.c-hoursTable thead .-red {
  color: #EC7E79;
}
.c-hoursTable thead .-blue {
  color: #76ABE0;
}
.c-hoursTable tbody th {
  text-align: left;
  font-weight: 500;
}

.c-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(225, 117, 117, 0.95);
}
.c-dot--off {
  width: 6px;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.12);
}

.c-hoursNote {
  margin-top: 12px;
  opacity: 0.75;
}

/* 追加の調整が必要になったらここに集約（現状は共通でOK） */
/******************************************************************************
*
* Utility（!importantなし、安全設計）
*
******************************************************************************/
/* ----------------------------------------
  テキスト
---------------------------------------- */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-fw-bold {
  font-weight: 700;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-regular {
  font-weight: 400;
}

.u-nowrap {
  white-space: nowrap;
}

.u-break-all {
  word-break: break-all;
}

.u-break-word {
  overflow-wrap: anywhere;
}

/* ----------------------------------------
  レスポンシブ文字スタイル（opt-in）
  - foundation/_mixin.scss の responsive-font-style() を必要箇所だけに適用
  - a / div にグローバル適用しない代替
---------------------------------------- */
.u-rfs-a {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .u-rfs-a {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 992px) {
  .u-rfs-a {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .u-rfs-a {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1600px) {
  .u-rfs-a {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 2500px) {
  .u-rfs-a {
    font-size: 18px;
    line-height: 1.8;
  }
}

.u-rfs-div {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .u-rfs-div {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 992px) {
  .u-rfs-div {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .u-rfs-div {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1600px) {
  .u-rfs-div {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 2500px) {
  .u-rfs-div {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* フォントファミリー切替（必要箇所のみ） */
.u-font-main {
  font-family: "RyoGothic", sans-serif;
}

.u-font-en {
  font-family: "BrandonGrotesque", sans-serif;
}

/* ----------------------------------------
  表示制御
---------------------------------------- */
.u-hidden {
  display: none;
}

.u-block {
  display: block;
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.u-inline-flex {
  display: inline-flex;
}

.u-grid {
  display: grid;
}

/* ----------------------------------------
  Flex補助（必要なときだけ）
---------------------------------------- */
.u-flex-wrap {
  flex-wrap: wrap;
}

.u-flex-nowrap {
  flex-wrap: nowrap;
}

.u-jc-start {
  justify-content: flex-start;
}

.u-jc-center {
  justify-content: center;
}

.u-jc-end {
  justify-content: flex-end;
}

.u-jc-between {
  justify-content: space-between;
}

.u-jc-around {
  justify-content: space-around;
}

.u-jc-evenly {
  justify-content: space-evenly;
}

.u-ai-start {
  align-items: flex-start;
}

.u-ai-center {
  align-items: center;
}

.u-ai-end {
  align-items: flex-end;
}

.u-ai-stretch {
  align-items: stretch;
}

.u-fd-row {
  flex-direction: row;
}

.u-fd-column {
  flex-direction: column;
}

/* ----------------------------------------
  Grid補助（軽量）
---------------------------------------- */
.u-place-center {
  place-items: center;
}

.u-place-start {
  place-items: start;
}

.u-grid-col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.u-grid-col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.u-grid-col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.u-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ----------------------------------------
  Gap（flex/grid共通）
---------------------------------------- */
.u-gap-8 {
  gap: 0.5rem;
}

.u-gap-12 {
  gap: 0.75rem;
}

.u-gap-16 {
  gap: 1rem;
}

.u-gap-24 {
  gap: 1.5rem;
}

.u-gap-32 {
  gap: 2rem;
}

.u-gap-40 {
  gap: 2.5rem;
}

/* ----------------------------------------
  余白（Spacing Scale）
  - 8px刻みベース（0 / 8 / 16 / 24 / 32 / 40 / 48 / 56 / 64）
  - 既存 u-mb-16 等とも整合
---------------------------------------- */
/* margin */
.u-m-0 {
  margin: 0;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-8 {
  margin-top: 0.5rem;
}

.u-mt-16 {
  margin-top: 1rem;
}

.u-mt-24 {
  margin-top: 1.5rem;
}

.u-mt-32 {
  margin-top: 2rem;
}

.u-mt-40 {
  margin-top: 2.5rem;
}

.u-mt-48 {
  margin-top: 3rem;
}

.u-mt-56 {
  margin-top: 3.5rem;
}

.u-mt-64 {
  margin-top: 4rem;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-8 {
  margin-bottom: 0.5rem;
}

.u-mb-16 {
  margin-bottom: 1rem;
}

.u-mb-24 {
  margin-bottom: 1.5rem;
}

.u-mb-32 {
  margin-bottom: 2rem;
}

.u-mb-40 {
  margin-bottom: 2.5rem;
}

.u-mb-48 {
  margin-bottom: 3rem;
}

.u-mb-56 {
  margin-bottom: 3.5rem;
}

.u-mb-64 {
  margin-bottom: 4rem;
}

.u-ml-0 {
  margin-left: 0;
}

.u-ml-8 {
  margin-left: 0.5rem;
}

.u-ml-16 {
  margin-left: 1rem;
}

.u-ml-24 {
  margin-left: 1.5rem;
}

.u-ml-32 {
  margin-left: 2rem;
}

.u-ml-40 {
  margin-left: 2.5rem;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mr-8 {
  margin-right: 0.5rem;
}

.u-mr-16 {
  margin-right: 1rem;
}

.u-mr-24 {
  margin-right: 1.5rem;
}

.u-mr-32 {
  margin-right: 2rem;
}

.u-mr-40 {
  margin-right: 2.5rem;
}

/* margin-inline / margin-block */
.u-mx-auto {
  margin-inline: auto;
}

.u-mx-0 {
  margin-inline: 0;
}

.u-mx-16 {
  margin-inline: 1rem;
}

.u-mx-24 {
  margin-inline: 1.5rem;
}

.u-my-0 {
  margin-block: 0;
}

.u-my-16 {
  margin-block: 1rem;
}

.u-my-24 {
  margin-block: 1.5rem;
}

/* padding */
.u-p-0 {
  padding: 0;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pt-8 {
  padding-top: 0.5rem;
}

.u-pt-16 {
  padding-top: 1rem;
}

.u-pt-24 {
  padding-top: 1.5rem;
}

.u-pt-32 {
  padding-top: 2rem;
}

.u-pt-40 {
  padding-top: 2.5rem;
} /* 既存互換 */
.u-pt-48 {
  padding-top: 3rem;
}

.u-pt-56 {
  padding-top: 3.5rem;
}

.u-pt-64 {
  padding-top: 4rem;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-pb-8 {
  padding-bottom: 0.5rem;
}

.u-pb-16 {
  padding-bottom: 1rem;
}

.u-pb-24 {
  padding-bottom: 1.5rem;
}

.u-pb-32 {
  padding-bottom: 2rem;
}

.u-pb-40 {
  padding-bottom: 2.5rem;
} /* 既存互換 */
.u-pb-48 {
  padding-bottom: 3rem;
}

.u-pb-56 {
  padding-bottom: 3.5rem;
}

.u-pb-64 {
  padding-bottom: 4rem;
}

.u-px-0 {
  padding-inline: 0;
}

.u-px-16 {
  padding-inline: 1rem;
}

.u-px-24 {
  padding-inline: 1.5rem;
}

.u-px-32 {
  padding-inline: 2rem;
}

.u-py-0 {
  padding-block: 0;
}

.u-py-16 {
  padding-block: 1rem;
}

.u-py-24 {
  padding-block: 1.5rem;
}

.u-py-32 {
  padding-block: 2rem;
}

/* ----------------------------------------
  幅・高さ
---------------------------------------- */
.u-w-100 {
  width: 100%;
}

.u-w-auto {
  width: auto;
}

.u-maxw-100 {
  max-width: 100%;
}

.u-w-fit {
  width: fit-content;
}

.u-w-max {
  width: max-content;
}

.u-h-100 {
  height: 100%;
}

/* ----------------------------------------
  色
---------------------------------------- */
.u-color-main {
  color: #EC7E79;
}

.u-color-sub {
  color: #C8C0C0;
}

.u-color-accent {
  color: #CDE1F5;
}

.u-bg-main {
  background-color: #EC7E79;
}

.u-bg-sub {
  background-color: #C8C0C0;
}

.u-bg-accent {
  background-color: #CDE1F5;
}

/* ----------------------------------------
  その他
---------------------------------------- */
.u-radius-8 {
  border-radius: 0.5rem;
}

.u-radius-16 {
  border-radius: 1rem;
}

.u-shadow-sm {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------
 * Animation Utility
 * フェード・スライド・拡大・波紋・スクロールアイコン等
 * ------------------------------------------ */
/* === 1. スケールバウンス === */
@keyframes a-scale-bounce {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(1.03);
  }
  40% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.02);
  }
  60% {
    transform: scale(0.93);
  }
  70% {
    transform: scale(1.01);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  90% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
.a-scale-bounce {
  animation: a-scale-bounce 1.8s linear infinite;
}

/* === 2. 上下アニメーション === */
@keyframes a-updown {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(-5px);
  }
}
.a-updown {
  animation: a-updown 1.2s linear infinite;
}

/* === 3. フェードイン（スクロール連動用） === */
.a-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
}
.a-fade-in.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* === 4. 帯アニメーション（テキスト・画像共通） === */
.a-wipe-container {
  overflow: hidden;
  position: relative;
}
.a-wipe-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  transform: translateX(-101%);
  transition: transform 0.8s ease;
  z-index: 1;
}
.a-wipe-container.is-inview::before {
  transform: translateX(101%);
}
.a-wipe-container .a-wipe-text {
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
.a-wipe-container.is-inview .a-wipe-text {
  opacity: 1;
}

/* === 5. 波紋アニメーション === */
@keyframes a-ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.a-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #666;
  box-shadow: 0 0 5px #666;
  animation: a-ripple 2s infinite;
  top: 0;
  left: 0;
}

/* === 6. スクロールアイコン（マウス型） === */
@keyframes a-scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.a-scroll-icon {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.a-scroll-icon::before {
  content: "";
  width: 18px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50px;
  display: block;
  margin: 0 auto 8px;
}
.a-scroll-icon::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  animation: a-scroll-dot 2s infinite;
}

.a-fadein {
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.a-fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/******************************************************************************
*
* Preparation page (準備中) - Hero
*
******************************************************************************/
.p-preparation {
  position: relative;
  min-height: 80svh;
}

/* ----------------------------------------
  Hero
---------------------------------------- */
.p-prepHero {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  overflow: clip;
  /* 中身（コンテンツ） */
}
.p-prepHero__inner {
  position: relative;
  z-index: 1;
}
.p-prepHero__content {
  text-align: center;
}
.p-prepHero {
  /* ロゴ */
}
.p-prepHero__logoWrap {
  width: min(500px, 80vw);
  margin-inline: auto;
}
.p-prepHero__logo {
  width: 100%;
  height: auto;
}
.p-prepHero {
  /* タイトル */
}
.p-prepHero__title {
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.p-prepHero__titleEn {
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 18px;
}
.p-prepHero {
  /* ロゴ下：ブルー背景ラベル（$color-accent） */
}
.p-prepHero__dept {
  display: inline-flex;
  justify-content: center;
}
.p-prepHero__deptText {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #CDE1F5;
  border-radius: 5px;
}
.p-prepHero {
  /* 日付ブロック */
}
.p-prepHero__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-prepHero__info {
    grid-template-columns: 1fr auto 1fr;
    gap: 5em;
  }
}
.p-prepHero__infoItem {
  display: grid;
  gap: 5px;
  justify-items: center;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-prepHero__infoItem {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .p-prepHero__infoItem {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .p-prepHero__infoItem {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .p-prepHero__infoItem {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  .p-prepHero__infoItem {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  .p-prepHero__infoItem {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .p-prepHero__infoItem {
    margin: 0 0 0 auto;
  }
}
.p-prepHero__infoBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: rgba(233, 107, 107, 0.86);
  color: #fff;
  border-radius: 5px;
}
.p-prepHero {
  /* md以上で縦線表示 */
}
.p-prepHero__infoDivider {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-prepHero__infoDivider {
    display: block;
    width: 1px;
    height: 88px;
    background: rgba(0, 0, 0, 0.16);
  }
}

/* ----------------------------------------
  Info（医院情報など）
---------------------------------------- */
.p-prepInfo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-prepInfo__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.p-prepInfo__right {
  display: grid;
  gap: 20px;
}

/* ----------------------------------------
  About（医院について）
---------------------------------------- */
.p-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
  }
}
.p-about__logo {
  height: auto;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid rgba(200, 192, 192, 0.4);
}
.p-about__lead {
  color: #EC7E79;
}
.p-about__text p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------
  Message（院長メッセージ）
---------------------------------------- */
.p-message {
  background: #F5F3F2;
}
.p-message__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-message__inner {
    grid-template-columns: 1fr 300px;
    gap: 80px;
  }
}
.p-message__content {
  max-width: 680px;
}
.p-message__list {
  display: grid;
  padding-left: 0;
  list-style: none;
  border-top: 1px solid rgba(200, 192, 192, 0.4);
}
.p-message__item {
  position: relative;
  padding-left: 18px;
}
.p-message__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EC7E79;
  transform: translateY(-50%);
}
.p-message__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(200, 192, 192, 0.4);
}
.p-message__media {
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 192, 192, 0.4);
}
@media screen and (min-width: 768px) {
  .p-message__media {
    position: sticky;
    top: 60px;
    border: none;
  }
}
.p-message__photo {
  border: 1px solid rgba(200, 192, 192, 0.4);
  border-radius: 10px;
  margin: 0 0 0;
}
.p-message__photo img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-message__photo {
    margin: 0 0 1em;
  }
}
.p-message__doctor {
  color: #EC7E79;
  font-weight: 500;
}
.p-message__doctorName {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-message__doctorName {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .p-message__doctorName {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .p-message__doctorName {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .p-message__doctorName {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  .p-message__doctorName {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 2500px) {
  .p-message__doctorName {
    font-size: 34px;
    line-height: 1.4;
  }
}
.p-message__doctorName {
  font-weight: 500;
}
.p-message__careerTitle {
  position: relative;
  padding-left: 18px;
}
.p-message__careerTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EC7E79;
  transform: translateY(-50%);
}
.p-message__careerItem {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .p-message__careerItem {
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
  }
}
.p-message__careerItem:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-message__careerYear {
  white-space: nowrap;
}