@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
:root {
  --swl-font_family: toppan-bunkyu-gothic-pr6n, serif !important;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "LINESeedJP";
  src: url("fonts/LINESeedJP_TTF_Eb.ttf") format("TrueType");
}
.f_line {
  font-family: "LINESeedJP", sans-serif;
}

.glowAnime span {
  opacity: 0;
  will-change: opacity, transform;
}

.glowAnime.glow span {
  animation: glow_anime_on 0.5s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.2);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 rgba(255, 255, 255, 0.2);
  }
}
html,
button,
input,
select,
textarea {
  font-family: toppan-bunkyu-gothic-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}

.f_min {
  font-family: toppan-bunkyu-mincho-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}

.lp_fixed_cta {
  position: fixed;
  z-index: 999;
  right: 50px;
  bottom: 50px;
  width: 300px;
  line-height: 1;
}
.lp_fixed_cta a {
  display: block;
  width: 100%;
  line-height: 1;
  transition: 0.3s;
}
.lp_fixed_cta a:hover {
  transform: scale(1.01);
}
.lp_fixed_cta a img {
  width: 100%;
}

#lp_header {
  position: absolute;
  z-index: 998;
  top: 50px;
  left: calc(50vw - 670px);
}
#lp_header .logo {
  width: 209px;
  line-height: 1;
}
#lp_header .logo img {
  width: 100%;
}

#lp_fv_sec {
  padding: 154px 0 62px;
  overflow: hidden;
  z-index: 1;
}
#lp_fv_sec .deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 199px;
  z-index: -1;
  opacity: 0.2;
  line-height: 1;
}
#lp_fv_sec .deco img {
  width: 100%;
}
#lp_fv_sec .woman {
  position: absolute;
  bottom: 0;
  right: calc(50vw - 670px - 130px);
  width: 640px;
  line-height: 1;
}
#lp_fv_sec .woman img {
  width: 100%;
}
#lp_fv_sec .cont {
  z-index: 1;
}
#lp_fv_sec .cont .top_cont {
  margin-bottom: 98px;
}
#lp_fv_sec .cont .top_cont .medal_list {
  margin-bottom: 12px;
}
#lp_fv_sec .cont .top_cont .medal_list ul {
  display: flex;
  gap: 0 11px;
}
#lp_fv_sec .cont .top_cont .medal_list ul li {
  width: 128px;
  line-height: 1;
}
#lp_fv_sec .cont .top_cont .medal_list ul li:nth-child(2) {
  animation-delay: 0.1s;
}
#lp_fv_sec .cont .top_cont .medal_list ul li:nth-child(3) {
  animation-delay: 0.2s;
}
#lp_fv_sec .cont .top_cont .medal_list ul li img {
  width: 100%;
}
#lp_fv_sec .cont .top_cont .copy {
  font-size: 50px;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 20px;
}
#lp_fv_sec .cont .top_cont .copy .color {
  font-size: 80px;
  color: #C6A03C;
}
#lp_fv_sec .cont .top_cont .ttl {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}
#lp_fv_sec .cont .top_cont .ttl .big {
  font-size: 30px;
}
#lp_fv_sec .cont .line_cont .lead {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}
#lp_fv_sec .cont .line_cont .sub_text {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 14px;
}

@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.common_line_btn {
  position: relative;
  overflow: hidden;
  width: 430px;
}
.common_line_btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #CAFCDE;
  animation: btn_animation 3s ease-in-out infinite;
  pointer-events: none;
}
.common_line_btn a {
  width: 100%;
  padding: 15px 20px 15px 15px;
  display: flex;
  align-items: center;
  background-color: #06C755;
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
}
.common_line_btn a:hover {
  background-color: #05B54D;
}
.common_line_btn a .icon {
  flex-shrink: 0;
  width: 50px;
  line-height: 1;
}
.common_line_btn a .icon img {
  width: 100%;
}
.common_line_btn a .btn_label {
  text-align: center;
  flex-grow: 1;
  font-size: 19px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.common_line_btn a .arrow {
  flex-shrink: 0;
  width: 24px;
  line-height: 1;
}
.common_line_btn a .arrow img {
  width: 100%;
}

#lp_lead_sec {
  margin-bottom: 110px;
  padding: 130px 0 116px;
  background-image: url(image/lp/lead_sec_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#lp_lead_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.74);
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.74) 0%, rgba(51, 51, 51, 0.74) 45%, rgba(51, 51, 51, 0) 84%, rgba(51, 51, 51, 0) 100%);
  mix-blend-mode: multiply;
}
#lp_lead_sec .cont {
  z-index: 1;
  color: #fff;
}
#lp_lead_sec .cont .lead_cont {
  display: flex;
  margin-bottom: 50px;
}
#lp_lead_sec .cont .lead_cont .text_block .lead_text {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 18px;
}
#lp_lead_sec .cont .lead_cont .text_block .lead_text::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 174px;
  height: 1px;
  background-color: #fff;
}
#lp_lead_sec .cont .lead_cont .text_block .lead_text .lead {
  font-size: 24px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
}
#lp_lead_sec .cont .lead_cont .text_block .ttl {
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #DDC78D;
  transform: translateX(-0.2em);
}
#lp_lead_sec .cont .lead_cont .medal_list {
  width: 478px;
  margin-left: auto;
}
#lp_lead_sec .cont .lead_cont .medal_list ul {
  display: flex;
  justify-content: space-between;
}
#lp_lead_sec .cont .lead_cont .medal_list ul li {
  width: 150px;
  line-height: 1;
}
#lp_lead_sec .cont .lead_cont .medal_list ul li img {
  width: 100%;
}
#lp_lead_sec .cont .text {
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
#lp_lead_sec .cont .text + .text {
  margin-top: 27px;
}

#lp_cam_guide_sec {
  margin-bottom: 122px;
}
#lp_cam_guide_sec .ribbon_ttl_wrap {
  text-align: center;
  margin-bottom: 30px;
}
#lp_cam_guide_sec .ribbon_ttl_wrap .ttl {
  display: inline-block;
  padding: 22px 70px;
  background-color: #F25A22;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 50%, 100% 100%, 0 100%, 30px 50%);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#lp_cam_guide_sec .guide_copy_ttl {
  text-align: center;
  font-size: 34px;
  letter-spacing: 0.19em;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 41px;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#lp_cam_guide_sec .guide_copy_ttl .small {
  font-size: 23px;
}

.common_menu_wrap {
  position: relative;
}
.common_menu_wrap .scroll-hint-icon-wrap {
  z-index: 1;
}
.common_menu_wrap .scroll-hint-icon-wrap .scroll-hint-icon {
  height: auto;
  line-height: 1.1;
  padding-bottom: 10px;
}
.common_menu_wrap .scroll-hint-icon-wrap .scroll-hint-icon .scroll-hint-text {
  margin-top: 10px;
}
.common_menu_wrap .menu_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
}
.common_menu_wrap .menu_list .menu_cont {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 15px 15px;
  box-shadow: 0 10px 0 #F25A22;
}
.common_menu_wrap .menu_list .menu_cont:nth-child(2) {
  animation-delay: 0.1s;
}
.common_menu_wrap .menu_list .menu_cont:nth-child(3) {
  animation-delay: 0.2s;
}
.common_menu_wrap .menu_list .menu_cont:nth-child(4) {
  animation-delay: 0.3s;
}
.common_menu_wrap .menu_list .menu_cont .ttl_block {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 15px;
}
.common_menu_wrap .menu_list .menu_cont .ttl_block .ttl {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.common_menu_wrap .menu_list .menu_cont .ttl_block .ttl .small {
  font-size: 14px;
}
.common_menu_wrap .menu_list .menu_cont .ttl_block .ttl .middle {
  font-size: 20px;
}
.common_menu_wrap .menu_list .menu_cont.omote .img_list .img_wrap .img_box .img img {
  -o-object-position: center 170%;
     object-position: center 170%;
}
.common_menu_wrap .menu_list .menu_cont.hyaluronic .img_list .img_wrap .img_box:nth-child(2) .img img {
  transform: scale(0.98);
}
.common_menu_wrap .menu_list .menu_cont .img_list {
  margin-bottom: 18px;
}
.common_menu_wrap .menu_list .menu_cont .img_list .arrow {
  position: absolute;
  z-index: 1;
  right: 123px;
  top: 12px;
  width: 37px;
  line-height: 1;
  transform: rotate(40deg);
}
.common_menu_wrap .menu_list .menu_cont .img_list .arrow img {
  width: 100%;
}
.common_menu_wrap .menu_list .menu_cont .img_list.side .arrow {
  right: 1px;
  top: 108px;
  width: 41.4px;
  transform: rotate(150deg);
}
.common_menu_wrap .menu_list .menu_cont .img_list.side .img_wrap {
  display: block;
}
.common_menu_wrap .menu_list .menu_cont .img_list.side .img_wrap .img_box {
  height: 117.5px;
}
.common_menu_wrap .menu_list .menu_cont .img_list.side .img_wrap .img_box + .img_box {
  margin-top: 5px;
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .img_box {
  width: 100%;
  height: 260px;
  background-color: #eae9e7;
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .img_box .img {
  width: 100%;
  height: 100%;
  line-height: 1;
  overflow: hidden;
  background-color: #000;
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .img_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .label {
  position: absolute;
  width: 70px;
  text-align: center;
  padding: 9px 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .label.before {
  top: 0;
  left: 0;
  background-color: rgba(234, 233, 231, 0.9);
}
.common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .label.after {
  bottom: 0;
  right: 0;
  background-color: rgba(253, 71, 3, 0.9);
}
.common_menu_wrap .menu_list .menu_cont .text_cont .text_box {
  padding-bottom: 16px;
  border-bottom: 1px solid;
  margin-bottom: 16px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .text_box .text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont {
  margin-bottom: 16px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .arrow {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 32px;
  width: 41px;
  transform: rotate(-30deg);
  line-height: 1;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .arrow img {
  width: 100%;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box {
  display: flex;
  align-items: center;
  gap: 0 8px;
  color: #888888;
  margin-bottom: 10px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::before, .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 222px;
  height: 1px;
  background-color: #333333;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::before {
  top: 11px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::after {
  top: 21px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .label {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price .num {
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.04em;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price .yen {
  margin-left: 2px;
  font-size: 18px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box {
  display: flex;
  align-items: center;
  gap: 0 7px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  padding-top: 14px;
  border-radius: 50%;
  background-color: #F25A22;
  color: #fff;
  text-align: center;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .lead {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 3px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .per {
  line-height: 1;
  font-size: 20px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .per .num {
  font-size: 28px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 6px;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price {
  font-size: 11px;
  line-height: 1;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price .num {
  font-size: 40px;
  font-weight: normal;
  color: #F25A22;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price .yen {
  margin-left: 2px;
  font-size: 22px;
  color: #F25A22;
  font-weight: 600;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .check_box {
  padding: 16px 10px;
  border-radius: 6px;
  background-color: #FFF7E3;
  border: 1px solid;
}
.common_menu_wrap .menu_list .menu_cont .text_cont .check_box .check {
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

#lp_trust_sec {
  margin-bottom: 120px;
}
#lp_trust_sec .lead_copy_box {
  margin-bottom: 110px;
  text-align: center;
}
#lp_trust_sec .lead_copy_box .top_lead {
  font-size: 30px;
  letter-spacing: 0.16em;
  line-height: 1.5;
  margin-bottom: 50px;
}
#lp_trust_sec .lead_copy_box .top_lead .color {
  font-size: 48px;
  letter-spacing: 0.29em;
  color: #F25A22;
}
#lp_trust_sec .lead_copy_box .ttl {
  font-size: 26px;
  letter-spacing: 0.19em;
  line-height: 1.6;
  font-weight: 600;
}
#lp_trust_sec .lead_copy_box .ttl .big {
  font-size: 46px;
}
#lp_trust_sec .lead_copy_box .ttl .middle {
  font-size: 30px;
}
#lp_trust_sec .reason_graph_cont {
  margin-bottom: 72px;
}
#lp_trust_sec .reason_graph_cont .top_text_box {
  margin-bottom: 48px;
}
#lp_trust_sec .reason_graph_cont .top_text_box .ttl {
  font-size: 28px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 31px;
}
#lp_trust_sec .reason_graph_cont .top_text_box .text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
#lp_trust_sec .reason_graph_cont .graph_list {
  margin-bottom: 40px;
}
#lp_trust_sec .reason_graph_cont .graph_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li {
  padding: 19px 0 20px;
  border-left: 1px solid;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(2n) {
  border-right: 1px solid;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(-n+2)::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: #333333;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .text_box {
  text-align: center;
  margin-bottom: 25px;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .lead {
  font-size: 20px;
  letter-spacing: 0.13em;
  line-height: 1;
  margin-bottom: 17px;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .num {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  color: #F25A22;
  letter-spacing: 0.05em;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .num .sub {
  font-size: 30px;
  letter-spacing: 0.19em;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .img {
  width: 319px;
  height: 127px;
  line-height: 1;
  margin: 0 auto;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .icon {
  position: absolute;
  z-index: 1;
  top: 36.5px;
  right: 226.5px;
  width: 66px;
  line-height: 1;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .icon img {
  width: 100%;
}
#lp_trust_sec .reason_graph_cont .graph_list ul li .text {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 0 30px;
}
#lp_trust_sec .reason_graph_cont .check_label {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
#lp_trust_sec .reason_graph_cont .check_label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333333;
}
#lp_trust_sec .reason_graph_cont .check_label .label {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1;
}
#lp_trust_sec .reason_list ul li {
  display: flex;
  align-items: center;
}
#lp_trust_sec .reason_list ul li + li {
  margin-top: 30px;
}
#lp_trust_sec .reason_list ul li .num_block {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#lp_trust_sec .reason_list ul li .num_block::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #333333;
}
#lp_trust_sec .reason_list ul li .num_block .num_box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #F25A22;
  color: #fff;
  text-align: center;
  padding-top: 31px;
}
#lp_trust_sec .reason_list ul li .num_block .num_box .label {
  font-size: 16px;
  line-height: 1.1;
}
#lp_trust_sec .reason_list ul li .num_block .num_box .label .num {
  font-size: 34px;
}
#lp_trust_sec .reason_list ul li .text_block {
  flex-grow: 1;
  padding: 30px 30px 25px;
  border-left: 1px solid;
}
#lp_trust_sec .reason_list ul li .text_block .ttl {
  font-size: 28px;
  letter-spacing: 0.19em;
  line-height: 1;
  margin-bottom: 26px;
}
#lp_trust_sec .reason_list ul li .text_block .text {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

#lp_doctor_sec {
  margin-bottom: 120px;
}
#lp_doctor_sec .cont {
  padding: 93px 100px 77px;
  z-index: 1;
}
#lp_doctor_sec .cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 60px 0 60px 0;
  background-color: #E2E2E2;
}
#lp_doctor_sec .cont .top_ttl_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  margin-bottom: 36px;
}
#lp_doctor_sec .cont .top_ttl_box .icon {
  flex-shrink: 0;
  width: 68px;
  line-height: 1;
}
#lp_doctor_sec .cont .top_ttl_box .icon img {
  width: 100%;
}
#lp_doctor_sec .cont .top_ttl_box .icon:nth-of-type(2) {
  transform: rotateY(180deg);
}
#lp_doctor_sec .cont .top_ttl_box .ttl {
  font-size: 34px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#lp_doctor_sec .cont .doctor_wrap {
  margin-bottom: 70px;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box:nth-child(2) {
  animation-delay: 0.1s;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box:nth-child(3) {
  animation-delay: 0.2s;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .img {
  width: 100%;
  height: 400px;
  line-height: 1;
  margin-bottom: 18px;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box {
  padding-bottom: 23px;
  border-bottom: 1px solid;
  margin-bottom: 18px;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .pos {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .name {
  font-size: 22px;
  letter-spacing: 0.15em;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 9px;
  color: #F25A22;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .sub_name {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 600;
}
#lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .career_list ul li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
#lp_doctor_sec .cont .line_cont .lead_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 11px;
  margin-bottom: 22px;
  text-align: center;
}
#lp_doctor_sec .cont .line_cont .lead_wrap::before, #lp_doctor_sec .cont .line_cont .lead_wrap::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #333333;
}
#lp_doctor_sec .cont .line_cont .lead_wrap::before {
  transform: rotate(30deg);
}
#lp_doctor_sec .cont .line_cont .lead_wrap::after {
  transform: rotate(-30deg);
}
#lp_doctor_sec .cont .line_cont .lead_wrap .lead_text {
  line-height: 1.2;
  font-size: 22px;
  letter-spacing: 0.15em;
}
#lp_doctor_sec .cont .line_cont .common_line_btn {
  margin: 0 auto;
}

#lp_menu_sec {
  margin-bottom: 120px;
}
#lp_menu_sec .top_text_cont {
  margin-bottom: 48px;
}
#lp_menu_sec .top_text_cont .ribbon_ttl_wrap {
  text-align: center;
  margin-bottom: 44px;
}
#lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl {
  display: inline-block;
  padding: 13px 60px 9px;
  background-color: #F25A22;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 50%, 100% 100%, 0 100%, 30px 50%);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
}
#lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl .en {
  margin-right: 5px;
  font-size: 52px;
  letter-spacing: 0.04em;
  font-weight: normal;
}
#lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl .en .color {
  font-size: 72px;
  color: #FFE200;
}
#lp_menu_sec .top_text_cont .text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
#lp_menu_sec .top_text_cont .text + .text {
  margin-top: 30px;
}
#lp_menu_sec .list ul li {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px 30px 20px 20px;
  gap: 0 30px;
}
#lp_menu_sec .list ul li + li {
  margin-top: 18px;
}
#lp_menu_sec .list ul li .ttl_box {
  font-weight: 600;
}
#lp_menu_sec .list ul li .ttl_box .cat {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-bottom: 13px;
  border-bottom: 1px solid;
  margin-bottom: 20px;
}
#lp_menu_sec .list ul li .ttl_box .name {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}
#lp_menu_sec .list ul li .img_block {
  flex-shrink: 0;
  width: 320px;
}
#lp_menu_sec .list ul li .img_block .img {
  width: 100%;
  height: 360px;
  line-height: 1;
}
#lp_menu_sec .list ul li .img_block .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lp_menu_sec .list ul li .text_block {
  flex-grow: 1;
}
#lp_menu_sec .list ul li .text_block .ttl_box {
  margin-bottom: 14px;
}
#lp_menu_sec .list ul li .text_block .text {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 16px;
}
#lp_menu_sec .list ul li .text_block .price_cont {
  display: flex;
  align-items: flex-end;
  gap: 0 24px;
  margin-bottom: 18px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box {
  display: flex;
  align-items: center;
  gap: 0 14px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  padding-top: 20px;
  border-radius: 50%;
  background-color: #F25A22;
  color: #fff;
  text-align: center;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .per {
  line-height: 1;
  font-size: 30px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .per .num {
  font-size: 36px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 3px;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(transparent 70%, #FFFF00 0%);
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price .num {
  font-size: 62px;
  font-weight: normal;
  color: #F25A22;
}
#lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price .yen {
  margin-left: 2px;
  font-size: 35px;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box {
  color: #888888;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box::before, #lp_menu_sec .list ul li .text_block .price_cont .before_box::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 184px;
  height: 1px;
  background-color: #333333;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box::before {
  bottom: 10px;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box::after {
  bottom: 20px;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box .label {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 7px;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box .price {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box .price .num {
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.04em;
}
#lp_menu_sec .list ul li .text_block .price_cont .before_box .price .yen {
  margin-left: 2px;
  font-size: 18px;
}
#lp_menu_sec .list ul li .text_block .check_box {
  padding: 20px 15px;
  background-color: #FFF7E3;
  border-radius: 6px;
}
#lp_menu_sec .list ul li .text_block .check_box .check {
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

#lp_cta_sec {
  overflow: hidden;
  padding: 85px 0 53px;
  background-image: url(image/lp/cta_sec_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#lp_cta_sec .deco {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: -255px;
  line-height: 1;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: screen;
}
#lp_cta_sec .deco img {
  width: 100%;
}
#lp_cta_sec:after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  z-index: 1;
  background: #625C5A;
  background: linear-gradient(90deg, rgb(98, 92, 90) 0%, rgb(98, 92, 90) 20%, rgba(80, 74, 70, 0.3) 100%);
}
#lp_cta_sec .cont {
  z-index: 2;
  color: #fff;
}
#lp_cta_sec .cont .lead_cont {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
#lp_cta_sec .cont .lead_cont .text_block .lead_text {
  font-size: 30px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 16px;
}
#lp_cta_sec .cont .lead_cont .text_block .ttl {
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #DDC78D;
}
#lp_cta_sec .cont .lead_cont .text_block .ttl .small {
  font-size: 50px;
  color: #fff;
  letter-spacing: 0.2em;
  margin-left: -0.5em;
}
#lp_cta_sec .cont .lead_cont .medal_list {
  flex-shrink: 0;
  width: 478px;
}
#lp_cta_sec .cont .lead_cont .medal_list ul {
  display: flex;
  justify-content: space-between;
}
#lp_cta_sec .cont .lead_cont .medal_list ul li {
  width: 150px;
  line-height: 1;
}
#lp_cta_sec .cont .lead_cont .medal_list ul li img {
  width: 100%;
}
#lp_cta_sec .cont .hash_list {
  margin-bottom: 60px;
}
#lp_cta_sec .cont .hash_list ul {
  display: flex;
  gap: 0 10px;
}
#lp_cta_sec .cont .hash_list ul li {
  text-decoration: underline;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
}
#lp_cta_sec .cont .line_cont {
  margin-bottom: 18px;
}
#lp_cta_sec .cont .line_cont .lead {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 12px;
}
#lp_cta_sec .cont .check_cont .label_box {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
#lp_cta_sec .cont .check_cont .label_box .icon {
  flex-shrink: 0;
  width: 29px;
  line-height: 1;
}
#lp_cta_sec .cont .check_cont .label_box .icon img {
  width: 100%;
}
#lp_cta_sec .cont .check_cont .label_box .label {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 600;
}
#lp_cta_sec .cont .check_cont .label_box .label .border {
  cursor: pointer;
  text-decoration: underline;
}
#lp_cta_sec .cont .check_cont .close_box {
  display: none;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 20px;
}
#lp_cta_sec .cont .check_cont .close_box .close_text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #F25A22;
}

#lp_reason_sec {
  margin-top: 140px;
  margin-bottom: 120px;
}
#lp_reason_sec .top_ttl_box {
  margin-bottom: 50px;
  text-align: center;
}
#lp_reason_sec .top_ttl_box .ttl {
  font-size: 42px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
#lp_reason_sec .reason_box {
  padding-bottom: 60px;
  border-bottom: 1px solid #333333;
}
#lp_reason_sec .reason_box .reason_ttl_box {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
#lp_reason_sec .reason_box .reason_ttl_box .num_block {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #F25A22;
  color: #fff;
  text-align: center;
  padding-top: 31px;
}
#lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box .label {
  font-size: 16px;
  line-height: 1.1;
}
#lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box .label .num {
  font-size: 34px;
}
#lp_reason_sec .reason_box .reason_ttl_box .num_block::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #333333;
}
#lp_reason_sec .reason_box .reason_ttl_box .name_label {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
}
#lp_reason_sec .reason_box.box1 {
  display: flex;
  align-items: center;
  gap: 0 40px;
  margin-bottom: 50px;
  padding-left: 100px;
}
#lp_reason_sec .reason_box.box1 .text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
#lp_reason_sec .reason_box.box1 .text_block {
  flex-grow: 1;
}
#lp_reason_sec .reason_box.box1 .text_block .reason_ttl_box {
  margin-bottom: 34px;
}
#lp_reason_sec .reason_box.box1 .text_block .ttl {
  font-size: 26px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 34px;
}
#lp_reason_sec .reason_box.box1 .img_block {
  width: 480px;
  flex-shrink: 0;
}
#lp_reason_sec .reason_box.box1 .img_block .img {
  width: 100%;
  height: 360px;
  line-height: 1;
}
#lp_reason_sec .reason_box.box1 .img_block .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
#lp_reason_sec .reason_box.box2 {
  margin-bottom: 60px;
}
#lp_reason_sec .reason_box.box2 .reason_ttl_box {
  padding: 0 100px;
  margin-bottom: 43px;
}
#lp_reason_sec .reason_box.box2 .lead_text_cont {
  text-align: center;
  margin-bottom: 45px;
}
#lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text {
  font-size: 26px;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
#lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text.x {
  font-size: 38px;
  margin: 8px 0;
}
#lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text .intro {
  display: block;
}
#lp_reason_sec .reason_box.box2 .lead_text_cont .ttl {
  margin-top: 52px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.5;
}
#lp_reason_sec .reason_box.box2 .guide_box {
  margin-top: 90px;
}
#lp_reason_sec .reason_box.box2 .guide_box .ribbon_ttl_wrap {
  text-align: center;
  margin-bottom: 24px;
}
#lp_reason_sec .reason_box.box2 .guide_box .ribbon_ttl_wrap .ttl {
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  display: inline-block;
  padding: 22px 70px;
  background-color: #F25A22;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 50%, 100% 100%, 0 100%, 30px 50%);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
}
#lp_reason_sec .reason_box.box2 .guide_box .guide_text {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.6;
}
#lp_reason_sec .reason_box.box2 .guide_box .common_line_btn {
  margin: 37px auto 0;
}
#lp_reason_sec .reason_box.box3 {
  padding: 0 100px;
  border-bottom: none;
  margin-bottom: 90px;
}
#lp_reason_sec .reason_box.box3 .reason_ttl_box {
  margin-bottom: 10px;
}
#lp_reason_sec .reason_box.box3 .cont {
  display: flex;
  align-items: flex-end;
  gap: 0 100px;
}
#lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box {
  padding-bottom: 14px;
  border-bottom: 1px solid;
  margin-bottom: 16px;
}
#lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .pos {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
#lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .name {
  font-size: 22px;
  letter-spacing: 0.15em;
  line-height: 1;
  font-weight: 600;
  color: #F25A22;
}
#lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .name .sub_name {
  font-size: 14px;
  color: #333333;
}
#lp_reason_sec .reason_box.box3 .cont .doctor_box .career_list ul li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
#lp_reason_sec .reason_box.box3 .cont .text_block {
  flex-grow: 1;
  padding-bottom: 19px;
}
#lp_reason_sec .reason_box.box3 .cont .text_block .ttl {
  font-size: 26px;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 28px;
}
#lp_reason_sec .reason_box.box3 .cont .text_block .text {
  font-size: 16px;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
#lp_reason_sec .reason_box.box3 .cont .text_block .text + .text {
  margin-top: 18px;
}
#lp_reason_sec .reason_box.box3 .cont .text_block .doctor_box {
  margin-top: 50px;
}
#lp_reason_sec .reason_box.box3 .cont .img_block {
  flex-shrink: 0;
  width: 470px;
}
#lp_reason_sec .reason_box.box3 .cont .img_block .img {
  width: 100%;
  height: 510px;
  line-height: 1;
}
#lp_reason_sec .reason_box.box3 .cont .img_block .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
#lp_reason_sec .line_cont .lead_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 11px;
  margin-bottom: 22px;
  text-align: center;
}
#lp_reason_sec .line_cont .lead_wrap::before, #lp_reason_sec .line_cont .lead_wrap::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #333333;
}
#lp_reason_sec .line_cont .lead_wrap::before {
  transform: rotate(30deg);
}
#lp_reason_sec .line_cont .lead_wrap::after {
  transform: rotate(-30deg);
}
#lp_reason_sec .line_cont .lead_wrap .lead_text {
  line-height: 1.2;
  font-size: 22px;
  letter-spacing: 0.15em;
}
#lp_reason_sec .line_cont .common_line_btn {
  margin: 0 auto;
}

#lp_flow_sec {
  margin-bottom: 130px;
}
#lp_flow_sec .top_ttl_box {
  margin-bottom: 40px;
  text-align: center;
}
#lp_flow_sec .top_ttl_box .ttl {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.19em;
}
#lp_flow_sec .flow_list ul li:last-child::after {
  content: none;
}
#lp_flow_sec .flow_list ul li::after {
  content: "";
  display: block;
  width: 130px;
  height: 18px;
  margin: -4px auto 0;
  background-color: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#lp_flow_sec .flow_list ul li + li {
  margin-top: 12px;
}
#lp_flow_sec .flow_list ul li .inner {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 0;
  display: flex;
  align-items: center;
}
#lp_flow_sec .flow_list ul li .inner .icon_box {
  flex-shrink: 0;
  width: 185px;
}
#lp_flow_sec .flow_list ul li .inner .icon_box .icon {
  width: 55px;
  height: 55px;
  line-height: 1;
  margin: 0 auto;
}
#lp_flow_sec .flow_list ul li .inner .icon_box .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#lp_flow_sec .flow_list ul li .inner .text_block {
  flex-grow: 1;
  padding: 12px 0 12px 50px;
  border-left: 1px solid;
}
#lp_flow_sec .flow_list ul li .inner .text_block .ttl {
  font-size: 24px;
  letter-spacing: 0.19em;
  margin-bottom: 5px;
}
#lp_flow_sec .flow_list ul li .inner .text_block .ttl .small {
  font-size: 18px;
}
#lp_flow_sec .flow_list ul li .inner .text_block .text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn {
  margin-top: 15px;
  width: 280px;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a {
  width: 100%;
  padding: 7px 0 7px 15px;
  display: flex;
  align-items: center;
  background-color: #06C755;
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a:hover {
  background-color: #05B54D;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .icon {
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
  margin-right: 10px;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .icon img {
  width: 100%;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .btn_label {
  flex-grow: 1;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .arrow {
  display: none;
  flex-shrink: 0;
  line-height: 1;
}
#lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .arrow img {
  width: 100%;
}

#lp_access_sec {
  margin-bottom: 158px;
}
#lp_access_sec .deco {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  line-height: 1;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
#lp_access_sec .deco img {
  width: 100%;
}
#lp_access_sec .cont {
  z-index: 1;
  padding-left: 115px;
  display: flex;
  gap: 0 85px;
}
#lp_access_sec .cont .img_block {
  flex-shrink: 0;
  width: 370px;
}
#lp_access_sec .cont .img_block .img,
#lp_access_sec .cont .img_block .img2 {
  line-height: 1;
  overflow: hidden;
}
#lp_access_sec .cont .img_block .img img,
#lp_access_sec .cont .img_block .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lp_access_sec .cont .img_block .img {
  width: 100%;
  height: 366px;
  border-radius: 0 40px 0 0;
  transition-delay: 0.1s;
}
#lp_access_sec .cont .img_block .img2 {
  position: absolute;
  top: 209px;
  right: 255px;
  width: 230px;
  height: 314px;
  border-radius: 0 0 0 40px;
  transition-delay: 0.2s;
}
#lp_access_sec .cont .text_block {
  margin-top: 83px;
  flex-grow: 1;
}
#lp_access_sec .cont .text_block .ttl_box {
  margin-bottom: 43px;
}
#lp_access_sec .cont .text_block .ttl_box .icon {
  position: absolute;
  right: 0;
  top: 3px;
  width: 41px;
  line-height: 1;
}
#lp_access_sec .cont .text_block .ttl_box .icon img {
  width: 100%;
}
#lp_access_sec .cont .text_block .ttl_box .logo {
  width: 173px;
  line-height: 1;
  margin-bottom: 18px;
}
#lp_access_sec .cont .text_block .ttl_box .logo img {
  width: 100%;
}
#lp_access_sec .cont .text_block .ttl_box .ttl {
  font-size: 26px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 600;
}
#lp_access_sec .cont .text_block .table_wrap table {
  width: 100%;
  border-collapse: collapse;
}
#lp_access_sec .cont .text_block .table_wrap table tr {
  line-height: 1.5;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #DBD5C9;
}
#lp_access_sec .cont .text_block .table_wrap table tr:first-child th, #lp_access_sec .cont .text_block .table_wrap table tr:first-child td {
  padding-top: 0;
}
#lp_access_sec .cont .text_block .table_wrap table tr th, #lp_access_sec .cont .text_block .table_wrap table tr td {
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 24px 0;
}
#lp_access_sec .cont .text_block .table_wrap table tr th {
  width: 88px;
  font-size: 14px;
}
#lp_access_sec .cont .text_block .table_wrap table tr td {
  font-size: 15px;
  color: #525252;
}
#lp_access_sec .cont .text_block .table_wrap table tr td .link {
  margin-top: 15px;
  justify-content: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #D6D6D6;
}
#lp_access_sec .cont .text_block .table_wrap table tr td .link .label {
  font-size: 13px;
  line-height: 1;
  color: #525252;
}
#lp_access_sec .cont .text_block .table_wrap table tr td .link .icon {
  height: 9.3px;
  line-height: 1;
}
#lp_access_sec .cont .text_block .table_wrap table tr td .link .icon svg {
  height: 100%;
  vertical-align: top;
}
#lp_access_sec .cont .text_block .table_wrap table tr td .link .icon svg path,
#lp_access_sec .cont .text_block .table_wrap table tr td .link .icon svg rect {
  fill: #525252;
}

#lp_faq_sec {
  margin-bottom: 130px;
}
#lp_faq_sec .cont {
  padding: 120px 100px 130px;
  z-index: 1;
}
#lp_faq_sec .cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 40px;
  background-color: #EBE1CA;
}
#lp_faq_sec .cont .top_ttl_box {
  margin-bottom: 48px;
  text-align: center;
}
#lp_faq_sec .cont .top_ttl_box .ttl {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
}
#lp_faq_sec .cont .faq_list ul li {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
}
#lp_faq_sec .cont .faq_list ul li + li {
  margin-top: 12px;
}
#lp_faq_sec .cont .faq_list ul li .ttl_box {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 20px;
}
#lp_faq_sec .cont .faq_list ul li .ttl_box .en {
  font-size: 24px;
  line-height: 1;
  color: #CD6139;
  flex-shrink: 0;
}
#lp_faq_sec .cont .faq_list ul li .ttl_box .ttl {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
#lp_faq_sec .cont .faq_list ul li .text_box .text {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #525252;
}

#lp_footer {
  position: relative;
  z-index: 1000;
  padding: 70px 0 50px;
  background: #625C5A;
  background: linear-gradient(180deg, rgb(98, 92, 90) 0%, rgb(80, 74, 70) 100%);
  color: #fff;
}
#lp_footer .logo {
  width: 229px;
  line-height: 1;
  margin: 0 auto 16.7px;
}
#lp_footer .logo img {
  width: 100%;
}
#lp_footer .address {
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
#lp_footer .link_list {
  margin-bottom: 30px;
}
#lp_footer .link_list ul {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
#lp_footer .link_list ul li {
  line-height: 1;
}
#lp_footer .link_list ul li a {
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}
#lp_footer .check_cont {
  background-color: #EBE1CA;
  border-radius: 15px;
  margin-bottom: 30px;
}
#lp_footer .check_cont .inner {
  height: 110px;
  overflow-y: scroll;
  padding: 25px 30px;
}
#lp_footer .check_cont .inner .text {
  color: #333333;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
#lp_footer .check_cont .inner .text + .text {
  margin-top: 5px;
}
#lp_footer .copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 750px) {
  @keyframes floating-y {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.03);
    }
  }
  .lp_fixed_cta_sp {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 3vw;
    width: 100%;
    line-height: 1;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
  }
  .lp_fixed_cta_sp.hide {
    opacity: 0;
    visibility: hidden;
  }
  .lp_fixed_cta_sp a {
    display: block;
    width: 100%;
  }
  .lp_fixed_cta_sp a .top_cont {
    background-color: #CD6139;
    padding: 5vw 5vw;
  }
  .lp_fixed_cta_sp a .top_cont::before {
    content: "";
    position: absolute;
    inset: 5px;
    margin: auto;
    border: 1px solid #fff;
  }
  .lp_fixed_cta_sp a .top_cont .text {
    font-size: 4vw;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1;
  }
  .lp_fixed_cta_sp a .top_cont .doctor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 33vw;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
  }
  .lp_fixed_cta_sp a .top_cont .doctor img {
    width: 100%;
  }
  .lp_fixed_cta_sp a .top_cont .en {
    position: absolute;
    bottom: 0;
    right: 6vw;
    width: 32vw;
    line-height: 1;
    z-index: 2;
  }
  .lp_fixed_cta_sp a .top_cont .en img {
    width: 100%;
  }
  .lp_fixed_cta_sp a .line_btn {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 90vw;
    margin: 0 auto;
    padding: 3vw 4vw 3vw 3vw;
    background-color: #06C755;
    border-radius: 8px;
    animation: floating-y 1s ease-in-out infinite alternate-reverse;
  }
  .lp_fixed_cta_sp a .line_btn::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #CAFCDE;
    animation: btn_animation 3s ease-in-out infinite;
    pointer-events: none;
  }
  .lp_fixed_cta_sp a .line_btn .icon {
    flex-shrink: 0;
    width: 11vw;
    line-height: 1;
  }
  .lp_fixed_cta_sp a .line_btn .icon img {
    width: 100%;
  }
  .lp_fixed_cta_sp a .line_btn .btn_label {
    text-align: center;
    flex-grow: 1;
    letter-spacing: 0.03em;
    line-height: 1;
    font-size: 3.8vw;
    color: #fff;
  }
  .lp_fixed_cta_sp a .line_btn .arrow {
    width: 5.2vw;
    flex-shrink: 0;
    line-height: 1;
    margin-left: 1vw;
  }
  .lp_fixed_cta_sp a .line_btn .arrow img {
    width: 100%;
  }
  #lp_header {
    top: 7vw;
    left: 5vw;
  }
  #lp_header .logo {
    width: 140px;
  }
  #lp_fv_sec {
    padding: 24vw 0 8vw;
  }
  #lp_fv_sec .deco {
    left: 0;
    right: 0;
    bottom: 30vw;
  }
  #lp_fv_sec .woman {
    right: 0;
    width: 89vw;
  }
  #lp_fv_sec .cont .top_cont {
    margin-bottom: 63vw;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #lp_fv_sec .cont .top_cont .medal_list {
    order: 3;
    margin-bottom: 0;
    margin-top: 4vw;
  }
  #lp_fv_sec .cont .top_cont .medal_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2vw;
  }
  #lp_fv_sec .cont .top_cont .medal_list ul li {
    width: auto;
  }
  #lp_fv_sec .cont .top_cont .copy {
    order: 1;
    font-size: 8.6vw;
    margin-bottom: 3vw;
    line-height: 1.3;
  }
  #lp_fv_sec .cont .top_cont .copy .color {
    font-size: 16vw;
  }
  #lp_fv_sec .cont .top_cont .ttl {
    order: 2;
    font-size: 4.6vw;
    line-height: 1.3;
  }
  #lp_fv_sec .cont .top_cont .ttl .big {
    display: block;
    margin-top: 1vw;
    font-size: 7vw;
  }
  #lp_fv_sec .cont .line_cont {
    margin-top: auto;
  }
  #lp_fv_sec .cont .line_cont .lead {
    text-align: center;
    font-size: 3.8vw;
    margin-bottom: 3vw;
    color: #fff;
  }
  #lp_fv_sec .cont .line_cont .sub_text {
    display: none;
  }
  .common_line_btn {
    width: 100%;
  }
  .common_line_btn a {
    padding: 3vw 4vw 3vw 3vw;
  }
  .common_line_btn a:hover {
    background-color: #06C755;
  }
  .common_line_btn a .icon {
    width: 11vw;
  }
  .common_line_btn a .btn_label {
    font-size: 3.8vw;
  }
  .common_line_btn a .arrow {
    margin-left: 1vw;
    width: 5.2vw;
  }
  #lp_lead_sec {
    margin-bottom: 18vw;
    padding: 24vw 0 25vw;
    background-image: url(image/lp/lead_sec_back_sp.jpg);
  }
  #lp_lead_sec::before {
    background: #333333;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.74) 0%, rgba(51, 51, 51, 0.74) 38%, rgba(51, 51, 51, 0) 100%);
  }
  #lp_lead_sec .cont .lead_cont {
    display: block;
    margin-bottom: 8vw;
  }
  #lp_lead_sec .cont .lead_cont .text_block {
    margin-bottom: 5vw;
  }
  #lp_lead_sec .cont .lead_cont .text_block .lead_text {
    gap: 0 1vw;
    margin-bottom: 3vw;
  }
  #lp_lead_sec .cont .lead_cont .text_block .lead_text::after {
    flex-grow: 1;
    width: auto;
  }
  #lp_lead_sec .cont .lead_cont .text_block .lead_text .lead {
    font-size: 4.8vw;
    letter-spacing: 0.13em;
  }
  #lp_lead_sec .cont .lead_cont .text_block .ttl_box {
    display: flex;
    gap: 0 1.5vw;
    align-items: flex-end;
  }
  #lp_lead_sec .cont .lead_cont .text_block .ttl_box .label {
    font-size: 9.5vw;
    color: #DDC78D;
    writing-mode: vertical-rl;
    line-height: 1;
    letter-spacing: 0.12em;
  }
  #lp_lead_sec .cont .lead_cont .text_block .ttl {
    font-size: 23.4vw;
    letter-spacing: 0.12em;
    transform: translateX(0);
  }
  #lp_lead_sec .cont .lead_cont .medal_list {
    width: 100%;
    margin-left: 0;
  }
  #lp_lead_sec .cont .lead_cont .medal_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2vw;
  }
  #lp_lead_sec .cont .lead_cont .medal_list ul li {
    width: auto;
  }
  #lp_lead_sec .cont .text {
    font-size: 4.4vw;
    line-height: 1.7;
  }
  #lp_lead_sec .cont .text + .text {
    margin-top: 6vw;
  }
  #lp_cam_guide_sec {
    margin-bottom: 18vw;
  }
  #lp_cam_guide_sec .ribbon_ttl_wrap {
    margin-bottom: 5vw;
  }
  #lp_cam_guide_sec .ribbon_ttl_wrap .ttl {
    width: 100%;
    padding: 4.3vw 0;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3vw) 50%, 100% 100%, 0 100%, 3vw 50%);
    font-size: 5.2vw;
    letter-spacing: 0.07em;
  }
  #lp_cam_guide_sec .guide_copy_ttl {
    font-size: 5.8vw;
    margin-bottom: 7vw;
  }
  #lp_cam_guide_sec .guide_copy_ttl .small {
    font-size: 4vw;
  }
  .common_menu_wrap .menu_list {
    width: 100vw;
    margin-left: -5vw;
    display: block;
  }
  .common_menu_wrap .menu_list .slick-track {
    display: flex;
  }
  .common_menu_wrap .menu_list .slick-list {
    padding-bottom: 10px !important;
  }
  .common_menu_wrap .menu_list .menu_cont {
    width: 88vw;
    height: auto;
    margin: 0 1vw;
    padding: 4vw 5vw 5vw;
    box-shadow: 0 10px 0 #F25A22;
  }
  .common_menu_wrap .menu_list .menu_cont:nth-child(2) {
    animation-delay: 0s;
  }
  .common_menu_wrap .menu_list .menu_cont:nth-child(3) {
    animation-delay: 0s;
  }
  .common_menu_wrap .menu_list .menu_cont:nth-child(4) {
    animation-delay: 0s;
  }
  .common_menu_wrap .menu_list .menu_cont .ttl_block {
    height: 10.2vw;
    margin-bottom: 3vw;
  }
  .common_menu_wrap .menu_list .menu_cont .ttl_block .ttl {
    font-size: 5.5vw;
    line-height: 1.1;
  }
  .common_menu_wrap .menu_list .menu_cont .ttl_block .ttl .small {
    font-size: 3.6vw;
  }
  .common_menu_wrap .menu_list .menu_cont .ttl_block .ttl .middle {
    font-size: 5.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list {
    margin-bottom: 3.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list .arrow {
    right: 33vw;
    top: 3vw;
    width: 9vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list.side .arrow {
    right: 1vw;
    top: 27vw;
    width: 11vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list.side .img_wrap .img_box {
    height: 29vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list.side .img_wrap .img_box + .img_box {
    margin-top: 2vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .img_box {
    height: 70vw;
  }
  .common_menu_wrap .menu_list .menu_cont .img_list .img_wrap .label {
    width: 17vw;
    padding: 2vw 0;
    font-size: 4vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .text_box {
    padding-bottom: 3vw;
    margin-bottom: 3vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .text_box .text {
    font-size: 3.2vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont {
    margin-bottom: 4vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .arrow {
    top: 7vw;
    right: 15vw;
    width: 11vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box {
    gap: 0 1vw;
    margin-bottom: 3vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::before, .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::after {
    width: 53vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::before {
    top: 2.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box::after {
    top: 5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .label {
    font-size: 3.6vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price {
    font-size: 3.3vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price .num {
    font-size: 7.2vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .before_box .price .yen {
    margin-left: 1vw;
    font-size: 3.7vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box {
    gap: 0 2vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box {
    width: 17.5vw;
    height: 17.5vw;
    padding-top: 3.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .lead {
    font-size: 3.5vw;
    margin-bottom: 1vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .per {
    font-size: 3.8vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .label_box .per .num {
    font-size: 7vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .label {
    font-size: 3.8vw;
    margin-bottom: 1vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price {
    font-size: 3.6vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price .num {
    font-size: 10vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .price_cont .after_box .price_box .price .yen {
    margin-left: 0.5vw;
    font-size: 5.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .check_box {
    padding: 3.5vw 3.5vw;
  }
  .common_menu_wrap .menu_list .menu_cont .text_cont .check_box .check {
    font-size: 3vw;
  }
  .common_menu_wrap .menu_list .slick-dots {
    position: relative;
    top: 0;
    margin-top: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
  }
  .common_menu_wrap .menu_list .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin: 0;
  }
  .common_menu_wrap .menu_list .slick-dots li.slick-active button {
    background-color: #F25A22;
    width: 14px;
    height: 14px;
  }
  .common_menu_wrap .menu_list .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #988C80;
    transition: 0.3s;
  }
  #lp_trust_sec {
    margin-bottom: 18vw;
  }
  #lp_trust_sec .lead_copy_box {
    margin-bottom: 11vw;
  }
  #lp_trust_sec .lead_copy_box .top_lead {
    font-size: 5vw;
    margin-bottom: 7vw;
  }
  #lp_trust_sec .lead_copy_box .top_lead .color {
    font-size: 8vw;
    line-height: 1.2;
    display: block;
    margin-top: 2vw;
  }
  #lp_trust_sec .lead_copy_box .ttl {
    text-align: left;
    font-size: 4.5vw;
  }
  #lp_trust_sec .lead_copy_box .ttl .big {
    font-size: 7vw;
  }
  #lp_trust_sec .lead_copy_box .ttl .middle {
    font-size: 4.8vw;
  }
  #lp_trust_sec .lead_copy_box .ttl .label {
    display: block;
    margin-top: 1vw;
  }
  #lp_trust_sec .reason_graph_cont {
    margin-bottom: 13vw;
  }
  #lp_trust_sec .reason_graph_cont .top_text_box {
    margin-bottom: 8vw;
  }
  #lp_trust_sec .reason_graph_cont .top_text_box .ttl {
    font-size: 5.8vw;
    line-height: 1.3;
    margin-bottom: 2vw;
  }
  #lp_trust_sec .reason_graph_cont .top_text_box .text {
    font-size: 3.4vw;
    letter-spacing: 0.06em;
  }
  #lp_trust_sec .reason_graph_cont .graph_list {
    margin-bottom: 6vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul {
    display: block;
    border-left: 1px solid;
    border-right: 1px solid;
    padding: 0 2.5vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0 4vw;
    padding: 5vw 0;
    border-left: none;
    border-bottom: 1px solid;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(2) {
    animation-delay: 0s;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(3) {
    animation-delay: 0s;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(4) {
    animation-delay: 0s;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(5) {
    animation-delay: 0s;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(6) {
    animation-delay: 0s;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(2n) {
    border-right: none;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:nth-child(-n+2)::before {
    content: none;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li:last-child {
    border-bottom: none;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .text_box {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 0;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .lead {
    font-size: 4vw;
    line-height: 1.2;
    margin-bottom: 2vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .num {
    font-size: 10vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .text_box .num .sub {
    font-size: 5.3vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap {
    flex-shrink: 0;
    width: 40vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .img {
    width: 27vw;
    height: 20vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .img_wrap .icon {
    top: 6vw;
    right: 11vw;
    width: 10vw;
  }
  #lp_trust_sec .reason_graph_cont .graph_list ul li .text {
    width: 100%;
    margin-top: 3vw;
    font-size: 3.2vw;
    padding: 0 2.5vw;
  }
  #lp_trust_sec .reason_graph_cont .check_label {
    display: block;
    text-align: center;
  }
  #lp_trust_sec .reason_graph_cont .check_label::before {
    content: none;
  }
  #lp_trust_sec .reason_graph_cont .check_label .label {
    font-size: 4vw;
    line-height: 1.5;
  }
  #lp_trust_sec .reason_list ul li {
    display: block;
  }
  #lp_trust_sec .reason_list ul li + li {
    margin-top: 7vw;
  }
  #lp_trust_sec .reason_list ul li .num_block {
    display: flex;
    align-items: center;
    margin-bottom: 3vw;
  }
  #lp_trust_sec .reason_list ul li .num_block::after {
    order: 2;
    flex-shrink: 0;
    width: 5vw;
    margin-right: 2vw;
  }
  #lp_trust_sec .reason_list ul li .num_block .num_box {
    order: 1;
    flex-shrink: 0;
    width: 20vw;
    height: 20vw;
    padding-top: 4.9vw;
  }
  #lp_trust_sec .reason_list ul li .num_block .num_box .label {
    font-size: 3.4vw;
  }
  #lp_trust_sec .reason_list ul li .num_block .num_box .label .num {
    font-size: 8vw;
  }
  #lp_trust_sec .reason_list ul li .num_block .ttl {
    flex-grow: 1;
    order: 3;
    font-size: 5.1vw;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  #lp_trust_sec .reason_list ul li .text_block {
    padding: 0;
    border-left: none;
  }
  #lp_trust_sec .reason_list ul li .text_block .ttl {
    display: none;
  }
  #lp_trust_sec .reason_list ul li .text_block .text {
    font-size: 3.5vw;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  #lp_doctor_sec {
    margin-bottom: 18vw;
  }
  #lp_doctor_sec .cont {
    padding: 14vw 0 16vw;
  }
  #lp_doctor_sec .cont::before {
    border-radius: 30px 0 30px 0;
  }
  #lp_doctor_sec .cont .top_ttl_box {
    display: block;
    position: relative;
    gap: 0;
    margin-bottom: 12vw;
  }
  #lp_doctor_sec .cont .top_ttl_box .icon {
    position: absolute;
    bottom: -6vw;
    width: 9vw;
    left: 5vw;
  }
  #lp_doctor_sec .cont .top_ttl_box .icon:nth-of-type(2) {
    left: auto;
    right: 5vw;
    transform: rotateY(180deg);
  }
  #lp_doctor_sec .cont .top_ttl_box .ttl {
    text-align: center;
    font-size: 5.2vw;
    line-height: 1.3;
  }
  #lp_doctor_sec .cont .doctor_wrap {
    margin-bottom: 10vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list {
    display: block;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box {
    width: 73vw;
    margin: 0 1.5vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .img {
    height: 77vw;
    margin-bottom: 5vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box {
    padding-bottom: 3.5vw;
    margin-bottom: 3vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .pos {
    font-size: 3.8vw;
    margin-bottom: 2.5vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .name {
    font-size: 5.6vw;
    margin-bottom: 2vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .name_box .sub_name {
    font-size: 3.2vw;
  }
  #lp_doctor_sec .cont .doctor_wrap .doctor_list .doctor_box .text_block .career_list ul li {
    font-size: 3.4vw;
  }
  #lp_doctor_sec .cont .line_cont .lead_wrap {
    gap: 0 1vw;
    margin-bottom: 3vw;
  }
  #lp_doctor_sec .cont .line_cont .lead_wrap::before, #lp_doctor_sec .cont .line_cont .lead_wrap::after {
    width: 8vw;
  }
  #lp_doctor_sec .cont .line_cont .lead_wrap .lead_text {
    line-height: 1.2;
    font-size: 4.3vw;
  }
  #lp_doctor_sec .cont .line_cont .common_line_btn {
    width: 80vw;
    margin: 0 auto;
  }
  #lp_menu_sec {
    margin-bottom: 18vw;
  }
  #lp_menu_sec .top_text_cont {
    margin-bottom: 5vw;
  }
  #lp_menu_sec .top_text_cont .ribbon_ttl_wrap {
    margin-bottom: 5vw;
  }
  #lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl {
    width: 100%;
    padding: 2vw 0 3vw;
    background-color: #F25A22;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3vw) 50%, 100% 100%, 0 100%, 3vw 50%);
    font-size: 4.8vw;
    letter-spacing: 0.07em;
  }
  #lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl .en {
    margin-right: 0;
    font-size: 8vw;
  }
  #lp_menu_sec .top_text_cont .ribbon_ttl_wrap .ttl .en .color {
    font-size: 14vw;
  }
  #lp_menu_sec .top_text_cont .text {
    text-align: left;
    font-size: 3.6vw;
    letter-spacing: 0.06em;
  }
  #lp_menu_sec .top_text_cont .text + .text {
    margin-top: 3vw;
  }
  #lp_menu_sec .list ul li {
    display: block;
    padding: 3vw;
  }
  #lp_menu_sec .list ul li + li {
    margin-top: 3vw;
  }
  #lp_menu_sec .list ul li .ttl_box .cat {
    font-size: 3.6vw;
    padding-bottom: 2vw;
    margin-bottom: 2.5vw;
  }
  #lp_menu_sec .list ul li .ttl_box .name {
    font-size: 4.5vw;
    line-height: 1.3;
  }
  #lp_menu_sec .list ul li .img_block {
    display: flex;
    align-items: center;
    gap: 0 3.5vw;
    margin-bottom: 3vw;
  }
  #lp_menu_sec .list ul li .img_block .img {
    flex-shrink: 0;
    width: 35vw;
    height: 40vw;
  }
  #lp_menu_sec .list ul li .text_block {
    flex-grow: 1;
  }
  #lp_menu_sec .list ul li .text_block .text {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont {
    display: block;
    margin-bottom: 3vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box {
    gap: 0 2vw;
    margin-bottom: 3vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box {
    width: 17.5vw;
    height: 17.5vw;
    padding-top: 3.5vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .lead {
    font-size: 3.5vw;
    margin-bottom: 1vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .per {
    font-size: 3.8vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .label_box .per .num {
    font-size: 7vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .label {
    font-size: 4vw;
    letter-spacing: 0.08em;
    margin-bottom: 1vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price {
    font-size: 3.6vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price .num {
    font-size: 11.6vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .after_box .price_box .price .yen {
    margin-left: 0.5vw;
    font-size: 6vw;
    color: #F25A22;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box {
    display: inline-flex;
    align-items: center;
    gap: 0 3vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box::before, #lp_menu_sec .list ul li .text_block .price_cont .before_box::after {
    left: auto;
    right: 0;
    width: 44vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box::before {
    bottom: 2.5vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box::after {
    bottom: 5vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box .label {
    font-size: 3.7vw;
    margin-bottom: 0;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box .price {
    font-size: 3.3vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box .price .num {
    font-size: 7.2vw;
  }
  #lp_menu_sec .list ul li .text_block .price_cont .before_box .price .yen {
    margin-left: 0.5vw;
    font-size: 3.7vw;
  }
  #lp_menu_sec .list ul li .text_block .check_box {
    padding: 3.5vw 3.5vw;
  }
  #lp_menu_sec .list ul li .text_block .check_box .check {
    font-size: 3.4vw;
  }
  #lp_cta_sec {
    padding: 15vw 0 10vw;
    background-image: url(image/lp/cta_sec_back_sp.jpg);
  }
  #lp_cta_sec .deco {
    left: 0;
    bottom: 0;
    right: 20vw;
    top: 0;
    opacity: 0.6;
  }
  #lp_cta_sec .cont .lead_cont {
    display: block;
    margin-bottom: 8vw;
  }
  #lp_cta_sec .cont .lead_cont .text_block .lead_text {
    font-size: 5.2vw;
    letter-spacing: 0.27em;
    margin-bottom: 3vw;
  }
  #lp_cta_sec .cont .lead_cont .text_block .ttl {
    margin-bottom: 5vw;
    white-space: nowrap;
    font-size: 15.5vw;
  }
  #lp_cta_sec .cont .lead_cont .text_block .ttl .small {
    font-size: 7vw;
  }
  #lp_cta_sec .cont .lead_cont .medal_list {
    width: 100%;
  }
  #lp_cta_sec .cont .lead_cont .medal_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2vw;
  }
  #lp_cta_sec .cont .lead_cont .medal_list ul li {
    width: auto;
  }
  #lp_cta_sec .cont .hash_list {
    margin-bottom: 7vw;
  }
  #lp_cta_sec .cont .hash_list ul {
    display: block;
  }
  #lp_cta_sec .cont .hash_list ul li + li {
    margin-top: 3.5vw;
  }
  #lp_cta_sec .cont .hash_list ul li {
    font-size: 4vw;
  }
  #lp_cta_sec .cont .line_cont {
    margin-bottom: 6vw;
  }
  #lp_cta_sec .cont .line_cont .lead {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 3vw;
  }
  #lp_cta_sec .cont .check_cont .label_box {
    display: block;
  }
  #lp_cta_sec .cont .check_cont .label_box .icon {
    width: 6vw;
    margin: 0 auto 3vw;
  }
  #lp_cta_sec .cont .check_cont .label_box .label {
    text-align: center;
    font-size: 3.6vw;
  }
  #lp_cta_sec .cont .check_cont .close_box {
    margin-top: 4vw;
    padding: 3.5vw;
  }
  #lp_cta_sec .cont .check_cont .close_box .close_text {
    font-size: 3.5vw;
  }
  #lp_reason_sec {
    margin-top: 18vw;
    margin-bottom: 20vw;
  }
  #lp_reason_sec .top_ttl_box {
    margin-bottom: 9vw;
  }
  #lp_reason_sec .top_ttl_box .ttl {
    font-size: 7vw;
    letter-spacing: 0.07em;
    line-height: 1.3;
  }
  #lp_reason_sec .reason_box {
    padding-bottom: 10vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box {
    gap: 0 2vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box {
    width: 20vw;
    height: 20vw;
    padding-top: 4.9vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box .label {
    font-size: 3.4vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box .num_block .num_box .label .num {
    font-size: 8vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box .num_block::after {
    width: 5vw;
  }
  #lp_reason_sec .reason_box .reason_ttl_box .name_label {
    font-size: 3.2vw;
  }
  #lp_reason_sec .reason_box.box1 {
    display: block;
    margin-bottom: 10vw;
    padding-left: 0;
  }
  #lp_reason_sec .reason_box.box1 .text {
    font-size: 3.4vw;
  }
  #lp_reason_sec .reason_box.box1 .text_block {
    margin-bottom: 4vw;
  }
  #lp_reason_sec .reason_box.box1 .text_block .reason_ttl_box {
    margin-bottom: 6vw;
  }
  #lp_reason_sec .reason_box.box1 .text_block .ttl {
    font-size: 5vw;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 0;
  }
  #lp_reason_sec .reason_box.box1 .img_block {
    width: 100%;
  }
  #lp_reason_sec .reason_box.box1 .img_block .img {
    height: 55vw;
    margin-bottom: 3vw;
  }
  #lp_reason_sec .reason_box.box1 .img_block .img img {
    border-radius: 10px;
  }
  #lp_reason_sec .reason_box.box2 {
    margin-bottom: 10vw;
  }
  #lp_reason_sec .reason_box.box2 .reason_ttl_box {
    padding: 0;
    margin-bottom: 6vw;
  }
  #lp_reason_sec .reason_box.box2 .lead_text_cont {
    margin-bottom: 4vw;
  }
  #lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text {
    font-size: 5vw;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  #lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text.x {
    font-size: 9vw;
    margin: 0.7vw 0;
  }
  #lp_reason_sec .reason_box.box2 .lead_text_cont .lead_text .intro {
    display: block;
    margin-top: 1.5vw;
  }
  #lp_reason_sec .reason_box.box2 .lead_text_cont .ttl {
    margin-top: 10vw;
    font-size: 5.2vw;
    letter-spacing: 0.04em;
  }
  #lp_reason_sec .reason_box.box2 .guide_box {
    margin-top: 12vw;
  }
  #lp_reason_sec .reason_box.box2 .guide_box .ribbon_ttl_wrap {
    margin-bottom: 6vw;
  }
  #lp_reason_sec .reason_box.box2 .guide_box .ribbon_ttl_wrap .ttl {
    width: 100%;
    padding: 4.3vw 0;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3vw) 50%, 100% 100%, 0 100%, 3vw 50%);
    font-size: 4.9vw;
    letter-spacing: 0.07em;
  }
  #lp_reason_sec .reason_box.box2 .guide_box .guide_text {
    font-size: 4.1vw;
    letter-spacing: 0.04em;
  }
  #lp_reason_sec .reason_box.box2 .guide_box .guide_text + .guide_text {
    margin-top: 3vw;
  }
  #lp_reason_sec .reason_box.box2 .guide_box .common_line_btn {
    margin: 5vw auto 0;
  }
  #lp_reason_sec .reason_box.box3 {
    padding: 0;
    margin-bottom: 10vw;
  }
  #lp_reason_sec .reason_box.box3 .reason_ttl_box {
    margin-bottom: 8vw;
  }
  #lp_reason_sec .reason_box.box3 .cont {
    display: block;
  }
  #lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box {
    padding-bottom: 3.5vw;
    margin-bottom: 3vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .pos {
    font-size: 3.8vw;
    margin-bottom: 2.5vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .name {
    font-size: 5.6vw;
    margin-bottom: 2vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .doctor_box .name_box .sub_name {
    font-size: 3.2vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .doctor_box .career_list ul li {
    font-size: 3.4vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .text_block {
    padding-bottom: 0;
    margin-bottom: 7vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .text_block .ttl {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .text_block .text {
    font-size: 3.5vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .text_block .text + .text {
    margin-top: 4vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .text_block .doctor_box {
    margin-top: 0;
  }
  #lp_reason_sec .reason_box.box3 .cont .img_block {
    width: 100%;
  }
  #lp_reason_sec .reason_box.box3 .cont .img_block .img {
    height: 69vw;
    margin-bottom: 4vw;
  }
  #lp_reason_sec .reason_box.box3 .cont .img_block .img img {
    -o-object-position: center -4vw;
       object-position: center -4vw;
    border-radius: 10px;
  }
  #lp_reason_sec .line_cont .lead_wrap {
    gap: 0 1vw;
    margin-bottom: 3vw;
  }
  #lp_reason_sec .line_cont .lead_wrap::before, #lp_reason_sec .line_cont .lead_wrap::after {
    width: 8vw;
  }
  #lp_reason_sec .line_cont .lead_wrap .lead_text {
    line-height: 1.2;
    font-size: 4.3vw;
  }
  #lp_reason_sec .line_cont .common_line_btn {
    width: 80vw;
    margin: 0 auto;
  }
  #lp_flow_sec {
    margin-bottom: 20vw;
  }
  #lp_flow_sec .top_ttl_box {
    margin-bottom: 7vw;
  }
  #lp_flow_sec .top_ttl_box .ttl {
    font-size: 5.8vw;
  }
  #lp_flow_sec .flow_list ul li:last-child::after {
    content: none;
  }
  #lp_flow_sec .flow_list ul li::after {
    width: 15vw;
    height: 5vw;
    margin: -1vw auto 0;
  }
  #lp_flow_sec .flow_list ul li + li {
    margin-top: 2vw;
  }
  #lp_flow_sec .flow_list ul li .inner {
    border-radius: 8px;
    padding: 7vw 3.5vw 5vw;
    display: block;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 5vw;
    gap: 0 5vw;
    position: relative;
    margin-bottom: 4vw;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 17.8vw;
    width: 1px;
    background-color: #333333;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box .icon {
    flex-shrink: 0;
    width: 8vw;
    height: 10vw;
    margin: 0;
    position: relative;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box .icon img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 80%;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box .ttl {
    padding-left: 5vw;
    font-size: 4.5vw;
    letter-spacing: 0.19em;
    line-height: 1.3;
  }
  #lp_flow_sec .flow_list ul li .inner .icon_box .ttl .small {
    font-size: 3.6vw;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block {
    padding: 0;
    border-left: none;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .text {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn {
    margin-top: 15px;
    width: 100%;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a {
    padding: 1vw 4vw 1vw 3vw;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a:hover {
    background-color: #06C755;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .icon {
    width: 11vw;
    margin-right: 1.5vw;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .btn_label {
    font-size: 3.8vw;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .arrow {
    display: none;
    flex-shrink: 0;
    line-height: 1;
  }
  #lp_flow_sec .flow_list ul li .inner .text_block .line_btn a .arrow img {
    width: 100%;
  }
  #lp_access_sec {
    margin-bottom: 18vw;
  }
  #lp_access_sec .deco {
    top: 44vw;
  }
  #lp_access_sec .cont {
    padding-left: 0;
    display: block;
  }
  #lp_access_sec .cont .img_block {
    width: 100%;
    margin-bottom: 27vw;
  }
  #lp_access_sec .cont .img_block .img {
    width: 69vw;
    height: 46vw;
    border-radius: 0 5vw 0 0;
    margin-left: auto;
  }
  #lp_access_sec .cont .img_block .img2 {
    top: 28vw;
    right: auto;
    left: 0;
    width: 55vw;
    height: 36vw;
    border-radius: 0 0 0 5vw;
  }
  #lp_access_sec .cont .text_block {
    margin-top: 0;
  }
  #lp_access_sec .cont .text_block .ttl_box {
    margin-bottom: 7vw;
  }
  #lp_access_sec .cont .text_block .ttl_box .icon {
    top: 16vw;
    width: 8vw;
  }
  #lp_access_sec .cont .text_block .ttl_box .logo {
    width: 42vw;
    margin-bottom: 3vw;
  }
  #lp_access_sec .cont .text_block .ttl_box .ttl {
    font-size: 5.7vw;
    line-height: 1.3;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr th, #lp_access_sec .cont .text_block .table_wrap table tr td {
    height: auto;
    padding: 4vw 0;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr th {
    width: 25vw;
    font-size: 3.8vw;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr td {
    vertical-align: middle;
    font-size: 3.4vw;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr td .link {
    margin-top: 3vw;
    gap: 0 3vw;
    padding-bottom: 1vw;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr td .link .label {
    font-size: 3.3vw;
  }
  #lp_access_sec .cont .text_block .table_wrap table tr td .link .icon {
    height: 2.5vw;
  }
  #lp_faq_sec {
    margin-bottom: 18vw;
  }
  #lp_faq_sec .cont {
    padding: 16vw 0 16vw;
  }
  #lp_faq_sec .cont::before {
    top: 0;
    bottom: 0;
    left: -5vw;
    right: -5vw;
    border-radius: 30px;
  }
  #lp_faq_sec .cont .top_ttl_box {
    margin-bottom: 6vw;
  }
  #lp_faq_sec .cont .top_ttl_box .ttl {
    font-size: 5.7vw;
  }
  #lp_faq_sec .cont .faq_list ul li {
    padding: 6vw 4vw;
    border-radius: 8px;
  }
  #lp_faq_sec .cont .faq_list ul li + li {
    margin-top: 2.5vw;
  }
  #lp_faq_sec .cont .faq_list ul li .ttl_box {
    align-items: baseline;
    gap: 0 3vw;
    margin-bottom: 3vw;
  }
  #lp_faq_sec .cont .faq_list ul li .ttl_box .en {
    transform: translateY(0.1em);
    font-size: 6.3vw;
  }
  #lp_faq_sec .cont .faq_list ul li .ttl_box .ttl {
    font-size: 4.4vw;
    line-height: 1.4;
  }
  #lp_faq_sec .cont .faq_list ul li .text_box .text {
    font-size: 3.4vw;
  }
  #lp_footer {
    z-index: 1;
    padding: 18vw 0 44vw;
  }
  #lp_footer .logo {
    width: 47vw;
    margin: 0 auto 3.5vw;
  }
  #lp_footer .address {
    font-size: 3.4vw;
    line-height: 1.6;
    margin-bottom: 10vw;
  }
  #lp_footer .link_list {
    margin-bottom: 5vw;
  }
  #lp_footer .link_list ul {
    gap: 0 5vw;
  }
  #lp_footer .link_list ul li a {
    font-size: 3.2vw;
  }
  #lp_footer .check_cont {
    border-radius: 3vw;
    margin-bottom: 5vw;
  }
  #lp_footer .check_cont .inner {
    height: 25vw;
    padding: 3.5vw 5vw;
  }
  #lp_footer .check_cont .inner .text {
    font-size: 3.2vw;
    line-height: 1.5;
  }
  #lp_footer .check_cont .inner .text + .text {
    margin-top: 2vw;
  }
  #lp_footer .copy {
    font-size: 2.8vw;
    line-height: 1.2;
  }
}/*# sourceMappingURL=lp.css.map */