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

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

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

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

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

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

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

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

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

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

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

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

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background: #D2B071;
  background: linear-gradient(-45deg, #D2B071 50%, #ebdbbe 60%, #D2B071 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

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

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

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #393F4A;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

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

a {
  text-decoration: none;
}

/* 固定背景切り替えクラス */
.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: all 1s;
}

.none {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
  pointer-events: none;
}

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

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

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

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

.bg_logo {
  position: absolute;
  width: max(5.2vw, 52px);
  top: max(2vw, 20px);
  left: max(2vw, 20px);
}

.bg_right {
  position: absolute;
  width: calc((100% - 380px) / 2);
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .bg_right {
    width: calc((100% - 380px) / 1.5);
  }
}

.bg_txt {
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}
.bg_txt img {
  height: calc(100% - 24px);
  max-height: 650px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.bg_fix {
  position: absolute;
  bottom: 16px;
  width: 100%;
}

.bg_sns {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 0 auto 20px;
}
.bg_sns a {
  display: block;
  width: max(2.2vw, 22px);
  transition: all 0.3s;
}
.bg_sns a:hover {
  opacity: 0.6;
}

.bg_access {
  color: #393F4A;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.bg_access_title {
  position: relative;
}

.bg_access_title h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.bg_access_title img {
  position: absolute;
  width: 110px;
  top: -16px;
  left: -24px;
}

.bg_access_txt {
  margin-bottom: 8px;
}

.bg_access_txt_top {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1400px) {
  .bg_access_txt_top {
    font-size: 17px;
  }
}

.bg_access_tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.bg_access_tel img {
  width: 18px;
}
.bg_access_tel span {
  font-size: 16px;
  font-weight: 700;
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 380px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .lp_body {
    left: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .lp_body {
    left: 50%;
  }
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
}

.cta_fix {
  position: fixed;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .cta_fix {
    left: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .cta_fix {
    left: 50%;
  }
}
.cta_fix .cta_btn {
  width: 335px;
}
@media screen and (max-width: 375px) {
  .cta_fix .cta_btn {
    width: 320px;
  }
}
@media screen and (max-width: 350px) {
  .cta_fix .cta_btn {
    width: 290px;
  }
}

/*---------------------------- fv ----------------------------*/
.fv {
  height: auto;
}

.fv_bottom {
  padding: 16px 0;
  background-color: #111;
}

.fv_bottom_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}

.fv_bottom_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4px;
  font-size: 18px;
  font-family: 700;
  color: #FFF;
}
.fv_bottom_txt span:first-child {
  color: #D2B071;
}
.fv_bottom_txt span:last-child {
  margin: 0 auto;
}

.fv_bottom_list {
  display: grid;
  grid-template-columns: repeat(3, 108px);
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .fv_bottom_list {
    grid-template-columns: repeat(3, 100px);
    gap: 2px;
  }
}
@media screen and (max-width: 350px) {
  .fv_bottom_list {
    grid-template-columns: repeat(3, 94px);
  }
}

.fv_bottom_item {
  position: relative;
}

.fv_bottom_effect {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
}
@media screen and (max-width: 375px) {
  .fv_bottom_effect {
    top: 2px;
    left: 2px;
  }
}

.fv_bottom_effect.move {
  animation: fv_bottom_effect 1.6s forwards;
}

@keyframes fv_bottom_effect {
  0% {
    transform: scale(1) rotate(0deg);
  }
  40% {
    transform: scale(2.4) rotate(16deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
/*---------------------------- cta ----------------------------*/
.cta {
  width: 100%;
  padding: 34px 0;
  background-image: url(../img/cta_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #393F4A;
}

.cta_bubble {
  width: 90%;
  background-image: url(../img/cta_bubble.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 64px;
  padding-top: 19px;
  margin: 0 auto 8px;
}

.cta_bubble.cta_bubble-lg {
  padding-top: 9px;
}

.cta_bubble_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.cta_bubble_txt::before {
  content: "";
  position: absolute;
  top: 60%;
  transform: translateY(-50%) rotate(-18deg);
  left: -12px;
  background-color: #393F4A;
  width: 1.6px;
  height: 14px;
}
@media screen and (max-width: 375px) {
  .cta_bubble_txt::before {
    left: -8px;
  }
}
.cta_bubble_txt::after {
  content: "";
  position: absolute;
  top: 60%;
  transform: translateY(-50%) rotate(18deg);
  right: -12px;
  background-color: #393F4A;
  width: 1.6px;
  height: 14px;
}
@media screen and (max-width: 375px) {
  .cta_bubble_txt::after {
    right: -8px;
  }
}

.cta_btn {
  display: block;
  width: 90%;
  margin: 0 auto;
  background-color: #D2B071;
  border-radius: 1000px;
  padding: 14px 0;
  box-shadow: 0px 4px 0 #AD7932;
  position: relative;
}
.cta_btn:hover {
  box-shadow: none;
  transform: translate(0, 4px);
}

.cta_btn_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  width: 22px;
}

.cta_btn_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
}

/*---------------------------- trouble ----------------------------*/
.trouble {
  background-color: #111;
  padding: 24px 0;
  position: relative;
}

.trouble_bg_left {
  width: 124px;
  position: absolute;
  top: 72px;
  left: 0;
}

.trouble_bg_right {
  width: 138px;
  position: absolute;
  top: 32px;
  right: 0;
}

.trouble_wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trouble_heading {
  margin-bottom: 16px;
}

.trouble_heading_main {
  margin-bottom: 16px;
}

.trouble_heading_bottom {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.trouble_item {
  border-radius: 1000px;
  height: 48px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
}

.trouble_item:nth-child(odd) {
  color: #FFF;
  background-color: #98AEC6;
}
.trouble_item:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -5.8px;
  width: 16px;
  height: 6px;
  background-image: url(../img/bubble_blue_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.trouble_item:nth-child(even) {
  background-color: #FFF;
}
.trouble_item:nth-child(even)::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -5.8px;
  width: 16px;
  height: 6px;
  background-image: url(../img/bubble_white_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.trouble_item:last-child {
  margin-bottom: 0;
}

.trouble_item_txt {
  display: block;
  padding-left: 26px;
  position: relative;
  line-height: 1.2;
}
.trouble_item_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 17px;
  height: 16px;
  background-image: url(../img/checkbox_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*---------------------------- attention ----------------------------*/
.attention {
  background-color: #F0EFEC;
  padding: 24px 0 0;
}

.attention_bubble {
  padding: 8px;
  border-radius: 100px;
  background-color: #98AEC6;
  position: relative;
  width: 295px;
  margin: 0 auto 20px;
}
.attention_bubble::after {
  content: "";
  position: absolute;
  background-image: url(../img/bubble_blue_lg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 40px;
  bottom: -10.8px;
  width: 30px;
  height: 11px;
}

.attention_bubble_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
}

.attention_heading {
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1.6px solid #98AEC6;
}

.attention_heading h2 {
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.attention_heading img {
  position: absolute;
  width: 335px;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
}

.attention_top_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto;
  font-size: 24px;
  font-weight: 700;
  color: #98AEC6;
  text-align: center;
  line-height: 1.6;
}

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

.attention_item {
  margin-bottom: 8px;
}
.attention_item:last-child {
  margin-bottom: 0;
}

.attention_item span {
  display: block;
  padding-left: 16px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
.attention_item span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  background-image: url(../img/list_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*---------------------------- doctor ----------------------------*/
.doctor {
  background-color: #111;
  padding: 24px 0;
}

.doctor_heading {
  margin-bottom: 16px;
}

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

.doctor_list {
  width: 100%;
  padding: 16px 0 0;
}

.doctor_item {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 82px 1fr;
}
.doctor_item:last-child {
  margin-bottom: 0;
}

.doctor_item span:nth-child(1) {
  display: block;
  width: 70px;
  font-size: 14px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  font-weight: 500;
  color: #98AEC6;
  line-height: 1.5;
}
.doctor_item span:nth-child(2) {
  color: #FFF;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

/*---------------------------- case ----------------------------*/
.case {
  background-color: #FFF;
  padding: 24px 0;
}

.case_bubble {
  width: 90%;
  margin: 0 auto 42px;
  padding: 12px 0;
  border-radius: 100px;
  background-color: #98AEC6;
  position: relative;
}
.case_bubble::after {
  content: "";
  position: absolute;
  background-image: url(../img/bubble_blue_lg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 40px;
  bottom: -10.8px;
  width: 30px;
  height: 11px;
}

.case_bubble_txt {
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  line-height: 1.4;
}

.case_title {
  position: relative;
  margin-bottom: 24px;
}

.case_title h2 {
  font-weight: 700;
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.case_title img {
  position: absolute;
  width: 96px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

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

.case_img {
  margin-bottom: 30px;
}

.case_list {
  width: 100%;
  padding: 16px 0 0;
}

.case_item {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 82px 1fr;
}
.case_item:last-child {
  margin-bottom: 0;
}

.case_item span:nth-child(1) {
  display: block;
  width: 70px;
  font-size: 14px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  font-weight: 500;
  color: #98AEC6;
  line-height: 1.5;
}
.case_item span:nth-child(2) {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.swiper-button-prev {
  width: 22px !important;
  height: 22px !important;
  left: 6px !important;
  top: 40% !important;
  transition: all 0.3s;
}
.swiper-button-prev:hover {
  opacity: 0.6;
}
.swiper-button-prev::after {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  background-image: url(../img/prev_btn.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.swiper-button-next {
  width: 22px !important;
  height: 22px !important;
  right: 6px !important;
  top: 40% !important;
  transition: all 0.3s;
}
.swiper-button-next:hover {
  opacity: 0.6;
}
.swiper-button-next::after {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  background-image: url(../img/next_btn.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.swiper-pagination {
  bottom: auto !important;
  top: 244px !important;
}

.swiper-pagination-bullet {
  background: #F0EFEC !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #98AEC6 !important;
  opacity: 1 !important;
}

/*---------------------------- qa ----------------------------*/
.qa {
  background-color: #F0EFEC;
  padding: 24px 0;
}

.qa_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.qa_heading h2 {
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.qa_heading img {
  position: absolute;
  width: 186px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.qa_list {
  margin-bottom: 22px;
}

.qa_title {
  background: #98AEC6;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  padding: 0 10px;
  height: 74px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .qa_title {
    height: 94px;
  }
}
.qa_title::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -5.8px;
  transform: scale(-1, 1);
  width: 16px;
  height: 6px;
  background-image: url(../img/bubble_blue_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.qa_title p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #FFF;
  padding-left: 28px;
  padding-right: 30px;
  position: relative;
  width: 100%;
}
.qa_title p::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../img/q_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.qa_title p:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/q_arrow.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.qa_txt {
  background: #FFF;
  display: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  margin-top: 12px;
}
.qa_txt::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -5.8px;
  transform: scale(-1, 1);
  width: 16px;
  height: 6px;
  background-image: url(../img/bubble_white_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.qa_txt_inner {
  display: flex;
  align-items: center;
}

.qa_txt p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  padding-left: 28px;
  padding-right: 30px;
  position: relative;
  width: 100%;
}
.qa_txt p span {
  font-size: 10px;
}
.qa_txt p .small_txt {
  display: block;
  font-size: 10px;
  margin-top: 6px;
}
.qa_txt p::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../img/a_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.qa_txt p:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/a_arrow.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*---------------------------- flow ----------------------------*/
.flow {
  background-color: #98AEC6;
  padding: 24px 0;
}

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

.flow_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.flow_heading h2 {
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #FFF;
}

.flow_heading img {
  position: absolute;
  width: 128px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.flow_item {
  background-color: #FFF;
  margin-bottom: 14px;
  padding: 0 20px 16px;
  position: relative;
}
.flow_item::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 19px;
  background-color: #393F4A;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.flow_item:last-child {
  margin-bottom: 0;
}
.flow_item:last-child::after {
  width: 0;
}

.flow_item_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.flow_item_num {
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
  display: block;
  padding: 6px 4px;
  background-color: #D2B071;
}

.flow_item_title_txt {
  font-weight: 700;
  font-size: 18px;
  color: #D2B071;
}

.flow_item_img {
  margin-bottom: 8px;
}

.flow_item_txt {
  line-height: 1.4;
  font-weight: 15px;
  font-weight: 500;
}

/*---------------------------- product ----------------------------*/
.product {
  background-color: #393F4A;
  padding: 24px 0;
}

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

.product_bubble {
  width: 100%;
  padding: 8px 0 10px;
  position: relative;
  background-color: #98AEC6;
  border-radius: 100px;
  margin-bottom: 26px;
}
.product_bubble::after {
  content: "";
  position: absolute;
  background-image: url(../img/bubble_blue_lg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 40px;
  bottom: -10.8px;
  width: 30px;
  height: 11px;
}

.product_bubble_txt {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-weight: 700;
}

.product_img {
  margin-bottom: 8px;
}

.product_bottom span {
  color: #98AEC6;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.product_bottom span:nth-child(2) {
  width: 100%;
  border-radius: 100px;
  border: 1.6px solid #98AEC6;
  text-align: center;
  margin-top: 12px;
  padding: 6px 0 7px;
}

/*---------------------------- care ----------------------------*/
.care {
  background-color: #F0EFEC;
  padding: 24px 0;
}

.care_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.care_heading h2 {
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.care_heading img {
  position: absolute;
  width: 342px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 375px) {
  .care_heading img {
    width: 90%;
  }
}

.care_content {
  border: 6px solid #98AEC6;
  padding: 24px 20px;
}

.care_item {
  margin-bottom: 16px;
}
.care_item:last-child {
  margin-bottom: 0;
}

.care_item_title {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  position: relative;
}
.care_item_title img {
  position: absolute;
  width: 20px;
  top: 0px;
  right: -28px;
}

.care_item_title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  color: #98AEC6;
}

.care_item_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

/*---------------------------- notice ----------------------------*/
.notice {
  background-color: #F0EFEC;
  padding: 24px 0;
}

.notice_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.notice_heading h2 {
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.notice_heading img {
  position: absolute;
  width: 188px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.notice_content {
  border: 6px solid #727272;
  padding: 24px 20px;
}

.notice_item {
  border-bottom: 2px solid #727272;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.notice_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.notice_item_title {
  font-size: 18px;
  font-weight: 700;
  color: #727272;
  margin-bottom: 8px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.notice_item_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.notice_bottom p {
  position: relative;
  padding-left: 12px;
  font-size: 10px;
  margin-bottom: 4px;
}
.notice_bottom p::before {
  content: "※";
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.notice_bottom p:last-child {
  margin-bottom: 0;
}

/*---------------------------- treatment ----------------------------*/
.treatment {
  background-color: #111;
  padding: 24px 0;
}

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

.treatment_bubble {
  background-color: #98AEC6;
  border-radius: 100px;
  width: 100%;
  padding: 6px 0;
  position: relative;
  margin-bottom: 6px;
}
.treatment_bubble::after {
  content: "";
  position: absolute;
  background-image: url(../img/bubble_blue_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 30px;
  bottom: -5.8px;
  width: 14px;
  height: 6px;
  transform: scale(-1, 1);
}

.treatment_bubble_txt {
  font-size: 17px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

.treatment_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.treatment_heading h2 {
  font-size: 40px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #98AEC6;
}
@media screen and (max-width: 400px) {
  .treatment_heading h2 {
    font-size: 34px;
  }
}

.treatment_heading img {
  position: absolute;
  width: 286px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 375px) {
  .treatment_heading img {
    width: 90%;
  }
}

.treatment_content {
  border: 1.6px solid #98AEC6;
  border-radius: 8px;
  padding: 24px 20px;
  width: 100%;
}

.treatment_txt {
  font-size: 16px;
  font-weight: 400;
  color: #98AEC6;
  margin-bottom: 24px;
  line-height: 1.4;
}

.treatment_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/*---------------------------- clinic ----------------------------*/
.clinic {
  background-color: #111;
  padding: 24px 0;
}

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

.clinic_bubble {
  background-color: #98AEC6;
  border-radius: 100px;
  width: 100%;
  padding: 6px 0;
  position: relative;
  margin-bottom: 6px;
}
.clinic_bubble::after {
  content: "";
  position: absolute;
  background-image: url(../img/bubble_blue_sm.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 30px;
  bottom: -5.8px;
  width: 14px;
  height: 6px;
  transform: scale(-1, 1);
}

.clinic_bubble_txt {
  font-size: 17px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

.clinic_heading {
  position: relative;
  padding-top: 26px;
  margin-bottom: 28px;
}

.clinic_heading h2 {
  font-size: 40px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #98AEC6;
}
@media screen and (max-width: 400px) {
  .clinic_heading h2 {
    font-size: 34px;
  }
}

.clinic_heading img {
  position: absolute;
  width: 132px;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.clinic_content {
  border-radius: 8px;
  background-color: #98AEC6;
  padding: 24px 20px;
  width: 100%;
}

.clinic_doctor {
  margin-bottom: 16px;
  position: relative;
}
.clinic_doctor img {
  position: absolute;
  width: 166px;
  top: -24px;
  left: -20px;
}

.clinic_doctor span {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 4px;
}
.clinic_doctor span:nth-child(1) {
  margin-right: 16px;
}

.clinic_list {
  margin-bottom: 24px;
}

.clinic_item {
  display: block;
  line-height: 1.3;
}

/*---------------------------- access ----------------------------*/
.access {
  background-color: #98AEC6;
  padding: 24px 0;
}

.access_wrapper {
  width: 100%;
}

.access_title {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 400px) {
  .access_title {
    padding-left: 24px;
  }
}
.access_title img {
  position: absolute;
  top: -16px;
  left: 0;
  width: 116px;
}

.access_title_txt {
  font-size: 24px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.access_top_content {
  padding: 0 40px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 400px) {
  .access_top_content {
    padding: 0 24px;
  }
}

.access_txt {
  margin-bottom: 16px;
}
.access_txt span {
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.access_txt p {
  font-size: 16px;
  line-height: 1.4;
}

.access_tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.access_tel img {
  width: 18px;
}
.access_tel span {
  font-size: 16px;
  font-weight: 700;
}

.access_time {
  margin-bottom: 24px;
}

.access_time h3 {
  font-weight: 700;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}

.access_time_img {
  width: 90%;
  margin: 0 auto 8px;
}

.access_time_bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
  padding: 0 40px;
  font-size: 14px;
}
@media screen and (max-width: 400px) {
  .access_time_bottom {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 350px) {
  .access_time_bottom {
    font-size: 13px;
  }
}

.access_map {
  width: 90%;
  margin: 0 auto 16px;
  height: 150px;
}
.access_map iframe {
  width: 100% !important;
  height: 100% !important;
}

.access_sns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.access_sns a {
  display: block;
  width: 24px;
  transition: all 0.3s;
}
.access_sns a:hover {
  opacity: 0.6;
}

/*---------------------------- footer ----------------------------*/
.footer {
  background-color: #98AEC6;
  padding: 16px 0 80px;
}
.footer small {
  font-size: 12px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .footer small {
    font-size: 10px;
  }
}/*# sourceMappingURL=index.css.map */