@charset "utf-8";
@font-face {
  font-family: "Noto Sans JP";
  src:
    url("../fonts/noto-sans-jp-v56-japanese-regular.woff2") format("woff2"),
    url("../fonts/noto-sans-jp-v56-japanese-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src:
    url("../fonts/noto-sans-jp-v56-japanese-700.woff2") format("woff2"),
    url("../fonts/noto-sans-jp-v56-japanese-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../fonts/inter-v20-latin-regular.woff2") format("woff2"),
    url("../fonts/inter-v20-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../fonts/inter-v20-latin-700.woff2") format("woff2"),
    url("../fonts/inter-v20-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.animation {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.animation:not(.text-marker) {
  opacity: 0;
}

.fade.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: fadein;
  animation-name: fadein;
}
.fadeup.animated {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.fadedown.animated {
  -webkit-animation-name: fadedown;
  animation-name: fadedown;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.fadeleft.animated {
  -webkit-animation-name: fadeleft;
  animation-name: fadeleft;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.faderight.animated {
  -webkit-animation-name: faderight;
  animation-name: faderight;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.blur.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: blur-in;
  animation-name: blur-in;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.text-marker {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffefae),
    to(#ffefae)
  ) !important;
  background-image: linear-gradient(90deg, #ffefae, #ffefae) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 50%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 50%;
}
.text-smooth {
  clip-path: inset(0 100% 0 0);
  color: var(--text-color);
  display: inline-block;
  -webkit-transition:
    clip-path 0.5s ease-in-out,
    color 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition:
    clip-path 0.5s ease-in-out,
    color 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition:
    clip-path 0.5s ease-in-out,
    color 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  transition:
    clip-path 0.5s ease-in-out,
    color 0.4s ease-in-out,
    transform 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
}
.text-smooth,
.text-smooth.animated {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.text-smooth.animated {
  clip-path: inset(0);
  opacity: 1;
}
.text-smooth.color-changed {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.bouncein.animated {
  -webkit-animation: bounce 3s ease-in-out infinite;
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}

.zoomin.animated {
  -webkit-animation: zoomIn 0.6s ease-in-out;
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.stroke.animation {
  opacity: 1;
}

.stroke__line {
  height: 70px;
  width: 1px;
  margin: 5% auto;
}

.stroke {
  position: relative;
}
.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: 100%;
}

.stroke .border.top {
  border-top: 1px solid #4a5951;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 1px solid #4a5951;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: 100%;
}

.animation.animated .border {
  opacity: 1;
}

.stroke .border.right {
  border-right: 1px solid #4a5951;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 1px solid #4a5951;
  left: 0;
  top: 0;
}

.stroke .border.line-left {
  width: 50%;
  border-bottom: 1px solid #4a5951;
  left: 50%;
  top: 0;
}
.stroke .border.line-right {
  width: 50%;
  border-bottom: 1px solid #4a5951;
  right: 50%;
  top: 0;
}

.stroke .border.down {
  height: 100%;
  border-left: 1px solid #4a5951;
  left: 0;
  top: 0;
}

.stroke.animated .border {
  opacity: 1;
}
.stroke.animated .border.top,
.stroke.animated .border.bottom {
  animation: stroke-width 1.8s;
}
.stroke.animated .border.right,
.stroke.animated .border.left {
  animation: stroke-height 1.8s;
}

.stroke.animated .border.line-left {
  animation: stroke-line-left 1.8s;
}
.stroke.animated .border.line-right {
  animation: stroke-line-right 1.8s;
}

.stroke.animated .border.down {
  animation: stroke-down 1.8s infinite;
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes stroke-line-left {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}
@keyframes stroke-line-right {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes stroke-down {
  0% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

body,
html {
  background: #f7f4ef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #2b2b2b;
  font-family:
    Noto Sans JP,
    ヒラギノ角ゴ Pro W3,
    Hiragino Kaku Gothic Pro,
    メイリオ,
    Meiryo,
    游ゴシック,
    Yu Gothic,
    ＭＳ Ｐゴシック,
    MS PGothic,
    sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  /* overflow: overlay; */
  padding: 0;
  scroll-behavior: smooth;
}

.svg-symbol {
  display: none;
}
.en {
  font-family: serif;
  letter-spacing: 4px;
  font-size: 0.8rem;
  display: block;
  font-optical-sizing: auto;
  font-weight: normal;
}

.serif {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", serif;
  font-weight: normal;
}
.number {
  font-family:
    Inter,
    Arial,
    Liberation Sans,
    Nimbus Sans,
    Helvetica,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  margin: 0;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.2rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1rem);
}
p {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 2em;
  text-align: justify;
}
a {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
em {
  /* font-size: clamp(1rem, 1vw, 1.5rem); */
  font-style: normal;
  font-weight: 700;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

html::-webkit-scrollbar {
  overflow: hidden;
  width: 3px;
}
html::-webkit-scrollbar:horizontal {
  height: 3px;
}
html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-thumb {
  background: #357c6a;
}
html::-webkit-scrollbar-corner {
  background: #fff;
}
html::-webkit-scrollbar-track {
  background: transparent;
}

.main-content {
  -webkit-box-shadow: 7px 7px 11px #00000065;
  box-shadow: 7px 7px 11px #00000065;
  margin: 2% auto 0 auto;
  max-width: 480px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  background: #fff;
}

@media screen and (max-width: 500px) {
  .main-content {
    margin: 0 auto;
  }
}
.header {
}

.hero_ {
}
.hero__container {
  background: #f5fdf2;
}

.hero__background {
  position: relative;
}

.hero__image--style-01 {
}

.hero__image--style-02 {
  position: absolute;
  top: 1%;
  left: 1%;
  width: 20%;
  max-width: 96px;
}

.hero__image--style-03 {
  position: absolute;
  bottom: 15%;
  left: 0%;
  width: 100%;
}

.hiero__inner {
  padding-bottom: 5%;
}
.hero__subtitle {
  color: #155e4b;
}
.hero__subtitle--style-01 {
  display: block;
}
.hero__subtitle--style-01:after {
  content: "※";
  font-size: 0.5em;
}
.hero__subtitle--style-02 {
}
.hero__subtitle small {
  font-size: 0.5em;
  display: block;
  font-weight: normal;
}

.hero__list {
  font-size: 0.9em;
  width: 88%;
  margin: 0 auto;
}
.hero__list-item {
  background: #ffffff;
  border: 1px solid #357c6a;
  margin: 15px 0;
  padding: 13px;
  box-sizing: border-box;
  color: #155e4b;
  font-weight: bold;
  border-radius: 999px;
}

.intro {
}
.intro__container {
  padding: 5% 0;
}

.intro__title--box {
  padding: 10% 5% 0 5%;
  text-align: left;
}

.intro__en-label {
  font-weight: bold;
  font-size: 0.7rem;
  display: block;
  text-align: center;
  margin-bottom: 3%;
}
.intro__title {
  margin: 0;
  text-align: center;
}

.intro__title--style-01 {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1%;
}
.intro__title--style-02 {
  display: block;
  font-size: 1.4rem;
  margin: 3% 0;
}

.intro__title--style-03 {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1%;
}

.intro__list {
  text-align: left;
  margin: 7% auto;
}
.intro__list-item {
  margin: 9px 0;
  padding: 15px;
  background: #f3f3f3;
}
.intro__list-item--text {
  font-size: 1rem;
  display: inline-block;
  width: 89%;
  vertical-align: middle;
  line-height: 1.2;
}
.intro__list-item--check {
  fill: #357c6a;
  width: 1rem;
  margin-right: 4%;
  display: inline-block;
  vertical-align: middle;
}

.support__container {
  width: 96%;
  margin: 0 auto;
  padding-bottom: 5%;
  padding: 3% 5% 10% 5%;
  box-sizing: border-box;
}
.support__image--style--01 {
  width: 260px;
  margin: 0 auto;
}

.support__title {
  text-align: center;
  margin: 9% 0;
}
.support__title--style-01 {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1%;
}
.support__title--style-02 {
  font-size: 1.5rem;
  display: block;
}
.support__title--style-03 {
  display: block;
  font-size: 1.5rem;
}

.support__image--style-02 {
  border-radius: 10px;
}

.supprot__box {
  margin-top: 10%;
}
.suport__box-title {
  background: #357c6a;
  color: #fff;
  border-radius: 999px;
  font-weight: normal;
  font-size: 0.9em;
  padding: 8px 0 10px 0;
}

.support__box-list-item--step {
  font-weight: normal;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #357c6a;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.support__box-list {
}
.support__box-list-item {
  padding-top: 13%;
}
.support__box-list-item--text {
  font-size: 1rem;
  padding-top: 6%;
  margin-bottom: 5%;
}

.support__description {
  font-size: 0.9rem;
}

.case__container {
  background: #f5fdf2;
  padding: 10% 0;
}

.case__title {
  color: #155e4b;
  margin: 0 0 4% 0;
  text-align: center;
}
.case__title--style-01 {
  display: block;
  font-size: 1rem;
}
.case__title--style-02 {
  display: block;
  font-size: 2rem;
}

.case__ba-list {
  display: flex;
  width: 90%;
  box-sizing: border-box;
  margin: 3% auto;
  font-weight: bold;
  color: #fff;
  padding: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1%;
}

.case__ba-list-item {
  width: 49%;
  margin: 2% 0;
}

.case__ba-list-item.before {
  position: relative;
}
.case__ba-list-item.before:after {
  content: "BEFORE";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
}

.case__ba-list-item.after {
  position: relative;
}
.case__ba-list-item.after:after {
  content: "AFTER";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
}

.case__cta {
  box-sizing: border-box;
  padding: 3% 5% 8% 5%;
  margin: 0 auto;
  margin-top: 9%;
  width: 90%;
  background: #fff;
}

.case__cta-title {
  font-size: 0.95em;
  color: #155e4b;
}

.case__cta-button {
  display: block;
  margin: 0 auto;
  width: 90%;
}

.case__cta-button-image {
  filter: drop-shadow(0 5px 3px rgba(0, 80, 30, 0.35));
}

.treatment__container {
  padding: 10% 0;
}

.treatment__en-label {
}

.treatment__title {
  text-align: center;
}

.treatment__title--style-01 {
  display: block;
  font-size: 1.4rem;
}
.treatment__title--style-02 {
  display: block;
  font-size: 1.4rem;
}

.treatment__title--style-03 {
  margin-top: 5%;
  display: block;
  font-size: 1.2rem;
}
.treatment__title--style-04 {
  display: block;
  font-size: 1.2rem;
}

.treatment__menu {
}
.treatment__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 10% auto;
  list-style: none;
  width: 90%;
}

.treatment__menu-list li {
  width: calc(50% - 10px);
  padding: 8px;
  background: #357c6a;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  border-radius: 10px;
}

.treatment__menu-list li a {
  font-size: 0.9rem;
  display: block;
}

.treatment__slide-list-item {
  padding-bottom: 0px !important;
  position: relative;
}
.treatment__list {
  margin: 0 auto;
}
.treatment__list-item {
  background: #f5fdf2;
  width: 90%;
  margin: 5% auto 5% auto;
  padding: 2% 5% 5% 5%;
  box-sizing: border-box;
  border-radius: 20px;
}

.treatment__ba-list {
  display: flex;
  /* width: 90%; */
  box-sizing: border-box;
  margin: 3% auto;
  font-weight: bold;
  color: #fff;
  padding: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1%;
}

.treatment__ba-list-item {
  width: 49%;
  margin: 2% 0;
}

.treatment__ba-list-item.before {
  position: relative;
}
.treatment__ba-list-item.before:after {
  content: "BEFORE";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
}

.treatment__ba-list-item.after {
  position: relative;
}
.treatment__ba-list-item.after:after {
  content: "AFTER";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
}

.treatment__all-list-item {
  position: relative;
  width: 100%;
  margin: 2% 0;
  padding-bottom: 4%;
}

.treatment__all-list-item:before {
  content: "BEFORE";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
  position: absolute;
  bottom: 0;
  width: 50%;
}

.treatment__all-list-item:after {
  content: "AFTER";
  background: #357c6a;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  padding-right: 4%;
  font-weight: normal;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
}

.treatment__detail {
}

figcaption {
  font-size: 0.5em;
  text-align: left;
}

.treatment__list-item:last-child .treatment__detail {
  margin-bottom: 10%;
}

.treatment__detail-title {
  font-size: 1rem;
}
.treatment__detail-title:before {
  content: "施術内容";
  display: block;
  width: 100px;
  margin: 3% auto 5% auto;
  background: #357c6a;
  border-radius: 999px;
  color: #fff;
  font-weight: normal;
  font-size: 0.9rem;
  padding-top: 2px;
  padding-bottom: 5px;
}

.counseling {
}

.counseling__container {
  background: #f5fdf2;
}

.counseling__background {
  position: relative;
}

.counseling__image--style-01 {
}

.counseling__image--style-02 {
  position: absolute;
  top: 1%;
  left: 1%;
  width: 20%;
  max-width: 96px;
}

.counseling__image--style-03 {
  position: absolute;
  bottom: 15%;
  left: 0%;
  width: 100%;
}

.counseling__container {
  padding: 4% 0;
}

.counseling__title-box {
  width: 92%;
  margin: 0 auto;
  padding: 3%;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 4%;
  padding-top: 4%;
}

.counseling__title {
  color: #155e4b;
  margin: 0 0 4% 0;
  text-align: center;
  line-height: 1.5;
}
.counseling__title--style-01 {
  font-size: 1.2rem;
  display: block;
}
.counseling__title--style-02 {
  display: block;
  margin: 1%;
  font-size: 1.3rem;
}
.counseling__title--style-03 {
  font-size: 2rem;
}

.counseling__description {
  font-size: 0.8rem;
  text-align: center;
}

.counseling__image {
  width: 92%;
  border-radius: 10px;
}

.counseling__note {
  position: relative;
  text-align: center;
  font-size: 0.8rem;
  background: #357c6a;
  color: #fff;
  /* border-radius: 999px; */
  padding-bottom: 3px;
  width: 350px;
  margin: 4% auto;
}

.counseling__cta-button {
  background: #05b620;
  color: #fff !important;
  display: block;
  margin: 5% auto;
  width: 95%;
  padding: 3%;
  padding-bottom: 4%;
  box-sizing: border-box;
  border-radius: 999px;
  line-height: 1.4;
  position: relative;
  font-size: 1.25rem;
  text-align: center;
  filter: drop-shadow(0 5px 3px rgba(0, 80, 30, 0.35));
}
.counseling__cta-button-text {
  font-weight: bold;
}

.voice {
}
.voice__container {
  padding: 10% 0;
}
.voice__en-label {
}
.voice__title {
  margin-top: 0;
}
.voice__title--style-01 {
  display: block;
}
.voice__title--style-02 {
  display: block;
}

.voice__list {
  width: 90%;
  margin: 0 auto;
}
.voice__list-item {
  padding: 5% 5%;
  /* border: 1px solid; */
  margin: 9% 0;
}
.voice__list-item-title {
  color: #155e4b;
  font-size: 1rem;
  margin: 7% auto;
}
.voice__list-item-text {
}

.flow {
  background: #fff;
}
.flow__container {
  padding: 10% 0 0 0;
}

.flow__title {
  line-height: 1.2em;
}
.flow__title--style-01 {
  font-size: 1.25rem;
  display: block;
  letter-spacing: 2px;
  margin-bottom: 2%;
}
.flow__title--style-02 {
  display: block;
  margin-bottom: 5%;
}

.flow__description {
  padding: 0 4%;
}

.flow__box {
  background: #f5fdf2;
  padding: 10% 0;
  margin-top: 18%;
}
.flow__box-title {
  background: #357c6a;
  color: #fff;
  border-radius: 999px;
  font-weight: normal;
  font-size: 0.9em;
  padding: 8px 0 10px 0;
  width: 300px;
  margin: 0 auto;
  margin-top: -14%;
}

.flow__list {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 12% auto 0 auto;
  width: 90%;
}

.flow__list-item {
  align-items: flex-start;
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
  padding-top: 0.2rem;
}

.flow__step-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #357c6a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.flow__list-item::before {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #4a5951;
  top: 0;
  bottom: 0rem;
  left: 1rem;
}

.flow__list-item--box {
  text-align: left;
  padding-left: 2%;
  line-height: 1.3;
}

.flow__list-item--title {
  font-size: 0.95em;
  font-weight: bold;
  text-align: left;
}

.flow__list-item--description {
  font-size: 0.8rem;
  padding: 0px 5%;
  text-align: justify;
}

.flow__image {
  border-radius: 10px;
  margin: 10% 0;
}

.flow__cta {
  box-sizing: border-box;
  padding: 3% 5% 8% 5%;
  margin: 0 auto;
  margin-top: -1%;
  width: 90%;
  background: #fff;
}

.flow__cta-title {
  font-size: 0.95em;
  color: #155e4b;
}

.flow__cta-button {
  display: block;
  margin: 0 auto;
  width: 90%;
}

.flow__cta-button-image {
  filter: drop-shadow(0 5px 3px rgba(0, 80, 30, 0.35));
}

.faq {
}
.faq__container {
  padding: 10% 0 0 0;
}

.faq__title {
  margin: 0;
  text-align: center;
}

.faq__title--style-001 {
  display: block;
  font-size: 1rem;
  margin-bottom: 1%;
}

.faq__title--style-002 {
  display: block;
  font-size: 1.5rem;
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  width: 92%;
  margin: 0 auto;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease;
}

.faq__item.is-active .faq__content {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 4%;
  width: 92%;
  margin: 0 auto;
}

.faq__list-item--title {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  padding: 3% 4% 0% 4%;
  font-size: 1rem;
  border-radius: 10px;
  margin: 3% 0;
  text-align: left;
}

.faq__list-item--title::after {
  content: "＋";
  position: absolute;
  right: 4%;
  top: 65%;
  transform: translateY(-50%);
  font-size: 16px;
}

.faq__item.is-active .faq__list-item--title::after {
  content: "－";
}

.faq__list {
  margin: 10% auto 14% auto;
  width: 92%;
}
.faq__item {
  background: #f3f3f3;
}

.faq__list-item--title-question,
.faq__list-item--description-answer {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 3%;
  background: #357c6a;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.faq__list-item--title-text {
  display: inline-block;
  width: 76%;
  vertical-align: middle;
  font-size: 0.9rem;
}

.faq__list-item--description {
  margin: 0;
}

.faq__list-item--description-text {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  font-size: 0.9rem;
  line-height: 1.7em;
}

.faq__list-item--description-answer {
  background: #494949;
  border-color: #494949;
  vertical-align: top;
}

.doctor {
  margin: 0 auto;
}

.doctor__container {
  padding: 10% 0 5% 0;
  background: #357c6a;
  color: #fff;
}

.doctor__title {
  margin-top: 2%;
}

.doctor__list {
  margin: 0 auto;
}
.doctor__list-item {
  margin: 10% auto;
}

.doctor__list-item-image {
  width: 90%;
  border-radius: 20px;
}

.doctor__list-item-title--style-001 {
  display: block;
  font-size: 1rem;
}

.doctor__child-list--career {
  text-align: left;
  font-size: 0.85rem;
  list-style: disc;
  width: 90%;
  margin: 0 auto;
  padding-left: 5%;
  box-sizing: border-box;
}

.doctor__child-list-item--career {
}

.footer {
}
.footer__container {
  padding: 10% 0 20% 0;
}
.footer__logo {
  margin-bottom: 10%;
}
.footer__image--style-01 {
  width: 80%;
  max-width: 260px;
}

.footer__address {
  font-size: 0.8rem;
  font-style: normal;
}

.footer__cta-button-image {
  display: block;
  margin: 0 auto;
  width: 90%;
}
.footer__cta-contact-list {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.footer__cta-contact-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  padding: 5px 0;
  background: #06c755;
}
