@charset "UTF-8";
/* 変数 */
:root {
  --serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --shippori: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho,
    "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --en: "Cormorant", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --pink: #e19797;
  --liner: linear-gradient(90deg, #bcb8b9 0%, #e0d5d8 54%, #bcb8b9 100%);
}

body {
  color: #1a1311;
  font-family: var(--serif);
  overflow-x: hidden;
}

.pc {
  display: block;
}

.tb,
.sp {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover:not(.arrow-button):not(.menu__link):not(.treatment-card__link) {
  opacity: 0.7;
}

hr {
  height: 1px;
  border: none;
  background-color: #f0f0f1;
  margin: 10px 0;
}

ul ul {
  list-style-type: square;
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeDown {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview,
.js-fadeDown.is-inview,
.js-fadeLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ディレイ */
.is-inview.delay1 {
  transition-delay: 0.7s;
}

.is-inview.delay2 {
  transition-delay: 0.9s;
}

body.admin-bar {
  padding-top: 32px;
}

.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 40px;
  transition: 0.3s ease;
}

.arrow-button::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% – 5px);
  right: 25px;
  width: 25px;
  height: 5px;
  border: none;
  transform: skew(45deg);
  transition: 0.3s;
}

.arrow-button:hover::after {
  position: absolute;
  top: calc(50% – 5px);
  right: 20px;
  width: 30px;
  height: 5px;
}

.view-more {
  max-width: 300px;
  height: 60px;
  border: 1px solid #e19797;
  background-color: #ffffff;
  color: #e19797;
  font-family: var(--en);
  font-size: 18px;
  line-height: 1.8;
}

.view-more::after {
  border-right: 2px solid #e19797;
  border-bottom: 1px solid #e19797;
}

.view-more:hover {
  border: 1px solid #ffffff;
  background-color: #e19797;
  color: #ffffff;
}

.view-more:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.header {
  position: fixed;
  width: 100%;
  padding: 12px 20px 0;
  z-index: 100;
}
.header__inner {
  background-color: #ffffff;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  height: 70px;
  position: relative !important;
}
.header__logo img {
  height: 35px;
  width: 100%;
  display: block;
}
.header__menu-button {
  display: none;
  position: absolute !important;
  top: 0 !important;
}

.header-navi {
  width: 100%;
  max-width: 790px;
}
.header-navi__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-navi__item {
  list-style: none;
  font-size: 15px;
  height: 70px;
}
.header-navi__link {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.header-navi__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #714c4c;
  transition: width 0.3s ease, left 0.3s ease;
}
.header-navi__link:hover::after {
  width: 100%;
  left: 0;
}
.header-navi__link--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 36px;
  margin: 17px 0;
  background-color: #e19797;
  border-radius: 40px;
  color: #ffffff;
}

.mv {
  background-size: cover;
  height: 825px;
  position: relative;
  overflow: hidden;
}
.mv__title {
  position: absolute;
  top: 55%;
  right: 75px;
  z-index: 10;
}
.mv__title--main {
  color: #523518;
  font-family: var(--shippori);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.8;
  opacity: 0;
  padding: 0 10px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.mv__title--main span {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.mv__title--sub {
  display: inline-block;
  font-family: var(--en);
  font-weight: 400;
  font-size: 24px;
  color: #f7e2db;
  position: relative;
  margin-left: 360px;
}
.mv__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -360px;
  display: inline-block;
  width: 0px;
  height: 1px;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
  transition: all 0.8s ease-in-out;
}
.mv__title--sub.line-active::before {
  width: 360px;
}
.mv__title--sub span {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.mv__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.mv__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../image/mv-hardlight.jpg") no-repeat center/cover;
  mix-blend-mode: hard-light;
  opacity: 0.3;
  pointer-events: none;
  z-index: 4;
}
.mv__image-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  animation: zoom-fade 30s 0s infinite;
  -webkit-animation: zoom-fade 30s 0s infinite;
  z-index: 3;
}
.mv__image-item:first-child {
  background-image: url("../image/mv1.jpg");
  background-position: 0% top;
}
.mv__image-item:nth-child(2) {
  background-image: url("../image/mv2.jpg");
  background-position: 20% top;
  animation-delay: 10s;
  -webkit-animation-delay: 10s;
}
.mv__image-item:nth-child(3) {
  background-image: url("../image/mv3.jpg");
  background-position: 35% top;
  animation-delay: 20s;
  -webkit-animation-delay: 20s;
}
.mv__separator {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100vw;
}
.mv__separator::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  transform: scaleX(4);
  transform-origin: 100% 100%;
  animation: 10s infinite alternate sep-anime linear;
  background-size: 100% 100px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23F0EDEB"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23F0EDEB"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23F0EDEB"/></svg>');
}

@keyframes zoom-fade {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sep-anime {
  100% {
    transform: scaleX(4) translateX(75%);
  }
}
@media screen and (max-width: 1272px) {
  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 1272px) {
  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }
}
.campaign {
  background: linear-gradient(180deg, #f0edeb 0%, #e6dfda 100%);
  padding: 50px 20px 70px;
  text-align: center;
}
.campaign__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 75px 266px 1fr;
  grid-template-rows: 45px 199px 1fr;
}
.campaign__image {
  grid-row: 1/3;
  grid-column: 1/3;
  z-index: 1;
}
.campaign__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign__box {
  grid-row: 2/4;
  grid-column: 2/4;
  width: 100%;
  padding: 15px;
  border: 1px #a19081 solid;
}
.campaign__text {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../image/campaign-decoration-tr.png) calc(100% - 8px) calc(0% + 8px) no-repeat, url(../image/campaign-decoration-bl.png) calc(0% + 8px) calc(100% - 8px) no-repeat, url(../image/campaign-decoration-br.png) calc(100% - 8px) calc(100% - 8px) no-repeat, url(../image/campaign-bg.jpg) center/cover no-repeat;
  padding: 45px 65px 30px 313px;
}
.campaign__title {
  color: #523518;
  font-size: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
}
.campaign__title span {
  font-size: 60px;
  font-family: var(--en);
  vertical-align: bottom;
  position: relative;
  top: -20px;
  letter-spacing: 5px;
}
.campaign__title::before {
  content: "CAMPAIGN";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 100px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
  opacity: 0.4;
}
.campaign__description {
  font-size: 15px;
  line-height: 2.2;
  text-align: center;
}
.campaign__description span {
  font-weight: 500;
}

.introduction {
  position: relative;
  background-color: #fff;
}
.introduction__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 200px;
  position: relative;
}
.introduction__title {
  margin-bottom: 24px;
  padding-left: 60px;
}
.introduction__title--main {
  font-size: 28px;
  line-height: 1.8;
}
.introduction__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.introduction__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.introduction__marquee {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 0 calc(50% - 50vw);
}
.introduction__marquee p {
  display: inline-block;
  font-size: 160px;
  font-family: var(--en);
  color: #f4f2ea;
  text-transform: uppercase;
  animation: marquee 100s linear infinite;
  position: relative;
  padding-right: 80px;
}
.introduction__marquee p::after {
  content: " YOUR PARTNER FOR BEAUTY";
}
.introduction__wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.introduction__text {
  max-width: 500px;
}
.introduction__text-title {
  font-size: 36px;
  font-weight: 400;
}
.introduction__text-description {
  line-height: 3.1;
}
.introduction__image {
  flex: 1;
  max-width: 468px;
  height: 100%;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
}
.introduction__image img {
  width: 100%;
  display: block;
}
.introduction__separator {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.introduction__separator::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  transform: scaleX(4);
  transform-origin: 100% 100%;
  animation: 10s infinite alternate sep-anime linear;
  background-size: 100% 100px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23F0EDEB"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23F0EDEB"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23F0EDEB"/></svg>');
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.feature {
  background-color: #f2efeb;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.feature__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}
.feature__bg::before, .feature__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.feature__bg::before {
  background-image: linear-gradient(to bottom, rgb(242, 239, 235) 0%, rgba(242, 239, 235, 0) 10%), url("../image/feature-bg1.jpg");
  mix-blend-mode: multiply;
  opacity: 0.3;
}
.feature__bg::after {
  background-image: linear-gradient(to bottom, rgb(242, 239, 235) 0%, rgba(242, 239, 235, 0) 10%), url("../image/feature-bg2.jpg");
  mix-blend-mode: color-burn;
  opacity: 1;
}
.feature__inner {
  padding: 100px 0 200px;
}
.feature__box {
  display: flex;
  gap: 60px;
  margin: 0 auto 90px;
  padding: 0 0 0 90px;
  max-width: 1280px;
}
.feature__box:nth-child(odd) {
  flex-direction: row-reverse;
  padding: 0 90px 0 0;
}
.feature__text {
  flex: 1;
  width: 100%;
}
.feature__number {
  font-family: var(--en);
  font-size: 24px;
  color: #e19797;
}
.feature__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.8;
  margin: 30px 0 30px 60px;
  position: relative;
}
.feature__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.feature__description {
  line-height: 2.6;
  letter-spacing: 0.1em;
}
.feature__image {
  flex: 1;
  width: 100%;
  height: 100%;
}
.feature__image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu {
  position: relative;
  width: 100%;
  z-index: 0;
}
.menu__separator {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2000px 2000px 0 0/300px 300px 0 0;
  min-height: 300px;
  width: calc(100vw + 400px);
  max-width: 100%;
  background-color: #f7e2db;
  z-index: 1;
}
.menu__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #f7e2db;
  padding: 0 20px 90px 20px;
}
.menu__title {
  margin-bottom: 80px;
}
.menu__title--sub {
  position: relative;
  font-family: var(--en);
  font-size: 24px;
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu__title--sub::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  display: inline-block;
  width: 1px;
  height: 33px;
  background: linear-gradient(180deg, #bcb8b9 0%, transparent 100%);
}
.menu__title--main {
  font-size: 28px;
  font-weight: 500;
  color: #523518;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.menu__box {
  max-width: 1100px;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 80px 55px;
  display: grid;
  grid-auto-rows: auto;
  grid-gap: 20px 30px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.menu__item {
  border: 1px solid #523518;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}
.menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  font-size: 24px;
  position: relative;
}
.menu__link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #523518 transparent;
  transition: all 0.2s ease-in;
}
.menu__link:hover::before {
  border-width: 0 0 35px 35px;
}

.case__images {
  display: flex;
  gap: 2px;
  margin-bottom: 40px;
}
.case__image {
  position: relative;
}
.case__image figcaption {
  position: absolute;
  bottom: -18px;
  background-color: #e19797;
  color: #ffffff;
  font-family: var(--en);
  font-size: 14px;
  height: 18px;
  width: 100%;
  text-align: center;
}
.case__image img {
  width: 100%;
  display: block;
}
.case__text {
  padding: 0 10px;
}
.case__text-title {
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}
.case__text-title::before {
  content: "";
  height: 16px;
  width: 1px;
  background-color: #1a1311;
  position: absolute;
  top: 4px;
  left: -10px;
}
.case__text-description {
  font-size: 14px;
  line-height: 1.6;
}
.case__text-description:not(:last-child) {
  margin-bottom: 10px;
}

.doctor {
  background-color: #f2efeb;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.doctor__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}
.doctor__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: linear-gradient(to bottom, rgb(242, 239, 235) 0%, rgba(242, 239, 235, 0) 10%), url("../image/feature-bg1.jpg");
  mix-blend-mode: multiply;
  opacity: 0.3;
}
.doctor__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
  position: relative;
}
.doctor__title {
  margin-bottom: 80px;
  padding-left: 60px;
}
.doctor__title--main {
  font-size: 28px;
  line-height: 1.8;
}
.doctor__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.doctor__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.doctor__box {
  display: flex;
  justify-content: flex-end;
  gap: 70px;
  margin-bottom: 40px;
}
.doctor__box:nth-child(even) {
  flex-direction: row-reverse;
}
.doctor__box:last-of-type {
  margin-bottom: 100px;
}
.doctor__text {
  display: flex;
  align-items: center;
  width: 38%;
}
.doctor__text-inner {
  width: 410px;
}
.doctor__position {
  color: #e19797;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 30px;
}
.doctor__name {
  font-size: 26px;
  line-height: 1.8;
  position: relative;
  margin-bottom: 30px;
}
.doctor__name span {
  font-size: 12px;
  line-height: 1.8;
  margin-left: 26px;
  position: relative;
}
.doctor__name span::before {
  content: "/";
  position: absolute;
  left: -16px;
  top: -2px;
}
.doctor__name::after {
  content: "";
  width: 410px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.doctor__career {
  font-size: 15px;
  line-height: 1.6;
}
.doctor__career-list {
  list-style: none;
}
.doctor__career-list li {
  list-style-position: inside;
  font-size: 14px;
  line-height: 1.66;
  padding-left: 15px;
  position: relative;
}
.doctor__career-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.doctor__image {
  width: 42%;
  height: 100%;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.12);
}
.doctor__image img {
  width: 100%;
  display: block;
}
.doctor__kakuta-content {
  display: block;
  width: 100%;
  height: auto;
}

.flow {
  overflow: hidden;
}
.flow__inner {
  display: flex;
}
.flow__title {
  width: 25%;
  background-color: #714c4c;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
}
.flow__title--main {
  font-size: 28px;
  letter-spacing: 0.33em;
  color: #ffffff;
  font-weight: 400;
}
.flow__title--sub {
  font-size: 24px;
  font-family: var(--en);
  background: linear-gradient(180deg, #bcb8b9 0%, #e0d5d8 54%, #bcb8b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.flow__title--sub::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  display: inline-block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, #bcb8b9 0%, transparent 100%);
}
.flow__content {
  padding: 140px 0 140px 10%;
  width: 100%;
}
.flow__img {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.flow__img--top {
  position: absolute;
  right: -100px;
  bottom: 300px;
  z-index: -1;
}
.flow__img--bottom {
  position: absolute;
  right: 60px;
  bottom: 40px;
  z-index: -1;
}

.flow-chart {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.flow-chart__list {
  list-style: none;
  padding-right: 20px;
  margin: 0;
  position: relative;
  background-color: #ffffff;
}
.flow-chart__list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #714c4c;
  transform: translateX(-50%);
}
.flow-chart__item {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  position: relative;
}
.flow-chart__item:not(:last-of-type) {
  margin-bottom: 50px;
}
.flow-chart__icon {
  position: relative;
  width: 78px;
  height: 78px;
}
.flow-chart__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.flow-chart__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.flow-chart__number {
  font-size: 30px;
  color: #e19797;
  font-family: var(--en);
}
.flow-chart__label {
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.access {
  background-image: url(../image/access-bg.jpg);
  background-size: cover;
}
.access__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 20px 70px;
}
.access__title {
  margin-bottom: 80px;
  text-align: center;
}
.access__title--sub {
  position: relative;
  font-family: var(--en);
  font-size: 24px;
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.access__title--sub::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  display: inline-block;
  width: 1px;
  height: 33px;
  background: linear-gradient(180deg, #bcb8b9 0%, transparent 100%);
}
.access__title--main {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.access__box {
  display: flex;
  gap: 25px;
}
.access__table {
  padding: 30px 35px;
  background-color: #ffffff;
  flex: 1;
}
.access__table table {
  width: 100%;
  border-collapse: collapse;
}
.access__table table tr:not(:last-of-type) {
  border-bottom: 1px solid #bfbfbf;
}
.access__table table th,
.access__table table td {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: left;
}
.access__table table th {
  padding: 18px 40px 18px 0;
  white-space: nowrap;
}
.access__table table td {
  padding: 18px 0;
}

.news {
  background-color: #ffffff;
}
.news__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
}
.news__box {
  display: grid;
  width: 100%;
  grid-template-columns: 37% 63%;
  grid-template-rows: auto auto;
  justify-items: start;
}
.news__title {
  margin-left: 60px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.news__title--main {
  font-size: 28px;
  line-height: 1.8;
}
.news__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.news__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.news__list {
  grid-column: 2/3;
  grid-row: 1/3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-top: 1px solid #bfbfbf;
  width: 100%;
}
.news__list ul li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid #bfbfbf;
}
.news__list ul li a {
  display: block;
}
.news__date {
  color: #aaaaaa;
  font-size: 14px;
  margin-right: 50px;
  display: block;
}
.news__button-box {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: center;
  align-self: end;
  width: 100%;
}

.footer {
  background-color: #f8e2db;
  color: #1a1311;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer__top::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(188, 184, 185) 0%, rgba(188, 184, 185, 0.2) 100%);
}
.footer__logo img {
  height: 40px;
}
.footer__contact-buttons {
  display: flex;
  gap: 20px;
}
.footer__contact {
  margin-left: 50px;
}
.footer__tel {
  font-size: 30px;
  position: relative;
  line-height: 1;
}
.footer__tel::before {
  content: "";
  background-image: url(../image/tel.svg);
  position: absolute;
  top: 5px;
  left: -20px;
  width: 100%;
  height: 100%;
}
.footer__time {
  font-size: 13px;
}
.footer__sns {
  display: flex;
  gap: 20px;
}
.footer__bottom {
  height: 30px;
  display: flex;
  justify-content: flex-end;
}
.footer__copy {
  font-size: 12px;
}

.footer-navi {
  display: flex;
  justify-content: space-between;
}
.footer-navi__list {
  display: flex;
  gap: 60px;
  align-items: center;
}
.footer-navi__item {
  list-style: none;
  font-size: 15px;
}
.web-contact {
  width: 230px;
  height: 50px;
  background-color: #e19797;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}
.web-contact::after {
  border-right: 2px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.web-contact:hover {
  border: 1px solid #e19797;
  background-color: #ffffff;
  color: #e19797;
}
.web-contact:hover::after {
  border-right: 2px solid #e19797;
  border-bottom: 1px solid #e19797;
}

.line-contact {
  width: 230px;
  height: 50px;
  border: 1px solid #523518;
  background-color: #ffffff;
  color: #523518;
  font-size: 18px;
  line-height: 1.8;
}
.line-contact::after {
  border-right: 2px solid #523518;
  border-bottom: 1px solid #523518;
}
.line-contact:hover {
  border: 1px solid #ffffff;
  background-color: #523518;
  color: #ffffff;
}
.line-contact:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.low {
  color: #523518;
}

.low-intro .title {
  background-size: cover;
  height: 340px;
  background-image: url(../image/intro-title-bg.jpg);
}
.low-intro .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-intro .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    color: #e19797;
    flex-wrap: wrap;
    font-weight: 500;
    line-height: 2;
}

.breadcrumb-list > * + *::before {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
  color: #523518;
}
.breadcrumb-link {
  color: #523518;
}

.mission {
  background-color: #f2efeb;
}
.mission__inner {
  max-width: 1100px;
  padding: 140px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 114px;
}
.mission__box {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
.mission__text {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
.mission__text.vision {
  flex-direction: row-reverse;
}
.mission__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mission__title p {
  font-family: var(--en);
  font-size: 24px;
  color: #e19797;
}
.mission__title h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 2.8;
  margin-left: 60px;
  position: relative;
}
.mission__title h3::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.mission__description {
  width: 50%;
  font-size: 18px;
  line-height: 3.1;
}
.mission__image {
  width: 100%;
}
.mission__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.low-intro .feature__inner {
  padding: 100px 0 10px;
}

.photo__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
}
.photo__title {
  margin-bottom: 80px;
  padding-left: 60px;
}
.photo__title--main {
  font-size: 28px;
  line-height: 1.8;
}
.photo__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.photo__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.photo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.photo__box {
  display: flex;
  flex-direction: column;
  gap: 65px;
}
.photo__place {
  font-size: 24px;
  letter-spacing: 0.2em;
  position: relative;
}
.photo__place::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(188, 184, 185) 0%, rgba(188, 184, 185, 0.2) 100%);
}
.photo__images {
  display: flex;
  justify-content: space-between;
}
.photo__images img {
  width: 49%;
}

.message {
  position: relative;
}
.message__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
  position: relative;
}
.message__title {
  margin-bottom: 80px;
  padding-left: 60px;
}
.message__title--main {
  font-size: 28px;
  line-height: 1.8;
}
.message__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.message__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.message__box {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 40px;
}
.message__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.message__doctor-name {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.message__position {
  color: #e19797;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
.message__name {
  font-size: 26px;
  line-height: 1.8;
  position: relative;
}
.message__name span {
  font-size: 12px;
  line-height: 1.8;
  margin-left: 26px;
  position: relative;
}
.message__name span::before {
  content: "/";
  position: absolute;
  left: -16px;
  top: -2px;
}
.message__comment {
  font-size: 16px;
  line-height: 3.1;
  letter-spacing: 0.1em;
}
.message__image {
  width: 42%;
  height: 100%;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.12);
}
.message__image img {
  width: 100%;
  display: block;
}

.menu-page {
  color: #523518;
}
.menu-page .title {
  background-size: cover;
  height: 340px;
  background-image: url(../image/menu-title-bg.jpg);
}
.menu-page .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0;
}
.menu-page .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.menu-page .menu-section {
  background-color: #f7e2db;
  padding: 140px 20px;
}
.menu-page .menu-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.menu-page .menu-section__title {
  margin-bottom: 80px;
}
.menu-page .menu-section__title--sub {
  position: relative;
  font-family: var(--en);
  font-size: 24px;
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu-page .menu-section__title--sub::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 1px;
  height: 33px;
  background: linear-gradient(180deg, #bcb8b9 0%, transparent 100%);
}
.menu-page .menu-section__title--main {
  font-size: 28px;
  font-weight: 500;
  color: #523518;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.menu-page .menu-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px 30px;
}
.menu-page .menu-section__item {
  border: 1px solid #523518;
  background-color: #ffffff;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.menu-page .menu-section__item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.menu-page .menu-section__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  font-size: 24px;
  position: relative;
  text-decoration: none;
  color: #523518;
}
.menu-page .menu-section__link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #523518 transparent;
  transition: all 0.2s ease-in;
}
.menu-page .menu-section__link:hover::before {
  border-width: 0 0 35px 35px;
}
.menu-page .treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-page .treatment-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.menu-page .treatment-card:hover {
  transform: translateY(-4px);
}
.menu-page .treatment-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 20px;
}
.menu-page .treatment-card__image {
  background-color: #f7f7f7;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 15px;
}
.menu-page .treatment-card__image img {
  width: 100%;
  height: auto;
}
.menu-page .treatment-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}
.menu-page .treatment-card__intro {
  font-size: 14px;
  color: #714c4c;
  text-align: center;
  margin-bottom: 10px;
}
.menu-page .treatment-card__description {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #333;
}
.menu-page .treatment-card__description p {
  margin-bottom: 5px;
}
.menu-page .menu-description__inner {
  max-width: 1100px;
  padding: 50px 20px 0;
  margin: 0 auto;
}
.menu-page .menu-description__box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.menu-page .menu-description__text {
  width: 46%;
  line-height: 3.1;
  letter-spacing: 0.1em;
}
.menu-page .menu-description__image {
  width: 49%;
}
.menu-page .menu-description__image img {
  width: 100%;
}
.menu-page .menu-recommend {
  background-color: #f2efeb;
  padding: 40px 50px;
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.menu-page .menu-recommend__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
.menu-page .menu-recommend__list {
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  justify-content: center;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 20px;
  list-style: none;
  border-top: 1px solid #bfbfbf;
}
.menu-page .menu-recommend__item {
  background-color: #ffffff;
  padding: 6px;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.menu-page .menu-flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.menu-page .menu-flow__title {
  margin-bottom: 40px;
  padding-left: 60px;
}
.menu-page .menu-flow__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.menu-page .menu-flow__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.menu-page .menu-flow--main {
  font-size: 24px;
  line-height: 1.8;
}
.menu-page .menu-flow__box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 50px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #abb8c3;
}
.menu-page .menu-flow__number {
  width: 15%;
  font-family: var(--en);
  font-size: min(3.25vw, 36px);
  color: #e19797;
  margin: 0 10px 5px 0;
}
.menu-page .menu-flow__box h4 {
  width: 30%;
  font-size: min(2vw, 24px);
  display: flex;
  align-items: center;
  font-weight: 600;
}
.menu-page .menu-flow__box p {
  width: 70%;
  display: flex;
  align-items: center;
  line-height: 2;
}
.menu-page .price__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 50px;
}
.menu-page .price__title {
  margin-bottom: 40px;
  padding-left: 60px;
}
.menu-page .price__title--main {
  line-height: 1.8;
}
.menu-page .price__title--sub {
  display: inline;
  font-size: 24px;
  font-family: var(--en);
  background: var(--liner);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}
.menu-page .price__title--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.menu-page .price__table {
  width: 100%;
  border: 1px solid #e7e7ed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  margin-bottom: 10px;
}
.menu-page .price__table th {
  background-color: #714c4c;
  border: 1px solid #e7e7ed;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 20px;
}
.menu-page .price__table td {
  border: 1px solid #e7e7ed;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  padding: 18px 20px;
}
.menu-page .menu-feature__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.menu-page .menu-feature__inner p {
  line-height: 2.8;
}
.menu-page .menu-feature__inner > p {
  width: 90%;
  margin: 0 auto;
}
.menu-page .menu-feature__inner ul {
  margin: 50px 0;
  width: 90%;
  margin: 0 auto;
  line-height: 2.8;
}
.menu-page .menu-feature__inner ul li {
  margin: 20px 0;
  line-height: 2.8;
}
.menu-page .menu-feature__inner ul li span {
  font-size: 110%;
  font-weight: 700;
}
.menu-page .menu-caution__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.menu-page .menu-caution__inner p {
  width: 90%;
  margin: 40px auto;
  line-height: 2.8;
}
.menu-page .menu-caution__inner p span {
  font-weight: bold;
  font-size: 120%;
}
.menu-page .menu-caution__inner ul {
  margin: 50px 0;
  width: 80%;
  margin: 0 auto;
  line-height: 2.8;
}
.menu-page .menu-caution__inner ul li {
  margin: 20px 0;
  line-height: 2.8;
}

.low-case .title {
  background-image: url(../image/case-title-bg.jpg);
  background-size: cover;
  height: 340px;
}
.low-case .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-case .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.cases-section {
  max-width: 1100px;
  padding: 100px 20px;
  margin: 0 auto;
}

.cases-section__title {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f2efeb;
}

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

.case-card {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.case-card__images {
  display: flex;
}
.case-card__image {
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #f0f0f0;
}
.case-card__image img {
  width: 100%;
  display: block;
}
.case-card__content {
  padding: 15px;
}
.case-card__text {
  margin-bottom: 8px;
  font-size: 16px;
}

.low-doctor .title {
  background-size: cover;
  height: 340px;
  background-image: url(../image/doctor-title-bg.jpg);
}
.low-doctor .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-doctor .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.low-doctor .doctor__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px;
}
.low-doctor .doctor-profile {
  background: #fff;
  margin-bottom: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.low-doctor .doctor-profile__content {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}
.low-doctor .doctor-profile__info {
  flex: 1;
  min-width: 280px;
  margin-right: 30px;
}
.low-doctor .doctor-profile__name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}
.low-doctor .doctor-profile__name span {
  font-size: 12px;
  line-height: 1.8;
  margin-left: 26px;
  position: relative;
}
.low-doctor .doctor-profile__name span::before {
  content: "/";
  position: absolute;
  left: -16px;
  top: -2px;
}
.low-doctor .doctor-profile__name::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
}
.low-doctor .doctor-profile__intro {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e19797;
}
.low-doctor .doctor-profile__description {
  margin-bottom: 20px;
  line-height: 3.1;
}
.low-doctor .doctor-profile__image {
  flex: 0 0 300px;
  height: 300px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.low-doctor .doctor-profile__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.low-doctor .doctor-details {
  padding: 0 30px 30px;
}
.low-doctor .doctor-details__item {
  display: flex;
  border-top: 1px solid #f2efeb;
  padding: 20px 0;
}
.low-doctor .doctor-details__title {
  flex: 0 0 150px;
  font-weight: bold;
}
.low-doctor .doctor-details__content {
  flex: 1;
}
.low-doctor .doctor-details__list {
  list-style: none;
}
.low-doctor .doctor-details__list-item {
  margin-bottom: 5px;
}
.low-doctor .doctor__kakuta-content {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .low-doctor .doctor__kakuta-content.display-pc {
    display: none;
  }
}
.low-doctor .doctor__kakuta-content.display-tb {
  display: none;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .low-doctor .doctor__kakuta-content.display-tb {
    display: block;
  }
}
.low-doctor .doctor__kakuta-content.display-sp {
  display: none;
}
@media (max-width: 767px) {
  .low-doctor .doctor__kakuta-content.display-sp {
    display: block;
  }
}

.low-contact .title {
  background-image: url(../image/contact-title-bg.jpg);
  background-size: cover;
  height: 340px;
}
.low-contact .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-contact .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.low-contact .line__inner {
  background-color: #f2efeb;
  margin: 140px 0 0;
}
.low-contact .line-section {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 5px;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
}
.low-contact .line-section__qr {
  flex: 0 0 200px;
  height: 200px;
  background-color: #bbbbbb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.low-contact .line-section__qr img {
  width: 100%;
  height: 100%;
  display: block;
}
.low-contact .line-section__content {
  flex: 1;
  min-width: 300px;
}
.low-contact .line-section__content .line-section__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.low-contact .line-section__content .line-section__text {
  margin-bottom: 20px;
}
.low-contact .line-section__content .arrow-button {
  margin: 0;
}
.low-contact .contact__inner {
  max-width: 1100px;
  padding: 140px 20px;
  margin: 0 auto;
}
.low-contact .contact-section {
  max-width: 900px;
  margin: 0 auto;
}
.low-contact .contact-intro {
  text-align: center;
  margin-bottom: 60px;
}
.low-contact .contact-intro__text {
  margin-bottom: 15px;
  font-size: 18px;
}
.low-contact .contact-intro__tel {
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
  position: relative;
}
.low-contact .contact-intro__tel::before {
  content: "";
  background-image: url(../image/tel-bw.svg);
  position: absolute;
  top: 10px;
  left: -20px;
  width: 100%;
  height: 100%;
}
.low-contact .contact-form {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.low-contact .form-group {
  margin-bottom: 40px;
}
.low-contact .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}
.low-contact .form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.low-contact .form-control::placeholder {
  color: #999;
}
.low-contact .form-textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 150px;
  resize: vertical;
}
.low-contact .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.low-contact .form-check__input {
  margin-right: 10px;
}
.low-contact .form-check__label {
  font-size: 14px;
}
.low-contact select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
.low-contact .date-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.low-contact .date-select__item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.low-contact .date-select__label {
  margin-right: 5px;
}
.low-contact .date-select__control {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.low-contact .form-text {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}
.low-contact .required-badge {
  display: inline-block;
  background-color: #e19797;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 15px;
}
.low-contact .privacy-link {
  color: #e19797;
  text-decoration: none;
}
.low-contact .privacy-link:hover {
  text-decoration: underline;
}
.low-contact .submit-button {
  width: 230px;
  height: 50px;
  background-color: #e19797;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}
.low-contact .submit-button::after {
  border-right: 2px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.low-contact .submit-button:hover {
  border: 1px solid #e19797;
  background-color: #ffffff;
  color: #e19797;
}
.low-contact .submit-button:hover::after {
  border-right: 2px solid #e19797;
  border-bottom: 1px solid #e19797;
}
.low-contact .contact-thanks {
  text-align: center;
}
.low-contact .contact-thanks h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.low-contact .contact-thanks p {
  font-size: 18px;
  line-height: 1.8;
}

.low-news .title {
  background-image: url(../image/news-title-bg.jpg);
  background-size: cover;
  height: 340px;
}
.low-news .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-news .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.low-news .news-section {
  max-width: 1100px;
  margin: 0 auto;
}
.low-news .news-list {
  list-style: none;
}
.low-news .news-item {
  border-bottom: 1px solid #f2efeb;
  padding: 15px 0;
}
.low-news .news-item:first-child {
  border-top: 1px solid #f2efeb;
}
.low-news .news-item__link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
.low-news .news-item__date {
  margin-right: 20px;
}
.low-news .news-item__title {
  flex: 1;
}
.low-news .pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.low-news .pagination__list {
  display: flex;
  list-style: none;
}
.low-news .pagination__item {
  margin: 0 5px;
}
.low-news .pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #f2efeb;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.low-news .pagination__link:hover {
  background-color: #f2efeb;
}
.low-news .pagination__link--active {
  background-color: #e19797;
  border-color: #e19797;
  color: #fff;
}
.low-news .pagination__link--prev, .low-news .pagination__link--next {
  color: #e19797;
}
.low-news .news-detail {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.low-news .news-detail__header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f2efeb;
}
.low-news .news-detail__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.low-news .news-detail__date {
  color: #91806f;
  font-size: 15px;
}
.low-news .news-detail__content {
  margin-bottom: 30px;
}
.low-news .news-detail__content a {
  text-decoration: underline;
}
.low-news .news-detail__paragraph {
  margin-bottom: 20px;
  line-height: 1.8;
}
.low-news .news-detail__list {
  margin-bottom: 20px;
  line-height: 1.8;
  padding-left: 40px;
}
.low-news .news-detail__back {
  text-align: center;
}
.low-news .news__button {
  display: inline-block;
  padding: 10px 60px;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #523518;
}

.low-privacy .title {
  background-image: url(../image/privacy-title-bg.jpg);
  height: 340px;
}
.low-privacy .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-privacy .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.low-privacy .policy-content {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 140px 20px;
}
.low-privacy .policy-section {
  margin-bottom: 60px;
}
.low-privacy .policy-section__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f2efeb;
}
.low-privacy .policy-section__text {
  margin-bottom: 15px;
  line-height: 1.8;
}
.low-privacy .policy-section__list {
  margin-left: 20px;
  margin-bottom: 15px;
}
.low-privacy .policy-section__item {
  margin-bottom: 5px;
}
.low-privacy .policy-footer {
  text-align: right;
  margin-top: 30px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .pc,
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
  .header__inner {
    gap: 40px;
  }
  .header-navi {
    max-width: 660px;
  }
  .header-navi__list {
    gap: 0;
  }
  .header-navi__item {
    font-size: min(1.5vw, 14px);
  }
  .header-navi__link--primary {
    width: 120px;
  }
  .campaign__wrapper {
    grid-template-columns: 75px 1fr 300px;
    grid-template-rows: 145px 99px 1fr;
  }
  .campaign__text {
    padding: 120px 65px 30px 65px;
  }
  .campaign__title::before {
    left: auto;
  }
  .campaign__description {
    font-size: 14px;
  }
  .introduction__wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  .feature__inner {
    padding: 100px 20px 200px;
  }
  .feature__box {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 0;
    align-items: center;
  }
  .feature__box:nth-child(odd) {
    flex-direction: column-reverse;
    padding: 0;
  }
  .feature__text {
    padding: 0 20px;
  }
  .feature__image {
    flex: auto;
    width: 350px;
  }
  .menu__link {
    font-size: 20px;
  }
  .doctor__text-inner {
    width: 300px;
  }
  .doctor__position {
    margin-bottom: 10px;
  }
  .doctor__name::after {
    width: 100%;
  }
  .flow__content {
    padding: 140px 0 140px 5%;
  }
  .flow-chart__list::before {
    left: 30px;
    height: calc(100% - 40px);
  }
  .flow-chart__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .flow-chart__icon {
    position: relative;
    width: 60px;
    height: 60px;
  }
  .access__box {
    flex-direction: column;
  }
  .access__box iframe {
    width: 100%;
    height: 250px;
  }
  .news__list {
    grid-row: 1/2;
  }
  .news__button-box {
    grid-column: 1/3;
    margin-top: 20px;
    justify-self: center;
  }
  .footer__top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-navi__list {
    gap: 30px;
  }
  .mission__text.vision {
    flex-direction: column;
  }
  .mission__description {
    flex-direction: column;
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-profile__info {
    flex: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .doctor-profile__image {
    flex: 100%;
    height: 250px;
  }
  .line-section {
    gap: 40px;
  }
  .low-intro .mission__title h3 {
    margin-left: 0;
  }
  .low-intro .mission__text.vision {
    flex-direction: row-reverse;
  }
  .menu-page .treatment-card__description p {
    font-size: min(1.5vw, 14px);
  }
}
@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
  a,
  p,
  li {
    font-size: min(3.75vw, 14px);
  }
  .header__inner {
    height: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
  }
  .header__logo img {
    height: 30px;
  }
  .header__menu-button {
    display: block;
    height: 50px;
    width: 50px;
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 2000;
    cursor: pointer;
  }
  .header__menu-button span {
    width: 28px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #e19797;
    transition: all 0.3s;
    transform: rotate(0deg);
  }
  .header__menu-button .top {
    transform: translateY(-8px);
  }
  .header__menu-button.opened .top {
    transform: rotate(-45deg);
  }
  .header__menu-button.opened .middle {
    background: transparent;
    transform: translateX(30px);
  }
  .header__menu-button .bottom {
    transform: translateY(8px);
  }
  .header__menu-button.opened .bottom {
    transform: rotate(45deg);
  }
  .header-navi {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    background-color: #ffefea;
    transition: 0.3s;
    z-index: 1000;
    padding: 4rem;
  }
  .header-navi__list {
    flex-direction: column;
  }
  .header-navi__link--primary {
    width: 240px;
    height: 48px;
  }
  .header-navi__item {
    font-size: 16px;
  }
  .header-navi.opened {
    top: 0;
  }
  .mv {
    height: 610px;
  }
  .mv__title {
    top: 60%;
    left: 20px;
  }
  .mv__title--main {
    font-size: min(6.8vw, 36px);
  }
  .mv__title--sub {
    font-size: min(4vw, 24px);
    margin-left: 176px;
  }
   .campaign__wrapper {
    grid-template-columns: 15px 1fr 15px;
    grid-template-rows: 15px 200px 1fr;
  }
  .campaign__box {
    grid-row: 1/4;
    grid-column: 1/4;
  }
  .campaign__text {
    padding: 220px 30px 30px;
  }
  .campaign__title {
    font-size: 20px;
  }
  .introduction__inner {
    padding: 100px 20px;
  }
  .introduction__text-title {
    font-size: min(6.5vw, 30px);
    margin-bottom: 20px;
  }
  .introduction__marquee p {
    font-size: 80px;
  }
  .feature__title {
    font-size: min(28px, 6vw) !important;
    margin: 30px 0 30px 30px;
  }
  .menu__box {
    padding: 40px 15px;
  }
  .doctor__box {
    flex-direction: column-reverse !important;
    gap: 20px;
  }
  .doctor__image {
    max-width: 500px;
    width: auto;
  }
  .doctor__text {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .flow__inner {
    flex-direction: column;
  }
  .flow__content {
    padding: 60px 0 240px;
  }
  .flow__title {
    width: 100%;
    writing-mode: horizontal-tb;
    padding: 40px 20px 40px;
  }
  .flow__title--sub::before {
    top: 50%;
    left: -60px;
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, #bcb8b9 0%, transparent 100%);
  }
  .flow--main {
    font-size: 28px;
    letter-spacing: 0.33em;
    color: #ffffff;
    font-weight: 400;
  }
  .flow--sub::before {
    display: none;
  }
  .flow__img {
    width: 45%;
    height: 150px;
    object-fit: cover;
  }
  .flow__img--top {
    left: 0px;
    bottom: -200px;
    z-index: -1;
  }
  .flow__img--bottom {
    right: 0px;
    bottom: -200px;
    z-index: -1;
  }
   .flow-chart {
    width: 100%;
  }
   .flow-chart__list {
    width: 100%;
    padding: 0 20px;
  }
   .flow-chart__list::before {
    left: 60px;
  }
   .flow-chart__number {
    font-size: 20px !important;
  }
   .flow-chart__label {
    font-size: 18px !important;
  }
   .flow-chart__item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    position: relative;
  }
   .flow-chart__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
   .flow-chart__icon {
    position: relative;
    width: 78px;
    height: 78px;
  }
   .flow-chart__icon img {
    width: 100%;
    height: auto;
    display: block;
  }
   .flow-chart__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
   .access__table th,
  .access__table td {
    display: block;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .news__inner {
    padding: 20px;
  }
  .news__box {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
  }
  .news__title {
    text-align: center;
  }
  .footer__top {
    align-items: center;
  }
  .footer__contact {
    margin-left: 0px;
    text-align: center;
  }
  .footer__contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer__tel::before {
    position: absolute;
    top: 4px;
  }
  .footer__sns {
    justify-content: flex-end;
  }
  .footer-navi {
    flex-direction: column;
  }
  .footer-navi__list {
    flex-direction: column;
    gap: 10px;
  }
  .line-button,
  .web-contact {
    width: 280px !important;
  }
  .low-intro .mission__inner {
    padding: 50px 20px;
  }
  .low-intro .mission__title h3 {
    width: 100%;
    font-size: min(5vw, 24px);
  }
  .low-intro .mission__text {
    display: flex;
    flex-direction: column !important;
    padding: 0;
  }
  .low-intro .mission__description {
    width: 100%;
  }
  .low-intro .mission__image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .low-intro .feature__inner {
    padding: 0;
  }
  .low-intro .photo__images {
    display: flex;
    justify-content: space-between;
  }
  .low-intro .photo__images img {
    width: 100%;
  }
  .menu-description__box {
    display: flex;
    flex-direction: column-reverse !important;
    gap: 20px;
  }
  .menu-description__text {
    width: 100% !important;
  }
  .menu-description__image {
    width: 100% !important;
  }
  .menu-page .title__text {
    font-size: min(8vw, 36px);
  }
  .menu-page .treatment-card__description p {
    font-size: min(3vw, 14px);
  }
  .menu-page .menu-flow__inner {
    width: 90%;
    padding: 50px 0;
  }
  .menu-page .menu-flow--main {
    font-size: min(7.5vw, 24px);
  }
  .menu-page .menu-flow__box {
    flex-direction: column;
  }
  .menu-page .menu-flow__box h4 {
    width: 100%;
    font-size: min(6vw, 24px);
  }
  .menu-page .menu-flow__box p {
    width: 100%;
  }
  .menu-page .menu-flow__number {
    font-size: min(8vw, 36px);
    margin-right: 0;
  }
  .menu-page .price__inner {
    padding: 140px 20px 30px;
  }
  .menu-page .price__table th {
    font-size: min(3vw, 18px) !important;
    line-height: 1.8 !important;
  }
  .menu-page .price__table td {
    font-size: min(3vw, 18px) !important;
    padding: 10px !important;
    line-height: 1.8 !important;
  }
  .menu-page .menu-feature__inner {
    padding: 30px 20px;
  }
  .menu-page .menu-feature__inner p {
    width: 100%;
  }
  .menu-page .menu-feature__inner ul {
    width: 95%;
  }
  .menu-page .menu-caution__inner {
    padding: 30px 20px;
  }
  .menu-page .menu-caution__inner p {
    width: 100%;
  }
  .menu-page .menu-caution__inner ul {
    width: 95%;
  }
  .photo__images {
    flex-direction: column;
    gap: 20px;
  }
  .menu-description__box {
    flex-direction: column-reverse !important;
    gap: 20px;
  }
  .price__table-wrapper {
    overflow-x: scroll;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .line-section {
    justify-content: center;
  }
  .news-item__link {
    flex-direction: column;
  }
  .news-item__date {
    margin-bottom: 5px;
  }
  .low-doctor .doctor-profile__content {
    padding: 0 !important;
  }
  .low-doctor .doctor-profile__info {
    margin: 0 10px;
  }
  .low-doctor .doctor-details__title {
    flex: 0 0 80px !important;
    font-size: min(4vw, 14px);
  }
  .low-doctor .doctor-details__list-item {
    font-size: min(4vw, 14px);
  }
   .low-news .title {
    background-image: url(../image/news-title-bg.jpg);
  }
   .low-news .news-list {
    list-style: none;
  }
   .low-news .news-item {
    border-bottom: 1px solid #f2efeb;
    padding: 15px 0;
  }
   .low-news .news-item__link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
  }
   .low-news .news-item__date {
    flex: 0;
  }
  .low-contact .contact-intro__text {
    font-size: min(3.5vw, 16px);
  }
  .low-privacy .title__text {
    font-size: min(7vw, 36px);
  }
  .low-thanks .breadcrumb-list > li {
    font-size: min(2.3vw, 14px);
  }
  .low-thanks .contact-thanks {
    text-align: left;
  }
  .low-thanks .contact-thanks p {
    font-size: min(3.75vw, 14px);
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .title__text {
    font-size: 24px;
  }
  .breadcrumb-list {
    font-size: 12px;
  }
  .footer__tel {
    font-size: 28px;
  }
  .arrow-button {
    width: 100%;
    max-width: 300px;
    height: auto;
    font-size: 16px;
    padding: 12px;
  }
  .form-label {
    font-size: 16px;
  }
  .form-control,
  .form-textarea {
    font-size: 14px;
  }
  .news-detail__title {
    font-size: 20px;
  }
  .policy-section__title {
    font-size: 20px;
  }
  .policy-section__text {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */

/* =============== */
/* ↓ 追記CSSここから ↓ */
/* =============== */

.low-terms .title,
.low-minors .title,
.low-commerce .title,
.low-cancel .title,
.low-faq .title {
  background-image: url(../image/privacy-title-bg.jpg);
  height: 340px;
}
.low-terms .title__inner,
.low-minors .title__inner,
.low-commerce .title__inner,
.low-cancel .title__inner,
.low-faq .title__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 82px 20px 0 20px;
}
.low-terms .title__text,
.low-minors .title__text,
.low-commerce .title__text,
.low-cancel .title__text,
.low-faq .title__text {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.terms-content,
.minors-content,
.commerce-content,
.cancel-content,
.faq-content {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 140px 20px;
}
.terms-section,
.minors-section,
.commerce-section,
.cancel-section,
.faq-section {
  margin-bottom: 60px;
}
.terms-section__title,
.minors-section__title,
.commerce-section__title,
.cancel-section__title,
.faq-section__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f2efeb;
}
.terms-section__text,
.minors-section__text,
.commerce-section__text,
.cancel-section__text,
.faq-section__text {
  margin-bottom: 15px;
  line-height: 1.8;
}
.terms-section__list,
.minors-section__list,
.commerce-section__list,
.cancel-section__list {
  margin-left: 20px;
  margin-bottom: 15px;
}
.terms-section__item,
.minors-section__item,
.commerce-section__item,
.cancel-section__item {
  margin-bottom: 5px;
}
.terms-footer {
  text-align: right;
  margin-top: 30px;
  font-size: 0.9rem;
}

.commerce__table {
  width: 100%;
  border: 1px solid #e7e7ed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
  margin-bottom: 10px;
}
.commerce__table th,
.cancel__table th {
  background-color: #714c4c;
  border: 1px solid #e7e7ed;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 20px;
}
.commerce__table td {
  border: 1px solid #e7e7ed;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  padding: 18px 20px;
  text-align: left;
}

.cancel__table {
  width: 100%;
  border: 1px solid #e7e7ed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  margin-bottom: 10px;
}
.cancel__table td {
  border: 1px solid #e7e7ed;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  padding: 18px 20px;
}

.faq__item {
  margin-bottom: 30px;
}
.faq__question,
.faq__answer {
  padding: 1em 1em 1em 3em;
  position: relative;
}
.faq__question {
  font-weight: 700;
}
.faq__question::before,
.faq__answer::before {
  position: absolute;
  border-radius: 50%;
  display: block;
  font-family: var(--en);
  font-weight: 400;
  top: 0.75em;
  left: 0;
  text-align: center;
  line-height: 2;
  width: 2em;
  height: 2em;
}
.faq__question::before {
  content: "Q";
  background-color: #e19797;
  border: 1px solid #e19797;
  color: #FFF;
}
.faq__answer::before {
  content: "A";
  background-color: #FFF;
  border: 1px solid #e19797;
  color: #e19797;
}

.footer-navi {
  gap: 10px 30px;
}
.footer-navi__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navi__list {
  gap: 10px 50px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .footer-navi__list {
    gap: 10px 30px;
  }
}

@media (max-width: 768px) {
  .low-terms .title__text,
  .low-minors .title__text,
  .low-commerce .title__text,
  .low-cancel .title__text,
  .low-faq .title__text {
    font-size: min(7vw, 36px);
  }

  .commerce__table th,
  .cancel__table th {
    font-size: min(3vw, 18px) !important;
    line-height: 1.8 !important;
  }
  .commerce__table td,
  .cancel__table td {
    font-size: min(3vw, 18px) !important;
    padding: 10px !important;
    line-height: 1.8 !important;
  }
}

@media (max-width: 480px) {
  .terms-section__title,
  .minors-section__title,
  .commerce-section__title,
  .cancel-section__title,
  .faq-section__title {
    font-size: 20px;
  }
  .terms-section__text,
  .minors-section__text,
  .commerce-section__text,
  .cancel-section__text,
  .faq__item {
    font-size: 14px;
  }
}

.commerce__kakuta {
  height: min(3vw, 18px);
}