/* =====================
  Reset / Base
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,li,dl,dt,dd,
figure,figcaption,
blockquote {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
ul,ol {
  list-style: none;
}
img,picture {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
:focus {
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


html {
  font-size: 62.5%;
}
body {
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #f2f2f2;
  color: #333;
}
main{
  background-color: #ffffff;
  margin: 0 auto;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
/* Color*/
:root {
  --color-main: #3f1e17;
  --color-sub: #9d5d62;
  --color-accent: #d44e58;
  --color-main-gradient: linear-gradient(135deg, #c1a49e, #47342f);
  --color-cta-gradient: linear-gradient(to right,#d44e58 0%,#f17479 50%,#d44e58 100%);
}
.text-main {
  color: var(--color-main);
}
.text-sub {
  color: var(--color-sub);
}
.text-accent {
  color: var(--color-accent);
}
.bg-sub{
  background-color: var(--color-sub);
}
.bg-main-gradient {
  background: var(--color-main-gradient);
}

/* Font*/
.u-font-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
   font-weight: 400;
}

/* Common　*/
section{
  margin: 0 auto;
  padding: 10rem 2.4rem
}
h2.c-heading{
  font-size: 4rem;
  font-weight: bold;
  color: #1f5f4a;
  text-align: center;
  margin-bottom: 2.4rem;
}
h2.c-heading::before{
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  margin: 0 auto;
  display: block;
}
.section-title {
  font-size: 28px;
  line-height: 1.6;
}
.l-flex{
  display:flex;
  align-items: center;
  justify-content: center;
}

/* Botton　*/
.cta__btn{
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 50px;
  padding: 10px 40px 14px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: .3s;
}
.cta__btn:hover{
  box-shadow: none;
}
.cta__btn--web{
  color: #ffffff;
  letter-spacing: -0.05em;
  background: var(--color-cta-gradient);
}
.cta__btn--tel{
  border: 2px solid #d44e58;
  background-color: #fff;
  color: var(--color-accent);
}
.cta__btn--tel::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 3px;
}

.pc-none{
  display: none;
}
@media (max-width: 1024px) {
  .cta__btn{
    padding-left:32px;
    padding-right: 32px;
  }
}

@media (max-width: 640px) {
  section {
    margin: 0 auto;
    padding: 8rem 2.4rem;
  }
  .pc-none{
    display: block;
  }
  .sp-none{
    display: none;
  }
}


body {
  font-family: "Shippori Mincho", serif;
  color: #3f1e17;
  margin: 0;
  background-color: #f2f2f2;
}
h1, h2, h3,
.section-title{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 48px);
  text-align: center;
}
p.expl{
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  text-align: left;
}
@media (max-width: 640px) {
  h2{
    font-size: 44px;
    font-size: 4.4rem;
    font-weight: bold;
  }
}

/* header */ 
#header{
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-radius:50px ;
  max-width: 1440px;
  margin: 10px auto;
  padding: 14px;
}
#header.l-flex{
  justify-content: space-between;
}
#header .header__logo{
  width: 220px;
  margin: 0 30px;
}
#header .header__cta{
  gap:16px;
}
#header .header__cta p{
  text-align: center;
  font-size: 1.6rem;
  font-size: 16px;
  font-weight: 500;
}
#header .header__cta .cta__btn--web{
  font-size: 24px;
  font-size: 2.4rem;
  padding: 10px 32px 14px;
}
#header span.header__time {
  text-align: center;
  padding: 2px 10px;
}
#header .header__clinic-block{
  display:none ;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#header .header__clinic-block p{
  background-color: #ffffff;
  text-align: center;
  padding: 2px 10px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  #header .header__logo{
    width: 180px;
    margin: 0 20px;
  }
  #header .header_cta p{
    font-size: 1.4rem;
    font-size: 14px;
  }
  #header .header__cta .cta__btn--web{
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #header{
    background: transparent;
    backdrop-filter:unset;
    margin: 0;
  }
  #header.l-flex {
    font-size: 20px;
  }
  #header .header__cta {
    display: none;
  }
  #header .header__logo{
    width: clamp(160px, 4vw, 220px);
    margin: 0;
  }
  #header .header__clinic-block {
    display: block;
  }
  #header span.header__time {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 300;
  }
}

/* FV */
#fv {
  background-image: url(../images/fv_bg_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items:center;
}
#fv .fv-inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: auto;
}
#fv .fv-text {
  width: 50%;
}
#fv .fv-text h1 {
  font-size: 36px;
  line-height: 1.4;
  padding: 100px 0 60px;
}

@media (max-width: 1024px) {
  #fv{
    padding: 10rem 0;
  }
  #fv .fv-text {
    width: 58%;
}
}
@media (max-width: 768px) {
  #fv{
    background-image: url(../images/fv_bg_sp.png);
    padding-bottom: 20rem;
    min-height: auto;
  }
  #fv .fv-inner {
    margin-left: 0;
  }
  #fv .fv-text {
    width: 80%;
  }
}

/* CTA */
#cta {
  background-image: url(../images/cta_bg.png);
  padding: clamp(16px, 4vw, 40px);
} 
#cta .cta__images{
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  justify-content: center;
  max-width: 790px;
  margin: 0 auto 40px;
}
#cta .cta__inner{
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding:  clamp(2rem, 3vw, 3rem);
  max-width: 1356px;
  margin: auto;
  text-align: center;
}
#cta .cta__inner .cta__message{
  font-size: clamp(2.4rem, 1.5vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 24px;
  white-space: nowrap;
}
#cta .cta__inner .cta__message::before,
#cta .cta__inner .cta__message::after{
  background: linear-gradient(135deg, #47342f, #c1a49e);
  content: "";
  height: 0.125rem;
  width: 3.2rem;
  display: inline-block;
  vertical-align: middle;
}
#cta .cta__inner .cta__message::before{
  transform: rotate(65deg);
}
#cta .cta__inner .cta__message::after{
  transform: rotate(120deg);
}
#cta .cta__inner .l-flex{
  justify-content: center;
  gap: 20px;
}

#cta .cta__inner .cta__btn--web::before{
  content: "\f3cd";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 3px;
}
#cta .cta__inner .cta__item--web.is-tel-hidden{
  max-width: 400px;
  width: 100%;
}
#cta .cta__inner .cta__item--web.is-tel-hidden a{
  width: 100%;
}

#cta .cta__inner .cta__item--tel.hidden {
  display: none;
}

@media (max-width: 768px) {
  #cta {
    background-image:none;
    background-color: #f6edee;
    position: relative;
    padding: 15%;
  }
  #cta .cta__images{
    position: absolute;
    top:-92%;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
  }
  #cta .cta__inner{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px;
  }
  #cta .cta__inner .cta__message{
    margin-bottom: 10px;
    font-size: clamp(2rem, 1.5vw, 2.4rem);
  }
}
@media (max-width: 640px) {
  #cta .cta__inner .cta__message{
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/* 症例 */
.cases {
  background: #eae5e5;
  padding: 80px 20px;
  text-align: center;
}
p.division{
  padding: 0 48px 4px;
  font-size: 3.2rem;
  font-weight: 600;
  color: #e96a7a;
  text-align: center;
}
.balloon {
  background: #fff;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
p.division span{
  font-size: 4.8rem;
  line-height: 1.2;
}
.cases h2{
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}
.cases h2 span{
  display: inline-block;
  font-size: 48px;
}
.cases h2 span.line{
  border-bottom: 1px solid #333;
  font-size: 3.8rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.cases h2 span.accent{
  font-size: 56px;
}
.cases h2 img{
  padding: 4rem 0 1rem;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.case_list{
  max-width: 1040px;
  margin: 0 auto;
}
.cases .case_item{
  background-color: #fff;
  border:20px solid #f4f2f2;
  width: 100%;
  margin-bottom: 60px;
}
.cases .case_item:last-child {
    margin-bottom:0;
}
.cases .case_item .item_inner{
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
}
.cases h3.case_title{
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 28px;
  padding-top: 16px;
  padding-left: 100px;
  line-height: 6.4rem;
  text-align: left;
}
.cases h3.case_title::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 80px;
}
.cases .case01 h3.case_title::before {
  background: url("../images/case01_label.png") no-repeat center / contain;
}
.cases .case02 h3.case_title::before {
  background: url("../images/case02_label.png") no-repeat center / contain;
}
.cases .case03 h3.case_title::before {
  background: url("../images/case03_label.png") no-repeat center / contain;
}
.cases .case_images {
  margin-bottom: 40px;
}
.cases .case_images img {
  width: 100%;
  height: auto;
  display: block;
}
.cases .case_images .case_swiper{
  padding-bottom: 40px; 
}
.cases .case_images .case_swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
}
.cases .case_images .case_swiper .swiper-button-next,
.cases .case_images .case_swiper .swiper-button-prev {
  color: #fff;
}
.cases .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.cases .swiper-pagination-bullet-active {
  background-color: #47342f;
}
.cases .case_info {
  border: 1px solid #776562;
  padding: 20px;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.case_info dl {
  justify-content: flex-start;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.cases .case_info dl dt{
  background-color: #776562;
  color: #fff;
  width: 70px;
  text-align: center;
}
.cases .case_info dl dd{
  text-align: left;
}
@media (max-width: 1024px) {
  .cases h2 span.line {
    font-size: 3.2rem;
  }
  .cases h2{
  font-size: 40px;
  }
.cases h2 span{
  font-size: 40px;
}
}
@media (max-width: 768px) {
  .cases h3.case_title {
    font-size: 2.6rem;
    padding-left: 70px;
  }
  .cases h3.case_title::before {
    width: 80px;
  }
}
@media (max-width: 640px) {
  .cases {
    padding-left: 0;
    padding-right: 0;
  }
  .cases h2 span.line {
    font-size: 56px;
    font-size: 5.66rem;
    margin-bottom: 24px;
  }
  .cases h2,
  .cases h2 span.text-sub{
    font-size: 60x;
    font-size: 6rem;
    letter-spacing: -0.05em;
  }
  .cases h2 span.text-sub{
    margin-top: 16px;
  }
  .cases .case_item {
    border: 0;
  }
  .cases h3.case_title::before {
    left: -18px;
  }
  .cases .case_item .item_inner {
    padding: 40px 20px;
  }
  .cases .case_item .item_inner h3.case_title {
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
  }
  .cases .case_item .item_inner .expl{
    font-size: 26px;
    font-size: 2.6rem;
  }
  .cases .case_item .item_inner .case_info dl{
    font-size: 25px;
    font-size: 2.5rem;
  }
  .cases .case_info dl dt {
    min-width: 106px;
  }
}
#problem{
  background-image: url(../images/problem_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#problem .problem__inner{
  max-width: 1040px;
  margin: 0 auto;
}
#problem ul{
  margin-top: 60px;
  margin-right: 0;
  margin-left: auto;
  max-width: 490px;
}
#problem ul li{
  width: 100%;
  font-size: clamp(2.4rem,4vw,2.8rem);
  font-weight: 500;
  margin-bottom: 10px;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari対策 */
}
#problem ul li::before{
  content: "";
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  #problem ul {
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  #problem{
    padding-top:60px;
    padding-bottom: 60px;
  }
  #problem .problem__title{
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: -0.06em;
  }
  #problem ul {
    margin-top: 30px;
    max-width: 420px;
  }
  #problem ul li{
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
  }
}

#result {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,200,200,0.3) 0%, rgba(255,200,200,0)30%),
    radial-gradient(circle at 90% 90%, rgba(255,200,200,0.4) 0%, rgba(255,200,200,0) 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 60%),
    linear-gradient(to right, #FCFAFA, #f2e9e9);
}
.because{
  width: 540px;
  text-align: center;
  margin: 0 auto;
  padding-right: 320px;
}

.result__content h2 p{
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 24px;
  background-color: #776562;
  color: #fff;
  padding: 12px 70px;
  display: inline-block;
  transform: skewX(-20deg);
  background: linear-gradient(135deg, #c1a49e, #47342f);
}

.result__content h2 span{
  display: inline-block;
  transform: skewX(20deg);
  font-weight: 400;
  font-size: 42px;
}
.result__content h2 span img{
  display: inline;
  width: 220px;
  vertical-align: middle;
  margin-right: 10px;
}
.result__content h2 img.title_image{
  width: 676px;
  text-align: center;
  margin: 0 auto;
}
.result__content p.result_sub_title{
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin: 16px auto 100px;
}
.result__point-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  margin-top: 40px;
  max-width: 1240px;
  margin: 0 auto;
  counter-reset: point;
}
.result__point-list .result__point-item{
  background-color: #fff;
  font-size: 2.8rem;
  padding: 20px;
  width: 100%;
}
.result__point-list .result__point-item::before {
  left: 30px;
  top: 2px;
  transform: translateY(-50%);
  width: 58px;
  height: 50px;
}
.result__point-list .result__point-item::after {
  left: 90px;
  top: -46px;
  font-size: 44px;
}
.result__points .result__point-item{
  counter-increment: point;
  position: relative;
  padding-left: 30px;
}
.result__points .result__point-item::before {
  content: "";
  background-image: url(../images/point_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
.result__points .result__point-item::after {
  content: counter(point, decimal-leading-zero);
  position: absolute;
  font-weight: normal;
  color: #9d5d62;
}
@media (max-width: 1024px) {
  .result__content h2 span img {
    width: 180px;
  }
  .result__content h2 span {
    font-size: 32px;
  }
.result__content h2 img.title_image {
    width: 620px;
}
.result__point-list .result__point-item {
    font-size: 2.4rem;
}
.result__points .result__point-item {
    padding-left: 20px;
}
}
@media (max-width: 768px) {
  .result__point-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .result__content h2 img.title_image {
    width: 90%;
  }
}
@media (max-width: 640px) {
  .result__content h2 img.title_image {
    width: 100%;
  }
  .result__point-list .result__point-item {
    font-size: 2.8rem;
    padding-top: 24px;
    padding-bottom: 24px;
    font-weight: bold;
  }
}

#feature{
  max-width: 1280px;
  padding: 120px 20px;
  counter-reset: point;
}
#feature .feature_detail{
  background-color: #eae5e566;
  position: relative;
  padding: clamp(20px, 4vw, 50px);
  background: linear-gradient(120deg, #eae5e566 70%, #c1a49e 70%, #47342f 100%);
  margin-bottom: 100px;
  justify-content: space-between;
  align-items: start;
}
#feature .feature_detail:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(120deg, #47342f 0%, #c1a49e 30%, #eae5e566 30%);
}
#feature .feature_detail h3::before {
  content: "";
  left: 0;
  top: -45px;
  transform: translateY(-50%);
  width: 62px;
  height: 50px;
  background-image: url(../images/point_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
#feature .feature_detail h3::after {
  content: "";
  left: 64px;
  top: -100px;
  font-size: 52px;
      content: counter(point, decimal-leading-zero);
    position: absolute;
    font-weight: normal;
    color: #9d5d62;
}
#feature .feature_detail .feature_text_wrapper {
  width: 55%;
}
#feature .feature_detail .feature_text_wrapper h3{
  position: relative;
  counter-increment: point;
  font-size: 48px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.5;
  padding-left: 0;
  font-size: clamp(32px, 4vw, 48px);
}
#feature .feature_detail:nth-child(3){
  padding-top: 30px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3{
  font-size: 32px;
  margin-bottom: 10px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper img.cross{
  width: 60px;
  margin-left: 180px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3.point04{
  margin-top: 10px;
  margin-bottom: 30px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3.point03::before{
  top: -25px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3.point04::before{
  top: -16px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3.point03::after{
  top: -80px;
}
#feature .feature_detail:nth-child(3) .feature_text_wrapper h3.point04::after{
  top: -72px;
}
#feature .feature_detail .feature_text_wrapper p{
  font-size: 18px;
  font-size: clamp(16px, 4vw, 18px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}
#feature .feature_detail .feature_text_wrapper .feature_point{
  font-size: 24px;
  margin-bottom: 10px;
}
#feature .feature_detail .feature_text_wrapper .feature_point p{
  background-color: #fff;
  padding: 8px 16px;
  display: inline-block;
  font-family: inherit;
  font-size: 24px;
}
#feature .feature_detail .feature_image_wrapper{
  position: relative;
  width: 45%;
  max-height: 518px;
  height: 100vh;
}
#feature .feature_detail:last-child .feature_image_wrapper{
  max-height: 320px;
}
#feature .feature_detail .feature_image_wrapper img{
    position: absolute;
    width: 100%;
    right: -16%;
    top: -16%;
}
#feature .feature_detail:nth-child(even) .feature_image_wrapper img{
  left: -16%;
}
#feature .feature_follow-up{
  background-color: #fff;
  padding: 20px;
  margin-top: 32px;
}
#feature .feature_follow-up dl{
  display: grid;
  grid-template-columns: 100px 1fr; 
  gap: 12px 0; 
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#feature .feature_follow-up dl dt{
  background-color: #9d5d62;
  color: #fff;
  text-align: center;
  padding: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
#feature .feature_follow-up dl dt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 10px solid #9d5d62; /* 矢印の色 */
}
#feature .feature_follow-up dt:last-of-type {
  grid-column: 1;
  width: max-content; /* 中身に合わせる */
  white-space: nowrap;
  padding: 4px 16px;
}
#feature .feature_follow-up dl dt:last-of-type::after {
  content: none;
}

#feature .feature_follow-up dl dd{
  background-color: #f4f2f2;
  padding: 4px 16px;
  display: flex;
  align-items: center;
}
#feature .feature_follow-up dd:last-of-type {
    padding-left: 110px;
}
@media (max-width: 1024px) {
#feature .feature_detail .feature_text_wrapper {
    width: 65%;
}
  #feature .feature_follow-up dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px 0;
    font-size: 16px;
  }
  #feature .feature_follow-up dd:last-of-type {
    padding-left: 90px;
  }
}
@media (max-width: 768px) {
  #feature .feature_detail.l-flex{
    flex-direction: column;
    gap: 40px;
  }
  #feature .feature_detail .feature_text_wrapper {
    width: 100%;
  }
  #feature .feature_detail .feature_image_wrapper,
  #feature .feature_detail:last-child .feature_image_wrapper {
    width: 100%;
    max-height: fit-content;
  }
  #feature .feature_detail .feature_image_wrapper img,
  #feature .feature_detail:nth-child(even) .feature_image_wrapper img {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
  #feature .feature_detail:nth-child(even) {
    flex-direction: column;
    background: linear-gradient(120deg, #eae5e566 70%, #c1a49e 70%, #47342f 100%);
  }
  #feature .feature_detail h3::after {
    top: -80px;
  }
  #feature .feature_detail h3::before {
    top: -25px;
  }
  #feature .feature_detail .feature_text_wrapper .feature_point {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #feature .feature_detail .feature_text_wrapper .feature_point p {
    padding: 8px 12px;
    font-size: 22px;
  }
}
  @media (max-width: 640px) {
  #feature .feature_detail:last-child{
    margin-bottom: 0;
  }
  #feature .feature_detail .feature_text_wrapper h3 {
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: bold;
  }
  #feature .feature_detail .feature_text_wrapper p {
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: -0.01rem;
  }
  #feature .feature_detail .feature_text_wrapper .feature_point{
    font-size: 40px;
    font-size: 4rem;
    text-align: center;
  }
  #feature .feature_detail .feature_text_wrapper .feature_point p {
    padding: 8px 12px;
    font-size: 32px;
    font-size: 3.2rem;
    max-width: 540px;
    display: block;
  }
  #feature .feature_detail:nth-child(3) .feature_text_wrapper h3 {
    font-size: 40px;
    font-size: 4rem;
  }
  #feature .feature_follow-up dl {
    grid-template-columns: 90px 1fr;
  }
  #feature .feature_follow-up dl dt::after {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
  }
  #feature .feature_follow-up dl dt,
  #feature .feature_follow-up dl dd {
    font-size: 22px;
    font-size: 2.2rem;
  }
  #feature .feature_follow-up dt:last-of-type {
    padding: 0 0 0 10px;
}
  #feature .feature_follow-up dd:last-of-type {
    padding-left: 140px;
  }
}

#limited_menu{
  background-color: #eae5e5;
  padding: 80px 40px;
}
#limited_menu h2.limited_menu__title{
  font-size: 48px;
  color: #fff;;
  text-align: center;
  margin-bottom: 60px;
  background-image: url(../images/limited_menu_title_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1.8;
  padding-bottom: 34px;
}
#limited_menu .limited_menu--special_set,
#limited_menu .limited_menu--surgical_facelift{
  max-width: 1040px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 60px 60px;
  margin-bottom: 80px;
  position: relative;
  outline: 2px solid #c1a49e;
  outline-offset: -20px;
}
#limited_menu h3{
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 20px;
  font-size: 32px;
  width: fit-content;
  position: absolute;
  left: -20px;
  top: -20px;
}
#limited_menu .limited_menu--special_set h3{
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
#limited_menu .limited_menu--special_set .limited_price{
  font-size: 64px;
  background: linear-gradient(to bottom,#d44e58 0%,#f17479 50%,#d44e58 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  transform: skew(-10deg);
}
#limited_menu .limited_menu--surgical_facelift h3{
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

#limited_menu .limited_menu--special_set dl{
  display: grid;
  grid-template-columns: 120px 1fr; 
  gap: 12px 20px; 
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#limited_menu .limited_menu--special_set dl dt{
  background-color: #9d5d62;
  color: #fff;
  text-align: center;
  padding: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#limited_menu .limited_menu--special_set dl dt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 10px solid #9d5d62; /* 矢印の色 */
}
#limited_menu .limited_menu--special_set dl dt:last-of-type::after {
  content: none;
}
#limited_menu .limited_menu--special_set dl dd{
  font-weight: bold;
}
#limited_menu .limited_menu--surgical_facelift ul{
  padding-left: 40px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#limited_menu .limited_menu--surgical_facelift ul li {
  position: relative;
  padding-left: 20px;
}

#limited_menu .limited_menu--surgical_facelift ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px; /* ←ここでサイズ調整 */
  color: #47342f;
}
@media (max-width: 1024px) {
  #limited_menu h2.limited_menu__title {
    font-size: 28px;
    padding-bottom: 20px;
  }
  #limited_menu{
    padding: 80px 20px;
  }
  #limited_menu h3 {
    font-size: 24px;
  }
  #limited_menu .limited_menu--special_set, 
  #limited_menu .limited_menu--surgical_facelift {
    padding: 60px 40px 60px;
  }
  #limited_menu .limited_menu--special_set{
    padding-top: 50px;
  }
  #limited_menu .limited_menu--special_set dl {
    grid-template-columns: 90px 1fr;
    gap: 12px 16px;
    font-size: 20px;
  }
  #limited_menu .limited_menu--special_set dl dt::after {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
  }
  #limited_menu .limited_menu--surgical_facelift ul {
    padding-left: 20px;
  }
  #limited_menu .limited_menu--surgical_facelift ul li{
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  #limited_menu h2.limited_menu__title{
    font-size: 34px;
    font-size: 3.4rem;
    background-image: url(../images/limited_menu_title_bg_sp.png);
    background-size: 100%;
    line-height: 1.3;
    padding: 8px;
    height: 142px;
    font-weight: bold;
  }
  #limited_menu .limited_menu--surgical_facelift {
    margin-bottom: 0;
  }
  #limited_menu h3 {
    font-size: 32px;
    font-size: 3.2rem;
  }
  #limited_menu .limited_menu--special_set dl dt,
  #limited_menu .limited_menu--special_set dl dd {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #limited_menu .limited_menu--surgical_facelift ul li{
    font-size: 26px;
    font-weight: 2.6rem;
  }
}
#result--highlight {
  padding: 0;
}
#result--highlight .result__points{
  background-color: #efe1e1;
}
#limited_menu .limited_menu--special_set dl {
  grid-template-columns: 120px 1fr;
}
#limited_menu .limited_menu--special_set dl dt::after {
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  }
#result--highlight .result__points .result__inner{
  padding: 120px 20px 0;
}
#result--highlight .result__points p{
  text-align: center;
  max-width: 330px;
  margin: 24px auto 0;
}
#result--highlight .result__points .result_title p{
    max-width: 100%;
    margin: 0 auto 80px;
  }
#result--highlight .result__divider{
  position: relative;
  margin-bottom: 60px;
}
#result--highlight .result__divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 120px solid #efe1e1;
}
#result--highlight .result__divider p{
  text-align: center;
  font-size: 48px;
  z-index: 10;
  position: inherit;
  padding-bottom: 44px;
}
@media (max-width:640px) {
  #result--highlight .result__inner{
    padding-left: 20px;
    padding-right: 20px;
  }
  #result--highlight .result__points .result__inner {
    padding: 70px 20px 0;
  }
}
#cases--secondary .case04 img{
  margin-bottom: 40px;
}
#cases--secondary .case04 img:last-child{
  margin: 0;
}
#doctor {
  background-color: #eae5e566;
}
#doctor .doctor__inner{
  max-width: 1240px;
  margin: 0 auto;
}
#doctor h2.section-title{
  margin-bottom: 32px;
}
#doctor h2.section-title p{
  font-size: clamp(32px, 4vw, 48px);
}
#doctor h2.section-title p.text-sub{
  font-size: clamp(28px, 4vw, 40px);
}
#doctor h2.section-title p span{
  font-size: 24px;
  vertical-align: middle;
}
#doctor .doctor__inner .l-flex{
  gap: clamp(16px, 4vw, 40px);
}
#doctor .doctor__inner .doctor__message,
#doctor .doctor__inner .doctor__career,
#doctor .doctor__inner .doctor__affiliation {
  background-color: #fff;
  padding: clamp(20px, 4vw, 50px);
}
#doctor .doctor__inner .doctor__message{
  font-size: 18px;
  margin-bottom:  clamp(16px, 4vw, 40px);
  align-items: flex-start;
}
#doctor .doctor__inner .doctor__message strong{
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
}
#doctor .doctor__inner .doctor__message .u-font-gothic{
  line-height: 1.8;
}
#doctor .doctor__inner .doctor__career,
#doctor .doctor__inner .doctor__affiliation {
  flex-basis: 50%;
  align-self: stretch;
}
#doctor .doctor__inner .doctor__career .doctor__career--title,
#doctor .doctor__inner .doctor__affiliation .doctor__affiliation--title{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
#doctor .doctor__inner .doctor__career dl{
  display: grid;
  grid-template-columns: 100px 1fr; 
  gap: 12px 20px; 
  font-size: clamp(16px, 4vw, 18px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  align-items: center;
}
#doctor .doctor__inner .doctor__career dl dt{
  color: #fff;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  clip-path: polygon(
    10px 0,       /* 左上カット */
    100% 0,
    100% calc(100% - 10px), /* 右下カット */
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
  padding: 0px 8px;
  position: relative;
}
#doctor .doctor__inner .doctor__career dl dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
#doctor .doctor__inner .doctor__career dl dt span{
  font-size: 24px;
}
.doctor__career dl {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#doctor .doctor__inner .doctor__affiliation {
  flex-basis: 50%;
  align-self: stretch;
}
#doctor .doctor__inner .doctor__affiliation  ul{
  padding-left: 30px;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 0;
}
#doctor .doctor__inner .doctor__affiliation ul li {
  position: relative;
  padding-left: 20px;
}
#doctor .doctor__inner .doctor__affiliation ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4px; /* ←ここでサイズ調整 */
  color: #47342f;
}

@media (max-width: 1024px) {
  #doctor .doctor__inner .doctor__career dl {
    grid-template-columns: 80px 1fr;
    gap: 12px 10px;
  }
}
@media (max-width: 768px) {
  #doctor .doctor__inner .doctor__message{
    flex-direction: column;
  }
  #doctor .doctor__inner .doctor__message .doctor__img{
    width: 90%;
    margin: 0 auto;
  }
  #doctor .doctor__inner .l-flex{
    flex-direction: column;
  }
  #doctor .doctor__inner .doctor__career dl dt span {
    font-size: 20px;
  }
}
  @media (max-width: 640px) {
    #doctor h2.section-title p.text-sub {
    font-size: 32px;
    font-size: 3.2rem;
  }
  #doctor h2.section-title p {
    font-size: 38px;
    font-size: 3.8rem;
  }
  #doctor .doctor__inner .doctor__message strong {
    font-size: 28px;
    font-size: 2.8rem;
  }
  #doctor .doctor__inner .doctor__message .u-font-gothic {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #doctor .doctor__inner .doctor__career .doctor__career--title, 
  #doctor .doctor__inner .doctor__affiliation .doctor__affiliation--title {
    font-size: 32px;
  }
  #doctor .doctor__inner .doctor__career dl {
    grid-template-columns: 90px 1fr;
    gap: 12px 10px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  #doctor .doctor__inner .doctor__career dl dt span {
    font-size: 24px;
    font-size: 2.4rem;
  }
  #doctor .doctor__inner .doctor__affiliation ul {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
#price h2{
  line-height: 3;
  background-image: url(../images/price_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-bottom: 20px;
}
#price .price__inner p{
  text-align: center;
  font-size: 18px;
}
#price .price__table-wrap{
  font-size: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
#price .price__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 1px solid #eae5e5;
  margin: 60px auto 20px;
}

#price .price__table-wrap table th,
#price .price__table-wrap table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eae5e5;
  text-align: left;
  font-size: 18px;
}
#price .price__table-wrap table th{
  background-color: #f4f4f4;
  width: 35%;
  border-right: 1px solid #eae5e5;
}
#price .price__table-wrap table td {
  width: 65%;
}
#price .price__table-wrap table td p{
  text-align: left;
}
#price .price__table-wrap table td span.price__table-price{
  font-size: 20px;
  font-size: 2rem;
}
#price .price__table-wrap table td span.price__table-tax{
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  #price h2{
    line-height: 1.5;
  }
}
@media (max-width: 640px) {
  #price .price__inner p {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #price .price__table-wrap table th{
    font-size: 22px;
    font-size: 2.2rem;
    width: 33%;
  }
  #price .price__table-wrap table td p {
    font-size: 20px;
    font-size: 2rem;
  }
  #price .price__table-wrap table td span.price__table-price{
    font-size: 26px;
    font-size: 2.6rem;
  }
  #price .price__table-wrap table td span.price__table-tax{
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#faq {
  background-color: #eae5e566;
}
#faq h2.faq__title{
  line-height: 3;
  background-image: url(../images/faq_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-bottom: 20px;
}
#faq .faq__list{
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}
#faq .faq__list dt.faq__question{
  font-weight: 500;
  background-color: #eae5e5;
  padding: 16px;
  padding-left: 50px;
  position: relative;
}
#faq .faq__list .faq__question::before{
  content: "";
  background-image: url(../images/faq_q.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 20px;
  top: 22px;
  width: 22px;
  height: 20px;
}

#faq .faq__list dd.faq__answer{
  padding-top: 16px;
  padding-bottom:16px;
  padding-left: 50px;
  color: #333;
  position: relative;
  margin-bottom: 20px;
}

#faq .faq__list .faq__answer::before{
  content: "";
  background-image: url(../images/faq_a.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 22px;
  width: 22px;
  height: 20px;
}
#faq .faq__note{
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 640px) {
  #faq h2{
    line-height: 2.5;
  }
  #faq .faq__note {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #faq .faq__list {
    font-size: 26px;
    font-size: 2.6rem;
    padding: 0;
  }
  #faq .faq__list dt.faq__question,
  #faq .faq__list dd.faq__answer {
    padding-left: 60px;
  }
  #faq .faq__list .faq__question::before,
  #faq .faq__list .faq__answer::before {
    top: 22px;
    width: 30px;
    height: 30px;
  }
}

#clinic h2{
  line-height: 3;
  background-image: url(../images/clinic_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-bottom: 20px;
}
#clinic .clinic__inner{
  max-width: 760px;
  margin: 0 auto;
}
#clinic .clinic__inner .clinic__image{
  margin-bottom: 40px;
}
#clinic .clinic__inner .clinic__body .clinic__name{
  font-size: 32px;
  font-weight: 600;
}
#clinic .clinic__inner .clinic__body .clinic__address{
  font-size: 24px;
}
#clinic .clinic__inner .clinic__body .clinic__link{
  font-size: 24px;
  text-decoration: underline;
}
#clinic .clinic__inner .clinic__body .clinic__link::after{
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 2px;
}
@media (max-width: 640px) {
  #clinic h2{
    line-height: 2.5;
  }
}

#contact {
  background-image: url(../images/cta_bg.png);
}
#contact h2{
  line-height: 3;
  background-image: url(../images/contact_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-bottom: 20px;
}
#contact .contact__inner{
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(10px);          
  -webkit-backdrop-filter: blur(10px);  
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px;
}
#contact .contact__inner .contact__heading{
  font-size: 28px;
}
#contact .contact__inner .contact__time{
  font-size: 20px;
  margin-top: 4px;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  #contact h2{
    line-height: 2.5;
  }
}
#footer .footer__inner{
  text-align: center;
  padding: 10px;
}