@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

.accordion_area .acc_item {
  transition: all 0.5s ease;
}
.accordion_area .acc_item .accordion_title {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}
.accordion_area .acc_item .accordion_title::before, .accordion_area .acc_item .accordion_title::after {
  content: "";
  position: absolute;
  top: 48%;
  width: 1.125rem;
  height: 0.1875rem;
  background-color: #e26b91;
  transition: all 0.5s ease;
  border-radius: 0.1875rem;
}
.accordion_area .acc_item .accordion_title::before {
  right: 0.75rem;
  transform: rotate(-40deg);
}
.accordion_area .acc_item .accordion_title::after {
  right: 1.5rem;
  transform: rotate(40deg);
}
.accordion_area .acc_item .accordion_title.open::before {
  transform: rotate(40deg);
}
.accordion_area .acc_item .accordion_title.open::after {
  transform: rotate(-40deg);
}
.accordion_area .acc_item .accordion_box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.slider {
  width: 100%;
  margin: 0 auto;
}
.slider .slide_item {
  margin-bottom: 0.5rem !important;
  transition: all 0.5s ease;
}
.slider.center_slider .slide_item {
  width: 50vw;
  transform: scale(0.8);
  opacity: 0.5;
}
.slider.center_slider .slide_item.slick-center {
  transform: scale(1);
  opacity: 1;
}
.slider .slick-arrow {
  position: absolute;
  z-index: 500;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  top: 42%;
}
.slider .slick-arrow::before, .slider .slick-arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 0.3125rem;
  background-color: #8c8c8c;
  border-radius: 0.3125rem;
}
.slider .slick-arrow::before {
  top: 25%;
}
.slider .slick-arrow::after {
  bottom: 25%;
}
.slider .slick-arrow.slick-prev {
  left: -2rem;
}
.slider .slick-arrow.slick-prev::before, .slider .slick-arrow.slick-prev::after {
  left: 32%;
}
.slider .slick-arrow.slick-prev::before {
  transform: rotate(-45deg);
}
.slider .slick-arrow.slick-prev::after {
  transform: rotate(45deg);
}
.slider .slick-arrow.slick-next {
  right: -2rem;
}
.slider .slick-arrow.slick-next::before, .slider .slick-arrow.slick-next::after {
  right: 32%;
}
.slider .slick-arrow.slick-next::before {
  transform: rotate(45deg);
}
.slider .slick-arrow.slick-next::after {
  transform: rotate(-45deg);
}
.slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 1.125rem;
  margin-top: 1rem;
}
.slider .slick-dots li {
  display: inline-block;
}
.slider .slick-dots li button {
  display: block;
  width: 1rem;
  height: 1rem;
  color: transparent;
  background: #adadad;
  border-radius: 50%;
  outline: none;
}
.slider .slick-dots li.slick-active button {
  background: #333;
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

.all_container {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
}
@media (max-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .u_pc {
    display: none !important;
  }
}

.u_sp,
.u_sp_b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp,
.u_sp_b {
    display: block !important;
  }
}

.u_sp_i {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_i {
    display: inline !important;
  }
}

.u_sp_ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_ib {
    display: inline-block !important;
  }
}

.u_sp_f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_f {
    display: flex !important;
  }
}

.u_sp_t {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_t {
    display: table-row !important;
  }
}

/* インナーボックス */
.innerbox_1180 {
  max-width: calc(1180px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* その他頻出パーツ */
.flexbox {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

a,
button,
.btn {
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover,
button:hover,
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover,
button:hover,
.btn:hover {
    opacity: 1;
  }
}

ol {
  list-style: decimal;
  padding-left: 1em;
}
ol > li > ul {
  list-style: lower-alpha;
  padding-left: 1em;
}
ol > li > ul > li > ul {
  list-style: lower-roman;
  padding-left: 1em;
}

ul.dot_list > li {
  display: block;
  position: relative;
  padding-left: 1em;
}
ul.dot_list > li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* body(全体) */
body main#main {
  padding-top: 8.875rem;
}

header#header,
main#main,
footer#footer {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ヘッダー */
header#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 8.875rem;
  background-color: #fff;
}
header#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}
header#header .header_inner .header_left .header_logo {
  display: block;
}
header#header .header_inner .header_left .header_logo .header_logo__text {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-align: center;
}
header#header .header_inner .header_left .header_logo .header_logo__image {
  width: 15.3125rem;
  height: 2.21875rem;
  object-fit: contain;
}
/* フッター */
footer#footer {
  background-color: #fff;
  padding: 2.3125rem 1rem;
}
footer#footer .copyright {
  font-size: 2rem;
  line-height: 1.5389447236;
  font-weight: 500;
  text-align: center;
}

/* その他パーツ */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.btn.return_btn {
  width: 12.5rem;
  height: 4rem;
  color: #fff;
  background-color: #e26b91;
  border-radius: 2rem;
}
.btn.grd_btn {
  width: fit-content;
  height: 4.5rem;
  font-size: 1.5625rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  border-radius: 3.1875rem;
  padding: 0.25rem 2.3125rem;
}
.btn.arrow_btn {
  gap: 0.875rem;
}
.btn.arrow_btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.5rem solid #fff;
  border-right: 0;
}

.marker {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.2em;
}

.marker_yellow {
  text-decoration-color: #f7f95e;
}

.text_orange {
  color: #e85605;
}

.text_pink {
  color: #e47490;
}

section.cta {
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 3.75rem 1.5rem 4.6875rem;
}
section.cta .cta_title .cta_title__upper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
section.cta .cta_title .cta_title__upper::before, section.cta .cta_title .cta_title__upper::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1em;
  background-color: #fff;
}
section.cta .cta_title .cta_title__upper::before {
  transform: rotate(-15deg);
}
section.cta .cta_title .cta_title__upper::after {
  transform: rotate(15deg);
}
section.cta .cta_title .cta_title__lower {
  font-size: 4.1875rem;
  line-height: 1.23;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}
section.cta .cta_title .cta_title__lower .small {
  display: block;
  font-size: 2.05rem;
  line-height: 1;
}
section.cta .cta_white_box {
  background-color: #fff;
  padding: 3.625rem 1.3125rem 3rem;
  margin-top: 3.375rem;
}
section.cta .cta_treatment {
  position: relative;
  z-index: 400;
  display: flex;
  justify-content: center;
  gap: 0.6875rem;
  background-color: #fdf7f7;
  border: 0.1875rem solid #fdf0f0;
  border-radius: 0.4375rem;
  padding: 3.40625rem 1.25rem 1.65625rem;
  margin-top: 4.21875rem;
}
section.cta .cta_treatment .cta_treatment__title {
  position: absolute;
  z-index: 600;
  top: -1.46875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12.5rem;
  height: 3.0625rem;
  font-size: 1.9375rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #fff;
  background-color: #e9838e;
  border-radius: 2.0625rem;
}
section.cta .cta_treatment .cta_treatment_item {
  flex: 1;
}
section.cta .cta_treatment .cta_treatment_item .cta_treatment_item__image {
  height: auto;
  aspect-ratio: 201/200;
  object-fit: cover;
}
section.cta .cta_treatment .cta_treatment_item .cta_treatment_item__label {
  display: block;
  font-size: 1.4375rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}
section.cta .cta_price {
  margin-top: 2rem;
}
section.cta .cta_price .cta_price__title > div {
  display: block;
  line-height: 1.29;
  font-weight: 700;
  text-align: center;
}
section.cta .cta_price .cta_price__title .cta_price__title__upper {
  font-size: 1.78125rem;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.cta .cta_price .cta_price__title .cta_price__title__lower {
  font-size: 2.5625rem;
  letter-spacing: 0.29em;
  color: #fff;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 0.25rem;
  margin-top: 0.625rem;
}
section.cta .cta_price .cta_price__explain {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  margin-top: 0.5rem;
}
section.cta .cta_price .cta_price__explain .strikethrough {
  position: relative;
  z-index: 400;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
section.cta .cta_price .cta_price__explain .strikethrough::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  width: 100%;
  height: 0.125rem;
  background-color: #333;
}
section.cta .cta_price .cta_price__main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.6875rem;
  margin-top: 1rem;
}
section.cta .cta_price .cta_price__main > span {
  color: #e42b2e;
  text-align: center;
}
section.cta .cta_price .cta_price__main .cta_price__main__square {
  width: 8.75rem;
  aspect-ratio: 1/1;
  font-size: 2.875rem;
  letter-spacing: 0.05em;
  line-height: 1.24;
  border: 0.078125rem solid #e42b2e;
}
section.cta .cta_price .cta_price__main .cta_price__main__big {
  display: block;
  font-size: 10.5rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
section.cta .cta_link {
  margin-top: 2.5rem;
}
section.cta .cta_link .cta_link__balloon_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
}
section.cta .cta_link .cta_link__balloon_text::before, section.cta .cta_link .cta_link__balloon_text::after {
  content: "";
  width: 0.0625rem;
  height: 1em;
  background-color: #333;
  margin: 0 0.5em;
}
section.cta .cta_link .cta_link__balloon_text::before {
  transform: rotate(-15deg);
}
section.cta .cta_link .cta_link__balloon_text::after {
  transform: rotate(15deg);
}
.cta_bfaf {
  padding: 0 2.625rem;
}
.cta_bfaf .cta_bfaf__before,
.cta_bfaf .cta_bfaf__after {
  position: relative;
  z-index: 400;
}
.cta_bfaf .cta_bfaf__before .cta_bfaf__image,
.cta_bfaf .cta_bfaf__after .cta_bfaf__image {
  box-shadow: 0.125rem 0.125rem 0.59375rem rgba(0, 0, 0, 0.1);
}
.cta_bfaf .cta_bfaf__before .cta_bfaf__label,
.cta_bfaf .cta_bfaf__after .cta_bfaf__label {
  position: absolute;
  z-index: 600;
  width: 11.125rem;
  height: 3.5625rem;
  font-size: 1.78125rem;
  letter-spacing: 0.14em;
  color: #fff;
  border-radius: 3.5rem;
}
.cta_bfaf .cta_bfaf__before .cta_bfaf__before__label {
  background-color: #333;
  right: -0.625rem;
  top: 0;
}
.cta_bfaf .cta_bfaf__after .cta_bfaf__after__label {
  background-color: #e47490;
  left: -0.625rem;
  bottom: 0;
}
.cta_bfaf .cta_bfaf__arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3rem solid transparent;
  border-left: 3rem solid transparent;
  border-top: 1.75rem solid #e32c6f;
  border-bottom: 0;
  margin: 0.75rem auto 0.375rem;
}

section#worry {
  position: relative;
  z-index: 400;
  background-image: url(../../assets/img/worry/worry_bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 6.3125rem;
}
section#worry .worry_title {
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.56;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#worry .worry_title .title_accent {
  display: inline-block;
  position: relative;
  z-index: 400;
  font-size: 4.375rem;
  background-position: top left 0;
  background-repeat: repeat-x;
  background-size: 1.07em 0.3em;
  background-image: radial-gradient(0.05em 0.05em at center center, #333, #333 100%, transparent, transparent);
  padding-top: 0;
}
section#worry .worry_title .title_accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 0.9375rem;
  background-image: url(../../assets/img/worry/title_accent.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#worry .worry_main_image {
  position: relative;
  z-index: 300;
  margin-top: 3rem;
}
section#worry .worry_checkbox_whitearea {
  position: relative;
  z-index: 400;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_shadow {
  position: absolute;
  z-index: -1;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 6rem);
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper {
  position: relative;
  z-index: 400;
  background-color: #fff;
  padding: 1rem;
  margin: -5.375rem 2.5rem 0;
}
section#worry .worry_checkbox_whitearea .worry_checkbox {
  border: 1px solid #333;
  padding: 1.25rem 1.375rem 1.25rem 1.5625rem;
  background-color: #fff;
}
section#worry .worry_checkbox_whitearea .worry_checkbox .worry_checkbox_item {
  position: relative;
  z-index: 400;
  padding-left: 3.375rem;
  font-size: 1.75rem;
  line-height: 1.6005767844;
}
section#worry .worry_checkbox_whitearea .worry_checkbox .worry_checkbox_item .marker_yellow {
  text-underline-offset: -1em;
  text-decoration-thickness: 1.5em;
}
section#worry .worry_checkbox_whitearea .worry_checkbox .worry_checkbox_item::before {
  content: "";
  position: absolute;
  z-index: 500;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background-image: url(../../assets/img/common/icon_checkbox.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
section#worry .worry_checkbox_whitearea .worry_checkbox .worry_checkbox_item:nth-child(n+2) {
  margin-top: 1.125rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::before, section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::after,
section#worry .worry_checkbox_whitearea .worry_checkbox::before,
section#worry .worry_checkbox_whitearea .worry_checkbox::after {
  content: "";
  position: absolute;
  z-index: 600;
  display: block;
  width: 1.375rem;
  height: 1px;
  background-color: #333;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::before,
section#worry .worry_checkbox_whitearea .worry_checkbox::before {
  top: 1.46875rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::after,
section#worry .worry_checkbox_whitearea .worry_checkbox::after {
  bottom: 1.46875rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::before {
  transform: rotate(-44.2deg);
  left: 0.84375rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox_wrapper::after {
  transform: rotate(44.2deg);
  left: 0.84375rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox::before {
  transform: rotate(44.2deg);
  right: 0.84375rem;
}
section#worry .worry_checkbox_whitearea .worry_checkbox::after {
  transform: rotate(-44.2deg);
  right: 0.84375rem;
}
section#worry .worry_anxiety {
  margin-top: 5.25rem;
}
section#worry .worry_anxiety .worry_anxiety__title {
  font-size: 2.375rem;
  line-height: 1.5988523735;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  padding: 0 1rem;
}
section#worry .worry_anxiety .worry_anxiety__title .accent {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #e85605;
  padding: 0 0.625rem;
  margin: 0 0.3125rem;
}
section#worry .worry_anxiety .worry_anxiety__checklist {
  padding: 0 4.25rem;
  margin-top: 2rem;
}
section#worry .worry_anxiety .worry_anxiety__checklist .worry_anxiety__checklist_item {
  position: relative;
  z-index: 400;
  font-size: 1.6875rem;
  line-height: 1.6005767844;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 0.625rem 0 0.625rem 3.125rem;
}
section#worry .worry_anxiety .worry_anxiety__checklist .worry_anxiety__checklist_item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8125rem;
  height: 2.8125rem;
  background-image: url(../../assets/img/common/icon_check_orange.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#worry .worry_anxiety .worry_anxiety__checklist .worry_anxiety__checklist_item:nth-child(n+2) {
  border-top: 0.125rem dashed #333;
}
section#worry .worry_bfaf {
  position: relative;
  z-index: 400;
  padding: 2.625rem 3rem 0;
  margin-top: 2rem;
}
section#worry .worry_bfaf .worry_bfaf_inner {
  background-color: #fff;
  padding: 3.75rem 2.375rem 3.75rem 16.875rem;
}
section#worry .worry_bfaf .worry_bfaf__sub_image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33.5625rem;
  height: 33.3125rem;
  object-fit: contain;
}
section#worry .worry_bfaf .worry_bfaf__title {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  font-size: 1.6875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
section#worry .worry_bfaf .worry_bfaf__title::before, section#worry .worry_bfaf .worry_bfaf__title::after {
  content: "";
  width: 0.0625rem;
  background-color: #333;
}
section#worry .worry_bfaf .worry_bfaf__title::before {
  transform: rotate(-23.5deg);
}
section#worry .worry_bfaf .worry_bfaf__title::after {
  transform: rotate(23.5deg);
}
section#worry .worry_bfaf .worry_bfaf__main_image {
  margin-top: 2.125rem;
}

section#foryou {
  position: relative;
  z-index: 300;
  background-image: url(../../assets/img/foryou/foryou_bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 6.3125rem;
  margin-top: -6.3125rem;
}
section#foryou .foryou_inner {
  padding: 2.1875rem 1.75rem 0;
}
section#foryou .foryou_title .foryou_title__bridge {
  width: 17.625rem;
  margin: 0 auto;
}
section#foryou .foryou_title .foryou_title__bg_grd {
  display: block;
  width: fit-content;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 0.25rem 1.125rem;
  font-size: 2.0625rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  margin: 2.125rem auto 2.375rem;
}
section#foryou .foryou_title .foryou_title__bg_grd .small {
  font-size: 1.3125rem;
}
section#foryou .foryou_title .foryou_title__small {
  font-size: 2rem;
  line-height: 1.71;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
section#foryou .foryou_title .foryou_title__small .accent_dot {
  background-position: top left 0;
  background-repeat: repeat-x;
  background-size: 1.04em 0.3em;
  background-image: radial-gradient(0.05em 0.05em at center center, #333, #333 100%, transparent, transparent);
  padding-top: 0.1em;
}
section#foryou .foryou_title .foryou_title__big {
  font-size: 3.625rem;
  line-height: 1.41;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: 2rem;
}
section#foryou .foryou_title .foryou_title__big .small {
  font-size: 2.9375rem;
}
section#foryou .foryou_title .foryou_title__big .underline {
  display: inline-block;
  position: relative;
  z-index: 400;
  font-weight: 700;
}
section#foryou .foryou_title .foryou_title__big .underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.21875rem;
  background-image: url(../../assets/img/common/title_underline.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#foryou .foryou_bfaf {
  background-color: #fff;
  padding: 1.75rem 0.25rem;
  max-width: 40rem;
  margin: 3rem auto 0;
}
section#foryou .foryou_points {
  margin-top: 3rem;
}
section#foryou .foryou_points .foryou_points__title {
  font-size: 2.78125rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
section#foryou .foryou_points .foryou_points__inner {
  margin-top: 2.5rem;
}
section#foryou .foryou_points .foryou_points__inner .foryou_points__inner__upper,
section#foryou .foryou_points .foryou_points__inner .foryou_points__inner__lower {
  display: flex;
  justify-content: center;
  gap: 2.75rem;
}
section#foryou .foryou_points .foryou_points_item {
  position: relative;
  z-index: 400;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 0.4375rem;
  border-radius: 50%;
  overflow: hidden;
}
section#foryou .foryou_points .foryou_points_item .foryou_points_item__inner {
  flex-direction: column;
  width: 18.625rem;
  height: 18.625rem;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #fff;
}
section#foryou .foryou_points .foryou_points_item .foryou_points_item__inner .letterspace_adjust {
  letter-spacing: -0.04em;
}
section#foryou .foryou_points .foryou_points_item::before {
  content: "";
  display: block;
  position: absolute;
  left: -7.9375rem;
  bottom: 5.4375rem;
  width: 19.25rem;
  height: 18rem;
  background-image: url(../../assets/img/foryou/foryou_point_accent.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
}
section#foryou .foryou_points .foryou_points_bottom {
  font-size: 2.6875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
}
section#foryou .foryou_points .foryou_points_bottom .marker_yellow {
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.2em;
}
section#foryou .foryou_keycontents {
  position: relative;
  z-index: 400;
  padding: 5.4375rem 1.6875rem 2.9375rem 1.6875rem;
  margin-top: 1.75rem;
}
section#foryou .foryou_keycontents .foryou_keycontents__subtitle {
  width: 18.125rem;
}
section#foryou .foryou_keycontents .foryou_keycontents__title {
  font-size: 4.625rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-shadow: 0.5rem 0.5rem 0.5rem #fff, -0.5rem -0.5rem 0.5rem #fff, -0.5rem 0.5rem 0.5rem #fff, 0.5rem -0.5rem 0.5rem #fff;
  writing-mode: vertical-rl;
  margin-top: 1rem;
  margin-left: 2.5rem;
}
section#foryou .foryou_keycontents .foryou_keycontents__title .exclamation {
  display: inline-block;
  font-size: 4.84375rem;
  transform: translate(0.75rem, -1rem) rotate(29.5deg);
}
section#foryou .foryou_keycontents .foryou_keycontents__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

section#before_after {
  padding: 6.8125rem 1.875rem;
  background: linear-gradient(180deg, #fff0f2 0%, #fac3c6 100%);
}
section#before_after .cta_bfaf {
  background-color: #fff;
  padding: 2.125rem 0.875rem;
}
section#before_after .cta_bfaf:nth-child(n+2) {
  margin-top: 2rem;
}

section#reason {
  background-color: #fdf7f7;
  overflow: hidden;
}
section#reason .reason_title .reason_title_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: #e1677e;
  padding: 5rem 1rem 1.25rem;
}
section#reason .reason_title .reason_title_inner > span {
  display: block;
  text-align: center;
}
section#reason .reason_title .reason_title__bg_white {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  background-color: #fff;
  padding: 0.25rem 1.25rem;
}
section#reason .reason_title .reason_title__main {
  font-size: 4.75rem;
  line-height: 1.17em;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-top: 2rem;
}
section#reason .reason_title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 23.4375rem solid transparent;
  border-left: 23.4375rem solid transparent;
  border-top: 6rem solid #e1677e;
  border-bottom: 0;
}
section#reason .reason_contents_wrapper {
  margin-top: 3rem;
}
section#reason .reason_item {
  position: relative;
  z-index: 400;
  padding: 0 3.34375rem;
}
section#reason .reason_item:nth-child(n+2) {
  margin-top: 4.625rem;
}
section#reason .reason_item:nth-child(2n)::before, section#reason .reason_item:nth-child(2n)::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 120%;
  height: 80%;
  background-color: #fff;
}
section#reason .reason_item:nth-child(2n)::before {
  top: 4rem;
  transform: translateX(-50%) rotate(-5deg);
}
section#reason .reason_item:nth-child(2n)::after {
  bottom: -8.625rem;
  transform: translateX(-50%) rotate(5deg);
}
section#reason .reason_item:nth-last-child(1) {
  padding-bottom: 2.375rem;
}
section#reason .reason_item:nth-last-child(1)::after {
  bottom: 0;
  transform: translateX(-50%);
}
section#reason .reason_item .reason_item__number {
  flex-direction: column;
  width: 7.65625rem;
  height: 7.65625rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  box-shadow: 0.0625rem 0.0625rem 0.21875rem rgba(0, 0, 0, 0.21);
  font-size: 4.09375rem;
  line-height: 0.93;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto;
}
section#reason .reason_item .reason_item__number .upper {
  display: block;
  font-size: 1.3125rem;
  font-family: "Noto Sans JP", sans-serif;
}
section#reason .reason_item .reason_item__title {
  font-size: 3.546875rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#reason .reason_item .reason_item__title .small {
  font-size: 2.35875rem;
}
section#reason .reason_item .reason_item__image {
  margin-top: 2.5rem;
}
section#reason .reason_item .reason_item__explain {
  font-size: 1.875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 2.5rem;
  padding: 0 0.6875rem;
}
section#reason .reason_item .reason_item__grid_area {
  padding-bottom: 1.5rem;
}
section#reason .reason_item .reason_item__grid_area .reason_item__grid_area__inner {
  position: relative;
  z-index: 400;
  background-color: #fff;
  padding: 1.25rem 3.1875rem 6.5625rem;
  margin: 3rem -1.25rem 0;
}
section#reason .reason_item .reason_item__grid_area .reason_item__grid_area__inner::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/reason/reason_bg_grid.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
}
section#reason .reason_item .reason_item__grid_area .grid_area__icon {
  width: 4.1875rem;
  height: 4.1875rem;
  object-fit: contain;
  margin: 0 auto;
}
section#reason .reason_item .reason_item__grid_area .grid_area__title {
  font-size: 2.625rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  white-space: nowrap;
}
section#reason .reason_item .reason_item__grid_area .grid_area__title .text_pink {
  text-decoration: underline;
}
section#reason .reason_item .reason_item__grid_area .grid_area__title .small {
  font-size: 2.125rem;
  letter-spacing: 0;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box {
  border: 0.0625rem solid;
  margin-top: 2.625rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__title {
  font-size: 1.8125rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0.75rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  padding: 3rem 1.25rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content > span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content .upper {
  font-size: 2.125rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content .lower {
  font-size: 1.875rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content .arrow {
  display: flex;
  justify-content: center;
  gap: 0.1875rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content .arrow > span {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 0.6875rem solid;
  border-bottom: 0;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box .grid_area__box__content .underline {
  text-decoration: underline;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__blue {
  border-color: #5ab9be;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__blue .grid_area__box__title {
  background-color: #5ab9be;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__blue .grid_area__box__content {
  color: #5ab9be;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__blue .grid_area__box__content .underline {
  text-decoration-style: wavy;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__blue .grid_area__box__content .arrow > span {
  border-top-color: #5ab9be;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__pink {
  border-color: #e47490;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__pink .grid_area__box__title {
  background-color: #e47490;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__pink .grid_area__box__content {
  color: #e47490;
}
section#reason .reason_item .reason_item__grid_area .grid_area__box__pink .grid_area__box__content .arrow > span {
  border-top-color: #e47490;
}
section#reason .reason_item .reason_item__grid_area .reason_item__grid_area__arrow {
  position: relative;
  z-index: 700;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7.25rem solid transparent;
  border-left: 7.25rem solid transparent;
  border-top: 4.5rem solid #e47490;
  border-bottom: 0;
  margin: -1.75rem auto 0;
}
section#reason .reason_item .reason_item__grid_area .reason_item__grid_area__outer {
  margin-top: 1.75rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_upper {
  gap: 1rem;
  font-size: 2.4375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_upper::before, section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_upper::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1em;
  background-color: #333;
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_upper::before {
  transform: rotate(-15deg);
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_upper::after {
  transform: rotate(15deg);
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_lower {
  font-size: 2.4375rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: 3rem;
}
section#reason .reason_item .reason_item__grid_area .grid_area__subtitle_lower .text_pink {
  text-decoration: underline;
}

section#recommend {
  background-image: url(../../assets/img/recommend/recommend_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10.9375rem;
  padding-bottom: 5rem;
}
section#recommend .recommend_inner {
  padding: 0 2rem;
}
section#recommend .recommend_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
section#recommend .recommend_title > span {
  display: block;
  text-align: center;
}
section#recommend .recommend_title .recommend_title__upper {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
  background-color: #df5d76;
  border-radius: 0.25rem;
  padding: 0.25rem 1.25rem;
}
section#recommend .recommend_title .recommend_title__lower {
  font-size: 4.775rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
section#recommend .recommend_profile {
  position: relative;
  z-index: 400;
  padding-top: 10rem;
  padding-bottom: 8.9375rem;
  overflow: hidden;
}
section#recommend .recommend_profile .recommend_profile__text {
  display: inline-block;
  background-color: #fff;
  padding: 1.5rem 1.5rem;
  box-shadow: 0.1875rem 0.25rem 0.9875rem rgba(223, 93, 118, 0.19);
}
section#recommend .recommend_profile .recommend_profile__text > span {
  display: block;
  letter-spacing: 0.04em;
  font-weight: 500;
}
section#recommend .recommend_profile .recommend_profile__text .recommend_profile__clinic {
  font-size: 1.625rem;
}
section#recommend .recommend_profile .recommend_profile__text .recommend_profile__position {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
section#recommend .recommend_profile .recommend_profile__text .recommend_profile__name {
  font-size: 3.3125rem;
}
section#recommend .recommend_profile .recommend_profile__image {
  position: absolute;
  z-index: 500;
  right: -1.75rem;
  top: -3.625rem;
  width: 33.8125rem;
  height: 41.8125rem;
  object-fit: contain;
}
section#recommend .recommend_message {
  position: relative;
  z-index: 500;
  background-color: #fff;
  padding: 2.5rem 3rem 6rem;
  font-size: 1.875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  box-shadow: 0.1875rem 0.25rem 0.9875rem rgba(223, 93, 118, 0.19);
}
section#recommend .recommend_message .recommend_message__label {
  display: block;
  width: fit-content;
  background-color: #fdf7f7;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
}

section#strengths .strengths_upper {
  position: relative;
  z-index: 400;
  padding: 6.25rem 4.625rem;
  overflow: hidden;
}
section#strengths .strengths_upper::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 280%;
  height: 100%;
  background-color: #fdf7f7;
  border-radius: 0 0 50% 50%;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.17);
}
section#strengths .strengths_upper__title {
  font-size: 3.54375rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#strengths .strengths_upper__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.21875rem;
  background-image: url(../../assets/img/common/title_underline.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#strengths .strengths_upper_items {
  margin-top: 4.5rem;
}
section#strengths .strengths_upper_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 3.1875rem;
}
section#strengths .strengths_upper_item:nth-child(n+2) {
  margin-top: 3rem;
}
section#strengths .strengths_upper_item .strengths_upper_item__explain {
  width: 100%;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
section#strengths .strengths_upper_item .strengths_upper_item__image {
  width: 14.8125rem;
  height: 14.8125rem;
  border-radius: 50%;
  box-shadow: 0.0625rem 0.25rem 0.4625rem 0 rgba(0, 0, 0, 0.14);
}
section#strengths .strengths_upper_item .strengths_upper_item__maintext {
  width: calc(100% - 14.8125rem - 3.1875rem);
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-decoration: underline;
}
section#strengths .strengths_lower {
  position: relative;
  z-index: 400;
  padding: 1.75rem 1.625rem 29.125rem;
}
section#strengths .strengths_lower .strengths_lower__title {
  font-size: 3.1875rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
}
section#strengths .strengths_lower .strengths_lower__title::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 5.9375rem;
  background-color: #333;
  margin: 0 auto 2.5rem;
}
section#strengths .strengths_lower .strengths_lower__whitebox {
  background-color: #fff;
  margin-top: 2.5rem;
  padding: 3rem 2.8125rem 5.375rem;
}
section#strengths .strengths_lower .strengths_lower__highlighted {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.125rem 0.25rem;
  font-size: 2.375rem;
}
section#strengths .strengths_lower .strengths_lower__highlighted .highlighted_item {
  display: block;
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 0.25rem 1.25rem;
}
section#strengths .strengths_lower .strengths_lower__highlighted .highlighted_item:nth-child(1) {
  margin-right: 2.5rem;
}
section#strengths .strengths_lower .strengths_lower__highlighted .highlighted_item .small {
  font-size: 2.125rem;
}
section#strengths .strengths_lower .strengths_lower__plaintext {
  font-size: 2.6875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
section#strengths .strengths_lower .strengths_lower__plaintext_01 {
  width: fit-content;
  margin: 3rem auto 0;
}
section#strengths .strengths_lower .strengths_lower__checklist {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
section#strengths .strengths_lower .strengths_lower__checklist .checklist_item {
  position: relative;
  z-index: 400;
  font-size: 2.6875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding-left: 4.375rem;
}
section#strengths .strengths_lower .strengths_lower__checklist .checklist_item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-image: url(../../assets/img/common/icon_checkcircle.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#strengths .strengths_lower .strengths_lower__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 31.25rem;
  height: 37.09375rem;
  object-fit: contain;
}
section#strengths .strengths_lower::before, section#strengths .strengths_lower::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 500;
  left: 0;
  right: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
section#strengths .strengths_lower::before {
  z-index: -2;
  top: 0;
  height: calc(100% - 34.125rem);
  background-image: url(../../assets/img/strengths/strengths_lower_bg.webp);
  background-position: center top;
}
section#strengths .strengths_lower::after {
  z-index: -1;
  bottom: 0;
  height: 34.125rem;
  background-image: url(../../assets/img/strengths/strengths_lower_main_bg.webp);
  background-position: center bottom;
}

section#compare {
  background-color: #fdf7f7;
  padding: 6rem 1.5rem 6.5rem;
}
section#compare .compare_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#compare .compare_title > span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
}
section#compare .compare_title .compare_title__upper {
  font-size: 1.59375rem;
  color: #fff;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  padding: 0.25rem 1.1875rem;
}
section#compare .compare_title .compare_title__lower {
  font-size: 3.54375rem;
  margin-top: 1.25rem;
}
section#compare .compare_table_wrapper {
  margin-top: 3.75rem;
}
section#compare .compare_table {
  width: 100%;
  table-layout: fixed;
}
section#compare .compare_table th,
section#compare .compare_table td {
  text-align: center;
}
section#compare .compare_table .table_row__title {
  width: 3.125rem;
}
section#compare .compare_table .table_row__ecxia {
  width: 16.25rem;
}
section#compare .compare_table thead th {
  height: 7.25rem;
}
section#compare .compare_table thead th .th_inner {
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid #b5b5b5;
}
section#compare .compare_table thead .table_row__ecxia .th_inner {
  height: 100%;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  font-size: 1.5625rem;
  font-weight: 700;
  border-radius: 0.375rem 0.375rem 0 0;
  border-left: 0.1875rem solid #e26b91;
  border-right: 0.1875rem solid #f1a08a;
  border-top: none;
  border-bottom: none;
}
section#compare .compare_table thead .table_row__company_a,
section#compare .compare_table thead .table_row__company_b {
  padding-top: 2.5rem;
}
section#compare .compare_table thead .table_row__company_a .th_inner,
section#compare .compare_table thead .table_row__company_b .th_inner {
  height: 100%;
  background: #8c8a8b;
  border-radius: 0.1875rem 0.1875rem 0 0;
  font-size: 1.40625rem;
  font-weight: 500;
}
section#compare .compare_table tbody .table_row:nth-last-child(1) .table_row__ecxia {
  position: relative;
}
section#compare .compare_table tbody .table_row:nth-last-child(1) .table_row__ecxia::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: -0.125rem;
  right: -0.125rem;
  width: calc(100% + 0.25rem);
  height: 0.1875rem;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  border-radius: 0 0 0.125rem 0.125rem;
}
section#compare .compare_table tbody td {
  background-color: #fff;
  border: 1px solid #b5b5b5;
}
section#compare .compare_table tbody .table_row__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
}
section#compare .compare_table tbody .table_row__title .th_inner {
  width: 100%;
  height: 8.75rem;
  background: #ee968b;
  padding: 1.25rem 0.875rem 0.875rem;
  border-radius: 0.1875rem 0 0 0.1875rem;
}
section#compare .compare_table tbody .table_row__ecxia {
  font-size: 1.4375rem;
  font-weight: 700;
  border-left: 0.1875rem solid #e26b91;
  border-right: 0.1875rem solid #f1a08a;
}
section#compare .compare_table tbody .table_row__company_a,
section#compare .compare_table tbody .table_row__company_b {
  font-size: 1.25rem;
  font-weight: 500;
}
section#compare .compare_table tbody .table_row__company_a .small,
section#compare .compare_table tbody .table_row__company_b .small {
  font-size: 1rem;
}

section#voice {
  background: linear-gradient(180deg, #fff0f2 0%, #fac3c6 100%);
  padding: 3.8125rem 1.6875rem 4.5625rem;
}
section#voice .voice_title__image {
  width: 29.375rem;
  margin-left: auto;
  margin-right: auto;
}
section#voice .voice_slider_wrapper {
  margin-top: 4rem;
}
section#voice .voice_slider_title {
  flex-direction: column;
  text-align: center;
}
section#voice .voice_slider_title > div {
  letter-spacing: 0.04em;
  line-height: 1.35;
  font-weight: 500;
}
section#voice .voice_slider_title .voice_slider_title__upper {
  font-size: 1.78125rem;
}
section#voice .voice_slider_title .voice_slider_title__main {
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: #e26b91;
}
section#voice .voice_slider_title .voice_slider_title__main > .number {
  font-size: 3.625rem;
}
section#voice .voice_slider_title .voice_slider_title__lower {
  font-size: 1.3125rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
section#voice .voice_slider {
  margin-top: 1.25rem;
}
section#voice .voice_slider .slick-track {
  display: flex;
  align-items: stretch;
}
section#voice .voice_slider .slide_item {
  background: #fff;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

section#flow {
  background-color: #ffeff1;
}
section#flow .flow_title {
  position: relative;
  z-index: 400;
  overflow: hidden;
  font-size: 3.825rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 6.5rem 1.25rem;
}
section#flow .flow_title::before, section#flow .flow_title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  border-radius: 0 0 50% 50%;
}
section#flow .flow_title::before {
  z-index: -1;
  bottom: 1rem;
  background: #fff;
}
section#flow .flow_title::after {
  z-index: -2;
  bottom: 0.375rem;
  background: linear-gradient(90deg, #e26b91 0%, #f1a08a 100%);
  filter: blur(0.5rem);
  opacity: 0.8;
}
section#flow .flow_contents_wrapper {
  padding: 5.25rem 2.5rem 9.3125rem;
}
section#flow .flow_item {
  position: relative;
  z-index: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section#flow .flow_item .flow_item__number {
  width: 9.1875rem;
  font-size: 2.375rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #df5d76;
  padding: 0 0.8125rem;
}
section#flow .flow_item .flow_item__contents {
  width: calc(100% - 9.1875rem - 2rem);
}
section#flow .flow_item .flow_item__title {
  font-size: 2.375rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
section#flow .flow_item .flow_item__image {
  margin-top: 1.5rem;
}
section#flow .flow_item:not(:nth-last-child(1)) {
  padding-bottom: 5.875rem;
}
section#flow .flow_item:not(:nth-last-child(1))::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 4.5625rem;
  top: 0;
  width: 0.125rem;
  height: 100%;
  background-color: #df5d76;
}
section#access {
  padding: 7.5rem 4rem 5rem;
}
section#access .access_title {
  font-size: 3.8125rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#access .access_image {
  margin-top: 5rem;
}
section#access .access_logo {
  width: 22.25rem;
  margin-top: 4.1875rem;
}
section#access .access_table {
  width: 100%;
  margin-top: 1.25rem;
}
section#access .access_table .table_row {
  vertical-align: top;
}
section#access .access_table .table_row:nth-child(n+2) {
  border-top: 0.09375rem solid #333;
}
section#access .access_table .table_row .table_row__title,
section#access .access_table .table_row .table_row__content {
  font-size: 1.75rem;
  line-height: 1.5984474241;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: left;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}
section#access .access_table .table_row .table_row__title {
  padding-right: 1.375rem;
}
section#access .access_table .table_row .table_row__content {
  padding-left: 1.375rem;
}

section#message {
  position: relative;
  z-index: 400;
}
section#message .message_title {
  font-size: 3.8125rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  width: 100%;
  height: 12.3125rem;
  background-image: url(../../assets/img/message/ceo_title_bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
section#message .message_contents_wrapper {
  background-image: url(../../assets/img/message/ceo_message_bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 1.875rem 7.75rem;
}
section#message .message__ceo_profile {
  font-size: 2rem;
  padding-top: 11.25rem;
  padding-bottom: 5rem;
  padding-left: 1.6875rem;
  padding: 11.25rem 1.6875rem 5rem;
}
section#message .message__ceo_profile .big {
  font-size: 3.28125rem;
  margin-left: 0.5rem;
}
section#message .message__ceo_image {
  position: absolute;
  z-index: 700;
  right: 0;
  top: 4.75rem;
  width: 25.5rem;
  height: 53.0625rem;
  object-fit: contain;
}
section#message .message__whitebox {
  position: relative;
  z-index: 800;
  background-color: #fff;
  padding: 4.375rem 2rem;
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.19);
}
section#message .message__whitebox .message__whitebox__title {
  font-size: 3.25rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
section#message .message__whitebox .message__whitebox__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.21875rem;
  background-image: url(../../assets/img/common/title_underline.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#message .message__whitebox .message__whitebox__contents {
  font-size: 1.875rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
  font-weight: 500;
  margin-top: 2.5rem;
  padding-right: 0.375rem;
}

section#faq {
  background-color: #fdf7f7;
  padding: 7.5rem 2.375rem 8.125rem;
}
section#faq .faq_title {
  font-size: 3.8125rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
section#faq .faq_contents_wrapper {
  margin-top: 5rem;
}
section#faq .faq_item {
  background-color: #fff;
  padding: 1.9375rem 0.625rem;
  border-radius: 0.9375rem;
  box-shadow: 0 0.25rem 1.25rem rgba(124, 185, 211, 0.14);
}
section#faq .faq_item:nth-child(n+2) {
  margin-top: 1.8125rem;
}
section#faq .faq_item .faq_icon {
  position: absolute;
  width: 3.875rem;
  height: 3.875rem;
  object-fit: contain;
  left: 0.8125rem;
}
section#faq .faq_item .faq_text {
  font-size: 1.875rem;
  font-weight: 500;
}
section#faq .faq_item .accordion_title {
  position: relative;
  padding: 0 3.4375rem 0 5.6875rem;
}
section#faq .faq_item .accordion_title .faq_icon {
  top: 50%;
  transform: translateY(-50%);
}
section#faq .faq_item .accordion_box .accordion_box_inner {
  position: relative;
  padding: 1.5625rem 0.8125rem 0 5.6875rem;
  border-top: 0.0625rem dashed #333;
  margin-top: 1.5625rem;
}
section#faq .faq_item .accordion_box .accordion_box_inner .faq_icon {
  top: 1.5625rem;
}

/* ver3用 追記 */
.cta_link__btn {
  display: inline-block;
  margin-top: 2rem;
}

section#access .access_table {
  margin-bottom: 3.25rem;
}

.shop_name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #e47490;
  margin-top: 1.875rem;
}

/* 2025/6 追記 - Before After 変更 */
.cta_bfaf .cta_bfaf__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 0;
  padding: 1.75rem 2.5rem 0;
}
.cta_bfaf .cta_bfaf__info .cta_bfaf__info_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 50%;
}
.cta_bfaf .cta_bfaf__info .cta_bfaf__info_item__label {
  width: 9.5625rem;
  height: 3.125rem;
  font-size: 1.5rem;
  line-height: 1.43;
  font-weight: 500;
  text-align: center;
  background-color: #fff4f5;
}
.cta_bfaf .cta_bfaf__info .cta_bfaf__info_item__content {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.43;
  font-weight: 500;
}

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