html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, b {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 100%;
  list-style-type: none;
  vertical-align: baseline;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  line-height: 140%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #2E312F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  min-height: 2000px;
  position: relative;
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: #2E312F;
}
@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}
img.down {
  transform: rotate(90deg);
}

input[type=submit], input[type=button],
button[type=submit],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus,
button[type=submit]::focus,
button[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.no-padding {
  padding: 0 !important;
}

.bg-yellow {
  background-color: #fff8eb;
}

header {
  position: absolute;
  width: 100%;
  z-index: 4;
}
header .headerTitle {
  background-color: #2E312F;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 1070px) {
  header .headerTitle {
    overflow: hidden;
    white-space: nowrap;
  }
  header .headerTitle.is-scrolling span {
    animation: marquee 15s linear infinite;
    padding-left: 100%;
    display: block;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
header #navDrawer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  width: calc(100% - 84px);
  padding: 15px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1140px) {
  header #navDrawer {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding: 10px 20px;
  }
}
header #navDrawer.fixed {
  top: 0;
  position: fixed;
}
header #navDrawer .navToggle {
  display: none;
}
@media screen and (max-width: 1140px) {
  header #navDrawer .navToggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  header #navDrawer .navToggle_button {
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
    cursor: pointer;
  }
  header #navDrawer .navToggle_button::before, header #navDrawer .navToggle_button::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #3CB37A;
    transition: 0.3s;
  }
  header #navDrawer .navToggle_button::before {
    top: 12px;
  }
  header #navDrawer .navToggle_button::after {
    bottom: 12px;
  }
  header #navDrawer .navToggle_button.open::before {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
  }
  header #navDrawer .navToggle_button.open::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 19px;
  }
}
header #navDrawer .headerLogo {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 1140px) {
  header #navDrawer .headerLogo {
    max-width: 117px;
  }
}
header #navDrawer .headerLogo_link {
  display: block;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 1140px) {
  header #navDrawer .headerLogo_link {
    font-size: 9px;
  }
}
header #navDrawer .headerLogo_link img {
  display: block;
  width: 100%;
  max-height: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1140px) {
  header #navDrawer .headerLogo_link img {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1140px) {
  header #navContent {
    position: fixed;
    right: 0;
    top: 65px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }
  header #navContent .gnavList {
    display: flex;
    flex-direction: column;
  }
  header #navContent .navClose {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 65px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  header #navContent.open {
    opacity: 1;
    pointer-events: auto;
  }
  header #navContent.open .navClose {
    opacity: 1;
    pointer-events: auto;
  }
  header #navContent.open .gnav {
    transform: translateX(0);
  }
}
header #navContent .gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 1140px) {
  header #navContent .gnav {
    transform: translateX(101vw);
    display: block;
    background-color: #F3EDE0;
    padding: 60px 20px 155px;
    height: calc(100vh - 65px);
    min-width: 365px;
    background-image: url(../images/image_menuBg01.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  header #navContent .gnav {
    width: 100vw;
  }
}
header #navContent .gnavList {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header #navContent .gnavList_item {
  box-sizing: border-box;
  border-bottom: none;
}
header #navContent .gnavList_item + * {
  margin-left: 30px;
}
@media screen and (max-width: 1140px) {
  header #navContent .gnavList_item {
    margin-left: 0;
    width: 100%;
    border-bottom: 1px solid var(--main, #3CB37A);
  }
}
header #navContent .gnavList_link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 1140px) {
  header #navContent .gnavList_link {
    padding: 20px 40px 20px 10px;
    justify-content: flex-start;
    background-image: url(../images/icon_arrowRight_green02.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 10px 16px;
  }
}
header #navContent .gnavList_item.reserveItem {
  display: flex;
}
@media screen and (max-width: 1140px) {
  header #navContent .gnavList_item.reserveItem {
    border-bottom: none;
    margin-top: 60px;
  }
}
header #navContent .gnavList_item.reserveItem a {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: #E76668;
  padding: 20px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  color: #FFF;
}
@media screen and (max-width: 1140px) {
  header #navContent .gnavList_item.reserveItem a {
    width: 100%;
    justify-content: center;
  }
}
header #navContent .gnavList_item.reserveItem a img {
  display: block;
  margin-left: 8px;
}

.link {
  display: flex;
}
.link_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.9px;
  border-radius: 80px;
  position: relative;
}
.link_button img {
  display: block;
  margin-left: 8px;
}
.link_button .reverse {
  transform: scale(-1, 1);
}

.contentSection {
  max-width: 840px;
  margin: auto;
}
.contentSection .contentContainer {
  box-sizing: border-box;
}
.contentSection .contentContainer_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 80px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contentSection .contentContainer_title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.contentSection .contentContainer_title .eng {
  margin-top: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px;
  color: var(--main_02, #F2CF5C);
}
@media screen and (max-width: 767px) {
  .contentSection .contentContainer_title .eng {
    font-size: 16px;
  }
}
.contentSection .contentContainer_title::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: var(--main_02, #F2CF5C);
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .contentSection .contentContainer_title::after {
    height: 20px;
    margin-top: 10px;
  }
}

.contentSection.fvSection {
  max-width: 100%;
  background: linear-gradient(108deg, var(--beige, #FDF9F2) 0%, #F3EDE0 74.15%);
}
.contentSection.fvSection .contentContainer {
  min-height: 776px;
  display: flex;
  align-items: flex-end;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.fvSection .contentContainer {
    min-height: auto;
  }
}
.contentSection.messageSection {
  margin-top: 160px;
  max-width: 100%;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection {
    margin-top: 60px;
  }
}
.contentSection.messageSection::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 38px;
  background-image: url(../images/image_bg01.svg);
  background-repeat: repeat;
  background-position: center center;
  background-size: auto 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection::before {
    height: 20px;
    top: 20px;
  }
}
.contentSection.messageSection .contentContainer {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding: 160px 20px;
  border-radius: 20px;
  background: var(--main_02, #F2CF5C);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer {
    border-radius: 10px;
    padding: 70px 20px 87%;
  }
}
.contentSection.messageSection .contentContainer::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 38px;
  background-image: url(../images/image_bg01.svg);
  background-repeat: repeat;
  background-position: center center;
  background-size: auto 100%;
  z-index: 1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer::before {
    height: 20px;
    top: 20px;
  }
}
.contentSection.messageSection .contentContainer::after {
  content: "Bungo Osteopathic Clinic's Thoughts";
  display: block;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 1;
  color: var(--main_text, #EAAD1C);
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer::after {
    font-size: 60px;
  }
}
.contentSection.messageSection .contentContainer h2 {
  color: var(--white, #FFF);
}
.contentSection.messageSection .contentContainer h2 .eng {
  color: var(--white, #FFF);
}
.contentSection.messageSection .contentContainer h2::after {
  background-color: #fff;
}
.contentSection.messageSection .contentContainer p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  max-width: 70%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer p {
    max-width: 100%;
  }
}
.contentSection.messageSection .contentContainer .messageContainer_image,
.contentSection.messageSection .contentContainer .messageContainer_bgCopy {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1240px;
}
@media screen and (max-width: 1280px) {
  .contentSection.messageSection .contentContainer .messageContainer_image,
  .contentSection.messageSection .contentContainer .messageContainer_bgCopy {
    max-width: calc(100% - 40px);
  }
}
.contentSection.messageSection .contentContainer .messageContainer_image::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 31.2%;
  padding-bottom: 29.3%;
  background-image: url(../images/image_charactor01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer .messageContainer_image::before {
    width: 67%;
    padding-bottom: 62%;
    transform: translate(-34%, 0%);
    top: auto;
    bottom: 62px;
  }
}
.contentSection.messageSection .contentContainer .messageContainer_image::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 29.1%;
  padding-bottom: 29.3%;
  background-image: url(../images/image_charactor02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer .messageContainer_image::after {
    width: 67%;
    padding-bottom: 62%;
    transform: translate(37%, 0%);
    top: auto;
    bottom: 62px;
  }
}
.contentSection.messageSection .contentContainer .messageContainer_bgCopy {
  overflow: hidden;
  mix-blend-mode: screen;
  z-index: 3;
}
.contentSection.messageSection .contentContainer .messageContainer_bgCopy::after {
  content: "Bungo Osteopathic Clinic's Thoughts";
  display: block;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 1;
  color: var(--main_text, #EAAD1C);
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 5px;
  white-space: nowrap;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .contentSection.messageSection .contentContainer .messageContainer_bgCopy::after {
    font-size: 60px;
  }
}
.contentSection.informationSection {
  background-image: url(../images/bg01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 160px 20px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection {
    padding: 60px 20px;
  }
}
.contentSection.informationSection .tab {
  max-width: 1240px;
  margin: auto;
}
.contentSection.informationSection .tabButton {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contentSection.informationSection .tabButton .button01,
.contentSection.informationSection .tabButton .button02 {
  cursor: pointer;
  width: 100%;
  max-width: 420px;
  padding: 20px 42px;
  color: var(--main_text_02, #138750);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
  border-radius: 10px 10px 0 0;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .tabButton .button01,
  .contentSection.informationSection .tabButton .button02 {
    font-size: 15px;
    padding: 5px 15px;
    max-width: 150px;
  }
  .contentSection.informationSection .tabButton .button01 span,
  .contentSection.informationSection .tabButton .button02 span {
    display: flex;
    line-height: 140%;
    align-items: center;
    min-height: 40px;
    justify-content: center;
  }
}
.contentSection.informationSection .tabButton .button01.active,
.contentSection.informationSection .tabButton .button02.active {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .tabButton .button01.active,
  .contentSection.informationSection .tabButton .button02.active {
    padding-bottom: 15px;
  }
}
.contentSection.informationSection .tabButton .button01 {
  background: var(--main, #3CB37A);
  color: #FFF;
}
.contentSection.informationSection .tabButton .button02 {
  background: #D6F5E6;
  color: var(--main_text_02, #138750);
}
.contentSection.informationSection .tabButton::after {
  width: 100%;
  content: "";
  display: block;
  border-radius: 20px 20px 0 0;
  background: var(--main, #3CB37A);
  height: 20px;
}
.contentSection.informationSection .tabGroup01,
.contentSection.informationSection .tabGroup02 {
  border-radius: 0 0 20px 20px;
  border: 2px solid var(--main, #3CB37A);
  background: #FFF;
  padding: 40px 30px 60px 30px;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .tabGroup01,
  .contentSection.informationSection .tabGroup02 {
    padding: 20px 15px 40px 15px;
  }
}
.contentSection.informationSection .tabGroup01.active,
.contentSection.informationSection .tabGroup02.active {
  position: static;
  opacity: 1;
  pointer-events: auto;
}
.contentSection.informationSection .information {
  max-width: 840px;
  margin: auto;
}
.contentSection.informationSection .information .serviceList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList {
    gap: 20px;
  }
}
.contentSection.informationSection .information .serviceList_item {
  border-radius: 10px;
  border: 1px solid var(--main_02, #F2CF5C);
  background: #FFF;
  box-shadow: 5px 5px 0 0 var(--main_02, #F2CF5C);
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_item {
    width: calc((100% - 20px) / 2);
  }
}
.contentSection.informationSection .information .serviceList_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_link {
    padding: 15px 10px;
    gap: 0;
    justify-content: space-between;
  }
}
.contentSection.informationSection .information .serviceList_link span {
  display: block;
}
.contentSection.informationSection .information .serviceList_link .image {
  display: block;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_link .image {
    margin-bottom: 10px;
  }
}
.contentSection.informationSection .information .serviceList_text .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_text .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.8px;
  }
}
.contentSection.informationSection .information .serviceList_text p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  min-height: 66px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_text p {
    display: none;
  }
}
.contentSection.informationSection .information .serviceList_text .link {
  margin-top: 20px;
}
.contentSection.informationSection .information .serviceList_text .link_button {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid var(--main, #3CB37A);
  background: var(--main, #3CB37A);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #FFF;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information .serviceList_text .link_button {
    padding: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .contentSection.informationSection .information .serviceList_text .link_button img {
    width: 8px;
  }
}
.contentSection.informationSection .information02 {
  max-width: 840px;
  margin: auto;
}
.contentSection.informationSection .information02 .serviceList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information02 .serviceList {
    gap: 20px;
  }
}
.contentSection.informationSection .information02 .serviceList_item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information02 .serviceList_item {
    width: calc((100% - 20px) / 2);
  }
}
.contentSection.informationSection .information02 .serviceList_item .title {
  color: var(--main_text_02, #138750);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .contentSection.informationSection .information02 .serviceList_item .title {
    font-size: 16px;
  }
}
.contentSection.informationSection .information02 .serviceList_item ul {
  padding-left: 20px;
}
.contentSection.informationSection .information02 .serviceList_item ul li {
  list-style-type: disc;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
.contentSection.informationSection .information02 .serviceList_image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.contentSection.reasonSection {
  padding: 80px 20px;
  max-width: 100%;
  border-radius: 20px 20px 0 0;
  background: #3CB37A;
  background-image: url(../images/bg_reason01.svg);
  background-repeat: no-repeat;
  background-position: 116% 105%;
  background-size: 630px auto;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection {
    padding: 60px 20px;
    background-position: 117% 28px;
    background-size: 173px auto;
  }
}
.contentSection.reasonSection h2 {
  color: var(--white, #FFF);
}
.contentSection.reasonSection h2 .eng {
  color: var(--white, #FFF);
}
.contentSection.reasonSection h2::after {
  background-color: #fff;
}
.contentSection.reasonSection .reasonList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 840px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList {
    margin-top: 0;
    gap: 20px;
  }
}
.contentSection.reasonSection .reasonList_item {
  width: calc((100% - 30px) / 2);
  border-radius: 10px;
  background: var(--white, #FFF);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item {
    width: calc((100% - 20px) / 2);
    gap: 15px;
    padding: 10px;
    align-content: flex-start;
  }
}
.contentSection.reasonSection .reasonList_item .number {
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 50px;
  background: var(--main_02, #F2CF5C);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .number {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.contentSection.reasonSection .reasonList_item .image {
  width: 46.3%;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .image {
    width: 100%;
    height: 93px;
  }
}
.contentSection.reasonSection .reasonList_item .image img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.contentSection.reasonSection .reasonList_item .text {
  width: calc(53.7% - 10px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .text {
    width: 100%;
    gap: 10px;
  }
}
.contentSection.reasonSection .reasonList_item .text .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .text .title {
    font-size: 16px;
    line-height: 140%;
  }
}
.contentSection.reasonSection .reasonList_item .text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.reasonSection .reasonList_item .text p {
    font-size: 14px;
  }
}
.contentSection .resultsList .slick-list {
  padding-bottom: 5px;
  width: calc(100% + 40px);
  margin-left: -20px;
  align-items: stretch;
}
.contentSection .resultsList .slick-track {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection .resultsList .slick-track {
    gap: 20px;
  }
}
.contentSection .resultsList_item {
  width: 280px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--main, #3CB37A);
  background: #FFF;
  box-shadow: 5px 5px 0 0 var(--main, #3CB37A);
  height: auto;
}
@media screen and (max-width: 767px) {
  .contentSection .resultsList_item {
    width: 295px;
  }
}
.contentSection .resultsList_item .image img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 10px;
}
.contentSection .resultsList_item .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.8px;
  margin-top: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .contentSection .resultsList_item .title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.contentSection .resultsList_item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.contentSection.locationsSection {
  padding: 80px 20px;
  max-width: 100%;
  background: var(--beige, #FDF9F2);
}
.contentSection.locationsSection .locations {
  max-width: 840px;
  margin: auto;
}
.contentSection.locationsSection .locationsSearch {
  border-radius: 10px;
  background: var(--bk, #F3EDE0);
  padding: 30px 60px;
  background-image: url(../images/image_locations01.svg);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: auto calc(100% - 10px);
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsSearch {
    padding: 20px;
    background-position: center 20%;
    background-size: 100% auto;
  }
}
.contentSection.locationsSection .locationsSearch .text {
  max-width: 240px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsSearch .text {
    max-width: 100%;
    margin-top: 165px;
  }
}
.contentSection.locationsSection .locationsSearch .text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsSearch .text p {
    text-align: center;
    margin-bottom: 10px;
  }
}
.contentSection.locationsSection .locationsSearch .text .link_button {
  width: 100%;
  border-radius: 80px;
  background: var(--main_text, #EAAD1C);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #FFF;
  padding: 20px 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contentSection.locationsSection .locationsContact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsContact {
    gap: 20px;
    margin-top: 20px;
  }
}
.contentSection.locationsSection .locationsContact_item {
  width: calc((100% - 60px) / 3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsContact_item {
    width: 100%;
  }
}
.contentSection.locationsSection .locationsContact_item.reserve01 {
  background: linear-gradient(117deg, #ED898B 0.72%, #E76668 99.28%);
}
.contentSection.locationsSection .locationsContact_item.reserve02 {
  background: linear-gradient(102deg, #3CB37A 0.27%, #149658 99.73%);
}
.contentSection.locationsSection .locationsContact_item.reserve03 {
  background: var(--main_text, #EAAD1C);
}
.contentSection.locationsSection .locationsContact_item a, .contentSection.locationsSection .locationsContact_item div {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsSection .locationsContact_item a, .contentSection.locationsSection .locationsContact_item div {
    padding: 20px 10px;
    gap: 10px;
  }
}
.contentSection.locationsSection .locationsContact .icon {
  width: 50px;
  height: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentSection.locationsSection .locationsContact .link_button {
  color: #FFF;
  border: 1px solid #FFF;
  cursor: pointer;
}
.contentSection .instagram #sbi_load, .contentSection .youtube #sbi_load {
  display: none;
}
.contentSection .instagram .link, .contentSection .youtube .link {
  justify-content: center;
  margin-top: 80px;
}
.contentSection .instagram .link_button, .contentSection .youtube .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection .instagram .link_button, .contentSection .youtube .link_button {
    padding: 20px;
    width: 100%;
    font-size: 16px;
  }
}
.contentSection .instagram .link_button img, .contentSection .youtube .link_button img {
  display: block;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .contentSection .instagram + .youtube, .contentSection .youtube + .youtube {
    margin-top: 60px;
  }
}
.contentSection .youtube {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection .youtube {
    padding: 0 20px;
    margin-top: 0;
  }
}
.contentSection .youtube + .banner {
  margin-top: 100px;
}
.contentSection .youtube .image_youtube img {
  display: block;
  margin: 0 auto;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .contentSection .youtube .image_youtube img {
    max-width: 100%;
  }
}
.contentSection .youtube .youtube-wrapper {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 30px auto 0;
}
.contentSection .youtube .youtube-wrapper a {
  display: block;
  position: relative;
  z-index: 2;
}
.contentSection .youtube .youtube-wrapper img {
  display: block;
  width: 100%;
}
.contentSection .youtube .youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.contentSection .youtube .youtube-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -14.3%;
  width: 170px;
  height: 161px;
  background-image: url(../images/image_youtube02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contentSection .youtube .youtube-wrapper::after {
    width: 52px;
    height: 49px;
    right: -12%;
  }
}
@media screen and (max-width: 767px) {
  .contentSection .youtube .link {
    margin-top: 30px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.contentSection .banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection .banner {
    padding-bottom: 100px;
    gap: 20px;
  }
}
.contentSection .banner_item {
  max-width: 213px;
  max-height: 100px;
}
.contentSection .banner_link {
  display: block;
  max-height: 100%;
  max-width: 100%;
}
.contentSection .banner_link img {
  display: block;
  max-width: 100%;
  max-height: 100px;
}
.contentSection .reserve {
  margin: 100px auto 0;
  display: flex;
  max-width: 840px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: var(--bk, #F3EDE0);
  padding: 30px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve {
    margin-top: 0;
    padding: 30px 20px;
    flex-direction: column;
    max-width: 100%;
    margin-bottom: 100px;
  }
}
.contentSection .reserve::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  width: 147px;
  height: 137px;
  background-image: url(../images/image_reserve01.svg);
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve::after {
    content: none;
  }
}
.contentSection .reserve .search, .contentSection .reserve > .link {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve .search, .contentSection .reserve > .link {
    width: 100%;
  }
}
.contentSection .reserve .search .title, .contentSection .reserve > .link .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve .search .title, .contentSection .reserve > .link .title {
    font-size: 18px;
  }
}
.contentSection .reserve .search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contentSection .reserve .search .link {
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve .search .link {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contentSection .reserve .search .link::before {
    content: "";
    display: block;
    width: 70px;
    height: 64px;
    background-image: url(../images/image_reserve01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
.contentSection .reserve .search .link_button {
  width: 100%;
  border-radius: 80px;
  background: var(--main_text, #EAAD1C);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #FFF;
  padding: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve .search .link_button {
    width: 80%;
  }
}
.contentSection .reserve > .link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve > .link {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff;
  }
}
.contentSection .reserve > .link .reserveList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .contentSection .reserve > .link .reserveList {
    width: 100%;
  }
}
.contentSection .reserve > .link .reserveList_item a, .contentSection .reserve > .link .reserveList_item div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--white, #FFF);
  padding: 20px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  gap: 8px;
  cursor: pointer;
}
.contentSection .reserve > .link .reserveList_item.reserve01 a, .contentSection .reserve > .link .reserveList_item.reserve01 div {
  color: var(--accent, #E76668);
}
.contentSection .reserve > .link .reserveList_item.reserve02 a, .contentSection .reserve > .link .reserveList_item.reserve02 div {
  color: var(--main, #3CB37A);
}
.contentSection .reserve > .link .reserveList_item.reserve03 a, .contentSection .reserve > .link .reserveList_item.reserve03 div {
  color: var(--main_text, #EAAD1C);
}
.contentSection.newsSection {
  padding: 80px 20px;
  max-width: 100%;
  border-radius: 20px 20px 0 0;
  background: var(--main_02, #F2CF5C);
  background-image: url(../images/bg_news01.svg);
  background-repeat: no-repeat;
  background-position: -16% 105%;
  background-size: 630px auto;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection {
    padding: 60px 20px;
    background-position: -21% 15px;
    background-size: 181px auto;
  }
}
.contentSection.newsSection h2 {
  color: var(--white, #FFF);
}
.contentSection.newsSection h2 .eng {
  color: var(--white, #FFF);
}
.contentSection.newsSection h2::after {
  background-color: #fff;
}
.contentSection.newsSection .news {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 840px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .news {
    margin-top: 0;
    gap: 10px;
  }
}
.contentSection.newsSection .news_link {
  display: block;
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  background-image: url(../images/icon_arrowRight02.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: auto;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .news_link {
    background-position: calc(100% - 20px) center;
  }
}
.contentSection.newsSection .news_link span {
  display: block;
}
.contentSection.newsSection .news_link .date {
  color: var(--main, #3CB37A);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .news_link .date {
    font-size: 12px;
  }
}
.contentSection.newsSection .news_link .title {
  margin-top: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .news_link .title {
    margin-top: 5px;
    font-size: 14px;
  }
}
.contentSection.newsSection .link {
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .link {
    margin-top: 30px;
  }
}
.contentSection.newsSection .link_button {
  border-radius: 10px;
  background-color: #fff;
  color: #FFF;
  text-align: center;
  color: var(--main_text_02, #138750);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  display: flex;
  align-items: center;
  padding: 20px 50px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSection .link_button {
    width: 100%;
    font-size: 16px;
  }
}
.contentSection.newsSection .link_button img {
  display: block;
  margin-left: 0;
}
.contentSection.reviewSection {
  padding: 80px 20px;
  max-width: 100%;
  border-radius: 20px 20px 0 0;
  background: #3CB37A;
}
@media screen and (max-width: 767px) {
  .contentSection.reviewSection {
    padding: 60px 20px;
  }
}
.contentSection.reviewSection h2 {
  color: var(--white, #FFF);
}
.contentSection.reviewSection h2 .eng {
  color: var(--white, #FFF);
}
.contentSection.reviewSection h2::after {
  background-color: #fff;
}
.contentSection.pageHeaderSection {
  max-width: 100%;
  height: 37.2vw;
  max-height: 536px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection {
    height: 76.8vw;
    padding-top: 36px;
  }
}
.contentSection.pageHeaderSection.entry::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, rgba(60, 179, 122, 0.7) 0.31%, rgba(46, 170, 111, 0.7) 99.69%);
  z-index: 0;
}
.contentSection.pageHeaderSection .contentContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 10%;
}
.contentSection.pageHeaderSection .contentContainer .pageHeader_title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px;
  color: var(--white, #FFF);
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection .contentContainer .pageHeader_title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.contentSection.pageHeaderSection .contentContainer .pageHeader_title .eng {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-top: 20px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection .contentContainer .pageHeader_title .eng {
    font-size: 14px;
    margin-top: 10px;
  }
}
.contentSection.pageHeaderSection::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 19%;
  background-image: url(../images/image_pageHeader-bottom01.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection::after {
    height: 17.7%;
    background-image: url(../images/image_pageHeader-bottom01_sp.svg);
  }
}
.contentSection.pageHeaderSection.pageHeader01 {
  background-image: url(../images/bg_pageHeader01.png);
}
.contentSection.pageHeaderSection.pageHeader01::after {
  background-image: url(../images/image_pageHeader-bottom04.svg);
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection.pageHeader01::after {
    background-image: url(../images/image_pageHeader-bottom04_sp.svg);
  }
}
.contentSection.pageHeaderSection.pageHeader02 {
  background-image: url(../images/bg_pageHeader02.png);
}
.contentSection.pageHeaderSection.pageHeader03 {
  background-image: url(../images/bg_pageHeader03.png);
}
.contentSection.pageHeaderSection.pageHeader03::after {
  background-image: url(../images/image_pageHeader-bottom03.svg);
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection.pageHeader03::after {
    background-image: url(../images/image_pageHeader-bottom03_sp.svg);
  }
}
.contentSection.pageHeaderSection.pageHeader04 {
  background-image: url(../images/bg_pageHeader04.png);
}
.contentSection.pageHeaderSection.pageHeader05 {
  background-image: url(../images/bg_pageHeader05.png);
}
.contentSection.pageHeaderSection.pageHeader06 {
  background-image: url(../images/bg_pageHeader06.png);
}
.contentSection.pageHeaderSection.pageHeader07 {
  background-image: url(../images/bg_pageHeader07.png);
}
.contentSection.pageHeaderSection.pageHeader07::after {
  background-image: url(../images/image_pageHeader-bottom02.svg);
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection.pageHeader07::after {
    background-image: url(../images/image_pageHeader-bottom02_sp.svg);
  }
}
.contentSection.pageHeaderSection.pageHeader08 {
  background-image: url(../images/bg_pageHeader07.png);
}
.contentSection.pageHeaderSection.pageHeader09 {
  background-image: url(../images/bg_pageHeader05.png);
}
.contentSection.pageHeaderSection.pageHeader09::after {
  background-image: url(../images/image_pageHeader-bottom02.svg);
}
@media screen and (max-width: 767px) {
  .contentSection.pageHeaderSection.pageHeader09::after {
    background-image: url(../images/image_pageHeader-bottom02_sp.svg);
  }
}
.contentSection.flowSection {
  padding: 80px 20px;
  position: relative;
}
.contentSection.flowSection::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #EAF7F1;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection {
    padding: 60px 20px;
  }
}
.contentSection.flowSection .flow_item {
  display: flex;
  border-radius: 10px;
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--white, #FFF);
  box-shadow: 5px 5px 0 0 var(--main_02, #F2CF5C);
  gap: 30px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item {
    flex-direction: column;
    gap: 20px;
  }
}
.contentSection.flowSection .flow_item + .flow_item {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item + .flow_item {
    margin-top: 40px;
  }
}
.contentSection.flowSection .flow_item + .flow_item::before {
  content: "";
  display: block;
  position: absolute;
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 58px;
  background-image: url(../images/icon_arrowBottom01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item + .flow_item::before {
    top: -28px;
    height: 20px;
    background-position: center bottom;
    background-size: 100% auto;
  }
}
.contentSection.flowSection .flow_item .image,
.contentSection.flowSection .flow_item .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item .image,
  .contentSection.flowSection .flow_item .text {
    width: 100%;
  }
}
.contentSection.flowSection .flow_item .image {
  overflow: hidden;
  border-radius: 10px;
}
.contentSection.flowSection .flow_item .image img {
  display: block;
}
.contentSection.flowSection .flow_item .text .title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item .text .title {
    font-size: 20px;
    gap: 8px;
  }
}
.contentSection.flowSection .flow_item .text .title .number {
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  color: var(--main, #3CB37A);
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item .text .title .number {
    font-size: 24px;
  }
}
.contentSection.flowSection .flow_item .text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item .text p {
    font-size: 14px;
  }
}
.contentSection.flowSection .flow_item .text .check {
  margin-top: 10px;
  border-radius: 5px;
  background: var(--bk, #F3EDE0);
  padding: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.flowSection .flow_item .text .check {
    font-size: 14px;
    padding-left: 29px;
  }
}
.contentSection.flowSection .flow_item .text .check::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
}
.contentSection.flowSection .flow_item .text .check::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 14px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--main, #3CB37A);
  border-bottom: 2px solid var(--main, #3CB37A);
}
.contentSection.qaSection {
  padding: 100px 20px;
}
.contentSection.qaSection .qa_item {
  border-radius: 10px;
  border: 1px solid var(--main, #3CB37A);
  background: #FFF;
  padding: 20px;
  cursor: pointer;
}
.contentSection.qaSection .qa_item + * {
  margin-top: 30px;
}
.contentSection.qaSection .qa_question {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.9px;
  position: relative;
  padding-left: 35px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .qa_question {
    font-size: 14px;
    padding-left: 30px;
  }
}
.contentSection.qaSection .qa_question .trigger {
  position: relative;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentSection.qaSection .qa_question .trigger::before {
  content: "";
  width: 3px;
  height: 22px;
  background-color: #3CB37A;
  border-radius: 3px;
  display: block;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.contentSection.qaSection .qa_question .trigger::after {
  content: "";
  width: 22px;
  height: 3px;
  background-color: #3CB37A;
  border-radius: 3px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.contentSection.qaSection .qa_question.open .trigger::before {
  transform: rotate(90deg);
}
.contentSection.qaSection .qa_question .text {
  max-width: calc(100% - 40px);
  line-height: 160%;
}
.contentSection.qaSection .qa_question::before {
  content: "Q";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1.2px;
  color: var(--main, #3CB37A);
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .qa_question::before {
    font-size: 20px;
  }
}
.contentSection.qaSection .qa_answer {
  margin-top: 30px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.9px;
  position: relative;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .qa_answer {
    font-size: 14px;
    padding-left: 30px;
  }
}
.contentSection.qaSection .qa_answer::before {
  content: "A";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1.2px;
  color: var(--main_text, #EAAD1C);
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .qa_answer::before {
    font-size: 20px;
  }
}
.contentSection.qaSection .link {
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .link {
    margin-top: 60px;
  }
}
.contentSection.qaSection .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.qaSection .link_button {
    width: 100%;
    font-size: 16px;
  }
}
.contentSection.trafficAccidentSection {
  padding: 100px 20px;
  position: relative;
}
.contentSection.trafficAccidentSection::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FDF4C9;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection {
    padding: 30px 20px 60px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident {
    gap: 60px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item .image01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item .image01 {
    margin-bottom: 30px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item .image01 img {
  width: 100%;
  display: block;
  border-radius: 10px;
  background: lightgray -0.017px -71.954px/100% 191.126% no-repeat;
  box-shadow: 5px 5px 0 0 var(--main_02, #F2CF5C);
}
.contentSection.trafficAccidentSection .trafficAccident_item .title01 {
  color: var(--main_text_02, #138750);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item .title01 {
    font-size: 4.8vw;
    margin-bottom: 20px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item p {
    font-size: 14px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item .checkList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item .checkList {
    gap: 10px;
    margin-top: 30px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item .checkList li {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid var(--main, #3CB37A);
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item .checkList li {
    padding: 10px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_item .checkList li .check {
  width: 27px;
  height: 25.999px;
  border-radius: 3px;
  border: 2px solid var(--bk, #F3EDE0);
  background: #FCFCFC;
  position: relative;
}
.contentSection.trafficAccidentSection .trafficAccident_item .checkList li .check::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -70%) rotate(45deg);
  width: 10.001px;
  height: 19.999px;
  border-right: 4px solid var(--main, #3CB37A);
  border-bottom: 4px solid var(--main, #3CB37A);
}
.contentSection.trafficAccidentSection .trafficAccident_item .checkList li > p {
  width: calc(100% - 37.001px);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_item .checkList li > p {
    font-size: 4.267vw;
    letter-spacing: 0;
  }
}
.contentSection.trafficAccidentSection .trafficAccident .link {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contentSection.trafficAccidentSection .trafficAccident .link {
    margin-top: -80px;
    margin-bottom: -80px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident .link_button {
    padding: 20px;
    width: 100%;
    font-size: 16px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident .link_button img {
  display: block;
  margin-left: 0;
}
.contentSection.trafficAccidentSection .trafficAccident_support {
  border-radius: 10px;
  background: var(--bk, #F3EDE0);
  padding: 30px 20px;
  text-align: center;
}
.contentSection.trafficAccidentSection .trafficAccident_support .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
.contentSection.trafficAccidentSection .trafficAccident_support p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_support p {
    text-align: left;
    font-size: 14px;
  }
}
.contentSection.trafficAccidentSection .trafficAccident_support .banner {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.trafficAccidentSection .trafficAccident_support .banner {
    padding-bottom: 0;
  }
}
.contentSection.menuSection {
  padding: 100px 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.menuSection {
    padding: 30px 20px 60px;
  }
}
.contentSection.menuSection .menu .title01 {
  color: #138750;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 40px;
}
.contentSection.menuSection .menu p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.contentSection.menuSection .menuList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contentSection.menuSection .menuList {
    gap: 20px;
    flex-direction: column;
  }
}
.contentSection.menuSection .menuList_item {
  width: calc((100% - 30px) / 2);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contentSection.menuSection .menuList_item {
    width: 100%;
  }
}
.contentSection.menuSection .menuList_item.item01 {
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
}
.contentSection.menuSection .menuList_item.item02 {
  background: var(--gd_yellow, linear-gradient(93deg, #F2CF5C 1.45%, #FDCD32 98.55%));
}
.contentSection.menuSection .menuList_item a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.menuSection .menuList_item a {
    gap: 10px;
  }
}
.contentSection.menuSection .menuList_item .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin: auto;
}
.contentSection.menuSection .menuList_item .text {
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contentSection.menuSection .menuList_item .text {
    font-size: 16px;
  }
}
.contentSection.menuSection .menuList_item .text img {
  display: block;
  margin-left: 8px;
}
.contentSection.BasicTreatmentSection, .contentSection.recommendSection {
  background-image: url(../images/bg02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 20px;
  max-width: 100%;
  background-color: #F3EDE0;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection, .contentSection.recommendSection {
    padding: 60px 20px;
    overflow: hidden;
  }
  .contentSection.BasicTreatmentSection h2, .contentSection.recommendSection h2 {
    font-size: 24px;
  }
  .contentSection.BasicTreatmentSection h2 .jp, .contentSection.recommendSection h2 .jp {
    line-height: 160%;
  }
}
.contentSection.BasicTreatmentSection p, .contentSection.recommendSection p {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.contentSection.BasicTreatmentSection .tableWrapper, .contentSection.recommendSection .tableWrapper {
  max-width: 840px;
  margin: 40px auto 0;
}
.contentSection.BasicTreatmentSection .tableWrapper table, .contentSection.recommendSection .tableWrapper table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .tableWrapper table, .contentSection.recommendSection .tableWrapper table {
    min-width: 0;
  }
}
.contentSection.BasicTreatmentSection .tableWrapper table th, .contentSection.BasicTreatmentSection .tableWrapper table td, .contentSection.recommendSection .tableWrapper table th, .contentSection.recommendSection .tableWrapper table td {
  padding: 10px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .tableWrapper table th, .contentSection.BasicTreatmentSection .tableWrapper table td, .contentSection.recommendSection .tableWrapper table th, .contentSection.recommendSection .tableWrapper table td {
    font-size: 14px;
    padding: 10px;
  }
}
.contentSection.BasicTreatmentSection .tableWrapper table th, .contentSection.recommendSection .tableWrapper table th {
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--main, #3CB37A);
  color: var(--white, #FFF);
  font-weight: 700;
}
.contentSection.BasicTreatmentSection .tableWrapper table td, .contentSection.recommendSection .tableWrapper table td {
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--white, #FFF);
}
.contentSection.BasicTreatmentSection .tableWrapper table td.table_data, .contentSection.recommendSection .tableWrapper table td.table_data {
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--main, #3CB37A);
  color: var(--white, #FFF);
  text-align: left;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .tableWrapper table td.table_data, .contentSection.recommendSection .tableWrapper table td.table_data {
    padding: 8px;
  }
}
.contentSection.BasicTreatmentSection .tableWrapper table td a, .contentSection.recommendSection .tableWrapper table td a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: var(--main_text_02, #138750);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contentSection.BasicTreatmentSection + .recommendSection, .contentSection.recommendSection + .recommendSection {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection + .recommendSection, .contentSection.recommendSection + .recommendSection {
    margin-top: 60px;
  }
}
.contentSection.BasicTreatmentSection .recommend, .contentSection.recommendSection .recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 840px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .recommend, .contentSection.recommendSection .recommend {
    flex-direction: column;
  }
}
.contentSection.BasicTreatmentSection .recommend::after, .contentSection.recommendSection .recommend::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  transform: translateX(50%);
  width: 170px;
  height: 167px;
  background-image: url(../images/image_recommend05.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 2;
}
.contentSection.BasicTreatmentSection .recommend_item, .contentSection.recommendSection .recommend_item {
  width: calc((100% - 60px) / 3);
  border-radius: 5px;
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--white, #FFF);
  box-shadow: 5px 5px 0 0 var(--main, #3CB37A);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .recommend_item, .contentSection.recommendSection .recommend_item {
    width: 100%;
  }
}
.contentSection.BasicTreatmentSection .recommend_item .image img, .contentSection.recommendSection .recommend_item .image img {
  display: block;
  border-radius: 5px;
}
.contentSection.BasicTreatmentSection .recommend_item .image.cover, .contentSection.recommendSection .recommend_item .image.cover {
  height: 250px;
}
.contentSection.BasicTreatmentSection .recommend_item .image.cover img, .contentSection.recommendSection .recommend_item .image.cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contentSection.BasicTreatmentSection .recommend_item .title, .contentSection.recommendSection .recommend_item .title {
  color: var(--main_text_02, #138750);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .recommend_item .title, .contentSection.recommendSection .recommend_item .title {
    text-align: center;
  }
}
.contentSection.BasicTreatmentSection .recommend_item p, .contentSection.recommendSection .recommend_item p {
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .recommend_item p, .contentSection.recommendSection .recommend_item p {
    font-size: 14px;
  }
}
.contentSection.BasicTreatmentSection.recommend02, .contentSection.recommendSection.recommend02 {
  margin-top: 160px;
  background-color: #EAF7F1;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection.recommend02, .contentSection.recommendSection.recommend02 {
    margin-top: 60px;
  }
  .contentSection.BasicTreatmentSection.recommend02 .recommend::after, .contentSection.recommendSection.recommend02 .recommend::after {
    bottom: auto;
    top: -23vw;
    left: auto;
    right: 4vw;
    width: 107px;
    height: 103px;
    z-index: 0;
    transform: translateX(50%);
  }
}
.contentSection.BasicTreatmentSection .recommend::after, .contentSection.recommendSection .recommend::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translate(-50%, -100%);
  width: 170px;
  height: 167px;
  background-image: url(../images/image_recommend11.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .contentSection.BasicTreatmentSection .recommend::after, .contentSection.recommendSection .recommend::after {
    transform: translate(-30%, 0%);
    bottom: auto;
    top: -23vw;
    left: 4vw;
    width: 107px;
    height: 103px;
    z-index: 0;
  }
}
.contentSection.selfFundedTreatmentSection {
  padding: 160px 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection {
    padding: 60px 20px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment > p {
  text-align: center;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item {
  padding: 30px 30px 40px 30px;
  border-radius: 10px;
  border: 1px solid var(--main_02, #F2CF5C);
  background: var(--white, #FFF);
  box-shadow: 5px 5px 0 0 var(--main_02, #F2CF5C);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item {
    padding: 30px 20px;
    margin-top: 0;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item + .selfFundedTreatment_item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item + .selfFundedTreatment_item {
    margin-top: 30px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .link {
  justify-content: center;
  margin-top: 30px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .link_button {
    width: 100%;
    font-size: 16px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .link_button img {
  display: block;
  margin-left: 0;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents {
    flex-direction: column;
    gap: 30px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .image {
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .image {
    width: 100%;
    height: 42.667vw;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .text {
  width: calc(100% - 250px - 30px);
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .text {
    width: 100%;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .text .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  color: var(--main_text_02, #138750);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .contents .text .title {
    font-size: 20px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper {
  margin-top: 30px;
  overflow-x: auto;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #7D7D7D;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table tr:first-child td:first-child {
  border-top-left-radius: 5px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table tr:first-child td:last-child {
  border-top-right-radius: 5px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td {
  padding: 10px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  border: 1px solid #7D7D7D;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td {
    font-size: 14px;
    padding: 10px;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td {
  background: var(--white, #FFF);
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td.table_data {
  background: var(--beige, #FDF9F2);
  text-align: left;
  font-weight: 700;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td.table_data {
    width: 55%;
  }
}
.contentSection.selfFundedTreatmentSection .selfFundedTreatment_item .tableWrapper table td a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: var(--main_text_02, #138750);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contentSection.voiceSection {
  padding: 160px 20px;
}
.contentSection.voiceSection .voiceContainer > .link {
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voiceContainer > .link {
    margin-top: 60px;
  }
}
.contentSection.voiceSection .voiceContainer > .link .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 15px 30px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voiceContainer > .link .link_button {
    width: 100%;
    text-align: center;
  }
}
.contentSection.voiceSection .voice {
  border-radius: 10px;
  background: url(../images/icon_voice01.svg) no-repeat calc(100% - 30px) 30px, var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  background-size: auto, auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voice {
    background: url(../images/icon_voice01.svg) no-repeat calc(100% - 10px) 14px, var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
    background-size: 122px, auto;
    gap: 20px;
    padding: 30px 20px;
  }
}
.contentSection.voiceSection .voice::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transform: translateX(-50%);
  width: 132px;
  height: 124px;
  background-image: url(../images/image_voice01.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voice::after {
    bottom: auto;
    top: -6vw;
    left: -10px;
    width: 100px;
    height: 89px;
    transform: translateX(0%);
  }
}
.contentSection.voiceSection .voice .title {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--white, #FFF);
}
.contentSection.voiceSection .voice p {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voice p {
    font-size: 14px;
  }
}
.contentSection.voiceSection .voice .link {
  justify-content: center;
}
.contentSection.voiceSection .voice .link_button {
  border-radius: 10px;
  background: var(--white, #FFF);
  color: var(--main_text_02, #138750);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  .contentSection.voiceSection .voice .link_button {
    font-size: 16px;
    padding: 20px;
    gap: 0;
    width: 100%;
  }
}
.contentSection.locationsPageSection .mymap {
  padding: 100px 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .mymap {
    padding: 30px 20px 60px;
  }
}
.contentSection.locationsPageSection .mymap iframe {
  border: none;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .mymap iframe {
    height: 260px;
  }
}
.contentSection.locationsPageSection .locationsList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList {
    padding: 0 20px;
  }
}
.contentSection.locationsPageSection .locationsList + h2 {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList + h2 {
    margin-top: 60px;
  }
}
.contentSection.locationsPageSection .locationsList_item {
  border-radius: 10px;
  background: #EAF7F1;
  display: flex;
  gap: 30px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item {
    padding: 30px 20px 40px;
    flex-direction: column;
    gap: 30px;
  }
}
.contentSection.locationsPageSection .locationsList_item .box01 {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box01 {
    width: 100%;
  }
}
.contentSection.locationsPageSection .locationsList_item .box01 .images {
  height: 250px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box01 .images {
    height: 160px;
  }
}
.contentSection.locationsPageSection .locationsList_item .box01 .images img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 0 0 var(--main_02, #F2CF5C);
}
.contentSection.locationsPageSection .locationsList_item .reserveList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 27px;
}
.contentSection.locationsPageSection .locationsList_item .reserveList_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--white, #FFF);
  padding: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  gap: 10px;
}
.contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve01 a, .contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve01 div {
  color: var(--accent, #E76668);
  border: 1px solid var(--accent, #E76668);
}
.contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve02 a, .contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve02 div {
  color: var(--main, #3CB37A);
  border: 1px solid var(--main, #3CB37A);
}
.contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve03 a, .contentSection.locationsPageSection .locationsList_item .reserveList_item.reserve03 div {
  color: var(--main_text, #EAAD1C);
  border: 1px solid var(--main_02, #F2CF5C);
}
.contentSection.locationsPageSection .locationsList_item .box02 {
  width: calc(100% - 280px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 {
    width: 100%;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .title {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .title {
    text-align: center;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .address {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .address {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .address::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_pin01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.contentSection.locationsPageSection .locationsList_item .box02 .phone {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .phone {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .phone::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_phone03.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.contentSection.locationsPageSection .locationsList_item .box02 p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 p {
    font-size: 14px;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 15px 30px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .link_button {
    width: 100%;
    text-align: center;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper {
  margin-top: 10px;
  overflow-x: auto;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  border-radius: 5px;
  border-bottom: 1px solid #7D7D7D;
  border-left: 1px solid #7D7D7D;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table tr:first-child td:first-child {
  border-top-left-radius: 5px;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table tr:first-child td:last-child {
  border-top-right-radius: 5px;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table td {
  padding: 10px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  border-top: 1px solid #7D7D7D;
  border-right: 1px solid #7D7D7D;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table td {
    font-size: 14px;
    padding: 8px;
  }
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table td a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: var(--main_text_02, #138750);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table td {
  background: var(--white, #FFF);
}
.contentSection.locationsPageSection .locationsList_item .box02 .tableWrapper table td.table_data {
  background: var(--beige, #FDF9F2);
  text-align: left;
  font-weight: 700;
  width: 35%;
}
@media screen and (max-width: 767px) {
  .contentSection.locationsPageSection .locationsList_item .box02 .reserveList {
    margin-top: 10px;
  }
}
.contentSection.singleLocationSection {
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection {
    padding: 30px 20px 60px;
  }
}
.contentSection.singleLocationSection .entry .address,
.contentSection.singleLocationSection .entry .phone {
  font-size: 32px;
  line-height: 160%;
  font-style: normal;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .address,
  .contentSection.singleLocationSection .entry .phone {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    padding-left: 30px;
    position: relative;
    text-align: left;
    justify-content: flex-start;
  }
}
.contentSection.singleLocationSection .entry .address {
  margin-bottom: 20px;
}
.contentSection.singleLocationSection .entry .address::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/icon_pin01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .address::before {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.contentSection.singleLocationSection .entry .phone::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/icon_phone03.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 90%;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .phone::before {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.contentSection.singleLocationSection .entry .location-gallery {
  margin-top: 40px;
}
.contentSection.singleLocationSection .entry .location-gallery .slick-slide {
  height: auto;
}
.contentSection.singleLocationSection .entry .location-gallery .slider-for {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .location-gallery .slider-for {
    margin-bottom: 20px;
  }
}
.contentSection.singleLocationSection .entry .location-gallery .slider-for .gallery-main-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .location-gallery .slider-for .gallery-main-item img {
    height: 200px;
  }
}
.contentSection.singleLocationSection .entry .location-gallery .slider-nav {
  display: flex;
  justify-self: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .location-gallery .slider-nav {
    gap: 20px;
  }
}
.contentSection.singleLocationSection .entry .location-gallery .slider-nav .gallery-thumb-item {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .location-gallery .slider-nav .gallery-thumb-item {
    width: calc((100% - 20px) / 2);
  }
}
.contentSection.singleLocationSection .entry .location-gallery .slider-nav .gallery-thumb-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 177px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .location-gallery .slider-nav .gallery-thumb-item img {
    height: 159px;
  }
}
.contentSection.singleLocationSection .entry .entryInfo {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .entryInfo {
    padding: 20px 0;
  }
}
.contentSection.singleLocationSection .entry .entryInfo * {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.contentSection.singleLocationSection .entry .map {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .map {
    margin-bottom: 60px;
  }
}
.contentSection.singleLocationSection .entry .map iframe {
  border: none;
  width: 100%;
  height: 400px;
  display: block;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .map iframe {
    height: 138px;
  }
}
.contentSection.singleLocationSection .entry .map .accessWrapper {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .map .accessWrapper {
    display: block;
    font-size: 14px;
  }
  .contentSection.singleLocationSection .entry .map .accessWrapper > div {
    display: inline;
    line-height: 160%;
  }
}
.contentSection.singleLocationSection .entry .openingHours {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .openingHours {
    margin-bottom: 60px;
  }
}
.contentSection.singleLocationSection .entry .openingHours table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  border: 1px solid #3CB37A;
  overflow: hidden;
  width: 100%;
}
.contentSection.singleLocationSection .entry .openingHours table th, .contentSection.singleLocationSection .entry .openingHours table td {
  padding: 20px 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .openingHours table th, .contentSection.singleLocationSection .entry .openingHours table td {
    font-size: 14px;
    padding: 10px 3px;
    width: 12.5%;
  }
}
.contentSection.singleLocationSection .entry .openingHours table th {
  background-color: var(--main, #3CB37A);
  color: var(--white, #FFF);
  font-weight: 700;
}
.contentSection.singleLocationSection .entry .openingHours table td {
  background-color: var(--beige, #FDF9F2);
}
.contentSection.singleLocationSection .entry .openingHours table td.title01 {
  font-weight: 700;
  color: #138750;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .openingHours table td.title01 {
    padding: 10px 5px;
  }
}
.contentSection.singleLocationSection .entry .openingHours table td.title02 {
  font-weight: 700;
  color: #EAAD1C;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .openingHours table td.title02 {
    padding: 10px 5px;
  }
}
.contentSection.singleLocationSection .entry .openingHours .location_holiday {
  text-align: right;
  margin-top: 15px;
  color: var(--accent, #E76668);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.contentSection.singleLocationSection .entry .reserveEntry {
  border-radius: 5px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry {
    flex-direction: column;
    padding: 20px;
    padding: 30px 20px;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .spWrapper {
  display: flex;
  align-items: center;
}
.contentSection.singleLocationSection .entry .reserveEntry .spWrapper img {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry .spWrapper img {
    width: 91px;
    margin-right: 10px;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .title {
  text-align: center;
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .title {
    font-size: 16px;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .phone {
  border-bottom: 1px solid var(--white, #FFF);
  padding-bottom: 5px;
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .phone a {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .phone a {
    font-size: 28px;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_phone .phone::before {
  background-image: url(../images/icon_phone01.svg);
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other {
    width: 100%;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section + * {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section + * {
    margin-top: 10px;
  }
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  background: var(--white, #FFF);
  padding: 20px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  gap: 10px;
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve01 a, .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve01 div {
  color: var(--accent, #E76668);
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve02 a, .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve02 div {
  color: var(--main, #3CB37A);
}
.contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve03 a, .contentSection.singleLocationSection .entry .reserveEntry .reserveEntry_other .location-section.reserve03 div {
  color: var(--main_text, #EAAD1C);
}
.contentSection.newsPageSection {
  max-width: 100%;
  background: var(--bk, #F3EDE0);
  padding: 80px 20px 160px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection {
    padding: 30px 20px 60px;
  }
}
.contentSection.newsPageSection .news {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 840px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .news {
    gap: 10px;
  }
}
.contentSection.newsPageSection .news_link {
  display: block;
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  background-image: url(../images/icon_arrowRight02.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: auto;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .news_link {
    background-position: calc(100% - 20px) center;
    background-size: 20px auto;
    padding: 10px;
    padding-right: 50px;
  }
}
.contentSection.newsPageSection .news_link span {
  display: block;
}
.contentSection.newsPageSection .news_link .date {
  color: var(--main, #3CB37A);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .news_link .date {
    font-size: 12px;
  }
}
.contentSection.newsPageSection .news_link .title {
  margin-top: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .news_link .title {
    margin-top: 5px;
    font-size: 14px;
  }
}
.contentSection.newsPageSection .pagination {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .pagination {
    margin-top: 60px;
  }
}
.contentSection.newsPageSection .pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contentSection.newsPageSection .pagination .page-numbers li a, .contentSection.newsPageSection .pagination .page-numbers li > span {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 10px 21px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--main, #3CB37A);
  background: #FFF;
  color: var(--main, #3CB37A);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .contentSection.newsPageSection .pagination .page-numbers li a, .contentSection.newsPageSection .pagination .page-numbers li > span {
    width: 45px;
    height: 45px;
  }
}
.contentSection.newsPageSection .pagination .page-numbers li a.prev, .contentSection.newsPageSection .pagination .page-numbers li a.next, .contentSection.newsPageSection .pagination .page-numbers li > span.prev, .contentSection.newsPageSection .pagination .page-numbers li > span.next {
  border: none;
  background-color: transparent;
}
.contentSection.newsPageSection .pagination .page-numbers li a.prev, .contentSection.newsPageSection .pagination .page-numbers li > span.prev {
  background-image: url(../images/icon_arrowLeft_green01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.contentSection.newsPageSection .pagination .page-numbers li a.next, .contentSection.newsPageSection .pagination .page-numbers li > span.next {
  background-image: url(../images/icon_arrowRight_green02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.contentSection.newsPageSection .pagination .page-numbers li a.current, .contentSection.newsPageSection .pagination .page-numbers li > span.current {
  background: var(--main, #3CB37A);
  color: var(--white, #FFF);
}
.contentSection.newsSingleSection {
  padding: 100px 20px;
  max-width: 100%;
}
.contentSection.newsSingleSection .newsSingle {
  max-width: 840px;
  margin: auto;
  border-radius: 10px;
  border: 1px solid var(--bk, #F3EDE0);
  background: var(--beige, #FDF9F2);
  padding: 30px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle {
    font-size: 14px;
  }
}
.contentSection.newsSingleSection .newsSingle b, .contentSection.newsSingleSection .newsSingle strong {
  font-weight: 700;
}
.contentSection.newsSingleSection .newsSingle * {
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.contentSection.newsSingleSection .newsSingle * + * {
  margin-top: 30px;
}
.contentSection.newsSingleSection .newsSingle .date {
  color: var(--main, #3CB37A);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle .date {
    font-size: 18px;
  }
}
.contentSection.newsSingleSection .newsSingle > .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.2px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle > .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 1px;
    margin-top: 10px;
  }
}
.contentSection.newsSingleSection .newsSingle h1 {
  color: var(--main, #3CB37A);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.2px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main, #3CB37A);
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h1 {
    font-size: 20px;
    padding-bottom: 5px;
    line-height: 160%;
  }
}
.contentSection.newsSingleSection .newsSingle h2 {
  color: var(--main, #3CB37A);
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.15px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h2 {
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.95px;
  }
}
.contentSection.newsSingleSection .newsSingle h3 {
  padding-left: 26px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.9px;
  }
}
.contentSection.newsSingleSection .newsSingle h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--main, #3CB37A);
}
.contentSection.newsSingleSection .newsSingle h4 {
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.05px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main_text, #EAAD1C);
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h4 {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.85px;
    padding-bottom: 5px;
  }
}
.contentSection.newsSingleSection .newsSingle h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1px;
  padding: 10px;
  background: #F4EED9;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.8px;
  }
}
.contentSection.newsSingleSection .newsSingle h6 {
  color: var(--main_text, #EAAD1C);
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.8px;
  }
}
.contentSection.newsSingleSection .newsSingle a {
  color: var(--main, #3CB37A);
  text-decoration-line: underline;
}
.contentSection.newsSingleSection .newsSingle .wp-block-image {
  margin: 30px 0;
}
.contentSection.newsSingleSection .newsSingle .wp-block-image img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.contentSection.newsSingleSection .newsSingle ul, .contentSection.newsSingleSection .newsSingle ol {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle ul, .contentSection.newsSingleSection .newsSingle ol {
    margin-top: 15px;
  }
}
.contentSection.newsSingleSection .newsSingle ul li, .contentSection.newsSingleSection .newsSingle ol li {
  position: relative;
}
.contentSection.newsSingleSection .newsSingle ul li::before, .contentSection.newsSingleSection .newsSingle ol li::before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #1C1C1C;
}
.contentSection.newsSingleSection .newsSingle ul li + *, .contentSection.newsSingleSection .newsSingle ol li + * {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .newsSingle ul li + *, .contentSection.newsSingleSection .newsSingle ol li + * {
    margin-top: 5px;
  }
}
.contentSection.newsSingleSection .newsSingle blockquote {
  background: #FFF;
  padding: 15px;
}
.contentSection.newsSingleSection .link {
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .link {
    margin-top: 60px;
  }
}
.contentSection.newsSingleSection .link_button {
  border-radius: 10px;
  background: var(--gd, linear-gradient(92deg, #3CB37A 0.31%, #2EAA6F 99.69%));
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contentSection.newsSingleSection .link_button {
    font-size: 16px;
    padding: 20px;
    width: 100%;
  }
}
.contentSection.newsSingleSection .link_button img {
  display: block;
  margin-right: 0;
}

.navBar {
  z-index: 10;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
}
.navBar_link {
  display: block;
}
.navBar_link img {
  display: block;
}

.footer {
  padding: 60px 20px 40px;
  background: var(--main, #3CB37A);
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 20px 120px;
  }
}
.footerLinkTop {
  position: absolute;
  top: -130px;
  right: 100px;
}
@media screen and (max-width: 767px) {
  .footerLinkTop {
    right: 20px;
    top: -120px;
    width: 108px;
  }
}
.footerLinkTop_link {
  display: block;
}
.footerLinkTop_link img {
  display: block;
}
.footerInfo {
  text-align: center;
}
.footerInfo p {
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .footerInfo p {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
.footerLogo {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footerLogo {
    margin-top: 20px;
  }
}
.footerLogo_link {
  display: block;
  max-width: 210px;
  margin: auto;
}
.footerLogo_link img {
  display: block;
}
.footerNav01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px auto 50px;
}
@media screen and (max-width: 767px) {
  .footerNav01 {
    margin: 30px auto;
    gap: 10px;
  }
}
.footerNav01_item {
  max-width: 227px;
  width: 100%;
  border-radius: 10px;
  background: var(--white, #FFF);
}
@media screen and (max-width: 767px) {
  .footerNav01_item {
    max-width: 100%;
  }
}
.footerNav01_item.reserve01 a, .footerNav01_item.reserve01 div {
  color: var(--accent, #E76668);
}
.footerNav01_item.reserve02 a, .footerNav01_item.reserve02 div {
  color: var(--main, #3CB37A);
}
.footerNav01_item.reserve03 a, .footerNav01_item.reserve03 div {
  color: #EAAD1C;
}
.footerNav01_link {
  display: flex;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  cursor: pointer;
}
.footerNav02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .footerNav02 {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.footerNav02_link {
  display: block;
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.footer .external {
  max-width: 1320px;
  margin: auto;
  padding-top: 60px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer .external {
    padding-top: 20px;
  }
}
.footer .externalLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer .externalLinks {
    gap: 20px;
    flex-direction: column;
  }
}
.footer .externalLinks_item {
  color: var(--white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
.footer .externalLinks_item .title {
  line-height: 200%;
}
.footer .externalLinks_item ul {
  padding-left: 30px;
}
.footer .externalLinks_item ul li {
  position: relative;
}
.footer .externalLinks_item ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: -17px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--white, #FFF);
}
@media screen and (min-width: 768px) {
  .footer .externalLinks_item ul li + * {
    margin-top: 10px;
  }
}
.footer .externalLinks_item ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  color: var(--white, #FFF);
}
.footer .externalLinks_item ul li a:hover {
  text-decoration: underline;
}
.footer .externalLinks a {
  color: var(--white, #FFF);
  line-height: 200%;
}
.footer .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: var(--white, #FFF);
}
@media screen and (max-width: 767px) {
  .footer .copy {
    margin-top: 30px;
  }
}

.reserveModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  padding: 20px;
}
.reserveModal.show {
  opacity: 1;
  pointer-events: auto;
}
.reserveModal_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  cursor: pointer;
}
.reserveModal_close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .reserveModal_close {
    width: 30px;
    height: 30px;
  }
}
.reserveModal_content {
  display: flex;
  max-width: 520px;
  width: 100%;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 10px;
  background: #FFF;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .reserveModal_content {
    padding: 20px;
  }
}
.reserveModal_content .title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .title {
    font-size: 18px;
  }
}
.reserveModal_content .reserveList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList {
    gap: 15px;
  }
}
.reserveModal_content .reserveList_item {
  border-radius: 5px;
  border: 1px solid var(--main, #3CB37A);
  background: var(--beige, #FDF9F2);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reserveModal_content .reserveList_item .info .name {
  color: var(--main_text_02, #138750);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList_item .info .name {
    font-size: 14px;
  }
}
.reserveModal_content .reserveList_item .info .number {
  margin-top: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList_item .info .number {
    margin-top: 5px;
    font-size: 17px;
  }
}
.reserveModal_content .reserveList_item .reserveLink {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList_item .reserveLink {
    width: 60%;
    gap: 5px;
  }
}
.reserveModal_content .reserveList_item .reserveLink .details {
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid #9E9E9E;
  color: #9E9E9E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList_item .reserveLink .details {
    font-size: 12px;
    padding: 8px;
  }
}
.reserveModal_content .reserveList_item .reserveLink .phone {
  padding: 10px 15px;
  border-radius: 50px;
  background: var(--accent, #E76668);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .reserveModal_content .reserveList_item .reserveLink .phone {
    padding: 8px;
    gap: 5px;
    font-size: 12px;
  }
}
.reserveModal.reserveModal01 .reserveModal_content .title {
  color: var(--accent, #E76668);
}
.reserveModal.reserveModal01 .reserveModal_content .reserveList_item .reserveLink .phone {
  background: var(--accent, #E76668);
}
.reserveModal.reserveModal02 .reserveModal_content .title {
  color: var(--main, #3CB37A);
}
.reserveModal.reserveModal02 .reserveModal_content .reserveList_item .reserveLink .phone {
  background: var(--main, #3CB37A);
}
.reserveModal.reserveModal03 .reserveModal_content .title {
  color: var(--main_text, #EAAD1C);
}
.reserveModal.reserveModal03 .reserveModal_content .reserveList_item .reserveLink .phone {
  background: var(--main_text, #EAAD1C);
}