@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6f4e8;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 767px) {
  #top, #reason, #worries, #info, #flow, #faq {
    scroll-margin-top: 70px;
  }
}
.img-wrap {
  text-align: center;
}
.img-wrap img {
  max-width: 100%;
}

.body-inner {
  display: flex;
  justify-content: center;
}

.group-link-col, .menu-col {
  width: calc((100% - 800px) / 2);
  flex-shrink: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .group-link-col, .menu-col {
    display: none;
  }
}

.group-link-col {
  position: relative;
}
@media screen and (max-width: 767px) {
  .group-link-col {
    display: block;
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    background-color: #FFFFFF;
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 10;
  }
  .group-link-col._sp-open {
    transform: translateX(0);
  }
}
.group-link-col .group-link-col-inner {
  margin-left: auto;
  height: 100vh;
  padding: 20px;
  overflow: auto;
  position: sticky;
  top: 0;
  left: 0;
  background-image: url("../img/side-col-bg.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .group-link-col .group-link-col-inner {
    height: calc(100vh - 70px);
    background-size: 272px 105px;
  }
}
.group-link-col .group-link-col-inner .bg-mask-left {
  --mask:100%;
  display: block;
  width: var(--mask);
  height: 220px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: #f6f4e8;
}
.group-link-col .group-link-head {
  margin-bottom: 100px;
}
.group-link-col .group-link-head img {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .group-link-col .group-link-head {
    display: none;
  }
}
.group-link-col .side-anchor-list {
  display: none;
}
@media screen and (max-width: 767px) {
  .group-link-col .side-anchor-list {
    display: block;
    max-width: 100%;
    padding: 0;
  }
}
.group-link-col .group-link-list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  justify-content: center;
  position: relative;
  z-index: 7;
}
@media screen and (max-width: 767px) {
  .group-link-col .group-link-list {
    margin-top: 80px;
    justify-content: flex-start;
  }
}
.group-link-col .group-link-list > li {
  width: calc((100% - 10px) / 2);
  max-width: 200px;
  border-radius: 20px;
  border: 2px solid #16c172;
  background-color: #ffffff;
  text-align: center;
  color: #16c172;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
}
.group-link-col .group-link-list > li:hover {
  transform: translateY(-20px);
}
.group-link-col .group-link-list > li a {
  display: block;
  height: 100%;
  padding: 30% 10px 10px;
  position: relative;
}
.group-link-col .group-link-list > li a img {
  width: 80%;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.group-link-col .group-link-list > li:nth-child(even) {
  margin-left: 10px;
}
.group-link-col .group-link-list > li:nth-child(n+3) {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .group-link-col .group-link-list > li:nth-child(n+3) {
    margin-top: 50px;
  }
}

.menu-col {
  position: relative;
}
.menu-col .menu-col-inner {
  padding: 20px;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  background-image: url("../img/side-col-bg2.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
}
.menu-col .bg-mask-right {
  --mask:100%;
  display: block;
  width: var(--mask);
  height: 220px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: #f6f4e8;
}

.side-anchor-list {
  max-width: 300px;
  padding: 30px 0;
  position: relative;
  z-index: 7;
}
.side-anchor-list > li a {
  display: block;
  padding: 5px 50px 5px 20px;
  background-color: #f6f4e8;
  border-radius: 30px;
  border: 1px solid #16c172;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #16c172;
  transition: 0.3s;
}
.side-anchor-list > li a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #16c172;
  position: absolute;
  z-index: 8;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.side-anchor-list > li a:before {
  content: "";
  display: block;
  z-index: 9;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.4s;
}
.side-anchor-list > li a:hover {
  background-color: #16c172;
  color: #ffffff;
}
.side-anchor-list > li a:hover:after {
  background-color: #ffffff;
}
.side-anchor-list > li a:hover:before {
  border-top: 2px solid #16c172;
  border-right: 2px solid #16c172;
}
.side-anchor-list > li + li {
  margin-top: 20px;
}

.main-content {
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 80px 20px 0;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-content {
    max-width: 100%;
    border: none;
  }
}

.main-content-header {
  padding: 10px 10px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .main-content-header {
    position: fixed;
  }
}

.header-menu-btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #16c172;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header-menu-btn {
    display: flex;
  }
}
.header-menu-btn span {
  display: block;
  width: 25px;
  height: 4px;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-menu-btn span:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 8px));
  transition: 0.4s;
}
.header-menu-btn span:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 8px));
  transition: 0.4s;
}
.header-menu-btn._active span {
  background-color: #16c172;
}
.header-menu-btn._active span:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-menu-btn._active span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.main-content-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-content-header-inner img {
  max-width: 280px;
}

.main-fv {
  margin-top: 20px;
}
.main-fv .main-fv-img {
  text-align: center;
  margin: 0 -20px;
}
.main-fv .main-fv-img img {
  max-width: 100%;
}
.main-fv .main-fv-treatment-list {
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}
.main-fv .main-fv-treatment-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-weight: bold;
  border-radius: 15px;
  background-color: #295d46;
  font-size: 18px;
  color: #ffffff;
}
.main-fv .main-fv-text {
  margin-top: 30px;
  text-align: center;
  color: #16c172;
  font-size: 30px;
  line-height: 1.5;
}
.main-fv .main-fv-text ._b {
  font-weight: bold;
  font-size: 40px;
}
.main-fv .main-fv-achievement {
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}
.main-fv .main-fv-achievement > li {
  width: 190px;
  position: relative;
  border-radius: 5px;
}
.main-fv .main-fv-achievement > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid #f97d03;
  z-index: 8;
}
.main-fv .main-fv-achievement > li .main-fv-achievement-head {
  width: 120px;
  display: flex;
  padding: 4px 10px;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background-color: #f97d03;
  color: #ffffff;
  font-size: 20px;
  z-index: 10;
}
.main-fv .main-fv-achievement > li .main-fv-achievement-inner {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 10px 15px 10px;
  transform: translate(5px, 5px);
  text-align: center;
  color: #16c172;
  font-size: 18px;
  font-weight: bold;
}
.main-fv .main-fv-achievement > li .main-fv-achievement-inner span {
  font-size: 35px;
}

.cta-area {
  margin-top: 40px;
}
.cta-area._fv {
  background-color: #FFFFFF;
  margin: 0 -20px;
  padding: 30px 10px;
}
.cta-area._bottom {
  background-color: #FFFFFF;
  margin: 0 -20px;
  padding: 50px 10px;
}
.cta-area._bottom .cta-text-bottom {
  text-align: center;
  font-size: 22px;
  color: #295d46;
  font-weight: bold;
}
.cta-area._bottom .cta-text-bottom ._c1 {
  font-size: 20px;
  color: #16c171;
}
.cta-area._bottom .cta-text-bottom ._c2 {
  font-size: 24px;
  color: #f97d03;
}
.cta-area .cta-text {
  color: #295d46;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -2px;
}
.cta-area .cta-text-inner {
  position: relative;
  display: inline-block;
  padding: 0 16px;
}
.cta-area .cta-text-inner:before {
  content: "";
  display: block;
  width: 2px;
  height: 35px;
  background-color: #295d46;
  position: absolute;
  left: 0;
  bottom: 3px;
  transform: rotate(-45deg);
}
.cta-area .cta-text-inner:after {
  content: "";
  display: block;
  width: 2px;
  height: 35px;
  background-color: #295d46;
  position: absolute;
  right: 0;
  bottom: 3px;
  transform: rotate(45deg);
}
.cta-area .cta-text-inner ._c {
  color: #f97d03;
  letter-spacing: 0;
}

.cta-btn {
  margin-top: 20px;
  display: flex;
}
.cta-btn._center {
  justify-content: center;
}
.cta-btn._footer {
  margin: 20px -10px 0;
}
.cta-btn > li {
  width: calc((100% - 10px) / 2);
}
.cta-btn > li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 55px;
  border-radius: 60px;
  background-color: #f97d03;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  transition: 0.6s;
}
@media screen and (max-width: 385px) {
  .cta-btn > li a {
    font-size: 11px;
  }
}
.cta-btn > li a:hover {
  transform: translateY(-10px);
}
.cta-btn > li a._c {
  background-color: #16c172;
}
.cta-btn > li a ._main {
  font-size: 20px;
}
.cta-btn > li a ._main img {
  margin-right: 10px;
  width: 18px;
}
.cta-btn > li a ._sub {
  display: inline-block;
  margin-bottom: 5px;
}
.cta-btn > li + li {
  margin-left: 10px;
}

section {
  padding: 40px 0 20px;
}

.reason-hdg {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  color: #16c172;
  font-weight: bold;
}
.reason-hdg ._c {
  font-size: 25px;
  color: #295d46;
}
.reason-hdg ._large {
  font-size: 40px;
}

.reason-list > li {
  display: flex;
  background-color: #9bc847;
  position: relative;
}
.reason-list > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f6f4e8;
}
.reason-list > li + li {
  margin-top: 40px;
}
.reason-list > li .reason-list-head {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 70px 10px 10px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  background-color: #16c172;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.reason-list > li .reason-list-head ._num {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #16c172;
}
.reason-list > li .reason-list-body {
  padding: 0 15px 20px;
  flex-grow: 1;
  position: relative;
}
.reason-list > li .reason-list-body-inner {
  width: 100%;
  background-color: #295d46;
  padding: 25px 15px 20px;
  border-radius: 20px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-head {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}
.reason-list > li .reason-list-body-inner .reason-list-body-head._ls4 {
  letter-spacing: -4px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-head ._large {
  font-size: 24px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-head ._large span {
  letter-spacing: -10px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-head ._middle {
  font-size: 15px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-content {
  padding: 30px 20px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
}
.reason-list > li .reason-list-body-inner .reason-list-body-content img {
  width: 75px;
}
.reason-list > li .reason-list-body-inner .reason-list-body-content p {
  margin-top: 20px;
  text-align: center;
  color: #295d46;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}

.detail-link {
  margin-top: 40px;
  text-align: center;
}
.detail-link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 50px;
  padding: 10px 40px;
  background-color: #f97d03;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  transition: 0.6s;
  position: relative;
}
.detail-link a img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.detail-link a:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.detail-link a:hover {
  transform: translateY(-10px);
}

.worries-hdg {
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: #295d46;
}

.worries-list {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 90px;
  position: relative;
}
.worries-list img {
  max-width: 100%;
}
.worries-list:after {
  content: "";
  display: block;
  width: 177px;
  height: 53px;
  background-image: url("../img/triangle.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.worries-list > li {
  width: calc((100% - 40px) / 2);
  text-align: center;
}
.worries-list > li:nth-child(even) {
  margin-left: 40px;
}
.worries-list > li:nth-child(n+3) {
  margin-top: 40px;
}
.worries-list > li .worries-list-balloon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 60px;
  margin-bottom: 40px;
  padding: 10px 5px;
  text-align: center;
  border: 1px solid #f5f4ed;
  border-radius: 20px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  box-shadow: 0px 5px 10px 0px rgb(190, 190, 187);
  position: relative;
}
.worries-list > li .worries-list-balloon:after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background-color: #FFFFFF;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.worries-ans-hdg {
  padding-bottom: 100px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #295d46;
  position: relative;
}
.worries-ans-hdg span {
  display: inline-block;
  padding: 0 20px;
  border-radius: 40px;
  background-color: #16c172;
  color: #ffffff;
}
.worries-ans-hdg:before {
  content: "";
  display: block;
  width: 4px;
  height: 80px;
  background-color: #f97d03;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.worries-ans-hdg:after {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  background-color: #f97d03;
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform-origin: 50% 100%;
  transform: rotate(45deg);
}

.point-list {
  margin: 30px auto 0;
  width: 100%;
  max-width: 700px;
}
.point-list li {
  position: relative;
  padding: 0 10px 40px;
  background: linear-gradient(180deg, #f6f4e8 0, #f6f4e8 80px, #e5f4dd 80px, #e5f4dd 100%);
}
.point-list li + li {
  margin-top: 60px;
}
.point-list li .point-img {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}
.point-list li .point-num {
  margin-bottom: 10px;
  text-align: center;
  color: #295d46;
  font-size: 16px;
  font-weight: bold;
}
.point-list li .point-num span {
  font-size: 50px;
}
.point-list li .point-head {
  margin-bottom: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #16c172;
}
.point-list li .point-text {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
}
.point-list li .point-text span {
  color: #f97d03;
}

.introduction-hdg {
  padding-bottom: 50px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #16c172;
  line-height: 1.3;
  background-image: url("../img/introduction-hdg-bg-01.webp"), url("../img/introduction-hdg-bg-02.webp");
  background-size: 51px 68px, 75px 70px;
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
}
.introduction-hdg span {
  position: relative;
}
.introduction-hdg span:before {
  content: "・";
  display: block;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  font-size: 15px;
}

.introduction-read-text {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #295d46;
  line-height: 1.3;
}

.introduction-circle-list {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.introduction-circle-list > li {
  padding: 0 10px;
}
.introduction-circle-list > li > span {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #9bc847;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.introduction-circle-list > li img {
  width: 30px;
  display: inline-block;
  margin-bottom: 10px;
}
.introduction-circle-list > li:nth-child(5) img {
  width: 40px;
}
.introduction-circle-list > li:nth-child(n+4) {
  margin-top: 30px;
}

.info-anchor-list {
  margin-bottom: 80px;
}
.info-anchor-list > li {
  font-size: 18px;
  font-weight: bold;
}
.info-anchor-list > li a {
  display: block;
  padding: 10px 20px 10px 10px;
  border-radius: 10px;
  background-color: #295d46;
  color: #FFFFFF;
  position: relative;
  transition: 0.4s;
}
.info-anchor-list > li a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -75%) rotate(45deg);
  transition: 0.4s;
}
.info-anchor-list > li a:hover {
  background-color: #FFFFFF;
  color: #295d46;
}
.info-anchor-list > li a:hover:after {
  border-color: #295d46;
}
.info-anchor-list > li + li {
  margin-top: 10px;
}

.info-box {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  padding-top: 50px;
  scroll-margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .info-box {
    scroll-margin-top: 120px;
  }
}
.info-box + .info-box {
  margin-top: 80px;
}
.info-box .info-box-inner {
  border: 4px solid #16c172;
  border-radius: 10px;
  padding: 30% 10px 10px;
  background-color: #ffffff;
  position: relative;
}
.info-box .info-box-inner h3 {
  margin-bottom: 25px;
  text-align: center;
  color: #16c172;
  font-size: 30px;
  font-weight: bold;
}
.info-box .info-box-inner .info-top-img {
  width: 80%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info-box .info-box-inner .info-tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-top: -10px;
  margin-bottom: 30px;
}
.info-box .info-box-inner .info-tag-list > li {
  margin-left: 20px;
  margin-top: 10px;
  padding: 8px 20px 8px 40px;
  background-color: #e5f4dd;
  border-radius: 20px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.info-box .info-box-inner .info-tag-list > li:before {
  content: url("../img/icon-tag.webp");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.info-box .info-box-inner .cta-btn {
  margin-top: 10px;
}
@media screen and (max-width: 430px) {
  .info-box .info-box-inner .cta-btn {
    margin: 10px -5px 0;
  }
  .info-box .info-box-inner .cta-btn > li a {
    font-size: 10px !important;
  }
}
.info-box .info-address {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.3;
}
.info-box .info-address > span {
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
}
.info-box .info-map {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}
.info-box .info-map iframe {
  width: 100%;
  height: 100%;
}
.info-box .info-imgs {
  margin-top: 30px;
  display: flex;
}
.info-box .info-imgs .img-wrap {
  width: calc((100% - 20px) / 2);
}
.info-box .info-imgs .img-wrap + * {
  margin-left: 20px;
}

* + .info-text {
  margin-top: 10px;
}

.info-text {
  font-size: 14px;
  font-weight: bold;
}

.info-text-m {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}

.available-treatment {
  margin-top: 50px;
  position: relative;
}
.available-treatment .available-treatment-hdg {
  min-width: 300px;
  padding: 8px 40px;
  border-radius: 20px;
  background-color: #295d46;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.available-treatment .available-treatment-hdg:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-glass.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.available-treatment .available-treatment-hdg:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-75%) rotate(45deg);
}
.available-treatment .available-treatment-list-wrap {
  overflow: hidden;
  height: auto; /* 初期は見える */
  transition: height 500ms linear;
}
.available-treatment .available-treatment-list {
  padding: 50px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  background-color: #e5f4dd;
  border-radius: 20px;
}
.available-treatment .available-treatment-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 20px) / 3);
  margin-left: 10px;
}
.available-treatment .available-treatment-list > li:nth-child(3n+1) {
  margin-left: 0;
}
.available-treatment .available-treatment-list > li:nth-child(n+4) {
  margin-top: 20px;
}
.available-treatment .available-treatment-list .available-treatment-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  background-color: #ffffff;
  border-radius: 50%;
}
.available-treatment .available-treatment-list .available-treatment-list-icon img {
  max-width: 100%;
}
.available-treatment .available-treatment-list span {
  font-size: 14px;
  font-weight: bold;
}

.time-img {
  margin-top: 60px;
}

.flow-head-top {
  position: relative;
}
.flow-head-top:after {
  content: "";
  display: block;
  width: 36px;
  height: 35px;
  background-image: url("../img/flow-head-arrow.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 60px);
}
.flow-head-top p {
  margin-bottom: 20px;
  text-align: center;
  color: #295d46;
  font-size: 25px;
  font-weight: bold;
}
.flow-head-top .flow-head-top-list {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}
.flow-head-top .flow-head-top-list > li {
  padding: 5px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #295d46;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
.flow-head-top .flow-head-top-list > li + li {
  margin-left: 10px;
}

.flow-hdg {
  margin-bottom: 80px;
  text-align: center;
  color: #16c172;
  font-size: 40px;
  font-weight: bold;
}

.flow-list-wrap {
  position: relative;
}
.flow-list-wrap:before {
  content: "";
  display: block;
  width: 95%;
  height: 4px;
  background-color: #16c172;
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  z-index: 7;
}
.flow-list-wrap .flow-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.flow-list-wrap .flow-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  max-width: 50px;
  text-align: center;
}
.flow-list-wrap .flow-list > li .flow-list-num {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 4px solid #16c172;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 25px;
  font-weight: bold;
  color: #16c172;
}
.flow-list-wrap .flow-list > li span {
  font-size: 18px;
  font-weight: bold;
  writing-mode: vertical-rl;
}
.flow-list-wrap .flow-list > li:nth-child(3) {
  position: relative;
}
.flow-list-wrap .flow-list > li:nth-child(3):after {
  content: "";
  display: block;
  width: 90px;
  height: 55px;
  background-image: url("../img/flow-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  transform: translate(40px, -50%);
}

.flow-text-box {
  display: block;
  max-width: 600px;
  margin: 30px auto 0;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #295d46;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
}
.flow-text-box span {
  font-size: 24px;
  color: #fff776;
}

.faq-hdg {
  text-align: center;
  color: #16c172;
  font-size: 30px;
  font-weight: bold;
}

.faq-list {
  margin-top: 70px;
  color: #000000;
}
.faq-list > li + li {
  margin-top: 20px;
}
.faq-list > li .faq-head {
  display: flex;
  align-items: center;
  padding: 15px 50px 15px 20px;
  background-color: #16c172;
  border-radius: 60px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  color: #FFFFFF;
}
.faq-list > li .faq-head:before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.faq-list > li .faq-head:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #16c172;
  border-bottom: 2px solid #16c172;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-75%) rotate(45deg);
  transition: 0.6s;
}
.faq-list > li .faq-head span {
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}
.faq-list > li .faq-head.open:after {
  transform: translateY(-25%) rotate(225deg);
}
.faq-list > li .faq-body {
  margin-top: 15px;
  background-color: #FFFFFF;
  border-radius: 20px;
  font-size: 16px;
  overflow: hidden;
  transition: 0.5s;
  height: 0;
}
.faq-list > li .faq-body .faq-body-inner {
  display: flex;
  align-items: center;
  padding: 20px 15px;
}
.faq-list > li .faq-body span {
  display: block;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 15px;
  color: #a0916f;
  line-height: 1;
}
.faq-list > li .faq-body p {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

footer .footer-read-text {
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  color: #16c172;
  font-weight: bold;
  line-height: 1.5;
}
footer .footer-read-text span {
  color: #f97d03;
}
footer .footer-text {
  text-align: center;
  font-size: 20px;
  letter-spacing: -3px;
  font-weight: bold;
  color: #295d46;
  line-height: 1.5;
}
footer .cta-area {
  background-color: #ffffff;
  padding: 20px 10px;
  border-radius: 20px;
}

.footer-cr {
  margin-top: 40px;
  padding: 30px 10px;
  text-align: center;
}
.footer-cr small {
  font-size: 12px;
  font-weight: bold;
}

.tel-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 20;
}
.tel-modal.active {
  display: block;
}
.tel-modal .tel-modal-content {
  width: 90%;
  max-width: 440px;
  max-height: 90vh;
  background-color: #FFFFFF;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.tel-modal .tel-modal-content .tel-modal-note {
  margin-top: 15px;
  font-size: 14px;
}
.tel-modal .modal-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000000;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  font-size: 30px;
}
.tel-modal .tel-modal-content-inner {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  padding: 30px 20px;
  overflow: auto;
}
.tel-modal .tel-modal-list > li a {
  display: block;
  padding: 10px 20px;
  border: 2px solid #16c172;
  border-radius: 40px;
  background-color: #16c172;
}
.tel-modal .tel-modal-list > li a p {
  margin-bottom: 5px;
  font-size: 22px;
  color: #FFFFFF;
  font-weight: bold;
}
.tel-modal .tel-modal-list > li a span {
  font-size: 20px;
  color: #FFFFFF;
}
.tel-modal .tel-modal-list > li a span img {
  width: 15px;
  margin-right: 5px;
}
.tel-modal .tel-modal-list > li + li {
  margin-top: 20px;
}

.fix-cta {
  position: sticky;
  left: 0;
  bottom: 0;
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
.fix-cta a {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: bold;
  background-color: #f97d03;
  color: #FFFFFF;
}
.fix-cta a:first-child {
  border-radius: 20px 0 0 0;
}
.fix-cta a:last-child {
  border-radius: 0 20px 0 0;
}
.fix-cta a._c {
  background-color: #16c172;
}
.fix-cta a ._main {
  font-size: 20px;
}
.fix-cta a ._main img {
  width: 18px;
}
.fix-cta a ._sub {
  margin-bottom: 5px;
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
