@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media screen and (max-width: 766px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 767px) {
  .sp_only {
    display: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  font-size: 18px;
  width: 100%;
  height: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 766px) {
  html, body {
    font-size: calc( 36/750 * 100vw);
  }
}

h2, h3, h4, h5 {
  font-weight: 400;
}

p {
  line-height: 2;
}

sup {
  vertical-align: super;
  font-size: 0.6em;
}

img {
  width: 100%;
}

a {
  color: inherit;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
@media screen and (max-width: 766px) {
  a:hover {
    opacity: 1;
  }
}

section {
  overflow: hidden;
}

.content_inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .content_inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 766px) {
  .content_inner {
    width: calc( 670/750 * 100vw);
  }
}

.roman {
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-style: normal;
}

/*  ---------------------------
		HEADER
---------------------------  */
body > header {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  height: 100px;
}
@media screen and (max-width: 766px) {
  body > header {
    height: calc( 120/750 * 100vw);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-shadow: 0 calc( 6/750 * 100vw) calc( 16/750 * 100vw) rgba(0, 0, 0, 0.08);
  }
}
body > header .logo {
  width: 260px;
  padding: 30px 0 30px 40px;
}
@media screen and (max-width: 766px) {
  body > header .logo {
    width: calc( 286/750 * 100vw);
    padding: calc( 36/750 * 100vw) 0 calc( 36/750 * 100vw) calc( 30/750 * 100vw);
  }
}
body > header .header_cv {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 766px) {
  body > header .header_cv {
    height: 100%;
  }
}
body > header .header_tel {
  font-size: min(3.33vw, 40px);
  font-weight: 700;
  color: #007b78;
  text-align: center;
  line-height: 1.3;
  margin-right: min(1.67vw, 20px);
}
body > header .header_tel i {
  font-size: min(2.67vw, 32px);
  position: relative;
  top: -2px;
}
body > header .header_tel span {
  font-size: min(1.08vw, 13px);
  font-weight: 400;
}
body > header .header_consult a, body > header .header_contact a {
  display: block;
  width: min(19.23vw, 250px);
  height: 100%;
  font-weight: 500;
  padding-top: 40px;
  text-align: center;
  font-size: min(1.5vw, 18px);
}
@media screen and (max-width: 766px) {
  body > header .header_consult a, body > header .header_contact a {
    width: calc( 300/750 * 100vw);
    font-size: calc( 24/750 * 100vw);
    padding-top: 0;
    margin-left: calc( 32/750 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body > header .header_consult a {
  background-color: #fed400;
}
body > header .header_contact a {
  background-color: #8dca60;
}
@media screen and (max-width: 766px) {
  body > header .header_menu {
    height: 100%;
  }
}
@media screen and (max-width: 766px) {
  body > header .header_menu_btn {
    width: calc( 130/750 * 100vw);
    height: 100%;
    border: none;
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc( 10/750 * 100vw);
    cursor: pointer;
    padding: 0;
  }
}
@media screen and (max-width: 766px) {
  body > header .header_menu_icon {
    display: inline-block;
    width: calc( 60/750 * 100vw);
    padding-top: 5px;
  }
  body > header .header_menu_icon span {
    display: block;
    height: calc( 1/750 * 100vw);
    background-color: #007b78;
  }
  body > header .header_menu_icon span + span {
    margin-top: calc( 18/750 * 100vw);
  }
}
@media screen and (max-width: 766px) {
  body > header .header_menu_txt {
    font-size: calc( 20/750 * 100vw);
    font-weight: 500;
    color: #007b78;
    line-height: 1;
    margin-top: 5px;
  }
}
body > header {
  /* ===========================
     SP：メニューOPEN時の挙動
     =========================== */
}
body > header.is_spnav_open {
  /* OPEN中は「医師との医療相談」を非表示 */
}
@media screen and (max-width: 766px) {
  body > header.is_spnav_open .header_menu_btn {
    padding-top: 14px;
  }
  body > header.is_spnav_open .header_consult {
    display: none;
  }
  body > header.is_spnav_open .header_menu_txt {
    font-size: 0;
    position: relative;
    line-height: 1;
    padding-top: 8px;
  }
  body > header.is_spnav_open .header_menu_txt::after {
    content: "閉じる";
    font-size: calc( 20/750 * 100vw);
    font-weight: 500;
    color: #007b78;
  }
}
@media screen and (max-width: 766px) {
  body > header.is_spnav_open .header_menu_icon {
    position: relative;
    width: calc( 66/750 * 100vw);
  }
  body > header.is_spnav_open .header_menu_icon span {
    margin-top: 0 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: calc( 1/750 * 100vw);
    background-color: #007b78;
    transform-origin: center;
  }
  body > header.is_spnav_open .header_menu_icon span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  body > header.is_spnav_open .header_menu_icon span:nth-child(2) {
    opacity: 0;
  }
  body > header.is_spnav_open .header_menu_icon span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (max-width: 766px) {
  main {
    padding-top: calc( 120/750 * 100vw);
  }
}

/*  ---------------------------
		CONTENT
---------------------------  */
.mv .mv_pt {
  height: min(63.33vw, 760px);
  background-image: url(../images/mv_bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 766px) {
  .mv .mv_pt {
    height: calc( 1638/750 * 100vw);
    background-image: url(../images/mv_bg_sp.jpg);
  }
}
.mv .mv_pt .content_inner {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 767px) {
  .mv .mv_pt .content_inner {
    max-width: 1300px;
  }
}
.mv .mv_pt .mv_ttl {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_ttl {
    width: calc( 670/750 * 100vw);
  }
}
.mv .mv_pt .mv_pt_img {
  position: absolute;
  width: min(27.58vw, 331px);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_pt_img {
    width: calc( 530/750 * 100vw);
  }
}
.mv .mv_pt .mv_pt_fuki_1, .mv .mv_pt .mv_pt_fuki_2 {
  position: absolute;
  width: min(34.62vw, 450px);
  padding: min(3.85vw, 50px) min(3.08vw, 40px) min(3.85vw, 50px) min(2.31vw, 30px);
  border: 2px solid #585858;
  border-radius: 30px;
  background-color: #fff;
  font-size: min(2.15vw, 28px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.6;
  filter: drop-shadow(0 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_pt_fuki_1, .mv .mv_pt .mv_pt_fuki_2 {
    font-size: calc( 18/750 * 100vw);
  }
}
.mv .mv_pt .mv_pt_fuki_1 span, .mv .mv_pt .mv_pt_fuki_2 span {
  font-size: min(2.77vw, 36px);
  letter-spacing: -0.07em;
  color: #007b78;
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_pt_fuki_1 span, .mv .mv_pt .mv_pt_fuki_2 span {
    font-size: calc( 26/750 * 100vw);
  }
}
.mv .mv_pt .mv_pt_fuki_1 {
  top: 50%;
  left: 0;
}
.mv .mv_pt .mv_pt_fuki_1::before {
  content: "";
  position: absolute;
  top: min(10.38vw, 135px);
  right: -45px;
  width: 0;
  height: 0;
  border-bottom: 28px solid #585858;
  border-left: 0 solid transparent;
  border-right: 45px solid transparent;
  transform-origin: left top;
}
.mv .mv_pt .mv_pt_fuki_1::after {
  content: "";
  position: absolute;
  top: min(10.23vw, 133px);
  right: -38px;
  width: 0;
  height: 0;
  border-bottom: 28px solid #fff;
  border-left: 0px solid transparent;
  border-right: 45px solid transparent;
  transform-origin: left top;
}
.mv .mv_pt .mv_pt_fuki_2 {
  top: 62%;
  right: 0;
  text-align: center;
}
.mv .mv_pt .mv_pt_fuki_2::before {
  content: "";
  position: absolute;
  top: min(2.92vw, 38px);
  left: -45px;
  width: 0;
  height: 0;
  border-top: 28px solid #585858;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
.mv .mv_pt .mv_pt_fuki_2::after {
  content: "";
  position: absolute;
  top: min(3.08vw, 40px);
  left: -38px;
  width: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
.mv .mv_pt .mv_pt_fuki_sp {
  position: relative;
  background-color: #fff;
  padding: calc( 40/750 * 100vw) 10px;
  border: calc( 4/750 * 100vw) solid #585858;
  border-radius: calc( 60/750 * 100vw);
  margin-top: calc( 60/750 * 100vw);
  filter: drop-shadow(0 calc( 10/750 * 100vw) rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_pt_fuki_sp p {
    font-size: clamp(15px, 4.8vw, 17px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.6;
    text-align: center;
  }
}
@media all and (max-width: 300px) {
  .mv .mv_pt .mv_pt_fuki_sp p {
    font-size: 12px;
  }
}
@media screen and (max-width: 766px) {
  .mv .mv_pt .mv_pt_fuki_sp p span {
    font-size: clamp(21px, 7vw, 25px);
    color: #007b78;
    letter-spacing: -0.05em;
  }
}
@media all and (max-width: 300px) {
  .mv .mv_pt .mv_pt_fuki_sp p span {
    font-size: 18px;
  }
}
.mv .mv_pt .mv_pt_fuki_sp p + p {
  margin-top: calc( 20/750 * 100vw);
}
.mv .mv_pt .mv_pt_fuki_sp::before {
  content: "";
  position: absolute;
  bottom: calc( -50/750 * 100vw);
  left: calc( 80/750 * 100vw);
  width: 0;
  height: 0;
  border-top: calc( 50/750 * 100vw) solid #585858;
  border-left: calc( 50/750 * 100vw) solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
.mv .mv_pt .mv_pt_fuki_sp::after {
  content: "";
  position: absolute;
  bottom: calc( -40/750 * 100vw);
  left: calc( 76/750 * 100vw);
  width: 0;
  height: 0;
  border-top: calc( 50/750 * 100vw) solid #fff;
  border-left: calc( 50/750 * 100vw) solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
.mv .mv_doctor {
  background-color: #00448c;
}
.mv .mv_doctor .mv_doctor_container {
  position: relative;
  padding: min(4.83vw, 58px) 0;
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_container {
    padding: calc( 60/750 * 100vw) 0 calc( 580/750 * 100vw);
  }
}
.mv .mv_doctor .mv_doctor_fuki {
  width: min(66.67vw, 800px);
  padding: min(2.92vw, 35px) min(3.17vw, 38px);
  border: 2px solid #585858;
  border-radius: 30px;
  background-color: #fff;
  font-size: min(2.15vw, 28px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.8;
  filter: drop-shadow(0 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_fuki {
    width: 100%;
    padding: calc( 50/750 * 100vw) 0;
    border: calc( 4/750 * 100vw) solid #585858;
    border-radius: calc( 60/750 * 100vw);
    font-size: calc( 36/750 * 100vw);
    text-align: center;
    filter: drop-shadow(0 calc( 10/750 * 100vw) rgba(0, 0, 0, 0.1));
  }
}
.mv .mv_doctor .mv_doctor_fuki span {
  font-size: min(2.77vw, 36px);
  letter-spacing: -0.07em;
  color: #00448c;
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: rgba(254, 212, 0, 0.5);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_fuki span {
    font-size: calc( 52/750 * 100vw);
  }
}
.mv .mv_doctor .mv_doctor_fuki::before {
  content: "";
  position: absolute;
  top: min(2.92vw, 38px);
  right: -45px;
  width: 0;
  height: 0;
  border-top: 28px solid #585858;
  border-right: 45px solid transparent;
  border-left: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_fuki::before {
    top: auto;
    bottom: calc( -50/750 * 100vw);
    right: auto;
    left: calc( 80/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #585858;
    border-right: 0 solid transparent;
    border-left: calc( 50/750 * 100vw) solid transparent;
  }
}
.mv .mv_doctor .mv_doctor_fuki::after {
  content: "";
  position: absolute;
  top: min(3.08vw, 40px);
  right: -38px;
  width: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-right: 45px solid transparent;
  border-left: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_fuki::after {
    top: auto;
    bottom: calc( -40/750 * 100vw);
    right: auto;
    left: calc( 76/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #fff;
    border-right: 0 solid transparent;
    border-left: calc( 50/750 * 100vw) solid transparent;
  }
}
.mv .mv_doctor .mv_doctor_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(35.5vw, 426px);
}
@media screen and (max-width: 766px) {
  .mv .mv_doctor .mv_doctor_img {
    width: calc( 680/750 * 100vw);
  }
}
.mv .doctor_name {
  background-color: #4c7cae;
}
.mv .doctor_name .content_inner {
  position: relative;
}
.mv .doctor_name p {
  color: #fff;
  text-align: right;
  padding: 19px 0;
  line-height: 1.6;
}
@media screen and (max-width: 766px) {
  .mv .doctor_name p {
    font-size: calc( 36/750 * 100vw);
    text-align: center;
    padding: calc( 40/750 * 100vw) 0;
  }
}
.mv .doctor_name p .name {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 766px) {
  .mv .doctor_name p .name {
    font-size: calc( 48/750 * 100vw);
  }
}
.mv .doctor_name p::after {
  content: "";
  position: absolute;
  top: -17px;
  right: 9%;
  width: 0;
  height: 0;
  border-bottom: 17px solid #4c7cae;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
}
@media screen and (max-width: 766px) {
  .mv .doctor_name p::after {
    top: calc( -31/750 * 100vw);
    right: calc( 180/750 * 100vw);
    border-bottom: calc( 34/750 * 100vw) solid #4c7cae;
    border-right: calc( 22/750 * 100vw) solid transparent;
    border-left: calc( 22/750 * 100vw) solid transparent;
  }
}

.sec_area {
  margin-bottom: 110px;
}
@media screen and (max-width: 766px) {
  .sec_area {
    margin-bottom: 92px;
  }
}
.sec_area * + p {
  margin-top: 35px;
}
.sec_area p + p {
  margin-top: 20px;
}

.sec_ttl {
  background-color: #007b78;
  font-size: min(4.17vw, 50px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 35px 0;
  margin-bottom: 55px;
}
@media screen and (max-width: 766px) {
  .sec_ttl {
    font-size: 24px;
    padding: 38px 0;
    margin-bottom: 55px;
  }
}

.sec_item {
  margin-top: 70px;
}

.sec_item_ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #66b0ae;
  padding: 23px 28px;
  border-radius: 20px;
  margin-bottom: 55px;
}
@media screen and (max-width: 766px) {
  .sec_item_ttl {
    font-size: 22px;
    padding: 14px 20px;
    margin-bottom: 40px;
    border-radius: 16px;
  }
}

.border_ttl {
  font-size: 22px;
  font-weight: 700;
  color: #00448c;
  border-bottom: 1px solid #d4dcd8;
  padding-bottom: 20px;
}
@media screen and (max-width: 766px) {
  .border_ttl {
    font-size: 20px;
    border-bottom: 1px solid #d4dcd8;
  }
}

.aftercare .sec_ttl {
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.aftercare .aftercare_doctor {
  background-color: #fff6cc;
}
.aftercare .aftercare_doctor .aftercare_doctor_container {
  position: relative;
}
@media screen and (min-width: 767px) {
  .aftercare .aftercare_doctor .aftercare_doctor_container {
    padding: min(6.45vw, 80px) 0;
  }
}
@media screen and (max-width: 766px) {
  .aftercare .aftercare_doctor .aftercare_doctor_container {
    padding: 40px 0 calc( 350/750 * 100vw) 0;
  }
}
.aftercare .aftercare_doctor .aftercare_doctor_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(22.58vw, 280px);
}
@media screen and (max-width: 766px) {
  .aftercare .aftercare_doctor .aftercare_doctor_img {
    width: 45.3333333333vw;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.aftercare .aftercare_doctor .aftercare_doctor_fuki {
  position: relative;
  max-width: min(72.58vw, 900px);
  background-color: #fff;
  border: 2px solid #585858;
  border-radius: 30px;
  padding: min(2.42vw, 30px) min(3.06vw, 38px);
  margin-left: auto;
  font-size: min(1.61vw, 20px);
  line-height: 2;
}
@media screen and (max-width: 766px) {
  .aftercare .aftercare_doctor .aftercare_doctor_fuki {
    max-width: initial;
    width: 100%;
    padding: 32px 20px;
    margin-left: 0;
    font-size: 20px;
  }
}
.aftercare .aftercare_doctor .aftercare_doctor_fuki span {
  font-weight: 700;
  color: #00448c;
}
.aftercare .aftercare_doctor .aftercare_doctor_fuki::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -45px;
  width: 0;
  height: 0;
  border-top: 28px solid #585858;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .aftercare .aftercare_doctor .aftercare_doctor_fuki::before {
    top: auto;
    bottom: calc( -50/750 * 100vw);
    left: calc( 80/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #585858;
    border-left: calc( 50/750 * 100vw) solid transparent;
    border-right: 0 solid transparent;
  }
}
.aftercare .aftercare_doctor .aftercare_doctor_fuki::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -38px;
  width: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .aftercare .aftercare_doctor .aftercare_doctor_fuki::after {
    top: auto;
    bottom: calc( -44/750 * 100vw);
    left: calc( 77/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #fff;
    border-left: calc( 50/750 * 100vw) solid transparent;
    border-right: 0 solid transparent;
  }
}
.aftercare .border_list {
  border: 1px solid #007b78;
  border-radius: 8px;
  padding: 28px 40px;
  margin-top: 35px;
}
@media screen and (max-width: 766px) {
  .aftercare .border_list {
    padding: 28px 20px;
  }
}
.aftercare .border_list li {
  line-height: 2.4;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 766px) {
  .aftercare .border_list li {
    line-height: 2;
  }
}
.aftercare .border_list li::before {
  content: "●";
  display: inline-block;
  font-size: 0.5em;
  color: #007b78;
  margin-right: 18px;
  position: relative;
  top: -2px;
  left: 20px;
}
.aftercare .flowchart {
  margin-top: 50px;
  margin-bottom: 55px;
}
.aftercare .flowchart .flowchart_img {
  margin-top: 30px;
}
.aftercare .note_txt {
  margin-top: 50px;
}
.aftercare .note_txt li {
  font-size: 14px;
  text-align: right;
  line-height: 2;
}
@media screen and (max-width: 766px) {
  .aftercare .note_txt li {
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
  }
}
.aftercare .note_txt li::before {
  content: "※";
}
.aftercare .select_copy {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .aftercare .select_copy {
    font-size: 20px;
    text-align: left;
  }
}
.aftercare .important_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 766px) {
  .aftercare .important_list {
    gap: 20px;
  }
}
.aftercare .important_list li {
  width: 380px;
  background-color: #fff6cc;
  padding: 35px 30px 24px;
  border-radius: 10px;
}
@media screen and (max-width: 766px) {
  .aftercare .important_list li {
    padding: 35px 30px 40px;
  }
}
.aftercare .important_list li p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4090909091;
  text-align: center;
  color: #007b78;
}
@media screen and (max-width: 766px) {
  .aftercare .important_list li p {
    font-size: 20px;
    line-height: 1.5;
  }
}
.aftercare .important_list li .important_img {
  width: 150px;
  margin: 25px auto 0;
}

.analysis .biopsy {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 766px) {
  .analysis .biopsy {
    display: block;
  }
}
.analysis .biopsy .biopsy_img {
  max-width: 570px;
}
@media screen and (max-width: 766px) {
  .analysis .biopsy .biopsy_img {
    max-width: initial;
    margin-bottom: 32px;
  }
}
.analysis .biopsy p {
  margin-top: 0;
}
.analysis .result {
  margin-top: 60px;
}
@media screen and (max-width: 766px) {
  .analysis .result {
    margin-top: 50px;
  }
}
.analysis .result .result_column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 766px) {
  .analysis .result .result_column {
    display: block;
  }
}
.analysis .result .result_box {
  width: calc(50% - 10px);
}
@media screen and (max-width: 766px) {
  .analysis .result .result_box {
    width: 100%;
  }
}
@media screen and (max-width: 766px) {
  .analysis .result .result_box + .result_box {
    margin-top: 24px;
  }
}
.analysis .result .result_box_ttl {
  font-weight: 700;
  text-align: center;
  background-color: #bfdedd;
  padding: 20px 0;
  border-radius: 10px 10px 0 0;
}
.analysis .result .not_detection .result_box_ttl {
  background-color: #fed400;
}
.analysis .result .result_box_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  border-radius: 0 0 10px 10px;
  height: 113px;
  padding: 20px;
  line-height: 2;
}
@media screen and (max-width: 766px) {
  .analysis .result .result_box_txt {
    display: block;
    height: auto;
    letter-spacing: -0.1em;
  }
}

/*  ---------------------------
    SEC TOP（黄色吹き出し + コラムカード）
---------------------------  */
.sec_top .sec_top_talk {
  background-color: #fff6cc;
}
.sec_top .sec_top_talk .content_inner {
  font-size: 19px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1473px;
  padding: min(4.0733197556vw, 60px) 0;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .content_inner {
    display: block;
    padding: calc( 120/750 * 100vw) 0 0;
  }
}
.sec_top .sec_top_talk .sec_top_left {
  width: min(18.2620502376vw, 269px);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_left {
    position: relative;
    width: 135px;
    margin-left: 15px;
    margin-top: -14px;
    z-index: 15;
  }
}
.sec_top .sec_top_talk .sec_top_right {
  width: min(17.9226069246vw, 264px);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_right {
    position: relative;
    width: 135px;
    margin-left: auto;
    margin-right: 16px;
    margin-top: -14px;
    z-index: 15;
  }
}
.sec_top .sec_top_talk .sec_top_fuki {
  width: min(61.099796334vw, 900px);
  background-color: #fff;
  border: 2px solid #585858;
  border-radius: 30px;
  padding: min(2.42vw, 30px) min(3.06vw, 38px);
  line-height: 1.9;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki {
    width: auto;
    border: calc( 4/750 * 100vw) solid #585858;
    border-radius: calc( 60/750 * 100vw);
    padding: calc( 50/750 * 100vw) calc( 40/750 * 100vw);
    line-height: 2.1;
  }
}
.sec_top .sec_top_talk .sec_top_fuki span {
  font-weight: 700;
  color: #00448c;
}
.sec_top .sec_top_talk .sec_top_fuki + .sec_top_fuki {
  margin-top: 14px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki + .sec_top_fuki {
    margin-top: calc( 20/750 * 100vw);
  }
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_1 {
  position: relative;
  z-index: 10;
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_1::before {
  content: "";
  position: absolute;
  bottom: 26px;
  right: -45px;
  width: 0;
  height: 0;
  border-bottom: 28px solid #585858;
  border-right: 45px solid transparent;
  border-left: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_1::before {
    top: auto;
    bottom: calc( -50/750 * 100vw);
    left: calc( 80/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #585858;
    border-left: calc( 50/750 * 100vw) solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
  }
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_1::after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: -38px;
  width: 0;
  height: 0;
  border-bottom: 28px solid #fff;
  border-right: 45px solid transparent;
  border-left: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_1::after {
    top: auto;
    bottom: calc( -44/750 * 100vw);
    left: calc( 77/750 * 100vw);
    border-top: calc( 50/750 * 100vw) solid #fff;
    border-left: calc( 50/750 * 100vw) solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
  }
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_2 {
  position: relative;
  z-index: 10;
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_2::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -45px;
  width: 0;
  height: 0;
  border-top: 28px solid #585858;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_2::before {
    top: auto;
    bottom: calc( -50/750 * 100vw);
    right: calc( 80/750 * 100vw);
    left: auto;
    border-top: calc( 50/750 * 100vw) solid #585858;
    border-right: calc( 50/750 * 100vw) solid transparent;
    border-left: 0 solid transparent;
  }
}
.sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_2::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -38px;
  width: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-left: 45px solid transparent;
  border-right: 0 solid transparent;
  transform-origin: left top;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_talk .sec_top_fuki.sec_top_fuki_2::after {
    top: auto;
    bottom: calc( -44/750 * 100vw);
    right: calc( 77/750 * 100vw);
    left: auto;
    border-top: calc( 50/750 * 100vw) solid #fff;
    border-right: calc( 50/750 * 100vw) solid transparent;
    border-left: 0 solid transparent;
  }
}
.sec_top .sec_top_column {
  background-color: #00448c;
  padding: 100px 15px 80px;
  border-bottom: #fff solid 1px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column {
    padding: calc( 160/750 * 100vw) calc( 40/750 * 100vw) calc( 160/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec_top .sec_top_column .column_inner .sec_top_column_label {
  color: #00448c;
  width: 400px;
  margin: -45px auto 16px;
  background-color: #fed400;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 20px 0;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .sec_top_column_label {
    margin: calc( -60/750 * 100vw) auto calc( 40/750 * 100vw);
    width: calc( 540/750 * 100vw);
    padding: calc( 24/750 * 100vw) 0;
    font-size: calc( 32/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner .column_card {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding: 14px 40px 40px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card {
    padding: calc( 20/750 * 100vw) calc( 40/750 * 100vw) calc( 40/750 * 100vw);
    border-radius: calc( 40/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_card_inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_card_inner {
    display: block;
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_thumb {
  width: 200px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_thumb {
    width: 100%;
    border-radius: calc( 10/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_txt {
  flex: 1;
}
.sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #00448c;
  padding-bottom: 20px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead {
    gap: 15px;
    margin-top: calc( 60/750 * 100vw);
    align-items: stretch;
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead .column_tag {
  display: inline-block;
  background-color: #00448c;
  color: #fff;
  font-size: 16px;
  padding: 12px 20px;
  min-width: 88px;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead .column_tag {
    font-size: calc( 28/750 * 100vw);
    padding: 0 calc( 22/750 * 100vw);
    display: flex;
    align-items: center;
    min-width: auto;
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead .column_ttl {
  font-size: 40px;
  font-weight: 700;
  color: #00448c;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_txt .column_lead .column_ttl {
    font-size: calc( 48/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_txt .column_sub {
  font-size: 20px;
  margin-top: 20px;
  color: #00448c;
  text-align: right;
}
.sec_top .sec_top_column .column_inner .column_card .column_txt .column_sub span {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_txt .column_sub {
    font-size: calc( 30/750 * 100vw);
    margin-top: calc( 26/750 * 100vw);
    text-align: left;
  }
  .sec_top .sec_top_column .column_inner .column_card .column_txt .column_sub span {
    font-size: calc( 40/750 * 100vw);
  }
}
.sec_top .sec_top_column .column_inner .column_card .column_icon {
  flex-shrink: 0;
  font-size: 30px;
  color: #00448c;
}
@media screen and (max-width: 766px) {
  .sec_top .sec_top_column .column_inner .column_card .column_icon {
    font-size: calc( 30/750 * 100vw);
    text-align: right;
    margin-top: calc( 30/750 * 100vw);
  }
}

/*  ---------------------------
    TESTS
---------------------------  */
.tests .tests_feature {
  background-color: #4c7cae;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature {
    padding: calc( 80/750 * 100vw) calc( 40/750 * 100vw) calc( 80/750 * 100vw);
    border-radius: calc( 22/750 * 100vw);
    margin-top: calc( 140/750 * 100vw);
  }
}
.tests .tests_feature .tests_box_copy {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 2;
  padding-bottom: 40px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_box_copy {
    text-align: left;
    font-size: calc( 40/750 * 100vw);
  }
}
.tests .tests_feature .tests_box_copy {
  /* 左の線 */
}
.tests .tests_feature .tests_box_copy::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% - 10px);
  height: 1px;
  background: #fff;
}
.tests .tests_feature .tests_box_copy {
  /* 右の線 */
}
.tests .tests_feature .tests_box_copy::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50% - 10px);
  height: 1px;
  background: #fff;
}
.tests .tests_feature .tests_box_copy span {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: block;
  line-height: 0;
}
.tests .tests_feature .tests_box_copy span img {
  display: block;
  width: 20px;
  height: auto;
}
.tests .tests_feature .tests_feature_ttl {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_feature_ttl {
    font-size: calc( 40/750 * 100vw);
    margin-bottom: calc( 70/750 * 100vw);
  }
}
.tests .tests_feature .tests_feature_list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_feature_list {
    display: block;
  }
}
.tests .tests_feature .tests_feature_item {
  width: calc(50% - 8px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_feature_item {
    width: 100%;
    padding: calc( 36/750 * 100vw) calc( 26/750 * 100vw);
    border-radius: calc( 20/750 * 100vw);
  }
  .tests .tests_feature .tests_feature_item + .tests_feature_item {
    margin-top: calc( 32/750 * 100vw);
  }
}
.tests .tests_feature .tests_feature_icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_feature_icon {
    width: calc( 120/750 * 100vw);
    height: calc( 120/750 * 100vw);
  }
}
.tests .tests_feature .tests_feature_txt {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 766px) {
  .tests .tests_feature .tests_feature_txt {
    font-size: calc( 34/750 * 100vw);
  }
}
.tests .tests_label {
  background-color: #66b0ae;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .tests .tests_label {
    border-radius: calc( 12/750 * 100vw);
    padding: calc( 14/750 * 100vw) calc( 18/750 * 100vw);
    margin-top: calc( 18/750 * 100vw);
    font-size: calc( 22/750 * 100vw);
  }
}
.tests .tests_charts {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 766px) {
  .tests .tests_charts {
    display: block;
    margin-top: calc( 90/750 * 100vw);
  }
}
.tests .tests_charts .tests_chart {
  width: calc(50% - 30px);
}
@media screen and (max-width: 766px) {
  .tests .tests_charts .tests_chart {
    width: 100%;
  }
  .tests .tests_charts .tests_chart + .tests_chart {
    margin-top: calc( 80/750 * 100vw);
  }
}
.tests .tests_charts .tests_chart figcaption {
  color: #00448c;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4dcd8;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  .tests .tests_charts .tests_chart figcaption {
    font-size: calc( 38/750 * 100vw);
  }
}

/*  ---------------------------
    CTA AREA
---------------------------  */
.cta_area {
  background-color: #00448c;
  padding: 70px 10px 60px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .cta_area {
    padding: calc( 140/750 * 100vw) calc( 40/750 * 100vw) calc( 120/750 * 100vw);
  }
}
.cta_area::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg); /* 上端に半分だけ出す例 */
  transform-origin: center;
  width: 45px;
  height: 45px;
  background: #fff;
}
.cta_area .cta_content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta_area .cta_ttl {
  display: inline-block;
  background-color: #fff;
  border-radius: 999px;
  padding: 20px 60px;
  font-size: 40px;
  font-weight: 700;
  color: #00448c;
  max-width: 700px;
  margin-bottom: 30px;
}
.cta_area .cta_ttl span span {
  font-size: 33px;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_ttl {
    display: block;
    border-radius: calc( 999/750 * 100vw);
    padding: calc( 50/750 * 100vw) calc( 20/750 * 100vw);
    font-size: calc( 56/750 * 100vw);
    text-align: center;
    line-height: 1.4;
    margin-bottom: calc( 36/750 * 100vw);
  }
  .cta_area .cta_ttl span span {
    font-size: calc( 46/750 * 100vw);
  }
}
.cta_area .cta_lead {
  color: #fff;
  font-size: 30px;
  margin-bottom: 38px;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_lead {
    margin-top: calc( 18/750 * 100vw);
    margin-bottom: calc( 230/750 * 100vw);
    text-align: center;
    font-size: calc( 38/750 * 100vw);
  }
}
.cta_area .cta_btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns {
    display: block;
  }
}
.cta_area .cta_btns .cta_doctor_left {
  position: absolute;
  left: 10px;
  bottom: 80px;
  width: min(16.5vw, 198px);
  z-index: 10;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_doctor_left {
    width: calc( 190/750 * 100vw);
    bottom: calc( 450/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_doctor_right {
  position: absolute;
  right: 10px;
  bottom: 80px;
  width: min(16.8333333333vw, 202px);
  z-index: 10;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_doctor_right {
    width: calc( 190/750 * 100vw);
    bottom: calc( 450/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn_wrap {
  position: relative;
  width: calc(50% - 10px);
  border-radius: 22px;
  background: #fff;
  z-index: 15;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn_wrap {
    width: 100%;
  }
  .cta_area .cta_btns .cta_btn_wrap + .cta_btn_wrap {
    margin-top: calc( 40/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn {
  position: relative;
  border-radius: 22px;
  display: block;
  border: 2px solid #fff;
  padding: 22px 18px;
  font-weight: 700;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn {
    width: 100%;
    border-radius: calc( 34/750 * 100vw);
    padding: calc( 34/750 * 100vw) calc( 16/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn .cta_btn_tag {
  display: block;
  border-radius: 999px;
  padding: 8px 10px;
  color: #fff;
  font-weight: 700;
  background-color: #007b78;
  margin: 0 auto 10px;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn .cta_btn_tag {
    font-size: calc( 26/750 * 100vw);
    padding: calc( 16/750 * 100vw) calc( 14/750 * 100vw);
    margin-bottom: calc( 22/750 * 100vw);
    width: calc( 240/750 * 100vw);
    font-weight: 500;
  }
}
.cta_area .cta_btns .cta_btn .cta_btn_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.6666666667vw, 20px);
}
.cta_area .cta_btns .cta_btn .cta_btn_contents .cta_btn_icon {
  width: min(5vw, 60px);
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn .cta_btn_contents .cta_btn_icon {
    width: calc( 86/750 * 100vw);
    margin-right: calc( 6/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn .cta_btn_contents .cta_btn_main {
  font-size: min(2.8333333333vw, 34px);
  font-weight: 700;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn .cta_btn_contents .cta_btn_main {
    font-size: calc( 39/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn .cta_btn_contents i {
  font-size: min(2.5vw, 30px);
  color: #fff;
}
@media screen and (max-width: 766px) {
  .cta_area .cta_btns .cta_btn .cta_btn_contents i {
    font-size: calc( 35/750 * 100vw);
    margin-left: calc( 6/750 * 100vw);
  }
}
.cta_area .cta_btns .cta_btn_yellow {
  background-color: #fed400;
}
.cta_area .cta_btns .cta_btn_green {
  background-color: #8dca60;
}

/*  ---------------------------
    TEL AREA
---------------------------  */
.tel_area {
  text-align: center;
  padding: 60px 0;
  color: #007b78;
}
@media screen and (max-width: 766px) {
  .tel_area {
    padding: calc( 70/750 * 100vw) 0 calc( 70/750 * 100vw);
  }
}
.tel_area .tel_lead {
  color: #007b78;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 766px) {
  .tel_area .tel_lead {
    font-size: calc( 32/750 * 100vw);
    text-align: center;
  }
}
.tel_area .tel_num {
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 15px;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 766px) {
  .tel_area .tel_num {
    font-size: calc( 80/750 * 100vw);
    margin-top: calc( 10/750 * 100vw);
    pointer-events: auto;
  }
}
.tel_area .tel_num i {
  position: relative;
  font-size: 60px;
  margin-right: 25px;
  top: -5px;
}
@media screen and (max-width: 766px) {
  .tel_area .tel_num i {
    font-size: calc( 60/750 * 100vw);
    top: -3px;
    margin-right: calc( 30/750 * 100vw);
  }
}
@media screen and (max-width: 766px) {
  .tel_area .tel_note {
    font-size: calc( 27/750 * 100vw);
    margin-top: calc( 10/750 * 100vw);
  }
}

/*  ---------------------------
    FAQ
---------------------------  */
.faq {
  background-color: #eef4f3;
  padding: 120px 10px;
}
@media screen and (max-width: 766px) {
  .faq {
    padding: calc( 160/750 * 100vw) calc( 20/750 * 100vw) calc( 120/750 * 100vw);
  }
}

.faq_ttl {
  color: #00448c;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 766px) {
  .faq_ttl {
    font-size: calc( 46/750 * 100vw);
    margin-bottom: calc( 80/750 * 100vw);
  }
}

.faq_list {
  max-width: 1200px;
  margin: 0 auto;
}

.faq_item {
  background-color: #fff;
  border-radius: 22px;
  padding: 40px;
}
@media screen and (max-width: 766px) {
  .faq_item {
    padding: calc( 80/750 * 100vw) calc( 40/750 * 100vw) calc( 40/750 * 100vw);
    border-radius: calc( 24/750 * 100vw);
  }
}
.faq_item + .faq_item {
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .faq_item + .faq_item {
    margin-top: calc( 40/750 * 100vw);
  }
}

.faq_q {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #00448c;
  font-size: 30px;
  border-bottom: 1px solid #d4dcd8;
  padding: 0 0 30px;
  line-height: 1.5;
}
@media screen and (max-width: 766px) {
  .faq_q {
    gap: calc( 40/750 * 100vw);
    font-size: calc( 38/750 * 100vw);
    padding: 0 0 calc( 60/750 * 100vw);
    align-items: flex-start;
  }
}

.faq_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00448c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 30px;
  padding: 0 0 5px;
}
@media screen and (max-width: 766px) {
  .faq_icon {
    width: calc( 90/750 * 100vw);
    height: calc( 90/750 * 100vw);
    font-size: calc( 46/750 * 100vw);
    font-weight: 500;
    margin-top: calc( -16/750 * 100vw);
  }
}
.faq_icon.a {
  background-color: #7fa1c5;
  margin-top: -10px;
}
@media screen and (max-width: 766px) {
  .faq_icon.a {
    margin-top: calc( -10/750 * 100vw);
  }
}

.faq_a {
  display: flex;
  gap: 20px;
  padding: 40px 0 8px;
}
@media screen and (max-width: 766px) {
  .faq_a {
    padding: calc( 70/750 * 100vw) 0 calc( 10/750 * 100vw);
    gap: calc( 40/750 * 100vw);
  }
}
.faq_a .faq_a_body {
  line-height: 2;
}
@media screen and (max-width: 766px) {
  .faq_a .faq_a_body {
    font-size: calc( 34/750 * 100vw);
  }
}
.faq_a .faq_a_body .faq_a_ditail dt {
  color: #00448c;
  margin-top: 30px;
  font-weight: 700;
}
.faq_a .faq_a_body .faq_a_ditail dt.a_first {
  margin-top: 0;
}

/*  ---------------------------
    ACCESS
---------------------------  */
.access_ttl {
  background-color: #4c7cae;
  font-size: min(3.33vw, 40px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 28px 0;
}
@media screen and (max-width: 766px) {
  .access_ttl {
    font-size: calc( 44/750 * 100vw);
    padding: calc( 50/750 * 100vw) 0;
    margin-bottom: calc( 40/750 * 100vw);
    font-weight: 500;
  }
}

.access_inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 10px;
}
@media screen and (max-width: 766px) {
  .access_inner {
    display: block;
    padding: calc( 40/750 * 100vw) 0 calc( 80/750 * 100vw);
  }
}

.access_img {
  width: min(48.3050847458vw, 570px);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 766px) {
  .access_img {
    width: 100%;
    border-radius: calc( 14/750 * 100vw);
    margin-bottom: calc( 70/750 * 100vw);
  }
}

.access_info {
  width: min(48.3050847458vw, 570px);
}
@media screen and (max-width: 766px) {
  .access_info {
    width: 100%;
  }
}

.access_dl {
  border-top: 1px solid #e6e6e6;
}
.access_dl .access_row {
  display: flex;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 766px) {
  .access_dl .access_row {
    display: block;
    padding: calc( 40/750 * 100vw) 0;
  }
}
.access_dl .access_row dt {
  width: 110px;
  color: #00448c;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 766px) {
  .access_dl .access_row dt {
    font-size: calc( 38/750 * 100vw);
    width: auto;
    margin-bottom: calc( 20/750 * 100vw);
  }
}
.access_dl .access_row dd {
  flex: 1;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 766px) {
  .access_dl .access_row dd {
    font-size: calc( 38/750 * 100vw);
  }
}
.access_dl .access_row dd ul {
  margin-left: -5px;
  margin-top: 10px;
}
.access_dl .access_row dd ul li {
  text-indent: -0.4em;
  padding-left: 1em;
}
.access_dl .access_row dd ul li::before {
  content: "●";
  color: #007b78;
  font-size: 10px;
  position: relative;
  top: -2px;
  left: -7px;
}

/*  ---------------------------
    FOOTER + PAGE TOP
---------------------------  */
.footer {
  padding: 0;
  background-color: #efefef;
}
@media screen and (max-width: 766px) {
  .footer {
    padding: calc( 30/750 * 100vw) 0 0;
  }
}
.footer .footer_notes {
  padding: 60px 10px;
}
@media screen and (max-width: 766px) {
  .footer .footer_notes {
    padding: calc( 70/750 * 100vw) 0 calc( 70/750 * 100vw);
  }
}
.footer .footer_notes li {
  line-height: 2;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 700;
}
@media screen and (max-width: 766px) {
  .footer .footer_notes li {
    font-size: calc( 36/750 * 100vw);
  }
}
.footer .footer_notes li::before {
  content: "※";
  margin-right: 2px;
}
.footer .footer_bottom {
  background-color: #585858;
  padding: 35px 10px;
  position: relative;
}
@media screen and (max-width: 766px) {
  .footer .footer_bottom {
    margin-top: calc( 20/750 * 100vw);
    padding: calc( 60/750 * 100vw) 0;
  }
}
.footer .footer_bottom .content_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 766px) {
  .footer .footer_bottom .content_inner {
    display: block;
  }
}
.footer .footer_bottom .link_privacy {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 766px) {
  .footer .footer_bottom .link_privacy {
    text-align: center;
  }
}
.footer .footer_bottom .link_privacy i {
  margin-left: 5px;
}
.footer .footer_bottom .copyright {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 766px) {
  .footer .footer_bottom .copyright {
    font-size: calc( 24/750 * 100vw);
    text-align: center;
    margin-top: calc( 60/750 * 100vw);
  }
}

.page_top {
  position: fixed;
  right: 18px;
  bottom: 57px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease transform 0.25s ease, visibility 0.25s ease;
  transform: translateY(10px);
  z-index: 100;
}
@media screen and (max-width: 766px) {
  .page_top {
    right: calc( 20/750 * 100vw);
    bottom: calc( 20/750 * 100vw);
    width: calc( 100/750 * 100vw);
    height: calc( 100/750 * 100vw);
  }
}
.page_top.is_show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/*  ---------------------------
    FIX NAV（PC）
---------------------------  */
.fix_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 766px) {
  .fix_nav {
    position: static;
  }
}

.fix_nav_inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 766px) {
  .fix_nav_inner {
    display: block;
    padding: calc( 50/750 * 100vw) calc( 80/750 * 100vw) calc( 80/750 * 100vw);
  }
}

.fix_nav_list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
@media screen and (max-width: 766px) {
  .fix_nav_list {
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
.fix_nav_list li {
  position: relative;
  width: min(16.393442623vw, 200px);
  line-height: 1;
  font-size: min(1.6393442623vw, 20px);
  text-align: center;
}
@media screen and (max-width: 766px) {
  .fix_nav_list li {
    width: calc(50% - 10px);
    font-size: calc( 30/750 * 100vw);
  }
}
.fix_nav_list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #d7d7d7;
}
@media screen and (max-width: 766px) {
  .fix_nav_list li::after {
    display: none;
  }
}
.fix_nav_list li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #d7d7d7;
}
@media screen and (max-width: 766px) {
  .fix_nav_list li:first-child::before {
    display: none;
  }
}
.fix_nav_list a {
  display: block;
  color: #007b78;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 15px min(1.6393442623vw, 20px);
}
.fix_nav_list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 766px) {
  .fix_nav_list a {
    border-bottom: 1px solid #d7d7d7;
  }
}

.fix_nav_cta {
  margin-left: 24px;
}
@media screen and (max-width: 766px) {
  .fix_nav_cta {
    margin-left: 0;
    margin-top: calc( 80/750 * 100vw);
  }
}

.fix_nav_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fed400;
  border-radius: 18px;
  padding: 20px 22px;
  font-weight: 500;
  text-decoration: none;
  width: min(22.9508196721vw, 280px);
}
@media screen and (max-width: 766px) {
  .fix_nav_btn {
    width: 100%;
    padding: calc( 36/750 * 100vw);
    font-size: calc( 32/750 * 100vw);
  }
}
.fix_nav_btn i {
  font-size: 0.95em;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 766px) {
  .fix_nav_btn i {
    font-size: calc( 32/750 * 100vw);
    top: 0;
  }
}

/*  ---------------------------
    HEADER：SP追従 + ハンバーガー
---------------------------  */
@media screen and (max-width: 766px) {
  header {
    position: sticky;
    top: 0;
    z-index: 120;
    box-shadow: 0 calc( 6/750 * 100vw) calc( 16/750 * 100vw) rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 766px) {
  .header_cv {
    height: 100%;
  }
}

/* SP：右側に「医療相談（黄）」＋「メニュー」 */
@media screen and (max-width: 766px) {
  .header_consult a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0; /* 既存PC用のpadding-topを無効化 */
  }
}

.header_menu {
  height: 100%;
}

@media screen and (max-width: 766px) {
  .header_menu_btn {
    width: calc( 100/750 * 100vw);
    height: 100%;
    border: none;
    background-color: #fff;
    border-left: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc( 10/750 * 100vw);
    cursor: pointer;
  }
}

@media screen and (max-width: 766px) {
  .header_menu_icon {
    display: inline-block;
    width: calc( 44/750 * 100vw);
  }
  .header_menu_icon span {
    display: block;
    height: calc( 4/750 * 100vw);
    background-color: #007b78;
    border-radius: calc( 4/750 * 100vw);
  }
  .header_menu_icon span + span {
    margin-top: calc( 10/750 * 100vw);
  }
}

@media screen and (max-width: 766px) {
  .header_menu_txt {
    font-size: calc( 20/750 * 100vw);
    font-weight: 700;
    color: #007b78;
    line-height: 1;
  }
}

/*  ---------------------------
    SP NAV（ドロワー）
---------------------------  */
@media screen and (max-width: 766px) {
  .sp_nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
}
@media screen and (max-width: 766px) {
  .sp_nav.is_open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.15);
  }
}

/* ふわっと表示（スライド無し） */
@media screen and (max-width: 766px) {
  .sp_nav_panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    transform: translateY(calc( 12/750 * 100vw));
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav.is_open .sp_nav_panel {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_body {
    margin-top: calc( 120/750 * 100vw);
    padding: 0 0 calc( 40/750 * 100vw);
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_list {
    list-style: none;
    padding: 0 calc( 80/750 * 100vw);
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 766px) {
  .sp_nav_list li {
    border-bottom: 1px solid #c9caca;
  }
}
@media screen and (max-width: 766px) {
  .sp_nav_list a {
    display: block;
    padding: calc( 40/750 * 100vw) 0;
    font-size: calc( 32/750 * 100vw);
    font-weight: 500;
    color: #007b78;
    text-decoration: none;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_cta {
    margin: calc( 80/750 * 100vw) calc( 40/750 * 100vw) calc( 20/750 * 100vw);
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: #00448c;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_cta_ttl {
    background-color: #00448c;
    color: #fff;
    border-radius: calc( 999/750 * 100vw);
    padding: calc( 28/750 * 100vw) calc( 20/750 * 100vw);
    font-size: calc( 38/750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .sp_nav_cta_ttl span {
    font-size: calc( 28/750 * 100vw);
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_cta_lead {
    padding: calc( 28/750 * 100vw) calc( 20/750 * 100vw) calc( 40/750 * 100vw);
    font-size: calc( 32/750 * 100vw);
    line-height: 1.8;
    color: #00448c;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc( 12/750 * 100vw);
    margin: 0 calc( 38/750 * 100vw);
    border-radius: calc( 22/750 * 100vw);
    padding: calc( 50/750 * 100vw) calc( 20/750 * 100vw);
    font-size: calc( 32/750 * 100vw);
    font-weight: 500;
    text-decoration: none;
  }
}
@media screen and (max-width: 766px) {
  .sp_nav_btn + .sp_nav_btn {
    margin-top: calc( 40/750 * 100vw);
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_btn_yellow {
    background-color: #fed400;
    color: #000;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_btn_green {
    background-color: #8dca60;
    color: #000;
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_tel {
    margin-top: calc( 40/750 * 100vw);
  }
}

.sp_nav_tel_num {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 766px) {
  .sp_nav_tel_num {
    color: #007b78;
    font-weight: 700;
    font-size: calc( 80/750 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.02em;
    pointer-events: auto;
  }
}
@media screen and (max-width: 766px) {
  .sp_nav_tel_num .fa-mobile-alt {
    font-size: calc( 66/750 * 100vw);
    position: relative;
    top: -3px;
    margin-right: calc( 26/750 * 100vw);
  }
}

@media screen and (max-width: 766px) {
  .sp_nav_tel_note {
    margin-top: calc( 10/750 * 100vw);
    font-size: calc( 26/750 * 100vw);
    font-weight: 500;
    color: #007b78;
  }
}

body.is_spnav_open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */