/* common  */
.cormorantgaramond {
  font-family: "Cormorant Garamond", serif;
}

.zenkakugothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.hinamincho {
  font-family: "Hina Mincho", serif;
}

.text-center {
  text-align: center;
}

.text-orange {
  color: #ffb74e;
}

.text-blue {
  color: #0099d6;
}

.text-end {
  text-align: end;
}

.text-start {
  text-align: start;
}

/* common  */

/* main_visual */

/* header */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 20px 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 9;
  display: flex;
}

.l-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.l-header_logo {
  padding: 0 20px 0;
}

.l-header_logo.d-none{
  opacity: 0;
}

.l-header_logo h1 {
  display: block;
}

.l-header_logo a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-header_logo a img {
  width: 126px;
  height: 126px;
}

.l-header_logo a span {
  font-size: 30px;
  color: #fff;
}

.l-header_info {
  display: flex;
  align-items: center;
}

.l-header_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.l-header_contact.d-none{
  display: none;
}

.l-header_contact .l-header_contact_web,
.l-header_contact .l-header_contact_ {
  max-width: 110px;
  width: 100%;
  height: 110px;
}

.l-header_contact_tel {
  line-height: 1.5;
  color: #fff;
  text-align: end;
}

.l-header_contact_tel a {
  font-size: 40px;
  position: relative;
}

.l-header_contact_tel a::before {
  content: "";
  position: absolute;
  background: url(../img/white_ph_icon.webp) no-repeat center/contain;
  width: 21px;
  height: 29px;
  left: 52px;
  top: 18px;
}

.l-header_contact_tel span {
  font-size: 13px;
  display: block;
  line-height: 1.2;
}

.l-header_info_time {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #7e7676;
  margin-right: 10px;
}

@media screen and (max-width: 1180px) {
  .l-header_info .l-header_contact {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .l-header {
    padding: 0;
  }

  .l-header.header_open {
    background: #daf0f0;
  }

  .l-header.header_open .l-header_logo a span {
    color: #6e605b;
  }

  .l-header_logo {
    margin: 10px 0 0;
    padding: 0;
    background: unset;
  }

  .l-header_logo a {
    gap: 10px;
  }

  .l-header_logo a img {
    width: 55px;
    height: 55px;
  }

  .l-header_logo a span {
    font-size: 18px;
  }

  .l-header_inner {
    padding: 0 10px;
  }

  .l-header_logo h1 {
    margin: 0 0 12px;
  }

  .u-only_sp.p-key_image {
    margin-top: 60px;
  }

  .l-header_nav {
    background: #6fd4cb;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 1000%;
    top: 90px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 999;
  }

  .l-header_nav.open {
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .l-header_nav_list {
    padding: 10px;
    width: 100%;
  }

  .l-header_nav_list li {
    text-align: center;
    border-bottom: 1px solid #fff;
    width: 100%;
  }

  .l-header_nav_list li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
  }
}

/* header */

/* menu */
#menu {
  position: fixed;
  right: 0;
  top: 140px;
  width: 226px;
  height: 100%;
  box-sizing: border-box;
  transform: translate(226px, 0);
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
  z-index: 90;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: #daf0f0;
  background-size: cover;
}

#menu.slide-open {
  transform: translate(0%, 0);
}

#menu ul {
  width: 100%;
}

#menu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 78px;
  font-size: 1.65rem;
  line-height: 1.5;
  color: #0099d6;
  text-align: center;
}

#menu ul li a:hover {
  background: rgba(255, 255, 255, 0.9);
}

#menu ul li a small {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 800;
  padding-bottom: 5px;
}

#menu ul li a small ~ em {
  font-size: 1.7rem;
}

#slidemenuBtn {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  background: #daf0f0;
  margin-left: 20px;
}

#slidemenuBtn > span {
  width: 39px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 33px;
}

#slidemenuBtn > span::before {
  content: "";
  position: absolute;
  width: 47px;
  height: 15px;
  background: url(../img/menu_ico.webp) no-repeat center/contain;
  top: 35px;
  right: -5px;
}

#slidemenuBtn > span > span {
  width: 100%;
  height: 1.5px;
  background: #0099d6;
  transition: transform 0.2s ease, top 0.2s ease 0.2s;
}

#slidemenuBtn.slide-open .bar1 {
  transform: translateY(10px) rotate(45deg);
  transition: transform 0.2s ease 0.2s;
}

#slidemenuBtn.slide-open .bar2 {
  opacity: 0;
  transition: opacity 0.2s ease 0.2s;
}

#slidemenuBtn.slide-open .bar3 {
  transform: translateY(-10px) rotate(-45deg);
  transition: transform 0.2s ease 0.2s;
}

@media screen and (max-width: 768px) {
  #menu {
    position: fixed;
    left: 0;
    top: 70px;
    padding: 0px;
    width: 100%;
    height: 100%;
    transform: translate(100%, 0);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    /* Added for iOS compatibility */
  }

  #slidemenuBtn {
    width: 55px;
    height: 55px;
    position: relative;
    bottom: 50%;
    transform: translateY(-2%);
    transform: translateY(-2%);
    -webkit-transform: translateY(-2%);
    /* Added for iOS compatibility */
  }

  #slidemenuBtn > span {
    width: 20px;
    height: 13px;
    top: 20px;
  }

  #slidemenuBtn > span::before {
    display: none;
  }

  #slidemenuBtn > span > span {
    width: 22px;
    height: 1px;
    opacity: 1;
    display: block;
  }

  #slidemenuBtn.slide-open .bar1 {
    opacity: 1;
    transform: translateY(6px) rotate(45deg);
    transition: transform 0.2s ease 0.2s;
    transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    /* Added for iOS compatibility */
  }

  #slidemenuBtn.slide-open .bar2 {
    opacity: 0;
    transition: opacity 0.2s ease 0.2s;
  }

  #slidemenuBtn.slide-open .bar3 {
    opacity: 1;
    transform: translateY(-7px) rotate(-45deg);
    transition: transform 0.2s ease 0.2s;
    transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    /* Added for iOS compatibility */
  }
}

/* menu*/

.s_mv {
  width: 100%;
  background: url(../img/mv_new.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv_section_bg {
  max-width: 1162px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
}

.mv_section {
  padding-top: 432px;
  position: relative;
  top: 25px;
}

.mv_sm_ttl {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 28px 5px 28px;
  background-color: rgba(242, 248, 250, 0.9);
  border-radius: 2px;
  color: #0099d6;
}

.mv_ttl01,
.mv_ttl02 {
  display: inline-block;
  color: #0099d6;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 2px;
  border-radius: 2px;
}

.mv_ttl01 span,
.mv_ttl02 span {
  padding: 2px 40px 2px 0;
  background-color: rgba(242, 248, 250, 0.9);
  border-radius: 2px;
}

.mv_ttl02 span {
  padding-left: 22px;
}

.mv_sm_ttl {
  margin-bottom: 15px;
}

.mv_ttl01 {
  margin-bottom: 8px;
}

.mv_sm_ttl_sp {
  display: none;
}

.mv_circle_wrapper {
  position: relative;
  z-index: 3;
}

.mv_circle_container {
  display: flex;
  position: relative;
  top: 40px;
  z-index: 3;
  left: 10px;
}

.mv_circle {
  width: 212px;
  height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.mv_circle span {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
}

.mv_circle_one,
.mv_circle_two,
.mv_circle_three,
.mv_circle_four {
  background: url(../img/mv_circle_img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -20px;
}

@media screen and (max-width: 768px) {
  .s_mv {
    width: 100%;
    height: 100%;
    background: url(../img/mv_new.webp);
    background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 290px;
    position: relative;
  }

  .s_mv::before {
    content: "";
    position: absolute;
    background: url(../img/mv_sp_bg.webp) no-repeat center/cover;
    width: 100%;
    height: 423px;
    bottom: 0;
    right: 0;
  }

  .mv_section_bg {
    padding: 0 15px;
  }

  .mv_section {
    padding-top: 165px;
  }

  .mv_sm_ttl {
    font-size: 14px;
    margin-bottom: 5px;
    padding: 0 20px 0;
  }

  .mv_ttl01,
  .mv_ttl02 {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 4px;
  }

  .mv_ttl01 span,
  .mv_ttl02 span {
    padding: 0 10px 0;
  }

  .mv_ttl01 span {
    padding-left: 10px;
  }

  .mv_titlesp span {
    padding-left: 20px;
  }

  .mv_circle_wrapper {
    max-width: 375px;
    margin: 0 auto;
  }

  .mv_circle_container {
    display: inline;
    left: unset;
  }

  .mv_circle {
    width: 130px;
    height: 130px;
    position: absolute;
  }

  .mv_circle span {
    font-size: 13px;
  }

  .mv_circle_one {
    left: 10px;
  }

  .mv_circle_two {
    top: 85px;
    left: 92px;
  }

  .mv_circle_three {
    left: 170px;
  }

  .mv_circle_four {
    top: 89px;
    left: 245px;
  }
}

@media screen and (max-width: 376px) {
  .s_mv {
    height: unset;
  }
}

/* main_visual */

/* reason */

.p-ortho {
  width: 100%;
  background: linear-gradient(to right, #e2edee 50%, #daeff0 100%);
  position: relative;
}

.p-ortho_wrapper {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}

.p-ortho_wrapper::after {
  content: "";
  display: block;
  width: 458px;
  height: 121px;
  background-image: url(../img/p_ortho_arrow.webp);
  background-size: cover;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  margin: auto;
}

.p-ortho_img {
  width: 100%;
  height: 540px;
  aspect-ratio: 767 / 540;
  background-image: url(../img/p_ortho_img.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
  margin: auto;
  z-index: 2;
}

.p-ortho_txt_wrapper {
  position: absolute;
  left: calc(50% - -30px);
  bottom: 100px;
  z-index: 3;
  color: #0f294c;
}

.ortho_content {
  max-width: 540px;
  width: 100%;
  position: absolute;
  right: 150px;
  top: 65px;
  z-index: 2;
}

.ortho_ttl {
  display: inline-block;
  font-size: 40px;
  color: #6e605b;
  text-align: center;
}

.ortho_ttl span.lg_txt {
  font-size: 44px;
  color: #0099d6;
  position: relative;
}

.ortho_ttl span.lg_txt::before {
  content: "";
  position: absolute;
  background: url(../img/p_ortho_txt_bg.webp) no-repeat center/contain;
  width: 127px;
  height: 23px;
  bottom: -5px;
  left: 0;
}

.ortho_list {
  margin-top: 50px;
  list-style: none;
}

.ortho_list li {
  position: relative;
  padding-left: 50px;
  color: #6e605b;
  font-size: 22px;
  margin-left: 20px;
  border-bottom: 1px solid #bcb7ae;
}

.ortho_list li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 25px;
  left: 10px;
  top: 8px;
  background: url(../img/check_img.webp) center center / contain no-repeat;
}

@media screen and (max-width: 768px) {
  .p-ortho {
    background: linear-gradient(to bottom, #e2edee 50%, #daeff0 100%);
  }

  .p-ortho_img {
    width: 100%;
    height: 250px;
    aspect-ratio: unset;
    background-image: url(../img/p_ortho_img_sp.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .p-ortho_txt_wrapper {
    max-width: 100%;
    position: unset;
    padding-bottom: 50px;
    margin: 0 auto;
  }

  .p-ortho_wrapper::after {
    width: 225px;
    height: 60px;
    background-image: url(../img/p_ortho_arrow_sp.webp);
    background-size: cover;
    bottom: -28px;
  }

  .ortho_ttl {
    font-size: 20px;
    display: block;
  }

  .ortho_ttl span.lg_txt {
    font-size: 28px;
  }

  .ortho_ttl span.lg_txt::before {
    width: 80px;
    height: 23px;
    bottom: -5px;
    left: 0;
    opacity: 0.8;
  }

  .ortho_list {
    padding: 0 30px;
    margin-top: 20px;
  }

  .ortho_list li {
    font-size: 14px;
    margin-left: 0;
    padding: 10px 0 5px 30px;
  }

  .ortho_list li::before {
    width: 20px;
    height: 15px;
    left: 5px;
    top: 14px;
  }
}

@media screen and (max-width: 400px) {
  .p-ortho_img {
    background-position: right -30px center;
  }
}

/* ortho */
/* reason*/
.reason_sec {
  background: url(../img/reason_bg.webp);
  padding: 130px 0 80px;
  position: relative;
}

.reason_sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 449px;
  background: url(../img/reason_white_bg.webp) no-repeat center/cover;
  left: 0;
  top: 0;
}

.reason_container {
  position: relative;
}

.reason_content {
  color: #6e605b;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.reason_content .reason_con_txt{
  font-size: 16px;
}

.reason_content .sm_txt {
  font-size: 32px;
  display: block;
}

.reason_content .lg_txt {
  font-size: 56px;
  color: #b9a173;
}

.reason_sec h2 {
  margin-top: -40px;
}

.reason_sec h2 span.lg_txt {
  font-size: 64px;
  color: #ffb74e;
}

.reason_flex_container {
  margin: 64px auto 0;
}

.flex_card {
  display: flex;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 60px;
}

.flex_card_wrapper:nth-child(even) .flex_card {
  flex-direction: row-reverse;
}

.flex_card_wrapper:nth-child(odd) .flex_card .reason_right_txt {
  margin-left: auto;
}

.flex_card_wrapper:nth-child(even) .flex_card .reason_desc span {
  right: 30px;
}

.flex_card > div {
  width: 50%;
}

.reason_flex_left img {
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 3;
}

.reason_flex_right {
  flex-grow: 1;
  position: relative;
}

.reason_txt {
  max-width: 504px;
  margin-left: auto;
}

.flex_card_wrapper:nth-child(odd) .reason_txt {
  margin: unset;
}

.flex_card_wrapper:nth-child(odd) .reason_flex_right::before {
  content: "";
  position: absolute;
  background: url(../img/reason_dot01.webp) no-repeat center/contain;
  width: 249px;
  height: 219px;
  right: -5px;
  top: -35px;
}

.flex_card_wrapper:nth-child(even) .reason_flex_right::before {
  content: "";
  position: absolute;
  background: url(../img/reason_dot02.webp) no-repeat center/contain;
  width: 249px;
  height: 219px;
  left: -15px;
  top: -70px;
}

.reason_txt_ttl {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  align-items: center;
}

.reason_txt_ttl h3 {
  font-size: 26px;
  color: #0099d6;
}

.reason_txt_ttl span {
  font-size: 23px;
  color: #ffffff;
  display: block;
}

.reason_txt_ttl .no {
  display: inline-block;
  width: 73px;
  height: 86px;
  margin-bottom: 10px;
}

.flex_card_wrapper:nth-child(even) .flex_card .reason_txt_content {
  margin-left: auto;
  margin-right: unset;
}

.reason_desc {
  padding: 35px 0 30px;
}

.reason_desc span {
  position: relative;
  font-size: 20px;
  z-index: 1;
}

.reason_desc span::before {
  content: "";
  position: absolute;
  background: url(../img/reason_desc_bg.webp);
  width: 630px;
  height: 35px;
  left: -40px;
  top: -2px;
  z-index: -1;
}

.flex_card_wrapper:nth-child(even) .flex_card .reason_desc span::before {
  content: "";
  position: absolute;
  background: url(../img/reason_desc_bg01.webp);
  width: 630px;
  height: 35px;
  top: -2px;
  left: -80px;
  z-index: -1;
}

.reason_txt_content {
  text-align: start;
}

.reason_txt_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #6e605b;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.reason_content_box {
  max-width: 1080px;
  margin: 0 auto 60px;
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
}

.reason_content_box h3 {
  font-size: 28px;
  color: #ffb74e;
}

.reason_content_box p {
  font-size: 16px;
  color: #6e605b;
  margin-top: 20px;
}

.reason_txt_content .reason_txt{
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .reason_sec {
    padding: 60px 0 40px;
    padding: 60px 0 40px;
  }

  .reason_sec::before {
    height: 160px;
  }

  .reason_content_box {
    margin-bottom: 30px;
    width: 85%;
    padding: 20px 15px;
  }

  .reason_content {
    font-size: 16px;
  }

  .reason_content_box h3 {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .reason_content_box p {
    font-size: 14px;
    margin-top: 15px;
  }

  .reason_txt_content .reason_txt{
    font-size: 14px;
  }

  .reason_content .reason_con_txt{
    font-size: 14px;
  }

  .reason_sec h2 {
    margin-top: -15px;
  }

  .reason_sec h2 span.lg_txt {
    font-size: 32px;
  }

  .flex_card {
    flex-direction: column;
    gap: unset;
    padding-bottom: 30px;
  }

  .flex_card_wrapper:nth-child(even) .flex_card {
    flex-direction: column;
    flex-direction: column;
  }

  .flex_card_wrapper:nth-child(5) .flex_card {
    margin-bottom: 0;
  }

  .flex_card > div {
    width: 100%;
  }

  .reason_flex_container {
    margin: 30px auto 0;
  }

  .reason_txt {
    max-width: 100%;
  }

  .reason_txt_ttl {
    display: block;
    position: relative;
    margin: 0 auto 20px;
    padding-top: 40px;
  }

  .reason_txt_ttl h3 {
    font-size: 17px;
    text-align: center;
    line-height: 1.5;
  }

  .reason_txt_ttl span {
    font-size: 15px;
  }

  .reason_txt_ttl .no {
    width: 48px;
    height: 52px;
    position: absolute;
    top: -35px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
  }

  .reason_txt_ttl .no img {
    height: 52px;
    object-fit: contain;
  }

  .reason_desc {
    padding: 10px 0 15px;
  }

  .reason_flex_left {
    position: relative;
  }

  .reason_desc span {
    font-size: 16px;
    display: block;
    text-align: start;
    padding-left: 30px;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }

  .reason_desc span::before {
    background-repeat: no-repeat;
    width: 100%;
    background-size: 100%;
    height: 22.5px;
    padding: inherit;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .reason_desc,
  .reason_txt_content {
    max-width: 100%;
    width: 100%;
  }

  .flex_card_wrapper:nth-child(odd) .flex_card .reason_right_txt {
    margin: 0;
  }

  .flex_card_wrapper:nth-child(even) .flex_card .reason_desc span {
    right: 0;
  }

  .flex_card_wrapper:nth-child(even) .flex_card .reason_desc span::before {
    top: 0;
    left: -30px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: 100%;
    height: 22.5px;
    padding: inherit;
    top: 0;
    left: -30px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: 100%;
    height: 22.5px;
    padding: inherit;
  }

  .reason_txt_content {
    font-size: 14px;
    padding: 0 30px;
  }

  .reason_right_txt {
    max-width: 100%;
    max-width: 100%;
  }

  .flex_card_wrapper:nth-child(odd) .reason_flex_right::before,
  .flex_card_wrapper:nth-child(even) .reason_flex_right::before {
    content: none;
  }
}

/* reason*/
/* flow section start */
.sec_flow {
  background-color: #ffffff;
  padding-bottom: 140px;
}

.sec_flow .flow-container {
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.sec_flow .card-blk {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  column-gap: 64px;
  margin-top: 64px;
}

.sec_flow .card-blk .image-blk {
  position: relative;
}

.sec_flow .card-blk .image-blk::before {
  counter-increment: flow-count;
  content: "0" counter(flow-count);
  background: url(../img/flow_circle.webp) no-repeat center/contain;
  width: 152px;
  height: 152px;
  display: inline-block;
  position: absolute;
  font-size: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
}

.sec_flow .card-blk .image-heading {
  font-size: 28px;
  text-align: center;
  color: #0099d6;
  padding-top: 72px;
  font-weight: 400;
}

.sec_flow .card-blk .req-time {
  font-size: 18px;
  text-align: center;
  color: #ffb74e;
  border: 1px solid #ffb74e;
  border-radius: 14px;
  margin-top: 24px;
  height: 28px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.sec_flow .card-blk .req-time span {
  font-size: 13px;
}

.sec_flow .card-blk .txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.81;
  color: #6e605b;
  font-family: "Zen Kaku Gothic New", serif;
  padding-top: 24px;
}

.sec_flow .card-blk .custom-txt {
  padding-top: 32px;
}

.sec_flow .card-blk {
  counter-reset: flow-count;
}

@media screen and (max-width: 768px) {
  .sec_flow {
    padding-bottom: 40px;
  }

  .sec_flow .flow-container {
    width: 100%;
    max-width: 710px;
    padding: 0 30px;
    margin: 0 auto;
  }

  .sec_flow .card-blk {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 25px;
    column-gap: 64px;
    margin-top: 25px;
  }

  .sec_flow .card-blk .image-blk::before {
    top: unset;
    bottom: -35px;
    width: 71px;
    height: 71px;
    font-size: 28px;
  }

  .sec_flow .card-blk .image-heading {
    font-size: 16px;
    padding-top: 36px;
  }

  .sec_flow .card-blk .req-time {
    font-size: 15px;
    border-radius: 11px;
    margin-top: 15px;
    padding: 8px 0;
    height: 22px;
  }

  .sec_flow .card-blk .req-time.image-txt {
    height: 36px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.1;
    flex-direction: column;
  }

  .sec_flow .card-blk .txt {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 15px;
    letter-spacing: 0.2px;
  }

  .sec_flow .flow-container .price_subheader::after {
    top: 63px;
  }

  .sec_flow .card-blk .req-time span {
    font-size: 11px;
    display: block;
  }
}

/* flow section end */

/* price_sec */
.price {
  background: #eefbfb;
  padding-bottom: 140px;
}

.price_container {
  max-width: 1080px;
  margin: 56px auto 0;
}

.price_container > div {
  margin-bottom: 56px;
}

.price_container > div:last-child {
  margin-bottom: 0;
}

.price_content .price_txt {
  font-size: 16px;
  font-weight: 400;
  color: #6e605b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  line-height: 1.8;
}

.price_tbl_btn {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background: #7fd1d3;
  position: relative;
  border-radius: 32px;
  padding: 8.6px 0;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  font-family: "Hina Mincho", serif;
}

.price_tbl_container .pay_exp_txt{
  margin-top: 20px;
  font-size: 16px;
}

.price_wrapper {
  margin-top: -32px;
  background: #fff;
  padding: 64px 60px 56px;
  border-radius: 8px;
}

.price_tbl_ttl {
  position: relative;
  margin: 40px 0 30px;
}

.price_tbl_ttl p {
  max-width: fit-content;
  display: grid;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 0 20px;
  font-size: 28px;
  color: #0099d6;
  position: relative;
  z-index: 1;
}

.price_tbl_ttl::before {
  content: "";
  width: 100%;
  height: 2px;
  border-top: 1px solid #06cfd3;
  border-bottom: 1px solid #06cfd3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.price_tbl {
  max-width: 960px;
  margin: 0 auto;
}

.price_tbl table {
  width: 100%;
}

.price_tbl tr {
  border: 1px solid #bbb3b0;
}

.price_tbl tr td {
  padding: 20px 0px;
}

.price_tbl tr td:first-child {
  width: 576px;
  padding-left: 40px;
  background-color: #f9f8f7;
  font-size: 17px;
  color: #6e605b;
}

.price_tbl table tr td:nth-child(2) {
  text-align: center;
  color: #ffb74e;
  width: calc(100% - 576px);
  font-size: 22px;
  line-height: 1.5;
}

.price_tbl table tr td .fz30{
  font-size: 30px;
}

.price_tbl table tr:first-child td:last-child {
  font-size: 22px;
}

.price_tbl table td span.yen {
  font-size: 16px;
  color: #ff9933;
}

.price_pay_exp .price_wrapper {
  padding-top: 30px;
}

/* ------------ */
.price_pay_exp {
  text-align: center;
  color: #0092d9;
}

.pay_exp_tbl_sec p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  line-height: 0.46;
}

.pay_exp_num{
  display: flex;
  color: #ffb74e;
  justify-content: center;
  align-items: flex-end;
}

.pay_exp_num p > span:first-child {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffb74e;
  color: #fff;
  font-size: 26px;
  position: relative;
  top: 10px;
  margin-right: 10px;
}

.pay_exp_num .yen_lg{
  font-size: 60px;
  position: relative;
  top: 20px;
}

.pay_exp_num p span {
  font-size: 24px;
}

.pay_exp_num .price_unit {
  display: flex;
  gap: 25px;
  flex-direction: column;
  font-size: 16px;
  position: relative;
  top: 10px;
}

.pay_exp_num .yen {
  font-size: 48px;
  position: relative;
  top: 30px;
}

.pay_exp_num .yen span{
  font-size: 30px;
}

.pay_exp_num .tax {
  font-size: 15px;
}

.price_pay_exp table {
  width: 100%;
  margin: 52px 0 16px;
}

.price_pay_exp table tr {
  border: 1px solid #0099d6;
  color: #0099d6;
}

.price_pay_exp table tbody tr:nth-child(1) {
  line-height: 1.8;
}

.price_pay_exp table tbody tr td {
  text-align: center;
}

.price_pay_exp table tbody tr td span {
  font-size: 22px;
}

.price_pay_exp table tbody tr:last-child td {
  font-size: 16px;
}

.pay_exp_txt {
  font-size: 13px;
  color: #a79892;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}

.price_payment {
  text-align: center;
}

.price_payment p {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.price_payment .fst_txt {
  font-size: 16px;
  color: #6e605b;
  font-weight: 400;
}

.price_payment .lst_txt {
  font-size: 13px;
  color: #a79892;
}

.price_fees_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 40px 0 24px;
}

.price_fees_txt > div {
  width: 100%;
  max-width: 304px;
  height: 100px;
  border: 1px solid #0099d6;
  font-size: 24px;
  color: #0099d6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.med_exp_content {
  text-align: center;
}

.med_exp_content > span {
  color: #ffb74e;
  font-size: 26px;
  line-height: 1.2;
}

.med_exp_content span a {
  display: inline;
  text-decoration: underline;
  text-decoration-color: #ffb74e;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

.med_exp_txt {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #6e605b;
  margin: 24px 0 30px;
}

.med_exp_txt a {
  display: inline;
  color: #0099d6;
  text-decoration: underline;
  text-decoration-color: #c8e2f3;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.med_exp_box {
  width: 100%;
  height: 100px;
  max-width: 960px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0099d6;
  border-radius: 8px;
  margin: 0 auto;
}

.med_exp_box_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}

.price_med_exp .lst_txt{
  font-size: 13px;
  color: #a79892;
  text-align: center;
  margin-top: 20px;
}

.med_txt_fst,
.med_txt_lst {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
  color: #0099d6;
  font-size: 20px;
}

.med_txt_fst {
  border-right: 1px dotted #0099d6;
}

.med_txt_lst ul {
  width: 100%;
  display: flex;
  gap: 48px;
  justify-content: center;
}

.med_txt_lst ul li {
  position: relative;
}

.med_txt_lst ul li::before {
  content: "◦";
  position: absolute;
  font-size: 30px;
  left: -20px;
  top: -12px;
}

@media screen and (max-width: 768px) {
  .price {
    padding-bottom: 40px;
  }

  .price_container {
    padding: 0 15px;
    margin: 30px 0 0;
  }

  .price_container > div {
    margin-bottom: 25px;
  }

  .price_tbl_btn {
    font-size: 18px;
    width: 95%;
    padding: 5px 0;
  }

  .price_content .price_txt {
    font-size: 14px;
    text-align: start;
  }

  .price_wrapper {
    padding: 30px 15px 20px;
    margin-top: -16px;
    border-radius: 4px;
  }

  .price_tbl_container .pay_exp_txt{
    margin-top: 15px;
  }

  .price_tbl tr td {
    padding: 5px 10px 5px;
  }

  .price_tbl_ttl p {
    font-size: 18px;
  }

  .price_tbl_ttl {
    position: relative;
    margin: 16px 0 20px;
  }

  .price_tbl tr td:first-child {
    width: 50%;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 500;
  }

  .price_tbl table tr:first-child td:last-child {
    font-size: 16px;
  }

  .price_tbl table tr td:nth-child(2) {
    font-size: 14px;
    text-align: end;
    padding: 5px 10px 5px 5px;
    white-space: nowrap;
  }

  .price_tbl table tr td .fz30{
    font-size:18px;
  }

  .price_tbl table td span {
    font-size: 14px;
  }
  .price_tbl table td span.yen{
    font-size: 12px;
  }

  .pay_exp_num p > span:first-child {
    width: 58px;
    height: 58px;
    font-size: 17px;
    top: 6px;
  }

  .pay_exp_tbl_sec p {
    font-size: 70px;
  }

  .price_unit .yen {
    font-size: 32px;
  }

  .pay_exp_num .tax {
    font-size: 10px;
  }

  .pay_exp_num .price_unit {
    gap: 15px;
    top: 2px;
  }

  .price_pay_exp .price_wrapper {
    padding-top: 15px;
  }

  .price_pay_exp .price_tbl_ttl {
    margin: 16px 0 10px;
  }

  .price_pay_exp table {
    width: 100%;
    margin: 25px 0 12px;
  }

  .price_pay_exp table tbody tr td {
    font-size: 13px;
  }

  .price_pay_exp table tbody tr:last-child td {
    font-size: 14px;
  }

  .price_pay_exp table tbody tr td span {
    font-size: 16px;
  }

  .pay_exp_txt {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: start;
  }

  .price_payment .fst_txt {
    font-size: 14px;
  }

  .med_exp_content > span {
    font-size: 16px;
  }

  .price_fees_txt {
    flex-direction: column;
    gap: 8px;
    margin: 20px 0 12px;
  }

  .price_fees_txt > div {
    max-width: 100%;
    height: 35px;
    font-size: 16px;
    border-radius: 4px;
  }

  .price_payment .lst_txt {
    font-size: 11px;
    font-weight: 400;
    text-align: start;
  }
  .med_exp_txt {
    font-size: 14px;
    margin: 15px 0;
    text-align: start;
  }

  .med_exp_box {
    padding: 10px 20px;
  }

  .med_exp_box_wrapper {
    width: 100%;
    flex-direction: column;
  }

  .med_exp_content span a {
    text-decoration-thickness: 1px;
  }

  .med_exp_txt a {
    text-decoration-thickness: 1px;
  }

  .med_txt_fst {
    width: 100%;
    flex-direction: column;
    font-size: 15px;
  }

  .med_txt_fst ul {
    padding: 0px 15px;
    width: 100%;
    gap: 35px;
    justify-content: center;
  }

  .med_txt_fst:nth-child(1) {
    border-right: 0;
    border-bottom: 1px dotted #0099d6;
  }
  .med_txt_fst,
  .med_txt_lst {
    width: 100%;
    font-size: 15px;
  }

  .med_txt_lst ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .med_txt_lst ul li:last-child {
    margin-left: 20px;
  }

.price_med_exp .lst_txt{
  font-size: 11px;
  margin-top: 10px;
  text-align: start;
}

  .med_txt_lst ul li::before {
    content: "◦";
    position: absolute;
    font-size: 21px;
    left: -12px;
    top: -8px;
  }

  .pay_exp_num .yen_lg {
    font-size: 40px;
    top: 14px;
  }

  .pay_exp_num{
    display: block;
    position: relative;
    top: 10px;
  }

  .pay_exp_num .yen {
    font-size: 28px;
    position: relative;
    top: 0px;
  }

  .pay_exp_num .yen span {
    font-size: 16px;
}
}
/* price_sec-end */
/* Start Clinic Section  */

.clinic {
  width: 100%;
  padding-bottom: 140px;
}

.clinic_container {
  background-color: #fff;
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.clinic_director_box {
  display: flex;
  margin-top: 56px;
  margin-bottom: 76px;
}

.clinic_top_paragraph_longtext {
  font-size: 16px;
  font-weight: 400;
  color: #6e605b;
}

.director_label {
  font-size: 18px;
}

.director_name {
  font-size: 28px;
}

.director_photo_container {
  max-width: 520px;

  padding-left: 60px;
}

.director_photo_container img {
  width: 100%;
  min-width: 460px;
  height: 100%;
}

.director_text_container {
  padding: 40px 0px;
}

.clinic_top_paragraph {
  margin-bottom: 32px;
}

.clinic_top_paragraph p {
  line-height: 1.75;
}

.clinic_bottom_paragraph,
.staff_text_box {
  display: flex;
  border-top: 1px solid #bbb3b0;
  border-bottom: 1px solid #bbb3b0;
  height: 180px;
}

.staff_text_box {
  height: 150px;
}

.position {
  font-size: 18px;
}

.staff_name {
  font-size: 28px;
}

.academic_society {
  width: 120px;
  max-width: 120px;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #f9f8f7;
  color: #6e605b;
}

.academic_society p {
  font-size: 16px;
  color: #6e605b;
}

.society_list_box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.society_list_box p {
  font-size: 16px;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #6e605b;
}

.clinic_staff_box {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
}

.left_staff_box,
.right_staff_box {
  width: 50%;
}

.img_staff_box {
  display: flex;
  margin-bottom: 24px;
}

.img_staff {
  width: 100%;
  max-width: 280px;
}

.img_staff img {
  width: 100%;
}

.staff_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 31px;
  color: #0099d6;
}

.staff_second_text_box {
  display: flex;
  border-bottom: 1px solid #bbb3b0;
}

.clinic_facility_box {
  display: grid;
  gap: 23px;
  grid-template-columns: 1fr 1fr 1fr;
}

.facility_text {
  margin-top: 16px;
  color: #06cfd3;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .clinic {
    padding-bottom: 40px;
  }

  .clinic_container {
    padding: 0 30px;
  }

  .clinic_director_box {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 5px;
  }

  .director_photo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .director_photo_container img {
    max-width: 230px;
    width: 100%;
    min-width: 0;
  }

  .clinic_top_paragraph .clinic_top_paragraph_longtext {
    text-align: justify;
    font-size: 14px;
  }

  .director_text_container {
    padding: 20px 0px;
  }

  .director_label {
    font-size: 13px;
  }

  .clinic_bottom_paragraph,
  .staff_text_box {
    height: 134px;
  }

  .society_list_box {
    padding: 15px 12px;
  }

  .director_name {
    font-size: 18px;
  }

  .clinic_staff_box {
    flex-direction: column;
  }

  .img_staff_box {
    margin-bottom: 15px;
  }

  .academic_society {
    width: 80px;
  }

  .academic_society p {
    font-size: 14px;
  }

  .society_list_box p {
    font-size: 14px;
    line-height: 1.6;
  }

  .clinic_staff_box {
    gap: 25px;
    margin-bottom: 25px;
  }

  .left_staff_box,
  .right_staff_box {
    width: 100%;
  }

  .img_staff {
    max-width: 50%;
  }

  .position {
    font-size: 13px;
  }

  .staff_name {
    font-size: 18px;
  }

  .img_staff_box .staff_text {
    width: 50%;
    text-align: center;
    align-items: center;
  }

  .right_staff_box .img_staff_box {
    flex-direction: row-reverse;
  }

  .clinic_facility_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility_text {
    font-size: 14px;
    margin-top: 12px;
  }

  .staff_text {
    padding: 0;
  }
}

@media screen and (max-width: 375px) {
  .society_list_box p {
    font-size: 11px;
  }
}

@media screen and (max-width: 350px) {
  .right_staff_box .society_list_box p {
    font-size: 11px;
  }
}

/* End Clinic Section  */

/* access  */
.s_access {
  background: url(../img/access_bg.webp);
  background-size: cover;
  background-position: center;
  padding-bottom: 135px;
}

.access_section {
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.access_map {
  width: 100%;
  height: 400px;
  margin-top: 56px;
}

.access_map iframe {
  width: 100%;
  height: 100%;
}

.map_ttl {
  height: 86px;
  border-top: 2px solid #06cfd3;
  border-bottom: 2px solid #06cfd3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.map_ttl_inner {
  width: 100%;
  height: 80px;
  border-top: 1px solid #06cfd3;
  border-bottom: 1px solid #06cfd3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: #06cfd3;
}

.map_ttl_inner .map_txt {
  color: #0099d6;
}

.access_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 80px;
  margin-top: 80px;
  counter-reset: access-count;
  margin-bottom: 60px;
}
.access_card_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #6e605b;
  margin-right: 15px;
  letter-spacing: 1px;
  margin-top: 20px;
  position: relative;
  padding-left: 20px;
}

.access_count {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0099d6;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 5px;
}

.access_card {
  position: relative;
}

.access_card::before {
  counter-increment: access-count;
  content: "0" counter(access-count);
  width: 152px;
  height: 152px;
  background: url(../img/flow_circle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 56px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access_table_data {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: #6e605b;
  border-bottom: 1px solid #bbb3b0;
}

.access_table_data:first-child {
  border-top: 1px solid #bbb3b0;
}

.access_data_left {
  width: 260px;
  background-color: #f9f8f7;
  padding: 20px 0 20px 40px;
}

.access_data_right {
  width: calc(100% - 260px);
  background-color: #ffffff;
  padding: 20px 0 20px 40px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .s_access {
    padding-bottom: 40px;
  }

  .access_section {
    width: 100%;
    max-width: 375px;
    padding: 0 16px;
    margin: 0 auto;
  }

  .access_map {
    width: 100%;
    height: 225px;
    margin-top: 25px;
  }

  .map_ttl {
    height: 46px;
    margin-top: 20px;
  }

  .map_ttl_inner {
    height: 40px;
    font-size: 16px;
  }

  .access_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 14px;
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .access_card::before {
    width: 76px;
    height: 76px;
    top: -38px;
    font-size: 28px;
  }

  .access_card_txt {
    font-size: 13px;
    margin-right: 0;
    letter-spacing: 0.5px;
    margin-top: 15px;
  }

  .access_count{
    width: 15px;
    height: 15px;
    font-size: 8px;
  }

  .access_table_data {
    font-size: 14px;
  }

  .access_data_left {
    width: 95px;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
  }

  .access_data_right {
    width: calc(100% - 95px);
    padding: 20px 0 20px 15px;
  }
}

/* access end */

/* content */
.sec_content {
  background: url(../img/content_bg.webp) no-repeat center/cover;
  padding: 48px 0;
}

.sec_content .content_container {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  background: url(../img/content.webp) no-repeat center/cover;
}

.sec_content .content_container .content_heading {
  text-align: center;
  font-size: 36px;
  color: #0099d6;
  padding-top: 56px;
}

.content-blk {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;

  width: 100%;

  padding-top: 31px;
}

.content-blk .content-link {
  display: flex;
  column-gap: 16px;
  width: calc(100% - 360px);
  justify-content: end;
}

.content-blk .content-link .mail-blk {
  width: 100%;
  max-width: 320px;
}

.content-blk .content-link .line-blk {
  width: 100%;
  max-width: 360px;
}

.content-blk .phone-blk .phone-number {
  font-size: 56px;
  line-height: 0.3;
  color: #0099d6;
  position: relative;
  padding-left: 41px;
  margin-top: 12px;
}

.content-blk .phone-blk .phone-number::before {
  content: "";
  background: url(../img/icon_phone.webp) no-repeat center/contain;
  width: 29px;
  height: 41px;
  display: inline;
  position: absolute;
  top: -7px;
  left: 0;
}

.content-blk .phone-blk .phone-txt {
  font-size: 18px;
  color: #0099d6;
  display: flex;
  justify-content: center;
}

.content-blk .mail-blk,
.line-blk {
  background-color: #ef8c96;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 87px;
  font-size: 28px;
  color: #ffffff;
  border-radius: 40px;
  /* position: relative; */
  padding-left: 45px;
}

.content-blk .mail-blk p,
.line-blk p {
  position: relative;
}

.content-blk .line-blk {
  background-color: #00c300;
  padding-left: 41px;
  color: #ffffff;
}

.content-blk .mail-blk p::before {
  content: "";
  position: absolute;
  background: url(../img/icon_mail.webp) no-repeat center/cover;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
  width: 36px;
  height: 26px;
}

.content-blk .line-blk p::before {
  content: "";
  position: absolute;
  background: url(../img/icon_line.webp) no-repeat center/cover;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: -43px;
  width: 36px;
  height: 34px;
}

.line-blk img,
.mail-blk img {
  height: 87px;
}

.sec_content .content_container .duration {
  font-size: 15px;
  text-align: center;
  color: #6e605b;
  padding-top: 23px;
}

.sec_content .content_container .second-blk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 56px;
}

.sec_content .station,
.treatment,
.holiday {
  background-color: #7fd1d3;
  color: #ffffff;
  font-size: 22px;
  border-radius: 4px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .content-blk .phone-blk .phone-number {
    font-size: 51px;
  }
}

@media screen and (max-width: 768px) {
  .content-blk {
    padding: 20px 15px;
    row-gap: 15px;
    flex-direction: column;
  }

  .sec_content .content_container {
    max-width: 345px;
    padding: 0 15px;
  }

  .sec_content {
    padding: 15px;
    background: url(../img/content_bg_sp.webp) no-repeat center/cover;
  }

  .sec_content .content_container .content_heading {
    font-size: 19px;
    padding-top: 25px;
    line-height: 1.3;
  }

  .content-blk .phone-blk .phone-txt {
    font-size: 13px;
  }

  .content-blk .phone-blk .phone-number {
    font-size: 42px;
    line-height: 0.3;
    padding-left: 41px;
    margin-top: 12px;
    margin-bottom: 15px;
  }

  .content-blk .phone-blk .phone-number::before {
    width: 22px;
    height: 31px;
    left: 17px;
  }

  .sec_content .content_container .duration {
    font-size: 13px;
    padding-top: 0;
  }

  .sec_content .content_container .second-blk {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 15px;
    padding-bottom: 25px;
  }

  .sec_content .station,
  .treatment,
  .holiday {
    background-color: #7fd1d3;
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
  }

  .content-blk .content-link {
    flex-direction: column;
    width: 100%;
    row-gap: 10px;
  }

  .content-blk .mail-blk,
  .line-blk {
    height: 44px;
    font-size: 16px;
    border-radius: 40px;
    padding-left: 30px;
  }

  .content-blk .mail-blk p::before {
    width: 22px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
  }

  .content-blk .line-blk {
    background-color: #00c300;
    padding-left: 23px;
  }

  .content-blk .line-blk p::before {
    width: 22px;
    height: 21px;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
  }
}

/* content end */

/* risk */
.p-risk_ttl {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #06cfd3;
}

section.p-risk {
  padding: 90px 0 110px;
}

section.p-risk h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #0099d6;
  position: relative;
}

section.p-risk h2 span {
  padding: 20px 20px 20px 0;
  background: #fff;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

section.p-risk h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #06cfd3;
  right: 0;
  top: 15px;
}

.p-risk_cont {
  height: 277px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #06cfd3 #cacaca;
  color: #5d656f;
}

.p-risk_cont::-webkit-scrollbar {
  width: 4px;
}

.p-risk_cont::-webkit-scrollbar-track {
  background: #cacaca;
}

.p-risk_cont::-webkit-scrollbar-thumb {
  background: #b5dfc6;
}

.p-risk_item {
  margin-bottom: 20px;
  padding-right: 55px;
}

.p-risk_item_ttl {
  font-size: 14px;
  color: #06cfd3;
  font-weight: 700;
  margin-bottom: 8px;
}

.p-risk_list li {
  padding-left: 1rem;
  text-indent: -1rem;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 4px;
}

.p-risk_item p {
  line-height: 1.75;
}

.p-risk_list li a,
.p-risk_item p a {
  display: inline;
  text-decoration: underline;
}

.p-risk_list li.-unset {
  padding-left: unset;
  text-indent: unset;
}

@media screen and (max-width: 768px) {
  section.p-risk h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #06cfd3;
  }

  section.p-risk h2 span {
    font-size: 14px;
    padding: 0;
  }

  section.p-risk h2::after {
    content: none;
  }

  .p-risk_ttl {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  section.p-risk {
    padding: 40px 20px;
  }

  .p-risk_cont::-webkit-scrollbar {
    width: 3px;
  }

  .p-risk_cont {
    height: 120px;
  }

  .p-risk_item {
    margin-bottom: 15px;
    padding-right: 8px;
  }

  .p-risk_list li,
  .p-risk_item p {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

/* rish end */

/*  footer */
footer {
  background-color: #7fd1d3;
}

.footer_wrapper {
  border-top: 1px solid #0099d6;
}

.footer_wrapper hr {
  border: 1.5px solid #0099d6;
  position: relative;
  bottom: 6px;
  margin-bottom: 4px;
}

#fixed_footer.on {
  bottom: 0;
}

#fixed_footer {
  position: fixed;
  left: 0;
  bottom: -110px;
  padding: 0 0 12px;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
}

.footer_copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 14px 0 100px;
  font-family: "Hina Mincho", serif;
  letter-spacing: 0.96px;
}

.footer_left .footer_logo {
  max-width: 350px;
  width: 100%;
  height: 56px;
}

.footer_flex {
  display: flex;
  max-width: 1280px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer_left {
  display: flex;
  gap: 14px;
  color: #ffffff;
  width: 365px;
}

.f_reserve_box {
  display: flex;
  justify-content: end;
  align-items: center;
}

.f_phone_box a {
  font-size: 40px;
  color: #0099d6;
  font-weight: 400;
  line-height: 1.5;
}

.footer_right {
  max-width: 840px;
  width: 100%;
}

.f_phone_box {
  text-align: center;
}

.f_phone_box a span {
  position: relative;
}

.f_phone_box a span::before {
  content: "";
  position: absolute;
  background: url(../img/ph_icon.webp) no-repeat center / contain;
  width: 21px;
  height: 29px;
  left: -27px;
  top: 17px;
}

.f_mail_box,
.f_line_box {
  max-width: 240px;
  width: 100%;
}

.f_mail_box {
  margin-left: 20px;
}

.f_mail_box a,
.f_line_box a {
  border-radius: 40px;
  font-size: 22px;
  color: #fff;
  padding: 3px 5px 5px 40px;
  text-align: center;
}

.f_mail_box a span,
.f_line_box a span {
  position: relative;
}

.f_mail_box a span::before {
  content: "";
  position: absolute;
  background: url(../img/mail_icon.webp) no-repeat center / contain;
  width: 24px;
  height: 18px;
  left: -35px;
  top: 8px;
}

.f_line_box a span::before {
  content: "";
  position: absolute;
  background: url(../img/line_icon.webp) no-repeat center / contain;
  width: 24px;
  height: 24px;
  left: -38px;
  top: 6px;
}

.f_mail_box a {
  background-color: #ef8c96;
}

.f_line_box a {
  background-color: #00c300;
}

.f_line_box {
  margin-left: 8px;
}

.pageTop {
  max-width: 51px;
  width: 100%;
  height: 41px;
  margin-left: 20px;
}

.pageTop a {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .footer_copyright {
    font-size: 11px;
    padding: 14px 0 65px;
  }

  .footer_wrapper hr {
    display: none;
  }

  .footer_left {
    display: none;
  }

  .footer_right {
    max-width: 100%;
    width: 100%;
  }

  .f_reserve_box {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 55px;
    gap: 0;
  }

  .f_phone_box a {
    font-size: 21px;
    text-align: center;
    padding: 0 0 0 20px;
  }

  .f_phone_box a span::before {
    width: 15px;
    height: 20px;
    left: -21px;
    top: 6px;
  }

  .f_mail_box a {
    font-size: 13px;
    border-radius: unset;
    max-width: unset;
    padding: 20px 0;
    height: 55px;
  }

  .f_mail_box {
    margin: unset;
    max-width: unset;
  }

  .f_mail_box a span,
  .f_line_box a span {
    position: relative;
    top: 10px;
    font-size: 10px;
  }

  .f_mail_box a span::before {
    left: 50%;
    top: -24px;
    width: 22px;
    height: 25px;
    transform: translateX(-50%);
  }

  .f_line_box {
    margin: unset;
  }

  .f_line_box a {
    background-color: #00c300;
    font-size: 13px;
    border-radius: unset;
    max-width: unset;
    padding: 20px 0;
    height: 55px;
  }

  .f_line_box a span::before {
    left: 50%;
    top: -24px;
    width: 22px;
    height: 25px;
    transform: translateX(-50%);
  }

  #fixed_footer {
    min-width: unset;
    height: unset;
    padding: 0;
    bottom: 0;
  }

  #fixed_footer.on{
    bottom: 0;
  }

  .pageTop {
    max-width: 44px;
    height: 30px;
    margin: 0 auto;
  }
}

/*  footer end*/
