/*
Theme Name: Pono Wellness Clinic
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Custom WordPress theme starter based on the provided static site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: pono-wellness-clinic
*/

/* ==============================
   Base
================================ */
html {
  font-size: 18px;
  scrollbar-gutter: stable;
  margin: auto!important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho B1","Yu Mincho", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #727171;
  background: #fff;
}

body.is-menu-open {
  overflow: hidden;
}

#wpadminbar {
  display: none;
}

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

em {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

em.ttl {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
  margin-bottom: 20px;
  line-height: 1.75;
}

p:last-of-type {
  margin-bottom: 0;
}

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

a:hover {
  opacity: .8;
}

button {
  cursor: pointer;
}

.ta-c {
  text-align: center;
}

/* ==============================
   Layout
================================ */
.inner {
  max-width: 1240px;
  margin-inline: auto;
  margin: auto;
}

.inner.min {
  max-width: 1100px;
}

.section {
  padding: 50px 0;
}

.section--bg {
  background: #f7f7f7;
}

.section-title {
  margin-bottom: 50px;
  font-size: 1.5rem;
  font-weight: 400;
}

.section-title em {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 5.5rem;
  display: block;
  line-height: 1;
}

/* ==============================
   Header
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 136px;
  padding: 15px 0;
  background: transparent;
}

.site-header__inner {
  position: relative;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  max-width: 95%;
  margin: auto;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  width: 300px;
  height: auto;
}

.site-header.is-scrolled .site-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-toggle {
  position: relative;
  z-index: 230;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #727171;
  border-radius: 9999px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav_box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 205;
}

.site-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: calc(100vw - 24px);
  height: 100vh;
  padding: 110px 0 40px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 210;
}

.site-nav.is-open {
  pointer-events: auto;
  transform: translateX(0);
  height: 100%;
}

.global-nav {
  width: 100%;
  max-width: 360px;
}

.global-nav__list {
  border-top: 1px solid #d9d9d9;
}

.global-nav__item {
  border-bottom: 1px solid #d9d9d9;
  padding: 0 20px;
}

.global-nav__row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
}

.global-nav__link {
  flex: 1;
  display: block;
  padding: 16px 0;
  color: #727171;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
}

.global-nav__toggle {
  width: 28px;
  height: 28px;
  padding: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
}

.global-nav__icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.global-nav__icon::before,
.global-nav__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #727171;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.global-nav__icon::before {
  width: 14px;
  height: 1px;
}

.global-nav__icon::after {
  width: 1px;
  height: 14px;
}

.global-nav__toggle[aria-expanded="true"] .global-nav__icon::after {
  opacity: 0;
}

.global-nav__sub {
  display: none;
  padding: 0 0 12px 14px;
}

.global-nav__sub.is-open {
  display: block;
}

.global-nav__sub li + li {
  margin-top: 6px;
}

.global-nav__sub a {
  display: block;
  padding: 6px 0;
  color: #727171;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn {
  padding: 5px 25px;
  background-color: #878F96;
  color: #FFF;
  font-size: 1.5rem;
  text-align: center;
}

.btn.reverse {
  color: #727171;
  border: 1px solid #727171;
  background-color: #FFF;
}

.nav_box .btn {
  font-size: 1rem;
  padding: 5px 15px;
}

.nav_box .btn.line {
  background: #878F96;
}

.viewmore {
  text-align: right;
}

.viewmore a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 70px;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  color: #727171;
  text-decoration: none;
  transition: color 0.3s ease;
}

.viewmore a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #727171;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: border-color 0.3s ease;
}

.viewmore a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 40px;
  height: 16px;
  transform: translateY(-50%);
  background: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='66' height='16' viewBox='0 0 66 16'><path d='M0 8H61' stroke='%237a7a7a' stroke-width='2'/><path d='M53 1L61 8L53 15' fill='none' stroke='%237a7a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  transition: transform 0.3s ease;
}

.viewmore a:hover::before {
  transform: translate(6px, -50%);
}
/* ==============================
   Main Visual
================================ */
.mv {
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}

.mv-slider,
.mv-slider__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mv-slider {
  z-index: 1;
}

.mv-slider__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  animation: mvFadeZoom 18s infinite;
}

/* 薄い白フィルター */
.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.mv-slider__item.is-01 {
  background-image: url(./assets/images/main1.jpg);
  animation-delay: 0s;
}

.mv-slider__item.is-02 {
  background-image: url(./assets/images/main2.jpg);
  animation-delay: 6s;
}

.mv-slider__item.is-03 {
  background-image: url(./assets/images/main3.jpg);
  animation-delay: 12s;
}

.mv__inner {
  text-align: center;
  position: absolute;
  z-index: 3;
  padding: 0 5%;
  width: 100%;
  left: 0;
  bottom: 10vh;
}

.mv__lead {
  margin-bottom: 16px;
  font-size: 4rem;
  color: #55575c;
  text-align: left;
}

@keyframes mvFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  45% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes mvFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  41% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 560px;
  }

  .mv::after {
    background: rgba(255, 255, 255, 0.42);
  }

  .mv__inner {
    bottom: 8vh;
  }

  .mv__lead {
    font-size: 2.8rem;
    color: #4f5156;
  }

  .mv-slider__item.is-01,
  .mv-slider__item.is-02,
  .mv-slider__item.is-03 {
    background-position: center;
  }
}
/* ==============================
   Components
================================ */
.c-button {
  display: inline-block;
  padding: 14px 28px;
  background: #727171;
  color: #fff;
  border-radius: 9999px;
  transition: opacity 0.3s;
}

.c-button:hover {
  opacity: 0.8;
}

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

.card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
}

.card__title {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list__item {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.news-list__item time {
  min-width: 110px;
  color: #666;
}

.flex {
  display: flex;
  gap: 20px;
}

.flex.middle {
  align-items: center;
}

.flex.centr {
  justify-content: center;
}

.flex.space {
  justify-content: space-between;
}

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

.relative {
  position: relative;
}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb120 {margin-bottom: 120px;}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mt120 {margin-top: 120px;}

/* ==============================
   TREATMENT
================================ */
#treatment {
  padding-top: 120px;
}

#treatment .btn {
  width: 230px;
  color: #727171;
  border: 1px solid #727171;
  background-color: #FFF;
}

#treatment .btn.active {
  background-color: #878F96;
  color: #FFF;
  border: 1px solid #878F96;
}

#treatment .treatment_box .box {
  width: calc(20% - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #F7F7F7;
  padding: 50px 25px;
  position: relative;
}

#treatment .treatment_box .box::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./assets/images/ico_link.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
  transition: .3s ease;
}

#treatment .treatment_box .box:hover:after {
  bottom: 0px;
  right: 0px;
}

#treatment .treatment_box .box .img_box {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

#treatment .treatment_box .box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#treatment .treatment_box .box p {
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
}

#symptoms_menu {
  display: none;
}

/* ==============================
   FEATURE
================================ */
#feature {
  overflow: hidden;
}

#feature .flex {
  gap: 0;
}

#feature .flex .f_box {
  width:45%;
}

#feature .flex .f_box .img_box {
  width: 120%;
  position: relative;
  padding-top: 75%;
  top: 5vw;
  z-index: -1;
  left: 0;
}

#feature .f_box.reverse .img_box {
  left: -20%;
}

#feature .flex .f_box.reverse .img_box img {
  right: auto;
  left: 0;
}

#feature .flex .f_box .img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  right: 0;
  object-fit: cover;
  object-position: top;
}

#feature .flex .t_box {
  width:55%;
}

#feature .ttl_box {
  padding: 60px 120px;
  width: 100%;
}

#feature .g_box {
  background-color: #F7F7F7;
  padding: 60px 120px;
  width: 100%;
}

#feature .inner_side {
  padding-right: calc((100vw - 1240px)/2);
}

#feature .inner_side.reverse {
  padding-right: 120px;
  padding-left: calc((100vw - 1240px)/2);
}

#feature .g_box h3 {
  font-size: 1.5rem;
}

#feature .g_box p {
  line-height: 2;
}

/* ==============================
   VIEW
================================ */
#view {
  padding-top: 120px;
}

.view-carousel {
  overflow: hidden;
}

.view-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.view-carousel__item {
  overflow: hidden;
}

.view-carousel .owl-item:nth-child(even) {
  margin-top: 70px;
}

.view-carousel__item img {
  display: block;
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.view-carousel .owl-item {
  padding-right: 16px;
}

/* ==============================
   ACCESS
================================ */
#access {
  background-color: #f7f7f7;
}

#access.page-content {
  background: none;
}

#access .g_map {
  width: 64%;
}

#access .g_map iframe {
  display: block;
  width: 100%;
}

#access .box {
  width: 36%;
}

#access .logo {
  width: 200px;
  max-width: 100%;
  display: block;
}

#access .access-info__row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

#access .access-info__row dt {
  width: 100px;
  flex-shrink: 0;
  color: #727171;
  font-size: .85rem;
}

#access .access-info__row dd {
  margin: 0;
  color: #727171;
  line-height: 1.25;
}

#access .access-info__row--tel {
  align-items: center;
}

#access .access-info__row--tel dd {
  font-size: 1.85rem;
}

#access .time-table {
  width: 100%;
  border-collapse: collapse;
}

#access .time-table thead th {
  color: #727171;
  text-align: center;
  border-right: 1px solid #D9D9D9;
  white-space: nowrap;
  font-weight: 400;
  min-width: 46px;
}

#access .time-table thead th:first-child {
  text-align: left;
  width: 90px;
}

#access .time-table tbody th,
#access .time-table tbody td {
  border-top: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
  color: #727171;
}

#access .time-table tbody th {
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}

#access .time-table tbody td {
  text-align: center;
  line-height: 1;
}

#access .time-note {
  color: #727171;
  font-size: 1rem;
}

/* ==============================
   NEWS
================================ */
#news .section-title {
  margin: 0 0 0 auto;
  width: fit-content;
  margin-bottom: 50px;
}

#news .news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 20px;
}

#news .news-tabs {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-bottom: 10px;
}

#news .news-tab {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: #727171;
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#news .news-tab:hover {
  opacity: 0.7;
}

#news .news-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #727171;
  transition: width 0.3s ease;
}

#news .news-tab.is-active::after {
  width: 100%;
}

#news .news-body {
  position: relative;
}

#news .news-more {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

#news .news-more a {
  color: #727171;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

#news .news-more a:hover {
  opacity: 0.7;
}

#news .news-panel {
  display: none;
  border-top: 1px solid #d8d8d8;
}

#news .news-panel.is-active {
  display: block;
}

#news .news-item {
  display: grid;
  grid-template-columns: 140px 120px 1fr 40px;
  align-items: center;
  column-gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid #d8d8d8;
  color: #727171;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#news .news-item:hover {
  background-color: rgba(114, 113, 113, 0.05);
}

#news .news-date {
  white-space: nowrap;
}

#news .news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 14px;
  border: 1px solid #b9b9b9;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

#news .news-arrow {
  display: inline-block;
  text-align: right;
  font-size: 1.75rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

#news .news-item:hover .news-arrow {
  transform: translateX(6px);
}

/* ==============================
   Footer
================================ */
.site-footer {
  padding: 80px;
  background-color: #f7f7f7;
}

.site-footer .logo {
  display: block;
  width: 200px;
  max-width: 100%;
}

.site-footer .l_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
  gap: 15px;
}

.site-footer .btn {
  width: 200px;
  height: 55px;
  display: inline-block;
}

.site-footer .btn.tel {
  font-size: 1.5rem;
  color: #727171;
  background-color:#D9D9D9;
  line-height: 1.5;
  white-space: nowrap;
}

.site-footer .r_box {
  max-width: 480px;
}

.site-footer .footer-nav__list {
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  flex-wrap: wrap;
}

.site-footer .footer-nav__list li {
  width: calc(50% - 30px);
  border-bottom: 1px solid #D9D9D9;
}

.site-footer__copy {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: 12px;
  margin-top: 50px;
  text-align: right;
}

/* ==============================
   Page
================================ */
.page-hero {
  padding-top: 136px;
  background-color: #F0F0F0;
  background-image: url(./assets/images/page_fv.jpg);
  background-position: center;
}

.page-hero__header {
    text-align: center;
}

.page-hero__slug {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 5.5rem;
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero__title {
  font-size: 1.5rem;
  font-weight: 400;
}

.page-ttl {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
}

.page-sec-ttl {
  width: 100%;
  background-color: #EAE9E5;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.25rem;
}

.w_box {
  background-color: #FCFCFC;
  border: 1px solid #DEDBD6;
  padding: 25px;
  margin-bottom: 30px;
}

.w_box h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.page-content .col2,
.page-content .col3,
.page-content .col4 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap:wrap;
  margin-top: 20px;
}

.page-content .col3::after {
    content: "";
    width: 32%;
    height: 0px;
    display: block;
}

.headache-image-row {
  display: flex;
  gap: 28px;
  margin: 36px 0 40px;
  align-items: stretch;
}

.headache-image-row__item {
  flex: 1;
  margin: 0;
  background: #fff;
}

.headache-image-row__item img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .headache-image-row {
    display: block;
    margin: 28px 0 32px;
  }

  .headache-image-row__item + .headache-image-row__item {
    margin-top: 20px;
  }

  .headache-image-row__item img {
    max-height: none;
  }
}

.page-content-image {
  margin: 36px 0;
  text-align: center;
}

.page-content-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 760px;
  margin: 0 auto;
  object-fit: contain;
}

.page-content-image--migraine img {
  max-width: 720px;
}

@media screen and (max-width: 767px) {
  .page-content-image {
    margin: 28px 0;
  }
}


.col2 .w_box {
  width: calc(50% - 10px);
}

.col3 .w_box {
  width: 32%;
}

.col4 .w_box {
  width: calc(25% - 10px);
}

.page-content .r_box {
  padding: 15px;
  background-color: #F3F2F0;
  margin-top: 20px;
}

.page-content .r_box ul {
  margin-top: 20px;
}

.page-content .r_box ul li {
  display: flex;
}

.page-content .r_box ul li::before {
  content:  "・";
  margin-right: 1rem;
}

.attention {
  padding: 15px;
  background-color: #F2DB91;
}

/* ==============================
   FLOW
================================ */
#flow {

}

#flow .intro {
  text-align: center;
  margin-bottom: 40px;
}

.flow-list {
  display: grid;
  gap: 24px;
}

.flow-item {
  position: relative;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid #e3e3e3;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 52px;
  bottom: -24px;
  width: 1px;
  height: 24px;
  background: #d4d4d4;
}

.flow-item__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.flow-item__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 8px 16px;
  background: #878f96;
  color: #fff;
  font-family: "Cormorant", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.flow-item__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #727171;
}

.flow-item__body p {
  line-height: 2;
}

.flow-item__note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #878f96;
}

@media (max-width: 768px) {
  .flow-list {
    gap: 18px;
  }

  .flow-item {
    padding: 22px 18px;
  }

  .flow-item:not(:last-child)::after {
    left: 34px;
    bottom: -18px;
    height: 18px;
  }

  .flow-item__head {
    display: block;
    margin-bottom: 14px;
  }

  .flow-item__step {
    margin-bottom: 10px;
    min-width: 82px;
    padding: 7px 12px;
    font-size: 0.875rem;
  }

  .flow-item__title {
    font-size: 1.25rem;
  }

  .flow-item__body p {
    line-height: 1.9;
  }

  .flow-item__note {
    font-size: 0.875rem;
  }
}

/* ==============================
   Clinic
================================ */
.greeting {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.greeting .txt_box {
  width: calc(70% - 10px);
}

.greeting .img_box {
  width: calc(30% - 10px);
}

.greeting .img_box img {
  width: 100%;
}

.career-table {
  width: 100%;
  border-top: 1px solid #d9d9d9;
  border-collapse: collapse;
}

.career-table th,
.career-table td {
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}

.career-table th {
  width: 180px;
  font-weight: 400;
  color: #727171;
}

.career-table td {
  color: #727171;
}

.clinic-info {
  padding: 0 0 100px;
}

.clinic-info__inner {
  width: min(86%, 1100px);
  margin: 0 auto;
}

.clinic-info-table {
  width: 100%;
  margin-top: 36px;
  border-collapse: collapse;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.clinic-info-table tr {
  border-bottom: 1px solid #e5e2dd;
  border-right: 1px solid #e5e2dd;
}

.clinic-info-table tr:first-child {
  border-top: 1px solid #e5e2dd;
}

.clinic-info-table th,
.clinic-info-table td {
  padding: 22px 28px;
  vertical-align: top;
}

.clinic-info-table th {
  width: 210px;
  background: #eeece8;
  color: #666;
  font-weight: 500;
  text-align: left;
}

.clinic-info-table td {
  background: #fff;
}

.clinic-info-table a {
  color: inherit;
  text-decoration: none;
}

.clinic-info-table a:hover {
  opacity: 0.7;
}

.head-injury-page {
  color: #6f6f6f;
}

.head-injury-lead {
  margin-bottom: 70px;
}

.head-injury-title {
  margin: 0 0 34px;
  color: #666;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.head-injury-page p {
  margin: 0 0 1.8em;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.head-injury-box {
  margin-top: 60px;
  padding: 42px 48px;
  border: 1px solid #e5e2dd;
  background: #fff;
}

.head-injury-box h3 {
  margin: 0 0 26px;
  padding: 16px 20px;
  background: #eeece8;
  color: #666;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.head-injury-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.head-injury-list li {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e2dd;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.head-injury-list li:first-child {
  border-top: 1px solid #e5e2dd;
}

.head-injury-list strong {
  flex: 0 0 150px;
  color: #666;
  font-weight: 600;
}

.head-injury-list span {
  flex: 1;
}

.head-injury-disease {
  margin-top: 30px;
}

.head-injury-disease dl {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid #e5e2dd;
}

.head-injury-disease dl:first-child {
  border-top: 1px solid #e5e2dd;
}

.head-injury-disease dt {
  margin-bottom: 10px;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.head-injury-disease dd {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
}

.head-injury-message {
  margin-top: 60px;
  padding: 34px 40px;
  background: #f7f6f3;
}

.head-injury-message p {
  margin-bottom: 0;
}

.head-injury-reserve {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .head-injury-title {
    font-size: 22px;
    text-align: left;
  }

  .head-injury-page p {
    font-size: 14px;
    line-height: 2;
  }

  .head-injury-box {
    margin-top: 42px;
    padding: 26px 18px;
  }

  .head-injury-box h3 {
    padding: 14px 16px;
    font-size: 17px;
    text-align: left;
  }

  .head-injury-list li {
    display: block;
    padding: 18px 0;
    font-size: 14px;
  }

  .head-injury-list strong {
    display: block;
    margin-bottom: 6px;
  }

  .head-injury-disease dt {
    font-size: 15px;
  }

  .head-injury-disease dd {
    font-size: 14px;
  }

  .head-injury-message {
    padding: 24px 18px;
  }
}

@media screen and (max-width: 767px) {
  .clinic-info {
    padding: 0 0 70px;
  }

  .clinic-info__inner {
    width: 88%;
  }

  .clinic-info-table {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.9;
  }

  .clinic-info-table th,
  .clinic-info-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .clinic-info-table th {
    background: #eeece8;
  }

  .clinic-info-table td {
    padding-bottom: 20px;
    border-left: 1px solid #e5e2dd;
  }

  .clinic-info-table tr {
    display: block;
    border-bottom: 1px solid #e5e2dd;
  }
}

.facility-slider {
  padding: 80px 0 100px;
  background: #EAE9E5;
}

.facility-slider__inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}

.facility-slider__title {
  margin: 0 0 24px;
  color: #1f2f3a;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.facility-main__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.1;
  object-fit: cover;
}

.facility-slider__caption {
  margin: 16px 0 10px;
  color: #63bdf3;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.facility-thumbs .owl-stage {
  display: flex;
}

.facility-thumbs__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 3px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

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

.facility-thumbs__item.is-current {
  border-color: #4db5f4;
  opacity: 1;
}

.facility-thumbs__item:hover {
  opacity: 1;
}

.facility-main .owl-nav,
.facility-main .owl-dots,
.facility-thumbs .owl-nav,
.facility-thumbs .owl-dots {
  display: none;
}

@media screen and (max-width: 767px) {
  .facility-slider {
    padding: 56px 0 70px;
  }

  .facility-slider__inner {
    width: 90%;
  }

  .facility-slider__title {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .facility-main__item img {
    aspect-ratio: 4 / 3;
  }

  .facility-slider__caption {
    font-size: 15px;
  }

  .facility-thumbs__item {
    border-width: 2px;
  }
}

.page-main-image {
  margin: 0 0 40px;
}

.page-main-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.table-scroll {
  margin: 32px 0;
  overflow-x: auto;
}

.medical-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.medical-table th,
.medical-table td {
  padding: 18px 20px;
  border: 1px solid #e5e2dd;
  vertical-align: top;
}

.medical-table thead th {
  background: #eeece8;
  color: #666;
  font-weight: 600;
  text-align: center;
}

.medical-table tbody th {
  width: 22%;
  background: #f7f6f3;
  color: #666;
  font-weight: 600;
  text-align: left;
}

.headache-criteria {
  margin: 32px 0;
  padding: 32px 36px;
  background: #f7f6f3;
}

.headache-criteria h4 {
  margin: 0 0 20px;
}

.headache-criteria ol {
  margin: 0;
  padding-left: 1.5em;
}

.headache-criteria li {
  margin-bottom: 10px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .page-main-image {
    margin-bottom: 28px;
  }

  .page-main-image img {
    max-height: none;
  }

  .headache-criteria {
    padding: 24px 18px;
  }

  .medical-table {
    font-size: 13px;
  }

  .medical-table th,
  .medical-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .career-table,
  .career-table tbody,
  .career-table tr,
  .career-table th,
  .career-table td {
    display: block;
    width: 100%;
  }

  .career-table tr {
    padding: 14px 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .career-table th,
  .career-table td {
    padding: 0;
    border: 0;
  }

  .career-table th {
    margin-bottom: 8px;
  }
}

.breadcrumb {
    padding: 5px 5%;
    font-size: 12px;
    background: #EAE9E5;
}

/* ==============================
   FAQ
================================ */
.faq-list {
  border-top: 1px solid #d9d9d9;
}

.faq-item {
  border-bottom: 1px solid #d9d9d9;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: 0;
  text-align: left;
  color: #727171;
}

.faq-question__label,
.faq-answer__label {
  flex-shrink: 0;
  font-family: "Cormorant", serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #878F96;
}

.faq-question__text {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.8;
}

.faq-question__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #727171;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.faq-question__icon::before {
  width: 14px;
  height: 1px;
}

.faq-question__icon::after {
  width: 1px;
  height: 14px;
}

.faq-question[aria-expanded="true"] .faq-question__icon::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

.faq-answer__inner {
  display: flex;
  gap: 20px;
}

.faq-answer__text {
  flex: 1;
}

.faq-answer__text p {
  line-height: 1.5;
  font-size: .85rem;
}

@media (max-width: 768px) {
  .faq-question {
    gap: 14px;
    padding: 18px 0;
    align-items: flex-start;
  }

  .faq-question__label,
  .faq-answer__label {
    font-size: 1.375rem;
    margin-top: 2px;
  }

  .faq-question__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-answer {
    padding: 0 0 18px;
  }

  .faq-answer__inner {
    gap: 14px;
  }
}

/* ==============================
   SINGLE
================================ */
.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.single-meta__date {
  color: #727171;
  line-height: 1.6;
}

.single-meta__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-meta__cats li {
  min-height: 32px;
  padding: 4px 12px;
  border: 1px solid #b9b9b9;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #727171;
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content .entry-content {
  line-height: 2;
}

.single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #d9d9d9;
}

.single-nav a {
  color: #727171;
  text-decoration: none;
}

.single-nav__archive {
  text-align: center;
}

@media (max-width: 768px) {
  .single-meta {
    margin-bottom: 16px;
  }

  .single-meta__date {
    font-size: 0.875rem;
  }

  .single-meta__cats li {
    min-height: 28px;
    padding: 3px 10px;
    font-size: 0.875rem;
  }

  .single-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }

  .single-nav__archive {
    text-align: left;
  }
}
/* ==============================
   NEWS / BLOG ARCHIVE
================================ */
.news-archive .news-empty {
  padding: 24px 8px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  color: #727171;
  line-height: 1.8;
}

.news-archive .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}

.news-archive .page-numbers a,
.news-archive .page-numbers span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  color: #727171;
  text-decoration: none;
}

.news-archive .page-numbers .current {
  background: #878F96;
  border-color: #878F96;
  color: #fff;
}

@media (max-width: 768px) {
  .news-archive .page-numbers {
    margin-top: 30px;
    gap: 8px;
  }

  .news-archive .page-numbers a,
  .news-archive .page-numbers span {
    min-width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
}

/* ==============================
   BEAUTY
================================ */
.beauty-intro .entry-content {
  text-align: center;
}

.beauty-lead {
  text-align: center;
  margin-top: -10px;
}

.beauty-concern-nav .col4 {
  row-gap: 20px;
}

.beauty-nav-card {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.beauty-nav-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.beauty-nav-card h4 {
  text-align: center;
}

.beauty-nav-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.beauty-menu .page-sec-ttl {
  scroll-margin-top: 140px;
}

.beauty-cta__box {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #EAE9E5;
  text-align: center;
}

.beauty-cta__title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 400;
}

.beauty-cta__text {
  margin-bottom: 24px;
}

.beauty-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.beauty-cta__buttons .btn.tel {
  color: #727171;
  background-color: #FFF;
}

/* ==============================
   BEAUTY CONCERN NAV
================================ */
.beauty-concern-nav .section-title {
  margin-bottom: 36px;
}

.beauty-concern-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.beauty-concern-card {
  display: block;
  width: calc(25% - 10.5px);
  background: #fcfcfc;
  border: 1px solid #efefef;
  padding: 18px 18px 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.beauty-concern-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.beauty-concern-card__image {
  aspect-ratio: 1.55 / 1;
  background: #d9d9d9;
  overflow: hidden;
  margin-bottom: 16px;
}

.beauty-concern-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.beauty-concern-card__text {
  margin-bottom: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.page-content#menu .section-title {
  text-align: center;
}

@media (max-width: 768px) {
  .beauty-concern-nav .section-title {
    margin-bottom: 24px;
  }

  .beauty-concern-grid {
    gap: 10px;
  }

  .beauty-concern-card {
    width: calc(50% - 5px);
    padding: 10px 10px 14px;
  }

  .beauty-concern-card__image {
    margin-bottom: 10px;
  }

  .beauty-concern-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .beauty-lead {
    margin-top: 0;
    text-align: left;
  }

  .beauty-nav-card h4 {
    text-align: left;
  }

  .beauty-cta__box {
    padding: 24px 20px;
  }

  .beauty-cta__title {
    font-size: 1.5rem;
  }

  .beauty-cta__buttons {
    gap: 10px;
  }

  .beauty-cta__buttons .btn {
    width: 100%;
    max-width: 240px;
  }
}

/* ==============================
   BEAUTY MENU
================================ */
.ta-c {
  text-align: center;
}

.beauty-menu .section-title {
  margin-bottom: 28px;
}

.beauty-menu .entry-content > .ta-c {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.beauty-menu-group {
  background: #F7F7F7;
  padding: 24px 22px 28px;
}

.beauty-menu-group__hero {
  margin-bottom: 18px;
}
.beauty-menu-group__hero {
  margin: 0 -42px 66px;
}

.beauty-menu-group__hero-inner {
  min-height: 220px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;

  text-align: left;
  border: 0;
  box-shadow: none;
}

.beauty-menu-group__title {
  margin: 0;
  padding: 0;
  background: transparent !important;
  color: #727171;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.beauty-menu-group__lead {
  margin: 0;
  padding: 0;
  background: transparent !important;
  color: #727171;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: left;
}

.beauty-menu-block + .beauty-menu-block {
  margin-top: 40px;
}

.beauty-menu .page-sec-ttl {
  margin-bottom: 0;
}

.beauty-menu .col2 {
  align-items: stretch;
}

.beauty-menu .col2 .w_box {
  margin-bottom: 0;
}

.beauty-menu .w_box > h4 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.beauty-menu .w_box p {
  line-height: 2;
}

.beauty-menu .r_box {
  margin-top: 24px;
}

.beauty-menu .r_box p {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .beauty-menu-group__hero {
    margin: 0 -16px 36px;
  }

  .beauty-menu-group__hero-inner {
    min-height: 150px;
    padding: 28px 18px;
    display: block;
    text-align: center;
  }

  .beauty-menu-group__title {
    margin-bottom: 14px;
    font-size: 1.5rem;
    white-space: normal;
    text-align: center;
  }

  .beauty-menu-group__lead {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: center;
  }
}

.beauty-menu-group--diet .beauty-menu-group__hero-inner {
  /* background-image: url("../images/beauty-diet.jpg"); */
}

.beauty-menu-card__lead {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.beauty-menu-mini-card {
  background-color: #f3f2f0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.beauty-menu-mini-card h5 {
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.beauty-menu-mini-card p {
  margin-bottom: 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .beauty-menu-card__lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .beauty-menu-mini-card {
    min-height: auto;
  }

  .beauty-menu-mini-card h5 {
    margin-bottom: 14px;
    font-size: 1.25rem;
  }
}

.beauty-menu-group {
  padding: 24px 22px 28px;
}

.beauty-menu-group__hero-inner {
  min-height: 180px;
  border-radius: 14px;
  background-color: #d9d9d9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 0px;
}

.beauty-menu-group__title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 400;
  color: #727171;
  text-align: center;
}

.beauty-menu-group--diet .beauty-menu-group__hero-inner {
  /* background-image: url("../images/beauty-diet.jpg"); */
}

.beauty-menu-card__lead {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.beauty-menu-mini-grid {
  display: flex;
  gap: 10px;
}

.beauty-menu-mini-card {
  width: calc(50% - 5px);
  padding: 20px;
  background-color: #f3f2f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.beauty-menu-mini-card h5 {
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.beauty-menu-mini-card p {
  margin-bottom: 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .beauty-menu-card__lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .beauty-menu-mini-grid {
    display: block;
  }

  .beauty-menu-mini-card {
    width: 100%;
    min-height: auto;
  }

  .beauty-menu-mini-card + .beauty-menu-mini-card {
    margin-top: 10px;
  }

  .beauty-menu-mini-card h5 {
    margin-bottom: 14px;
    font-size: 1.25rem;
  }
}

.beauty-menu-group--innercare .beauty-menu-group__hero-inner {
  /* background-image: url("../images/beauty-innercare.jpg"); */
}

.beauty-menu-intro {
  max-width: 1080px;
  margin: 0 auto;
}

.beauty-menu-intro p {
  font-size: 1.125rem;
  line-height: 2;
}

.beauty-menu-caption {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.9;
}

.beauty-menu-mini-grid--2,
.beauty-menu-mini-grid--3 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.beauty-menu-mini-grid--2 .beauty-menu-mini-card {
  width: calc(50% - 8px);
}

.beauty-menu-mini-grid--3 .beauty-menu-mini-card {
  width: calc(33.333% - 10.666px);
}

.beauty-menu-group--innercare .beauty-menu-mini-card {
  min-height: 260px;
  padding: 28px 24px;
  background-color: #fff;
  border: 1px solid #dedbd6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.beauty-menu-group--innercare .beauty-menu-mini-card h5 {
  margin-bottom: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.beauty-menu-group--innercare .beauty-menu-mini-card p {
  margin-bottom: 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .beauty-menu-intro p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .beauty-menu-caption {
    margin-top: 10px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .beauty-menu-mini-grid--2,
  .beauty-menu-mini-grid--3 {
    display: block;
  }

  .beauty-menu-mini-grid--2 .beauty-menu-mini-card,
  .beauty-menu-mini-grid--3 .beauty-menu-mini-card {
    width: 100%;
  }

  .beauty-menu-mini-grid--2 .beauty-menu-mini-card + .beauty-menu-mini-card,
  .beauty-menu-mini-grid--3 .beauty-menu-mini-card + .beauty-menu-mini-card {
    margin-top: 12px;
  }

  .beauty-menu-group--innercare .beauty-menu-mini-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .beauty-menu-group--innercare .beauty-menu-mini-card h5 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    text-align: left;
  }
}

/* アートメイク */
.beauty-menu-group--artmake .beauty-menu-group__hero-inner {
  /* background-image: url("../images/beauty-artmake.jpg"); */
}

.beauty-menu-group--artmake .beauty-menu-card--wide {
  margin-bottom: 0;
}

.beauty-menu-group--artmake .beauty-menu-card--wide p {
  line-height: 2.2;
}

.beauty-menu-group--artmake .beauty-menu-card--wide p + p {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .beauty-menu-group--artmake .beauty-menu-card--wide p {
    line-height: 1.95;
  }

  .beauty-menu-group--artmake .beauty-menu-card--wide p + p {
    margin-top: 18px;
  }
}

/* ==============================
   404
================================ */
.error-404__box {
  background: #fcfcfc;
  border: 1px solid #dedbd6;
  padding: 60px 40px;
  text-align: center;
}

.error-404__lead {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.error-404__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.error-404__buttons .btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .error-404__box {
    padding: 32px 20px;
  }

  .error-404__lead {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .error-404__buttons {
    margin-top: 28px;
    gap: 10px;
  }

  .error-404__buttons .btn {
    width: 100%;
    min-width: 0;
  }
}
/* PCでは非表示 */
.sp-fixed-cta {
  display: none;
}

.pc {display: block!important;}
.sp {display: none!important;}

/* ==============================
   Responsive
================================ */
@media (max-width: 1280px) {
  .inner {
    max-width: 1100px;
  }

  #feature .g_box {
    padding: 60px;
  }

  #feature .ttl_box {
    padding: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .inner {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .pc {display: none!important;}
  .sp {display: block!important;}

  .section,
  #treatment,
  #view {
    padding: 40px 0;
  }

  .btn {
    padding: 5px 15px;
  }

  .inner {
    padding: 0 5.625vw;
  }

  .nav_box {
    gap: 20px;
  }

  .site-logo {
    width: 160px;
  }

  .site-header {
    height: 80px;
    padding: 15px 5.65vw;
  }

  .site-header__inner {
    max-width: inherit;
    min-height: inherit;
  }

  .global-nav {
    max-width: 240px;
  }

  .global-nav__link {
    font-size: .85rem;
  }

  .global-nav__sub a {
    font-size: .8rem;
  }

  .nav_box .btn {
    font-size: 14px;
  }

  .mv {
    padding: 88px 0;
  }

  .mv__lead {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  #treatment .btn {
    max-width: 230px;
    width: calc(50% - 10px);
    font-size: 1rem;
  }

  #treatment .tab {
    width: 100%;
  }

  #treatment .treatment_box .box {
    width: calc(50% - 10px);
    height: auto;
    padding: 15px;
  }

  #feature {
    padding: 40px 5.625vw;
  }

  #feature .flex {
    flex-wrap: wrap;
  }

  #feature .flex .f_box,
  #feature .flex .t_box {
    width: 100%;
  }

  #feature .flex .f_box .img_box {
    width: 100%;
    position: inherit;
  }

  #feature .g_box,
  #feature .inner_side.reverse {
    padding: 40px 20px;
  }

  #feature .flex .f_box.reverse {
    order: -1;
  }

  #feature .f_box.reverse .img_box {
    left: auto;
  }

  #feature .g_box h3 {
    font-size: 1.25rem;
  }

  .view-carousel .owl-item:nth-child(even) {
    margin-top: 0px;
  }

  #access .flex {
    flex-wrap: wrap;
  }

  #access .g_map,
  #access .box {
    width: 100%;
  }

  #access .g_map iframe {
    height: 360px;
  }

  .mt120 {
    margin-top: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .news-list__item {
    flex-direction: column;
    gap: 8px;
  }

  .section-title em {
    font-size: 2.5rem;
  }

  #news .news-head {
    gap: 24px;
    margin-bottom: 28px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  #news .section-title {
    margin: 0;
  }

  #news .news-tabs {
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  #news .news-tab {
    font-size: 1rem;
  }

  #news .news-more {
    margin-bottom: 10px;
    width: 100%;
    justify-content: flex-end;
  }

  #news .news-more a {
    font-size: 1rem;
  }

  #news .news-item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 18px 0;
  }

  #news .news-date {
    order: 1;
    font-size: 0.95rem;
  }

  #news .news-category {
    order: 2;
    width: fit-content;
    min-height: 30px;
    font-size: 0.875rem;
  }

  #news .news-title {
    order: 3;
    font-size: 1rem;
    line-height: 1.7;
  }

  #news .news-arrow {
    order: 4;
    text-align: left;
    font-size: 1.25rem;
    display: none;
  }


  .site-footer .l_box,
  .site-footer .r_box {
    width: 100%;
    max-width: inherit;
  }

  .site-footer .footer-nav__list {
    margin-top: 40px;
  }

  .site-footer {
    padding: 40px 0;
    padding-bottom: 120px;
  }

  #access .time-table thead th {
    min-width: inherit;
  }

  .page-hero {
    padding-top: 120px;
  }

  .page-hero__slug {
    font-size: 2.5rem;
  }

  .page-hero__title {
    font-size: 1.25rem;
  }

  .page-ttl {
    font-size: 1.5rem;
  }

  .w_box {
    padding: 15px;
  }

  .w_box h4 {
    font-size: 1.25rem;
  }

  .page-content .col2, .page-content .col3, .page-content .col4 {
    gap: 0;
  }

  .col2 .w_box,
  .col3 .w_box,
  .col4 .w_box {
    width: 100%;
    gap: 0;
  }

  .sp-fixed-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    width: 100%;
    height: 68px;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .sp-fixed-cta__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-align: center;
  }

  .sp-fixed-cta__item + .sp-fixed-cta__item {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }

  .sp-fixed-cta__icon {
    display: block;
    width: 22px;
    height: 22px;
  }

  .sp-fixed-cta__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  .sp-fixed-cta__label {
    display: block;
    white-space: nowrap;
  }

 .sp-fixed-cta__item--tel {
   background: #D9D9D9;
   color: #727171;
 }

 .sp-fixed-cta__item--web {
   background: #878F96;
 }

 .sp-fixed-cta__item--line {
   background: #878F96;
 }

 .sp-fixed-cta__label {
   display: block;
 }

}

/* ==============================
   BEAUTY PAGE ADDITIONS - CLEANED
   style.css の末尾にある美容ページ追加分を、このブロックに差し替え
================================ */

/* --------------------------------
   Base
-------------------------------- */
.beauty-page {
  background: #fff;
}

.beauty-page .page-content {
  position: relative;
}

/* --------------------------------
   First View
-------------------------------- */
.beauty-fv {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 136px 0 0;
  background: #f7f7f7;
}

.beauty-fv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 82px;
  background: #fff;
}

.beauty-fv__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  min-height: 424px;
  margin: 0 auto;
}

.beauty-fv__text {
  position: relative;
  z-index: 3;
  width: 48%;
  padding-top: 80px;
  padding-left: 36px;
}

.beauty-fv__en {
  margin: 0 0 8px;
  color: #727171;
  font-family: "Cormorant", serif;
  font-size: 5.1rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.beauty-fv__ja {
  margin: 0 0 76px;
  color: #727171;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.beauty-fv__lead {
  width: 510px;
  max-width: 100%;
  margin: 0;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.beauty-fv__visual {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2;
  width: 70%;
  height: 454px;
  pointer-events: none;
}

.beauty-fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 410px;
  height: 355px;
  overflow: hidden;
}

.beauty-fv__bg img,
.beauty-fv__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beauty-fv__photo {
  position: absolute;
  right: 210px;
  bottom: 0;
  z-index: 2;
  width: 520px;
  height: 410px;
  overflow: hidden;
}

/* --------------------------------
   Intro
-------------------------------- */
.beauty-intro-section {
  padding: 90px 0 100px;
  background: #fff;
}

.beauty-intro-layout__title {
  margin: 0 0 60px;
  color: #727171;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: center;
}

.beauty-intro-layout__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.beauty-intro-layout__image {
  width: 44%;
  margin: 0;
  flex-shrink: 0;
}

.beauty-intro-layout__image img {
  display: block;
  width: 100%;
  aspect-ratio: 520 / 405;
  object-fit: cover;
}

.beauty-intro-layout__text {
  flex: 1;
  padding-top: 6px;
}

.beauty-intro-layout__text p {
  margin-bottom: 44px;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2.35;
  letter-spacing: 0.08em;
}

.beauty-intro-layout__text p:last-child {
  margin-bottom: 0;
}

/* --------------------------------
   Concern Navi
-------------------------------- */
.beauty-concern-nav {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background: #fff;
}

.beauty-concern-nav__inner {
  width: 100%;
  margin: 0 auto;
}

.beauty-concern-nav__head {
  width: min(90%, 1100px);
  margin: 0 auto 72px;
}

.beauty-concern-nav__title {
  margin: 0;
  color: #727171;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.08em;
}

.beauty-concern-nav__title span {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant", serif;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.beauty-concern-nav__stage {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding-top: 0;
}

.beauty-concern-nav__bg {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 0;
  width: 100%;
  height: 470px;
  background-image: url("./assets/images/beauty/bg_beauty1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.beauty-concern-nav__row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
  width: min(90%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.beauty-concern-nav__row--top,
.beauty-concern-nav__row--middle {
  margin-bottom: 34px;
}

.beauty-concern-nav__card {
  position: relative;
  display: flex;
  flex: 0 0 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 190px;
  padding: 26px 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dedbd6;
  color: #727171;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
}

.beauty-concern-nav__card::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 15px;
  height: 15px;
  border-right: 2px solid #727171;
  border-bottom: 2px solid #727171;
}

.beauty-concern-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 86px;
  margin-bottom: 22px;
}

.beauty-concern-nav__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.beauty-concern-nav__text {
  display: block;
  margin: 0;
  color: #727171;
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

/* --------------------------------
   Menu Common
-------------------------------- */
.beauty-menu {
  padding: 90px 0 110px;
  background: #fff;
}

.beauty-menu .inner {
  max-width: 1160px;
}

.beauty-menu-head {
  margin: 0 auto 72px;
  text-align: center;
}

.beauty-menu-head__title {
  margin: 0 0 42px;
  color: #727171;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.beauty-menu-head__title span {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant", serif;
  font-size: 5.1rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.beauty-menu-head__lead {
  max-width: 850px;
  margin: 0 auto;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.beauty-menu-group {
  margin: 0 auto;
  padding: 0 42px 42px;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid #e8e3dd;
}

.beauty-menu-group + .beauty-menu-group {
  margin-top: 70px;
}

.beauty-menu-group__hero {
  width: auto;
  margin: 0 -42px 66px;
  border: 0;
}

.beauty-menu-group__hero-inner {
  width: 100%;
  min-height: 220px;
  padding: 58px 24px 46px;
  background-image: url("./assets/images/beauty/bg_beauty2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  filter: none;
  backdrop-filter: none;
  opacity: 1;
}

.beauty-menu-group__hero-inner::before,
.beauty-menu-group__hero-inner::after {
  content: none;
  display: none;
}

.beauty-menu-group--dermatology .beauty-menu-group__hero-inner {
  min-height: 205px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty3.png");
  display: flex;
  align-items: center;
  justify-content: center;
}

.beauty-menu-group--injection .beauty-menu-group__hero-inner {
  min-height: 205px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty4.png");
  display: flex;
  align-items: center;
  justify-content: center;
}

.beauty-menu-group--diet .beauty-menu-group__hero-inner {
  background-image: url("./assets/images/beauty/bg_beauty5.png");
}

.beauty-menu-group--innercare .beauty-menu-group__hero-inner {
  background-image: url("./assets/images/beauty/bg_beauty3.png");
}

.beauty-menu-group--artmake .beauty-menu-group__hero-inner {
  background-image: url("./assets/images/beauty/bg_beauty7.png");
}

.beauty-menu-group__title {
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  color: #727171;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
  filter: none;
  opacity: 1;
}

.beauty-menu-group--dermatology .beauty-menu-group__title,
.beauty-menu-group--injection .beauty-menu-group__title {
  margin-bottom: 0;
}

.beauty-menu-group__lead {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #727171;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.beauty-treatment-section {
  padding: 0;
}

.beauty-treatment-section + .beauty-treatment-section {
  margin-top: 36px;
}

.beauty-treatment-section__title {
  margin: 0 0 28px;
  padding: 13px 20px;
  background: #878f96;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

/* --------------------------------
   Treatment Cards
-------------------------------- */
.beauty-treatment-card {
  padding: 46px 34px 38px;
  background: #fff;
  border: 1px solid #dedbd6;
}

.beauty-treatment-card + .beauty-treatment-card,
.beauty-treatment-grid + .beauty-treatment-card,
.beauty-treatment-section .beauty-treatment-card + .beauty-treatment-card {
  margin-top: 28px;
}

.beauty-treatment-card--wide {
  width: 100%;
}

.beauty-treatment-card__title {
  margin: 0 0 30px;
  color: #727171;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.beauty-treatment-card__text {
  margin: 0 0 32px;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.beauty-treatment-card__images {
  display: flex;
  gap: 0;
  margin: 0 0 28px;
}

.beauty-treatment-card__images figure {
  flex: 1;
  margin: 0;
}

.beauty-treatment-card__images img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.beauty-treatment-card__bottom {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.beauty-treatment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  align-items: baseline;
}

.beauty-treatment-grid--2 .beauty-treatment-card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 14px);
}

.beauty-treatment-grid--2 .beauty-treatment-info {
  margin-top: auto;
}

.beauty-treatment-grid--2 .beauty-treatment-recommend {
  margin-top: 24px;
}

.beauty-treatment-card__split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.beauty-treatment-card__main {
  min-width: 0;
}

.beauty-treatment-card__image {
  margin: 0 0 24px;
}

.beauty-treatment-card__image img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}

.beauty-treatment-card__image--wide {
  margin-bottom: 28px;
}

.beauty-treatment-card__image--wide img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.beauty-treatment-card__image--hyaluronic {
  margin: 0 auto 30px;
  text-align: center;
}

.beauty-treatment-card__image--hyaluronic img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.beauty-treatment-info table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  color: #727171;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.beauty-treatment-info th,
.beauty-treatment-info td {
  padding: 9px 14px;
  border: 1px solid #d8d8d8;
  vertical-align: top;
  text-align: left;
}

.beauty-treatment-info th {
  width: 150px;
  background: #f3f3f3;
  font-weight: 400;
  white-space: nowrap;
}

.beauty-treatment-info--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.beauty-treatment-info--two table {
  width: 100%;
  border-collapse: collapse;
}

.beauty-treatment-recommend {
  padding: 28px 28px 24px;
  background: #f7f7f7;
  color: #727171;
}

.beauty-treatment-recommend h6 {
  margin: 0 0 22px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.beauty-treatment-recommend ul {
  margin: 0;
  padding-left: 1.2em;
}

.beauty-treatment-recommend li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.beauty-treatment-recommend li:last-child {
  margin-bottom: 0;
}

.beauty-product-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  margin: 34px 0 28px;
  padding: 24px 28px;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.beauty-product-box__image {
  margin: 0;
}

.beauty-product-box__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.beauty-product-box__text h6 {
  margin: 0 0 16px;
  color: #727171;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.beauty-product-box__text p {
  margin: 0 0 18px;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.beauty-product-box__text p:last-child {
  margin-bottom: 0;
}

/* --------------------------------
   CTA
-------------------------------- */
.beauty-cta__box {
  background-image: linear-gradient(rgba(234, 233, 229, 0.88), rgba(234, 233, 229, 0.92)), url("./assets/images/beauty/bg_beauty5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* --------------------------------
   Responsive
-------------------------------- */
@media (max-width: 1280px) {
  .beauty-fv__inner {
    width: min(100%, 1100px);
  }

  .beauty-fv__text {
    padding-left: 0;
  }

  .beauty-fv__en {
    font-size: 4.4rem;
  }

  .beauty-fv__photo {
    right: 150px;
    width: 500px;
  }

  .beauty-fv__bg {
    width: 390px;
  }
}

@media (max-width: 1100px) {
  .beauty-fv {
    min-height: 520px;
  }

  .beauty-fv__inner {
    width: min(90%, 900px);
  }

  .beauty-fv__text {
    width: 52%;
    padding-top: 72px;
  }

  .beauty-fv__en {
    font-size: 3.9rem;
  }

  .beauty-fv__visual {
    width: 68%;
  }

  .beauty-fv__photo {
    right: 90px;
    width: 450px;
    height: 360px;
  }

  .beauty-fv__bg {
    width: 340px;
    height: 310px;
  }

  .beauty-intro-layout__body {
    gap: 44px;
  }

  .beauty-intro-layout__title {
    font-size: 1.75rem;
  }

  .beauty-intro-layout__image {
    width: 43%;
  }

  .beauty-concern-nav__title span {
    font-size: 4.5rem;
  }

  .beauty-concern-nav__row {
    gap: 24px;
  }

  .beauty-concern-nav__card {
    flex-basis: 200px;
    width: 200px;
    height: 176px;
  }
}

@media (max-width: 768px) {
  .beauty-fv {
    min-height: auto;
    padding: 100px 0 0;
  }

  .beauty-fv::after {
    height: 42px;
  }

  .beauty-fv__inner {
    width: 100%;
    min-height: auto;
    padding: 0 5.625vw 42px;
  }

  .beauty-fv__text {
    width: 100%;
    padding: 26px 0 0;
  }

  .beauty-fv__en {
    font-size: 2.8rem;
    line-height: 1;
  }

  .beauty-fv__ja {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .beauty-fv__lead {
    width: 100%;
    font-size: 0.85rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .beauty-fv__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-top: 28px;
  }

  .beauty-fv__bg {
    position: absolute;
    top: -18px;
    right: -5.625vw;
    width: 58%;
    height: 55%;
  }

  .beauty-fv__photo {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 86%;
    height: auto;
    margin-left: auto;
    aspect-ratio: 520 / 410;
  }

  .beauty-intro-section {
    padding: 56px 0 64px;
  }

  .beauty-intro-layout__title {
    margin-bottom: 32px;
    font-size: 1.35rem;
    text-align: left;
    letter-spacing: 0.08em;
  }

  .beauty-intro-layout__body,
  .beauty-treatment-grid,
  .beauty-treatment-card__split,
  .beauty-treatment-card__bottom,
  .beauty-treatment-info--two {
    display: block;
  }

  .beauty-intro-layout__image {
    width: 100%;
    margin-bottom: 28px;
  }

  .beauty-intro-layout__text p {
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .beauty-concern-nav {
    padding: 56px 0 70px;
  }

  .beauty-concern-nav__head {
    margin-bottom: 34px;
  }

  .beauty-concern-nav__title span {
    font-size: 2.8rem;
  }

  .beauty-concern-nav__stage {
    min-height: auto;
    padding: 34px 0;
  }

  .beauty-concern-nav__bg {
    top: 0;
    height: 100%;
  }

  .beauty-concern-nav__row {
    flex-wrap: wrap;
    gap: 12px;
    width: 90%;
    margin-bottom: 12px;
  }

  .beauty-concern-nav__row:last-child {
    margin-bottom: 0;
  }

  .beauty-concern-nav__card {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    height: 150px;
    padding: 18px 10px 16px;
  }

  .beauty-concern-nav__icon {
    width: 70px;
    height: 60px;
    margin-bottom: 14px;
  }

  .beauty-concern-nav__text {
    font-size: 0.78rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }

  .beauty-menu {
    padding: 56px 0 70px;
  }

  .beauty-menu-head {
    margin-bottom: 42px;
  }

  .beauty-menu-head__title {
    margin-bottom: 26px;
    text-align: left;
  }

  .beauty-menu-head__title span {
    font-size: 2.8rem;
  }

  .beauty-menu-head__lead {
    font-size: 0.9rem;
    line-height: 2;
    text-align: left;
  }

  .beauty-menu-group {
    padding: 0 0px 28px;
  }

  .beauty-menu-group + .beauty-menu-group {
    margin-top: 44px;
  }

  .beauty-menu-group__hero {
    margin: 0 -16px 36px;
  }

  .beauty-menu-group__hero-inner,
  .beauty-menu-group--dermatology .beauty-menu-group__hero-inner,
  .beauty-menu-group--injection .beauty-menu-group__hero-inner {
    min-height: 150px;
    padding: 28px 18px;
  }

  .beauty-menu-group__title {
    margin-bottom: 18px;
    font-size: 1.5rem;
  }

  .beauty-menu-group--dermatology .beauty-menu-group__title,
  .beauty-menu-group--injection .beauty-menu-group__title {
    margin-bottom: 0;
  }

  .beauty-menu-group__lead {
    font-size: 0.95rem;
  }

  .beauty-treatment-section__title {
    font-size: 1.15rem;
    margin: 0;
  }

  .beauty-treatment-card {
    padding: 28px 18px;
  }

  .beauty-treatment-card__title {
    font-size: 1.25rem;
  }

  .beauty-treatment-card__images {
    display: block;
  }

  .beauty-treatment-card__images figure + figure {
    margin-top: 12px;
  }

  .beauty-treatment-card__images img,
  .beauty-treatment-card__image img {
    height: auto;
    max-width: 100%;
  }

  .beauty-treatment-grid {
    margin-top: 20px;
  }

  .beauty-treatment-grid--2 .beauty-treatment-card {
    width: 100%;
  }

  .beauty-treatment-grid--2 .beauty-treatment-card + .beauty-treatment-card,
  .beauty-treatment-card__split .beauty-treatment-info,
  .beauty-treatment-recommend,
  .beauty-product-box__image {
    margin-top: 24px;
  }

  .beauty-treatment-recommend {
    padding: 22px 18px;
  }

  .beauty-treatment-info table,
  .beauty-treatment-info tbody,
  .beauty-treatment-info tr,
  .beauty-treatment-info th,
  .beauty-treatment-info td {
    display: block;
    width: 100%;
  }

  .beauty-treatment-info tr {
    border: 1px solid #d8d8d8;
    border-bottom: 0;
  }

  .beauty-treatment-info tr:last-child {
    border-bottom: 1px solid #d8d8d8;
  }

  .beauty-treatment-info th,
  .beauty-treatment-info td {
    border: 0;
  }

  .beauty-treatment-info th {
    padding-bottom: 4px;
  }

  .beauty-treatment-info td {
    padding-top: 0;
  }

  .beauty-product-box {
    display: block;
    padding: 20px 18px;
  }
}

/* ==============================
   BEAUTY BOTOX / SKIN BOOSTER
================================ */
.beauty-treatment-card__image--botox {
  margin: 0 auto 30px;
  text-align: center;
}

.beauty-treatment-card__image--botox img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.beauty-product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 28px;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.beauty-product-mini {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
}

.beauty-product-mini + .beauty-product-mini {
  border-left: 1px solid #d8d8d8;
}

.beauty-product-mini__image {
  margin: 0;
}

.beauty-product-mini__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.beauty-product-mini__text h6 {
  margin: 0 0 8px;
  color: #727171;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.beauty-product-mini__text p {
  margin: 0;
  color: #727171;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .beauty-product-row {
    display: block;
  }

  .beauty-product-mini + .beauty-product-mini {
    border-left: 0;
    border-top: 1px solid #d8d8d8;
  }

  .beauty-product-mini {
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding: 18px 16px;
  }
}

/* ==============================
   BEAUTY DIET
================================ */
.beauty-menu-group--diet {
  width: 100%;
  margin: 70px auto 0;
  padding: 0 36px 42px;
  background: #f7f7f7;
  border: 1px solid #e8e3dd;
}

.beauty-menu-group--diet .beauty-menu-group__hero {
  width: auto;
  margin: 0 -36px 66px;
  border: 0;
}

.beauty-menu-group--diet .beauty-menu-group__hero-inner {
  width: 100%;
  min-height: 205px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty5.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.beauty-menu-group--diet .beauty-menu-group__hero-inner::before,
.beauty-menu-group--diet .beauty-menu-group__hero-inner::after {
  content: none !important;
  display: none !important;
}

.beauty-menu-group--diet .beauty-treatment-section {
  padding: 0;
}

.beauty-diet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: end;
  margin-top: 26px;
}

.beauty-diet-layout__image {
  margin: 0;
}

.beauty-diet-layout__image img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.beauty-diet-layout__body {
  display: grid;
  gap: 28px;
}

.beauty-diet-box {
  padding: 28px 30px;
  background: #f7f7f7;
  color: #727171;
}

.beauty-diet-box h6 {
  margin: 0 0 14px;
  color: #727171;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.beauty-diet-box p {
  margin: 0;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .beauty-menu-group--diet {
    margin-top: 44px;
    padding: 0 16px 28px;
  }

  .beauty-menu-group--diet .beauty-menu-group__hero {
    margin: 0 -16px 36px;
  }

  .beauty-menu-group--diet .beauty-menu-group__hero-inner {
    min-height: 150px;
    padding: 28px 18px;
  }

  .beauty-diet-layout {
    display: block;
  }

  .beauty-diet-layout__image {
    margin-bottom: 24px;
  }

  .beauty-diet-box {
    padding: 22px 18px;
  }

  .beauty-diet-box + .beauty-diet-box {
    margin-top: 18px;
  }
}

/* ==============================
   BEAUTY INNER CARE
================================ */
.beauty-menu-group--innercare {
  width: 100%;
  margin: 70px auto 0;
  padding: 0 36px 42px;
  background: #f7f7f7;
  border: 1px solid #e8e3dd;
}

.beauty-menu-group--innercare .beauty-menu-group__hero {
  width: auto;
  margin: 0 -36px 66px;
  border: 0;
}

.beauty-menu-group--innercare .beauty-menu-group__hero-inner {
  width: 100%;
  min-height: 205px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty6.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  text-align: center;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.beauty-menu-group--innercare .beauty-menu-group__hero-inner::before,
.beauty-menu-group--innercare .beauty-menu-group__hero-inner::after {
  content: none !important;
  display: none !important;
}

.beauty-menu-group--innercare .beauty-menu-group__title {
  margin: 0;
}

.beauty-menu-group--innercare .beauty-menu-group__lead {
  margin: 0;
  text-align: center;
}

.beauty-innercare-lead {
  max-width: 900px;
  margin: 0 auto 56px;
  color: #727171;
  text-align: center;
}

.beauty-innercare-lead p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.4;
  letter-spacing: 0.08em;
}

.beauty-innercare-block + .beauty-innercare-block {
  margin-top: 58px;
}

.beauty-innercare-note {
  margin: 0 0 26px;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}

.beauty-innercare-grid {
  display: grid;
  gap: 24px;
}

.beauty-innercare-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.beauty-innercare-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.beauty-innercare-card {
  padding: 34px 28px;
  background: #fff;
  border: 1px solid #dedbd6;
  color: #727171;
  text-align: center;
}

.beauty-innercare-card h5 {
  margin: 0 0 22px;
  color: #727171;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.beauty-innercare-card p {
  margin: 0;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .beauty-menu-group--innercare {
    margin-top: 44px;
    padding: 0 16px 28px;
  }

  .beauty-menu-group--innercare .beauty-menu-group__hero {
    margin: 0 -16px 36px;
  }

  .beauty-menu-group--innercare .beauty-menu-group__hero-inner {
    min-height: 150px;
    padding: 28px 18px;
    gap: 14px;
  }

  .beauty-innercare-lead {
    margin-bottom: 36px;
    text-align: left;
  }

  .beauty-innercare-lead p {
    font-size: 0.9rem;
    line-height: 2;
  }

  .beauty-innercare-note {
    text-align: left;
  }

  .beauty-innercare-grid--three,
  .beauty-innercare-grid--two {
    grid-template-columns: 1fr;
  }

  .beauty-innercare-card {
    padding: 24px 18px;
  }

  .beauty-innercare-card h5 {
    font-size: 1.25rem;
  }
}

/* ==============================
   BEAUTY ARTMAKE
================================ */
.beauty-menu-group--artmake {
  width: 100%;
  margin: 70px auto 0;
  padding: 0 36px 42px;
  background: #f7f7f7;
  border: 1px solid #e8e3dd;
}

.beauty-menu-group--artmake .beauty-menu-group__hero {
  width: auto;
  margin: 0 -36px 66px;
  border: 0;
}

.beauty-menu-group--artmake .beauty-menu-group__hero-inner {
  width: 100%;
  min-height: 205px;
  padding: 0 70px;
  background-image: url("./assets/images/beauty/bg_beauty7.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.beauty-menu-group--artmake .beauty-menu-group__hero-inner::before,
.beauty-menu-group--artmake .beauty-menu-group__hero-inner::after {
  content: none !important;
  display: none !important;
}

.beauty-artmake-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
}

.beauty-artmake-layout__image {
  margin: 0;
}

.beauty-artmake-layout__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.beauty-artmake-layout__text p {
  margin: 0 0 28px;
  color: #727171;
  font-size: 0.95rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.beauty-artmake-layout__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .beauty-menu-group--artmake {
    margin-top: 44px;
    padding: 0 16px 28px;
  }

  .beauty-menu-group--artmake .beauty-menu-group__hero {
    margin: 0 -16px 36px;
  }

  .beauty-menu-group--artmake .beauty-menu-group__hero-inner {
    min-height: 150px;
    padding: 28px 18px;
  }

  .beauty-artmake-layout {
    display: block;
  }

  .beauty-artmake-layout__image {
    margin-bottom: 24px;
  }

  .beauty-artmake-layout__text p {
    font-size: 0.9rem;
    line-height: 2;
  }
}

/* ==============================
   BEAUTY SKIN PRODUCT CARDS
================================ */
.beauty-skin-products {
  margin: 34px 0 30px;
  padding: 30px 28px;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.beauty-skin-products__title {
  margin: 0 0 24px;
  color: #727171;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.beauty-skin-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.beauty-skin-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.beauty-skin-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  margin: 0 0 18px;
  background: #fff;
}

.beauty-skin-product__image img {
  display: block;
  max-width: 100%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.beauty-skin-product__name {
  margin: 0 0 10px;
  color: #727171;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.beauty-skin-product__body p:not(.beauty-skin-product__name) {
  margin: 0;
  color: #727171;
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .beauty-skin-products {
    padding: 24px 18px;
  }

  .beauty-skin-products__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .beauty-skin-product__image {
    height: auto;
  }

  .beauty-skin-product__image img {
    max-height: 180px;
  }

  .beauty-skin-product__name {
    text-align: left;
  }
}

/* ==============================
   BEAUTY SKIN PRODUCT CARDS
================================ */
.beauty-skin-products {
  margin: 34px 0 30px;
  padding: 30px 28px;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.beauty-skin-products__title {
  margin: 0 0 28px;
  color: #727171;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.beauty-skin-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.beauty-skin-product {
  display: grid;
  /*grid-template-columns: 180px 1fr;*/
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #f7f7f7;
}

.beauty-skin-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #fff;
}

.beauty-skin-product__image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.beauty-skin-product__name {
  margin: 0 0 10px;
  color: #727171;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.beauty-skin-product__body p:not(.beauty-skin-product__name) {
  margin: 0;
  color: #727171;
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .beauty-skin-product {
    grid-template-columns: 150px 1fr;
  }

  .beauty-skin-product__image img {
    height: 130px;
  }
}

@media (max-width: 768px) {
  .beauty-skin-products {
    padding: 24px 0px;
    border: 0;
  }

  .beauty-skin-products__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .beauty-skin-product {
    display: block;
    padding: 20px 16px;
  }

  .beauty-skin-product__image {
    margin-bottom: 18px;
  }

  .beauty-skin-product__image img {
    height: auto;
    max-height: 190px;
  }

  .beauty-skin-product__name {
    text-align: left;
  }
}

.director-message {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.director-message__text {
  min-width: 0;
}

.director-message__photo {
  max-width: 280px;
}

.director-message__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .director-message {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .director-message__photo {
    max-width: 260px;
    margin: 0 auto;
    order: -1;
  }
}
.clinic-hours {
  margin-top: 32px;
  text-align: center;
}

.clinic-hours__title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
}

.clinic-hours__scroll {
  width: 100%;
  overflow-x: auto;
}

.clinic-hours-table {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
  color: #727171;
}

.clinic-hours-table th,
.clinic-hours-table td {
  border: 1px solid #D9D9D9;
  padding: 10px 8px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.clinic-hours-table thead th {
  font-weight: 600;
}

.clinic-hours-table tbody th {
  font-weight: 500;
  white-space: nowrap;
}

.clinic-hours-table td {
  font-weight: 600;
}

.clinic-hours__note {
  max-width: 620px;
  margin: 8px auto 0;
  text-align: right;
  font-size: 1.2rem;
}

.clinic-map {
  /*max-width: 720px;*/
  margin: 36px auto 0;
}

.clinic-map iframe {
  display: block;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .clinic-hours {
    margin-top: 28px;
  }

  .clinic-hours__scroll {
    padding-bottom: 4px;
  }

  .clinic-hours-table {
    min-width: 520px;
  }

  .clinic-hours-table th,
  .clinic-hours-table td {
    padding: 8px 7px;
    font-size: 1.2rem;
  }

  .clinic-hours__note {
    max-width: 520px;
    text-align: left;
    font-size: 1.1rem;
  }

  .clinic-map {
    max-width: 100%;
    margin-top: 32px;
  }

  .clinic-map iframe {
    height: 300px;
  }

  .clinic-map {
    padding: 0 5.625vw;
  }
}

.post-60 h3 {
  margin-top: 30px;
}

.post-60 span {
  font-size: 16px;
}

.post-60  ul {
  margin: 10px 0;
}

.post-60  ul li {
  list-style: disc;
  list-style-position: inside;
}

/* ==============================
   Beauty Price
================================ */
.beauty-price-section {
  background: #faf8f6;
}

.beauty-price-head {
  margin-bottom: 40px;
  text-align: center;
}

.beauty-price-head__lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #666;
  line-height: 2;
}

.beauty-price-list {
  display: grid;
  gap: 32px;
}

.beauty-price-card {
  padding: 40px 34px;
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 8px;
}

.beauty-price-card__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.beauty-price-card__head h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.beauty-price-card__head a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #4b3b48;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}

.beauty-price-card__head a::after {
  content: "→";
  margin-left: 12px;
}

.beauty-price-table {
  width: 100%;
  border-collapse: collapse;
}

.beauty-price-table th,
.beauty-price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #e8e1dd;
  font-size: 1rem;
  line-height: 1.7;
  vertical-align: middle;
}

.beauty-price-table thead th {
  background: #f1f0ef;
  color: #6d6d6d;
  font-weight: 500;
  text-align: left;
}

.beauty-price-table th:last-child,
.beauty-price-table td:last-child {
  width: 190px;
  text-align: right;
  white-space: nowrap;
}

.beauty-price-table tbody td:first-child {
  font-weight: 500;
  color: #222;
}

.beauty-price-table tbody td:last-child {
  font-weight: 700;
  color: #b78657;
}

.beauty-price-note {
  margin: 28px 0 0;
  color: #666;
  font-size: .85rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .beauty-price-card {
    padding: 28px 18px;
  }

  .beauty-price-card__head {
    display: block;
    margin-bottom: 18px;
  }

  .beauty-price-card__head h3 {
    font-size: 1rem;
  }

  .beauty-price-card__head a {
    margin-top: 14px;
    min-width: 0;
    padding: 12px 18px;
    font-size: .85rem;
  }

  .beauty-price-table th,
  .beauty-price-table td {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  .beauty-price-table th:last-child,
  .beauty-price-table td:last-child {
    width: 110px;
  }
}

.headache-subtitle {
  position: relative;
  margin: 56px 0 22px;
  padding: 16px 20px 16px 26px;
  background: #f7f3ef;
  border-left: 5px solid #b79a86;
  border-radius: 6px;
  color: #3f3f3f;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}


@media screen and (max-width: 767px) {
  .headache-subtitle {
    margin: 40px 0 18px;
    padding: 14px 16px 14px 22px;
    font-size: 1.25rem;
  }
}

.sleep-cpap-image {
  max-width: 720px;
  margin: 24px auto 32px;
}

.sleep-cpap-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sleep-main-image {
  max-width: 760px;
  margin: 28px auto 36px;
}

.sleep-main-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.slug-hyphen {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  transform: translateY(-0.04em);
  visibility: hidden;
}

.head-injury-main-image {
  max-width: 760px;
  margin: 28px auto 36px;
}

.head-injury-main-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.beauty-method-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.beauty-method-list__item {
  padding: 18px 20px;
  background: #faf8f6;
  border: 1px solid #eadfda;
  border-radius: 8px;
}

.beauty-method-list__item h6 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4b3b48;
}

.beauty-method-list__item p {
  margin: 0;
  line-height: 1.8;
}

.beauty-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.beauty-cta__buttons .btn.line {
  background: #878F96
  color: #fff;
  border-color: #878F96
}

@media screen and (max-width: 767px) {
  .beauty-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .beauty-cta__buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

.beauty-skin-compare {
  margin: 48px 0 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 8px;
}

.beauty-skin-compare__title {
  margin: 0 0 22px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #4b3b48;
}

.beauty-skin-compare__scroll {
  overflow-x: auto;
}

.beauty-skin-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  text-align: center;
}

.beauty-skin-compare-table th,
.beauty-skin-compare-table td {
  padding: 10px 5px;
  border: 1px solid #e5ddd8;
  font-size: .85rem;
  line-height: 1.6;
  vertical-align: middle;
}

.beauty-skin-compare-table thead th {
  background: #5b2435;
  color: #fff;
  font-weight: 600;
}

.beauty-skin-compare-table tbody th {
  width: 170px;
  background: #faf8f6;
  color: #333;
  font-weight: 600;
  text-align: left;
}

.beauty-skin-compare-table tbody td:nth-child(2),
.beauty-skin-compare-table tbody td:nth-child(3) {
  text-align: left;
}

.beauty-skin-compare-table tbody td:nth-child(n+4) {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b78657;
}

@media screen and (max-width: 767px) {
  .beauty-skin-compare {
    margin: 36px 0 32px;
    padding: 22px 16px;
  }

  .beauty-skin-compare__title {
    font-size: 1.6rem;
  }

  .beauty-skin-compare-table th,
  .beauty-skin-compare-table td {
    padding: 12px 10px;
    font-size: 1.2rem;
  }
}

.beauty-skin-compare {
  margin: 48px 0 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid #eadfda;
  border-radius: 8px;
}

.beauty-skin-compare__title {
  margin: 0 0 22px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #4b3b48;
}

.beauty-skin-compare__scroll {
  overflow-x: auto;
}

.beauty-skin-compare-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  text-align: center;
}

.beauty-skin-compare-table th,
.beauty-skin-compare-table td {
  padding: 10px 6px;
  border: 1px solid #e5ddd8;
  font-size: .85rem;
  line-height: 1.6;
  vertical-align: middle;
}

.beauty-skin-compare-table thead th {
  background: #5b2435;
  color: #fff;
  font-weight: 600;
}

.beauty-skin-compare-table tbody th {
  width: 180px;
  background: #faf8f6;
  color: #333;
  font-weight: 600;
  text-align: left;
}

.beauty-skin-compare-table tbody td:nth-child(2),
.beauty-skin-compare-table tbody td:nth-child(3) {
  text-align: left;
}

.beauty-skin-compare-table tbody td:nth-child(n+4) {
  font-size: 1rem;
  font-weight: 600;
  color: #b78657;
}

.beauty-skin-compare-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}

.beauty-skin-compare-product img {
  width: 64px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 4px;
}

.beauty-skin-compare-product span {
  display: block;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .beauty-skin-compare {
    margin: 36px 0 32px;
    padding: 22px 0px;
    border: 0;
  }

  .beauty-skin-compare__title {
    font-size: 1.25rem;
  }

  .beauty-skin-compare-table th,
  .beauty-skin-compare-table td {
    padding: 10px 6px;
    font-size: .8rem;
  }
}

.beauty-treatment-recommend ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.beauty-treatment-recommend li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
}

.beauty-treatment-recommend li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.beauty-price-table--botox th:nth-child(2),
.beauty-price-table--botox td:nth-child(2) {
  width: 140px;
  text-align: center;
  white-space: nowrap;
}

.beauty-price-table--botox th:nth-child(3),
.beauty-price-table--botox td:nth-child(3) {
  width: 160px;
  text-align: right;
  white-space: nowrap;
}

.beauty-price-table__group td {
  background: #f7f3ef;
  color: #4b3b48;
  font-weight: 700;
  text-align: left !important;
  border-bottom: 1px solid #e8e1dd;
}

@media screen and (max-width: 767px) {
  .beauty-price-table--botox {
    min-width: 720px;
  }

  .beauty-price-table--botox th:nth-child(2),
  .beauty-price-table--botox td:nth-child(2) {
    width: 110px;
  }

  .beauty-price-table--botox th:nth-child(3),
  .beauty-price-table--botox td:nth-child(3) {
    width: 130px;
  }
}

.beauty-menu-head__buttons {
  margin-top: 28px;
  text-align: center;
}

.beauty-price-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #4b3b48;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.beauty-price-link::after {
  content: "↓";
  margin-left: 10px;
}

.beauty-price-link:hover {
  opacity: 0.85;
  color: #fff;
}
