@charset "utf-8";

/*-------------------------------------
変数
-------------------------------------*/

:root {
  --ZenKakuGothicNew: "zen-kaku-gothic-new", sans-serif;
  --ShipporiMincho: "shippori-mincho", sans-serif;
  --Quicksand: "quicksand", sans-serif;
}
:root {
  --baseColor: #333;
  --blueColor01: #0F69B4;
  --blueColor02: #57A1DC;
  --bgBlueColor: #EBF5FA;
}



/*-------------------------------------
共通
-------------------------------------*/

/********************/
/* タグ */
/********************/

.body {
  font-family: var(--ZenKakuGothicNew);
  line-height: 1.4;
  color: var(--baseColor);
}
.body.no-scroll {
  overflow: hidden;
}

.main {
  margin-top: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .main {
    margin-top: 65px;
    margin-bottom: 100px;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}



/********************/
/* PC版とsp版で表示非表示の切り替え */
/********************/

.sp-only {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}



/********************/
/* ボタン */
/********************/

a {
  display: inline-block;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  display: inline-block;
  transition: 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}



/********************/
/* インナー */
/********************/

.common-inner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}



/********************/
/* common-heading */
/********************/

.common-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.common-heading--underLine::after {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--blueColor02);
}

.common-heading__en {
  text-align: center;
  height: 32px;
  padding-top: 7px;
}
.faq .common-heading__en {
  height: 38px;
}

.common-heading__en img {
  height: 100%;
  width: auto;
}

.common-heading__ja {
  margin-top: 4px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.75em;
}

@media screen and (min-width: 768px) {
  .common-heading__en {
    padding-top: 0;
    padding-bottom: 5px;
    height: 40px;
  }
  .faq .common-heading__en {
    height: 45px;
  }
  .common-heading__ja {
    margin-top: 6px;
    font-size: 21px;
  }
}



/********************/
/* common-section-heading */
/********************/

.common-section-heading {
  padding-bottom: 26px;
  position: relative;
}
.common-section-heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--blueColor02);
}

.common-section-title {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 26px;
  color: var(--blueColor01);
}

.common-section-subTitle {
  margin-top: 3px;
  text-align: center;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .common-section-title {
    font-size: 36px;
  }
  .common-section-subTitle {
    margin-top: 8px;
    font-size: 16px;
  }
}



/********************/
/* アニメーション */
/********************/

.js-fadeIn {
  opacity: 0;
  animation-name: anime-fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes anime-fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-slideIn {
  opacity: 0;
  transform: translateX(50px);
  animation-name: anime-slideIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes anime-slideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  20% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.js-slideUp {
  opacity: 0;
  transform: translateY(50px);
}
.js-slideUp.is-active {
  animation-name: anime-slideUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes anime-slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.shine-button {
  overflow: hidden;
  position: relative;
}
.shine-button::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
  width: 50px;
  height: 50px;
  top: -60px;
  left: -60px;
  animation-name:shine-run;
  animation-delay:0s;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  pointer-events: none;
}
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    opacity: 0;
  }
  40% {
    transform: scale(1) rotate(50deg);
    opacity: 1;
  }
  85% {
    transform: scale(250) rotate(50deg);
    opacity: 0;
  }
  100% {
    transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}





/*-------------------------------------
header
-------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 999;
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0);
  z-index: -1;
  transition: all 0.6s;
}
.header.is-active::before {
  background-color: #fff;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding-left: min(calc(100vw / 1440 * 43), 43px);
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}

.header__logo {
  width: min(calc(100vw / 1440 * 300), 300px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  width: 100%;
}

.header__menu {
  height: 100%;
  display: flex;
}

.header__nav {
  height: 100%;
  display: flex;
  column-gap: 26px;
}

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 26px;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--blueColor01);
}

.header__nav-buttonZone {
  display: flex;
}

.header__nav-button {
  width: min(calc(100vw / 1440 * 246), 246px);
  height: 100%;
  padding-inline: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__nav-button.tel {
  background-color: var(--blueColor01);
}
.header__nav-button.first {
  background-color: #35AA94;
}

.tel .header__nav-buttonIcon {
  width: 25px;
}
.first .header__nav-buttonIcon {
  width: 18px;
}

.header__nav-buttonText {
  margin-top: 6px;
  text-align: center;
  font-weight: 500;
  font-size: min(1.5vw, 15px);
  color: #fff;
}
.header__nav-buttonText span {
  display: inline-block;
}

.header__nav-buttonNumber {
  text-align: center;
  font-family: var(--Quicksand);
  font-weight: 500;
  font-size: min(calc(100vw / 1440 * 26), 26px);
  letter-spacing: 0.08em;
  color: #fff;
}

.header__nav-buttonReception {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 22), 22px);
  letter-spacing: 0.1em;
  line-height: 1.16;
  color: #FFE633;
}

.header__nav-caution {
  display: none;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 767.98px) {

  .header {
    height: 65px;
  }

  .header__inner {
    padding-left: 20px;
  }

  .header__logo {
    padding-bottom: 0;
    width: min(calc(100vw / 375 * 230), 230px);
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 132px;
    background-color: #fff;
    transform: translateY(-110%);
    visibility: hidden;
    transition: 0.5s;
    z-index: 999;
  }
  .header__menu.is-active {
    transform: unset;
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    padding-bottom: 80px;
    flex-direction: column;
    overflow: auto;
  }

  .header__nav-list {
    width: 100%;
    height: auto;
    padding: 0 min(calc(100vw / 375 * 32), 32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header__nav-item {
    width: 100%;
  }
  .header__nav-item:not(:first-child) {
    margin-top: 28px;
  }

  .header__nav-link {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--blueColor02);
    font-size: 16px;
    position: relative;
  }
  .header__nav-link::after {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--blueColor02);
    border-right: 1px solid var(--blueColor02);
  }

  .header__nav-caution {
    display: block;
    margin-top: 6px;
    width: min(calc(100vw / 375 * 325), 325px);
    font-size: min(calc(100vw / 375 * 12), 12px);
    color: var(--blueColor02);
    line-height: 1.6;
  }

  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 67px;
    height: 65px;
    border-radius : 0px 0px 0px 25px;
    background: linear-gradient(0deg, rgba(87, 161, 220, 1) 0.06%, rgba(15, 105, 180, 1) 100%);
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
  }

  @media (hover: hover) {
    .hamburger:hover {
      opacity: 0.7;
    }
  }

  .hamburger__line-zone {
    display: inline-block;
    width: 25px;
    height: 17px;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 1px;
  }
  .hamburger__line:nth-child(2) {
    top: 9px;
  }
  .hamburger__line:nth-child(3) {
    top: 17px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 8px;
    left: -2px;
    transform: rotate(-35deg);
    width: 140%;
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger__line:nth-child(3) {
    top: 8px;
    left: -2px;
    transform: rotate(35deg);
    width: 140%;
  }

  .header__nav-buttonZone {
    margin-top: 44px;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
  }

  .header__nav-button {
    border-radius: 8px;
    width: min(calc(100vw / 375 * 325), 325px);
    height: 54px;
    padding-inline: min(calc(100vw / 375 * 12), 12px);
    flex-direction: row;
    justify-content: flex-start;
    column-gap: min(calc(100vw / 375 * 11), 11px);
    position: relative;
  }
  .header__nav-button.tel {
    box-shadow: 0px 4px 0px #154260;
  }
  .header__nav-button.first {
    box-shadow: 0px 4px 0px #2C8977;
  }
  .header__nav-button::after {
    position: absolute;
    top: 50%;
    right: min(calc(100vw / 375 * 16), 16px);
    transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .header__nav-buttonIcon {
    order: 2;
  }
  .tel .header__nav-buttonIcon {
    width: min(calc(100vw / 375 * 20), 20px);
  }
  .first .header__nav-buttonIcon {
    display: none;
  }

  .header__nav-buttonText {
    order: 1;
    margin-top: 0;
    padding: min(calc(100vw / 375 * 6), 6px);
    border-radius: 6px;
    background-color: #fff;
    font-size: min(calc(100vw / 375 * 13), 13px);
    letter-spacing: 0.05em;
    color: var(--blueColor01);
  }

  .header__nav-buttonNumber {
    order: 3;
    font-size: min(calc(100vw / 375 * 21), 21px);
    letter-spacing: 0.02em;
  }

  .header__nav-buttonReception {
    order: 3;
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

  @media (hover: hover) {
    .header__nav-button:hover {
      opacity: 1;
      box-shadow: none;
      transform: translateY(4px);
    }
  }

}

@media screen and (min-width: 768px) {
  .header__nav-buttonZone .shine-button::before {
    display: none;
  }
}



/*-------------------------------------
fv
-------------------------------------*/

.fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fv::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 10%;
  height: 65%;
  background-color: var(--bgBlueColor);
  z-index: -1;
}

.fv__image {
  width: 92.7%;
  margin-left: auto;
}

.fv__title {
  position: absolute;
  top: 8.5%;
  right: 5%;
  width: fit-content;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: min(calc(100vw / 1440 * 43), 43px);
  color: var(--blueColor01);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 22px;
}

.fv__title span {
  position: relative;
  z-index: 1;
}
.fv__title span:nth-child(1) {
  margin-right: 10px;
  letter-spacing: 0.08em;
}
.fv__title span::before {
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%) skewX(-13deg);
  content: "";
  height: 110%;
  background-color: #fff;
  z-index: -1;
}
.fv__title span:nth-child(1):before {
  width: 105%;
}
.fv__title span:nth-child(2):before {
  width: 110%;
}

.fv__body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(calc(100vw / 1440 * 622), 622px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fv__body-en {
  width: 1.05vw;
  margin-left: 3vw;
  margin-bottom: 22px;
}

.fv__body-ja {
  border-radius: 0 96px 0 0;
  background-color: #fff;
  text-align: center;
  padding-top: min(calc(100vw / 1440 * 40), 40px);
  padding-bottom: min(calc(100vw / 1440 * 44), 44px);
  padding-left: 6%;
}

.fv__body-jaText01 {
  font-weight: 500;
  font-size: min(calc(100vw / 1440 * 27), 27px);
  letter-spacing: 0.05em;
  color: var(--blueColor01);
}
.fv__body-jaText01 span {
  font-weight: 400;
  color: var(--baseColor);
}

.fv__body-jaText02 {
  font-size: min(calc(100vw / 1440 * 72), 72px);
  letter-spacing: 0.1em;
  color: var(--blueColor01);
}

@media screen and (max-width: 767.98px) {

  .fv {
    padding-bottom: 16px;
  }
  .fv::before {
    width: 20%;
    height: 74%;
  }

  .fv__image {
    width: 91%;
  }

  .fv__title {
    top: auto;
    bottom: 20.5%;
    font-size: min(calc(100vw / 375 * 24), 24px);
    row-gap: 11px;
  }

  .fv__title span:nth-child(1) {
    margin-right: 0;
  }
  .fv__title span:nth-child(1):before {
    left: 49%;
  }

  .fv__body {
    width: 84%;
  }

  .fv__body-en {
    width: 2.05vw;
    margin-left: 4.4vw;
    margin-bottom: 58px;
  }

  .fv__body-ja {
    border-radius: 0 48px 0 0;
    padding-top: 16px;
    padding-bottom: 0;
    padding-left: 3%;
  }

  .fv__body-jaText01 {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .fv__body-jaText02 {
    font-size: min(calc(100vw / 375 * 36), 36px);
    line-height: 1.2;
  }

}



/*-------------------------------------
scroll
-------------------------------------*/

.scroll {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  text-align: center;
  font-family: var(--Quicksand);
  font-size: 12px;
  letter-spacing: 0.075em;
  color: var(--blueColor02);
  text-transform: uppercase;
}

.scroll-arrow {
  margin-top: -5px;
  width: 30px;
  height: 20px;
  position: relative;
  animation: scrollDownFade 1.8s linear infinite;
}
@keyframes scrollDownFade{
  0%   { opacity: 0; transform: translateY(0) }
  20%  { opacity: 1; transform: translateY(20%) }
  50%  { opacity: 1; transform: translateY(50%) }
  70%  { opacity: 0; transform: translateY(70%) }
  100% { opacity: 0; transform: translateY(100%) }
}
.scroll-arrow::before {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  content: "";
  width: 16px;
  height: 16px;
  border-right: 1px solid #81C7F3;
  border-bottom: 1px solid #81C7F3;
}
.scroll-arrow::after {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  content: "";
  width: 16px;
  height: 16px;
  border-right: 1px solid #81C7F3;
  border-bottom: 1px solid #81C7F3;
}

@media screen and (min-width: 768px) {
  .scroll {
    margin-top: 60px;
  }
}



/*-------------------------------------
index
-------------------------------------*/

.index {
  margin-top: 42px;
}

.index__content {
  margin-top: -34px;
  padding: 55px 0 25px;
  background-color: var(--bgBlueColor);
}

.index__list {
  margin-inline: auto;
  max-width: 310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 9px;
}

.index__item {
  width: 150px;
}

.index__link {
  width: 100%;
  padding: 10px 13px;
  border-radius: 5px;
  border: 1px solid var(--blueColor02);
  background-color: #fff;
  font-size: 14px;
  color: var(--blueColor01);
  position: relative;
}
.index__link::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--blueColor01);
  border-right: 1px solid var(--blueColor01);
}

@media screen and (min-width: 768px) {

  .index {
    margin-top: 80px;
  }

  .index__content {
    margin-top: -58px;
    padding: 80px 0 50px;
  }

  .index__list {
    max-width: 720px;
    gap: 16px 21px;
    justify-content: flex-start;
  }

  .index__item {
    width: 164px;
  }

  .index__link {
    font-size: 16px;
  }

}



/*-------------------------------------
recommend
-------------------------------------*/

.recommend {
  margin-top: 22px;
  padding-top: 22px;
  overflow: hidden;
}

.recommend-inner {
  padding-inline: 12px;
}

.recommend-comment {
  margin-inline: auto;
  max-width: 280px;
  padding-block: 5px;
  border-radius: 5px;
  border: 1px solid var(--blueColor02);
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.recommend-comment::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--blueColor02);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: -1;
}
.recommend-comment::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: 1;
}

.recommend-comment__check {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-6px, -14px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(53, 170, 148, 1) 0.06%, rgba(15, 105, 180, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.recommend-comment__check span {
  display: inline-block;
  font-weight: 500;
  font-size: 10px;
  color: #fff;
  transform: rotate(-30deg);
}

.recommend-comment__text {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1.7;
  color: var(--blueColor01);
}

.recommend-comment__bigText {
  font-weight: 600;
  font-size: 17px;
}
.recommend-comment__bigText span {
  position: relative;
}
.recommend-comment__bigText span::before {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #EAD721;
}

.recommend-movie {
  margin-top: 22px;
  margin-inline: auto;
  width: 88%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.recommend-movie video {
  width: 100%;
  height: auto;
}

.recommend-title {
  margin-top: 40px;
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-size: min(calc(100vw / 375 * 24), 24px);
  color: var(--blueColor01);
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.recommend-title::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 250px;
  height: 250px;
  background-image: url(../image/recommend_circle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.recommend-list {
  margin-top: 35px;
  margin-inline: auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.recommend-item {
  position: relative;
}
.recommend-item:not(:first-child) {
  margin-top: 16px;
}

.recommend-item__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: calc(56.69 / 36);
  color: var(--blueColor01);
}

.recommend-cause {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recommend-cause__lead {
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.075em;
  color: var(--blueColor01);
  position: relative;
}
.recommend-cause__lead::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 135%;
  height: auto;
  aspect-ratio: 503 / 161;
  background-image: url(../image/recommend_mark.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.recommend-cause__text {
  margin-top: 32px;
  text-align: center;
  font-size: min(calc(100vw / 375 * 20), 20px);
  letter-spacing: 0.075em;
  line-height: 1.65;
  color: var(--blueColor01);
}
.recommend-cause__text strong {
  font-weight: 700;
}
.recommend-cause__text strong span {
  font-size: 31px;
  line-height: 1;
}

.recommend-cause__image {
  margin-top: 14px;
  width: 92%;
}

@media screen and (min-width: 768px) {

  .recommend {
    margin-top: 60px;
  }

  .recommend-inner {
    margin-inline: auto;
    max-width: 1040px;
    padding-inline: 20px;
  }

  .recommend-comment {
    max-width: 550px;
    padding-block: 10px;
    border-radius: 10px;
  }

  .recommend-comment__check {
    width: 50px;
    height: 50px;
  }

  .recommend-comment__check span {
    font-size: 14px;
  }

  .recommend-comment__text {
    font-size: 19px;
  }

  .recommend-comment__bigText {
    font-size: 24px;
  }

  .recommend-movie {
    margin-top: 42px;
    max-width: 650px;
  }

  .recommend-title {
    margin-top: 64px;
    font-size: 26px;
  }

  .recommend-list {
    margin-top: 46px;
    max-width: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .recommend-item {
    width: calc((100% - 20px) / 2);
  }
  .recommend-item:not(:first-child) {
    margin-top: 0;
  }

  .recommend-item__text {
    font-size: 21px;
  }

  .recommend-cause {
    margin-top: 64px;
  }

  .recommend-cause__lead {
    font-size: 21px;
  }

  .recommend-cause__text {
    margin-top: 48px;
    font-size: 22px;
  }
  .recommend-cause__text strong {
    font-size: 24px;
  }
  .recommend-cause__text strong:nth-of-type(1) {
    margin-left: 0.5em;
  }
  .recommend-cause__text strong:nth-last-of-type(1) {
    margin-right: 0.2em;
  }

  .recommend-cause__image {
    margin-top: 25px;
    max-width: 700px;
  }

}



/*-------------------------------------
disease
-------------------------------------*/

.disease {
  margin-top: -3px;
  padding-top: 25px;
  position: relative;
  z-index: 1;
}
.disease::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 754 / 1372;
  background: linear-gradient(0deg, rgba(235, 245, 250, 0) 0.06%, rgba(15, 105, 180, 1) 100%);
  z-index: -1;
}

.disease-inner {
  padding-inline: 20px;
}

.disease-title {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-size: 36px;
  color: #fff;
}

.disease-lead {
  margin-top: 10px;
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}

.disease-text {
  margin-top: 10px;
  padding-inline: 16px;
  font-size: 14px;
  line-height: calc(39.69 / 24);
  color: #fff;
}

.disease-image {
  margin-top: 32px;
  margin-inline: auto;
  width: 86%;
  max-width: 500px;
}

.disease-group {
  margin-top: 32px;
}

.disease-group__title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  color: var(--blueColor01);
}

.disease-list {
  margin-top: 20px;
  margin-inline: auto;
  max-width: 320px;
  display: flex;
  justify-content: space-between;
}

.disease-item {
  width: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disease-item__text {
  margin-top: 10px;
  margin-inline: max(calc(-100vw / 375 * 23), -23px);
  width: calc(100% + min(calc(100vw / 375 * 46), 46px));
  text-align: center;
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 14), 14px);
  color: var(--blueColor01);
}

.disease-item__text span {
  font-weight: 400;
  font-size: min(calc(100vw / 375 * 12), 12px);
  letter-spacing: -0.06em;
}

.disease-influence {
  margin-top: 42px;
  padding-inline: 12px;
}

.disease-influence__title {
  padding: 9px;
  background-color: var(--blueColor01);
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-size: min(calc(100vw / 375 * 20), 20px);
  line-height: calc(56.69 / 40);
  color: var(--bgBlueColor);
}

.disease-influence__title span {
  display: inline-block;
}

.disease-influence__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: calc(39.69 / 22);
}

.disease-influence__desc {
  margin-top: 48px;
  margin-inline: auto;
  padding: 9px;
  border-radius: 5px;
  background-color: var(--bgBlueColor);
  text-align: center;
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 16), 16px);
  letter-spacing: 0.05em;
  color: var(--blueColor01);
  position: relative;
}
.disease-influence__desc::before {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 16px;
  height: 14px;
  background-color: var(--bgBlueColor);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.disease-influence__image {
  margin-top: 24px;
  margin-inline: auto;
  width: 90%;
  max-width: 500px;
  padding-right: 7%;
}

.disease-check {
  margin-top: 52px;
  border-top: 5px solid var(--blueColor02);
  padding: 25px 20px 80px;
  clip-path: polygon(100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px), 0 0);
  background-color: var(--bgBlueColor);
}

.disease-check__lead {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-size: 14px;
  letter-spacing: 0.06em;
  position: relative;
}
.disease-check__lead::after {
  position: absolute;
  top: -3px;
  left: calc(50% + 97px);
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../image/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.disease-check__title {
  text-align: center;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.075em;
  color: var(--blueColor01);
}

.disease-check__list {
  margin-top: 25px;
  margin-inline: auto;
  max-width: 310px;
}

.disease-check__item {
  padding-left: min(calc(100vw / 375 * 24), 24px);
  font-size: 14px;
  color: var(--blueColor01);
  letter-spacing: 0.05em;
  position: relative;
}
.disease-check__item:not(:first-child) {
  margin-top: 21px;
}
.disease-check__item::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--blueColor01);
  background-color: #fff;
}
.disease-check__item::after {
  position: absolute;
  top: -1px;
  left: 4px;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../image/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.disease-check__comment {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 315px;
  border-radius: 24px;
  background-color: #fff;
  padding: 9px 60px 19px 24px;
  position: relative;
}
.disease-check__comment::before {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  right: -2%;
  content: "";
  width: 30%;
  height: auto;
  aspect-ratio: 191 / 267;
  background-image: url(../image/selfcheck_woman.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.disease-check__comment-text {
  font-size: min(calc(100vw / 375 * 17), 17px);
}
.disease-check__comment-text span {
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 21), 21px);
  color: var(--blueColor01);
}

.disease-bottom {
  margin-top: 12px;
}

.disease-bottom__text {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.75;
}
.disease-bottom__text .color {
  color: var(--blueColor01);
}
.disease-bottom__text .small {
  font-size: 21px;
}

.disease-arrow {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {

  .disease {
    padding-top: 50px;
  }
  .disease::before {
    aspect-ratio: unset;
    height: 950px;
  }

  .disease-title {
    font-size: 40px;
  }

  .disease-lead {
    font-size: 21px;
  }

  .disease-text {
    margin-top: 24px;
    margin-inline: auto;
    max-width: 710px;
    padding-inline: 0;
    font-size: 16px;
  }

  .disease-image {
    margin-top: 48px;
  }

  .disease-group{
    margin-top: 60px;
  }

  .disease-group__title {
    font-size: 21px;
  }

  .disease-list {
    margin-top: 32px;
    max-width: 525px;
  }

  .disease-item__text {
    font-size: 16px;
  }

  .disease-item__text span {
    font-size: 14px;
    letter-spacing: 0;
  }

  .disease-influence {
    margin-top: 80px;
  }

  .disease-influence__title {
    margin-inline: auto;
    width: fit-content;
    font-size: 24px;
  }

  .disease-influence__text {
    margin-top: 24px;
    margin-inline: auto;
    max-width: 1100px;
    font-size: 16px;
  }

  .disease-influence__desc {
    width: 400px;
    font-size: 21px;
  }
  .disease-influence__desc::before {
    width: 22px;
    height: 20px;
  }

  .disease-influence__image {
    margin-top: 36px;
    padding-right: 3%;
  }

  .disease-check {
    margin-top: 68px;
    padding: 42px 20px 140px;
    clip-path: polygon(100% 0, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px), 0 0);
  }

  .disease-check__lead {
    font-size: 21px;
  }
  .disease-check__lead::after {
    top: 2px;
    left: calc(50% + 140px);
  }

  .disease-check__title {
    margin-top: 12px;
    font-size: 30px;
  }

  .disease-check__list {
    margin-top: 36px;
    max-width: 400px;
  }

  .disease-check__item {
    padding-left: 36px;
    font-size: 18px;
  }
  .disease-check__item::before {
    width: 22px;
    height: 22px;
  }
  .disease-check__item::after {
    top: -1px;
    left: 5px;
    width: 20px;
    height: 20px;
  }

  .disease-check__comment {
    margin-top: 50px;
    max-width: 370px;
  }

  .disease-check__comment-text {
    font-size: 22px;
  }

  .disease-check__comment-text span {
    font-size: 24px;
  }

  .disease-bottom {
    margin-top: 20px;
  }

  .disease-bottom__text {
    font-size: 32px;
  }
  .disease-bottom__text .small {
    font-size: 26px;
  }

}



/*-------------------------------------
treatment
-------------------------------------*/

.treatment {
  margin-top: 30px;
}

.treatment-heading {
  position: relative;
  z-index: 1;
}
.treatment-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 751 / 1353;
  background: linear-gradient(180deg, rgba(235, 245, 250, 1) 1.95%, rgba(235, 245, 250, 0.14) 78.88%, rgba(235, 245, 250, 0) 91.54%);
  z-index: -1;
}

.treatment-title {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(40%);
  width: 310px;
  padding: 12px 20px 12px 28px;
  background: linear-gradient(135deg, rgba(87, 161, 220, 1) 0.06%, rgba(15, 105, 180, 1) 100%);
  font-size: 33px;
  letter-spacing: 0.07em;
  color: #fff;
}

.treatment-title span {
  font-size: 20px;
}

.treatment-inner {
  position: relative;
  z-index: 2;
  padding-inline: 5px;
}

.treatment-text {
  margin-top: 50px;
  padding-inline: 25px;
  font-family: var(--ShipporiMincho);
  font-size: 14px;
  line-height: calc(56.69 / 28);
}

.treatment-difference {
  margin-top: 62px;
}

.treatment-difference__title {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 21px;
  color: var(--blueColor01);
  padding-bottom: 28px;
  position: relative;
}
.treatment-difference__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--blueColor02);
}

.treatment-difference__tableZone {
  margin-top: 36px;
  margin-inline: auto;
  max-width: 450px;
  padding-right: 5px;
}

.treatment-difference__table {
  table-layout: fixed;
  width: 100%;
}

.treatment-difference__table thead th:not(:first-child),
.treatment-difference__table tbody td:not(:first-child) {
  width: calc((100% - 25px) / 2);
}
.treatment-difference__table tbody td:not(:first-child) {
  padding-block: 12px;
}

.treatment-difference__table thead th:nth-child(3),
.treatment-difference__table tbody td:nth-child(3) {
  border-left: 1px solid #81C7F3;
  border-right: 1px solid #81C7F3;
}
.treatment-difference__table tbody tr {
  border-bottom: 1px solid #81C7F3;;
}

.treatment-difference__table thead th {
  height: 47px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
.treatment-difference__table thead th:nth-child(1) {
  width: 25px;
}
.treatment-difference__table thead th:nth-child(2) {
  background-color: var(--blueColor02);
}
.treatment-difference__table thead th:nth-child(3) {
  background-color: var(--blueColor01);
}

.treatment-difference__table tbody th {
  width: 25px;
  background-color: var(--blueColor02);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.3em;
}
.treatment-difference__table tbody th .vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 5px;
}

.treatment-difference__table tbody td:nth-of-type(2) {
  background-color: #F7F7F7;
}

.treatment-difference__table tbody td {
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}
.treatment-difference__table tbody td strong {
  font-weight: 700;
  color: var(--blueColor01);
}

.treatment-difference__table tbody td img {
  display: block;
  margin-inline: auto;
  width: 22px;
  margin-bottom: 4px;
}

@media screen and (min-width: 768px) {

  .treatment {
    margin-top: 80px;
  }
  .treatment-heading::before {
    aspect-ratio: 3 / 2;
  }

  .treatment-image img {
    aspect-ratio: 3 / 1;
  }

  .treatment-title {
    left: 50%;
    transform: translate(-50%, 40%);
    width: 380px;
    font-size: 40px;
  }

  .treatment-title span {
    font-size: 24px;
  }

  .treatment-text {
    margin-top: 60px;
    margin-inline: auto;
    max-width: 940px;
    font-size: 16px;
  }

  .treatment-difference {
    margin-top: 68px;
  }

  .treatment-difference__title {
    font-size: 28px;
  }

  .treatment-difference__tableZone {
    max-width: 650px;
  }

  .treatment-difference__table tbody td {
    font-size: 14px;
  }

  .treatment-difference__table thead th {
    font-size: 16px;
  }
  .treatment-difference__table thead th:nth-child(1) {
    width: 36px;
  }
  .treatment-difference__table tbody th {
    width: 36px;
    font-size: 14px;
  }

  .treatment-difference__table tbody td img {
    width: 28px;
  }

}



/*-------------------------------------
method
-------------------------------------*/

.method {
  margin-top: 50px;
}

.method-inner {
  margin-inline: auto;
  max-width: 564px;
  padding-inline: 32px;
}

.method-list {
  margin-top: 30px;
}

.method-item:not(:first-child) {
  margin-top: 10px;
}

.method-item__title {
  margin-top: 14px;
  font-weight: 500;
  font-size: 18px;
  color: var(--blueColor01);
}

.method-item__text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {

  .method {
    margin-top: 120px;
  }

  .method-inner {
    max-width: 1040px;
  }

  .method-list {
    margin-top: 42px;
    display: flex;
    gap: 24px;
  }

  .method-item {
    width: calc((100% - 24px) / 2);
  }
  .method-item:not(:first-child) {
    margin-top: 0;
  }

}



/*-------------------------------------
case
-------------------------------------*/

.case {
  margin-top: 50px;
}

.case-inner {
  padding-inline: 8px;
}

.case-container {
  margin-top: 28px;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(90deg, #35AA94, var(--blueColor01));
  box-shadow: 0.5px 0.5px 2px rgba(90, 173, 225, 0.5);
}

.case-container__bg {
  border-radius: 15px;
  background-color: #fff;
  padding: 20px min(calc(100vw / 375 * 20), 20px);
}

.case-tag {
  margin-left: 2px;
  width: fit-content;
  padding: 3px;
  width: 84px;
  border-radius: 50px;
  background-color: var(--blueColor01);
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.case-flex {
  margin-top: 16px;
  display: flex;
}

.case-flex__item {
  width: 50%;
  padding: 5px 8px 8px;
}
.case-flex__item:nth-child(2) {
  background-color: var(--bgBlueColor);
}

.case-flex__title {
  padding-top: 3px;
  padding-bottom: 7px;
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 16px;
}
.case-flex__item:nth-child(2) .case-flex__title {
  color: var(--blueColor01);
}

.case-flex__image:last-child {
  margin-top: 11px;
}

.case-tableZone {
  margin-top: 13px;
}

.case-table {
  width: 100%;
  border: 1px solid #81C7F3;
}

.case-table tr:not(:first-child) {
  border-top: 1px solid #81C7F3;
}

.case-table th {
  width: 104px;
  background-color: var(--blueColor02);
  padding-block: 7px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.case-table td {
  border-left: 1px solid #81C7F3;
  width: calc(100% - 104px);
  padding-block: 7px;
  text-align: center;
  font-size: 14px;
  line-height: calc(37 / 24);
}
.case-table tr:last-child td {
  padding-block: 10px;
}

.case-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: calc(35 / 22);
}

@media screen and (min-width: 768px) {

  .case {
    margin-top: 120px;
  }

  .case-inner {
    margin-inline: auto;
    max-width: 840px;
    padding-inline: 20px;
  }

  .case-container__bg {
    padding-top: 25px;
    padding-bottom: 34px;
  }

  .case-tag {
    padding: 6px;
    width: 140px;
    font-size: 14px;
  }

  .case-flex__item {
    padding: 12px;
  }

  .case-flex__title {
    font-size: 18px;
    padding-bottom: 12px;
  }

  .case-flex__image:last-child {
    margin-top: 16px;
  }

  .case-tableZone {
    margin-top: 30px;
    margin-inline: auto;
    max-width: 500px;
  }

  .case-table th {
    width: 180px;
    font-size: 18px;
  }

  .case-table td {
    width: calc(100% - 180px);
    font-size: 16px;
  }

  .case-text {
    margin-top: 24px;
    font-size: 16px;
  }

}



/*-------------------------------------
flow
-------------------------------------*/

.flow {
  margin-top: 55px;
}

.flow-inner {
  margin-inline: auto;
  max-width: 375px;
  padding-inline: 8px;
}

.flow-list {
  margin-top: 26px;
}

.flow-item {
  position: relative;
  z-index: 1;
}
.flow-item::before {
  position: absolute;
  top: 0;
  left: 8px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.flow-item:nth-child(1)::before {
  width: 78px;
  height: auto;
  aspect-ratio: 305 / 289;
  background-image: url(../image/flow_number01.webp);
}
.flow-item:nth-child(2)::before {
  width: 105px;
  height: auto;
  aspect-ratio: 419 / 289;
  background-image: url(../image/flow_number02.webp);
}
.flow-item:nth-child(3)::before {
  width: 100px;
  height: auto;
  aspect-ratio: 395 / 289;
  background-image: url(../image/flow_number03.webp);
}
.flow-item:nth-child(4)::before {
  width: 103px;
  height: auto;
  aspect-ratio: 400 / 289;
  background-image: url(../image/flow_number04.webp);
}

.flow-item:not(:first-child) {
  margin-top: 34px;
}

.flow-item__title {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.075em;
  color: var(--blueColor01);
}

.flow-item__body {
  margin-top: 10px;
}

.flow-item__inner {
  margin-inline: auto;
  max-width: 310px;
}

.flow-item__text {
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: calc(42 / 24);
}

.flow-item__text .color {
  font-weight: 500;
  color: #5AADE1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.flow-item__bg {
  margin-top: 22px;
  background-color: var(--bgBlueColor);
  padding: 20px 20px 18px;
}

.flow-item__flex {
  display: flex;
  column-gap: 20px;
}

.flow-item__left {
  width: 150px;
}

.flow-item__right {
  flex: 1;
}

.flow-item__block-title {
  width: fit-content;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  color: #57A1DC;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--blueColor02);
}

.flow-item__block-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: calc(38.5 / 22);
  letter-spacing: 0.075em;
}

.flow-item__small {
  margin-top: 32px;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.075em;
  color: var(--blueColor02);
}

.flow-item-arrow {
  height: 20px;
  display: flex;
  justify-content: center;
}
.flow-item-arrow .scroll-arrow::before,
.flow-item-arrow .scroll-arrow::after {
  width: 7px;
  height: 7px;
}
.flow-item-arrow .scroll-arrow::after {
  top: 26%;
}

.flow-item__image {
  margin-top: 8px;
  margin-bottom: 9px;
}

.flow-arrow {
  margin-top: 20px;
  height: 30px;
  display: flex;
  justify-content: center;
}

.flow-doctor {
  margin-top: 60px;
  padding-top: 53vw;
  position: relative;
  z-index: 1;
}

.flow-doctor__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.flow-doctor__profile {
  text-align: right;
  padding-right: 9%;
  line-height: 1.5;
}

.flow-doctor__profile-position {
  font-weight: 500;
  font-size: 15px;
  color: var(--blueColor02);
}

.flow-doctor__profile-name {
  font-weight: 500;
  font-size: 19px;
  color: var(--blueColor02);
}

.flow-doctor__inner {
  padding-inline: min(calc(100vw / 375 * 34), 34px);
}

.flow-doctor__lead {
  margin-top: 46px;
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 21), 21px);
  line-height: calc(70.87 / 42);
  color: var(--blueColor01);
}
.flow-doctor__lead span {
  display: inline-block;
}

.flow-doctor__text {
  margin-top: 20px;
  font-family: var(--ShipporiMincho);
  font-size: 14px;
  line-height: calc(62.36 / 28);
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {

  .flow {
    margin-top: 120px;
  }

  .flow-inner {
    max-width: 660px;
    padding-inline: 20px;
  }

  .flow-item__title {
    padding-top: 24px;
    padding-left: 75px;
    text-align: left;
    font-size: 24px;
  }

  .flow-item__inner {
    max-width: 100%;
  }

  .flow-item__text {
    font-size: 16px;
  }

  .flow-item__bg {
    padding: 36px;
  }

  .flow-item__left {
    width: 50%;
  }

  .flow-item__block-title {
    font-size: 21px;
  }

  .flow-item__block-text {
    font-size: 14px;
  }

  .flow-item__small {
    font-size: 14px;
  }

  .flow-item-arrow {
    height: 36px;
  }

  .flow-item-arrow .scroll-arrow::before, .flow-item-arrow .scroll-arrow::after {
    width: 12px;
    height: 12px;
  }

  .flow-doctor {
    margin-top: 80px;
    padding-top: 0;
  }

  .flow-doctor__flex {
    margin-inline: auto;
    max-width: 840px;
    padding-inline: 20px;
    display: flex;
  }

  .flow-doctor__image {
    position: relative;
    width: 50%;
  }

  .flow-doctor__profile {
    flex: 1;
    margin-left: 10%;
    padding-top: 15%;
    text-align: left;
    line-height: 2.2;
  }

  .flow-doctor__profile-position {
    font-size: 21px;
  }

  .flow-doctor__profile-name {
    font-size: 24px;
  }

  .flow-doctor__lead {
    margin-top: -110px;
    font-size: 24px;
  }

  .flow-doctor__inner {
    margin-inline: auto;
    max-width: 840px;
    padding-inline: 20px;
  }

}



/*-------------------------------------
price
-------------------------------------*/

.price {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.price-inner {
  padding-inline: 24px;
}

.price-smallInner {
  padding-inline: 10px;
}

.price-text {
  margin-top: 45px;
  font-size: 14px;
  line-height: calc(40 / 24);
  letter-spacing: 0.075em;
}

.price-course {
  margin-top: 10px;
  display: flex;
}

.price-course__title {
  width: 40%;
  background-color: var(--blueColor02);
  padding-block: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}
.price-course__title span {
  font-weight: 400;
  font-size: 14px;
}

.price-course__data {
  flex: 1;
  background-color: var(--bgBlueColor);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 16px;
  color: var(--blueColor01);
}
.price-course__data span {
  font-weight: 400;
  font-size: 26px;
  padding-inline: 5px;
  padding-bottom: 4px;
}

.price-caution {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
}

.price-comment {
  margin-top: 22px;
  margin-inline: auto;
  max-width: 328px;
  position: relative;
}

.price-comment__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 15), 15px);
  line-height: calc(45.35 / 30);
  color: var(--bgBlueColor);
}

.price-comment__text .color {
  display: block;
  font-weight: 700;
  color: #FFE633;
}

.price-image {
  margin-top: -22px;
}

.price-buttonZone {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

.price-button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  width: min(calc(100vw / 375 * 325), 325px);
  height: 54px;
  padding-inline: min(calc(100vw / 375 * 12), 12px);
  flex-direction: row;
  justify-content: flex-start;
  column-gap: min(calc(100vw / 375 * 11), 11px);
  position: relative;
}
.price-button::after {
  position: absolute;
  top: 50%;
  right: min(calc(100vw / 375 * 16), 16px);
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.price-button.tel {
  background-color: var(--blueColor01);
  box-shadow: 0px 4px 0px #154260;
}
.price-button.first {
  background-color: #35AA94;
  box-shadow: 0px 4px 0px #2C8977;
}
.price-buttonIcon {
  order: 2;
}
.tel .price-buttonIcon {
  width: min(calc(100vw / 375 * 20), 20px);
}
.first .price-buttonIcon {
  width: 18px;
  display: none;
}
.price-buttonText {
  text-align: center;
  font-weight: 500;
  order: 1;
  margin-top: 0;
  padding: min(calc(100vw / 375 * 6), 6px);
  border-radius: 6px;
  background-color: #fff;
  font-size: min(calc(100vw / 375 * 13), 13px);
  letter-spacing: 0.05em;
  color: var(--blueColor01);
}
.price-buttonNumber {
  text-align: center;
  font-family: var(--Quicksand);
  font-weight: 500;
  order: 3;
  font-size: min(calc(100vw / 375 * 21), 21px);
  letter-spacing: 0.02em;
  color: #fff;
}
.price-buttonReception {
  text-align: center;
  font-weight: 700;
  order: 3;
  font-size: min(calc(100vw / 375 * 18), 18px);
  letter-spacing: 0.1em;
  line-height: 1.16;
  color: #FFE633;
}

.price-bottom {
  display: block;
  margin-top: 12px;
  font-size: min(calc(100vw / 375 * 12), 12px);
  line-height: 1.6;
  color: var(--blueColor02);
}

@media (hover: hover) {
  .price-button:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(4px);
  }
}

@media screen and (min-width: 768px) {

  .price {
    margin-top: 120px;
  }

  .price-inner {
    margin-inline: auto;
    max-width: 720px;
    padding-inline: 20px;
  }

  .price-text {
    font-size: 16px;
  }

  .price-course__title {
    font-size: 16px;
  }

  .price-course__title span {
    font-size: 16px;
  }

  .price-course__data {
    font-size: 18px;
  }

  .price-course__data span {
    font-size: 28px;
  }

  .price-caution {
    font-size: 12px;
  }

  .price-comment {
    margin-top: 50px;
    max-width: 480px;
  }

  .price-comment__text {
    font-size: 21px;
  }

  .price-buttonZone {
    flex-direction: row;
    justify-content: space-between;
  }

}



/*-------------------------------------
faq
-------------------------------------*/

.faq {
  margin-top: 36px;
}

.faq .common-heading__ja {
  letter-spacing: 0.2em;
}

.faq-inner {
  margin-top: -37px;
  background-color: var(--bgBlueColor);
  padding: 95px 35px 70px;
}

.accordion-item:not(:first-child) {
  margin-top: 30px;
}

.accordion-button {
  display: block;
  width: 100%;
  padding: 0 20px 16px 0;
  border-bottom: 1px solid var(--blueColor02);
  position: relative;
  transition: all 0.3s;
}
.accordion-button::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--blueColor02);
  transition: all 0.3s;
}
.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--blueColor02);
  transition: all 0.3s;
}
.accordion-button.is-active::after {
  transform: translateY(-50%) rotate(0);
}

.accordion-en {
  display: block;
  font-family: var(--Quicksand);
  font-weight: 500;
  font-size: 16px;
  color: var(--blueColor02);
}

.accordion-question {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: calc(40 / 28);
  letter-spacing: 0.1em;
  color: var(--blueColor02);
}

.accordion-content {
  width: 100%;
  padding-top: 11px;
}

.accordion-answer {
  margin-top: 6px;
  font-size: 14px;
  line-height: calc(34 / 24);
  letter-spacing: 0.075em;
}

.accordion-answer__bottom {
  margin-top: 14px;
}

.accordion-container__title {
  padding: 6px;
  background-color: var(--blueColor02);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.075em;
  color: #fff;
}

.accordion-container__body {
  border: 1px solid var(--blueColor02);
  background-color: #fff;
  padding: 9px 4px;
}

.accordion-container:first-child .accordion-container__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}

.accordion-container__item {
  font-size: 11px;
  color: var(--blueColor02);
  letter-spacing: 0.075em;
  line-height: 1.5;
  padding-left: min(calc(100vw / 375 * 14), 14px);
  position: relative;
}
.accordion-container__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.accordion-container__caution {
  display: block;
  margin-top: 2px;
  font-size: min(calc(100vw / 375 * 12), 12px);
  line-height: 1.8;
  color: var(--blueColor02);
}

.js-accordion-content {
  display: none;
}

@media screen and (min-width: 768px) {

  .faq {
    margin-top: 120px;
  }

  .faq-inner {
    margin-top: -60px;
    padding-inline: 20px;
    padding-bottom: 100px;
  }

  .accordion-list {
    margin-inline: auto;
    max-width: 1000px;
  }

  .accordion-button {
    padding-right: 36px;
  }

  .accordion-button::before,
  .accordion-button::after {
    right: 5px;
    width: 24px;
    height: 2px;
    border-radius: 1px;
  }

  .accordion-en {
    font-size: 20px;
  }

  .accordion-question {
    font-size: 18px;
  }

  .accordion-answer {
    font-size: 16px;
  }

  .accordion-answer__bottom {
    margin-top: 24px;
  }

  .accordion-container__title {
    padding: 12px;
    font-size: 18px;
  }

  .accordion-container__body {
    padding: 16px 12px;
  }

  .accordion-container__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
  }

  .accordion-container__item {
    font-size: 16px;
  }

  .accordion-container__caution {
    font-size: 14px;
  }

}



/*-------------------------------------
access
-------------------------------------*/

.access {
  margin-top: 50px;
  padding-bottom: 55px;
  position: relative;
  z-index: 1;
}

.access-inner {
  margin-inline: auto;
  max-width: 375px;
  padding-inline: min(calc(100vw / 375 * 30), 30px);
}

.access .common-heading__ja {
  letter-spacing: 0.1em;
}

.access-titleZone {
  margin-top: 58px;
  margin-left: -5px;
  width: calc(100% + 10px);
  display: flex;
  justify-content: center;
}

.access-title {
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 19), 19px);
  letter-spacing: 0.04em;
  color: var(--blueColor02);
  border-bottom: 1px solid var(--blueColor02);
  padding-bottom: 4px;
  padding-left: min(calc(100vw / 375 * 42), 42px);
  position: relative;
}
.access-title span {
  font-size: min(calc(100vw / 375 * 28), 28px);
}
.access-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: min(calc(100vw / 375 * 35), 35px);
  height: auto;
  aspect-ratio: 144 / 150;
  background-image: url(../image/access_car.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.access-image {
  margin-top: 21px;
  margin-inline: auto;
  width: 100%;
}

.access-flex {
  margin-top: 18px;
}

.access-info__title {
  font-weight: 500;
  font-size: 18px;
  color: var(--blueColor02);
}

.access-info__address {
  display: block;
  font-size: min(calc(100vw / 375 * 14), 14px);
  line-height: 1.5;
}

.access-time {
  margin-top: 24px;
}

.access-time__table {
  width: 100%;
  color: var(--blueColor02);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.access-time__table tr {
  border-top: 1px solid var(--blueColor02);
}
.access-time__table tbody tr:last-child {
  border-bottom: 1px solid var(--blueColor02);
}

.access-time__table thead th:first-child {
  width: 88px;
}
.access-time__table tbody th {
  width: 88px;
  text-align: right;
  padding-right: 10px;
}

.access-time__table tbody td {
  text-align: center;
  font-size: 11px;
}

.access-time__detail {
  margin-top: 14px;
}

.access-time__detail-row {
  display: flex;
  align-items: center;
}
.access-time__detail-row:not(:first-child) {
  margin-top: 2px;
}

.access-time__detail-title {
  width: 55px;
  font-size: 14px;
}
.access-time__detail-row:last-child .access-time__detail-title {
  width: 20px;
}

.access-time__detail-desc {
  font-size: 14px;
  letter-spacing: 0.145em;
}
.access-time__detail-row:last-child .access-time__detail-desc {
  font-size: 14px;
}

.access-buttonZone {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.access-button {
  width: 100%;
  max-width: 330px;
  padding-block: 4px;
  border-radius: 50px;
  border: 1px solid var(--blueColor02);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.access-button__icon {
  width: 28px;
}

.access-button__text {
  font-weight: 500;
  font-size: 22px;
  color: var(--blueColor02);
  letter-spacing: 0.15em;
}

@media screen and (min-width: 768px) {

  .access {
    margin-top: 100px;
    padding-bottom: 120px;
  }

  .access-inner {
    margin-inline: auto;
    max-width: 680px;
    padding-inline: 20px;
  }

  .access-titleZone {
    margin-top: 64px;
  }

  .access-image {
    margin-top: 36px;
  }

  .access-title {
    font-size: 24px;
  }
  .access-title span {
    font-size: 38px;
  }
  .access-title::before {
    top: 55%;
  }

  .access-flex {
    margin-top: 32px;
    display: flex;
    gap: 30px;
  }

  .access-info {
    flex: 1;
  }

  .access-info__title {
    font-size: 22px;
  }

  .access-info__address {
    margin-top: 10px;
  }

  .access-time {
    margin-top: 0;
    width: 320px;
  }

  .access-time__detail-title {
    width: 64px;
    font-size: 15px;
  }
  .access-time__detail-row:last-child .access-time__detail-title {
    width: 30px;
  }
  .access-time__detail-desc {
    font-size: 14px;
  }
  .access-time__detail-row:last-child .access-time__detail-desc {
    font-size: 15px;
  }

  .access-button {
    padding-block: 10px;
    gap: 12px;
  }

  .access-button__icon {
    width: 32px;
  }

  .access-button__text {
    font-size: 24px;
  }

  .access-button {
    max-width: 420px;
  }

}



/*-------------------------------------
footer
-------------------------------------*/

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.footer.is-active {
  opacity: 1;
  visibility: visible;
}

.footer-scroll {
  margin-top: 18px;
  margin-left: auto;
  margin-right: 10px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.footer-scroll__arrow {
  width: 30px;
  height: 20px;
  transform: rotate(180deg);
  position: relative;
}
.footer-scroll__arrow::before {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid #81C7F3;
  border-bottom: 1px solid #81C7F3;
}
.footer-scroll__arrow::after {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid #81C7F3;
  border-bottom: 1px solid #81C7F3;
}

.footer-scroll__text {
  margin-top: -2px;
  font-weight: 500;
  font-size: 10px;
  color: var(--blueColor02);
  text-transform: uppercase;
}

.footer-buttonZone {
  margin-top: 0px;
  display: flex;
}

.footer-buttonZone-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}


.footer-button {
  width: 50%;
  height: 76px;
  padding-inline: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-button.tel {
  background-color: var(--blueColor01);
}
.footer-button.first {
  background-color: #35AA94;
}

.tel .footer-buttonIcon {
  width: 21px;
}
.first .footer-buttonIcon {
  width: 16px;
}

.footer-buttonText {
  margin-top: 3px;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
  color: #fff;
}
.footer-buttonText span {
  display: inline-block;
}

.footer-buttonNumber {
  text-align: center;
  font-family: var(--Quicksand);
  font-weight: 500;
  font-size: min(calc(100vw / 375 * 19), 19px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}

.footer-buttonReception {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 375 * 14), 14px);
  letter-spacing: 0.1em;
  line-height: 1.16;
  color: #FFE633;
}

@media screen and (min-width: 768px) {

  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
  }
  
  .footer.is-active {
    opacity: 1;
    visibility: visible;
  }

  .footer-scroll {
    width: 95px;
    margin-right: 20px;
    margin-bottom: 60px;
  }

  .footer-scroll__arrow {
    width: 40px;
    height: 35px;
  }
  .footer-scroll__arrow::before,
  .footer-scroll__arrow::after {
    width: 16px;
    height: 16px;
  }
  .footer-scroll__arrow::after {
    top: 31%;
  }

  .footer-scroll__text {
    font-size: 16px;
  }

  .footer-buttonZone {
    display: none;
  }

}

@media screen and (max-width: 767.98px) {

  .footer-scroll {
    height: 145px;
  }
}

/*-------------------------------------
reserve
-------------------------------------*/

.reserve-inner {
  padding-inline: 24px;
}

.reserve-difference__title {
  text-align: center;
  font-family: var(--ShipporiMincho);
  font-weight: 500;
  font-size: 21px;
  color: var(--blueColor01);
}

.reserve-buttonZone {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

.reserve-button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  width: min(calc(100vw / 375 * 325), 325px);
  height: 54px;
  padding-inline: min(calc(100vw / 375 * 12), 12px);
  flex-direction: row;
  justify-content: flex-start;
  column-gap: min(calc(100vw / 375 * 11), 11px);
  position: relative;
}
.reserve-button::after {
  position: absolute;
  top: 50%;
  right: min(calc(100vw / 375 * 16), 16px);
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.reserve-button.tel {
  background-color: var(--blueColor01);
  box-shadow: 0px 4px 0px #154260;
}
.reserve-button.first {
  background-color: #35AA94;
  box-shadow: 0px 4px 0px #2C8977;
}
.reserve-buttonIcon {
  order: 2;
}
.tel .reserve-buttonIcon {
  width: min(calc(100vw / 375 * 20), 20px);
}
.first .reserve-buttonIcon {
  width: 18px;
  display: none;
}
.reserve-buttonText {
  text-align: center;
  font-weight: 500;
  order: 1;
  margin-top: 0;
  padding: min(calc(100vw / 375 * 6), 6px);
  border-radius: 6px;
  background-color: #fff;
  font-size: min(calc(100vw / 375 * 13), 13px);
  letter-spacing: 0.05em;
  color: var(--blueColor01);
}
.reserve-buttonNumber {
  text-align: center;
  font-family: var(--Quicksand);
  font-weight: 500;
  order: 3;
  font-size: min(calc(100vw / 375 * 21), 21px);
  letter-spacing: 0.02em;
  color: #fff;
}
.reserve-buttonReception {
  text-align: center;
  font-weight: 700;
  order: 3;
  font-size: min(calc(100vw / 375 * 18), 18px);
  letter-spacing: 0.1em;
  line-height: 1.16;
  color: #FFE633;
}

.reserve-bottom {
  display: block;
  margin-top: 12px;
  font-size: min(calc(100vw / 375 * 12), 12px);
  line-height: 1.6;
  color: var(--blueColor02);
}

@media (hover: hover) {
  .reserve-button:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(4px);
  }
}

@media screen and (min-width: 768px) {

  .reserve-inner {
    margin-inline: auto;
    max-width: 720px;
    padding-inline: 20px;
    margin-top: 50px;
  }

  .reserve-buttonZone {
    flex-direction: row;
    justify-content: space-between;
  }

}

@media screen and (max-width: 767.98px) {

  .reserve-inner {
    margin-top: 35px;
  }
}

/*--------------------
	.footer-copy 
	--------------------*/
  .footer-copy,.footer-copy-line {
    display: block;
    width: 100%;
    padding: 14px 5px;
    margin: 50px auto -200px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    background: #166fb7;
}

@media screen and (max-width: 767.98px) {
/*--------------------
	.footer-copy 
	--------------------*/
  .footer-copy {
    display: block;
    width: 100%;
    padding: 10px 5px 84px;
    text-align: center;
    color: #ffffff;
    font-size: 3.5vw;
    background: #166fb7;
}

.footer-copy-line {
    display: block;
    width: 100%;
    padding: 10px 5px 85px;
    margin: 30px auto -150px;
    text-align: center;
    color: #ffffff;
    font-size: 3.5vw;
    background: #166fb7;
}
}