@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

.home .site-body {
  padding-top: 0;
  padding-bottom: 0;
}
.home .site-body-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.home .main-section {
  width: 100%;
  float: none;
}

.front-page {
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}
.front-page p {
  line-height: 1.7;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.front-page img {
  max-width: 100%;
  height: auto;
}
.front-page h3 {
  border-bottom: none;
}
.front-page h3:after {
  content: none;
}
.front-page h4 {
  background-color: none;
}

/* ライト背景セクションの見出しカラー（Figma: common/main-color #222） */
.front-news__heading h2,
.front-about__heading h2,
.front-feature__heading h2,
.feature-block h3,
.front-symptoms h2,
.front-solution h2,
.solution-muscle h3,
.solution-method h3,
.solution-method h4,
.front-media h2,
.front-achievement__heading h2,
.achievement-media h3,
.front-gallery h2,
.books-slider-section h2 {
  color: #222;
}

.front-section-en {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  color: #4f412a;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .front-section-en {
    font-size: 13px;
    margin-bottom: 32px;
  }
}
.front-section-en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #4f412a;
}
@media (max-width: 767px) {
  .front-section-en::after {
    width: 16px;
  }
}

.front-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 368px;
  padding: 20px 32px;
  background: #111;
  color: #fff;
  border: 2px solid #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.front-button::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  margin: 2px 24px 0 0;
  flex-shrink: 0;
}
.front-button:hover {
  background: #fff;
  color: #111;
}
.front-button--left {
  justify-content: center;
}
.front-button--left::before {
  margin-right: 18px;
}
@media (max-width: 991px) {
  .front-button {
    width: 100%;
    min-width: auto;
    font-size: 15px;
  }
}

/* =========================
  SITE HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.site-header__inner {
  display: grid;
  grid-template-columns: min(305px, 22vw) 1fr auto auto;
  grid-template-rows: 44px 52px;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(8px, 2.5vw, 16px);
  column-gap: clamp(12px, 1.5vw, 24px);
}
.site-header__logo {
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
}
.site-header__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo img {
  display: block;
  width: min(285px, 21vw);
  height: auto;
}
.site-header {
  /*
    site-header__content / upper / lower を
    Gridの中身として直接扱う
  */
}
.site-header__content, .site-header__upper, .site-header__lower {
  display: contents;
}
.site-header {
  /* menu1：上段中央 */
}
.site-header__nav--sub {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}
.site-header {
  /* tel：上段 */
}
.site-header__tel {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  text-align: center;
  white-space: nowrap;
  position: relative;
  top: 6px;
}
.site-header__tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.site-header__tel span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.2;
}
.site-header__phone-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/phone.svg") no-repeat center/contain;
  mask: url("../images/icon/phone.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.site-header {
  /* button：右端で上下2段ぶち抜き */
}
.site-header__reserve {
  grid-column: 4;
  grid-row: 1/3;
  align-self: center;
}
.site-header__reserve a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
  padding: 0 28px;
  border-radius: 999px;
  background: #f70;
  border: 2px solid #f70;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-header__reserve a:hover {
  color: #f70;
  background: #fff;
  border: 2px solid #f70;
}
.site-header {
  /* menu2：下段で menu1 + tel の幅まで広げる */
}
.site-header__nav--main {
  grid-column: 2/4;
  grid-row: 2;
  align-self: center;
}

/* スクロール後 */
.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.35s ease forwards;
}
.site-header.is-scrolled .header-menu a {
  color: #333;
}
.site-header.is-scrolled .header-menu a:hover {
  color: #f70;
}
.site-header.is-scrolled .header-menu--main > .menu-item-has-children > a::after {
  border-color: #333;
}
.site-header.is-scrolled .site-header__tel a {
  color: #333;
}
.site-header.is-scrolled .site-header__tel span {
  color: #333;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* =========================
  HEADER MENU COMMON
========================= */
.header-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu li {
  margin: 0;
  padding: 0;
}
.header-menu a {
  color: #fff;
  text-decoration: none;
}

.header-menu--sub {
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 28px);
}
.header-menu--sub > li > a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-menu--sub > li > a:hover {
  color: #f70;
}

.header-menu--main {
  justify-content: flex-end;
  gap: 0;
}
.header-menu--main > li {
  position: relative;
}
.header-menu--main > li > a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 clamp(8px, 1.6vw, 24px);
  color: #fff;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-menu--main > li > a:hover {
  color: #f70;
}
.header-menu--main > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

/* =========================
  MEGA MENU
========================= */
.mega-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mega-menu-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mega-menu__panel {
  display: none !important;
  position: fixed;
  top: 96px;
  left: max(20px, (100vw - 1200px) / 2);
  width: min(1200px, 100vw - 40px);
  min-height: 356px;
  background: linear-gradient(to right, #fff 39.25%, #fafafa 39.25%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  padding: 40px 0 0;
  list-style: none;
  margin: 0;
}
.mega-menu__panel.is-open {
  display: block !important;
}

.mega-menu__panel > .menu-item {
  width: 471px;
  height: 69px;
}
.mega-menu__panel > .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 69px;
  padding: 0 31px 0 40px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-menu__panel > .menu-item:hover > a {
  background: #fcf5dd;
}

.mega-menu__cat > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
  opacity: 0.65;
}
.mega-menu__cat--active > a, .mega-menu__cat:hover > a {
  background: #fcf5dd;
}
.mega-menu__cat--active > a::after, .mega-menu__cat:hover > a::after {
  opacity: 1;
}

.mega-menu__list {
  display: none !important;
  position: absolute;
  top: 0;
  left: 471px;
  width: 729px;
  height: 356px;
  padding: 48px 0 0 41px;
  list-style: none;
  margin: 0;
  columns: 3;
  column-fill: auto;
  column-gap: 0;
}
.mega-menu__list > .menu-item {
  height: 39px;
  break-inside: avoid;
  padding-right: 8px;
}
.mega-menu__list > .menu-item > a {
  display: block;
  color: #333;
  font-size: 15px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  line-height: 39px;
  white-space: nowrap;
  transition: color 0.15s;
}
.mega-menu__list > .menu-item > a:hover {
  color: #ff7700;
}
.mega-menu__list > .menu-item.current-menu-item > a,
.mega-menu__list > .menu-item.current_page_item > a {
  color: #ff7700;
}

.mega-menu__cat--active > .mega-menu__list {
  display: block !important;
}

/* =========================
  SP LOGO (デフォルト非表示)
========================= */
.site-header__logo-sp {
  display: none !important;
}

/* =========================
  SP HAMBURGER (デフォルト非表示)
========================= */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 1;
}
.site-header__hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.site-header__hamburger-lines span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__hamburger-label {
  font-size: 8px;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.site-header__hamburger.is-open .site-header__hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-open .site-header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-open .site-header__hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home .site-header__hamburger {
  color: #fff;
}

.site-header.is-scrolled .site-header__hamburger {
  color: #333;
}

/* =========================
  SP HEADER (≤991px)
========================= */
@media (max-width: 1024px) {
  .mega-menu__panel,
  .mega-menu-overlay {
    display: none !important;
  }
  .site-header__inner {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 16px;
    grid-template-columns: none;
    grid-template-rows: none;
  }
  .site-header__logo {
    grid-column: auto;
    grid-row: auto;
    flex-shrink: 0;
    margin-right: auto;
  }
  .site-header__logo img {
    width: auto;
  }
  .site-header__logo a {
    align-items: center;
  }
  .site-header__logo-pc {
    display: none !important;
  }
  .site-header__logo-sp {
    display: block !important;
    height: 40px;
    width: auto;
  }
  .site-header__nav--sub, .site-header__nav--main, .site-header__tel, .site-header__reserve {
    display: none !important;
  }
  .site-header__hamburger {
    display: flex;
    padding: 8px 0;
  }
}
/* SP ヘッダー：予約ボタンをピル表示 */
@media (max-width: 1024px) {
  .site-header__reserve {
    display: flex !important;
    align-items: center;
  }
  .site-header__reserve a {
    min-height: auto;
    padding: 10px 12px;
    border-radius: 80px;
    background: #f70;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    white-space: nowrap;
    border: 1px solid #f70;
  }
  .site-header__reserve a:hover {
    background: #fff;
    color: #f70;
  }
}
/* =========================
  SP NAV DRAWER
========================= */
.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100dvh;
  z-index: 1200;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.sp-nav.is-open {
  transform: translateX(0);
}
.sp-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid #ddd;
}
.sp-nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.sp-nav__logo img {
  height: 36px;
  width: auto;
}
.sp-nav__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.sp-nav__close-x {
  position: relative;
  width: 20px;
  height: 20px;
}
.sp-nav__close-x span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 1px;
}
.sp-nav__close-x span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.sp-nav__close-x span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}
.sp-nav__close-label {
  font-size: 8px;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
}
.sp-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-nav__list > .menu-item {
  border-bottom: 1px solid #ddd;
  position: relative;
  background: #fcfcfc;
}
.sp-nav__list > .menu-item:first-child {
  border-top: 1px solid #ddd;
}
.sp-nav__list > .menu-item > a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 52px 0 20px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.4;
  background: #fffbf0;
}
.sp-nav__list > .menu-item > a:hover {
  color: #f70;
}
.sp-nav__list .sp-nav__acc-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
.sp-nav__list .sp-nav__acc-btn::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.sp-nav__list .sp-nav__acc-btn[aria-expanded=true]::before {
  transform: rotate(-135deg);
}
.sp-nav__list > .menu-item > .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fcfcfc;
}
.sp-nav__list > .menu-item > .sub-menu.is-open {
  display: block;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item {
  list-style: none;
  padding: 14px 20px 0;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
  pointer-events: none;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0 0 2px;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item {
  list-style: none;
  position: relative;
  padding: 3px 8px 3px 14px;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 4px;
  font-size: 10px;
  color: #333;
  line-height: 1.5;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-size: 11px;
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}
.sp-nav__list > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #f70;
}
.sp-nav__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sp-nav__sub-list > li {
  list-style: none;
  margin: 0;
  background: #fcfcfc;
  border-bottom: 1px solid #ddd;
}
.sp-nav__sub-list > li:nth-child(odd) {
  border-right: 1px solid #ddd;
}
.sp-nav__sub-list > li:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
}
.sp-nav__sub-list > li a {
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 20px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: #fffbf0;
}
.sp-nav__sub-list > li a:hover {
  color: #f70;
}
.sp-nav__footer {
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-nav__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  height: 64px;
  background: #fff;
  border: 1px solid #f70;
  color: #f70;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.sp-nav__tel:hover {
  opacity: 0.85;
}
.sp-nav__phone-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/phone.svg") no-repeat center/contain;
  mask: url("../images/icon/phone.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.sp-nav__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background: #f70;
  color: #fff;
  border: 1px solid #f70;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.sp-nav__reserve:hover {
  background: #fff;
  color: #f70;
  border: 1px solid #f70;
}

.sp-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1150;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sp-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
  FV
========================= */
.fv {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3024/1760;
}
.fv__slider {
  position: relative;
  height: 100%;
}
.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fvFade 10s infinite;
}
.fv__slide picture {
  display: block;
  height: 100%;
}
.fv__slide--01 {
  animation-delay: 0s;
}
.fv__slide--02 {
  animation-delay: 5s;
}
.fv__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .fv {
    aspect-ratio: 750/1236;
  }
}

@keyframes fvFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* =========================
  NEWS
========================= */
.front-news {
  padding: 110px 20px 100px;
  background: #fff;
}
.front-news__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-news__heading .front-section-en {
  margin-bottom: 24px;
}
.front-news__heading h2 {
  margin: 0 0 48px;
  padding: 0;
  font-size: 64px;
  font-weight: 600;
  border: none;
}
.front-news__heading p {
  margin: 0;
  font-size: 20px;
}
.front-news__body {
  padding-top: 8px;
}
.front-news__button {
  margin-top: 40px;
}
.front-news__button .front-button {
  padding: 20px 32px 20px 4px;
}
@media (max-width: 991px) {
  .front-news {
    padding: 48px 20px;
  }
  .front-news__inner {
    display: block;
  }
  .front-news__heading {
    margin-bottom: 32px;
  }
  .front-news__heading .front-section-en {
    margin-bottom: 18px;
  }
  .front-news__heading h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .front-news__heading p {
    font-size: 15px;
  }
  .front-news__body {
    padding-top: 0;
  }
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.news-list__item {
  border-bottom: 1px dashed #ddd;
}
.news-list__item a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 26px 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}
.news-list__item a:hover {
  opacity: 0.75;
}
.news-list__item time {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 991px) {
  .news-list__item a {
    display: block;
    padding: 24px 0;
  }
  .news-list__item time {
    display: block;
    margin-bottom: 6px;
  }
}

/* =========================
  ABOUT
========================= */
.front-about {
  position: relative;
  padding: 90px 20px 0;
  overflow: hidden;
  background-image: url("../images/top/about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
}
.front-about .front-section-en::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #4f412a;
  left: -118px;
}
.front-about .front-section-en:after {
  content: none;
}
.front-about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 40px;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-about__content {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}
.front-about__heading h2 {
  margin: 0 0 48px;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  border: none;
}
.front-about__text {
  max-width: 680px;
  margin-bottom: 34px;
}
.front-about__text p {
  margin: 0 0 18px;
  font-size: 16px;
}
.front-about__image {
  position: relative;
  z-index: 1;
  margin-right: -40px;
}
.front-about__image img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .front-about {
    padding: 180px 20px 0;
    background-image: url("../images/top/about-sp.jpg");
    background-position: top center;
    background-size: contain;
    clip-path: none;
  }
  .front-about .front-section-en {
    left: 20px;
    position: relative;
    font-size: 13px;
    margin-bottom: 24px;
  }
  .front-about .front-section-en::before {
    width: 16px;
    left: -20px;
  }
  .front-about__inner {
    display: block;
  }
  .front-about__content {
    padding-bottom: 40px;
  }
  .front-about__heading h2 {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .front-about__heading h2 br.sp {
    display: none;
  }
  .front-about__image {
    margin-right: 0;
  }
}

/* =========================
  FEATURE
========================= */
.front-feature {
  padding: 170px 0 160px;
  overflow: hidden;
  background: #f8f8f5;
  background-image: url(../images/top/feature-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -60px;
}
.front-feature__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}
.front-feature__heading {
  margin-bottom: 70px;
  text-align: center;
}
.front-feature__heading h2 {
  margin: 18px 0 0;
  font-size: 64px;
  font-weight: 500;
  border: none;
}
.front-feature__en {
  display: block;
  font-size: 24px;
  color: #4f412a;
}
.front-feature__button-wrap {
  width: min(100%, 1200px);
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 80px;
}
.feature-block--reverse .feature-block__images {
  order: 2;
}
.feature-block--reverse .feature-block__content {
  order: 1;
  padding-left: clamp(20px, (100vw - 1200px) / 2, 280px);
  padding-right: 64px;
}
.feature-block__images {
  overflow: hidden;
}
.feature-block__images img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.feature-block__images--01 .feature-block__image-main {
  margin-bottom: 8px;
}
.feature-block__images--01 .feature-block__image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.feature-block__content {
  position: relative;
  align-self: center;
  padding: 0 clamp(20px, (100vw - 1200px) / 2, 280px) 80px 48px;
}
.feature-block__point {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-end;
}
.feature-block__point::before {
  content: "";
  display: block;
  width: 299px;
  height: 1px;
  background: #afa18e;
  flex-shrink: 0;
}
.feature-block__point-img {
  display: block;
  height: 280px;
  width: auto;
  object-fit: contain;
}
.feature-block h3 {
  margin: 0 0 32px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.feature-block p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
}
.feature-block__note {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .front-feature {
    padding: 70px 0 100px;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px));
  }
  .front-feature__heading {
    margin-bottom: 40px;
  }
  .front-feature__heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
  }
  .front-feature__en {
    font-size: 13px;
  }
  .front-feature__button-wrap {
    padding: 0 20px;
    margin-top: 24px;
  }
  .feature-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .feature-block__content {
    order: 0;
    padding: 0 20px 10px;
  }
  .feature-block__images {
    order: 1;
  }
  .feature-block__images img {
    min-height: unset;
  }
  .feature-block--reverse .feature-block__content {
    order: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature-block--reverse .feature-block__images {
    order: 1;
  }
  .feature-block__point {
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 16px;
  }
  .feature-block__point::before {
    width: 48px;
  }
  .feature-block__point-img {
    height: 110px;
    width: 100px;
  }
  .feature-block h3 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .feature-block p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* =========================
  PROBLEM
========================= */
.front-problem {
  position: relative;
  margin-top: -60px;
  padding: 110px 20px 95px;
  background: linear-gradient(180deg, #090909 0%, #606060 100%);
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
}
.front-problem::before {
  top: -42px;
  transform: rotate(2deg);
  transform-origin: left center;
}
.front-problem::after {
  bottom: -42px;
  transform: rotate(2deg);
  transform-origin: right center;
}
.front-problem__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-problem__heading {
  margin-bottom: 56px;
}
.front-problem__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 24px;
}
.front-problem__en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
}
.front-problem h2 {
  padding: 0;
  margin: 0 0 48px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.6;
  border: none;
}
.front-problem__lead {
  margin: 0;
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.6;
}
.front-problem__lead strong {
  color: #ffd310;
  font-size: clamp(22px, 3vw, 45px);
}
.front-problem__chart {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.front-problem__chart img {
  display: block;
  width: 100%;
  height: auto;
}
.front-problem__text {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .front-problem {
    padding: 80px 20px 85px;
    clip-path: polygon(0 0, 100% 15px, 100% 100%, 0 calc(100% - 15px));
  }
  .front-problem::before, .front-problem::after {
    height: 54px;
  }
  .front-problem::before {
    top: -30px;
  }
  .front-problem::after {
    bottom: -30px;
  }
  .front-problem__heading {
    margin-bottom: 36px;
  }
  .front-problem__en {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 22px;
  }
  .front-problem__en::after {
    width: 16px;
  }
  .front-problem h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.4;
  }
  .front-problem__lead {
    font-size: 18px;
    line-height: 1.6;
  }
  .front-problem__lead strong {
    display: block;
    font-size: 22px;
  }
  .front-problem__chart {
    margin: 32px 0 0;
  }
  .front-problem__text {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================
  SOLUTION
========================= */
.front-solution {
  position: relative;
  padding: 175px 0 0;
  background: url(../images/top/solution/01-pc.png) right 260px/auto 471px no-repeat, url(../images/top/solution-bg.jpg) center center/cover no-repeat;
  color: #333;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  margin-top: -60px;
}
.front-solution__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px 120px;
}
.front-solution__intro {
  margin-bottom: 80px;
  min-height: 560px;
}
.front-solution__intro-image {
  display: none;
}
.front-solution__intro-body {
  max-width: 700px;
}
.front-solution__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 14px;
  color: #4f412a;
}
.front-solution__en::before {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  background: #4f412a;
}
.front-solution h2 {
  margin: 0 0 40px;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  border: none;
  color: #222;
}
.front-solution p {
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 1.7;
}
.front-solution__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* muscle */
.solution-muscle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
}
.solution-muscle__content {
  max-width: 700px;
}
.solution-muscle h3 {
  margin: 0 0 80px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.solution-muscle p {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.7;
}
.solution-muscle__image {
  text-align: center;
  width: 450px;
  max-width: 100%;
  position: relative;
  right: -64px;
}
.solution-muscle__image img {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

/* method */
.solution-method {
  display: grid;
  align-items: stretch;
  gap: 0;
  margin-bottom: 80px;
}
.solution-method__content {
  align-self: center;
  padding: 80px clamp(20px, (100vw - 1200px) / 2, 280px) 80px 0;
}
.solution-method--electric {
  grid-template-columns: 730px 1fr;
}
.solution-method--electric .solution-method__images {
  height: 730px;
}
.solution-method--electric .solution-method__images img {
  object-position: left center;
}
.solution-method--acupuncture {
  grid-template-columns: 1fr 685px;
}
.solution-method--acupuncture .solution-method__content {
  padding: 80px 0 80px clamp(20px, (100vw - 1200px) / 2, 280px);
}
.solution-method--acupuncture .solution-method__images {
  height: 690px;
}
.solution-method--acupuncture .solution-method__images img {
  object-position: right center;
}
.solution-method h3 {
  position: relative;
  margin: 0 0 42px;
  padding-bottom: 18px;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 700;
  line-height: 1.7;
}
.solution-method h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(335px, 32.4vw + 213px, 680px);
  height: 1px;
  background: linear-gradient(270deg, #fff 0%, #3d3d3d 100%);
}
.solution-method h4 {
  margin: 0 0 64px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  background: none;
}
.solution-method p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}
.solution-method__images {
  align-self: center;
  overflow: hidden;
}
.solution-method__images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 991px) {
  .front-solution {
    padding: 75px 0 0;
    background-image: url(../images/top/solution-bg.jpg);
    background-position: center center;
    background-size: cover;
    clip-path: polygon(0 0, 100% 15px, 100% 100%, 0 calc(100% - 15px));
  }
  .front-solution__inner {
    padding: 0 20px;
  }
  .front-solution__intro {
    margin-bottom: 32px;
    min-height: 0;
    background-image: none;
    padding-top: 0;
  }
  .front-solution__intro-image {
    margin: 0 -20px 32px;
    display: block;
  }
  .front-solution__intro-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .front-solution__intro-body {
    max-width: 100%;
  }
  .front-solution__en {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .front-solution__en::before {
    width: 16px;
  }
  .front-solution h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .front-solution h2 br {
    display: none;
  }
  .front-solution p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .solution-muscle {
    display: block;
    margin-bottom: 72px;
  }
  .solution-muscle h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .solution-muscle p {
    font-size: 15px;
    line-height: 1.7;
  }
  .solution-muscle__image {
    margin-top: 32px;
    right: 0;
  }
  .solution-muscle__image img {
    width: 100%;
  }
  .solution-method {
    display: block;
    margin-bottom: 48px;
  }
  .solution-method--electric {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .solution-method--electric .solution-method__content {
    order: 0;
  }
  .solution-method--electric .solution-method__images {
    order: 1;
  }
  .solution-method--acupuncture .solution-method__images img {
    object-position: center;
  }
  .solution-method__images img {
    min-height: 246px;
  }
  .solution-method__content {
    padding: 0 20px !important;
  }
  .solution-method h3 {
    margin-bottom: 28px;
    font-size: 40px;
  }
  .solution-method h4 {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.6;
  }
  .solution-method p {
    font-size: 15px;
  }
}
/* =========================
  SYMPTOMS
========================= */
.front-symptoms {
  position: relative;
  color: #333;
}
.front-symptoms__heading {
  position: relative;
  z-index: 2;
  padding: 95px 20px 38px;
  background: transparent;
  color: #222;
}
.front-symptoms__heading-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-symptoms__sp-image {
  display: none;
}
.front-symptoms__sp-image img {
  display: block;
  width: 100%;
  height: auto;
}
.front-symptoms__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  font-size: 24px;
  color: #4f412a;
}
.front-symptoms__en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #4f412a;
}
.front-symptoms h2 {
  margin: 0 0 24px;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.4;
  border: none;
  color: #222;
}
.front-symptoms__heading p {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  line-height: 1.4;
  color: #222;
}
.front-symptoms__visual {
  position: relative;
  margin-top: -160px;
  min-height: 760px;
  padding: 250px 20px 110px;
  background-image: url("../images/top/symptoms.jpg");
  background-size: cover;
  background-position: center top;
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
}
.front-symptoms__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-symptoms__link-area {
  width: 58%;
  margin-left: auto;
}

.symptoms-group {
  margin-bottom: 34px;
}
.symptoms-group:last-child {
  margin-bottom: 0;
}
.symptoms-group h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
.symptoms-group h3::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.symptoms-group__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.7;
}
.symptoms-group a {
  color: white;
  text-decoration: none;
}
.symptoms-group a::after {
  content: "、";
  margin-right: 0.25em;
}
.symptoms-group a:last-of-type::after {
  content: "";
}
.symptoms-group a:hover {
  color: #e3c514;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.symptoms-group__etc {
  color: white;
}

@media (max-width: 991px) {
  .front-symptoms__heading {
    padding: 0 20px 32px;
    background: #fff;
  }
  .front-symptoms__en {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .front-symptoms__en::after {
    width: 16px;
  }
  .front-symptoms h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .front-symptoms__heading p {
    font-size: 25px;
    font-weight: 600;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
    line-height: 1.5;
  }
  .front-symptoms__sp-image {
    display: block;
  }
  .front-symptoms__visual {
    margin-top: 0;
    min-height: auto;
    padding: 0;
    background-image: none;
    background-color: #202020;
    clip-path: none;
  }
  .front-symptoms__visual::after {
    display: none;
  }
  .front-symptoms__inner {
    width: 100%;
  }
  .front-symptoms__link-area {
    width: 100%;
    margin-left: 0;
    padding: 0;
    background: none;
  }
  .symptoms-group {
    margin-bottom: 0;
    border-bottom: 1px solid #4d4d4d;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  }
  .symptoms-group h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 69px;
    margin: 0;
    padding: 14px 20px 14px 44px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
  }
  .symptoms-group h3::before {
    left: 20px;
    top: 19px;
  }
  .symptoms-group h3::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    background-color: #fff;
    -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
    mask: url("../images/icon/arrow.svg") no-repeat center/contain;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  .symptoms-group.is-open h3::after {
    transform: rotate(-90deg);
  }
  .symptoms-group__links {
    display: none;
    padding: 0 20px 24px 44px;
    font-size: 15px;
    line-height: 1.9;
  }
  .symptoms-group.is-open .symptoms-group__links {
    display: flex;
  }
}
/* =========================
  MESSAGE
========================= */
.front-message {
  position: relative;
  padding: 170px 0 120px;
  background: url(../images/top/message/bg.jpg) center center/cover no-repeat;
  color: #333;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  margin-top: -60px;
}
.front-message__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
  margin: 0 auto;
  padding-left: max(20px, (100vw - 1200px) / 2);
}
.front-message__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.front-message__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  font-size: 24px;
  color: #4f412a;
}
.front-message__en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #4f412a;
}
.front-message__title {
  margin: 0 0 54px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  border: none;
}
.front-message__title span {
  display: table;
  margin-bottom: 6px;
  padding: 4px 18px 6px;
  background: #222;
  color: #fff;
}
.front-message__title.pc {
  display: block;
}
@media (max-width: 991px) {
  .front-message__title.pc {
    display: none;
  }
}
.front-message__title.sp {
  display: none;
}
@media (max-width: 991px) {
  .front-message__title.sp {
    display: block;
  }
}
.front-message__text {
  max-width: 720px;
  margin-bottom: 58px;
}
.front-message__text p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
}
.front-message__profile {
  max-width: 720px;
  margin-bottom: 38px;
}
.front-message__profile p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
}
.front-message__name {
  margin-bottom: 26px !important;
  font-size: clamp(34px, 3.6vw, 52px) !important;
  line-height: 1.3 !important;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif !important;
}
.front-message__name span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 15px;
  vertical-align: middle;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.front-message__button {
  min-width: 368px;
}
.front-message__sp-image {
  display: none;
}
.front-message__image {
  align-self: stretch;
  min-width: 0;
}
.front-message__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 991px) {
  .front-message {
    padding: 48px 20px 48px;
    margin-top: 0;
    clip-path: none;
  }
  .front-message__inner {
    display: block;
    padding-left: 0;
  }
  .front-message__en {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .front-message__en::after {
    width: 40px;
  }
  .front-message__title {
    margin-bottom: 36px;
    font-size: 26px;
  }
  .front-message__title span {
    display: inline;
    padding: 2px 8px 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.8;
  }
  .front-message__title.pc {
    display: none;
  }
  .front-message__title.sp {
    display: block;
  }
  .front-message__sp-image {
    display: block;
    margin: 36px -20px 24px;
    text-align: center;
  }
  .front-message__sp-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .front-message__text {
    margin-bottom: 42px;
  }
  .front-message__text p {
    font-size: 15px;
  }
  .front-message__profile p {
    font-size: 15px;
  }
  .front-message__name {
    font-size: 28px !important;
  }
  .front-message__name span {
    display: block;
    font-size: 12px;
  }
  .front-message__button {
    width: 100%;
    min-width: auto;
    background: #111;
    border-color: #111;
    color: #fff;
  }
  .front-message__button:hover {
    background: #333;
    color: #fff;
  }
  .front-message__image {
    display: none;
  }
}

/* =========================
  MEDIA
========================= */
.front-media {
  position: relative;
  padding: 95px 0 0;
  background-image: url(../images/top/media/magazine.jpg);
  background-size: cover;
  color: #333;
  overflow: hidden;
}
.front-media__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px 80px;
}
.front-media__heading {
  margin-bottom: 68px;
}
.front-media__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 24px;
  color: #4f412a;
}
.front-media__en::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  background: #4f412a;
}
.front-media__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #222;
  font-style: normal;
  border: none;
}
.front-media__num {
  font-size: clamp(35px, 5.5vw, 80px);
  font-style: normal;
}
.front-media__lead {
  margin: 0;
  font-size: clamp(15px, 1.7vw, 24px);
  line-height: 1.8;
}
.front-media__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 0 auto 72px;
}
.front-media__thumb {
  text-align: center;
}
.front-media__thumb img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.front-media__thumb p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}
.front-media__h3 {
  margin: 0;
  font-size: clamp(22px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #222;
  border: none;
}
.front-media__ohtani {
  background-image: url(../images/top/media/bg.png);
  background-position: right top;
  background-size: 35% auto;
  background-repeat: no-repeat;
  padding-bottom: 72px;
}
.front-media__ohtani-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.front-media__ohtani-inner p {
  max-width: 800px;
  margin: 0 0 26px;
  font-size: clamp(14px, 1.4vw, 26px);
  line-height: 1.7;
}
.front-media__ohtani-inner p:last-child {
  margin-bottom: 0;
}
.front-media__papers {
  max-width: 1325px;
  margin: 0 auto;
}
.front-media__papers img {
  display: block;
  width: 100%;
  height: auto;
}
.front-media__article {
  display: grid;
  grid-template-columns: 46fr 54fr;
}
.front-media__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 3.5vw, 56px);
  background: #fff;
  margin: 40px 0;
}
.front-media__quote p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
}
.front-media__quote p:last-child {
  margin-bottom: 0;
}
.front-media__quote-label {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-weight: 600;
  font-size: 18px !important;
  margin-bottom: 20px !important;
}
.front-media__article-image {
  box-shadow: 0 10px 22px rgba(69, 69, 69, 0.1), 0 41px 41px rgba(69, 69, 69, 0.09), 0 91px 55px rgba(69, 69, 69, 0.05);
}
.front-media__article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .front-media {
    padding: 70px 0 0;
  }
  .front-media__inner {
    padding-bottom: 0;
  }
  .front-media__heading {
    margin-bottom: 32px;
  }
  .front-media__en {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .front-media__en::after {
    width: 16px;
  }
  .front-media__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
    margin-bottom: 56px;
  }
  .front-media__thumb:last-child:nth-child(odd) {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
  .front-media__thumb p {
    font-size: 11px;
  }
  .front-media__h3 {
    margin-bottom: 40px;
  }
  .front-media__h3 br {
    display: none;
  }
  .front-media__ohtani {
    background-image: none;
    min-height: auto;
    padding-bottom: 32px;
  }
  .front-media__ohtani-inner p {
    max-width: none;
    font-size: 15px;
  }
  .front-media__papers {
    max-width: none;
    margin: 0 -20px;
    background-image: url(../images/top/media/bg-sp.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .front-media__papers img {
    padding-top: 120px;
  }
  .front-media__article {
    display: flex;
    flex-direction: column;
    margin: 0 -12px;
    background: #fff;
  }
  .front-media__article-image {
    order: -1;
    margin: -32px 12px 0;
    aspect-ratio: 335/204;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06)) drop-shadow(0 8px 8px rgba(0, 0, 0, 0.05)) drop-shadow(0 17px 10px rgba(0, 0, 0, 0.03)) drop-shadow(0 30px 12px rgba(0, 0, 0, 0.01)) drop-shadow(0 47px 13px rgba(0, 0, 0, 0));
  }
  .front-media__article-image img {
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .front-media__quote {
    padding: 32px 20px;
    margin: 0;
  }
  .front-media__quote p {
    font-size: 12px;
    line-height: 1.6;
  }
  .front-media__quote-label {
    font-size: 14px !important;
  }
}

/* =========================
  ACHIEVEMENT
========================= */
.front-achievement {
  padding: 110px 0 0;
  background: #f8f8f5;
  color: #333;
}
.front-achievement__inner {
  width: 100%;
}
.front-achievement__heading {
  max-width: 1200px;
  margin: 0 auto 54px;
  padding: 0 20px;
  text-align: center;
}
.front-achievement__en {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  color: #4f412a;
}
.front-achievement h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  border: none;
}
.front-achievement__main-image {
  background-color: #fff;
  padding-bottom: 80px;
}
.front-achievement__main-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* achievement media */
.achievement-media {
  background-color: #fff;
}
.achievement-media__top {
  position: relative;
  background-color: #fff;
  padding: 140px 0 160px;
}
.achievement-media__top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  background-color: #fafafa;
}
.achievement-media__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.achievement-media__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 24px;
  color: #4f412a;
}
.achievement-media__en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #4f412a;
}
.achievement-media h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}
.achievement-media__hero {
  position: absolute;
  top: 75px;
  right: 0;
  width: 50%;
  z-index: 1;
}
.achievement-media__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.achievement-media__thumbnails {
  max-width: 1200px;
  margin: -27px auto 0;
  padding: 0 0 90px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.achievement-media__thumbnails img {
  display: block;
  width: 100%;
  height: auto;
}

/* guidance */
.achievement-guidance {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  align-items: stretch;
  background: #0068c9;
  color: #fff;
  margin-bottom: 0;
}
.achievement-guidance__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.achievement-guidance__content {
  padding: 68px 70px;
}
.achievement-guidance__en {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}
.achievement-guidance h3 {
  margin: 0 0 34px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.6;
}
.achievement-guidance p {
  max-width: 640px;
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 2;
}
.achievement-guidance__button {
  min-width: 300px;
}

/* =========================
  Bone talk
========================= */
.bone-talk {
  background: #0071c8;
  padding: 24px 24px 197px;
}
.bone-talk__inner {
  margin: 0 auto;
  background: #eef5f7;
  border-radius: 4px;
  padding: 100px 48px 0;
  text-align: center;
}
.bone-talk__head {
  margin: 0 auto 40px;
  max-width: 1004px;
}
.bone-talk__title-img {
  width: min(720px, 90%);
  height: auto;
  display: block;
  margin: 0 auto;
}
.bone-talk__lead {
  font-size: clamp(24px, 2.4vw, 38px);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif !important;
  line-height: 1.8;
  margin-bottom: 36px;
}
.bone-talk__text {
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 2;
  margin-bottom: 36px;
}
.bone-talk__text p {
  margin: 0 0 8px;
}
.bone-talk__button-wrap {
  margin-bottom: -100px;
}
.bone-talk__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: auto;
  transform: translateY(160px);
  filter: drop-shadow(0 10px 22px rgba(69, 69, 69, 0.1)) drop-shadow(0 41px 41px rgba(69, 69, 69, 0.09)) drop-shadow(0 91px 55px rgba(69, 69, 69, 0.05)) drop-shadow(0 162px 65px rgba(69, 69, 69, 0.01)) drop-shadow(0 254px 71px rgba(69, 69, 69, 0));
}
.bone-talk img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
@media (max-width: 991px) {
  .bone-talk {
    padding: 8px 8px 48px;
  }
  .bone-talk__inner {
    padding: 56px 20px 0;
    background: #f4fcff;
  }
  .bone-talk__head {
    margin-bottom: 24px;
  }
  .bone-talk__title-img {
    width: min(250px, 80%);
  }
  .bone-talk__lead {
    font-size: 20px;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .bone-talk__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .bone-talk__text p {
    margin: 0 0 12px;
  }
  .bone-talk__text br {
    display: none;
  }
  .bone-talk__button-wrap {
    margin-bottom: 0;
  }
  .bone-talk__images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    transform: translateY(36px);
    filter: none;
  }
  .bone-talk__images img:first-child {
    grid-column: 1/-1;
    border-radius: 6px;
  }
  .bone-talk img {
    border-radius: 6px;
  }
}

/* =========================
  GALLERY
========================= */
.front-gallery {
  padding: 115px 0 0;
  background: #fff;
  color: #333;
}
.front-gallery__heading {
  margin: 0 auto 56px;
  padding: 0 20px;
  text-align: center;
}
.front-gallery__en {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #4f412a;
}
.front-gallery h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  border: none;
}
.front-gallery__images {
  width: min(50% + 600px, 100%);
}
.front-gallery__images picture {
  display: block;
}
.front-gallery__images img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .front-achievement {
    padding: 75px 0 0;
  }
  .front-achievement__heading {
    margin-bottom: 36px;
    padding: 0;
  }
  .front-achievement__en {
    font-size: 14px;
  }
  .front-achievement h2 {
    font-size: 28px;
    padding: 0 20px;
  }
  .front-achievement h2 br {
    display: none;
  }
  .front-achievement__medals {
    margin: 0 auto 64px;
  }
  .front-achievement__main-image {
    padding-bottom: 48px;
  }
  .achievement-media {
    margin-bottom: 0;
  }
  .achievement-media__top {
    padding: 0;
  }
  .achievement-media__top::before {
    content: none;
  }
  .achievement-media__content {
    padding: 0 20px 20px;
  }
  .achievement-media__en {
    font-size: 14px;
  }
  .achievement-media__en::after {
    width: 40px;
  }
  .achievement-media h3 {
    font-size: 28px;
  }
  .achievement-media h3 br {
    display: none;
  }
  .achievement-media__hero {
    position: static;
    width: auto;
    z-index: auto;
    display: block;
    padding: 0;
  }
  .achievement-media__hero img {
    display: block;
    width: 100%;
    height: auto;
  }
  .achievement-media__thumbnails {
    max-width: none;
    padding: 20px 20px 56px;
    background-color: #fafafa;
    margin-top: 0;
  }
  .achievement-guidance {
    display: block;
  }
  .achievement-guidance__content {
    padding: 42px 24px;
  }
  .achievement-guidance h3 {
    font-size: 26px;
  }
  .achievement-guidance p {
    font-size: 14px;
  }
  .achievement-guidance__button {
    width: 100%;
    min-width: auto;
  }
  .front-gallery {
    padding: 72px 0 0;
  }
  .front-gallery__heading {
    margin-bottom: 32px;
  }
  .front-gallery__en {
    font-size: 14px;
  }
  .front-gallery h2 {
    font-size: 28px;
  }
  .front-gallery__images {
    max-width: none;
  }
}
/* =========================
  FAQ
========================= */
.front-faq {
  position: relative;
  padding: 115px 20px 120px;
  background: url(../images/top/faq-bg.jpg) top center/cover no-repeat;
  color: #333;
  overflow: hidden;
}
.front-faq__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 86px;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.front-faq__heading {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.front-faq__en {
  position: relative;
  display: inline-block;
  padding-top: 120px;
  font-size: 18px;
  color: #4f412a;
  writing-mode: vertical-rl;
}
.front-faq__en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 98px;
  background: #4f412a;
  transform: translateX(-50%);
}
.front-faq h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.25;
  color: #222;
  border: none;
  writing-mode: vertical-rl;
}
.front-faq__body {
  padding-top: 22px;
}

.faq-list {
  width: 100%;
}

.faq-item {
  padding: 0 0 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item__question {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin: 0 0 18px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.faq-item__question span {
  flex: 0 0 auto;
  font-size: 24px;
}
.faq-item__answer {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 991px) {
  .front-faq {
    padding: 75px 20px 85px;
  }
  .front-faq__inner {
    display: block;
  }
  .front-faq__heading {
    display: block;
    margin-bottom: 42px;
  }
  .front-faq__en {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-top: 0;
    margin-bottom: 18px;
    font-size: 16px;
    writing-mode: horizontal-tb;
    flex-direction: row-reverse;
  }
  .front-faq__en::before {
    position: static;
    display: block;
    width: 40px;
    height: 1px;
    transform: none;
  }
  .front-faq h2 {
    font-size: 40px;
    writing-mode: horizontal-tb;
  }
  .front-faq h2 br {
    display: none;
  }
  .front-faq__body {
    padding-top: 0;
  }
  .faq-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .faq-item__question {
    gap: 10px;
    font-size: 20px;
  }
  .faq-item__question span {
    font-size: 20px;
  }
  .faq-item__answer {
    font-size: 14px;
    line-height: 2;
  }
}
/* =========================
  OVERVIEW
========================= */
.front-overview {
  padding: 110px 20px 120px;
  background: #343737;
  color: #fff;
}
.front-overview__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
.front-overview__heading {
  margin-bottom: 68px;
}
.front-overview__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: #908b7b;
  font-size: 24px;
  transform: translateX(-165px);
}
.front-overview__en::before {
  content: "";
  display: block;
  width: 147px;
  height: 1px;
  background: #908b7b;
}
.front-overview h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.4;
  border: none;
}
.front-overview__body {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

.overview-list {
  margin: 0;
  padding: 0;
}

.overview-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.overview-list__row:first-child {
  border-top: none;
}
.overview-list__row dt {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.overview-list__row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 991px) {
  .front-overview {
    padding: 48px 20px 64px;
    background: #3d3d3d;
  }
  .front-overview__heading {
    margin-bottom: 8px;
  }
  .front-overview__en {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 22px;
    transform: none;
  }
  .front-overview__en::before {
    width: 40px;
  }
  .front-overview h2 {
    font-size: 40px;
    font-weight: 600;
  }
  .overview-list__row {
    display: block;
    padding: 0;
    border-bottom-color: #5f5f5f;
  }
  .overview-list__row:first-child {
    border-top: none;
  }
  .overview-list__row dt {
    padding: 32px 0 12px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .overview-list__row dd {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
  }
}
/* =========================
  ARTICLE CONTENT TYPOGRAPHY

  Shared between the front-end .single-content wrapper (_single.scss) and
  the admin editor styles (editor-style.scss) so that what admins see while
  writing matches the published post.
========================= */
/* =========================
  HEADER: 固定ページ用（白背景）
========================= */
body:not(.home) .site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
body:not(.home) .site-header .header-menu a {
  color: #333;
}
body:not(.home) .site-header .header-menu a:hover {
  color: #f70;
}
body:not(.home) .site-header .header-menu--main > .menu-item-has-children > a::after {
  border-color: #333;
}
body:not(.home) .site-header .site-header__tel a {
  color: #333;
}
body:not(.home) .site-header .site-header__tel span {
  color: #333;
}

/* =========================
  PAGE MAIN
========================= */
.page-main {
  padding-top: 96px;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 1024px) {
  .page-main {
    padding-top: 56px;
  }
}

/* =========================
  PAGE HERO
========================= */
.page-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: -6px;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  filter: blur(3px);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.page-hero__title {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  padding: 0 20px;
}

/* =========================
  PAGE BREADCRUMBS
========================= */
.page-breadcrumbs {
  background: #fafafa;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-breadcrumbs__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  font-size: 12px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}
.page-breadcrumbs a {
  color: #333;
  text-decoration: none;
}
.page-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
  PAGE CONTENT
========================= */
.page-content {
  padding: 80px 0;
}
.page-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
.page-content__inner p {
  font-weight: 400;
}
.page-content__inner img {
  width: 100%;
}
.page-content__inner {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.page-content__inner > * + * {
  margin-top: 40px;
}
.page-content__inner p {
  margin: 0 0 24px;
}
.page-content__inner a {
  color: #f70;
  text-underline-offset: 3px;
}
.page-content__inner {
  /* Headings */
}
.page-content__inner h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.4px;
  line-height: 1.6;
  margin: 80px 0 16px;
}
.page-content__inner h3 {
  font-size: 26px;
  font-weight: 700;
  color: #4f412a;
  border-bottom: 1px dashed #666;
  padding-bottom: 18px;
  line-height: 1.5;
  margin: 62px 0 24px;
}
.page-content__inner h4 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin: 45px 0 10px;
}
.page-content__inner {
  /* Lists */
}
.page-content__inner ul,
.page-content__inner ol {
  padding-left: 1.5em;
  margin: 0;
}
.page-content__inner ul li,
.page-content__inner ol li {
  margin-bottom: 0.4em;
  line-height: 1.8;
}
.page-content__inner ul {
  list-style: disc;
}
.page-content__inner ol {
  list-style: decimal;
}
.page-content__inner {
  /* Definition list */
}
.page-content__inner dt {
  background: #3d3d3d;
  color: #fff;
  font-weight: 700;
  padding: 18px 24px;
  line-height: 1.7;
}
.page-content__inner dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
.page-content__inner {
  /* Image */
}
.page-content__inner img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  padding-bottom: 16px;
}
.page-content__inner figure {
  margin: 0;
}
.page-content__inner figure img {
  width: 100%;
}
.page-content__inner figure figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
}
.page-content__inner {
  /* Blockquote */
}
.page-content__inner blockquote {
  background: #fafafa;
  padding: 48px 32px 40px;
  margin: 0;
}
.page-content__inner blockquote::before {
  content: "";
  display: block;
  width: 33px;
  height: 23px;
  background-image: url("../images/icon/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 16px;
}
.page-content__inner blockquote p {
  line-height: 1.7;
}
.page-content__inner blockquote cite {
  display: block;
  text-align: right;
  font-style: normal;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.page-content__inner {
  /* In-content button ([ag_button] shortcode / acf/ag-button block) */
}
.page-content__inner .ag-content-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 16px 40px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-content__inner .ag-content-button::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/circle-arrow.svg") no-repeat center/contain;
  mask: url("../images/icon/circle-arrow.svg") no-repeat center/contain;
}
.page-content__inner .ag-content-button--a {
  background: #9e7c4d;
  border-color: #9e7c4d;
}
.page-content__inner .ag-content-button--a:hover {
  background: #fff;
  color: #9e7c4d;
}
.page-content__inner .ag-content-button--b {
  background: #ff850b;
  border-color: #ff850b;
}
.page-content__inner .ag-content-button--b:hover {
  background: #fff;
  color: #ff850b;
}
.page-content__inner {
  /* Table */
}
.page-content__inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.page-content__inner table th {
  background: #222;
  color: #fff;
  padding: 9px 16px;
  font-weight: 400;
  line-height: 1.7;
  border-right: 1px solid #fff;
  text-align: left;
  font-size: 16px;
}
.page-content__inner table th:last-child {
  border-right: none;
}
.page-content__inner table td {
  background: #fff;
  color: #333;
  padding: 9px 16px;
  border: 1px solid #c1c1c1;
  line-height: 1.7;
  font-size: 16px;
}
.page-content__inner {
  /* Marker underlines */
}
.page-content__inner mark {
  background: none;
  color: inherit;
}
.page-content__inner .marker-yellow {
  background: linear-gradient(transparent 50%, #f4eaab 50%);
}
.page-content__inner .marker-pink {
  background: linear-gradient(transparent 50%, #f0c6f4 50%);
}
.page-content__inner .marker-blue {
  background: linear-gradient(transparent 50%, #c0eefd 50%);
}
.page-content__inner .marker-green {
  background: linear-gradient(transparent 50%, #c9ffb4 50%);
}
.page-content__inner {
  /* Button links */
}
.page-content__inner .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.7;
}
.page-content__inner .btn-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.page-content__inner .btn-link--brown {
  background: #9e7c4d;
}
.page-content__inner .btn-link--orange {
  background: #ff850b;
}
.page-content__inner {
  /* Attention Box A: border only */
}
.page-content__inner .attention-a {
  background: #fff;
  border: 1px solid #c1c1c1;
  padding: 48px 32px;
}
.page-content__inner .attention-a p + p {
  margin-top: 32px;
}
.page-content__inner {
  /* Attention Box B: background image + text */
}
.page-content__inner .attention-b {
  position: relative;
  border: 1px solid #c1c1c1;
  padding: 48px 32px;
  overflow: hidden;
}
.page-content__inner .attention-b img.attention-b__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.page-content__inner .attention-b .attention-b__content {
  position: relative;
  z-index: 1;
}
.page-content__inner {
  /* Attention Box C: dark title bar + content */
}
.page-content__inner .attention-c {
  border: 1px solid #c1c1c1;
  overflow: hidden;
}
.page-content__inner .attention-c__title {
  background: #222;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 19px 32px;
  line-height: 1.6;
}
.page-content__inner .attention-c__body {
  background: #fff;
  padding: 40px 32px;
}
.page-content__inner .attention-c__body p + p,
.page-content__inner .attention-c__body p + ul,
.page-content__inner .attention-c__body ul + p {
  margin-top: 40px;
}
.page-content .alignleft {
  float: left;
  margin: 0.4em 1.8em 1em 0;
}
.page-content .alignright {
  float: right;
  margin: 0.4em 0 1em 1.8em;
}
.page-content .aligncenter {
  display: block;
  margin: 0 auto 1em;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 767px) {
  .page-main {
    padding-top: 56px;
  }
  .page-hero {
    height: 140px;
  }
  .page-hero__title {
    font-size: 22px;
  }
  .page-content {
    padding: 0 0 48px;
  }
  .page-content__inner {
    padding: 0 20px;
  }
  .page-content__inner h2 {
    font-size: 24px;
    letter-spacing: 0.24px;
    margin: 68px 0 16px;
    line-height: 1.5;
  }
  .page-content__inner h3 {
    font-size: 22px;
    margin: 48px 0 16px;
    padding-bottom: 21px;
  }
  .page-content__inner h4 {
    font-size: 20px;
    margin: 48px 0 10px;
  }
  .page-content__inner .attention-c__title {
    font-size: 18px;
  }
  .page-content__inner .btn-link {
    font-size: 16px;
    padding: 22px 40px;
  }
  .page-content__inner table {
    margin-bottom: 32px;
  }
}
/* =========================
  POST LIST
========================= */
.post-list {
  padding: 80px 0;
}
.post-list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, (100% - 1200px) / 2, 120px);
}
.post-list__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 48px;
}
.post-list__lead-br {
  display: none;
}
.post-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 42px;
  row-gap: 48px;
}
.post-list__empty {
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #333;
}
.post-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 10px;
}
.post-list__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 48px;
  border: 1px solid #ddd;
  margin-right: -1px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  text-decoration: none;
  background: #fff;
  position: relative;
}
.post-list__pagination .page-numbers.current {
  background: #f70;
  color: #fff;
  z-index: 1;
}
.post-list__pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}
.post-list__pagination .page-numbers.prev, .post-list__pagination .page-numbers.next {
  border: none;
  background: none;
  margin-right: 0;
}
.post-list__pagination .page-numbers.prev:hover, .post-list__pagination .page-numbers.next:hover {
  background: none;
}
.post-list__pagination .page-numbers.prev svg path, .post-list__pagination .page-numbers.next svg path {
  stroke: #333;
}

/* Post Card */
.post-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-card__link:hover .post-card__title {
  color: #f70;
}
.post-card__eyecatch {
  width: 100%;
  aspect-ratio: 372/203;
  overflow: hidden;
}
.post-card__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__body {
  padding-top: 16px;
}
.post-card__info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.post-card__date {
  font-size: 14px;
  color: #666;
  line-height: 1;
}
.post-card__cat {
  font-size: 12px;
  color: #f70;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
}
.post-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  transition: color 0.2s;
}

/* SP */
@media (max-width: 767px) {
  .post-list {
    padding: 48px 0;
  }
  .post-list__inner {
    padding: 0 20px;
  }
  .post-list__lead {
    text-align: left;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .post-list__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
  .post-list__pagination {
    margin-top: 40px;
  }
  .post-list__pagination .page-numbers {
    width: 40px;
    height: 40px;
  }
  .post-card__link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
  }
  .post-card__eyecatch {
    flex-shrink: 0;
    width: 130px;
  }
  .post-card__body {
    flex: 1;
    padding-top: 0;
  }
  .post-card__info {
    gap: 8px;
    margin-bottom: 4px;
  }
  .post-card__date {
    font-size: 10px;
  }
  .post-card__cat {
    font-size: 10px;
  }
  .post-card__title {
    font-size: 11px;
  }
}
/* PC: リード文の改行を表示 */
@media (min-width: 992px) {
  .post-list__lead-br {
    display: inline;
  }
}
/* =========================
  SINGLE MAIN
========================= */
.single-main {
  padding-top: 96px;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

/* =========================
  ARTICLE INNER (800px centered)
========================= */
.single-article__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}

/* =========================
  ARTICLE HEADER
========================= */
.single-header {
  padding-top: 82px;
}
.single-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.single-header__cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.single-header__date {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}
.single-header__title {
  font-size: 36px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin: 0 0 24px;
}
.single-header__eyecatch-wrap {
  margin-bottom: 24px;
}
.single-header__eyecatch {
  width: 100%;
  aspect-ratio: 800/456;
  overflow: hidden;
}
.single-header__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-header__supervisor {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 24px auto;
}
.single-header__supervisor-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.single-header__supervisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-header__supervisor-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.single-header__supervisor-label {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
}
.single-header__supervisor-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}
.single-header__share {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

/* =========================
  SNS SHARE BUTTONS
========================= */
.sns-share {
  display: flex;
  gap: 8px;
  margin: auto;
}
.sns-share__link {
  display: block;
  width: 54px;
  height: 27px;
  text-decoration: none;
  flex-shrink: 0;
}
.sns-share__link img {
  display: block;
  width: 54px;
  height: 27px;
}

/* =========================
  TABLE OF CONTENTS PLUS PLUGIN (#toc_container)
========================= */
#toc_container {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 40px;
  overflow: hidden;
  word-break: break-word;
  padding: 0;
}
#toc_container p.toc_title {
  background: #222;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  padding: 0 27px;
  height: 62px;
  display: flex;
  align-items: center;
  margin: 0;
}
#toc_container p.toc_title .toc_toggle {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 400;
}
#toc_container p.toc_title .toc_toggle .toc_brackets {
  display: none;
}
#toc_container p.toc_title .toc_toggle a {
  color: #fff;
  text-decoration: none;
}
#toc_container p.toc_title .toc_toggle a:hover {
  text-decoration: underline;
}
#toc_container ul.toc_list {
  padding: 24px 43px 40px;
  margin: 0 !important;
  list-style: none;
}
#toc_container ul.toc_list > li {
  font-size: 16px;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
#toc_container ul.toc_list > li + li {
  margin-top: 0;
}
#toc_container ul.toc_list > li > a {
  color: #333;
  text-decoration: none;
}
#toc_container ul.toc_list > li > a:hover {
  text-decoration: underline;
}
#toc_container ul.toc_list > li .toc_number {
  color: #333;
  margin-right: 6px;
}
#toc_container ul.toc_list > li ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#toc_container ul.toc_list > li ul li {
  font-size: 16px;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 2;
}
#toc_container ul.toc_list > li ul li + li {
  margin-top: 0;
}
#toc_container ul.toc_list > li ul li a {
  color: #333;
  text-decoration: none;
}
#toc_container ul.toc_list > li ul li a:hover {
  text-decoration: underline;
}
#toc_container ul.toc_list > li ul li .toc_number {
  margin-right: 4px;
}

/* =========================
  ARTICLE CONTENT TYPOGRAPHY
========================= */
.single-content {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.single-content > * + * {
  margin-top: 40px;
}
.single-content p {
  margin: 0 0 24px;
}
.single-content a {
  color: #f70;
  text-underline-offset: 3px;
}
.single-content {
  /* Headings */
}
.single-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.4px;
  line-height: 1.6;
  margin: 80px 0 16px;
}
.single-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #4f412a;
  border-bottom: 1px dashed #666;
  padding-bottom: 18px;
  line-height: 1.5;
  margin: 62px 0 24px;
}
.single-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin: 45px 0 10px;
}
.single-content {
  /* Lists */
}
.single-content ul,
.single-content ol {
  padding-left: 1.5em;
  margin: 0;
}
.single-content ul li,
.single-content ol li {
  margin-bottom: 0.4em;
  line-height: 1.8;
}
.single-content ul {
  list-style: disc;
}
.single-content ol {
  list-style: decimal;
}
.single-content {
  /* Definition list */
}
.single-content dt {
  background: #3d3d3d;
  color: #fff;
  font-weight: 700;
  padding: 18px 24px;
  line-height: 1.7;
}
.single-content dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
.single-content {
  /* Image */
}
.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  padding-bottom: 16px;
}
.single-content figure {
  margin: 0;
}
.single-content figure img {
  width: 100%;
}
.single-content figure figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
}
.single-content {
  /* Blockquote */
}
.single-content blockquote {
  background: #fafafa;
  padding: 48px 32px 40px;
  margin: 0;
}
.single-content blockquote::before {
  content: "";
  display: block;
  width: 33px;
  height: 23px;
  background-image: url("../images/icon/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 16px;
}
.single-content blockquote p {
  line-height: 1.7;
}
.single-content blockquote cite {
  display: block;
  text-align: right;
  font-style: normal;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.single-content {
  /* In-content button ([ag_button] shortcode / acf/ag-button block) */
}
.single-content .ag-content-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 16px 40px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.single-content .ag-content-button::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/circle-arrow.svg") no-repeat center/contain;
  mask: url("../images/icon/circle-arrow.svg") no-repeat center/contain;
}
.single-content .ag-content-button--a {
  background: #9e7c4d;
  border-color: #9e7c4d;
}
.single-content .ag-content-button--a:hover {
  background: #fff;
  color: #9e7c4d;
}
.single-content .ag-content-button--b {
  background: #ff850b;
  border-color: #ff850b;
}
.single-content .ag-content-button--b:hover {
  background: #fff;
  color: #ff850b;
}
.single-content {
  /* Table */
}
.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.single-content table th {
  background: #222;
  color: #fff;
  padding: 9px 16px;
  font-weight: 400;
  line-height: 1.7;
  border-right: 1px solid #fff;
  text-align: left;
  font-size: 16px;
}
.single-content table th:last-child {
  border-right: none;
}
.single-content table td {
  background: #fff;
  color: #333;
  padding: 9px 16px;
  border: 1px solid #c1c1c1;
  line-height: 1.7;
  font-size: 16px;
}
.single-content {
  /* Marker underlines */
}
.single-content mark {
  background: none;
  color: inherit;
}
.single-content .marker-yellow {
  background: linear-gradient(transparent 50%, #f4eaab 50%);
}
.single-content .marker-pink {
  background: linear-gradient(transparent 50%, #f0c6f4 50%);
}
.single-content .marker-blue {
  background: linear-gradient(transparent 50%, #c0eefd 50%);
}
.single-content .marker-green {
  background: linear-gradient(transparent 50%, #c9ffb4 50%);
}
.single-content {
  /* Button links */
}
.single-content .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.7;
}
.single-content .btn-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.single-content .btn-link--brown {
  background: #9e7c4d;
}
.single-content .btn-link--orange {
  background: #ff850b;
}
.single-content {
  /* Attention Box A: border only */
}
.single-content .attention-a {
  background: #fff;
  border: 1px solid #c1c1c1;
  padding: 48px 32px;
}
.single-content .attention-a p + p {
  margin-top: 32px;
}
.single-content {
  /* Attention Box B: background image + text */
}
.single-content .attention-b {
  position: relative;
  border: 1px solid #c1c1c1;
  padding: 48px 32px;
  overflow: hidden;
}
.single-content .attention-b img.attention-b__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.single-content .attention-b .attention-b__content {
  position: relative;
  z-index: 1;
}
.single-content {
  /* Attention Box C: dark title bar + content */
}
.single-content .attention-c {
  border: 1px solid #c1c1c1;
  overflow: hidden;
}
.single-content .attention-c__title {
  background: #222;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 19px 32px;
  line-height: 1.6;
}
.single-content .attention-c__body {
  background: #fff;
  padding: 40px 32px;
}
.single-content .attention-c__body p + p,
.single-content .attention-c__body p + ul,
.single-content .attention-c__body ul + p {
  margin-top: 40px;
}

/* =========================
  ARTICLE FOOTER
========================= */
.single-footer {
  margin-bottom: 48px;
}
.single-footer__share {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 40px;
}
.single-footer__taxonomy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.single-footer__tax-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-footer__tax-item img {
  flex-shrink: 0;
}
.single-footer__tax-item a,
.single-footer__tax-item span {
  font-size: 13px;
  color: #f70;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-decoration: none;
}

/* =========================
  AUTHOR BOX
========================= */
.single-author {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 0;
  margin-bottom: 24px;
}
.single-author__avatar {
  grid-row: 1/3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}
.single-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-author__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: end;
  padding-bottom: 8px;
}
.single-author__badge {
  display: inline-flex;
  align-items: flex-end;
  background: #1c2e4a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.single-author__name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.single-author__bio {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  align-self: start;
  padding-top: 2px;
}

/* =========================
  ARTICLE CTA (in-article)
========================= */
.single-cta {
  position: relative;
  background: #1c1c1c;
  overflow: hidden;
  color: #fff;
  margin-bottom: 40px;
}
.single-cta__bg {
  position: absolute;
  inset: 0;
}
.single-cta__inner {
  position: relative;
  z-index: 1;
  padding: 34px 80px 48px;
}
.single-cta__title {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 18px;
}
.single-cta__img {
  width: 640px;
  height: 380px;
  margin: 0 auto 14px;
  overflow: hidden;
}
.single-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.single-cta__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  width: 640px;
}
.single-cta__text p + p {
  margin-top: 32px;
}
.single-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 415px;
  margin: 0 auto;
  background: #f70;
  color: #fff;
  text-decoration: none;
  padding: 25px 40px 25px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}
.single-cta__btn:hover {
  opacity: 0.9;
}
.single-cta__btn img {
  flex-shrink: 0;
}

/* =========================
  RELATED POSTS
========================= */
.single-related {
  max-width: 800px;
  margin: 0 auto 160px;
  padding: 0 20px;
  box-sizing: content-box;
}
.single-related__header {
  background: #222;
  padding: 15px 24px;
  margin-bottom: 24px;
}
.single-related__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
}
.single-related__grid {
  display: flex;
  gap: 24px;
}
.single-related__item {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: #333;
}
.single-related__item:hover .single-related__item-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-related__item-eyecatch {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.single-related__item-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-related__item-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
}

/* =========================
  RESPONSIVE (SP ≤768px)
========================= */
@media (max-width: 991px) {
  .single-main {
    padding-top: 58px;
  }
  .single-article__inner {
    padding: 0 20px;
  }
  .single-header {
    padding-top: 32px;
  }
  .single-header__cat {
    font-size: 13px;
  }
  .single-header__date {
    font-size: 12px;
  }
  .single-header__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .single-header__title {
    font-size: 25px;
    margin-bottom: 16px;
  }
  .single-header__eyecatch-wrap {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 16px;
  }
  .single-header__eyecatch {
    aspect-ratio: 375/214;
  }
  .single-header__supervisor {
    gap: 8px;
    margin-bottom: 16px;
  }
  .single-header__supervisor-img {
    width: 40px;
    height: 40px;
  }
  .single-header__supervisor-label {
    font-size: 10px;
  }
  .single-header__supervisor-name {
    font-size: 15px;
  }
  .single-header__share {
    justify-content: flex-start;
    margin-bottom: 32px;
  }
  .single-content {
    font-size: 15px;
    line-height: 1.7;
  }
  .single-content h2 {
    font-size: 24px;
    letter-spacing: 0.24px;
    margin: 68px 0 16px;
    line-height: 1.5;
  }
  .single-content h3 {
    font-size: 22px;
    margin: 48px 0 16px;
    padding-bottom: 21px;
  }
  .single-content h4 {
    font-size: 20px;
    margin: 48px 0 10px;
  }
  .single-content .attention-c__title {
    font-size: 18px;
  }
  .single-content .btn-link {
    font-size: 16px;
    padding: 22px 40px;
  }
  .single-content table {
    margin-bottom: 32px;
  }
  .single-content ol,
  .single-content ul {
    margin-bottom: 40px;
  }
  #toc_container p.toc_title {
    font-size: 16px;
  }
  #toc_container ul.toc_list {
    padding: 24px 28px 32px;
  }
  #toc_container ul.toc_list > li {
    font-size: 15px;
  }
  #toc_container ul.toc_list > li + li {
    margin-top: 28px;
  }
  #toc_container ul.toc_list > li .toc_number {
    font-size: 15px;
  }
  #toc_container ul.toc_list > li ul {
    padding-left: 0;
    margin-top: 13px;
    margin-left: 13px;
  }
  #toc_container ul.toc_list > li ul li {
    font-size: 14px;
  }
  #toc_container ul.toc_list > li ul li + li {
    margin-top: 0;
  }
  #toc_container ul.toc_list > li ul li .toc_number {
    font-size: 14px;
  }
  .single-footer__share {
    justify-content: flex-start;
  }
  .single-author {
    padding: 27px 0 41px;
    margin-bottom: 24px;
  }
  .single-author__bio {
    grid-column: 1/-1;
    grid-row: 3;
    margin-top: 16px;
  }
  .single-author__badge {
    padding: 2px 8px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .single-author {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .single-author__avatar {
    margin: 0 auto 14px;
  }
  .single-author__meta {
    align-self: center;
    padding-bottom: 0;
  }
  .single-author__bio {
    width: 100%;
    margin-top: 13px;
  }
}
@media (max-width: 991px) {
  .single-cta {
    margin: 0 -20px 45px;
  }
  .single-cta__inner {
    padding: 30px 20px;
  }
  .single-cta__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .single-cta__img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .single-cta__text {
    font-size: 15px;
    width: 100%;
  }
  .single-cta__btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 40px 16px 28px;
    gap: 16px;
  }
  .single-related {
    padding: 0 20px;
    margin-bottom: 120px;
  }
  .single-related__header {
    padding: 16px 24px;
  }
  .single-related__title {
    font-size: 18px;
  }
  .single-related__grid {
    flex-direction: column;
    gap: 18px;
  }
  .single-related__item {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .single-related__item-eyecatch {
    flex-shrink: 0;
    width: 140px;
    height: 84px;
  }
  .single-related__item-title {
    flex: 1;
    align-self: center;
  }
}
.reservation-cta {
  position: relative;
  padding: 73px 20px 80px;
  background-image: url("../images/cta/bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.reservation-cta__inner {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
}
.reservation-cta__heading {
  margin-bottom: 52px;
}
.reservation-cta__heading h2 {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.7;
  border: none;
  color: #fff;
}
.reservation-cta__heading h2 em {
  font-style: normal;
  color: #ffc300;
}
.reservation-cta__heading p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.7;
}
.reservation-cta__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.reservation-cta__web {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.reservation-cta__label {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1;
}
.reservation-cta__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.reservation-cta__number span:last-child {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
}
.reservation-cta__number:hover {
  opacity: 0.85;
}
.reservation-cta__phone-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/phone.svg") no-repeat center/contain;
  mask: url("../images/icon/phone.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.reservation-cta__time {
  margin: 0;
  font-size: 17px;
  line-height: 1;
}
.reservation-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 480px);
  min-height: 92px;
  background: #f70;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-top: 8px;
}
.reservation-cta__button:hover {
  background: #fff;
  color: #f70;
}
.reservation-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 2px 14px 0 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}
.reservation-cta__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  mask: url("../images/icon/arrow.svg") no-repeat center/contain;
}
@media (max-width: 991px) {
  .reservation-cta {
    padding: 48px 20px 64px;
  }
  .reservation-cta__heading {
    margin-bottom: 32px;
  }
  .reservation-cta__heading h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .reservation-cta__heading p {
    font-size: 15px;
  }
  .reservation-cta__body {
    display: block;
  }
  .reservation-cta__web {
    border-left: 0;
  }
  .reservation-cta__tel {
    margin-bottom: 24px;
  }
  .reservation-cta__label {
    font-size: 18px;
    margin-bottom: 11px;
  }
  .reservation-cta__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 335px);
    height: 71px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #f70;
    color: #f70;
    gap: 8px;
  }
  .reservation-cta__number span:last-child {
    font-size: 32px;
  }
  .reservation-cta__phone-icon {
    width: 20px;
    height: 20px;
  }
  .reservation-cta__time {
    font-size: 14px;
    margin-top: 16px;
  }
  .reservation-cta__web {
    padding-top: 32px;
    border-top: 1px solid #fff;
  }
  .reservation-cta__button {
    width: min(100%, 335px);
    min-height: 69px;
    font-size: 18px;
  }
  .reservation-cta__arrow {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
  .reservation-cta__arrow::before {
    width: 7px;
    height: 7px;
  }
}

.access-info {
  background: #fff;
  color: #333;
  border-top: 1px solid #d0d0d0;
}
.access-info__inner {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 650px;
}
.access-info__content {
  padding: 58px 58px 62px max(58px, (100vw - 1200px) / 2);
}
.access-info__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.access-info__logo h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}
.access-info__logo-mark {
  display: block;
  width: 48px;
}
.access-info__logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.access-info__address {
  margin-bottom: 28px;
}
.access-info__address p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
}
.access-info__address p:first-child {
  margin: 0;
}
.access-info__address a {
  color: inherit;
  text-decoration: none;
}
.access-info__schedule {
  margin-bottom: 34px;
  padding-top: 6px;
  border-top: 1px solid #333;
}
.access-info__schedule table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.access-info__schedule table th,
.access-info__schedule table td {
  background: #fff;
  color: #333;
  padding: 12px 8px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}
.access-info__schedule table th:first-child {
  width: 120px;
  text-align: left;
}
.access-info__schedule table td {
  color: #f0b900;
  font-size: 24px;
  line-height: 1;
}
.access-info__schedule table td:has(small) {
  position: relative;
}
.access-info__schedule table td small {
  margin-left: -4px;
  color: #333;
  font-size: 11px;
  vertical-align: super;
}
.access-info__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}
.access-info__access h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.access-info__access-block {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.access-info__access-block p {
  margin: 0 0 4px;
}
.access-info__map {
  position: relative;
  min-height: 766px;
}
.access-info__map iframe,
.access-info__map img {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  object-fit: cover;
}
@media (max-width: 991px) {
  .access-info {
    border-top: 1px solid #d0d0d0;
  }
  .access-info__inner {
    display: flex;
    flex-direction: column;
  }
  .access-info__content {
    padding: 48px 20px 16px;
  }
  .access-info__logo {
    gap: 10px;
    margin-bottom: 20px;
  }
  .access-info__logo img {
    height: 32px;
    width: 287px;
  }
  .access-info__logo h2 {
    font-size: 20px;
  }
  .access-info__logo-mark {
    width: 32px;
  }
  .access-info__address {
    margin-bottom: 20px;
  }
  .access-info__address p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
  }
  .access-info__address p:last-child {
    margin-top: 8px;
  }
  .access-info__schedule {
    overflow-x: visible;
    border-top: 2px solid #757575;
  }
  .access-info__schedule table {
    min-width: 0;
  }
  .access-info__schedule table th,
  .access-info__schedule table td {
    padding: 10px 3px;
    font-size: 12px;
  }
  .access-info__schedule table th:first-child {
    width: auto;
    white-space: nowrap;
  }
  .access-info__note {
    font-size: 13px;
    line-height: 1.8;
  }
  .access-info__access h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .access-info__access-block {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .access-info__map {
    min-height: 280px;
  }
  .access-info__map iframe,
  .access-info__map img {
    min-height: 280px;
  }
}

.books-slider-section {
  padding: 110px 0 120px;
  background: #fff;
  color: #333;
  overflow: hidden;
}
.books-slider-section__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.books-slider-section__heading {
  margin-bottom: 70px;
  padding: 0 20px;
}
.books-slider-section__en {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: #4f412a;
  font-size: 24px;
}
.books-slider-section__en::before {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  background: #4f412a;
}
.books-slider-section h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.55;
  color: #222;
  border: none;
}

.books-slider {
  overflow: visible;
  padding: 0 20px;
}
.books-slider__slide {
  height: auto;
}
.books-slider__item {
  display: block;
  color: #333;
  text-decoration: none;
}
.books-slider__image {
  margin-bottom: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}
.books-slider__image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72/1;
  object-fit: cover;
}
.books-slider__title {
  min-height: 3.2em;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  font-size: 16px;
  line-height: 1.6;
}
.books-slider__publisher {
  margin: 0;
  font-size: 13px;
  color: rgba(51, 51, 51, 0.75);
}
.books-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 100%;
  margin-top: 58px;
}
.books-slider__prev, .books-slider__next {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.books-slider__prev::before, .books-slider__next::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.books-slider__prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.books-slider__next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.books-slider__pagination {
  position: static;
  width: auto !important;
}
.books-slider__pagination.swiper-pagination-fraction {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #333;
}
.books-slider__pagination.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}
.books-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #d8d8d8;
  opacity: 1;
}
.books-slider__pagination .swiper-pagination-bullet-active {
  background: #111;
}
@media (max-width: 991px) {
  .books-slider-section {
    padding: 75px 0 85px;
  }
}

@media (max-width: 991px) {
  .books-slider-section {
    padding: 48px 0 85px;
  }
  .books-slider-section__heading {
    margin-bottom: 42px;
  }
  .books-slider-section__en {
    font-size: 16px;
    flex-direction: row-reverse;
    gap: 8px;
    margin-bottom: 18px;
  }
  .books-slider-section__en::before {
    width: 16px;
  }
  .books-slider-section h2 {
    font-size: 28px;
  }
  .books-slider-section h2 br {
    display: none;
  }
  .books-slider__title {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .books-slider__publisher {
    font-size: 9px;
  }
  .books-slider__controls {
    margin-top: 38px;
  }
}
/* =========================
  UTILITIES
========================= */
.hide-pc {
  display: none;
}

@media (max-width: 767px) {
  .hide-pc {
    display: inline;
  }
}
/* =========================
  CONTACT PAGE CONTAINER
========================= */
.contact-page {
  padding: 80px 0;
}
.contact-page__inner {
  max-width: 704px;
  margin: 0 auto;
  padding: 48px;
  box-sizing: content-box;
  background: #fafafa;
}
@media (max-width: 767px) {
  .contact-page {
    padding: 40px 0;
  }
  .contact-page__inner {
    padding: 40px 20px;
  }
}

/* =========================
  MW WP FORM (contact page)

  MW WP Form always wraps its shortcode output in .mw_wp_form, so every
  selector below is scoped under it to avoid leaking onto unrelated content.
========================= */
.mw_wp_form .form-row {
  display: flex;
  align-items: center;
}
.mw_wp_form .form-row:has(.mwform-checkbox-field), .mw_wp_form .form-row:has(textarea) {
  align-items: flex-start;
}
.mw_wp_form .form-row:has(.mwform-checkbox-field) .row-left, .mw_wp_form .form-row:has(textarea) .row-left {
  padding-top: 17px;
}
.mw_wp_form .form-row + .form-row {
  margin-top: 24px;
}
.mw_wp_form .form-row.one-column {
  display: block;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
}
.mw_wp_form .form-row.one-column a {
  color: #f70;
  text-underline-offset: 3px;
}
.mw_wp_form .row-left {
  flex: 0 0 244px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
.mw_wp_form .required {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  background: #f70;
  color: #fff;
  margin-left: auto;
}
.mw_wp_form .optional {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  margin-left: auto;
}
.mw_wp_form .memo {
  padding: 18px 0;
  display: block;
}
.mw_wp_form .row-right {
  flex: 1 1 auto;
  min-width: 0;
}
.mw_wp_form .row-right input[type=text],
.mw_wp_form .row-right input[type=email],
.mw_wp_form .row-right textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 17px 16px;
  font-size: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
}
.mw_wp_form .row-right input[type=text]::placeholder,
.mw_wp_form .row-right input[type=email]::placeholder,
.mw_wp_form .row-right textarea::placeholder {
  color: #888;
}
.mw_wp_form .row-right textarea {
  display: block;
  height: auto;
  min-height: 140px;
  resize: vertical;
}
.mw_wp_form {
  /* Checkbox items — covers both the multi-select "お問い合わせ内容" group
     (.vertical-item, one per line) and the single privacy-policy checkbox
     (.horizontal-item, inside .content-checkbox). MW WP Form always wraps
     each option in .mwform-checkbox-field > label > input + .mwform-checkbox-field-text. */
}
.mw_wp_form .mwform-checkbox-field {
  display: block;
  margin-bottom: 6px;
}
.mw_wp_form .mwform-checkbox-field + .mw_wp_form .mwform-checkbox-field {
  margin-top: 16px;
}
.mw_wp_form .mwform-checkbox-field.horizontal-item {
  display: inline-block;
}
.mw_wp_form .mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox]:checked {
  background: #4f412a;
  border-color: #4f412a;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox]:checked::after {
  opacity: 1;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox]:focus-visible {
  outline: 2px solid #4f412a;
  outline-offset: 2px;
}
.mw_wp_form .mwform-checkbox-field-text {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
.mw_wp_form {
  /* Privacy policy agreement checkbox row */
}
.mw_wp_form .content-checkbox {
  margin: 16px 0 0;
}
.mw_wp_form .content-checkbox .mwform-checkbox-field-text {
  font-size: 15px;
}
.mw_wp_form .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.mw_wp_form .input-wrapper {
  margin: 0;
}
.mw_wp_form .submit-icon {
  display: block;
  width: 368px;
  max-width: 100%;
  padding: 24px 40px;
  margin: 40px auto;
  background-color: #111;
  background-image: url("../images/icon/arrow.svg");
  background-repeat: no-repeat;
  background-position: 40px center;
  background-size: 8px 14px;
  border: 1px solid #111;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mw_wp_form .submit-icon:hover {
  background-color: #fff;
  background-image: url("../images/icon/arrow-dark.svg");
  color: #111;
}
.mw_wp_form {
  /* =========================
    RESPONSIVE (SP ≤767px)
  ========================= */
}
@media (max-width: 767px) {
  .mw_wp_form .form-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mw_wp_form .form-row + .form-row {
    margin-top: 32px;
  }
  .mw_wp_form .form-row.one-column {
    margin-top: 32px;
    text-align: left;
  }
  .mw_wp_form .row-left {
    flex: none;
    padding-right: 0;
    margin-bottom: 12px;
  }
  .mw_wp_form .input-wrapper {
    width: 100%;
  }
  .mw_wp_form .submit-icon {
    width: 100%;
  }
  .mw_wp_form .required {
    margin-left: 0;
  }
}

/* =========================
  SITE FOOTER
========================= */
.site-footer {
  background: #fff;
  color: #333;
  margin-bottom: 88px;
}
.site-footer__inner {
  margin: 0 auto;
  padding: 80px 20px 0;
  max-width: 1200px;
  box-sizing: content-box;
}
.site-footer__main-nav {
  margin-bottom: 52px;
}
.site-footer__section {
  margin-bottom: 52px;
}
.site-footer__section-heading {
  margin: 0 0 26px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.site-footer__blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
}
.site-footer__blog-list a {
  font-size: 14px;
  line-height: 2.4;
  color: #333;
  text-decoration: none;
}
.site-footer__blog-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__symptom-group {
  margin-bottom: 40px;
}
.site-footer__symptom-group:last-child {
  margin-bottom: 0;
}
.site-footer__symptom-heading {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.site-footer__symptom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.site-footer__symptom-list a {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-decoration: none;
}
.site-footer__symptom-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__accordion-arrow {
  display: none;
}
.site-footer__section-body {
  display: block;
}
.site-footer__divider {
  border: none;
  border-top: 1px solid #d6d6d6;
  margin: 0;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 36px 0 44px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #222;
}
.site-footer__symbol {
  display: block;
  width: 352px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.site-footer__clinic-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.site-footer__info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: break-word;
}
.site-footer__info a {
  color: inherit;
  text-decoration: none;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-bottom: 16px;
}
.site-footer__links a {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.site-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__copyright {
  background: #fafafa;
  padding: 14px 20px;
}
.site-footer__copyright-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}
.site-footer__copyright-inner small {
  font-size: 13px;
  color: #333;
}
@media (max-width: 991px) {
  .site-footer {
    margin-bottom: 108px;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .site-footer__section--blog {
    order: 1;
  }
  .site-footer__section--symptoms {
    order: 2;
  }
  .site-footer__main-nav {
    order: 3;
    margin-bottom: 0;
  }
  .site-footer__divider {
    order: 4;
    display: none;
  }
  .site-footer__bottom {
    order: 5;
  }
  .site-footer__section {
    margin-bottom: 0;
  }
  .site-footer__section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    margin: 0;
    padding: 0 20px;
    background: #fcfcfc;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
  }
  .site-footer__accordion-arrow {
    display: block;
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    background-color: #333;
    -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
    mask: url("../images/icon/arrow.svg") no-repeat center/contain;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }
  .site-footer__section.is-open .site-footer__accordion-arrow {
    transform: rotate(90deg);
  }
  .site-footer__section-body {
    display: none;
    padding: 20px;
  }
  .site-footer__section.is-open .site-footer__section-body {
    display: block;
  }
  .site-footer__blog-list {
    gap: 0 32px;
  }
  .site-footer__symptom-group {
    margin-bottom: 28px;
  }
  .site-footer__symptom-list {
    gap: 14px 24px;
  }
  .site-footer__bottom {
    display: block;
    padding: 28px 20px 36px;
    text-align: center;
  }
  .site-footer__logo {
    gap: 10px;
    margin-bottom: 14px;
  }
  .site-footer__symbol {
    height: 28px;
    width: auto;
  }
  .site-footer__info p {
    font-size: 11px;
  }
  .site-footer__links {
    display: flex;
    gap: 40px;
    padding-bottom: 0;
    margin-top: 24px;
    justify-content: center;
  }
  .site-footer__links a {
    font-size: 14px;
  }
}

/* =========================
  SITE FOOTER COPYRIGHT SP
========================= */
@media (max-width: 991px) {
  .site-footer__copyright-inner {
    text-align: left;
  }
  .site-footer__copyright-inner small {
    font-size: 8px;
  }
}
/* =========================
  FOOTER MAIN NAV (Section A)
========================= */
.footer-nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav-main li {
  margin: 0;
  list-style: none;
}
.footer-nav-main .sub-menu {
  display: none;
}
.footer-nav-main .footer-hidden {
  display: none;
}
.footer-nav-main a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  line-height: 1;
}
.footer-nav-main a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 991px) {
  .footer-nav-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .footer-nav-main li {
    background: #fcfcfc;
    border-bottom: 1px solid #ddd;
    list-style: none;
  }
  .footer-nav-main li:nth-child(odd) {
    border-right: 1px solid #ddd;
  }
  .footer-nav-main a {
    display: flex;
    align-items: center;
    height: 58px;
    padding: 0 19px;
    font-size: 14px;
  }
}

/* =========================
  FIXED FOOTER CTA
========================= */
.fixed-footer-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  background: #000;
  color: #fff;
}
.fixed-footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 260px 260px;
  align-items: center;
  gap: 28px;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 8px;
}
.fixed-footer-cta__text {
  min-width: 0;
}
.fixed-footer-cta__text p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.fixed-footer-cta__text p:first-child {
  font-size: 19px;
  margin-bottom: 4px;
}
.fixed-footer-cta__text span {
  color: #ffc300;
}
.fixed-footer-cta__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 16px;
  background: #f70;
  color: #fff;
  border: 1px solid #f70;
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.fixed-footer-cta__reserve:hover {
  background: #fff;
  color: #f70;
}
.fixed-footer-cta__arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  margin-right: 14px;
  flex-shrink: 0;
}
.fixed-footer-cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #f70;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}
.fixed-footer-cta__tel:hover {
  background: #f70;
}
.fixed-footer-cta__tel:hover .fixed-footer-cta__tel-number strong {
  color: #fff;
}
.fixed-footer-cta__tel:hover .fixed-footer-cta__phone-icon {
  background-color: #fff;
}
.fixed-footer-cta__tel:hover .fixed-footer-cta__tel-time {
  color: #fff;
}
.fixed-footer-cta__tel-number {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fixed-footer-cta__tel-number strong {
  font-size: 26px;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  color: #f70;
  line-height: 1;
  transition: color 0.3s ease;
}
.fixed-footer-cta__phone-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #f70;
  -webkit-mask: url("../images/icon/phone.svg") no-repeat center/contain;
  mask: url("../images/icon/phone.svg") no-repeat center/contain;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.fixed-footer-cta__tel-time {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #333;
  line-height: 1.2;
  text-align: center;
  transition: color 0.3s ease;
}
@media (max-width: 991px) {
  .fixed-footer-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text text" "reserve tel";
    gap: 8px 9px;
    box-sizing: border-box;
    padding: 8px 8px;
    min-height: unset;
    width: 100%;
  }
  .fixed-footer-cta__text {
    grid-area: text;
    min-width: 0;
    text-align: center;
    overflow-wrap: break-word;
  }
  .fixed-footer-cta__text p {
    font-size: 9px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  .fixed-footer-cta__text p:first-child {
    font-size: 14px;
    margin-bottom: 0;
  }
  .fixed-footer-cta__reserve {
    grid-area: reserve;
    min-width: 0;
    min-height: 41px;
    font-size: 13px;
    padding: 0 8px;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: break-word;
  }
  .fixed-footer-cta__arrow {
    display: none;
  }
  .fixed-footer-cta__tel {
    grid-area: tel;
    min-width: 0;
    min-height: 41px;
    padding: 0 4px;
  }
  .fixed-footer-cta__tel-number {
    gap: 4px;
  }
  .fixed-footer-cta__tel-number strong {
    font-size: 19px;
    overflow-wrap: break-word;
    word-break: break-all;
  }
  .fixed-footer-cta__phone-icon {
    width: 14px;
    height: 14px;
  }
  .fixed-footer-cta__tel-time {
    font-size: 7px;
    margin-top: 2px;
    overflow-wrap: break-word;
  }
}