@charset "utf-8";

/* ==========================================================================
   TOP PAGE STYLES (新規追加分)
   ========================================================================== */

/* --------------------------------------------------
   [Common / Utilities]
-------------------------------------------------- */
body {
  font-family: 'Shippori Mincho', serif;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.bg_light_gray {
  background-color: #f9f9f9;
}

.text_center {
  text-align: center;
}

/* 共通ボタン (View More / View All) */
.btn_more_wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 5px 0;
  min-width: 170px;
  text-decoration: none;
  background: none;
  border: none;
}
.btn_more_text {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #111;
  position: relative;
  z-index: 2;
  transition: color 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  padding-left: 20px;
  padding-right: 30px;
  display: inline-block;
}
.btn_more_icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70px;
  height: 44px;
  background: #111;
  border-radius: 40px;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  padding-right: 18px;
  box-sizing: border-box;
}
.btn_more_icon img {
  width: 42px !important;
  height: auto !important;
  position: absolute !important;
  top: 50% !important;
  right: 15px !important; /* rightに戻し、位置を固定 */
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1) !important;
}

/* ホバー時の共通アニメーション */
.lead_card_item:hover .btn_more_icon,
.event_item:hover .btn_more_icon,
.access_btn_wrap:hover .btn_more_icon,
.news_all_btn_wrap:hover .btn_more_icon,
.btn_more_wrap:hover .btn_more_icon {
  width: calc(100% + 15px) !important;
}
.lead_card_item:hover .btn_more_text,
.event_item:hover .btn_more_text,
.access_btn_wrap:hover .btn_more_text,
.news_all_btn_wrap:hover .btn_more_text,
.btn_more_wrap:hover .btn_more_text {
  color: #fff !important;
}
.lead_card_item:hover .btn_more_icon img,
.event_item:hover .btn_more_icon img,
.access_btn_wrap:hover .btn_more_icon img,
.news_all_btn_wrap:hover .btn_more_icon img,
.btn_more_wrap:hover .btn_more_icon img {
  transform: translate(5px, -50%) !important; /* X軸に5px移動、Y軸は中央を維持 */
}

/* --------------------------------------------------
   [Header]
-------------------------------------------------- */
.nav_admin a {
  color: #ffcc00 !important; /* 管理画面へのリンクを目立たせる */
  font-weight: bold;
}

.header {
  position: fixed !important; /* 絶対配置から固定配置に変更 */
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999 !important; /* 最前面に強制 */
  padding: 30px 4% !important;
  box-sizing: border-box;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  height: auto !important;
  display: block !important; /* smart.css の flex を打ち消し */
  transition: background 0.3s, padding 0.3s;
}

.header.is-animation {
  background: rgba(0, 0, 0, 0.5) !important; /* スクロール時は少し暗くして視認性確保 */
  padding: 15px 4% !important;
}

@media screen and (max-width: 1160px) {
  .header.is-animation {
    background: rgba(0, 0, 0, 0.7) !important; /* タブレット以下はさらに視認性を高めるため少し濃く */
  }
}

.header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10000 !important;
  width: 100%;
}

.logo {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: 10001 !important;
}

  .logo img {
    max-width: 200px !important;
    height: auto !important;
  }

.header .global_nav {
  display: block; /* pc.css の display: none を打ち消し */
  position: relative;
  z-index: 10001;
  margin-left: auto; /* ロゴとの間で左側に余白を作り、右に寄せる */
}

.global_nav ul {
  display: flex !important; /* pc.css の display: none を打ち消し */
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global_nav a {
  color: #fff !important;
  text-decoration: none;
  font-family: 'EB Garamond', serif; /* EB Garamondに変更 */
  font-size: 18px; /* フォントに合わせて少しサイズ調整 */
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  position: relative; /* 下線の基準点 */
  padding-bottom: 5px;
}

/* ホバー時の下線アニメーション */
.global_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.global_nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global_nav a:hover {
  opacity: 1; /* opacityの減衰をなくして下線を際立たせる */
}

.mobile_menu_trigger {
  display: none;
}

/* --------------------------------------------------
   [01: FV (Main Visual)]
-------------------------------------------------- */
.sec_mv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv_bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 暗めのオーバーレイ */
  z-index: 2; /* スライダーより上に */
}
.mv_slider_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* スライダー調整 (CSSアニメーション) */
.mv_slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #111; /* 初期表示のチラつき防止 */
}
.mv_slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  animation: mv-fade 20s infinite;
}
.mv_slider li:nth-child(1) { animation-delay: 0s; }
.mv_slider li:nth-child(2) { animation-delay: 5s; }
.mv_slider li:nth-child(3) { animation-delay: 10s; }
.mv_slider li:nth-child(4) { animation-delay: 15s; }

@keyframes mv-fade {
  0% { opacity: 0; transform: scale(1); z-index: 1; }
  5% { opacity: 1; z-index: 2; }
  25% { opacity: 1; z-index: 2; }
  30% { opacity: 0; transform: scale(1.05); z-index: 1; }
  100% { opacity: 0; transform: scale(1.05); z-index: 1; }
}

.sec_mv_in {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 1 !important; /* 強制的に表示 */
  transform: none !important; /* アニメーションの移動をリセット */
}

/* フェードインアニメーションの定義 */
@keyframes copy-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* キャッチコピーのアニメーション適用 */
.mv_copy_jp span,
.mv_copy_en {
  opacity: 0;
  animation: copy-fade-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 日本語：1行目 */
.mv_copy_jp span:nth-child(1) {
  animation-delay: 0.5s;
}

/* 日本語：2行目 (brを挟むため) */
.mv_copy_jp span:nth-of-type(2) {
  animation-delay: 0.8s;
}

/* 英語 */
.mv_copy_en {
  animation-delay: 1.2s;
}

.mv_copy_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0 5%;
  box-sizing: border-box;
}
.mv_copy_jp_box {
  display: block; /* フレックスを解除して自然な左揃えに */
  margin-left: 0;
}
.mv_copy_jp {
  font-size: 38px;
  line-height: 1.2;
  font-family: 'Shippori Mincho', serif; /* 日本語は明朝体を維持 */
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
  text-align: left;
}
.mv_copy_jp span {
  background: #fff;
  padding: 15px 30px; /* 上下の余白を拡大 (10px -> 15px) */
  display: inline-block;
  margin-bottom: 20px; /* 1行ごとの下の隙間 */
}
.mv_copy_jp span:last-child {
  margin-bottom: 0;
}
.mv_copy_en_box {
  width: auto;
  margin-left: auto; /* 右寄せ */
}
.mv_copy_en {
  font-family: 'EB Garamond', serif;
  font-size: 100px;
  line-height: 1.3; /* 行間を拡大 (1.1 -> 1.3) */
  letter-spacing: 0.02em;
  font-weight: 300;
  margin: 0;
  text-align: left;
}

/* --------------------------------------------------
   [02: Rental Space / Event 導線]
-------------------------------------------------- */
.lead_card_list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lead_card_item {
  width: 50%;
}
.lead_card_item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lead_card_img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lead_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lead_card_item:hover .lead_card_img img {
  transform: scale(1.05);
}
.lead_card_img_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead_card_title_jp {
  color: #fff;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.lead_card_title_en_box {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 70%; /* 画像の横幅に対して70%に設定 */
  padding: 20px 0; /* 左右のpaddingを0にし、widthで制御 */
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
.lead_card_title_en {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #111;
  margin: 0;
  text-align: center;
}
.lead_card_body {
  padding: 80px 0 0 0;
  background-color: #fff;
  text-align: left; /* テキストを左寄せに設定 */
}
.lead_card_subtitle {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
}
.lead_card_text {
  font-size: 14px;
  line-height: 2;
  color: #666;
  margin: 0 0 40px 0;
}
.btn_more_wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 5px 0;
  min-width: 170px; /* 全体を覆うための最低幅を少し拡大 */
}
.btn_more_text {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #111;
  position: relative;
  z-index: 2;
  transition: color 0.5s cubic-bezier(0.86, 0, 0.07, 1); /* イージングを鋭く */
  padding-left: 20px;
  padding-right: 30px; /* アイコンとの距離を広げる */
}
.btn_more_icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 70px; /* カプセルの初期幅を拡大 (60px -> 70px) */
  height: 44px; /* カプセルの高さを拡大 (36px -> 44px) */
  background: #111;
  border-radius: 40px;
  position: absolute;
  right: -15px; /* 初期位置をさらに右へ */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  padding-right: 18px; /* 矢印の右余白を調整 */
  box-sizing: border-box;
}
.btn_more_icon img {
  width: 36px; /* 矢印をさらに大きく (28px -> 36px) */
  height: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
/* ホバー時のアニメーション */
.lead_card_item:hover .btn_more_icon,
.event_item:hover .btn_more_icon,
.access_btn:hover .btn_more_icon {
  width: calc(100% + 15px); /* 右にずらした分、伸びる幅も調整 */
}
.lead_card_item:hover .btn_more_text,
.event_item:hover .btn_more_text,
.access_btn:hover .btn_more_text {
  color: #fff;
}
.lead_card_item:hover .btn_more_icon img,
.event_item:hover .btn_more_icon img,
.access_btn:hover .btn_more_icon img {
  transform: translateX(5px); /* ホバー時に矢印も少し右へ動く */
}

/* --------------------------------------------------
   [04: コンセプト紹介]
-------------------------------------------------- */
.sec_concept {
  background-color: #fff;
}
.sec_concept_in {
  max-width: 1440px;
  margin: 0 auto;
}
.concept_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.concept_text {
  flex: 1;
  text-align: left;
}
.concept_title {
  font-size: 42px;
  line-height: 1.5;
  margin-bottom: 60px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.concept_description p {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 2em;
  color: #333;
  letter-spacing: 0.05em;
}
.concept_description p:last-child {
  margin-bottom: 0;
}
.concept_photo {
  flex: 1.2;
}
.concept_photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .concept_body {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .concept_title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .concept_description p {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .concept_title {
    font-size: 24px;
  }
  .concept_description p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 1em !important;
  }
}

/* --------------------------------------------------
   [05: 教室・イベント情報一覧]
-------------------------------------------------- */
.sec_event {
  background-color: #f9f9f9;
}
.greeting_head {
  margin-bottom: 60px;
  text-align: center !important;
}
.greeting_jp {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 500;
  display: block !important;
  text-align: center !important;
}
.greeting_en {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #666;
  margin: 0;
  display: block !important;
  text-align: center !important;
}

.event_slider {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
.event_slider .event_item {
  width: 100%;
  float: left;
  list-style: none;
}
.usage_scene_grid .event_item {
  width: auto;
  float: none;
  list-style: none;
}
.event_item a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: left;
}
.event_img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 25px;
}
.event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event_item:hover .event_img img {
  transform: scale(1.05);
}
.event_title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
  min-height: 3.2em; /* 2行分確保 */
}
.event_info {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  margin-bottom: 25px;
}
.event_info p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.event_text {
  font-size: 13px;
  line-height: 2;
  color: #888;
  margin-bottom: 30px;
}

/* bxSlider カスタムコントロール */
.sec_event .bx-wrapper {
  position: relative;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  margin-bottom: 0 !important;
  padding: 0 50px; /* 矢印のスペースを確保 */
  box-sizing: border-box;
}
.sec_event .bx-viewport {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important; /* はみ出しを隠す */
}
.sec_event .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-color: rgba(51, 51, 51, 0.8);
  border-radius: 50%;
  text-indent: -9999px;
  z-index: 9999;
  transition: background-color 0.3s;
}
.sec_event .bx-wrapper .bx-controls-direction a:hover {
  background-color: rgba(0, 0, 0, 1);
}
.sec_event .bx-wrapper .bx-prev {
  left: -40px;
}
.sec_event .bx-wrapper .bx-next {
  right: -40px;
}
.sec_event .bx-wrapper .bx-prev::after,
.sec_event .bx-wrapper .bx-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.sec_event .bx-wrapper .bx-prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.sec_event .bx-wrapper .bx-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* View Moreボタンの調整 */
.event_btn .btn_more_text {
  font-size: 18px;
}
.event_btn .btn_more_icon {
  width: 60px;
  height: 36px;
}
.event_btn .btn_more_icon img {
  width: 24px;
}

/* --------------------------------------------------
   [04: コンセプト紹介]
-------------------------------------------------- */
.concept_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.concept_text {
  width: 42%;
  padding-left: 2%;
}
.concept_description p {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 0.8em; /* 空きすぎを解消 */
  color: #333;
  letter-spacing: 0.05em;
}
.concept_description p:last-child {
  margin-bottom: 0;
}
.concept_photo {
  width: 52%;
  margin-right: -4%; /* 右端に寄せる */
}
.concept_photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --------------------------------------------------
   [05: イメージ補足写真 (自由配置)]
-------------------------------------------------- */
.sec_scene {
  background-color: #fff;
  overflow: hidden;
}
.scene_images_wrap {
  position: relative;
  height: 600px; /* PCでの基準高さ */
  width: 100%;
}
.scene_img {
  position: absolute;
  overflow: hidden;
  box-shadow: none; /* デザインに合わせて影を削除 */
}
.scene_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 各画像の配置 (デザインを正確に再現) */
.scene_img_1 {
  width: 36%; /* 31.5% -> 36% */
  top: 120px;
  left: 0;
  z-index: 1;
}
.scene_img_2 {
  width: 28%; /* 23% -> 28% */
  top: 180px;
  left: 42%;
  z-index: 2;
}
.scene_img_3 {
  width: 38%; /* 32.5% -> 38% */
  top: 30px;
  right: 0;
  z-index: 3;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .scene_images_wrap {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .scene_img {
    position: static;
    width: calc(50% - 10px);
  }
  .scene_img_3 {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .scene_img {
    width: 100%;
  }
}

/* --------------------------------------------------
   [06 & 07: スケジュール]
-------------------------------------------------- */
.sec_schedule {
  background-color: #f9f9f9;
}
.schedule_intro {
  margin-bottom: 50px;
}
.schedule_lead {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.schedule_text p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  letter-spacing: 0.05em;
}
.calendar_wrap iframe {
  max-width: 100%;
  background: #fff;
}

/* --------------------------------------------------
   [08: スタジオ紹介]
-------------------------------------------------- */
.sec_studio {
  background-color: #fff;
}
.studio_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.studio_photo {
  flex: 1.1;
  margin-left: -4%; /* 左端に寄せる */
}
.studio_photo img {
  width: 100%;
  height: auto;
  display: block;
}
.studio_text {
  flex: 1;
  text-align: left;
}
.studio_en {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 60px;
}
.studio_title {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 60px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.studio_description p {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 1.5em;
  color: #333;
  letter-spacing: 0.05em;
}
.studio_description p:last-child {
  margin-bottom: 0;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .studio_body {
    flex-direction: column;
    gap: 40px;
  }
  .studio_photo {
    margin-left: 0;
    width: 100%;
  }
  .studio_title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .studio_en {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .studio_title {
    font-size: 20px;
  }
  .studio_description p {
    font-size: 14px;
    br {
      display: none; /* スマホでは強制改行を解除 */
    }
  }
}

/* --------------------------------------------------
   [09: 新着情報]
-------------------------------------------------- */
.sec_news {
  background-color: #f9f9f9; /* 背景色を薄いグレーに変更 */
}
.news_inner {
  width: 100%;
  max-width: 1000px; /* 1440px -> 1000px に変更 */
  margin: 0 auto;
}
.news_list_wrap {
  width: 100%;
}
.news_list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%; /* リスト自体の幅を 100% に */
  border-top: 1px solid #ccc;
}
.news_item {
  border-bottom: 1px solid #ccc;
}
.news_item_inner {
  display: flex;
  align-items: center;
  padding: 30px 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  gap: 30px;
}
.news_item_inner:hover {
  opacity: 0.6;
}
.news_thumb {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}
.news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .news_item_inner {
    padding: 20px 0;
    gap: 20px;
  }
  .news_thumb {
    width: 120px;
    height: 80px;
  }
}
@media screen and (max-width: 640px) {
  .news_item_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 !important;
    gap: 15px;
  }
  .news_thumb {
    width: 100%;
    height: 180px;
  }
  .news_meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news_label {
  display: inline-block;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
  width: 120px; /* ラベル幅を少し広げる */
  text-align: center;
  margin-right: 20px;
}
.label_info { background-color: #7a3131; } /* お知らせ：エンジ系 */
.label_class { background-color: #2b3e7f; } /* 教室：ネイビー系 */
.label_event { background-color: #2d7a3d; } /* イベント：グリーン系 */

.news_date {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: #333;
  margin-right: 0;
  width: auto;
}
.news_title {
  font-size: 16px;
  color: #333;
  flex: 1;
  letter-spacing: 0.05em;
  margin: 0;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .news_label {
    width: 100px;
    margin-right: 15px;
    font-size: 13px;
  }
  .news_date {
    margin-right: 0;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .news_label {
    margin-bottom: 0 !important;
    margin-right: 10px;
  }
  .news_date {
    width: auto;
    margin-bottom: 0 !important;
    text-align: left;
  }
  .news_title {
    width: 100%;
    font-size: 14px;
  }
}

/* --------------------------------------------------
   [10: アクセス]
-------------------------------------------------- */
.sec_access {
  background-color: #fff;
}
.sec_access_in {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.contmap_full {
  width: 100%;
  line-height: 0;
}
.map_canvas {
  width: 100%;
  height: 500px;
}
#map {
  width: 100%;
  height: 100%;
}
.access_btn_wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 4% 0; /* 上に80pxの余白を追加 */
}
.access_btn {
  margin: 0 auto;
}

/* --------------------------------------------------
   [12: お問い合わせバナー]
-------------------------------------------------- */
.sec_contact {
  position: relative;
  overflow: hidden;
}
.contact_link_full {
  display: flex !important; /* flexに変更して中央寄せを確実に */
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 100% !important;
  height: 500px !important;
  text-decoration: none !important;
  overflow: hidden !important;
  background-color: #000 !important; /* ベースを黒に */
}
.contact_bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.contact_bg::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 2 !important;
  transition: background-color 0.8s ease !important;
}
.contact_link_full:hover .contact_bg {
  transform: scale(1.1) !important;
}
.contact_link_full:hover .contact_bg::after {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.contact_bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.sec_contact_in {
  position: relative !important;
  z-index: 3 !important; /* オーバーレイより上に */
  width: 100% !important;
  height: auto !important;
  pointer-events: none !important;
}
.contact_content {
  transition: transform 0.8s ease;
}
.contact_link_full:hover .contact_content {
  transform: translateY(-5px); /* 文字を少し浮かせる */
}
.contact_jp {
  font-size: 42px !important;
  color: #fff !important;
  letter-spacing: 0.2em !important;
  margin-bottom: 20px !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
  display: block !important;
  text-align: center !important;
}
.contact_en {
  font-family: 'EB Garamond', serif !important;
  font-size: 22px !important;
  color: #fff !important;
  letter-spacing: 0.15em !important;
  opacity: 0.9 !important;
  display: block !important;
  text-align: center !important;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .contact_link_full {
    height: 400px;
  }
  .contact_jp {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .contact_link_full {
    height: 350px;
  }
  .contact_jp {
    font-size: 26px;
    letter-spacing: 0.15em;
  }
  .contact_en {
    font-size: 18px;
  }
}

/* --------------------------------------------------
   [Footer]
-------------------------------------------------- */
.footer {
  background-color: #fff; /* 背景を白に */
  color: #333; /* 文字色をダークグレーに */
  padding: 60px 0 30px;
}
.footer_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd; /* ボーダーを薄いグレーに */
}
.footer_logo img {
  max-width: 180px;
  height: auto;
}
.footer_nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_nav a {
  font-family: 'EB Garamond', serif;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative; /* 下線の基準点 */
  padding-bottom: 5px;
}

/* フッター内「利用規約」リンクのみ小さく表示 */
.footer_nav a[href$="Terms.html"] {
  font-size: 13px;
}

/* ホバー時の下線アニメーション (ヘッダーと統一) */
.footer_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333; /* フッターの文字色に合わせる */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer_nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer_nav a:hover {
  color: #333 !important; /* 黒（元の色）を維持 */
  opacity: 1 !important;
}
.footer_sns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sns_icon img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}
.sns_icon:hover img {
  opacity: 0.6;
}
.footer_bottom .copyright {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.1em;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .footer_body {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  .footer_logo {
    width: 100%;
  }
  .footer_nav {
    width: 100%;
  }
  .footer_nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .footer_sns {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer_body {
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .footer_nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .footer_nav a {
    font-size: 15px;
  }
  .footer_nav a[href$="Terms.html"] {
    font-size: 12px;
  }
}


/* ==========================================================================
   [Tablet Styles] 1160px以下
   ========================================================================== */
@media screen and (max-width: 1160px) {
  /* Header */
  .header { padding: 20px 4% !important; }
  .global_nav ul { gap: 20px !important; } /* メニュー間隔を詰める */
  .global_nav a { font-size: 16px !important; } /* 文字サイズを少し小さく */
  .logo img { max-width: 160px !important; } /* タブレット時は少し小さく */
  
  /* FV */
  .mv_copy_jp { font-size: 36px; }
  .mv_copy_en { font-size: 70px; }
  .mv_copy_wrap {
    flex-direction: column;
    align-items: flex-end; /* 右寄せ */
    justify-content: center;
    gap: 30px;
    padding-right: 5%;
  }
  .mv_copy_jp_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 日本語も右寄せに再構成 */
  }
  .mv_copy_en_box {
    margin-left: 0;
  }
  
  /* Lead Card */
  .lead_card_list { gap: 60px; }
  .lead_card_body { padding: 40px 0 0 0; }
  .lead_card_title_en_box { padding: 15px 30px; }
  .lead_card_title_en { font-size: 24px; }
  
  /* Event */
  .sec_event .bx-wrapper { padding: 0 30px; }
  .sec_event .bx-wrapper .bx-controls-direction a {
    width: 50px;
    height: 50px;
  }
  .sec_event .bx-wrapper .bx-prev { left: -10px; }
  .sec_event .bx-wrapper .bx-next { right: -10px; }
  
  /* Concept & Studio */
  .concept_text, .concept_photo,
  .studio_text, .studio_photo { width: 48%; }
  
  /* Scene Images (スケールダウン) */
  .scene_images_wrap { height: 500px; }
}

/* ==========================================================================
   [Smartphone Styles] 640px以下
   ========================================================================== */
@media screen and (max-width: 640px) {
  /* Common */
  .pad_t10 { padding-top: 80px !important; } /* スマホでは余白を調整 60->80 */
  .pad_b10 { padding-bottom: 80px !important; }
  .pad_t5 { padding-top: 60px !important; } /* 40->60 */
  .pad_b5 { padding-bottom: 60px !important; }
  
  .greeting_jp { font-size: 24px !important; } /* セクション見出しを小さく */
  .greeting_en { font-size: 16px !important; }
  .greeting_head { margin-bottom: 40px !important; }
  
  /* Header */
  .header_in {
    justify-content: space-between !important;
    width: 100% !important;
  }
  .logo img {
    max-width: 120px !important; /* スマホ時はさらにコンパクトに */
    height: auto !important;
  }
  .header .global_nav {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    z-index: 10000 !important;
    padding-top: 140px !important; /* 上部の余白を 100px -> 140px に拡大 */
    transform: none !important; /* smart.cssの translateY(-100%) を打ち消し */
    display: block !important; /* visibilityを使うのでdisplayはblockにする */
  }
  .header .global_nav.is-open {
    visibility: visible !important;
    opacity: 1 !important;
  }
  .header .global_nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px; /* メニュー間の隙間を 30px -> 40px に拡大 */
  }
  .header .global_nav a {
    font-size: 28px; /* 文字サイズを 24px -> 28px に拡大 */
  }
  .mobile_menu_trigger {
    display: block !important;
    width: 40px; /* 少し広げてクリックしやすく */
    height: 30px; /* 少し広げてクリックしやすく */
    position: absolute !important; /* 絶対配置に変更 */
    right: 4%; /* 右端に固定 */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10002 !important; /* メニューより上に */
    pointer-events: auto !important; /* クリック可能にする */
    background: transparent; /* クリック領域を確保 */
  }
  .mobile_menu_trigger span {
    position: absolute;
    width: 30px; /* 線の幅 */
    height: 2px;
    background: #fff;
    left: 5px; /* 中央寄せ */
    transition: 0.3s;
  }
  .mobile_menu_trigger span:nth-child(1) { top: 5px; }
  .mobile_menu_trigger span:nth-child(2) { top: 14px; }
  .mobile_menu_trigger span:nth-child(3) { bottom: 5px; }
  
  /* メニューオープン時のバツ印 */
  .mobile_menu_trigger.is-active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
  }
  .mobile_menu_trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .mobile_menu_trigger.is-active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
  }
  
  body.menu-open {
    overflow: hidden; /* スクロール防止 */
  }
  
  /* FV */
  .sec_mv { min-height: 500px; height: 80vh; }
  .sec_mv_in {
    height: 100% !important; /* 高さを確保 */
    align-items: flex-end !important; /* 下寄りに配置 */
    padding-bottom: 15% !important; /* 下から15%の位置に */
  }
  .mv_slider, .mv_slider li {
    height: 80vh !important;
    min-height: 500px !important;
  }
  .mv_copy_wrap {
    width: 100%;
    flex-direction: column;
    align-items: center; /* スマホは中央寄せ */
    justify-content: center;
    gap: 30px;
    padding-right: 0;
  }
  .mv_copy_jp_box {
    align-items: center; /* 日本語も中央寄せ */
    gap: 10px;
  }
  .mv_copy_jp { font-size: 20px; text-align: center; }
  .mv_copy_jp span {
    padding: 8px 15px;
  }
  .mv_copy_en_box {
    width: auto;
    margin-left: 0; 
  }
  .mv_copy_en { 
    font-size: 50px; 
    text-align: center; 
    line-height: 1.3; 
  }
  
  /* Lead Card */
  .lead_card_list { flex-direction: column; gap: 80px; } /* カード間の隙間を 50px -> 80px に拡大 */
  .lead_card_item { width: 100%; }
  .lead_card_body { padding: 40px 0 0 0; }
  .lead_card_title_en_box {
    width: 80%; /* スマホでは少し広めに設定 */
    padding: 25px 0 !important; /* 上下余白を大幅に増やす */
    bottom: -35px; /* ボックス自体の位置も少し下げる */
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .lead_card_title_en { 
    font-size: 20px; 
    line-height: 1.5 !important; /* 行間をさらに広げる */
    display: block !important;
    padding-bottom: 10px !important; /* 文字下に10pxのパディングを追加 */
  }
  .lead_card_subtitle { font-size: 18px; margin-bottom: 15px; }
  .lead_card_text { margin-bottom: 25px; }
  
  /* Event */
  .sec_event .bx-wrapper { padding: 0 20px; }
  .sec_event .bx-wrapper .bx-controls-direction a {
    width: 40px;
    height: 40px;
  }
  .sec_event .bx-wrapper .bx-prev { left: -5px; }
  .sec_event .bx-wrapper .bx-next { right: -5px; }
  .event_title { margin-bottom: 10px; }
  .event_info { margin-bottom: 15px; padding: 10px 0; }
  .event_text { margin-bottom: 20px; }
  
  /* Concept */
  .concept_body { flex-direction: column-reverse; gap: 30px; }
  .concept_text, .concept_photo { width: 100%; }
  .concept_title { margin-bottom: 20px; }
  
  /* Scene Images (Gridで整理) */
  .scene_images_wrap {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .scene_img { position: static; width: 100% !important; }
  .scene_img_1 { grid-column: 1 / 3; }
  
  /* Schedule */
  .schedule_intro { margin-bottom: 30px; text-align: left !important; }
  .schedule_lead { font-size: 18px; margin-bottom: 20px; text-align: left !important; }
  .schedule_text p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    text-align: left !important;
  }
  
  /* Studio */
  .studio_body { flex-direction: column; gap: 30px; }
  .studio_text, .studio_photo { width: 100%; }
  .studio_en { margin-bottom: 15px; }
  .studio_title { margin-bottom: 20px; }
  
  /* Access */
  .access_btn_wrap { padding-top: 40px !important; }
  
  /* News */
  .news_item_inner {
    display: flex;
    align-items: center;
    padding: 30px 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
    gap: 30px;
  }
  .news_item_inner:hover {
    opacity: 0.6;
  }
  .news_thumb {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
  }
  .news_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .news_meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

/* タブレット・スマホ対応 */
@media screen and (max-width: 1160px) {
  .news_item_inner {
    padding: 20px 0;
    gap: 20px;
  }
  .news_thumb {
    width: 120px;
    height: 80px;
  }
}
@media screen and (max-width: 640px) {
  .news_item_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 !important;
    gap: 15px;
  }
  .news_thumb {
    width: 100%;
    height: 180px;
  }
  .news_meta {
    flex-wrap: wrap;
    gap: 10px;
  }
  .news_label {
    margin-right: 10px;
    margin-bottom: 0 !important;
  }
  .news_date {
    margin-right: 0;
    margin-bottom: 0 !important;
  }
}
  
  /* Contact */
  .sec_contact { margin-top: 40px !important; }
  .contact_link_full { height: 250px !important; }
  .contact_jp { font-size: 24px !important; letter-spacing: 0.1em !important; margin-bottom: 10px !important; }
  .contact_en { font-size: 16px !important; }
  .btn_contact_large { padding: 15px 30px; font-size: 14px; width: 100%; box-sizing: border-box; }
  
  /* Footer */
  .footer_body { flex-direction: column; gap: 30px; }
  .footer_nav ul { flex-direction: column; align-items: center; gap: 20px; }
}

/* ==========================================================================
   [Subpage Styles]
   ========================================================================== */
/* Hero Section */
.sec_sub_hero {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 220px 0 0;
  color: #fff;
  position: relative;
}

.sub_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 画像を少し暗くして文字を読みやすく */
  z-index: 1;
}

.sub_hero_inner {
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.sub_hero_title_jp {
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sub_hero_title_en {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Breadcrumb */
.breadcrumb_wrap {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
}

.breadcrumb li {
  display: flex !important;
  align-items: center !important;
  color: #666 !important; /* cmn.cssのオレンジを打ち消し */
}

.breadcrumb li::before {
  display: none !important; /* cmn.cssの > を非表示に */
}

.breadcrumb li::after {
  content: '>' !important;
  margin: 0 15px !important;
  font-size: 10px !important;
  color: #ccc !important;
}

.breadcrumb li:last-child::after {
  display: none !important;
}

.breadcrumb a {
  color: #666 !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

.breadcrumb a:hover {
  color: #111 !important;
}

/* Page Header & Nav Links */
.page_header {
  margin-bottom: 60px;
}

.page_title {
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  border-bottom: none !important; /* 既存のborderを消す */
}

.page_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.page_nav_links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 0;
}

.page_nav_links a {
  color: #333 !important;
  text-decoration: none !important;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: color 0.3s, opacity 0.3s;
  border: none !important; /* 既存のborderを消す */
  background: none !important; /* 背景画像による線を消す */
  padding: 0 !important; /* 余計なパディングをリセット */
  margin: 0 !important;
  display: inline-block !important;
}

.page_nav_links a::before,
.page_nav_links a::after {
  display: none !important; /* 擬似要素による線を消す */
}

.page_nav_links a:hover {
  color: #666 !important;
  opacity: 0.7;
}

/* cmn.css の .divider（縦線用）とクラス名が衝突しないよう page_nav_sep を使用 */
.page_nav_links .page_nav_sep {
  color: #ccc;
  margin: 0 20px;
  font-size: 14px;
  display: inline;
  width: auto;
  height: auto;
  background: none;
}

/* ▼ サブページ：利用シーン紹介 ▼ */
.sec_usage_scene {
  background-color: #fff;
}

.usage_scene_head {
  padding-top: 40px;
}

.usage_scene_head_in {
  padding-bottom: 24px;
  box-sizing: border-box;
}

.usage_scene_heading {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #111;
  text-align: left;
}

/* 見出し直下・画面幅いっぱいの下線 */
.usage_scene_head_line {
  width: 100%;
  height: 0;
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 0;
}

.usage_scene_body_wrap {
  box-sizing: border-box;
}

.usage_scene_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.usage_scene_photo {
  flex: 1.5; /* 6割相当 (6:4 = 1.5:1) */
  min-width: 0;
}

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

.usage_scene_text {
  flex: 1; /* 4割相当 */
  min-width: 0;
  text-align: left;
}

.usage_scene_subtitle {
  margin: 0 0 1.4em;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: #111;
}

.usage_scene_desc p {
  margin: 0 0 1.25em;
  font-size: 15px; /* 14px -> 15px */
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #111;
}

.usage_scene_desc p:last-child {
  margin-bottom: 0;
}

/* Usage Scene Grid */
.usage_scene_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
}

.usage_card {
  display: flex;
  flex-direction: column;
}

.usage_card_img {
  width: 100%;
  aspect-ratio: 4 / 3; /* 4:3に変更 */
  overflow: hidden;
  margin-bottom: 25px;
}

.usage_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.usage_card:hover .usage_card_img img {
  transform: scale(1.05);
}

.usage_card_title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left; /* 左寄せを明示 */
}

.usage_card_text {
  font-size: 15px; /* 14px -> 15px */
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.04em;
  text-align: left; /* 左寄せを明示 */
}

/* Subpage Responsive */
@media screen and (max-width: 1160px) {
  .sec_sub_hero { padding: 180px 0 0; }
  .sub_hero_title_jp { font-size: 40px; }
  .page_title { font-size: 32px; }
  .page_nav_links a { font-size: 15px; }
  .page_nav_links .page_nav_sep { margin: 0 15px; }
  .usage_scene_heading { font-size: 28px; }
  .usage_scene_row { gap: 40px; }
  .usage_scene_subtitle { font-size: 22px; }
  .usage_scene_desc p { font-size: 15px; line-height: 2; }
  .usage_scene_grid { gap: 60px 30px; }
  .usage_card_title { font-size: 18px; }
}

@media screen and (max-width: 640px) {
  .sec_sub_hero {
    padding: 140px 0 0;
  }
  .sub_hero_inner {
    padding-bottom: 50px;
  }
  .sub_hero_title_jp {
    font-size: 32px;
  }
  .sub_hero_title_en {
    font-size: 18px;
  }
  .breadcrumb_wrap { padding: 15px 0; }
  .breadcrumb {
    font-size: 11px;
  }
  .breadcrumb li::after { margin: 0 10px; }
  
  .page_header { margin-bottom: 40px; }
  .page_title { 
    font-size: 26px; 
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .page_nav_links {
    flex-direction: column;
    gap: 15px;
  }
  .page_nav_links .page_nav_sep {
    display: none; /* スマホではスラッシュを非表示にして縦積みに */
  }
  .page_nav_links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
  }
  .page_nav_links a:last-child {
    border-bottom: none;
  }

  .usage_scene_head { padding-top: 24px; }
  .usage_scene_heading { font-size: 24px; }
  .usage_scene_head_in { padding-bottom: 18px; }
  .usage_scene_row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .usage_scene_photo { flex: none; width: 100%; }
  .usage_scene_text { flex: none; width: 100%; }
  .usage_scene_subtitle {
    font-size: 20px;
    margin-bottom: 1.2em;
  }
  .usage_scene_desc p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1.1em;
  }
  .usage_scene_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .usage_card_img { margin-bottom: 15px; }
}

/* ▼ サブページ：料金表 ▼ */
.price_table_wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}

.price_table tr {
  border-bottom: 1px solid #ddd;
}

.price_table th,
.price_table td {
  padding: 30px 20px;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #111;
  vertical-align: middle;
}

.price_table th {
  width: 25%;
  background-color: #f2f2f2;
  font-weight: 500;
}

.price_table .price_val {
  width: 25%;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
}

.price_table .price_note {
  width: 50%;
  color: #333;
}

@media screen and (max-width: 1160px) {
  .price_table th,
  .price_table td {
    padding: 25px 15px;
    font-size: 15px;
  }
}

@media screen and (max-width: 640px) {
  .price_table tr {
    display: block;
    padding: 20px 0;
  }
  .price_table th,
  .price_table td {
    display: block;
    width: 100% !important;
    padding: 5px 0;
    border: none;
  }
  .price_table th {
    background: none;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .price_table .price_val {
    font-size: 18px;
    font-weight: 500;
    color: #7a3131; /* 金額を少し強調 */
    margin-bottom: 8px;
  }
  .price_table .price_note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }
}

.usage_scene_body_wrap.bg_light_gray {
  background-color: #f9f9f9;
}

.usage_scene_body_wrap.bg_light_gray .cont1440 {
  margin: 0 auto;
}

/* ▼ サブページ：設備紹介 ▼ */
.sec_equipment {
  /* background-color: #f9f9f9; */ /* セクション全体の背景指定を解除 */
}

.equipment_info_title {
  font-size: 15px; /* 18px -> 15px */
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.equipment_info_list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.equipment_info_list li {
  font-size: 14px; /* 16px -> 14px */
  line-height: 1.8;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.equipment_total {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: inline-block;
}

.total_val {
  font-size: 15px; /* 18px -> 15px */
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.total_note {
  font-size: 12px; /* 14px -> 12px */
  color: #666;
}

@media screen and (max-width: 640px) {
  .equipment_info_title { font-size: 14px; }
  .equipment_info_list li { font-size: 13px; }
  .total_val { font-size: 14px; }
  .total_note { font-size: 11px; }
}

/* ▼ サブページ：キッチン ▼ */
.kitchen_lead {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  max-width: 1000px;
  text-align: left;
}

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

.kitchen_sub_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.kitchen_item_img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.kitchen_item_img img {
  width: 100%;
  height: auto; /* 縦横比率を画像のままにする */
  display: block;
}

.kitchen_item_caption {
  font-size: 15px;
  color: #333;
  text-align: left;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1160px) {
  .kitchen_sub_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media screen and (max-width: 640px) {
  .kitchen_lead {
    font-size: 13px;
  }
  .kitchen_sub_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kitchen_item_img {
    /* aspect-ratio指定を削除 */
  }
}

/* ▼ サブページ：その他設備・サービス ▼ */
.amenities_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

.amenities_item {
  display: flex;
  flex-direction: column;
}

.amenities_item_img {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

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

.amenities_item_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #111;
  text-align: left;
}

.amenities_item_text {
  font-size: 15px; /* 14px -> 15px */
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.04em;
  text-align: left;
}

@media screen and (max-width: 1160px) {
  .amenities_grid {
    gap: 60px 40px;
  }
}

@media screen and (max-width: 640px) {
  .amenities_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .amenities_item_title {
    font-size: 16px;
  }
}

/* ▼ サブページ：ご利用の流れ ▼ */
.flow_lead {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  max-width: 1000px;
  text-align: left;
}

.flow_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.flow_item {
  display: flex;
  flex-direction: column;
}

.flow_item_img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #eee; /* 画像がない場合のグレースペース */
  margin-bottom: 25px;
  overflow: hidden;
}

.flow_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow_step_num {
  font-family: 'EB Garamond', serif; /* 共通の英字書体に変更 */
  font-size: 24px; /* 18px -> 24px に拡大 */
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #111;
  text-align: left; /* 左寄せを明示 */
}

.flow_step_text {
  font-size: 15px; /* 14px -> 15px */
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.04em;
  text-align: left;
}

@media screen and (max-width: 1160px) {
  .flow_grid {
    gap: 30px;
  }
}

@media screen and (max-width: 640px) {
  .flow_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .flow_item_img {
    aspect-ratio: 16 / 9; /* スマホでは横長に */
  }
}

/* ▼ サブページ：よくある質問 ▼ */
.faq_body {
  margin: 0 auto;
}

/* ▼ サブページ：イベント詳細 (event01.html等) ▼ */
.event_detail_wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 左側：画像ギャラリー */
.event_gallery {
  width: 55%;
}

.gallery_main {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  overflow: hidden;
}

.gallery_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery_thumbnails {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.thumb_item {
  width: calc((100% - 30px) / 3); /* 3枚並びを想定 */
  aspect-ratio: 4 / 3;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.thumb_item:hover,
.thumb_item.is-active {
  opacity: 1;
}

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

/* 右側：イベント情報 */
.event_info_box {
  width: 45%;
  text-align: left;
}

.event_detail_title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.event_detail_meta {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.event_detail_meta p {
  font-family: 'EB Garamond', 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}

.event_detail_price {
  margin-bottom: 30px;
}

.event_detail_price p {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
}

.event_detail_desc p {
  font-size: 14px;
  line-height: 2;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}

.event_detail_desc p:last-child {
  margin-bottom: 0;
}

.event_btn_wrap {
  margin-top: 40px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1160px) {
  .event_detail_wrap {
    gap: 40px;
  }
  .event_detail_title {
    font-size: 24px;
  }
}

@media screen and (max-width: 820px) {
  .event_detail_wrap {
    flex-direction: column;
  }
  .event_gallery,
  .event_info_box {
    width: 100%;
  }
  .gallery_main {
    aspect-ratio: auto;
  }
  .gallery_main img {
    height: auto;
  }
  .event_detail_title {
    margin-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  .gallery_thumbnails {
    gap: 10px;
  }
  .thumb_item {
    width: calc((100% - 20px) / 3);
  }
  .event_detail_title {
    font-size: 22px;
  }
  .event_detail_meta p,
  .event_detail_price p,
  .event_detail_desc p {
    font-size: 14px;
  }
  .event_btn_wrap {
    text-align: center;
  }
}

/* ▼ サブページ：利用規約 ▼ */
.terms_content {
  text-align: left;
}

.terms_lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 40px;
  color: #333;
}

.terms_subtitle {
  font-size: 20px; /* 少し大きく */
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  border-bottom: 2px solid #111; /* 下線を少し太く、色を濃く */
  padding-bottom: 5px;
  display: inline-block; /* 文字幅にするためにinline-blockに変更 */
}

.terms_section p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.terms_date {
  font-size: 14px;
  color: #666;
  margin-top: 60px;
}

@media screen and (max-width: 640px) {
  .terms_lead, .terms_section p {
    font-size: 14px;
  }
  .terms_subtitle {
    font-size: 16px;
  }
}

/* ▼ サブページ：お問い合わせフォーム ▼ */
.form_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form_lead {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.form_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
}

.form_table th,
.form_table td {
  padding: 25px 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.form_table th {
  width: 30%;
  background-color: #f9f9f9;
  font-weight: 500;
  vertical-align: middle;
  color: #111;
}

.req_label {
  display: inline-block;
  background-color: #7a3131; /* 必須ラベルはえんじ色で目立たせる */
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

.form_table td {
  width: 70%;
}

.form_input,
.form_select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.3s;
}

.form_textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #fff;
  height: 200px;
  resize: vertical;
  transition: border-color 0.3s;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
  border-color: #111;
  outline: none;
}

.error_msg {
  color: #d9534f;
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 0;
}

.form_btn_wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn_submit {
  display: inline-block;
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
  padding: 15px 60px;
  font-size: 16px;
  font-family: 'Shippori Mincho', serif;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  min-width: 240px;
}

.btn_submit:hover {
  background-color: #fff;
  color: #111;
}

.btn_back {
  display: inline-block;
  background-color: #fff;
  color: #111;
  border: 1px solid #ccc;
  padding: 15px 60px;
  font-size: 16px;
  font-family: 'Shippori Mincho', serif;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  min-width: 240px;
}

.btn_back:hover {
  background-color: #f9f9f9;
  border-color: #111;
}

.confirm_text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.complete_msg {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  color: #111;
}

@media screen and (max-width: 640px) {
  .form_table {
    border-top: none;
  }
  .form_table th,
  .form_table td {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: none;
  }
  .form_table th {
    background-color: transparent;
    padding-bottom: 5px;
  }
  .form_table td {
    padding-top: 0;
    border-bottom: 1px solid #ddd;
  }
  .form_btn_wrap {
    flex-direction: column-reverse; /* スマホでは戻るボタンを下に */
    gap: 15px;
  }
  .btn_submit, .btn_back {
    width: 100%;
    padding: 15px 0;
  }
}

.faq_category {
  margin-bottom: 40px;
}

.faq_btn_wrap {
  margin-top: 40px;
}

/* ご予約はこちら専用スタイル */
.btn_reserve {
  min-width: 240px !important; /* 日本語に合わせて幅を拡大 */
}

.btn_reserve .btn_more_text {
  font-family: 'Shippori Mincho', serif !important; /* 日本語なので明朝体に変更 */
  font-size: 18px;
  padding-left: 30px !important; /* 左側の余白を調整 */
  padding-right: 50px !important; /* アイコンとの重なりを防ぐために右余白を拡大 */
}

.btn_reserve .btn_more_icon {
  right: -20px !important; /* アイコンの位置を少し外側へ */
}

.btn_reserve:hover .btn_more_icon {
  width: calc(100% + 20px) !important;
}

@media screen and (max-width: 640px) {
  .btn_reserve {
    min-width: 200px !important;
  }
  .btn_reserve .btn_more_text {
    font-size: 16px;
    padding-left: 20px !important;
    padding-right: 40px !important;
  }
}

.faq_category_title {
  background-color: #f2f2f2;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111;
  text-align: left;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.faq_item {
  margin: 0;
}

.faq_q {
  display: flex;
  align-items: flex-end; /* 下揃えに変更 */
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.faq_q_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: #111;
  color: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -1px; /* 下線と高さを合わせるための微調整 */
}

.faq_q_text {
  flex: 1; /* 残りの幅をすべて埋める */
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1.5;
  text-align: left;
  padding-bottom: 10px; /* テキストと下線の隙間 */
  position: relative;
}

/* 質問文の下からコンテナ全幅に伸びる下線 */
.faq_q {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%; /* 親要素を幅いっぱいに */
  box-sizing: border-box;
}

.faq_q_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: #111;
  color: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  flex-shrink: 0;
}

.faq_q_text {
  flex: 1; /* 残りの幅をすべて埋める */
  display: block; /* BOXとして扱う */
  width: 100%; /* BOXの幅を100%に */
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1.5;
  text-align: left;
  padding-bottom: 15px; /* 下線との隙間 */
  border-bottom: 1px solid #ddd; /* BOXの底辺に直接線を引く */
  box-sizing: border-box;
}


.faq_a {
  margin: 0;
  padding-left: 64px; /* Qアイコンの幅(44) + gap(20) */
}

.faq_a p {
  font-size: 15px; /* 全体のリード文に合わせる */
  line-height: 2;
  color: #333;
  letter-spacing: 0.04em;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .faq_category_title {
    font-size: 18px;
    padding: 15px 20px;
  }
  .faq_list {
    gap: 40px;
  }
  .faq_q {
    gap: 15px;
    margin-bottom: 15px;
  }
  .faq_q_icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .faq_q_text {
    font-size: 18px;
    padding-bottom: 12px;
  }
  .faq_q_text::after {
    width: calc(100% + 51px); /* スマホ時の Qアイコンの幅(36) + gap(15) */
  }
  .faq_a {
    padding-left: 0; /* スマホではインデントをなくして横幅を確保 */
  }
  .faq_a p {
    font-size: 14px;
  }
}

/* アクセスセクション専用ボタン */
.access_btn {
  min-width: 260px !important; /* 240px -> 260px に拡大 */
}
.access_btn .btn_more_text {
  font-family: 'Shippori Mincho', serif !important;
  font-size: 17px;
  padding-left: 30px !important; /* 左余白を少し追加 */
  padding-right: 60px !important; /* 右余白を 45px -> 60px に拡大して重なりを回避 */
}
.access_btn .btn_more_icon {
  right: -25px !important; /* アイコンをさらに 5px 外側へ */
}
.access_btn:hover .btn_more_icon {
  width: calc(100% + 25px) !important;
}

@media screen and (max-width: 640px) {
  .access_btn {
    min-width: 220px !important;
  }
  .access_btn .btn_more_text {
    font-size: 15px;
    padding-left: 20px !important;
    padding-right: 50px !important; /* スマホでも重なりを防止 */
  }
}

/* ==================================================
   フローティング予約ボタン
================================================== */
.floating_reserve_btn,
.floating_reserve_btn:visited {
  position: fixed;
  z-index: 999;
  background-color: #000;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Shippori Mincho', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.floating_reserve_btn:hover {
  opacity: 0.8;
  color: #fff !important;
}

/* PC / タブレット (画面右下にフローティング) */
@media screen and (min-width: 641px) {
  .floating_reserve_btn {
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
}

/* スマホ (画面最下部に固定表示) */
@media screen and (max-width: 640px) {
  .floating_reserve_btn {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
  }
  /* スマホ時にフッターが隠れないようにbodyにpadding-bottomを追加 */
  body {
    padding-bottom: 56px;
  }
}