@charset "UTF-8";
:root {
  /* カラー */
  /* ======================
    🎨 モダンC（ウォームトーン）
    ====================== */
  /* ======================
    🎨 モダンD（クールトーン）
    ====================== */
  --color-main: #A8B8C9;
  /* グレイッシュブルー */
  --color-main-hover: #BCC7D3;
  /* 少し明るめのホバー色 */
  --color-accent: #3E4E5E;
  /* スレートグレー（引き締め） */
  --color-accent-2: #9FA89C;
  /* セージグレー（柔らかい差し色） */
  --color-bg: #F9FAFB;
  /* 明るめグレイ背景 */
  --color-bg-2: #F1F3F5;
  /* セクション用淡グレー */
  --color-bg-3: #FFFFFF;
  /* 白背景 */
  --color-text: #2F2F2F;
  /* メインテキスト（やや深め） */
  --color-text-2: #555555;
  /* サブテキスト */
  --color-white: #fcfcfc;
  /* フォント関連 */
  --font-en: "Lato", serif;
  /* トランジション */
  --transition-03s-all: all 0.3s ease;
  --transition-03s-tra-cub: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-05s-tra: transform 0.5s ease;
  --transition-03s-opa: opacity 0.3s ease;
  --transition-04s-opa: opacity 0.4s ease;
  --transition-03s-bg: background 0.3s ease;
  --transition-03s-fill: fill 0.3s ease;
  --transition-03s-bs: box-shadow 0.3s ease;
}

body {
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

.is-font-en {
  font-family: var(--font-en);
  letter-spacing: 0.03em;
  font-weight: 600;
}

.is-color-main {
  color: var(--color-main);
}

.is-color-accent {
  color: var(--color-accent);
}

/* ===================================
   Utility: Fullwidth（画面全幅）
=================================== */
.u-fullwidth {
  width: 100vw;
  padding: 4rem 0 5rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-bg);
}

/* ---------------------------------------------
 * Utility: 改行制御
 * --------------------------------------------- */
.u-br--sp {
  display: none;
}
@media (max-width: 599px) {
  .u-br--sp {
    display: inline;
  }
}

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

/* ===================================
   Component: More Wrap（VIEW MOREボタン用）
=================================== */
.c-more-wrap {
  margin-top: 2rem;
  display: flex;
  /* デフォルト：左寄せ */
  justify-content: flex-start;
}
.c-more-wrap.is-center {
  justify-content: center;
}
.c-more-wrap.is-right {
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .c-more-wrap {
    margin-top: 1.5rem;
  }
  .c-more-wrap.is-sp-center {
    justify-content: center;
  }
  .c-more-wrap.is-sp-right {
    justify-content: flex-end;
  }
}

/* ===================================
   Utility: Background Colors
=================================== */
.u-bg--main {
  background-color: var(--color-main);
}

.u-bg--accent {
  background-color: var(--color-accent);
}

.u-bg--accent2 {
  background-color: var(--color-accent-2);
}

.u-bg--bg {
  background-color: var(--color-bg);
}

.u-bg--bg2 {
  background-color: var(--color-bg-2);
}

.u-bg--bg3 {
  background-color: var(--color-bg-3);
}

.u-bg--white {
  background-color: var(--color-white);
}

/* ===================================
   Utility: Text Colors
=================================== */
.u-color--main {
  color: var(--color-main);
}

.u-color--main-hover:hover {
  color: var(--color-main-hover);
}

.u-color--accent {
  color: var(--color-accent);
}

.u-color--accent2 {
  color: var(--color-accent-2);
}

.u-color--text {
  color: var(--color-text);
}

.u-color--text2 {
  color: var(--color-text-2);
}

.u-color--white {
  color: #fff;
}

/* 補助：aタグも継承できるように */
.u-color--main a,
.u-color--accent a,
.u-color--accent2 a,
.u-color--white a {
  color: inherit;
  text-decoration: none;
}
.u-color--main a:hover,
.u-color--accent a:hover,
.u-color--accent2 a:hover,
.u-color--white a:hover {
  opacity: 0.8;
}

.c-viewmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition-03s-opa);
  /* カラーバリエーション */
}
.c-viewmore-btn:hover {
  opacity: 0.8;
}
.c-viewmore-btn:hover .icon {
  transform: translateX(4px);
}
.c-viewmore-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  transition: var(--transition-03s-tra-cub);
}
.c-viewmore-btn--main .icon {
  background: var(--color-main);
}
.c-viewmore-btn--accent .icon {
  background: var(--color-accent);
}
.c-viewmore-btn--accent-2 .icon {
  background: var(--color-accent-2);
}
.c-viewmore-btn--white .icon {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: var(--color-accent);
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: var(--color-accent);
}

.smf-action .smf-button-control__control {
  background: var(--color-main);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7em 1.6em;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.smf-action .smf-button-control__control:hover {
  background-color: var(--color-main-hover);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

.smf-button-control__control[data-action=back] {
  background-color: transparent;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  box-shadow: none;
}
.smf-button-control__control[data-action=back]:hover {
  background-color: var(--color-main-hover);
  color: #fff;
  border-color: var(--color-main-hover);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title.is-mb-2rem {
  margin-bottom: 2rem;
}
.section-title .section-title-en {
  font-family: var(--font-en);
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 0.25rem;
  background: none;
  padding: 0;
}
.section-title .section-title-en::before {
  content: none;
}
.section-title .section-title-en.u-color--white {
  color: var(--color-white);
}
.section-title .section-title-en.u-color--accent {
  color: var(--color-accent);
}
@media (max-width: 599px) {
  .section-title .section-title-en {
    font-size: 2.5rem;
  }
}
.section-title .section-title-jp {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
}
.section-title .section-title-jp.u-color--white {
  color: var(--color-white);
}
.section-title.align-left {
  text-align: left;
}
.section-title.align-right {
  text-align: right;
}

/* ===================================
  ページ余白 カスタム
=================================== */
.home .l-container,
.page .l-container {
  margin-bottom: 0 !important;
}
.home .w-beforeFooter,
.page .w-beforeFooter {
  margin-top: 0 !important;
}

/* ===================================
  ヘッダーナビ カスタム
=================================== */
.c-gnav > .menu-item > a .ttl {
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.c-gnav > .menu-item > a .c-smallNavTitle {
  opacity: 0.8;
}

/* ===================================
  スマホメニュー カスタム
=================================== */
.c-iconBtn__label {
  font-family: var(--font-en);
}

.c-widget__title.-spmenu {
  display: none;
}

.c-spnav {
  margin-top: 1em;
}
.c-spnav .menu-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-en);
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1em;
}
.c-spnav .menu-item a::before {
  display: none;
}
.c-spnav .menu-item a .c-spnav,
.c-spnav .menu-item a .desc {
  margin-left: 0;
}
.c-spnav .menu-item a .c-smallNavTitle {
  font-family: var(--_global--font-family);
  color: var(--color-main);
  opacity: 1;
}
.c-spnav .menu-item a .c-submenuToggleBtn::before {
  font-size: 18px;
  color: var(--color-main);
}
.c-spnav .menu-item a .c-submenuToggleBtn::after {
  border: 0;
}
.c-spnav .menu-item .menu-item-sub a {
  background-color: var(--color-bg);
  color: var(--color-accent);
  font-size: 1.2em;
}
.c-spnav .menu-item .menu-item-sub a .c-smallNavTitle,
.c-spnav .menu-item .menu-item-sub a .desc {
  color: var(--color-accent);
}
.c-spnav .menu-item .sub-menu,
.c-spnav .menu-item .c-smallNavTitle {
  display: block;
}

.p-spMenu__bottom {
  margin-top: 1rem;
}
.p-spMenu__bottom .c-iconList {
  gap: 0.25em;
}
.p-spMenu__bottom .c-iconList .c-iconList__item .c-iconList__link {
  font-size: 20px;
}

.is-spnav-contact a {
  border-radius: 6px;
}

/* ===================================
  メインビジュアル カスタム
=================================== */
.p-mainVisual__slideTitle {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.p-mainVisual {
  position: relative;
}
.p-mainVisual .p-blogParts {
  position: absolute;
  bottom: 30px;
  right: 25px;
}
@media (max-width: 599px) {
  .p-mainVisual .p-blogParts {
    bottom: 18px;
    right: 12px;
  }
}
.p-mainVisual .p-blogParts .is-mv-btn {
  width: 120px;
  height: 120px;
}
@media (max-width: 599px) {
  .p-mainVisual .p-blogParts .is-mv-btn {
    width: 80px;
    height: 80px;
  }
}
.p-mainVisual .p-blogParts .is-mv-btn a {
  padding: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--transition-03s);
}
.p-mainVisual .p-blogParts .is-mv-btn a:hover {
  transform: translateY(-4px);
}
.p-mainVisual .p-blogParts .is-mv-btn a span {
  width: 100%;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-shadow: 0 0 BLACK;
}
@media (max-width: 599px) {
  .p-mainVisual .p-blogParts .is-mv-btn a span {
    font-size: 12px;
  }
}
.p-mainVisual .p-blogParts .is-mv-btn a svg {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===================================
  ピックアップバナー カスタム
=================================== */
.-cap-ctr_simple .c-bannerLink__label {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===================================
  パンくず カスタム
=================================== */
.p-breadcrumb__list {
  flex-wrap: wrap;
}

.single-teacher .p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.single-recital_gallery .p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.single-result .p-breadcrumb__item:last-child > span.p-breadcrumb__text {
  display: block !important;
}

.single .p-breadcrumb__item:last-child > span.p-breadcrumb__text {
  display: none;
}

/* ===================================
  SWELLボタン 英字カスタム
=================================== */
.is-font-en {
  font-family: var(--font-en);
}

/* ===================================
  SWELLアイコン カラーカスタム（クラスページ限定）
=================================== */
.page-id-13 .swl-inline-icon:after {
  color: var(--color-accent-2);
}

/* ===================================
  フッターリンク縦並び
=================================== */
.sns-button-group {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}
.sns-button-group .sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-main);
  border-radius: 50%;
  transition: var(--transition-03s-bg);
}
.sns-button-group .sns-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: var(--transition-03s-fill);
}
.sns-button-group .sns-btn:hover {
  background-color: var(--color-main-hover);
}

.c-section-title--h2 {
  display: grid;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 2em 0 1.5em;
  padding: 0 0.5em 0.5em;
}
.c-section-title--h2::after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-main) 0%, var(--color-main) 20%, rgba(255, 255, 230, 0.2) 90%, rgba(255, 255, 230, 0.2) 100%);
  top: 5px;
}

/* ===================================
  切り替えタブ
=================================== */
#news-list {
  transition: var(--transition-04s-opa);
}

.p-news-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.p-news-filter button {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-03s-all);
}
.p-news-filter button:hover {
  background: #f8f8f8;
}
.p-news-filter button.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ===================================
   共通：お知らせカード
=================================== */
.p-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-news-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-news-card {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-news-card__thumb {
  flex-shrink: 0;
  width: 300px;
  height: 180px;
  border-radius: 5px;
  overflow: hidden;
  background: #f7f7f7;
}
.p-news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 599px) {
  .p-news-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-news-card__body {
  flex: 1;
}
.p-news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.p-news-card__date {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.8;
}
.p-news-card__cat {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.8rem;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  color: #fff;
}
.p-news-card__cat.cat-news {
  background: var(--color-accent);
}
.p-news-card__cat.cat-blog {
  background: var(--color-accent-2);
}
.p-news-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  transition: var(--transition-03s-opa);
}
.p-news-card__title:hover {
  opacity: 0.7;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.c-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  color: var(--color-text-2);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-03s-all);
  box-shadow: none;
}
.c-pagination .page-numbers:hover {
  color: var(--color-main);
}
.c-pagination .page-numbers.current {
  background: var(--color-main);
  color: #fff;
  font-weight: 600;
  cursor: default;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  width: auto;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: transparent;
  color: #666;
}
.c-pagination .page-numbers.prev:hover, .c-pagination .page-numbers.next:hover {
  color: var(--color-main);
  background: transparent;
}

.p-single-teacher {
  padding: 40px 0;
  max-width: 868px;
  margin: 0 auto;
}
.p-single-teacher__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 4rem;
}
.p-single-teacher__photo {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 599px) {
  .p-single-teacher__photo {
    width: 60%;
  }
}
.p-single-teacher__photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.p-single-teacher__name-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 599px) {
  .p-single-teacher__name-area {
    align-items: center;
  }
}
.p-single-teacher__position {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 0.3em;
}
.p-single-teacher__name {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-single-teacher__name--en {
  font-size: 1.2rem;
  font-family: var(--font-en);
  color: var(--color-accent);
  margin-top: 4px;
}
.p-single-teacher__genre {
  margin-top: 12px;
}
.p-single-teacher__genre-label {
  display: inline-block;
  color: var(--color-bg);
  background: var(--color-accent-2);
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-right: 6px;
}
.p-single-teacher__sns {
  margin-top: 2rem;
}
.p-single-teacher__profile {
  margin-bottom: 40px;
}
.p-single-teacher__profile .c-section-title {
  margin-bottom: 16px;
}
.p-single-teacher__profile-text {
  line-height: 1.8;
}
.p-single-teacher__movie {
  margin-bottom: 40px;
}
.p-single-teacher__movie .c-section-title {
  margin-bottom: 16px;
}
.p-single-teacher__movie-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.p-single-teacher__movie-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-single-teacher__back {
  text-align: center;
  margin-top: 40px;
}

.p-teacher-section {
  margin-bottom: 5rem;
}
.p-teacher-section .p-teacher-grid--main, .p-teacher-section .p-teacher-grid--default {
  display: grid;
  gap: 1.5rem;
}
.p-teacher-section .p-teacher-grid--main {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 960px) {
  .p-teacher-section .p-teacher-grid--main {
    max-width: 720px;
    margin: 0 auto;
    gap: 6rem;
  }
}
.p-teacher-section .p-teacher-grid--default {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 599px) {
  .p-teacher-section .p-teacher-grid--main, .p-teacher-section .p-teacher-grid--default {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-teacher-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-03s-all);
  text-align: center;
}
.p-teacher-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.p-teacher-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-teacher-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-teacher-card__body {
  padding: 12px 16px;
}
.p-teacher-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}
.p-teacher-card__title--en {
  font-family: var(--font-en);
  font-size: 1em;
  font-weight: 700;
  color: var(--color-main);
  margin-top: 0.2em;
  letter-spacing: 0.03em;
}

/* ===================================
   トップページ共通
=================================== */
.p-top-section {
  margin-block: 6rem;
}
@media (max-width: 599px) {
  .p-top-section {
    margin-block: 3.5rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title-en {
  font-family: var(--font-en);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  font-weight: 600;
}
.section-title-jp {
  font-size: 1rem;
  color: var(--color-text);
  margin-top: 0.4em;
}
.section-title.align-left {
  text-align: left;
}
.section-title.align-right {
  text-align: right;
}

/* ===================================
   お知らせ
=================================== */
.p-top-news {
  margin-block: 5rem;
}
.p-top-news .p-top-news__more {
  margin-top: 1.5rem;
  text-align: right;
}

/* ===================================
   クラス紹介
=================================== */
.p-top-class {
  /* 画像 */
  /* テキスト部分 */
  /* ボタン */
}
.p-top-class__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 960px) {
  .p-top-class__inner {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .p-top-class__inner {
    flex-direction: column;
    text-align: center;
  }
}
.p-top-class__image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.p-top-class__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .p-top-class__image {
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-top-class__content {
  flex: 1;
  color: var(--color-text);
}
.p-top-class__lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .p-top-class__lead {
    font-size: 1.1rem;
  }
}
.p-top-class__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-2);
  margin-bottom: 2rem;
}
.p-top-class__more {
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .p-top-class__more {
    display: flex;
    justify-content: center;
  }
}

/* ===================================
   ギャラリー
=================================== */
.p-top-gallery__list .p-postList__meta {
  display: none;
}
.p-top-gallery__list .p-postList {
  justify-content: center;
}
.p-top-gallery__more {
  margin-top: 1.5rem;
  text-align: right;
}

/* ===================================
   アクセス
=================================== */
.p-top-access {
  padding: 6rem 0;
  background-color: var(--color-bg-2);
  /* 写真 */
  /* テキストボックス */
}
.p-top-access .section-title {
  margin-bottom: 3rem;
}
.p-top-access__info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .p-top-access__info-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-top-access__photo {
  flex: 1 1 50%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.p-top-access__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: var(--transition-05s-tra);
}
.p-top-access__photo:hover img {
  transform: scale(1.05);
}
.p-top-access__info-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  color: var(--color-text);
  transition: var(--transition-03s-bs);
}
.p-top-access__info-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 600px) {
  .p-top-access__info-box {
    padding: 1.8rem;
    text-align: center;
  }
}
.p-top-access__title {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.p-top-access__subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.p-top-access__address, .p-top-access__route {
  font-size: 0.95rem;
  color: var(--color-text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.p-top-about {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: visible;
}
.p-top-about__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-top-about__title {
  position: absolute;
  top: -5rem;
  left: 4rem;
  z-index: 3;
  font-family: var(--font-en);
  font-size: 4rem;
  line-height: 1.2;
  opacity: 0.8;
  color: var(--color-white);
}
@media (max-width: 960px) {
  .p-top-about__title {
    font-size: 3.2rem;
    left: 2rem;
    top: -4rem;
  }
}
@media (max-width: 600px) {
  .p-top-about__title {
    font-size: 3rem;
    left: 1rem;
    top: -6rem;
    width: 100%;
  }
}
.p-top-about__bg {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: visible;
  /* ✅ 半透明ボックス */
}
@media (max-width: 960px) {
  .p-top-about__bg {
    height: 360px;
  }
}
@media (max-width: 600px) {
  .p-top-about__bg {
    height: 280px;
  }
}
.p-top-about__bg .p-top-about__content {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  color: var(--color-text);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* ✅ タブレット以下：背景の下に出す */
}
@media (max-width: 960px) {
  .p-top-about__bg .p-top-about__content {
    position: relative;
    bottom: -4rem;
    right: auto;
    margin: 0 auto;
    max-width: 90%;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 600px) {
  .p-top-about__bg .p-top-about__content {
    bottom: -5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
}
.p-top-about__lead {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--color-accent);
}
.p-top-about__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-2);
  margin-bottom: 1.5rem;
}