@charset "UTF-8";
/* 必須定義 */
/* css variables */
:root {
  /* その他色定義 */
  --main_color_1: linear-gradient(to right, #3c88ff 0%, #e598ff 100%);
  --sub_color_1: #3c88ff;
  --base_color_1: #ffffff;
  --base_color_2: #f2f2fd;
  --accent_color_1: #ffff37;
  --accent_color_2: #ef4b4b;
  --accent_color_3: linear-gradient(to right, #ef4b4b 0%, #f5a21b 100%);
  --negative_color: #4b70aa;
  --text_color: #222222;
  --accent_underline: linear-gradient(90deg, rgba(66, 133, 244, 1) 0%, rgba(66, 133, 244, 1) 17%, rgba(234, 67, 53, 1) 17%, rgba(234, 67, 53, 1) 34%, rgba(251, 188, 5, 1) 34%, rgba(251, 188, 5, 1) 51%, rgba(66, 133, 244, 1) 51%, rgba(66, 133, 244, 1) 68%, rgba(52, 168, 83, 1) 68%, rgba(52, 168, 83, 1) 85%, rgba(234, 67, 53, 1) 85%, rgba(234, 67, 53, 1) 100%);
  --font_family_base: "Noto Sans JP", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font_family_sub: "Jost", sans-serif;
  --font_size_base: 1.8rem;
  --font_size_base_sp: 1.8rem;
  --line_height_base: 1.6;
  --fs160-48: clamp(4.8rem, 17.694vw - 8.771rem, 16rem);
  --fs48-32: clamp(3.2rem, 2.528vw + 1.261rem, 4.8rem);
  --fs48-26: clamp(2.6rem, 3.476vw - 0.066rem, 4.8rem);
  --fs40-24: clamp(2.4rem, 2.528vw + 0.461rem, 4rem);
  --fs40-22: clamp(2.2rem, 2.844vw + 0.019rem, 4rem);
  --fs32-26: clamp(2.6rem, 0.948vw + 1.873rem, 3.2rem);
  --fs32-22: clamp(2.2rem, 1.58vw + 0.988rem, 3.2rem);
  --fs32-20: clamp(2rem, 1.896vw + 0.546rem, 3.2rem);
  --fs28-20: clamp(2rem, 1.264vw + 1.031rem, 2.8rem);
  --fs26-22: clamp(2.2rem, 0.632vw + 1.715rem, 2.6rem);
  --fs26-18: clamp(1.8rem, 1.265vw + 0.831rem, 2.6rem);
  --fs24-18: clamp(1.8rem, 0.948vw + 1.073rem, 2.4rem);
  --fs24-17: clamp(1.7rem, 1.106vw + 0.852rem, 2.4rem);
  --fs24-16: clamp(1.6rem, 1.264vw + 0.631rem, 2.4rem);
  --fs22-18: clamp(1.8rem, 0.632vw + 1.315rem, 2.2rem);
  --fs20-13: clamp(1.3rem, 1.106vw + 0.452rem, 2rem);
  --fs18-16: clamp(1.6rem, 0.316vw + 1.358rem, 1.8rem);
  --fs14-13: clamp(1.3rem, 0.158vw + 1.179rem, 1.4rem);
  --fs11-10: clamp(1rem, 0.158vw + 0.879rem, 1.1rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

body {
  min-height: 100%;
  background: #ffffff;
  color: #222222;
  font-family: var(--font_family_base);
  font-size: var(--font_size_base);
  line-height: var(--line_height_base);
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--font_size_base_sp);
  }
}

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

img {
  height: auto;
  border: 0;
  vertical-align: top;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  color: #0277bd;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  color: #0071b9;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.l_container {
  width: 100%;
  margin-inline: auto;
}

.l_inner {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l_inner {
    width: auto;
    margin-inline: 16px;
  }
}

.l_inner_narrow {
  width: min(100% - 48px, 600px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l_inner_narrow {
    width: auto;
    margin-inline: 16px;
  }
}

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

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

.content_inner {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content_inner {
    width: 91.4%;
    max-width: none;
  }
}

.cta_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sub_color_1);
  border-radius: 100vw;
  text-decoration: none;
  color: var(--base_color_1);
  font-size: var(--fs26-22);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  padding: 10px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  flex-basis: auto;
  width: auto;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: 368px;
}
.cta_btn:hover {
  color: #fff;
}
.cta_btn::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  flex-shrink: 1;
}
.cta_btn::after {
  padding-right: 6px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .cta_btn {
    padding: 8px;
  }
}
.cta_btn.dl::before {
  background-image: url(../img/icon_dl_document.svg);
}
.cta_btn.info {
  background: var(--accent_color_3);
}
.cta_btn.info::before {
  background-image: url(../img/icon_info_form.svg);
}

.cta_btn {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    filter: brightness(1.3);
  }
}
.cta_btn_wrap .cta_btn::after {
  padding-right: 8px;
  border-color: transparent transparent transparent #222;
}

.center_heading_wrap {
  position: relative;
  text-align: center;
}
.center_heading_wrap > .bg_eng {
  font-family: var(--font_family_sub);
  font-size: 160px;
  font-size: var(--fs160-48);
  font-weight: 800;
  color: var(--base_color_2);
  z-index: 100;
  position: absolute;
  left: 50%;
  z-index: 90;
  translate: -50% 0;
  line-height: 1;
  letter-spacing: 0.04em;
}
.center_heading_wrap > h2 {
  font-size: 48px;
  font-size: var(--fs48-26);
  font-size: var(--fs48-32);
  font-weight: 700;
  position: relative;
  z-index: 110;
  padding-top: 4.5%;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .center_heading_wrap > h2 {
    letter-spacing: 0.02em;
    line-height: 1.18em;
  }
}
.center_heading_wrap > .heading_text_wrap {
  position: relative;
  bottom: 29px;
  z-index: 110;
  padding-top: 4.5%;
}
.center_heading_wrap > .heading_text_wrap > p {
  font-size: var(--fs24-16);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.center_heading_wrap > .heading_text_wrap > h2 {
  font-size: 48px;
  font-size: var(--fs48-26);
  font-size: var(--fs48-32);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .center_heading_wrap > .heading_text_wrap > h2 {
    letter-spacing: 0.02em;
    line-height: 1.18em;
  }
}
.center_heading_wrap::after {
  content: "";
  display: block;
  width: 80px;
  height: 8px;
  background: var(--main_color_1);
  position: absolute;
  left: 50%;
  z-index: 100;
  translate: -50% 0;
  bottom: -11px;
}
@media screen and (max-width: 767px) {
  .center_heading_wrap::after {
    width: 40px;
    height: 4px;
    bottom: -7px;
  }
}

.heading_pattern_01 {
  font-size: 40px;
  font-size: var(--fs40-22);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.46;
}
.heading_pattern_01 > span {
  color: var(--accent_color_2);
}

.heading_pattern_02 {
  background: var(--main_color_1);
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 41px;
  font-size: var(--fs32-20);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 100vw;
}
@media screen and (max-width: 767px) {
  .heading_pattern_02 {
    margin-bottom: 8px;
    padding: 8px 24px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    min-height: auto;
  }
}
.heading_pattern_02 .num {
  font-family: var(--font_family_sub);
  font-size: var(--fs40-24);
  margin-right: 0.6%;
}
@media screen and (max-width: 767px) {
  .heading_pattern_02 .num {
    margin-right: min(3.5%, 10px);
  }
}

.heading_label_wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .heading_label_wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
.heading_label_wrap .heading_label {
  flex-shrink: 0;
  color: #fff;
  font-size: var(--fs18-16);
  font-weight: 700;
  padding: 0.3% 1.2%;
  border-radius: 100vw;
  background: var(--main_color_1);
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .heading_label_wrap .heading_label {
    padding: 1.2% 4.6%;
    margin-bottom: 3px;
  }
}

.heading_pattern_03 {
  font-size: 28px;
  font-size: var(--fs28-20);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: transparent;
  background-image: var(--main_color_1);
  -webkit-background-clip: text;
          background-clip: text;
}
@media screen and (max-width: 767px) {
  .heading_pattern_03 {
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
}

.annotation {
  font-size: 14px;
  font-size: var(--fs14-13);
  font-weight: 500;
  letter-spacing: 0.045em;
}

header {
  display: flex;
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--base_color_1);
  z-index: 500;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
}
header .header_inner .logo {
  width: 100%;
  max-width: 280px;
  margin-left: 32px;
  padding: 13px 0;
}
header .header_inner .logo a {
  display: block;
}
header .header_inner .logo a img {
  display: block;
  width: 100%;
  max-width: 236px;
}
header .header_inner .header_cta_wrap {
  margin-right: 16px;
  width: 100%;
  padding: 10px 0;
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .header_inner .header_cta_wrap .cta_btn {
    justify-content: center;
  }
  header .header_inner .header_cta_wrap .cta_btn::before, header .header_inner .header_cta_wrap .cta_btn::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header .header_inner .header_cta_wrap .cta_btn {
    display: none;
  }
}

main .content .hero_wrap .hero_inner {
  position: relative;
}
main .content .hero_wrap .hero_inner .hero_mv {
  width: 29%; /* 現在の 560px / 1905px ≒ 29% に基づく例 */
  max-width: 560px;
  position: absolute;
  z-index: 200;
  right: 8.9%;
  top: 9%;
}
main .content .hero_wrap .hero_inner .hero_mv img {
  width: 100%;
  height: auto;
  max-width: 100%; /* 親の 560px 指定に従う */
}
main .content .hero_wrap .hero_inner .hero_top {
  background-image: url(../img/bg_hero_map.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  aspect-ratio: 100/23;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .content .hero_wrap .hero_inner .hero_top {
    background-size: cover;
  }
}
main .content .hero_wrap .hero_inner .hero_top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f3fb;
  mix-blend-mode: soft-light;
}
main .content .hero_wrap .hero_inner .hero_top::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(242, 243, 251, 0.5) 0%, rgba(242, 243, 251, 0.5) 73%, rgb(242, 243, 251) 100%);
  mix-blend-mode: hard-light;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap {
  width: 43.3079%;
  max-width: 825px;
  padding: 3% 0 2% 9.6%;
  box-sizing: content-box;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap > h1,
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap > p {
  position: relative;
  z-index: 200;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_main {
  font-size: 48px;
  font-size: var(--fs48-26);
  font-weight: bold;
  color: var(--text_color);
  margin-bottom: 2.8%;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_main > span {
  color: var(--accent_color_2);
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text01 {
  font-size: 28px;
  font-size: var(--fs28-20);
  font-weight: bold;
  color: var(--base_color_1);
  background-color: #bd9947;
  padding: 1.2% 3.8% 1.5%;
  letter-spacing: 0.04em;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text01 > span {
  color: var(--accent_color_1);
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text02 {
  font-size: 24px;
  font-size: var(--fs24-17);
  font-weight: bold;
  color: var(--text_color);
  margin-top: 2.9%;
  padding-left: 8.6%;
  line-height: 1.4;
  letter-spacing: 1px;
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text02 > span {
  color: var(--accent_color_2);
}
main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text02::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon_hero_catch.svg);
  max-width: 58px;
  width: 7%;
  aspect-ratio: 29/35;
  background-size: contain;
  background-repeat: no-repeat;
}
main .content .hero_wrap .hero_inner .hero_bottom {
  background: var(--main_color_1);
  padding: 1.85% 9.7%;
}
main .content .hero_wrap .hero_inner .hero_bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
}
main .content .hero_wrap .hero_inner .hero_bottom .hero_list li {
  font-size: 32px;
  font-size: var(--fs32-22);
  color: var(--base_color_1);
  font-weight: 700;
  letter-spacing: 0.036em;
}
main .content .hero_wrap .hero_inner .hero_bottom .hero_list li::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_hero_check.svg);
  width: 3.1rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5%;
}
main .content .meo_overview_wrap {
  margin-top: min(125px, 6.6%);
  padding-bottom: min(2%, 39px);
}
main .content .meo_overview_wrap .center_heading_wrap {
  margin-bottom: min(3.9%, 75px);
}
main .content .meo_overview_wrap > .content_inner {
  text-align: center;
}
main .content .meo_overview_wrap > .content_inner .heading_pattern_01 {
  margin-bottom: min(22px, 1.8%);
}
main .content .meo_overview_wrap > .content_inner .meo_overview_text {
  font-size: 24px;
  font-size: var(--fs24-18);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
main .content .meo_overview_wrap > .content_inner > img {
  width: 100%;
  max-width: min(36.7%, 460px);
  display: inline-block;
}
main .content .meo_strategy_wrap {
  background-color: var(--base_color_2);
  padding: min(2.15%, 41px) 0 min(2.05%, 39px);
}
main .content .meo_strategy_wrap .heading_pattern_02 {
  margin-bottom: min(1.3%, 16px);
}
main .content .meo_strategy_wrap .meo_strategy_inner {
  background-color: var(--base_color_1);
  border-radius: 36px;
  padding: 3.5% 3.1% 3.3%;
}
main .content .meo_strategy_wrap .meo_strategy_inner + .meo_strategy_inner {
  margin-top: min(1.9%, 24px);
  margin-bottom: 3px;
}
main .content .meo_strategy_wrap .meo_strategy_inner .heading_label_wrap {
  margin-bottom: min(1.65%, 19px);
}
main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-size: var(--fs24-18);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.85% 0;
  margin-bottom: min(2.05%, 24px);
}
main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text > span {
  color: var(--accent_color_2);
}
main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text::before, main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--main_color_1);
}
main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text::before {
  top: 0;
}
main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text::after {
  bottom: 0;
}
main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap {
  display: flex;
  margin-bottom: min(0.5%, 6px);
}
main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_left .strategy_left_title {
  font-size: 24px;
  font-size: var(--fs24-18);
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: min(1.5%, 13px);
}
main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_left .strategy_left_text {
  letter-spacing: 0.04em;
}
main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_right {
  flex-shrink: 0;
  width: 27.6%;
}
main .content .meo_strategy_wrap .annotation {
  text-align: right;
}
main .content .summary_wrap {
  padding: min(1.3%, 24px) 0px min(3%, 56px);
}
main .content .summary_wrap .content_inner {
  max-width: 888px;
}
main .content .summary_wrap .content_inner img {
  width: 100%;
}
main .content .cta_wrap {
  background: var(--main_color_1);
  position: relative;
  padding: 1.9% 0;
}
main .content .cta_wrap::before, main .content .cta_wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
}
main .content .cta_wrap::before {
  top: 0;
}
main .content .cta_wrap::after {
  bottom: 0;
}
main .content .cta_wrap .content_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1173px;
}
main .content .cta_wrap .content_inner .cta_left {
  margin-top: 1.5%;
  max-width: 768px;
  width: 100%;
}
main .content .cta_wrap .content_inner .cta_left .cta_title_sub {
  font-size: 22px;
  font-size: var(--fs22-18);
  font-weight: 600;
  color: var(--base_color_1);
  line-height: 1.3;
  letter-spacing: 0.04em;
}
main .content .cta_wrap .content_inner .cta_left .cta_title_sub > span {
  color: var(--accent_color_1);
}
main .content .cta_wrap .content_inner .cta_left .cta_title {
  font-size: 32px;
  font-size: var(--fs32-26);
  font-weight: 900;
  color: var(--base_color_1);
  letter-spacing: 0.04em;
  margin-bottom: 1.5%;
}
main .content .cta_wrap .content_inner .cta_left .cta_title > span {
  color: var(--accent_color_1);
}
main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap .cta_btn {
  color: var(--text_color);
  background: var(--base_color_1);
}
main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap .cta_btn.dl::before {
  background-image: url(../img/icon_dl_document_reversal.svg);
}
main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap .cta_btn.info::before {
  background-image: url(../img/icon_info_form_reversal.svg);
}
main .content .cta_wrap .content_inner .cta_right {
  width: 100%;
  max-width: 324px;
}
main .content .cta_wrap#anc14 {
  padding: 1.58% 0;
}
@media screen and (max-width: 767px) {
  main .content .cta_wrap#anc14 {
    padding: 8% 0;
  }
}
main .content .cta_wrap#anc14::after {
  display: none;
}
main .content .cta_wrap#anc14 .content_inner {
  justify-content: center;
  max-width: none;
}
main .content .cta_wrap#anc14 .content_inner .cta_left {
  text-align: center;
  margin-top: 0;
}
main .content .cta_wrap#anc14 .content_inner .cta_left .cta_title {
  font-size: var(--fs40-22);
  font-weight: 900;
  margin-bottom: 0;
}
main .content .clinic_visit_strengths_wrap {
  margin-top: min(125px, 6.6%);
  padding-bottom: min(2.5%, 48px);
}
main .content .clinic_visit_strengths_wrap .center_heading_wrap {
  margin-bottom: min(2.7%, 51px);
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 2.05% 1% 1.85% 7.4%;
  gap: 3.4%;
  margin-bottom: min(5.1%, 64px);
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap::before, main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main_color_1);
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap::before {
  top: 0;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap::after {
  bottom: 0;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap > img {
  width: 100%;
  max-width: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap .strength_description_text {
  font-size: 24px;
  font-size: var(--fs24-18);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.32;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap .strength_description_text > span {
  color: var(--accent_color_2);
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap {
  background-color: var(--base_color_2);
  border-radius: 36px;
  display: flex;
  margin-top: min(1.3%, 16px);
  margin-bottom: min(3.1%, 40px);
  padding: min(3.7%, 46px) min(3.2%, 40px) min(4.3%, 53px);
  padding: min(3.7%, 46px) min(3.2%, 40px) min(4%, 50px);
  -moz-column-gap: 22px;
       column-gap: 22px;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_left .strength_title {
  font-size: 28px;
  font-size: var(--fs28-20);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: transparent;
  background-image: var(--main_color_1);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: min(2.2%, 19px);
  margin-bottom: min(2.9%, 24px);
  margin-bottom: min(2.7%, 22px);
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_left .strength_text {
  letter-spacing: 0.04em;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_left .strength_annotation {
  font-size: var(--fs14-13);
  text-align: right;
  margin-top: 13px;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_right {
  width: 100%;
  max-width: 324px;
}
main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_right > img {
  width: 100%;
}
main .content .support_wrap {
  background-color: var(--base_color_2);
  padding: min(6.7%, 129px) 0 min(4.6%, 86px);
  position: relative;
}
main .content .support_wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
}
main .content .support_wrap .center_heading_wrap {
  margin-bottom: min(3.9%, 75px);
}
main .content .support_wrap .center_heading_wrap .bg_eng {
  color: var(--base_color_1);
}
main .content .support_wrap .content_inner .support_content_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 24px;
  background-image: url(../img/bg_support.webp);
  background-repeat: no-repeat;
  background-position: bottom 2px right 0px;
  background-size: min(39.7%, 500px);
  margin-bottom: 4px;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette {
  height: 100%;
  width: auto;
  background: var(--base_color_1);
  border-radius: 26px;
  padding: 47px 39px 51px;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_label {
  display: inline-block;
  color: #fff;
  font-size: var(--fs18-16);
  font-weight: 700;
  padding: 0.7% 2.8%;
  border-radius: 100vw;
  background: var(--main_color_1);
  margin-bottom: 5px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_title {
  font-size: 28px;
  font-size: var(--fs28-20);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: transparent;
  background-image: var(--main_color_1);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_img_wrap {
  margin-bottom: 15px;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_img_wrap img {
  width: 100%;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_text {
  letter-spacing: 0.04em;
  line-height: 1.55;
}
main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_annotation {
  font-size: var(--fs14-13);
  margin-top: 4px;
}
main .content .support_wrap .content_inner .support_annotation {
  text-align: right;
  font-size: var(--fs14-13);
}
main .content .merit_wrap {
  padding: min(6.9%, 130px) 0 min(4.6%, 86px);
}
main .content .merit_wrap .center_heading_wrap {
  margin-bottom: min(3.9%, 75px);
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette {
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
  background: var(--base_color_2);
  border-radius: 36px;
  padding: min(3.9%, 49px) min(3.3%, 41px);
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette + .merit_casette {
  margin-top: min(1.9%, 24px);
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_label {
  display: inline-block;
  color: #fff;
  font-size: var(--fs18-16);
  font-weight: 700;
  padding: 0.7% 2.3%;
  border-radius: 100vw;
  background: var(--main_color_1);
  margin-bottom: 10px;
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_title {
  font-size: 28px;
  font-size: var(--fs28-20);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.32;
  color: transparent;
  background-image: var(--main_color_1);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_text {
  letter-spacing: 0.04em;
  line-height: 1.55;
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_img_wrap {
  width: 100%;
  max-width: 536px;
  margin: 0 auto;
}
main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_img_wrap img {
  width: 100%;
}
main .content .fees_wrap {
  background-color: var(--base_color_2);
  padding: min(6.8%, 131px) 0 min(4.6%, 86px);
  position: relative;
}
main .content .fees_wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
}
main .content .fees_wrap .content_inner {
  max-width: 1257px;
}
main .content .fees_wrap .center_heading_wrap {
  margin-bottom: min(3.9%, 75px);
}
main .content .fees_wrap .center_heading_wrap .bg_eng {
  color: var(--base_color_1);
}
main .content .comparison_wrap {
  padding: min(6.7%, 129px) 0 min(4.85%, 92px);
  position: relative;
}
main .content .comparison_wrap::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
  z-index: 100;
}
main .content .comparison_wrap .center_heading_wrap {
  margin-bottom: min(3.95%, 75px);
}
main .content .comparison_wrap .content_inner {
  max-width: 1176px;
  width: 100%;
}
main .content .comparison_wrap .content_inner .comparison_annotation {
  font-size: var(--fs14-13);
  text-align: right;
  margin-top: 0.5%;
  letter-spacing: 0.004em;
}
main .content .qa_wrap {
  background-color: var(--base_color_2);
  padding: min(6.7%, 129px) 0 min(4.9%, 94px);
}
main .content .qa_wrap .center_heading_wrap {
  margin-bottom: min(3.9%, 75px);
}
main .content .qa_wrap .center_heading_wrap .bg_eng {
  color: var(--base_color_1);
}
main .content .qa_wrap .content_inner .qa_content {
  max-width: 1256px;
}
main .content .qa_wrap .content_inner .qa_content dt {
  display: block;
  color: #fff;
  font-size: var(--fs32-20);
  font-weight: 700;
  padding: 0.3% 3.2%;
  border-radius: 36px;
  background: var(--main_color_1);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
main .content .qa_wrap .content_inner .qa_content dt::before {
  content: "Q";
  font-family: var(--font_family_sub);
  font-size: var(--fs40-24);
  margin-right: 0.9%;
  font-weight: 500;
}
main .content .qa_wrap .content_inner .qa_content dd {
  background: var(--base_color_1);
  border-radius: 36px;
  position: relative;
  padding: 15px 15px 15px 72px;
}
main .content .qa_wrap .content_inner .qa_content dd::before {
  content: "A";
  font-family: var(--font_family_sub);
  font-size: var(--fs40-24);
  color: var(--sub_color_1);
  margin-right: 0.9%;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 38px;
}
main .content .qa_wrap .content_inner .qa_content dd + dt {
  margin-top: 80px;
}

footer {
  background-image: url(../img/bg_hero_map.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer {
    background-size: cover;
  }
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f3fb;
  mix-blend-mode: soft-light;
}
footer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(242, 243, 251, 0.5) 0%, rgba(242, 243, 251, 0.5) 73%, rgb(242, 243, 251) 100%);
  mix-blend-mode: hard-light;
}
footer .content_inner {
  max-width: 1036px;
}
footer .content_inner .footer_inner {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  padding-top: min(2.3%, 24px);
  padding-bottom: min(2.3%, 24px);
}
footer .content_inner .footer_inner .footer_left {
  width: 100%;
  max-width: 580px;
  padding-top: min(5.7%, 60px);
}
footer .content_inner .footer_inner .footer_left .footer_text {
  font-size: var(--fs32-20);
  font-weight: bold;
  text-align: center;
  margin-bottom: min(2%, 12px);
}
footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn {
  max-width: none;
  font-size: var(--fs32-22);
}
footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn + .cta_btn {
  margin-top: min(4.4%, 25px);
}
footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn::before {
  max-width: 56px;
}
footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn::after {
  border-width: 10px 0px 10px 14px;
}
footer .content_inner .footer_inner .footer_right {
  width: 100%;
  max-width: 424px;
}
footer .copyright {
  background: var(--base_color_1);
  position: relative;
  z-index: 100;
  display: block;
  width: 100%;
  text-align: center;
  font-size: var(--fs11-10);
  padding: min(0.8%, 16px) 0px;
}
footer .copyright::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--accent_underline);
  top: 0;
}

#back-to-top {
  position: fixed;
  z-index: 300;
  bottom: 50px;
  right: 24px;
  mix-blend-mode: multiply;
  width: 100%;
  max-width: 96px;
}
#back-to-top:hover > img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #back-to-top {
    max-width: 74px;
    bottom: 56px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  header .header_inner {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  header .header_inner .logo {
    margin-left: 20px;
    padding: 9px 0;
    max-width: 136px;
  }
  main .content .hero_wrap .hero_inner .hero_mv {
    position: relative;
    left: 50%;
    width: 90%;
    right: initial;
    top: 8px;
    translate: -50% 0;
  }
  main .content .hero_wrap .hero_inner .hero_mv img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: -36px;
  }
  main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap {
    width: 100%;
    max-width: none;
    padding: 8.4% 4.3% 0;
    box-sizing: border-box;
  }
  main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_main {
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 4.4%;
  }
  main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text01 {
    line-height: 1.4;
    padding: 1.2% 4.7% 1.5%;
    letter-spacing: 0.02em;
  }
  main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text02 {
    margin-top: 4.3%;
    padding-left: min(14%, 46px);
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
  main .content .hero_wrap .hero_inner .hero_top .hero_left_wrap .hero_text02::before {
    max-width: 40px;
    width: 11.6%;
  }
  main .content .hero_wrap .hero_inner .hero_bottom {
    padding: 16.3% 4.3% 11%;
  }
  main .content .hero_wrap .hero_inner .hero_bottom .hero_list li {
    letter-spacing: 0.02em;
  }
  main .content .hero_wrap .hero_inner .hero_bottom .hero_list li::before {
    width: 2.4rem;
    vertical-align: -3px;
    margin-right: 2.3%;
  }
  main .content .hero_wrap .hero_inner .hero_bottom .hero_list li + li {
    margin-top: 3px;
  }
  main .content .meo_overview_wrap {
    margin-top: min(26.6%, 99px);
    letter-spacing: 0.02em;
    padding-bottom: min(8.7%, 32px);
  }
  main .content .meo_overview_wrap .center_heading_wrap {
    margin-bottom: min(10%, 37px);
  }
  main .content .meo_overview_wrap > .content_inner .heading_pattern_01 {
    margin-bottom: min(8%, 27px);
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
  main .content .meo_overview_wrap > .content_inner .meo_overview_text {
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 7px;
  }
  main .content .meo_overview_wrap > .content_inner > img {
    max-width: none;
  }
  main .content .meo_strategy_wrap {
    padding: min(4.4%, 16px) 0 min(28.7%, 103px);
  }
  main .content .meo_strategy_wrap .heading_pattern_02 {
    margin-bottom: min(2.4%, 8px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner {
    padding: 7% 3.1% 9.4%;
    margin-right: 0;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner + .meo_strategy_inner {
    margin-top: min(7%, 24px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .heading_label_wrap {
    margin-bottom: min(5%, 16px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_text {
    letter-spacing: 0.02em;
    line-height: 1.44;
    padding: 5.35% 0 4.8%;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap {
    margin-top: min(5%, 16px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_title_sp {
    background-color: var(--sub_color_1);
    font-size: 18px;
    color: var(--base_color_1);
    text-align: center;
    margin-top: 15px;
    padding: 9px 0;
    line-height: 1.4em;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll_inner {
    display: flex;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll_inner img {
    width: 100%;
    max-width: 284px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll-hint-icon-wrap .scroll-hint-icon {
    top: 40px;
    width: 200px;
    left: 50%;
    translate: -50% 0;
    height: 160px;
    padding: 50px 10px 10px 10px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll-hint-icon-wrap .scroll-hint-icon::before {
    width: 60px;
    height: 60px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll-hint-icon-wrap .scroll-hint-icon::after {
    width: 46px;
    height: 20px;
    background-size: contain;
    top: 24px;
    left: 50%;
    translate: -50% 0;
    margin-left: -6px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .scroll-hint-icon-wrap .scroll-hint-icon .scroll-hint-text {
    font-size: 17px;
    margin-top: 3px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp {
    position: relative;
    text-align: left;
    font-size: var(--fs24-18);
    font-weight: 700;
    margin-bottom: min(2%, 24px);
    letter-spacing: 0.02em;
    line-height: 1.44;
    padding: 5.35% 0 4.8%;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp span {
    color: var(--accent_color_2);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp_02 {
    background: var(--negative_color);
    border-radius: 16px;
    color: var(--base_color_1);
    font-size: var(--fs18-16);
    padding: 15px 14px 67px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    position: relative;
    margin-top: 56px;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp_02::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/illust_meo_strategy_04_sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    aspect-ratio: 37/34;
    width: 75px;
    translate: 0 -100%;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp_02::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    background-image: url(../img/illust_meo_strategy_05_sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    aspect-ratio: 1/1;
    width: 40px;
    translate: -50% 0;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp_03 {
    background: var(--negative_color);
    border-radius: 16px;
    color: var(--base_color_1);
    font-size: var(--fs18-16);
    padding: 15px 14px 67px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    position: relative;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .meo_strategy_sp_wrap .meo_strategy_text_sp_03::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    background-image: url(../img/illust_meo_strategy_05_sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    aspect-ratio: 1/1;
    width: 40px;
    translate: -50% 0;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap {
    flex-direction: column;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_left {
    margin-bottom: min(4.8%, 15px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_left .strategy_left_title {
    letter-spacing: 0.02em;
    line-height: 1.5em;
    margin-bottom: min(3.2%, 11px);
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_left .strategy_left_text {
    font-size: var(--fs18-16);
    line-height: 1.52;
  }
  main .content .meo_strategy_wrap .meo_strategy_inner .strategy_flex_wrap .strategy_right {
    width: 100%;
  }
  main .content .summary_wrap {
    padding: min(1.3%, 24px) 0px min(8.9%, 33px);
    overflow: hidden;
  }
  main .content .summary_wrap .content_inner img {
    margin-top: 17px;
  }
  main .content .cta_wrap {
    padding: min(10.7%, 40px) 0 min(7.6%, 28px);
  }
  main .content .cta_wrap .content_inner {
    flex-direction: column;
  }
  main .content .cta_wrap .content_inner .cta_left .cta_title_sub {
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  main .content .cta_wrap .content_inner .cta_left .cta_title {
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-top: 7px;
  }
  main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap {
    margin-top: min(7.2%, 25px);
    flex-direction: column;
    row-gap: 24px;
  }
  main .content .cta_wrap .content_inner .cta_left .cta_btn_wrap .cta_btn {
    max-width: none;
  }
  main .content .cta_wrap .content_inner .cta_right {
    width: 100%;
    max-width: 264px;
    margin: min(4.9%, 16px) auto 0;
  }
  main .content .clinic_visit_strengths_wrap {
    padding-bottom: min(8.6%, 32px);
  }
  main .content .clinic_visit_strengths_wrap .center_heading_wrap {
    margin-bottom: min(10.4%, 38px);
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap {
    flex-direction: column;
    padding: 24px 0;
    margin-bottom: min(9.2%, 32px);
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap > img {
    margin: 0 auto 16px;
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_description_wrap .strength_description_text {
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.34;
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap {
    flex-direction: column;
    padding: min(6.8%, 23px) min(3.2%, 40px) min(7%, 24px);
    margin-bottom: min(9.2%, 32px);
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_left .strength_title {
    margin-bottom: 12px;
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_left .strength_text {
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-size: var(--fs18-16);
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_right {
    margin: 0 auto;
    max-width: none;
  }
  main .content .clinic_visit_strengths_wrap .content_inner .strength_content_wrap .strength_right > img {
    width: 87.4%;
    margin: 17px auto 0;
  }
  main .content .support_wrap {
    padding: min(26.4%, 99px) 0 min(22%, 82px);
  }
  main .content .support_wrap .center_heading_wrap {
    margin-bottom: min(10.4%, 39px);
  }
  main .content .support_wrap .content_inner .support_content_wrap {
    background-image: none;
    grid-template-columns: auto;
  }
  main .content .support_wrap .content_inner .support_content_wrap .support_casette {
    padding: 23px 12px 25px;
  }
  main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_label {
    padding: 1.2% 4.4%;
    margin-bottom: 1px;
  }
  main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_title {
    letter-spacing: 0.02em;
    margin-bottom: 13px;
  }
  main .content .support_wrap .content_inner .support_content_wrap .support_casette .support_text {
    line-height: 1.5;
    font-size: var(--fs18-16);
    letter-spacing: 0.02em;
  }
  main .content .merit_wrap {
    padding: min(27.4%, 103px) 0 min(16.6%, 62px);
  }
  main .content .merit_wrap .center_heading_wrap {
    margin-bottom: min(10.2%, 39px);
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette {
    flex-direction: column;
    padding: min(7%, 24px) min(3.6%, 12px);
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette + .merit_casette {
    margin-top: min(7%, 24px);
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left {
    margin-bottom: min(5.2%, 17px);
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_label {
    padding: 1% 4.4%;
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_title {
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }
  main .content .merit_wrap .content_inner .merit_content_wrap .merit_casette .merit_left .merit_text {
    font-size: var(--fs18-16);
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  main .content .fees_wrap {
    padding: min(28.3%, 106px) 0 min(17.4%, 65px);
  }
  main .content .fees_wrap .center_heading_wrap {
    margin-bottom: min(12%, 45px);
  }
  main .content .comparison_wrap {
    padding: min(29.4%, 110px) 0 min(17.2%, 65px);
  }
  main .content .comparison_wrap .center_heading_wrap {
    margin-bottom: min(11.8%, 44px);
  }
  main .content .comparison_wrap .content_inner .comparison_content_wrap .comparison_sp_wrap {
    display: flex;
    padding: 0 0 0 16px;
  }
  main .content .comparison_wrap .content_inner .comparison_content_wrap .comparison_sp_wrap > img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 432px;
  }
  main .content .comparison_wrap .content_inner .comparison_content_wrap .comparison_sp_wrap .comparison_sp_scroll_wrap {
    position: relative;
    overflow: auto;
    padding-right: 16px;
  }
  main .content .comparison_wrap .content_inner .comparison_content_wrap .comparison_sp_wrap .comparison_sp_scroll_wrap > img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 432px;
    max-width: none;
  }
  main .content .comparison_wrap .content_inner .comparison_annotation {
    text-align: left;
    margin-top: 2.5%;
    padding: 0 20px 0 16px;
    letter-spacing: 0.04em;
    line-height: 1.34;
  }
  main .content .qa_wrap {
    padding: min(29.3%, 110px) 0 min(17%, 64px);
  }
  main .content .qa_wrap .center_heading_wrap {
    margin-bottom: min(12.2%, 46px);
  }
  main .content .qa_wrap .content_inner .qa_content dt {
    padding: 2.1% 7% 2.1% 18.3%;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.5;
  }
  main .content .qa_wrap .content_inner .qa_content dt::before {
    content: "Q.";
    margin-right: 6.4%;
    position: absolute;
    top: 4px;
    left: 24px;
  }
  main .content .qa_wrap .content_inner .qa_content dd {
    font-size: var(--fs18-16);
    padding: 25px 10px 25px 35px;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  main .content .qa_wrap .content_inner .qa_content dd::before {
    top: 20px;
    left: 12px;
  }
  main .content .qa_wrap .content_inner .qa_content dd + dt {
    margin-top: 32px;
  }
  footer .content_inner .footer_inner {
    flex-direction: column;
    padding-bottom: min(12.2%, 42px);
  }
  footer .content_inner .footer_inner .footer_left {
    padding-top: min(8.8%, 30px);
    max-width: none;
  }
  footer .content_inner .footer_inner .footer_left .footer_text {
    margin-bottom: min(3.6%, 12px);
  }
  footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn + .cta_btn {
    margin-top: min(7%, 24px);
  }
  footer .content_inner .footer_inner .footer_left .footer_cta_wrap .cta_btn::before {
    max-width: 40px;
  }
  footer .content_inner .footer_inner .footer_right {
    margin: 11.8% auto 0;
  }
  footer .copyright {
    padding: min(3.8%, 16px) 0px;
  }
  .footer_cta_float {
    display: flex;
    justify-content: space-between;
    position: sticky;
    bottom: 0;
    z-index: 300;
  }
  .footer_cta_float .cta_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    color: var(--base_color_1);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.05;
    letter-spacing: 0;
    padding: 6px 0;
  }
  .footer_cta_float .cta_button.cta_download {
    background: var(--sub_color_1);
  }
  .footer_cta_float .cta_button.cta_contact {
    background: var(--accent_color_3);
  }
  .footer_cta_float .cta_button .cta_icon {
    width: 100%;
    max-width: 32px;
    padding-left: 6.6%;
    box-sizing: content-box;
  }
  .footer_cta_float .cta_button .cta_icon img {
    width: 100%;
  }
  .footer_cta_float .cta_button .cta_arrow {
    padding-right: 6%;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0px 8px 10px;
    border-color: transparent transparent transparent #fff;
    flex-shrink: 1;
  }
}
.footer_ad_number {
  width: min(100% - 48px, 600px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer_ad_number {
    width: auto;
    margin-inline: 16px;
  }
}
.footer_ad_number {
  margin-block: 24px;
  color: #aaa;
  text-align: right;
}

.footer_links {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer_links {
    margin: 24px 16px;
  }
}

.footer_links_item {
  line-height: 1;
}
.footer_links_item + .footer_links_item {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #aaa;
}

.footer_links_link {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer_links_link {
    font-size: 11px;
  }
}

.footer_copyright {
  display: block;
  margin: 24px 0 30px;
  padding-top: 20px;
  border-top: 1px dotted #c2c2c2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin: 0;
    padding: 16px;
    border: 0;
    background: #424242;
    color: #fff;
  }
}

.ripple {
  position: relative;
  overflow: hidden;
  transition: 0.2s;
  z-index: 1;
}

.ripple .rp-effect {
  /*エフェクト*/
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.3; /*波紋の濃さ*/
  transform: scale(0);
  background: #0277bd; /*波紋色*/
  animation: ripple 500ms forwards cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2);
  }
}
/*----------------------------------------*//*# sourceMappingURL=style.css.map */