@charset "UTF-8";
.inner {
  margin: 0 auto !important;
}

header .site-logo {
  position: fixed;
  top: 10px;
  left: 3%;
  width: 265px;
}

/* 右側ロゴは不要 → 完全に消す */
/* ヘッダー帯 */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 1500;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
  flex-direction: row-reverse;
  margin-top: 25px;
}

/* ハンバーガーボタン */
.burger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 32px;
  position: fixed;
  cursor: pointer;
  z-index: 2000;
  right: 3%;
}

.burger__bar,
.burger__bar--bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform 0.75s ease, background 0.25s ease;
}

.burger__bar {
  top: 10px;
}

.burger__bar--bottom {
  top: 20px;
}

/* 開いた時：バツ形に */
.burger.is-open .burger__bar {
  transform: translateY(5px) rotate(45deg);
  background: var(--ink);
}

.burger.is-open .burger__bar--bottom {
  transform: translateY(-5px) rotate(-45deg);
  background: var(--ink);
}

/* オーバーレイ（視覚のみ） */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1100;
  pointer-events: none;
}

.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* メニュー本体 */
.diagonal-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(520px, 88vw);
  z-index: 1200;
  color: var(--ink);
  background: var(--base);
  padding: 96px 32px 40px;
  overflow-y: auto;
  min-height: 100vh;
  transform: translateX(100%);
  clip-path: polygon(70% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid var(--line);
  transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.diagonal-menu.is-open {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

/* メニューリスト */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0 8px 24px;
  width: 200px;
  position: absolute;
  top: 25%;
  right: 1%;
  font-size: 1.3rem;
}
.menu-list li {
  margin: 10px 0;
}
.menu-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.95;
}
.menu-list a:hover {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .diagonal-menu {
    width: min(520px, 111vw);
  }
}
@media (max-width: 500px) {
  .menu-list {
    right: -3%;
  }
}
.news::before {
  content: "";
  position: absolute;
  right: -6vw;
  top: -6vw;
  width: 12vw;
  height: 12vw;
  z-index: var(--deco-z);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 2px, transparent 2.5px) 0 0/28px 28px, radial-gradient(circle, rgba(255, 255, 255, 0.35) 2px, transparent 2.5px) 14px 14px/28px 28px, linear-gradient(180deg, #aec6df, rgba(111, 120, 255, 0));
  border-radius: 50%;
  filter: blur(0.3px);
}

/* SPは小さめ */
@media (max-width: 1024px) {
  .news::before {
    display: none;
  }
}
footer img {
  width: 70%;
}
footer section.ta-footer {
  margin-bottom: 0;
}
footer .ta-footer {
  position: relative;
  z-index: 0;
  background: #f7efe2;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}
footer .ta-footer a {
  color: var(--ink);
  text-decoration: none;
}
footer .ta-footer a:hover {
  opacity: 0.75;
}
footer .ta-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px 35px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  -moz-column-gap: 56px;
       column-gap: 56px;
  align-items: center;
}
footer .ta-footer__left {
  border-right: 1px solid var(--line);
  padding-right: 48px;
  min-width: 0;
}
footer .ta-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
footer .ta-footer__logo {
  width: 170px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ta-footer__company-ja {
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
}
footer .ta-footer__company-en {
  font-size: 16px;
  color: color-mix(in oklab, var(--ink) 50%, white);
  letter-spacing: 0.12em;
  margin: 4px 0 0;
}
footer .ta-footer__contact {
  margin: 14px 0 0;
  font-size: 16px;
  letter-spacing: 0.12em;
}
footer .ta-footer__tel a {
  color: inherit;
}
footer .ta-footer__sep {
  margin: 0 14px;
  color: color-mix(in oklab, var(--ink) 60%, white);
}
footer .ta-footer__addr {
  white-space: nowrap;
}
footer .ta-footer__right {
  padding-left: 12px;
  min-width: 0;
}
footer .ta-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .ta-footer__menu--row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  font-size: 22px;
  line-height: 2.6;
  letter-spacing: 0.08em;
}
footer .ta-footer__menu--row li {
  margin: 0;
  padding: 0;
}
footer .ta-footer__menu--row a {
  display: inline-block;
  color: var(--ink);
}
footer .ta-footer__menu--row + footer .ta-footer__menu--row {
  margin-top: 6px;
}
footer .ta-footer__copy {
  text-align: center;
  padding: 18px 0 28px;
  font-size: 13px;
  color: #fff;
  background-color: #666;
}
@media (max-width: 1024px) {
  footer .ta-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  footer .ta-footer__left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }
  footer .ta-footer__menu--row {
    flex-wrap: wrap;
    gap: 28px 40px;
    font-size: 18px;
  }
  footer .ta-footer__addr {
    white-space: normal;
  }
}

@media (min-width: 769px) {
  #sp {
    display: none;
    padding: 0;
  }
}
@media (max-width: 768px) {
  #pc {
    display: none;
  }
  footer img {
    width: 60%;
  }
}
@media (max-width: 500px) {
  footer .ta-footer__menu--row a {
    font-size: 1rem;
  }
  footer .ta-footer__menu--row {
    flex-wrap: wrap;
    gap: 28px 30px;
    font-size: 18px;
  }
  .ta-footer__contact {
    display: grid;
  }
  #sp-n {
    display: none;
  }
  footer img {
    width: 80%;
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  footer .ta-footer__menu--row {
    flex-wrap: wrap;
    gap: 28px 13px;
    font-size: 18px;
  }
}
:root {
  --kv-blue: var(--navy);
  --kv-yellow: #ffea55;
}

.kv {
  position: relative;
  overflow: hidden;
  padding: min(7vw, 150px) 0;
  background: #fffaf1;
}

.kv__inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  position: relative;
}

.kv__right {
  position: relative;
  z-index: 2;
}

.kv__decos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.kv__stripe-logo {
  position: absolute;
  right: -8px;
  top: 16%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  z-index: 3;
  background: repeating-linear-gradient(to bottom, var(--kv-blue) 0 8px, transparent 8px 16px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.kv__stripe-logo::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--kv-yellow);
}

.kv__photo svg {
  overflow: visible;
}

.kv__stroke {
  fill: none;
}

.kv__stroke--yellow {
  stroke: var(--kv-yellow);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.6));
}

.kv__stroke--dotted {
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 0.01 17.6;
  stroke-dashoffset: 160;
  opacity: 0.95;
}

/* PICK UPバッジ（リボン端＋›矢印） */
.kv__badge {
  position: absolute;
  right: -6px;
  bottom: -22px;
  background: #fff;
  border: 2px solid var(--kv-blue);
  border-radius: 18px;
  padding: 16px 56px 14px 18px;
  width: min(300px, 42vw);
  box-shadow: var(--shadow-soft);
}
.kv__badge:hover {
  transform: scale(1.05);
}

.kv__badge::before,
.kv__badge::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 18px;
  height: 14px;
  background: var(--powder);
  clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
}

.kv__badge::before {
  left: -8px;
  transform: scaleX(-1);
}

.kv__badge::after {
  right: -8px;
}

.kv__badge-head {
  font-weight: 700;
  color: var(--kv-blue);
  letter-spacing: 0.12em;
  font-size: 16px;
  margin-bottom: 8px;
}

.kv__badge-name {
  display: block;
  position: relative;
  text-decoration: none;
  border: 2px solid var(--kv-blue);
  border-radius: 12px;
  padding: 12px 42px 12px 14px;
  color: var(--kv-blue);
  font-weight: 800;
  background: #f7fbff;
  height: 52px;
}

.kv__badge-name::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 20px;
  line-height: 1;
  color: var(--kv-blue);
}

.kv__badge-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kv-blue);
}

.kv__badge-foot p {
  color: var(--kv-blue);
  font-weight: 600;
}

.kv__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ea6ff;
  display: inline-block;
}

/* deco dots */
.kv__decos > span {
  position: absolute;
  border-radius: 50%;
}

.kv__dot-fill {
  background: var(--accent-yellow);
}

.kv__dot-fill-deep {
  background: #043a8a;
}

.kv__dot-ring {
  border: 2px solid #2f6fbb;
  background: transparent;
}

.kv__dot-stripe {
  background: repeating-linear-gradient(to right, var(--powder) 0 8px, transparent 8px 16px);
  outline: 4px solid rgba(255, 255, 255, 0.5);
}

.kv__d1 {
  left: 22px;
  top: 160px;
  width: 44px;
  height: 44px;
}

.kv__d2 {
  left: 320px;
  top: 8px;
  width: 26px;
  height: 26px;
}

.kv__d3 {
  left: 280px;
  bottom: 0px;
  width: 30px;
  height: 30px;
  border-color: #88aedd;
}

.kv__d4 {
  left: 47%;
  top: 160px;
  width: 16px;
  height: 16px;
  background: var(--powder);
}

.kv__d5 {
  left: -26px;
  bottom: 11px;
  width: 28px;
  height: 28px;
}

.kv__d6 {
  left: 53%;
  bottom: -7px;
  width: 56px;
  height: 56px;
}

.kv__d7 {
  left: -131px;
  bottom: 73px;
  width: 120px;
  height: 120px;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes floatX {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}
.kv__decos .kv__dot-fill,
.kv__decos .kv__dot-ring,
.kv__decos .kv__dot-stripe {
  animation: floatY 8s ease-in-out infinite;
}

.kv__decos .kv__d1 {
  animation-duration: 10s;
}

.kv__decos .kv__d3 {
  animation: floatX 9s ease-in-out infinite;
}

.kv__decos .kv__d6 {
  animation-duration: 12s;
}

.kv__decos .kv__d7 {
  animation-duration: 11s;
}

@media (max-width: 1024px) {
  .kv__stripe-logo {
    right: 6px;
    top: 6px;
  }
}
@media (max-width: 768px) {
  .kv__inner {
    grid-template-columns: 1fr;
  }
  .kv__left {
    display: none;
  }
  .kv__badge {
    right: 20px;
    bottom: 20px;
  }
  .kv__photo svg {
    width: 70%;
  }
  .kv__stripe-logo {
    right: 126px;
    top: 15px;
    /* display: none; */
  }
  span.kv__dot-ring.kv__d3 {
    display: none;
  }
  span.kv__dot-fill.kv__d4 {
    display: none;
  }
  .kv__badge-name {
    height: 49px;
  }
}
@media (max-width: 500px) {
  .kv__photo svg {
    width: 100%;
  }
  .kv__badge {
    right: 15px;
    bottom: -15px;
    width: 240px;
  }
  .kv__stripe-logo {
    display: none;
  }
  span.kv__dot-fill.kv__d2 {
    display: none;
  }
  span.kv__dot-fill.kv__d4 {
    display: none;
  }
  .kv__stripe-logo::after {
    display: none;
  }
  .kv__badge-name {
    height: 47px;
  }
}
.att-section::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #ffef63;
  opacity: 0.22;
  filter: blur(2px);
  animation: float-x 12s ease-in-out infinite;
  z-index: -1;
}

.rec-section::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #1D3557;
  opacity: 0.06;
  filter: blur(1px);
  animation: float-y 14s ease-in-out infinite;
}

section.att-section.is-inview .sch-badge {
  display: none;
}

.att-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.tittle-flex {
  margin-bottom: 0 !important;
  font-family: "Cormorant Garamond", "リュウミン R-KL", serif;
  font-size: 50px;
  text-align: center;
  line-height: 1;
  color: var(--navy);
}

.small-att {
  color: var(--navy);
}
.small-att:hover {
  opacity: 0.75;
}

.slider-container {
  position: relative;
  padding: 20px;
}

.slick-slide {
  outline: none;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  height: auto !important;
}

.slick-list {
  overflow: hidden;
}

.card {
  text-align: center;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card small {
  color: #AEC6DF;
}

.card img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 130px 130px 0 0;
  border: 1.5px #aec6df solid;
  padding: 3px;
}
.card img:hover {
  border: 1.5px #1D3557 solid;
}

.woman-name {
  font-weight: bold;
  color: #1d3557;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  border: none;
  color: #004080;
  font-size: 34px !important;
  width: 31px;
  height: 31px;
  z-index: 99;
  cursor: pointer;
}

.slick-prev {
  left: -32px !important;
}

.slick-next {
  right: -18px !important;
}

.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 34px !important;
  line-height: 1;
  opacity: 0.75;
  color: #004080 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.recommend-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.recommend-cols .col h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
}

.rec-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rec-col {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.rec-tittle {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #004080;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
}

/* 四角い縦長カード（新人・おすすめ用） */
.rec-card {
  text-align: center;
  border-radius: 6px;
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #ddd;
}

.rec-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  padding: 0;
  border: none;
}

.rec-name {
  font-weight: bold;
  color: #1d3557;
  margin: 10px 0;
  font-size: 16px;
}

.meta-size {
  color: #aec6df;
}

.rec-name small {
  display: block;
  color: #AEC6DF;
  font-size: 14px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .card img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rec-card img {
    height: 300px;
  }
  .card {
    max-width: 360px;
  }
  .card img {
    width: 75%;
    margin: 0px auto;
  }
  .slick-prev {
    left: -3px !important;
  }
  .slick-next {
    right: 11px !important;
  }
}
/* レスポンシブ */
@media (max-width: 500px) {
  .card img {
    width: 100%;
    margin: 0px auto;
  }
  .att-slider-wrap {
    width: 290px;
    margin: 0px auto;
  }
  .slick-prev {
    left: -44px !important;
  }
  .slick-next {
    right: -30px !important;
  }
}
/* レスポンシブ */
@media (max-width: 400px) {
  .card img {
    width: 100%;
    margin: 0px auto;
  }
  .att-slider-wrap {
    width: 290px;
    margin: 0px auto;
  }
  .slick-prev {
    left: -44px !important;
  }
  .slick-next {
    right: -30px !important;
  }
}
/* =========================================================
   TENON — NEWS
   * 既存マークアップのまま
========================================================= */
.news {
  position: relative;
}

/* 見出し：中央・上に“リボン”アイコン */
.news .tittle {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1D3557;
  margin-bottom: 0px;
}

.news .tittle::before {
  content: "";
  display: block;
  width: 44px;
  height: 32px;
  margin: 0 auto 8px;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'><path fill='%231D3557' d='M28 18c-6-6-12-9-18-13-3 8-3 16 0 24 6-4 12-7 18-11z'/><path fill='%231D3557' d='M36 18c6-6 12-9 18-13 3 8 3 16 0 24-6-4-12-7-18-11z'/><circle cx='32' cy='20' r='6' fill='%231D3557'/><rect x='29' y='14' width='6' height='12' fill='%231D3557'/></svg>");
}

/* ニュースリスト（丸pillの行） */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
}

.news-list li {
  background: #FFF9F0;
  border-radius: 9999px;
  padding: 18px 22px;
  margin: 16px auto;
  box-shadow: 0 10px 24px rgba(29, 53, 87, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(29, 53, 87, 0.14);
}

/* 行レイアウト */
.news-list li > a {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #1D3557;
  font-weight: 700;
  min-height: 48px;
  /* タップ判定確保 */
}

.news-list li > a::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 50%, #1D3557 48%, transparent 49%) left 60% center/8px 8px no-repeat, radial-gradient(circle at 35% 50%, #1D3557 48%, transparent 49%) left 40% center/8px 8px no-repeat;
  box-shadow: inset 0 0 0 2px rgba(29, 53, 87, 0.12);
  background-color: #F1F6FB;
  transition: transform 0.2s ease;
}

.news-list li:hover > a::after {
  transform: translateX(2px);
}

.sp-flex {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 日付チップ */
.post-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #AEC6DF;
  color: #fff;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  min-width: 150px;
}

/* カテゴリは今回非表示 */
.cat-name {
  display: none;
}

/* タイトル文字 */
.news-list li > a {
  font-size: 1.15rem;
  line-height: 1.2;
}

/* SP最適化 */
@media (max-width: 768px) {
  .news-list {
    max-width: 100%;
  }
  .news-list li {
    padding: 14px 16px;
  }
  .post-date {
    min-width: 180px;
    padding: 8px 14px;
    font-size: 0.95rem;
  }
  .news-list li > a {
    font-size: 1rem;
    gap: 12px;
  }
  .news .tittle {
    margin-bottom: 0px;
  }
}
/* セクション下部の“点線デコ” */
.news .container::after {
  content: "";
  display: block;
  max-width: 980px;
  height: 8px;
  margin: 36px auto 0;
  background: radial-gradient(#C9B6A0 2px, transparent 2.5px) repeat-x;
  background-size: 18px 8px;
  background-position: center;
  opacity: 0.9;
}

/* =========================
   PRICE — 既存構成を尊重
========================= */
.price {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  justify-items: stretch;
}

@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* 共通トークン */
:root {
  --tenon-navy: #1D3557;
  --tenon-ink: #4b433b;
  --tenon-beige-1: #F7EFE2;
  --tenon-beige-2: #EADACA;
  --tenon-beige-3: #DCC7B1;
  --shadow-soft: 0 10px 24px rgba(29, 53, 87, .08);
}

/* カード本体：二重のベージュ枠＋淡シャドウ */
.price-card {
  position: relative;
  overflow: hidden;
  background: #FFFEF9;
  border-radius: 16px;
  padding: 22px 22px 18px;
  border: 1.6px solid var(--tenon-beige-3);
  box-shadow: inset 0 0 0 2px var(--tenon-beige-2), var(--shadow-soft);
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--tenon-navy);
}

.price-card h3 span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #7a7067;
}

.price-card .desc {
  margin: 6px 0 2px;
  font-size: 0.95rem;
  color: var(--tenon-ink);
  opacity: 0.95;
}

.price-card .catch {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #C26A34;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dotted #E9E1D6;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px dotted #E9E1D6;
  font-size: 1rem;
}
.price-list li strong {
  color: #4a4038;
  font-weight: 700;
  font-size: 1.2rem;
}
.price-list li span {
  color: var(--tenon-navy);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
}

/* 既存の斜めテキストバッジは非表示 */
.price-card .badge {
  display: none !important;
}

/* 帯色パレット */
.price-card.light {
  --obi-main: #C54B4B;
  --obi-light: #E98A7D;
  --obi-dark: #9E3A3A;
}

.price-card.signature {
  --obi-main: #9A89C8;
  --obi-light: #BBAFE0;
  --obi-dark: #806FB5;
}

.price-card.walk {
  --obi-main: #8AAFD1;
  --obi-light: #B7D0E6;
  --obi-dark: #6F95BD;
}

.price-card.care {
  --obi-main: #B9923F;
  --obi-light: #E7C878;
  --obi-dark: #8E7431;
}

/* 斜め帯 */
.price-card.light::before,
.price-card.light::after,
.price-card.signature::before,
.price-card.signature::after,
.price-card.walk::before,
.price-card.walk::after,
.price-card.care::before,
.price-card.care::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.price-card.light::after,
.price-card.signature::after,
.price-card.walk::after,
.price-card.care::after {
  top: 20px;
  right: -43px;
  width: 150px;
  height: 26px;
  transform: rotate(45deg);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--obi-light), var(--obi-main) 60%);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.price-card.light::before,
.price-card.signature::before,
.price-card.walk::before,
.price-card.care::before {
  top: 5px;
  right: -34px;
  width: 210px;
  height: 1.5px;
  transform: rotate(45deg);
  border-radius: 4px;
  background: #fff;
  z-index: 3;
}

/* タイトル左の小マーク */
.price-card h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #F0B429;
  box-shadow: 2px 2px 0 0 #E1A31A inset;
  transform: translateY(-1px);
}

/* GUIDE */
.guide {
  padding: 40px 0 20px;
}
.guide a:hover {
  opacity: 0.75;
}

.guide-box {
  background: var(--tenon-beige-1);
  border: 1.6px solid var(--tenon-beige-3);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 26px 22px;
}
.guide-box span {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #4c443d;
}
.guide-box span.orange {
  color: #1d3557;
  text-decoration: none;
  font-weight: bold;
}

.guide-title {
  font-family: "Cormorant Garamond", "リュウミン R-KL", serif;
  font-size: 42px;
  line-height: 1;
  text-align: center;
  margin: 0 0 14px;
  color: var(--tenon-navy);
  letter-spacing: 0.02em;
}

.guide-box p {
  margin: 10px 0;
  color: var(--tenon-ink);
}

.guide-box .note {
  margin-top: 6px;
}

.guide-box .note span {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #4c443d;
}

@media (max-width: 480px) {
  .guide-title {
    font-size: 32px;
  }
}
/* assets/css/components/slider.css */
/* --- 既存のレイアウト系は必要箇所のみ抜粋（変更なし） --- */
.custom-slider {
  --gap: 20px;
  --nav-size: 52px;
  --nav-bg: var(--navy);
  --nav-fg: #fff;
  --nav-shadow: var(--shadow-soft);
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform 0.35s ease;
}

.slide {
  flex: 0 0 calc((100% - var(--gap) * 3) / 3.5);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: color-mix(in oklab, var(--powder) 25%, white);
  box-shadow: var(--shadow-soft);
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide:hover {
  border: 4px #FDF573 solid;
}

.spacer {
  flex: 0 0 6%;
}

/* --- ナビ共通（初期は何も表示しない） --- */
.custom-slider .nav {
  position: absolute;
  top: 41%;
  transform: translateY(-50%) scale(0.98);
  width: var(--nav-size);
  height: var(--nav-size);
  display: grid;
  place-items: center;
  color: var(--nav-fg);
  background: var(--nav-bg);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 5;
}

.custom-slider .nav--prev {
  left: 12px;
}

.custom-slider .nav--next {
  right: 12px;
}

/* クリック時のみ縮小（hover演出なし） */
.custom-slider .nav:active {
  transform: translateY(-50%) scale(0.96);
}

/* disabled はクリック不可の示唆。常時うすく見せる（hover不要） */
.custom-slider .nav[disabled] {
  cursor: not-allowed;
  opacity: 0.32;
  filter: grayscale(0.2) brightness(0.95);
  box-shadow: none;
}

/* ===== 表示制御（ID指定＋!importantで確実に上書き） ===== */
/* ≥768px：デフォ非表示／枠ホバー中のみ表示 */
@media (min-width: 769px) {
  #banner-slider .nav {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  #banner-slider:hover .nav {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  /* 端（disabled）はホバー不要で常時うすいまま表示 */
  #banner-slider:hover .nav[disabled] {
    opacity: 0.32 !important;
    filter: grayscale(0.2) brightness(0.95) !important;
    box-shadow: none !important;
    pointer-events: none !important;
    /* 念のため操作不可を強制 */
  }
}
/* ≤767px：常時表示（従来仕様維持）／disabled も常時うすい */
@media (max-width: 767px) {
  #banner-slider .nav {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  #banner-slider .nav[disabled] {
    opacity: 0.32 !important;
    filter: grayscale(0.2) brightness(0.95) !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }
}
/* ===== レスポンシブ強化（既存） ===== */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc((100% - var(--gap) * 2) / 2.5);
  }
}
@media (max-width: 680px) {
  .custom-slider {
    --nav-size: 44px;
  }
  .slide {
    flex: 0 0 calc((100% - var(--gap)) / 1.15);
  }
  .spacer {
    flex-basis: 4%;
  }
}
.hime-blog {
  --gap: 56px;
  --accent: var(--navy);
  --bg: #fff;
  --text: var(--ink);
}

.hime-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 20px;
}

.hime-blog__title {
  font-size: clamp(24px, 2.4vw, 40px);
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

.hime-blog__viewall {
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding-right: 14px;
}
.hime-blog__viewall::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* grid */
.hime-blog__list {
  --cols: 4;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  align-items: start;
}

.hime-blog[data-cols="3"] .hime-blog__list {
  --cols: 3;
}

.hime-blog[data-cols="2"] .hime-blog__list {
  --cols: 2;
}

@media (max-width: 1024px) {
  .hime-blog__list {
    --cols: 2;
    --gap: 40px;
  }
}
@media (max-width: 560px) {
  .hime-blog__list {
    --cols: 1;
    --gap: 28px;
  }
}
.hime-blog__item {
  position: relative;
  list-style: none;
}

.hime-blog__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 形状 */
.hime-blog {
  --drop-normal: 52% 48% 50% 49% / 50% 56% 44% 50%;
  --drop-hover: 62% 38% 48% 52% / 42% 68% 34% 56%;
}

.hime-blog__figure {
  position: relative;
  aspect-ratio: 1/1;
  margin: 0 auto 15px;
  width: min(100%, 360px);
  overflow: visible;
}

:where(.hime-blog__img),
.hime-blog__figure::before {
  border-radius: var(--drop-normal);
  transition: border-radius 0.28s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.hime-blog__item:hover :where(.hime-blog__img),
.hime-blog__item:hover .hime-blog__figure::before {
  border-radius: var(--drop-hover);
}

.hime-blog__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: none;
  border: 1px var(--navy) solid;
}

.hime-blog__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-yellow);
  transform: translate(6px, 9px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease;
}

.hime-blog__figure::after {
  content: none;
}

.hime-blog__name {
  position: absolute;
  left: -15px;
  bottom: 66px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: none;
  z-index: 3;
}

.hime-blog__name::before {
  content: "";
  position: absolute;
  right: -190px;
  top: -120%;
  width: 85px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left center;
  z-index: -1;
  box-shadow: 0 0 0 1px #fff;
}

.hime-blog__name::after {
  content: "";
  position: absolute;
  right: -192px;
  top: -120%;
  width: 85px;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left center;
}

.hime-blog__card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 14px 16px 16px;
  box-shadow: none;
  max-width: 360px;
  margin-inline: auto;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hime-blog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in oklab, var(--ink) 60%, white);
  font-size: 12px;
  margin-bottom: 8px;
}

.hime-blog__new {
  color: #ff3b30;
  font-weight: 700;
  font-size: 11px;
}

.hime-blog__titletext {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 2px;
}

.hime-blog__excerpt {
  display: none;
}

.hime-blog__item:hover .hime-blog__figure::before {
  opacity: 1;
}

.hime-blog__item:hover .hime-blog__card {
  background: var(--accent-yellow);
  border-color: var(--line);
  transform: translateY(-2px);
}

/* レスポンシブ微調整 */
@media (max-width: 1024px) {
  .hime-blog__name {
    left: 55px;
    bottom: 65px;
  }
  .hime-blog__name::before {
    width: 110px;
    right: -300px;
  }
  .hime-blog__name::after {
    width: 110px;
    right: -303px;
  }
}
@media (max-width: 768px) {
  .hime-blog__name::before {
    width: 90px;
    right: -255px;
  }
  .hime-blog__name::after {
    width: 90px;
    right: -258px;
  }
  .hime-blog__name {
    left: 10px;
    bottom: 68px;
  }
}
@media (max-width: 560px) {
  .hime-blog__name {
    bottom: 65px !important;
  }
  .hime-blog__list {
    --cols: 2;
  }
  .hime-blog__name {
    left: 18px;
    bottom: 56px;
  }
  .hime-blog__name::before {
    width: 70px;
    right: -125px;
    top: -70%;
  }
  .hime-blog__name::after {
    width: 70px;
    right: -128px;
    top: -70%;
  }
}
@media (max-width: 400px) {
  .hime-blog__name::before {
    right: -107px;
  }
  .hime-blog__name::after {
    right: -110px;
  }
}
/* #reservation の表示アニメーション */
#reservation {
  transition: transform 1s ease-in-out, opacity 1s ease;
  will-change: transform, opacity;
}

/* 非表示状態：下に少しスライドしつつフェード */
#reservation.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* 端末の動き軽減設定 */
@media (prefers-reduced-motion: reduce) {
  #reservation {
    transition: opacity 200ms linear;
  }
  #reservation.is-hidden {
    transform: none;
  }
}
#reservation {
  position: fixed;
  right: 16px;
  bottom: 45px;
  width: 355px;
  height: 135px;
  padding: 22px 24px;
  z-index: 1001;
  color: #fff;
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
#reservation::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3333333333);
  border-radius: calc(var(--radius-lg) - 6px);
}
#reservation h2 {
  font-size: 1.3rem;
  margin: 0 0 6px;
  position: relative;
}
#reservation .flex {
  padding-top: 12px;
  display: flex;
  gap: 12px;
  z-index: 100;
  position: relative;
}
#reservation .left,
#reservation .right {
  width: 50%;
}
#reservation .img {
  width: 32px;
  height: 100%;
}
#reservation .img img {
  height: auto;
}
#reservation a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
#reservation a:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* 右側（電話）のみ：ホバー時に別画像へ差し替え */
#reservation .right .img {
  position: relative;
  width: 32px;
  /* 既存と合わせる */
  height: 32px;
  /* 疑似要素の描画領域を固定 */
}

#reservation .right .img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
  /* ふわっと切り替え */
}

/* 上に重ねる“ホバー用アイコン” */
#reservation .right .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/color.png") center/contain no-repeat;
  /* ← 置き場所：/assets/images/ */
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ホバー/キーボードフォーカスで差し替え */
#reservation .right a:hover .img::after,
#reservation .right a:focus-visible .img::after {
  opacity: 1;
}

#reservation .right a:hover .img img,
#reservation .right a:focus-visible .img img {
  opacity: 0;
}

@media (max-width: 1024px) {
  #reservation {
    right: 15px;
  }
}
/* SPは小さめ */
@media (max-width: 500px) {
  #reservation {
    width: 100%;
    right: 0px;
    left: 0px;
    bottom: 0px !important;
    height: auto;
    padding: 18px 16px;
    bottom: 0px;
    margin: 0;
    border-radius: 0px;
  }
  #reservation h2::after {
    left: 100px;
  }
  #reservation h2::before {
    right: 100px;
  }
  #reservation .flex {
    gap: 10px;
  }
}
@media (max-width: 400px) {
  #reservation h2::after {
    left: 75px;
  }
  #reservation h2::before {
    right: 75px;
  }
}
@media (max-width: 350px) {
  #reservation h2::after {
    left: 50px;
  }
  #reservation h2::before {
    right: 50px;
  }
}
/* Loader base */
#site-loader {
  position: fixed;
  inset: 0;
  /* 参考画像の背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: loaderFadeOut 1s ease forwards;
  animation-delay: 4s;
  /* 4秒後にフェードアウト */
  background-image: url("https://shotaweb.xsrv.jp/try11/wp-content/themes/refre/assets/images/vojtech-bruzek-Yrxr3bsPdS0-unsplash.jpg");
  background-size: cover;
  /* 要素いっぱいに拡大縮小（はみ出し可） */
  background-position: center;
  /* 中央基準で配置 */
  background-repeat: no-repeat;
  /* 繰り返さない */
}
#site-loader::after {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  position: relative;
}
.loader-content img {
  margin-bottom: 30px;
  width: 60%;
}
.loader-content .loader-text {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.15em;
}

/* 各要素の順番フェードイン */
.loader-content img,
.loader-content .loader-text {
  opacity: 0;
}

.loader-content img {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
}

.loader-content .loader-text:nth-of-type(1) {
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
}

.loader-content .loader-text:nth-of-type(2) {
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.5s;
}

/* fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ローダー全体を消す */
@keyframes loaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 500px) {
  .loader-content .loader-text {
    font-size: 1.2rem;
  }
  div#site-loader img {
    margin-bottom: 30px;
    width: 75%;
  }
}
:root {
  --a-dur: .8s;
  --a-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===== アニメ軽減 ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* ===== 基本：スクロールでふわっと ===== */
[data-anim] {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity var(--a-dur) var(--a-ease), transform var(--a-dur) var(--a-ease);
  will-change: opacity, transform;
}

.is-inview[data-anim] {
  opacity: 1;
  transform: none;
}

[data-anim=fade] {
  transform: none;
}

[data-anim=fade-up] {
  transform: translate3d(0, 16px, 0);
}

[data-anim=fade-down] {
  transform: translate3d(0, -16px, 0);
}

[data-anim=fade-left] {
  transform: translate3d(-16px, 0, 0);
}

[data-anim=fade-right] {
  transform: translate3d(16px, 0, 0);
}

[data-anim=zoom-in] {
  transform: scale(0.96);
  transform-origin: center;
}

/* まとめて順次表示（直下の子に遅延を振る） */
[data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity var(--a-dur) var(--a-ease), transform var(--a-dur) var(--a-ease);
}

.is-inview[data-stagger] > * {
  opacity: 1;
  transform: none;
}

/* ===== KV の浮遊ドット ===== */
.kv__decos .kv__dot-fill,
.kv__decos .kv__dot-ring,
.kv__decos .kv__dot-fill-deep,
.kv__decos .kv__dot-stripe {
  animation: floatY 6s var(--a-ease) infinite alternate;
  will-change: transform;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kv__decos .kv__dot-fill,
  .kv__decos .kv__dot-ring,
  .kv__decos .kv__dot-fill-deep,
  .kv__decos .kv__dot-stripe {
    animation: none;
  }
}
/* ====== ★ ここが重要：ローダー中は KV と バナーのみ完全停止 ====== */
/* JS が .kv と .banner に .is-hold を付け、ローダー終了後に外します */
.kv.is-hold [data-anim],
.banner.is-hold [data-anim],
.kv.is-hold [data-stagger] > *,
.banner.is-hold [data-stagger] > * {
  opacity: 0 !important;
  transform: translate3d(0, 12px, 0) !important;
  transition: none !important;
}

.kv.is-hold .kv__decos .kv__dot-fill,
.kv.is-hold .kv__decos .kv__dot-ring,
.kv.is-hold .kv__decos .kv__dot-fill-deep,
.kv.is-hold .kv__decos .kv__dot-stripe {
  animation-play-state: paused !important;
}

/* ===== 出勤（下層） ===== */
.schedule {
  padding: 48px 0 64px;
  background: #fffaf1;
}

.schedule .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タブ：中央寄せ・今日から7本 */
.sch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 70px;
  justify-content: center;
  /* ★中央寄せ */
}

.sch-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cfcfcf;
  background: #f6f7f8;
  color: #333;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  letter-spacing: 0.02em;
  transition: 0.2s;
}

article.sch-card:hover {
  transform: scale(1.05);
}

.sch-tab:is(:hover, :focus) {
  filter: brightness(0.98);
}

.sch-tab.is-active {
  background: #ffffff;
  border-color: #1d3557;
  color: #1d3557;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* グリッド */
.sch-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .sch-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .sch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sch-grid .sch-photo {
    height: 240px;
  }
  .sch-tab {
    min-width: 135px;
  }
}
@media (max-width: 500px) {
  .sch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sch-grid .sch-photo {
    height: 190px;
  }
  .sch-tab {
    min-width: 110px;
  }
}
/* カード（独立定義） */
.sch-card {
  background: #fff;
  border: 1px solid #e7e2d9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.sch-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f4f4f4;
}

.sch-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sch-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

.sch-badge--rec {
  background: #13b36b;
}

/* ← 緑は「おすすめ」 */
.sch-badge--new {
  background: #ef476f;
}

/* ← 新人 */
.sch-body {
  padding: 12px;
}

.sch-name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  color: #1d3557;
  margin: 0 0 6px;
}

.sch-meta {
  font-size: 12px;
  color: #7b736a;
  margin: 0 0 8px;
}

.sch-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: #333;
  margin: 0;
}

.sch-time::before {
  content: "⏰";
}

.sch-empty,
.sch-loading {
  grid-column: 1/-1;
  text-align: center;
  color: #6b6b6b;
  padding: 28px 0;
}

@media (max-width: 400px) {
  .sch-tabs {
    justify-content: space-evenly;
  }
  .sch-tab {
    min-width: 60px !important;
    padding: 10px 15px;
  }
}
.roster-section {
  margin-top: 40px;
}

.roster-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 70px;
  justify-content: center;
}

.roster-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cfcfcf;
  background: #f6f7f8;
  color: #333;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  letter-spacing: 0.02em;
  transition: 0.2s;
}

.roster-btn:hover {
  filter: brightness(0.98);
}

.roster-btn.is-active {
  background: #ffffff;
  border-color: #1d3557;
  color: #1d3557;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

article.sch-card:hover {
  transform: scale(1.05);
}

.roster-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ロスター：読み込み中の中央寄せ */
#roster-grid.is-loading-centered {
  display: grid;
  place-items: center;
  /* ど真ん中 */
  min-height: 240px;
  /* 充分な高さ（必要に応じて調整） */
  text-align: center;
  display: block;
}

@media (max-width: 1024px) {
  .roster-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .roster-grid .sch-photo {
    height: 240px;
  }
  .sch-tab {
    min-width: 135px;
  }
}
@media (max-width: 500px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roster-grid .sch-photo {
    height: 190px;
  }
  .sch-tab {
    min-width: 110px;
  }
}
/* 空表示 */
.roster-empty {
  text-align: center;
  padding: 24px 12px;
  color: #4b4b4b;
  background: #f7f7f9;
  border: 1px dashed #ddd;
  border-radius: 12px;
}

@media (max-width: 400px) {
  .roster-btn {
    min-width: 60px;
    padding: 10px 30px;
  }
}
.cast-page {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0 16px;
}

.cast-loading {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

/* 2カラム */
.cast-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

@media (max-width: 920px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}
/* 左：写真・ギャラリー・出勤予定 */
.cast-hero {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.cast-hero .badge-today {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #e74c3c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.cast-hero-main {
  aspect-ratio: 4/5;
  background: #f3f3f3 center/cover no-repeat;
}

.hero-img {
  height: 400px;
}

.cast-hero-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #fff;
  overflow: auto;
}

.cast-thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background: #eee center/cover no-repeat;
  cursor: pointer;
  flex: 0 0 auto;
  border: 2px solid transparent;
}

.cast-thumb.is-active {
  border-color: #ff66a5;
}

.cast-section {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.manager-comment__body {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.cast-sec-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #333;
}

/* 出勤表 */
.cast-schedule table {
  width: 100%;
  border-collapse: collapse;
}

.cast-schedule th,
.cast-schedule td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.cast-schedule tr.is-today {
  background: #fff3f7;
}

/* 右：姫日記 / プロフィール */
.cast-profile .kv {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cast-name {
  font-size: 22px;
  font-weight: 800;
}

.cast-meta {
  color: #777;
  font-size: 13px;
}

.cast-diary-list {
  display: flex;
  gap: 8px;
  overflow: auto;
}

.cast-diary-card {
  width: 160px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #eee;
}

.cast-diary-thumb {
  aspect-ratio: 4/3;
  background: #eee center/cover no-repeat;
  border-radius: 10px 10px 0 0;
}

.cast-diary-body {
  padding: 8px;
  font-size: 13px;
}

/* バッジ */
.badge {
  display: inline-block;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe4ef;
  color: #cc2c78;
}

.thumb {
  position: relative;
}

.thumb.is-locked img {
  filter: blur(6px) brightness(0.85);
}

.thumb.is-locked::after {
  content: "🔒";
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 12px;
}

#gallery-tip {
  margin-top: 8px;
  color: #666;
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.is-open,
.modal-backdrop.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  background: #fff;
  max-width: 420px;
  width: 92%;
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.modal-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.modal-card p {
  margin: 0 0 5px;
  color: #333;
}

.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.modal-actions .btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 9999px;
  background: #f2f2f2;
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.modal-close svg {
  width: 20px;
  height: 20px;
  display: block;
  pointer-events: none;
}

.addition {
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
}

.modal-close:hover {
  background: #e5e5e5;
}

.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button#pw-submit {
  background: #000;
  color: #Fff;
}
button#pw-submit:hover {
  opacity: 0.85;
}

a#pw-line {
  background: #06c755;
  color: #fff;
  text-align: center;
}
a#pw-line:hover {
  opacity: 0.85;
}

/* 料金表 全体 */
.price-table {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  max-width: 900px;
  margin: 0px auto;
}
.price-table a:hover {
  opacity: 0.75;
}
.price-table .pick {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #1d3557;
  font-weight: bold;
}
.price-table .desc {
  margin: 6px 0 2px;
  font-size: 0.95rem;
  color: var(--tenon-ink);
}
.price-table .catch {
  margin: 0.7rem 0 !important;
  margin-top: 0px !important;
  color: #C26A34 !important;
  font-size: 1rem;
  font-weight: bold;
}

.price-table h3 {
  background: #1D3557;
  color: #fff;
  font-size: 16px;
  padding: 8px 12px;
  margin-top: 50px;
  border-radius: 2px;
  text-align: center;
}

/* テーブル */
.price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  background: #fff;
}

.price-table table th,
.price-table table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.price-table table th {
  background: #f2f2f2;
  font-weight: 700;
}

.is-ext td {
  background: #fafafa;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

/* 延長行（枠内） */
/* 備考 */
.price-table p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
}

/* ===== 推奨エリア（枠なしの強調） ===== */
.recommend-plain {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 25px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.recommend-area {
  margin-top: 6px;
}

.recommend-plain {
  /* 枠なし */
}

.recommend-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 8px;
  font-weight: 700;
  color: #1D3557;
}

.recommend-flag {
  display: inline-block;
  background: #E76F51;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
}

.recommend-text {
  font-size: 14px;
}

.recommend-list {
  margin: 6px 0 0 1.2em;
  padding: 0;
}

.recommend-list li {
  margin: 4px 0;
}

.recommend-pick {
  margin: 8px 0 0;
  font-size: 13px;
}

.gmaps-link {
  color: #1a73e8;
  text-decoration: underline;
}

.chip {
  display: inline-block;
  background: #dfe9b5;
  color: #333;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* ===== ご利用可能ホテル（一覧） ===== */
.u-tel {
  color: #1a73e8;
  text-decoration: underline;
}

/* 既存互換（一覧では未使用） */
/* ===== 利用規約（前回の強化スタイル） ===== */
.terms-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.note {
  margin-top: 12px !important;
}

.terms-section {
  --terms-accent: #1D3557;
  --terms-danger: #B00020;
}

.terms-heading {
  font-weight: 700;
}

.terms-lead {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
}

.terms-alert {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #FFF5F5;
  border: 1px solid #ffd7d7;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.terms-alert__icon {
  flex: 0 0 auto;
}

.terms-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  margin: 16px 0;
}

.terms-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--terms-accent);
  margin: 6px 0 8px;
  text-align: left;
}

.terms-bullets {
  margin: 0;
  padding-left: 18px;
}

.terms-bullets li {
  margin: 6px 0;
}

.u-em {
  color: var(--terms-danger);
  font-weight: 700;
}

.terms-updated {
  font-size: 12px;
  color: #777;
  margin-top: 14px;
}

/* レスポンシブ */
@media (max-width: 500px) {
  .price-table {
    margin: 70px auto;
  }
  .terms-bullets {
    padding-left: 0;
  }
}
/* ===== Concept Alt: 交互レイアウト（背景色は変更しない） ===== */
:root {
  --navy: #1D3557;
  --ink: #222;
  --txt: #444;
  --line: #e6e1d5;
  --gold: #c7b58e;
  /* 見出しの番号色 */
  --marker: rgba(199, 181, 142, .35);
  /* マーカー色 */
}

.concept-alt {
  max-width: 1080px;
  margin: 140px auto 120px;
  padding: 0 20px;
  color: var(--txt);
  font-family: "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

section.concept-alt .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 番号付きリスト */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: feat;
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 0 130px;
  counter-increment: feat;
}

.feature:last-child {
  margin-bottom: 0;
}

/* 交互：偶数行は左右入替 */
.feature:nth-child(even) .feature-media {
  order: 2;
}

.feature:nth-child(even) .feature-body {
  order: 1;
}

/* 画像：1 or 2 */
.media-single {
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.media-single img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.media-double {
  margin: 0;
  display: grid;
  gap: 12px;
}

.media-double img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.feature.is-double .feature-media {
  align-self: stretch;
}

/* 見出し／番号 */
.feature-title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink);
  font-weight: 800;
  position: relative;
  padding-left: 64px;
}

.feature-title::before {
  content: counter(feat, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0.02em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--gold);
  font-weight: 700;
}

.feature-sub {
  margin: 0 0 12px;
  color: #6f6a5f;
  font-weight: 700;
}

/* 本文 */
.feature-body p {
  margin: 0.5rem 0;
  line-height: 1.9;
}

.feature-mini {
  margin: 12px 0 4px;
  font-size: 1.3rem;
  color: #c7b58e;
  font-weight: 800;
}

/* リスト */
.course-list,
.reco-list {
  margin: 0.4rem 0 0;
}

.course-list li,
.reco-list li {
  margin: 0.2rem 0;
}

.chip {
  display: inline-block;
  background: #EEF3F8;
  color: #21405f;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  margin-right: 6px;
}

/* 擬似マーカー */
.hi {
  background: linear-gradient(transparent 62%, var(--marker) 0);
  padding: 0 0.06em;
}

/* 区切りライン（各ブロックの端に薄いライン） */
.feature {
  position: relative;
}
.feature:last-child::after {
  display: none;
}

.feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.06) 12%, rgba(0, 0, 0, 0.06) 88%, transparent 100%);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature:nth-child(even) .feature-media,
  .feature:nth-child(even) .feature-body {
    order: unset;
  }
  /* 縦積み時は順序統一 */
  .feature-title {
    padding-left: 56px;
  }
}
@media (max-width: 560px) {
  .concept-alt {
    margin: 80px auto 70px;
  }
  .feature {
    margin-bottom: 52px;
  }
  .feature-title {
    padding-left: 48px;
  }
  .feature-title::before {
    top: -0.1em;
  }
}
/* ===== FLOW ===== */
:root {
  --flow-accent: #c7b58e;
  /* 番号・強調（落ち着いたゴールド） */
  --flow-title: #222;
  --flow-text: #444;
  --flow-head: #6f6a5f;
  /* 小見出し */
  --flow-bg: #fbfaf6;
  /* 箱の背景（薄いベージュ） */
  --flow-border: #e6e1d5;
  /* 線色 */
}

.flow {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 48px;
  color: var(--flow-text);
  font-family: "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  background-color: #fff;
  border: 1px solid var(--flow-border);
  border-radius: 14px;
}
.flow a:hover {
  opacity: 0.75;
}
.flow .pick {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #1d3557;
  font-weight: bold;
}

.flow__title {
  text-align: center;
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 0.12em;
  color: #1D3557;
  /* 料金ページに合わせたネイビー */
  margin: 0 0 28px;
  font-weight: 700;
}

.flow__list {
  list-style: none;
  counter-reset: flow-step;
  margin: 0;
  padding: 0;
}

/* パネル風ボックス */
.flow-item {
  position: relative;
  counter-increment: flow-step;
  padding: 26px 24px 24px 72px;
  /* 左余白を広くして番号を寄せる */
  margin: 0 0 42px;
  background: var(--flow-bg);
  border: 1px solid var(--flow-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.flow-item:last-child {
  margin-bottom: 0;
}

/* 左の大きな番号（1., 2., ...） */
.flow-item::before {
  content: counter(flow-step) ".";
  position: absolute;
  left: 22px;
  top: 24px;
  font-size: 28px;
  line-height: 1;
  color: var(--flow-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

/* ボックス下の区切り（三角） */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 25px solid var(--flow-border);
  filter: drop-shadow(0 1px 0 #fff);
}

/* 項目見出し＋下罫線 */
.flow-item__head {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--flow-head);
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.flow-item__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0, var(--flow-border) 12%, var(--flow-border) 88%, transparent 100%);
}

/* 本文 */
.flow-item__body {
  font-size: 14px;
  line-height: 1.9;
}

.flow-item__body p {
  margin: 0;
}

.flow strong {
  color: #7a5b3e;
  font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 640px) {
  .flow-item {
    padding: 22px 16px 20px 56px;
    margin-bottom: 36px;
  }
  .flow-item::before {
    left: 14px;
    top: 20px;
    font-size: 24px;
  }
}
/* KVのサブタイトル微調整（必要な場合のみ効く） */
@media (max-width: 500px) {
  #flow p.kv-sp__subtitle {
    top: 68%;
  }
}
/* ========================
   姫日記一覧
======================== */
.hime-diary__title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.hime-diary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.hime-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  position: relative;
}
.hime-card:hover {
  transform: scale(1.05);
}

span.hime-card__name {
  font-size: 1.2rem;
}

.hime-card__date {
  position: absolute;
  bottom: 103px;
  right: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 4px;
}

.hime-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hime-card__img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  /* 縦長比率に近づける */
  height: 300px;
}

.hime-card__meta {
  font-size: 16px;
  color: #1e40af;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.hime-card__bubble {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 8px 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
  position: relative;
}
.hime-card__bubble p {
  font-size: 11px;
}

.hime-card__bubble::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 16px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #fafafa transparent;
}

.hime-card__bubble::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 16px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #f0f0f0 transparent;
}

.hime-pagination {
  margin-top: 30px;
  text-align: center;
}

.hime-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
}

.hime-pagination .current {
  background: #333;
  color: #fff;
  border-color: #333;
}

@media (max-width: 1024px) {
  .hime-diary__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .hime-diary__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hime-diary__grid .hime-card__img img {
    height: 240px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .hime-diary__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hime-diary__grid .hime-card__img img {
    aspect-ratio: 3/4;
    background: #f3f4f6;
    height: 190px;
    width: 100%;
  }
}
/* 全体 */
.cos-area {
  background: #fff6ed;
  padding: 12px 0;
}

/* フィルタチップ */
.cos-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 70px;
  justify-content: center;
}

.cos-chip {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cfcfcf;
  background: #f6f7f8;
  color: #333;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  letter-spacing: 0.02em;
  transition: 0.2s;
}

.cos-chip:hover {
  filter: brightness(0.98);
}

.cos-chip.is-active,
.cos-chip[aria-pressed=true] {
  background: #ffffff;
  border-color: #1d3557;
  color: #1d3557;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 一覧グリッド */
.cos-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

.cos-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

/* カード */
.cos-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.cos-card:hover {
  transform: scale(1.05);
}

.cos-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.cos-card__media {
  aspect-ratio: 3/4;
  background: #f3f4f6;
}

.cos-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cos-card__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.cos-card__body {
  padding: 10px 12px 12px;
}

.cos-card__title {
  font-size: 15px;
  line-height: 1.35;
  margin: 2px 0 6px;
  font-weight: 700;
  color: #111827;
}

.cos-card__excerpt {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

/* 非表示用 */
.is-hidden {
  display: none !important;
}

/* 空 */
.cos-empty {
  max-width: 1200px;
  margin: 16px auto;
  padding: 12px 16px;
  color: #6b7280;
}

/* ---- タイトル ---- */
.cos-entry__title {
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  margin: 12px 0 18px;
  font-weight: 700;
}

/* ---- スライダー（PCは3枚同時・左右矢印） ---- */
.cos-slider {
  position: relative;
  max-width: 1200px;
  /* 画像に近い横幅 */
  margin: 0 auto 18px;
}

.cos-slider__viewport {
  overflow: hidden;
}

.cos-slider__list {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
}

.cos-slide {
  flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .cos-slide {
    flex-basis: calc((100% - 24px) / 3);
  }
  /* 3枚 */
}
.cos-slide__img {
  display: block;
  width: 100%;
  height: auto;
  background: #f6f6f6;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---- 矢印 ---- */
.cos-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 56px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8509803922);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 26px;
  line-height: 1;
  color: #444;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cos-slider__nav:hover {
  background: #fff;
}

.cos-slider__nav--prev {
  left: 6px;
}

.cos-slider__nav--next {
  right: 6px;
}

/* ---- 本文 ---- */
.cos-entry__content {
  max-width: 900px;
  margin: 18px auto;
  padding: 0 12px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .cos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cos-grid .cos-card__media {
    height: 240px;
    width: 100%;
  }
  .cos-tab {
    min-width: 135px;
  }
}
@media (max-width: 500px) {
  .cos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cos-grid .cos-card__media {
    aspect-ratio: 3/4;
    background: #f3f4f6;
    height: 190px;
    width: 100%;
  }
  .cos-tab {
    min-width: 110px;
  }
}
@media (max-width: 400px) {
  .cos-chip {
    min-width: 100px;
    padding: 10px;
  }
}
.cast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}

.cast-left {
  position: relative;
}

.cast-section {
  margin-bottom: 24px;
  background: #e9e1d6;
}

.cast-copy {
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 6px;
}

.cast-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.cast-meta-line {
  opacity: 0.8;
  margin-bottom: 8px;
}

.hero-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35) !important;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover, .nav-btn:focus-visible {
  background: rgba(0, 0, 0, 0.5) !important;
  outline: none;
}
.nav-btn.nav-prev {
  left: 8px;
}
.nav-btn.nav-next {
  right: 8px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  border-radius: 8px;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.8;
  cursor: pointer;
}
.thumb.is-active img {
  outline: 3px solid var(--navy);
  opacity: 1;
}

.cast-sec-title {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  margin: 12px 0;
}

.cast-right .cast-sec-title {
  margin-top: 0;
}

.cast-schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
.cast-schedule-table th,
.cast-schedule-table td {
  padding: 10px;
  background: #fff;
}
.cast-schedule-table th {
  width: 10em;
  text-align: left;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
}
.cast-schedule-table td {
  border-radius: 0 8px 8px 0;
}
.cast-schedule-table tr.is-today th,
.cast-schedule-table tr.is-today td {
  background: var(--powder);
  font-weight: 700;
}

.diary-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 420px) {
  .diary-list {
    grid-template-columns: 1fr;
  }
}

.diary-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.diary-card .diary-thumb {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
.diary-card .diary-text {
  padding: 15px 10px;
}
.diary-card .diary-title {
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  font-size: 1rem;
}
.diary-card .diary-date {
  opacity: 0.75;
  font-size: 0.9rem;
}

.prof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.prof-list li {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.primary .hime-blog__name::after, .primary .hime-blog__name::before {
  width: 70px;
  right: -155px;
  top: -82%;
}
.primary .hime-blog__name::before {
  right: -153px;
}

#hime-diary .diary-slider {
  position: relative;
}
#hime-diary .diary-viewport {
  overflow: hidden;
}
#hime-diary .diary-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
#hime-diary .diary-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
#hime-diary.diary-pager,
#hime-diary .diary-pager {
  margin-top: 8px;
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.8;
}
#hime-diary .diary-slider .nav-btn.diary-next {
  right: 4px;
}
#hime-diary .diary-slider .nav-btn.diary-prev {
  left: 4px;
}
@media (max-width: 420px) {
  #hime-diary .nav-btn.diary-prev {
    left: 4px;
  }
  #hime-diary .nav-btn.diary-next {
    right: 4px;
  }
}

.news-wrapper {
  margin: 0 auto;
  background: #fff;
  border: 1px solid;
  border-radius: 10px;
  padding: 20px 3%;
}
.news-wrapper .flex {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  gap: 10px;
}
.news-wrapper .post-categories {
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #AEC6DF;
  color: #fff;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  width: auto;
}
.news-wrapper .post-categories a {
  color: #fff;
  text-decoration: none;
}
.single-inner {
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 4px #004DA0 dotted;
}

@media (max-width: 768px) {
  .news-wrapper h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .news-wrapper h2 {
    font-size: 1.1rem;
  }
  .news-wrapper .single-inner {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
/* ===== Recruit base（既存） ===== */
/* 募集要項カード */
.req-wrap {
  max-width: 1000px;
  margin: 24px auto;
  padding: 45px 45px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.req-head {
  text-align: center;
  margin-bottom: 22px;
}

.req-en {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
  font-weight: 700;
}

.req-ja {
  margin: 0.4rem 0 0;
  color: #1D3557;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

/* 🔝 キャッチ（中央配置・枠なし・文字間隔調整） */
.req-catch {
  text-align: center;
  margin: 6px auto 14px;
  max-width: 820px;
}

.catch {
  font-size: 1.2rem;
  margin: 0.7rem 0 !important;
  margin-top: 0px !important;
}

.req-catch__lead {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: normal;
  /* ← 文字間隔を正常化 */
  margin: 0;
}

.req-catch__sub {
  margin: 6px 0 0;
  color: #555;
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.75;
  letter-spacing: normal;
  /* ← 文字間隔を正常化 */
}

/* req body & rows（既存） */
.req-body {
  padding: 10px 8px 8px;
}

.req-table {
  margin: 0;
}

.req-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid #eee;
}

.req-row:first-child {
  border-top: 0;
}

.req-row dt {
  margin: 0;
  font-weight: 700;
  color: #333;
  position: relative;
}

.req-row dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 200px;
  height: 2px;
  background: #1D3557;
  border-radius: 2px;
}

.req-row dd {
  margin: 0;
  color: #444;
  line-height: 1.9;
}

.req-row strong {
  color: #1D3557;
  font-weight: 800;
}

.intro-inrow p {
  margin: 0.4rem 0;
}

.bullet {
  padding: 0;
}

/* ミニ定義表 */
.req-mini {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 18px;
  margin: 4px 0 0;
}

.req-mini dt {
  color: #333;
  font-weight: 700;
  position: static;
}

.req-mini dt::after {
  content: none;
}

.req-mini dd {
  margin: 0;
}

/* FAQ */
.faq-item {
  border: 1px solid #e6e1d5;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  margin: 8px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #1D3557;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .q {
  margin-right: 0.2em;
}

.faq-item .a {
  margin-top: 8px;
  color: #444;
}

/* 応募ボタン */
.req-row {
  /* 右側（電話）のみ：ホバー時に別画像へ差し替え */
}
.req-row .flex {
  padding-top: 12px;
  display: flex;
  gap: 12px;
  z-index: 100;
  position: relative;
}
.req-row .left,
.req-row .right {
  width: 50%;
}
.req-row .img {
  width: 32px;
  height: 100%;
}
.req-row .img img {
  height: auto;
}
.req-row a {
  color: #fff;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.req-row a:hover {
  transform: scale(1.05);
}
.req-row .right .img {
  position: relative;
  width: 32px;
  /* 既存と合わせる */
  height: 32px;
  /* 疑似要素の描画領域を固定 */
}

/* レスポンシブ */
@media (max-width: 960px) {
  .req-wrap {
    margin: 24px 14px;
    padding: 28px 18px;
    border-radius: 22px;
  }
  .req-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }
  .req-row dt::after {
    bottom: -6px;
    width: 130px;
  }
  .req-mini {
    grid-template-columns: 120px 1fr;
    gap: 6px 14px;
  }
}
@media (max-width: 500px) {
  .req-row dt::after {
    width: 90px;
  }
  .req-catch {
    margin: 4px auto 10px;
  }
}
/* ==== NEWS v5 ==== */
.lower-news {
  max-width: 1000px;
  margin: 0 auto;
  /* トグルボタン */
  /* カテゴリメニュー */
  /* 一覧 */
  /* ページネーション */
  /* SP */
}
.lower-news .news5-page {
  color: #111;
  font-feature-settings: "palt";
}
.lower-news .l-inner {
  margin: 0 auto;
  padding: 0 20px;
}
.lower-news .news5-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 40px 0 20px;
  position: relative;
}
.lower-news .news5-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.lower-news .news5-toggle {
  border: 1.5px solid var(--navy);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45em 1.2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
  width: 200px;
  justify-content: space-between;
}
.lower-news .news5-toggle svg {
  width: 18px;
  height: 18px;
}
.lower-news .news5-allwrap {
  position: relative;
}
.lower-news .news5-catmenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  z-index: 20;
  width: 200px;
}
.lower-news .news5-catitem {
  color: var(--navy);
  text-decoration: none;
  padding: 0.3em 0.6em;
  font-weight: 600;
}
.lower-news .news5-catitem.is-active {
  border-radius: 6px;
  padding: 0.3em 0.6em;
}
.lower-news .news5-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 10px 0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: block;
  color: inherit;
  text-decoration: none;
}
.lower-news .news5-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: #555;
}
.lower-news .news5-chip {
  background: var(--powder);
  color: #fff;
  border-radius: 8px;
  padding: 0.1em 0.5em;
  font-weight: 700;
}
.lower-news .news5-titletext {
  margin: 0;
  font-size: 1rem;
}
.lower-news .news5-titletext a {
  color: #111;
  text-decoration: none;
}
.lower-news .news5-titletext a:hover {
  text-decoration: underline;
}
.lower-news .news5-pager {
  margin: 20px 0 70px;
}
.lower-news .news5-pager ul {
  display: flex;
  gap: 6px;
  list-style: none;
  justify-content: center;
  padding: 0;
}
.lower-news .pager-num,
.lower-news .pager-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.lower-news .pager-num.is-current {
  background: var(--navy);
  color: #fff;
}
.lower-news .pager-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.lower-news [hidden] {
  display: none !important;
}
.lower-news a.news5-card:hover {
  background: var(--navy);
  transform: translateY(-5px);
  color: #fff;
}
.lower-news a.news5-card:hover time.news5-date {
  color: #fff;
}
.lower-news a:active,
.lower-news a:hover {
  outline-width: 0;
  background: var(--navy);
  color: #fff;
}
@media (max-width: 768px) {
  .lower-news .news5-title {
    font-size: 1.6rem;
  }
  .lower-news .news5-catmenu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 500px) {
  .post-date {
    min-width: 130px;
  }
}
/* === Design Tokens (TENON) ============================================== */
:root {
  --base: #FFFAF1;
  --navy: #1D3557;
  --powder: #AEC6DF;
  --ink: #2B2F36;
  --line: #E7E0D3;
  --accent-yellow: #FDF573;
  --shadow-soft: 0 10px 24px rgba(29, 53, 87, .10);
  --shadow-hover: 0 14px 28px rgba(29, 53, 87, .14);
  --radius-lg: 20px;
  --radius-md: 14px;
}

/* style.css など共通CSS */
html,
body {
  overflow-x: hidden !important;
  width: 100%;
}

a {
  text-decoration: none;
}

.tenon-loading {
  text-align: center !important;
}

img {
  height: auto;
  width: 100%;
}

/* ほんの少し揺らすアニメ（生っぽさ） */
@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes float-x {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}
/* 各セクション共通：背景デコを載せる台にする */
.kv,
.att-section,
.rec-section,
.price,
.guide,
.news {
  position: relative;
  overflow: visible;
}

/* 共通文字 */
.tittle,
.tittle2 {
  font-family: "Cormorant Garamond", "リュウミン R-KL", serif;
  font-size: 50px;
  text-align: center;
  margin: 0;
  line-height: 1;
  color: var(--navy);
  /* 統一 */
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 18px;
  background-color: var(--base);
  /* 統一 */
  color: var(--ink);
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 160px !important;
}

.btn {
  background: #fff;
  border: 2px solid var(--ink);
  padding: 10px 70px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  font-size: 1.3rem;
  color: var(--ink);
}
.btn:hover {
  background: var(--ink);
  color: #fff;
}

.btn-cover {
  margin-top: 40px;
  text-align: left;
}

p.tenon-loading {
  text-align: center;
}

/* 下層ページTOP */
.lower-top {
  margin-top: 90px;
}
.lower-top-fv {
  position: relative;
  width: auto;
  height: 440px;
  overflow: hidden;
}
.lower-top .fv-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-top .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 123, 255, 0.3);
}
.lower-top .fv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}
.lower-top .fv-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* =========== Subpage KV =========== */
.kv-sp,
.kv-sp * {
  box-sizing: border-box;
}

.kv-sp {
  position: relative;
  height: clamp(260px, 38vw, 520px);
}

.kv-sp::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  height: 440px;
  background: var(--powder);
  z-index: 0;
  width: 95%;
}

.kv-sp__img {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.kv-sp__img img {
  width: 95%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  display: block;
}

.kv-sp__img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 95%;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.kv-sp__title {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(28px, 5vw, 64px);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.kv-sp__subtitle {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.15em;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}

ol.breadcrumb-list {
  position: absolute;
  bottom: -65px;
  left: 5%;
  z-index: 3;
  color: var(--ink);
  display: flex;
  align-items: center;
}
ol.breadcrumb-list a {
  color: var(--ink);
  text-decoration: none;
}
ol.breadcrumb-list a:hover {
  text-decoration: underline;
}
ol.breadcrumb-list li.breadcrumb-sep {
  margin: 0 6px;
  color: color-mix(in oklab, var(--ink) 70%, white);
}

/* 汎用SP/PC制御 */
@media (min-width: 450px) {
  .sp {
    display: none;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 92%;
  }
  .lower-top-fv {
    height: 330px;
  }
  .lower-top .fv-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 650px) {
  .lower-top-fv {
    height: 245px;
  }
  .lower-top .fv-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
  .kv-sp__title {
    transform: translate(-50%, -55%);
    font-size: clamp(40px, 5vw, 64px);
  }
  .kv-sp__subtitle {
    top: 57%;
    font-size: 12px;
  }
  .kv-sp {
    margin-bottom: 120px !important;
    height: clamp(190px, 38vw, 520px);
  }
  .kv-sp span.current {
    font-size: 16px;
  }
  #school {
    margin-bottom: 0;
  }
  .school-movie {
    margin-top: 0;
  }
  .pc {
    display: none;
  }
  .tittle {
    font-size: 35px;
  }
  h3.tittle-flex {
    font-size: 35px;
  }
  .sp-none {
    display: none;
  }
  .section {
    margin-top: 90px;
  }
  .container {
    width: 95%;
  }
  section {
    margin-bottom: 70px !important;
  }
  .tittle {
    margin-bottom: 0;
  }
  .lower-top-fv {
    height: 205px;
  }
}
@media (max-width: 500px) {
  .kv-sp__title {
    font-size: clamp(32px, 5vw, 64px);
  }
}/*# sourceMappingURL=main.css.map */