* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Hiragino Kaku Gothis Pro";
  src: url("./fonts/hiragino-kaku-gothic-pro-w3.otf");
  font-style: normal;
}
html {
  font-family: "Hiragino Kaku Gothis Pro", sans-serif;
  font-size: 10px!important;
  color: #000;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  width: 100%;
}
.header__container {
  max-width: 952px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 10px;
  position: relative;
}
.header__page-top-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  background-color: #128061;
  border: 0;
  width: 52px;
  height: 52px;
  right: 50px;
  bottom: 100px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header__page-top-button {
    right: 25px;
    bottom: 50px;
    border-radius: 50%;
  }
}
.header__page-top-button::before {
  position: absolute;
  content: "";
  background: url("../../img/icons/arrow-top.svg") no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__page-top-button.show {
  opacity: 1;
  visibility: visible;
}
.header__burger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__burger {
    display: block;
    cursor: pointer;
  }
  .header__burger.active .header__bar:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active .header__bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header__burger.active .header__bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
.header__bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  border-radius: 39px;
  background-color: #128061;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__logo {
  width: 217px;
  height: 40px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 195px;
    height: 36px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-list--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-list--sp {
    display: block !important;
    position: fixed;
    background-color: #128061;
    width: 100%;
    height: 100vh;
    right: -100%;
    top: 69px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  .header__nav-list--sp.active {
    right: 0;
    padding: 0 3%;
  }
}
.header__nav-list-title {
  font: 600 1.4rem "Poppins", sans-serif;
  color: #fff;
  background-color: #2c846b;
  padding: 16px 10px;
  margin: 56px 0 43px;
  letter-spacing: 0.11em;
}
.header__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 24px;
}
.header__link-item:nth-child(4) {
  padding-right: 12px;
}
.header__link-item:last-child {
  padding-right: 0;
}
.header__link-item--sp {
  padding: 16px 10px;
  border-bottom: 1px solid #fff;
  position: relative;
}
.header__link-item--sp::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/sp-menu-arrow.svg") no-repeat;
  background-size: cover;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__link-item--sp:nth-child(4) {
  padding-right: 0;
}
.header__nav-link {
  font: 400 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.header__nav-link--green {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #128061;
  color: #fff;
  width: 108px;
  min-height: 36px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.header__nav-link--green:hover {
  background-color: #fff;
  border: 1px solid #128061;
}
.header__nav-link--sp {
  font: 500 1.6rem "Poppins", sans-serif;
  color: #fff;
}
.header__nav-link:hover {
  color: #128061;
}
.header__menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8fdfb;
  color: #128061;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #000;
}
.header__menu-container--green {
  background-color: #2e5c51;
  color: #fff;
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px;
}
.header__menu-item::after {
  position: absolute;
  content: "";
  background-color: #2c846b;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}
.header__menu-item--white::after {
  background-color: #fff;
  height: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__menu-item:last-child {
  border-right: 0;
}
.header__menu-item:last-child::after {
  display: none;
}
.header__menu-link {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1em;
  width: 125px;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .header__menu-link {
    font-size: 10px;
    width: 85px;
  }
}
.header__menu-link:hover {
  opacity: 0.7;
}

.footer {
  color: #fff;
}
.footer__copyright-section {
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .footer__copyright-section {
    padding: 16px 23px;
  }
}
.footer__container {
  background-color: #403f3f;
  padding: 50px 17%;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding: 50px 17px;
  }
}
.footer__contain-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #53c0a2;
  padding-bottom: 15px;
}
.footer__copyright {
  font: italic 1.1rem "Hiragino Kaku Gothis Pro", sans-serif;
  margin-top: 10px;
  text-align: center;
}
.footer__logo {
  width: 336px;
  height: 62px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__text-container {
  max-width: 185px;
  width: 100%;
  text-align: center;
}
.footer__text {
  font-size: 1.2rem;
  font-weight: 400;
}
.footer__list-container {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
.footer__link-item {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.footer__link-item:hover {
  color: #53c0a2;
}
.footer__socials-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.footer__twitter-logo, .footer__instagram-logo {
  width: 35px;
  height: 32px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.footer__twitter-logo:hover, .footer__instagram-logo:hover {
  opacity: 0.7;
}
.footer__ads-banner {
  width: 100%;
  height: 122px;
}
.footer__copyright-text {
  font-size: 1.1rem;
  font-weight: 300;
}
.footer__copyright-text--jp, .footer__copyright-text--en {
  font-size: 1.2rem;
  color: #575757;
}
.footer__copyright-text--en {
  margin-bottom: 8px;
}

.common {
  padding-top: 165px;
}
.common__section--pb30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .common__section--pb30 {
    padding-bottom: 0;
  }
}
.common__section-container {
  max-width: 952px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 952px) {
  .common__section-container {
    max-width: 100%;
    padding: 8px 15px 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--owl {
    padding-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--topic {
    padding-top: 0 !important;
  }
}
.common__section-container--unset {
  padding: 0;
}
.common__section-container--pt31 {
  padding: 30px 0 62px;
}
@media screen and (max-width: 767px) {
  .common__section-container--pt31 {
    padding: 16px 8px 40px !important;
  }
}
.common__section-container--pt30 {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--pt30 {
    padding: 16px 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__section-container--sp {
    padding: 16px 8px !important;
  }
}
.common__section-container--pb40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .common__section-container--pb40 {
    padding: 13px 15px !important;
  }
}
.common__section-container--p43 {
  padding: 43px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--p43 {
    padding: 16px 8px !important;
  }
}
.common__section-container--p40 {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--p40 {
    padding: 15px !important;
  }
}
.common__section-container--pt60 {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .common__section-container--pt60 {
    padding: 15px !important;
  }
}
.common__section-container--p25 {
  padding: 25px 0 26px;
}
@media screen and (max-width: 767px) {
  .common__section-container--p25 {
    padding: 16px 8px !important;
  }
}
.common__title {
  font: 600 2.4rem "Hiragino Kaku Gothis Pro", sans-serif;
  color: #333;
  line-height: 1em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .common__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.common__title--white-centered {
  text-align: center;
  color: #f8fdfb;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .common__title--white-centered {
    margin-bottom: 16px;
  }
}
.common__title--mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .common__title--mb20 {
    margin-bottom: 16px;
    text-align: center;
  }
}
.common__title--new {
  background-color: #128061;
  color: #f8fdfb;
  text-align: center;
  padding: 8px 0;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .common__title--new {
    font-size: 14px;
  }
}
.common__title--black {
  color: #000;
  font-weight: 600;
  text-align: center;
}
.common__title--light {
  font-weight: 300;
  color: #2e5c51;
  padding-left: 8px;
}
.common__title--about {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .common__title--about {
    margin-bottom: 13px;
  }
}
.common__title--en {
  margin-bottom: 0;
  line-height: normal;
}
.common__title--jp {
  font-size: 1rem;
  font-weight: 600;
  color: #61c0a5;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .common__title--jp {
    margin-bottom: 6px;
  }
}

.top {
  padding-top: 135px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 130px;
  }
}
.top__content {
  line-height: 1em;
}
.top__mv-container {
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top__mv-container {
    margin-bottom: 0;
  }
}
.top__mv-container::before {
  position: absolute;
  content: "";
  background: url("../../img/desktop-mv-image.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__mv-container::before {
    height: 263px;
  }
}
.top__mv-container-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__mv-container-sp {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }
}
.top__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__image {
  width: 100%;
  height: 100%;
}
.top__text-container {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .top__text-container {
    padding-top: 38px;
  }
}
.top__pointer-text {
  font: 700 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__pointer-text {
    font-size: 12px;
    text-shadow: 0 0 28px #000;
  }
}
.top__location-container {
  padding-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__location-container {
    display: none;
  }
}
.top__search-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__search-container {
    margin-top: 14px;
    padding-bottom: 16px;
  }
}
.top__search-box {
  font-size: 1.4rem;
  width: 406px;
  height: 39px;
  border: 1px solid #bcbcbc;
  border-radius: 6px 0 0 6px;
  border-right: 0;
  padding: 11px 10px;
}
@media screen and (max-width: 767px) {
  .top__search-box {
    width: 281px;
  }
}
.top__search-box input {
  font: 500 1.4rem "Hiragino Kaku Gothis Pro", sans-serif;
}
.top__search-box::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::-moz-placeholder {
  font-size: 1.4rem;
}
.top__search-box:-ms-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::-ms-input-placeholder {
  font-size: 1.4rem;
}
.top__search-box::placeholder {
  font-size: 1.4rem;
}
.top__finder-icon {
  background-color: #2e5c51;
  width: 55px;
  height: 39px;
  border: 0;
  border-radius: 0 6px 6px 0;
}
.top__location-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #efefef;
  padding: 10px 0 15px;
  border-radius: 14px 14px 0 0;
}
.top__search-icon {
  width: 16px;
  height: 16px;
  margin-left: 14px;
}
.top__location-title {
  font: 500 1.6rem "ABeeZee", sans-serif;
  color: #575757;
}
.top__content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 25px 0;
}
.top__content-wrapper::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
.top__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #fff;
  width: 69%;
  border-radius: 2px;
  border: 1px solid #d3d3d3;
  position: relative;
}
.top__button-container::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/button-next.svg") no-repeat;
  background-size: cover;
  width: 5px;
  height: 9px;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__button-container--green {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 51px;
  background-color: #2e5c51;
}
.top__button-container--green::after {
  display: none;
}
.top__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2e5c51;
  max-width: 53px;
  width: 100%;
  padding-top: 7px;
}
.top__pin-icon {
  width: 19px;
  height: 19px;
}
.top__pin-text {
  color: #fffafb;
  line-height: 2.3em;
}
.top__button-text {
  font: 500 1.2rem "ABeeZee", sans-serif;
  color: #aaa;
  padding-left: 63px;
}
.top__button-text--highlighted {
  font-size: 1.3rem;
  letter-spacing: 1.17px;
  padding-left: 0;
  color: #f8ffa8;
}
.top__button-text--small {
  font-size: 1rem;
}
.top__button-text--white {
  color: #fff;
  padding-left: 0;
}
.top__section-container {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.top__section-container--news {
  padding-top: 19px;
  margin-bottom: 10px;
}
.top__section-container--new {
  padding: 0;
  background-color: #128061;
}
.top__section-container--faq {
  padding: 0;
}
.top__section-container--white {
  background-color: #fff;
}
.top__section-container--featured {
  padding: 16px 15px;
}
.top__section-popular {
  position: relative;
}
.top__section-popular::before {
  position: absolute;
  content: "";
  background: url("../../img/article-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-area {
  position: relative;
  margin-bottom: 30px;
}
.top__section-area::before {
  position: absolute;
  content: "";
  background: url("../../img/shining-bg.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-info {
  position: relative;
}
.top__section-info::before {
  position: absolute;
  content: "";
  background: url('../../img/info-bg.png') no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-faq {
  position: relative;
}
.top__section-faq::before {
  position: absolute;
  content: "";
  background: url("../../img/faq-bg.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-special {
  position: relative;
}
.top__section-special::before {
  position: absolute;
  content: "";
  background: url("../../img/bg-special.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.top__section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.top__section-title-wrap--centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.top__section-title {
  font: 700 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.6rem;
}
.top__section-title--white {
  color: #fff;
}
.top__section-title--faq {
  padding-bottom: 7px;
}
.top__section-title--new {
  color: #f8fdfb;
}
.top__section-title--featured {
  text-align: center;
  margin-bottom: 16px;
}
.top__section-title--special {
  margin-bottom: 16px;
}
.top__category-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__category-list-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 6px;
    margin-bottom: 4px;
  }
}
.top__list-container {
  font: 500 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  background-color: #83bca0;
  border-radius: 5px;
  color: #fff;
  padding: 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__list-container {
    font-size: 10px;
    padding: 4px;
  }
}
.top__list-container--active {
  background-color: #128061;
}
.top__list-container:hover {
  background-color: #128061;
}
.top__banner-image {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__banner-image--owl {
    display: none;
  }
}
.top__banner-image--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__banner-image--sp {
    display: block;
    width: 100%;
    height: 79px;
  }
}
.top__banner-image:hover {
  opacity: 0.7;
}
.top__ads-wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__ads-wrapper {
    margin-top: 0;
  }
}
.top__ads-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__ads-link-wrap {
    padding-top: 8px;
  }
}
.top__question-icon {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .top__question-icon {
    width: 17px;
    height: 17px;
  }
}
.top__question-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2em;
  text-decoration-line: underline;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__question-text {
    font-size: 12px;
  }
}
.top__question-text:hover {
  color: #83bca0;
}
.top__section-list {
  display: -webkit-box;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__section-list {
    gap: 10px;
    padding-bottom: 17px;
  }
}
.top__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 207px;
  min-height: 46px;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__list-item {
    width: 80px;
    min-height: 35px;
  }
}
.top__list-item::after {
  position: absolute;
  content: "";
  background-color: #61c0a5;
  border-radius: 2px;
  width: 207px;
  height: 46px;
  z-index: -1;
  top: 5px;
  left: 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__list-item::after {
    width: 80px;
    height: 35px;
    left: 3px;
  }
}
.top__list-item:hover::after {
  top: 0;
  left: 0;
}
.top__item-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 11px;
}
@media screen and (max-width: 767px) {
  .top__item-text-wrapper {
    padding: 4px 8px;
  }
}
.top__item-title {
  font: 400 1.4rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.2em;
  color: #2e5c51;
}
@media screen and (max-width: 767px) {
  .top__item-title {
    font-size: 11px;
  }
}
.top__item-text {
  font: 600 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.2em;
  color: #61c0a5;
}
@media screen and (max-width: 767px) {
  .top__item-text {
    font-size: 12px;
  }
}
.top__new-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 18px;
}
@media screen and (max-width: 952px) {
  .top__new-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top__news-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .top__news-item-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 8px;
  }
}
.top__news-item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 468px;
  min-height: 77px;
  border: 1px solid #61c0a5;
  background-color: #f8fdfb;
  border-radius: 2px;
  padding: 5px 5px 7px;
  position: relative;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__news-item-container {
    width: 100%;
    min-height: 58px;
    padding: 4px;
  }
  .top__news-item-container:last-child {
    display: none;
  }
}
.top__news-item-container::after {
  content: "";
  position: absolute;
  background: url("../../img/icons/news-button.svg") no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__news-item-container:hover {
  opacity: 0.7;
}
.top__news-date-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  background: -webkit-gradient(linear, left top, right top, from(#128061), color-stop(23.5%, #327364), color-stop(49.5%, #2e5c51), color-stop(79%, #327364), color-stop(99%, #128061));
  background: linear-gradient(90deg, #128061 0%, #327364 23.5%, #2e5c51 49.5%, #327364 79%, #128061 99%);
  border-radius: 3px;
  top: 0;
  right: -65px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__news-date-wrapper {
    right: -54px;
    padding: 0 8px;
  }
}
.top__news-date {
  font: italic 1.4rem "ABeeZee", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 11px;
    font-style: unset;
  }
}
.top__news-link-text {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: right;
  line-height: 1em;
  text-decoration-line: underline;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .top__news-link-text {
    font-size: 12px;
  }
}
.top__news-link-text:hover {
  color: #128061;
}
.top__news-link-contain {
  text-align: right;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__news-link-contain {
    margin-bottom: 0;
  }
}
.top__news-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.top__news-image {
  width: 64px;
  height: 66px;
}
@media screen and (max-width: 767px) {
  .top__news-image {
    width: 49px;
    height: 50px;
  }
}
.top__news-text {
  font: 400 1.6rem "Hiragino Kaku Gothis Pro", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top__news-text {
    font-size: 12px;
  }
}
.top__content-container {
  text-align: center;
  padding: 16px 9px;
}
.top__content-container--finder {
  margin-bottom: 20px;
}
.top__content-container--new {
  padding: 8px 15px;
}
.top__content-container--popular {
  padding-bottom: 40px;
}
.top__popular-list {
  padding-top: 0 !important;
}
.top__popular-list .splide__arrow {
  display: none;
}
.top__popular-list .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #61c0a5;
}
@media screen and (max-width: 767px) {
  .top__popular-list .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
.top__popular-list .splide__pagination {
  gap: 4px;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .top__popular-list .splide__pagination {
    bottom: -17px;
  }
}
.top__featured-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 20px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__featured-list {
    gap: 14px 6px;
  }
}
.top__featured-image {
  width: 301px;
  height: 170px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__featured-image {
    width: 110px;
    height: 65px;
  }
}
.top__featured-image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__featured-image:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__featured-ads-image {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__featured-ads-image:hover {
  opacity: 0.7;
}
.top__special-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 952px) {
  .top__special-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top__special-wrapper:hover {
  opacity: 0.7;
}
.top__special-text-wrapper {
  max-width: 223px;
  width: 100%;
}
.top__special-container--new {
  border-bottom: 1px solid #83bca0;
}
@media screen and (max-width: 950px) {
  .top__special-container--new {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__special-container--new {
    padding-bottom: 6px;
  }
}
.top__special-image {
  width: 224px;
  height: 138px;
}
@media screen and (max-width: 767px) {
  .top__special-image {
    width: 130px;
    height: 80px;
  }
}
.top__special-text {
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  line-height: 2em;
  text-align: start;
  max-width: 222px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .top__special-text {
    font-size: 12px;
    letter-spacing: 0;
    max-width: 100%;
  }
}
.top__special-text--new {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  min-height: 63px;
  color: #000;
  line-height: 1.5em;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .top__special-text--new {
    min-height: unset;
  }
}
.top__special-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 952px) {
  .top__special-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__special-date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  color: #fff;
  padding: 4px 0;
}
.top__special-date-wrap--new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #128061;
  width: 90px;
  padding: 4px 2px;
}
.top__special-date-icon {
  width: 10px;
  height: 10px;
}
.top__special-date-text {
  font-size: 10px;
}
.top__finder-content-wrapper {
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.top__finder-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #128061;
  width: 301px;
  padding: 15px 8px;
  border-radius: 4px 4px 0 0;
}
@media screen and (max-width: 767px) {
  .top__finder-title-wrap {
    width: 193px;
  }
}
.top__finder-title {
  font-size: 2.4rem;
  line-height: 1em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__finder-title {
    font-size: 14px;
  }
}
.top__finder-image {
  width: 23px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .top__finder-image {
    width: 15px;
    height: 16px;
  }
}
.top__finder-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 27px 26px;
  gap: 8px;
  border: 1px solid #128061;
  background-color: #fff;
  border-radius: 0 4px 4px;
}
@media screen and (max-width: 767px) {
  .top__finder-content {
    padding: 8px;
  }
}
.top__finder-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 199px;
  min-height: 47px;
  padding: 16px 13px;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__finder-item {
    width: 48%;
    min-height: 43px;
    padding: 14px 14px 14px 12px;
  }
}
.top__finder-item::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/button-next-green.svg") no-repeat;
  background-size: cover;
  width: 21px;
  height: 21px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__finder-item::after {
    width: 20px;
    height: 20px;
  }
}
.top__finder-item:hover::after {
  right: -8px;
}
.top__finder-text {
  font-size: 1.6rem;
  font-weight: 300;
  color: #575757;
}
@media screen and (max-width: 767px) {
  .top__finder-text {
    font-size: 14px;
    line-height: 1em;
  }
}
.top__faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.top__faq-accordian-item.active .top__faq-container {
  border: 0;
  background-color: #128061;
  color: #f8fdfb;
  border-radius: 2px 2px 0 0;
}
.top__faq-accordian-item.active .top__faq-container::after {
  background: url("../../img/icons/toggle-minus-1.svg") no-repeat;
  background-size: cover;
}
.top__faq-accordian-item.active .top__faq-container--answer {
  display: block;
  color: #000;
  background-color: #fff;
  border: 1px solid #83bca0;
  border-radius: 0 0 2px 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__faq-accordian-item.active .top__faq-container--answer {
    padding: 8px;
  }
}
.top__faq-accordian-item.active .top__faq-container--answer::after {
  display: none;
}
.top__faq-container {
  background-color: #fff;
  border: 1px solid #83bca0;
  border-radius: 2px;
  width: 100%;
  padding: 16px 29px 16px 8px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top__faq-container::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/plus-button.svg") no-repeat;
  width: 22px;
  height: 22px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.top__faq-container--answer {
  display: none;
}
.top__faq-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.top__faq-q-text {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 26px;
  background-color: #2e5c51;
  border-radius: 2px;
}
.top__faq-accordian-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__faq-accordian-text {
    font-size: 12px;
  }
}
.top__faq-accordian-text--answer {
  line-height: 2em;
}
.top__model-list {
  padding-top: 0 !important;
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
}
.top__model-list .swiper {
  width: 100%;
  height: 266px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper {
    height: 170px;
  }
}
.top__model-list .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__model-list .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__model-list .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  bottom: 0;
}
.top__model-list .swiper-pagination-bullet {
  margin: unset !important;
  background: #2e5c51;
  opacity: 0.5;
}
.top__model-list .swiper-pagination-bullet-active {
  background: #2e5c51;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-container {
    padding: 9px;
    gap: 7px;
  }
}
.top__model-list .swiper-slide-active .top__model-image {
  width: 194px;
  height: 168px;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-image {
    width: 124px;
    height: 108px;
  }
}
.top__model-list .swiper-slide-active .top__model-name--jp {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-name--jp {
    font-size: 14px;
  }
}
.top__model-list .swiper-slide-active .top__model-name--en {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .top__model-list .swiper-slide-active .top__model-name--en {
    font-size: 8px;
  }
}
.top__model-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  background-color: #fbfbfb;
  padding: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__model-container {
    padding: 8px;
    gap: 6px;
  }
}
.top__model-image {
  width: 161px;
  height: 140px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__model-image {
    width: 103px;
    height: 89px;
  }
}
.top__model-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 0 8px;
  text-align: center;
}
.top__model-name {
  color: #2e5c51;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top__model-name--jp {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__model-name--jp {
    font-size: 11px;
  }
}
.top__model-name--en {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .top__model-name--en {
    font-size: 8px;
  }
}
.top__info-title-wrap {
  width: 222px;
  min-height: 55px;
  background-color: #128061;
  padding: 10px 18px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .top__info-title-wrap {
    width: 119px;
    min-height: 33px;
    padding: 8px 15px;
  }
}
.top__info-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__info-title {
    font-size: 14px;
  }
}
.top__info-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  background-color: #128061;
  border-radius: 0 4px 4px;
  padding: 20px;
  margin-top: -1px;
}
@media screen and (max-width: 952px) {
  .top__info-link-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .top__info-link-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 4px;
    gap: 2px;
  }
}
.top__info-link {
  width: 32%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8fdfb;
  border: 1px solid #61c0a5;
  border-radius: 2px;
  padding: 18px 24px 18px 4px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .top__info-link {
    width: 49% !important;
  }
}
@media screen and (max-width: 767px) {
  .top__info-link {
    width: 33%;
    min-height: 43px;
    padding: 8px 4px;
  }
}
.top__info-link::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/arrow-green-next.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  right: -4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__info-link:hover::after {
  right: -8px;
}
.top__info-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1em;
  color: #575757;
}
@media screen and (max-width: 767px) {
  .top__info-text {
    font-size: 10px;
  }
}
.top__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.splide {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .splide {
    padding-top: 14px;
  }
}
.splide__arrow {
  width: 52px;
  height: 52px;
  border: 3.5px solid #fff;
  background-color: #128061;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 44px;
    height: 44px;
  }
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev {
  left: 206px;
}
@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    left: 40px;
  }
}
.splide__arrow--prev::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/arrow-left.svg") no-repeat;
  width: 12px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__arrow--next {
  right: 206px;
}
@media screen and (max-width: 767px) {
  .splide__arrow--next {
    right: 40px;
  }
}
.splide__arrow--next::after {
  position: absolute;
  content: "";
  background: url("../../img/icons/arrow-right.svg") no-repeat;
  width: 22px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__pagination {
  bottom: -25px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .splide__pagination {
    bottom: -18px;
  }
}
.splide__pagination__page {
  background: #fff;
  width: 31px;
  height: 5px;
  border-radius: 0;
  opacity: 0.6;
}
.splide__pagination__page.is-active {
  background: #128061;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */
