@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 430px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

@font-face {
  font-family: "Bahnschrift";
  src: url("./bahnschrift.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.08);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  color: #333333;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
    background-color: #F4EBE2;
    background-image: unset;
  }
}
@media screen and (max-width: 430px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg_content {
    display: none;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  max-width: 430px;
  top: 0;
  right: 15%;
  background-color: #FCFCFC;
}
@media screen and (max-width: 1000px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 430px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: image-switch-animation 8s infinite;
  transition: opacity 1s ease-in-out;
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.image:nth-of-type(1) {
  animation-delay: 0s;
}

.image:nth-of-type(2) {
  animation-delay: 4s;
}

.cta-fixed {
  position: fixed;
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  max-width: 430px;
  bottom: 8px;
  right: 15%;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 100;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 1000px) {
  .cta-fixed {
    left: 50%;
    transform: translateX(-50%);
  }
}
.cta-fixed .cta_btn {
  width: 90%;
  margin: 0 auto;
}

.cta-fixed.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/*------------------- fv ------------------*/
.fv .src1 {
  background-image: url(https://lp-face.mkclinic.site/wp-content/uploads/2025/07/IMG_0511.jpg);
}
.fv .src2 {
  background-image: url(https://lp-face.mkclinic.site/wp-content/uploads/2025/07/S__62210136_0.jpg);
}

.fv_top {
  position: relative;
}

.fv_main {
  width: 130px;
  position: absolute;
  top: 12px;
  right: 32px;
}
@media screen and (max-width: 430px) {
  .fv_main {
    width: 30vw;
    top: 2.8vw;
    right: 7.4vw;
  }
}

.fv_img {
  bottom: 0;
  right: 0;
  position: absolute;
  width: 190px;
  aspect-ratio: 168/112;
}
@media screen and (max-width: 430px) {
  .fv_img {
    width: 44vw;
  }
}

.fv_cta {
  padding: 24px 0;
  width: 90%;
  margin: 0 auto;
}

/*------------------- cta ------------------*/
.cta_btn {
  background: linear-gradient(180deg, #FFB2D2 0%, #F25796 100%);
  border: 4px solid #fff;
  border-radius: 2px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  .cta_btn {
    padding: 18px 24px;
  }
}
@media screen and (max-width: 350px) {
  .cta_btn {
    padding: 16px 20px;
  }
}
.cta_btn:hover {
  background: linear-gradient(180deg, #E95D96 0%, #F2307F 100%);
}

.cta_btn_txt {
  color: #fff;
  font-size: 500;
  font-size: 20px;
}
@media screen and (max-width: 375px) {
  .cta_btn_txt {
    font-size: 18px;
  }
}

.cta_btn_arrow {
  width: 24px;
}
@media screen and (max-width: 375px) {
  .cta_btn_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 350px) {
  .cta_btn_arrow {
    width: 16px;
  }
}

/*------------------- check ------------------*/
.check_wrap {
  width: 90%;
  margin: 0 auto;
}

.check_heading {
  margin-bottom: 24px;
}

.check_content {
  background-image: url(../img/check_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 72px 12px 32px;
}

.check_input {
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 375px) {
  .check_input {
    font-size: 16px;
  }
}

.check_input label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.check_input label:last-child {
  margin-bottom: 0;
}

.check_input label input {
  border: 0 !important;
  transform: scale(1.5);
}

.check_btn {
  background: linear-gradient(180deg, #FFB2D2 0%, #F25796 100%);
  border: 4px solid #fff;
  border-radius: 2px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 18px 24px;
  width: 80%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 375px) {
  .check_btn {
    padding: 14px 24px;
  }
}
.check_btn:hover {
  background: linear-gradient(180deg, #E95D96 0%, #F2307F 100%);
}

.check_btn_txt {
  color: #fff;
  font-size: 500;
  font-size: 20px;
}
@media screen and (max-width: 375px) {
  .check_btn_txt {
    font-size: 18px;
  }
}

.check_btn_arrow {
  width: 24px;
}
@media screen and (max-width: 375px) {
  .check_btn_arrow {
    width: 20px;
  }
}

.check_result {
  padding-left: 12px;
}

.check_result_default.hidden {
  display: none;
}

.hidden {
  display: none;
}

.display {
  display: block;
}

.check_result_1 {
  display: none;
}
.check_result_1.display {
  display: block;
}

.check_result_2 {
  display: none;
}
.check_result_2.display {
  display: block;
}

.check_cta {
  padding: 24px 0 40px;
  margin: 0 auto;
}

/*------------------- treatment ------------------*/
.treatment_heading {
  width: 90%;
  margin: 0 auto;
}

.treatment_list {
  margin-bottom: 24px;
}

.treatment_item {
  position: relative;
  margin-bottom: 40px;
}
.treatment_item:last-child {
  margin-bottom: 0;
}

.treatment_item:nth-child(1) .treatment_img {
  bottom: 0;
  right: 0;
}
.treatment_item:nth-child(1) .src1 {
  background-image: url(../img/treatment_before1.webp);
}
.treatment_item:nth-child(1) .src2 {
  background-image: url(../img/treatment_after1.webp);
}

.treatment_item:nth-child(2) .treatment_img {
  bottom: 0;
  left: 0;
}
.treatment_item:nth-child(2) .src1 {
  background-image: url(../img/treatment_before2.webp);
}
.treatment_item:nth-child(2) .src2 {
  background-image: url(../img/treatment_after2.webp);
}

.treatment_item:nth-child(3) .treatment_img {
  bottom: 0;
  right: 0;
}
.treatment_item:nth-child(3) .src1 {
  background-image: url(../img/treatment_before3.webp);
}
.treatment_item:nth-child(3) .src2 {
  background-image: url(../img/treatment_after3.webp);
}

.treatment_item:nth-child(4) .treatment_img {
  bottom: 0;
  left: 0;
}
.treatment_item:nth-child(4) .src1 {
  background-image: url(../img/treatment_before4.webp);
}
.treatment_item:nth-child(4) .src2 {
  background-image: url(../img/treatment_after4.webp);
}

.treatment_img {
  position: absolute;
  width: 190px;
  aspect-ratio: 168/112;
}
@media screen and (max-width: 430px) {
  .treatment_img {
    width: 44vw;
  }
}

.treatment_txt {
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.treatment_cta {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 40px;
}

/*------------------- trouble ------------------*/
.trouble {
  background-image: url(../img/trouble_bg.webp);
  background-size: 100% 100%;
  padding: 32px 0;
}

.trouble_wrap {
  width: 90%;
  margin: 0 auto;
}

.trouble_heading {
  margin-bottom: 16px;
}

.trouble_img {
  margin-bottom: 16px;
}

.trouble_content {
  background-color: #fff;
  padding: 20px;
}

.trouble_item {
  background-color: #E4E4E4;
  width: 100%;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trouble_item span {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

/*------------------- change ------------------*/
.change {
  position: relative;
}

.change_heading {
  position: absolute;
  width: 98px;
  left: 5%;
  top: -24px;
  z-index: 5;
}

.change_wrap {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4EBE2 80%, #F4EBE2 100%);
  padding: 32px 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 50% 100%, 0 calc(100% - 32px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 50% 100%, 0 calc(100% - 32px));
}

.change_top {
  width: 86%;
  margin-left: auto;
  margin-bottom: 16px;
}

.change_list {
  width: 90%;
  margin: 0 auto;
}

/*------------------- case ------------------*/
.case {
  padding: 40px 0 0;
}

.case_swiper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 24px;
}

.swiper-slide {
  padding-bottom: 40px;
}

.swiper-slide img {
  width: 90%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .swiper-slide img {
    width: 95%;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #C79D6D !important;
  background-color: #C79D6D !important;
}

.swiper-button-prev {
  width: 28px !important;
  height: 28px !important;
}
.swiper-button-prev::after {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/prev_btn.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 100%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.16);
}

.swiper-button-next {
  width: 28px !important;
  height: 28px !important;
}
.swiper-button-next::after {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  background-image: url(../img/next_btn.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 100%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.26);
}

.case_bottom {
  background-image: url(../img/case_bottom_bg.webp);
  background-size: 100% 100%;
  position: relative;
  bottom: -8px;
}

.case_bottom_inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
  width: 90%;
  margin: 0 auto;
  padding: 32px 12px;
}

.case_bottom_heading {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
.case_bottom_heading span {
  font-weight: 900;
  color: #C69C6D;
}

.case_bottom p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.case_bottom_lg {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  color: #C69C6D;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}

/*------------------- future ------------------*/
.future_heading {
  position: relative;
  z-index: 2;
}

.future_list {
  background-image: url(../img/future_bg.webp);
  background-size: 100% 100%;
  padding-bottom: 40px;
}

.future_item {
  width: 95%;
  margin-bottom: 16px;
}
.future_item:last-child {
  margin-bottom: 0;
}

.future_item:nth-child(2) {
  margin-left: auto;
}

/*------------------- voice ------------------*/
.voice_heading {
  width: 90%;
  margin: 0 auto;
}

.voice_item:nth-child(1) {
  margin-bottom: 16px;
}

.voice_cta {
  padding: 40px 0;
  width: 90%;
  margin: 0 auto;
}

/*------------------- doctor ------------------*/
.doctor_heading {
  margin-bottom: 16px;
}

.doctor_info {
  width: 90%;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doctor_info span {
  display: block;
  font-size: 16px;
}
.doctor_info span:nth-child(1) {
  font-size: 20px;
  font-weight: 700;
}
.doctor_info span:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}

.doctor .doctor_info span span {
  font-weight: 700;
  font-size: 16px;
}

.doctor_inner {
  border: 4px solid #F4EBE2;
  border-radius: 4px;
  width: 90%;
  margin: 0 auto 24px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
  font-size: 16px;
  line-height: 1.6;
}
.doctor_inner .doctor_ttl {
  display: block;
  color: #C69C6D;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 18px;
}

.doctor_book {
  width: 90%;
  margin: 0 auto 24px;
}

.doctor_book_img {
  width: 150px;
  float: right;
  padding: 0 16px 8px;
}

.doctor_book_txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #C69C6D;
  display: block;
  margin-bottom: 12px;
}
.doctor_book_txt p {
  font-size: 16px;
  line-height: 1.6;
}

.doctor_txt {
  width: 90%;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.doctor_txt span {
  color: #C69C6D;
}

.doctor_item {
  margin-bottom: 12px;
}
.doctor_item span {
  font-size: 14px;
  font-weight: 700;
}

/*------------------- offer ------------------*/
.offer_wrap {
  width: 90%;
  margin: 0 auto;
  padding: 16px 0 24px;
}

.offer_top {
  display: block;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}

.offer_time {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 6px;
  gap: 6px;
}

.offer_time div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.offer_time span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  padding-top: 12px;
  font-family: "Bahnschrift", sans-serif;
  color: #fff;
  font-size: 80px;
  background-color: #C69C6D;
  border-radius: 4px;
}

.offer_tag {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 16px;
}
.offer_tag span {
  font-size: 20px;
  font-weight: 500;
  color: #C69C6D;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.offer_bottom {
  padding: 12px 0;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: #F25796;
}

.offer_campaign {
  margin-bottom: 16px;
}

.offer_cta {
  width: 90%;
  margin: 0 auto;
  padding: 32px 0;
}

/*------------------- qa ------------------*/
.qa {
  padding-bottom: 24px;
}

.qa_heading {
  position: relative;
  background-color: #F4EBE2;
  padding: 24px 0;
}
.qa_heading h2 {
  font-size: 22px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .qa_heading h2 {
    font-size: 20px;
  }
}

.qa_heading_bg {
  width: 100px;
  bottom: 0;
  right: 5%;
  position: absolute;
}

.qa_list {
  width: 90%;
  margin: 0 auto;
  padding: 16px 0 40px;
}

.qa_item {
  padding: 16px 0;
  line-height: 1.4;
  font-weight: 500;
  border-top: 1px solid #B1B1B1;
}
.qa_item:last-child {
  border-bottom: 1px solid #B1B1B1;
}
.qa_item span {
  font-weight: 900;
}

.qa_item_q {
  display: grid;
  grid-template-columns: 28px 1fr;
  color: #C69C6D;
  margin-bottom: 8px;
}

.qa_item_a {
  display: grid;
  grid-template-columns: 28px 1fr;
}

/*------------------- contact ------------------*/
.contact {
  background-color: #F4EBE2;
  padding-bottom: 24px;
}

.contact_heading {
  position: relative;
  padding: 24px 0;
}
.contact_heading h2 {
  font-size: 22px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .contact_heading h2 {
    font-size: 20px;
  }
}

.contact_heading_bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 194px;
}

.contact_content {
  padding: 20px;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
}

.contact_item {
  margin-bottom: 16px;
}

.contact_ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.contact_ttl span:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
}
.contact_ttl span:nth-child(2) {
  color: #fff;
  font-size: 12px;
  background-color: #E95D96;
  padding: 3px 4px 2px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.contact_input input,
.contact_input textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #B1B1B1;
  font-size: 16px;
}

.contact_btn {
  background: linear-gradient(180deg, #FFB2D2 0%, #F25796 100%);
  border: 4px solid #fff;
  border-radius: 2px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.contact_btn:hover {
  background: linear-gradient(180deg, #E95D96 0%, #F2307F 100%);
}
.contact_btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 10px;
  background-image: url(../img/btn_arrow.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

.contact_btn input {
  width: 100%;
  padding: 16px 24px;
  color: #fff;
  font-size: 500;
  font-size: 20px;
  text-align: center;
}

/*------------------- footer ------------------*/
.footer {
  background-color: #C69C6D;
  color: #fff;
  font-size: 12px;
  padding: 16px 0 100px;
}
.footer small {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=index.css.map */