@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  vertical-align: middle;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

a[href^="tel:"] {
  color: #555555;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a[href^="tel:"]:hover {
  color: #555555;
  text-decoration: none;
}
a[href^="tel:"]:active {
  color: #555555;
  text-decoration: none;
}
a[href^="tel:"]:visited {
  color: #555555;
  text-decoration: none;
}

.header {
  width: 94.5827232796vw;
  height: 90px;
  background-color: #fff;
  border-radius: 45px;
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 20;
  translate: -50% 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px 0 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 1023px) {
  .header {
    width: 100%;
    height: 50px;
    border-radius: unset;
    top: 0;
    padding: 0 6px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: sticky;
    left: 0;
    translate: 0 0;
  }
}

.header__logo {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 116px;
  }
}

.header__btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__btn {
    display: block;
    width: 28px;
    height: 28px;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 10;
  }
}

.header__btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #93c572;
  left: 50%;
  translate: -50% 0;
  transition: 0.4s;
  cursor: pointer;
}

.header__btn span:first-child {
  top: 3px;
}

.header__btn span:nth-child(2) {
  top: 10px;
}

.header__btn span:last-child {
  width: auto;
  height: auto;
  background-color: transparent;
  top: 17px;
}

.header__btn span:last-child:before {
  position: absolute;
  content: "menu";
  font-size: 10px;
  color: #93c572;
  text-transform: uppercase;
  top: 0;
  left: 0;
  translate: -50% 0;
  transition: all 0.3s ease-in-out;
}

.header__btn.is-active {
  cursor: pointer;
}
.header__btn.is-active span:nth-child(1) {
  top: 6px;
  transform: rotate(30deg);
}
.header__btn.is-active span:nth-child(2) {
  top: 6px;
  transform: rotate(-30deg);
}
.header__btn.is-active span:nth-child(3)::before {
  content: "CLOSE";
}

@media screen and (max-width: 1023px) {
  .header__menu {
    display: none;
  }
}

.header__menu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__link {
  color: #555555;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  cursor: pointer;
  background-image: linear-gradient(90deg, #555555, #555555);
  background-repeat: no-repeat;
  background-position: left 105%;
  background-size: 0 3px;
  transition: background-size 0.3s;
}
.header__link:hover {
  background-size: 100% 3px;
}

.header__link--contact {
  display: block;
  width: 148px;
  height: 48px;
  border-radius: 24px;
  background-color: #f7b560;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  transition: background-color 0.3s, color 0.3s;
}
.header__link--contact:hover {
  background-color: #fff;
  color: #f7b560;
}

.header__nav-area {
  top: 50px;
  display: none;
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  background-color: #F9F9F9;
  pointer-events: none;
  box-shadow: inset 0 6px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 1023px) {
  .header__nav-area {
    display: none;
  }
}

.header__nav-area.-active {
  left: 0;
  pointer-events: auto;
  display: block;
  padding: 17px 14px;
}

.global-navigation__list > li {
  padding-bottom: 19px;
  border-bottom: 2px solid #93c572;
}

.global-navigation__list > li + li {
  margin-top: 18px;
}

.global-navigation__link {
  display: flex;
  align-items: center;
  color: #555555;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
.global-navigation__link ::before {
  position: absolute;
  top: 42%;
  right: 1px;
  content: "";
  display: inline-block;
  background-color: #93c572;
  width: 10px;
  height: 2px;
  rotate: 40deg;
}
.global-navigation__link ::after {
  position: absolute;
  top: 65%;
  right: 1px;
  content: "";
  display: inline-block;
  background-color: #93c572;
  width: 25px;
  height: 2px;
}

.global-navigation__link-ja {
  background-image: linear-gradient(90deg, #555555, #555555);
  background-repeat: no-repeat;
  background-position: left 105%;
  background-size: 0 3px;
  transition: background-size 0.3s;
}
.global-navigation__link-ja:hover {
  background-size: 100% 3px;
}

.global-navigation__link-en {
  color: #f7b560;
  margin-left: 10px;
  font-size: 12px;
  font-family: "Archivo Narrow", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.header-contact__bottom {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #93c572;
  line-height: 1.5;
  position: relative;
}
.header-contact__bottom:nth-child(3) {
  margin: 9px 0px 24px;
}

.header__contact--btn {
  display: block;
  width: 300px;
  padding: 13px 18px;
  margin-inline: auto;
  text-align: center;
  background-color: #f7b560;
  border-radius: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.header__contact--btn:hover {
  background-color: #fff;
  color: #f7b560;
}

.header-contact__bottom--large {
  display: inline-block;
  color: #93c572;
  font-size: 20px;
  font-weight: bold;
}

.footer {
  width: 100%;
  background-color: #fff;
  padding: 80px 0px 25px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0px 25px;
  }
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
}

.footer__logo {
  display: block;
  width: 202px;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 28px;
  }
}

.footer__info-text {
  color: #555555;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}
.footer__info-text + .footer__info-text {
  margin-top: 24px;
  text-transform: uppercase;
}

.footer__menu {
  margin-bottom: 128px;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    margin-bottom: 34px;
  }
}
.footer__menu ul {
  display: flex;
  gap: 17px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  line-height: 0.5;
}
@media screen and (max-width: 767px) {
  .footer__menu ul {
    flex-direction: column;
    gap: 21px;
  }
}

.footer__link a {
  color: #555555;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__link {
    width: 100%;
  }
}

.footer__link-item {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  background-image: linear-gradient(90deg, #555555, #555555);
  background-repeat: no-repeat;
  background-position: left 110%;
  background-size: 0 3px;
  transition: background-size 0.3s;
}
.footer__link-item:hover {
  background-size: 100% 3px;
}
@media screen and (max-width: 1160px) {
  .footer__link-item {
    font-size: 16px;
  }
}

.footer__sns {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer__sns-item {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__sns-item .icon {
  color: #555555;
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-size: 20px;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .footer__sns-item .icon {
    font-size: 30px;
  }
}

.footer__copyright {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 12px;
  color: #555555;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn {
  width: 300px;
  height: 70px;
  border: 2px solid #93c572;
  border-radius: 35px;
  background-color: #fff;
  text-align: center;
  line-height: 64px;
  color: #93c572;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
.btn:hover {
  background-color: #93c572;
  color: #fff;
}
.btn-ja {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-weight: bold;
}

.container {
  margin-inline: auto;
  width: 70.2781844802vw;
}
@media screen and (max-width: 990px) {
  .container {
    width: auto;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin-inline: 15px;
  }
}
.container-white {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 767px) {
  .container-white {
    border-radius: 50px;
  }
}
.containersecond {
  width: 43.9238653001vw;
  min-width: 600px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .containersecond {
    width: auto;
    min-width: auto;
    margin-inline: 20px;
  }
}

.section-contact__container {
  background-color: #f7b560;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 45px 20px 50px;
  margin-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .section-contact__container {
    padding: 45px 20px 38px 20px;
    margin-bottom: 60px;
  }
}

.section-contact__heading {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-contact__heading {
    font-size: 30px;
    margin-bottom: 16px;
  }
}

.section-contact__text {
  color: #fff;
  font-size: 18px;
  padding-bottom: 35px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-contact__text {
    margin-bottom: 14px;
    line-height: 1.5;
    margin-bottom: -16px;
  }
}

.section-contact__btn {
  display: block;
  margin-inline: auto;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .section-contact__btn {
    margin-bottom: 16px;
  }
}

.section-contact__bottom {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.section-contact__bottom--large {
  font-size: 30px;
  line-height: 1.3;
  font-family: "Archivo Narrow", sans-serif;
  color: #fff;
  letter-spacing: 0.14em;
}
.section-contact__bottom + .section-contact__bottom {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .section-contact__bottom + .section-contact__bottom {
    margin-top: 12px;
  }
}
.section-contact__bottom a[href^="tel:"] {
  color: #fff;
  text-decoration: none;
}
.section-contact__bottom a[href^="tel:"]:hover {
  color: #fff;
  text-decoration: none;
}
.section-contact__bottom a[href^="tel:"]:active {
  color: #fff;
  text-decoration: none;
}
.section-contact__bottom a[href^="tel:"]:visited {
  color: #fff;
  text-decoration: none;
}

.section__heading {
  font-size: 40px;
  color: #555555;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  width: fit-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section__heading {
    font-size: 30px;
  }
}
.section__heading:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../img/title-line.svg) center/contain no-repeat;
  top: 20px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading:before {
    top: 12px;
  }
}

.fv {
  width: 100%;
  height: clamp(600px, 100vh, 768px);
  background: url("../img/FV.jpg") center/cover no-repeat;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 550px;
  }
}

.fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__content {
    flex-direction: row;
    gap: 18px;
  }
}
@media screen and (max-width: 374px) {
  .fv__content {
    gap: 8px;
  }
}

.fv__logo {
  width: 204px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .fv__logo {
    width: 72px;
  }
}

.fv__catch {
  color: #93c572;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3019607843);
}
@media screen and (max-width: 1023px) {
  .fv__catch {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .fv__catch {
    font-size: 25px;
    text-shadow: none;
  }
}
@media screen and (max-width: 374px) {
  .fv__catch {
    font-size: 22px;
  }
}

.fv__catch-break {
  display: none;
}
@media screen and (max-width: 1023px) {
  .fv__catch-break {
    display: block;
  }
}

.fv__scroll {
  display: block;
  width: 60px;
  height: 94px;
  color: #fff;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  animation: infinite pop;
  animation-duration: 1s;
}
@media screen and (max-width: 767px) {
  .fv__scroll {
    display: none;
  }
}
.fv__scroll::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 62px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.fv__scroll:after {
  position: absolute;
  content: "";
  width: 3px;
  height: 20%;
  background-color: #fff;
  bottom: -2px;
  left: 56%;
  translate: -50% 0;
  rotate: 30deg;
}

@keyframes pop {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.fv__news {
  display: block;
  width: 336px;
  height: 108px;
  border-radius: 20px;
  background-color: #f7b560;
  position: absolute;
  bottom: 48px;
  right: 45px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #fff;
  padding: 14px 15px 18px 15px;
  left: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out background-color 0.3s, color 0.3s ease-in-out;
}
.fv__news:hover {
  color: #f7b560;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__news {
    width: 142px;
    height: 76px;
    border-radius: 10px;
    bottom: 20px;
    right: auto;
    left: 20px;
    padding: 8px 10px;
  }
}

/* フェードイン時のスタイル */
.fv__news.fade-in {
  transform: translateX(0);
  opacity: 1;
}

/* フェードアウト時のスタイル */
.fv__news.fade-out {
  transform: translateX(100%);
  opacity: 0;
}

.fv__news-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .fv__news-info {
    flex-direction: row;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 6px;
  }
}

.fv__news-heading {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .fv__news-heading {
    font-size: 14px;
  }
}

.fv__news-date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .fv__news-date {
    font-size: 10px;
  }
}

.fv__news-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .fv__news-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}

.about {
  position: relative;
  margin: 45px auto;
  padding-top: 116px;
  padding-bottom: 282px;
}
@media screen and (max-width: 767px) {
  .about {
    margin-bottom: 36px;
    padding-top: 88px;
    padding-bottom: 136px;
  }
}

.about__img {
  position: absolute;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
}
.about__img:first-of-type {
  width: min(14.6412884334vw, 200px);
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .about__img:first-of-type {
    width: 64px;
    left: 33px;
  }
}
.about__img:nth-of-type(2) {
  width: min(13.2503660322vw, 181px);
  top: 50px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .about__img:nth-of-type(2) {
    width: 56px;
    top: 5px;
    right: 42px;
  }
}
.about__img:nth-of-type(3) {
  width: min(14.6412884334vw, 200px);
  bottom: 68px;
  left: 108px;
}
@media screen and (max-width: 767px) {
  .about__img:nth-of-type(3) {
    width: 86px;
    bottom: 28px;
    left: 45px;
  }
}
.about__img:last-of-type {
  width: min(17.2767203514vw, 236px);
  bottom: 0;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .about__img:last-of-type {
    width: 98px;
    bottom: 3px;
    right: 58px;
  }
}

.about__img.blockIn {
  transform: translateY(0);
  opacity: 1;
}

.about__heading {
  width: 314px;
  margin: 0 auto 54px;
}
@media screen and (max-width: 767px) {
  .about__heading {
    width: 232px;
    margin-bottom: 18px;
  }
}

.about__text {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #555555;
}
@media screen and (max-width: 374px) {
  .about__text {
    font-size: 13px;
  }
}
.about__text + .about__text {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .about__text + .about__text {
    margin-top: 24px;
  }
}

.introduction {
  margin-bottom: 114px;
  padding-top: 100px;
  margin-top: 100px;
}

.introduction__inner {
  width: 85%;
  height: 730px;
  margin-left: 0;
  background-color: #fff;
  border-radius: 0 100px 100px 0;
  padding: 72px 50px 80px 0;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    width: 100%;
    height: 689px;
    border-radius: 0;
    padding: 50px 0;
    margin: 0 auto;
    margin-bottom: -40px;
  }
}

.introduction .introsuction__heading,
.introduction__tab--list,
.c-introduction__contents--txt p {
  margin-left: 18%;
}
@media screen and (max-width: 767px) {
  .introduction .introsuction__heading,
  .introduction__tab--list,
  .c-introduction__contents--txt p {
    margin: 0 4.2%;
  }
}

.introduction__tab--list {
  display: flex;
  gap: 19px;
  margin-bottom: -6px;
}
@media screen and (max-width: 767px) {
  .introduction__tab--list {
    justify-content: center;
    gap: 8px;
  }
}

.introduction__tab--list--item {
  font-size: 20px;
  font-weight: bold;
  color: #f7b560;
  background-color: #fff;
  width: 190px;
  height: 65px;
  display: block;
  text-align: center;
  align-content: center;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  margin: 26px 0 50px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .introduction__tab--list--item {
    font-size: 16px;
    width: 110px;
    height: 50px;
    border-radius: 10px;
    margin: 30px 0 40px;
  }
  .introduction__tab--list--item:last-child {
    font-size: 14px;
  }
}

.introduction__contents {
  position: relative;
}

.c-introduction__contents--txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  visibility: hidden;
  height: auto;
  color: #555555;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-introduction__contents--txt {
    margin: 0 auto;
  }
}

.c-introduction__contents--txt p {
  line-height: 24px;
  margin-bottom: 69px;
}
@media screen and (max-width: 767px) {
  .c-introduction__contents--txt p {
    margin-bottom: 40px;
  }
}

.is-btn-active {
  color: #fff;
  background-color: #93c572;
}

.is-contents-active {
  visibility: visible;
  height: 0;
}

.slider__item {
  max-width: 300px;
  width: 100%;
}

.slider__item {
  margin-left: 24px;
}

.slider__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 300/250;
}
@media screen and (max-width: 767px) {
  .slider__item img {
    width: 250px;
  }
}

.faq__container {
  margin-bottom: 120px;
  padding-top: 120px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .faq__container {
    margin-bottom: 82px;
  }
}

.faq__heading {
  margin-inline: auto;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .faq__heading {
    margin-bottom: 30px;
  }
}

.faq__item {
  width: 70.2781844802vw;
  margin: 0 auto;
  background-color: #fff;
  border: 3px solid #93c572;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  padding: 8px 40px;
}
@media screen and (max-width: 1023px) {
  .faq__item {
    width: 91.5080527086vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 25px 16px 7px 18px;
    width: 92vw;
    border-radius: 30px;
  }
}
.faq__item + .faq__item {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .faq__item + .faq__item {
    margin-top: 30px;
    padding: 22px 16px 25px 16px;
  }
}
.faq__item:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #fff;
  top: 50%;
  left: -3px;
  translate: 0 -50%;
}
.faq__item:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #fff;
  top: 50%;
  right: -3px;
  translate: 0 -50%;
}
.faq__item.opened .faq__question::after {
  rotate: 0deg;
}

.faq__question {
  border: none;
  background-color: transparent;
  color: #555555;
  cursor: unset;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .faq__question {
    gap: 10px;
  }
}
.faq__question span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 35px;
  color: #93c572;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .faq__question span {
    font-size: 25PX;
  }
}
.faq__question p {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__question p {
    font-size: 16px;
    line-height: 1.5;
    width: 64vw;
  }
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #93c572;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  transition: transform 0.3s ease, opacity 0.1s ease;
}
.faq__question::after {
  rotate: 90deg;
}

.faq__answer {
  display: flex;
  align-items: center;
  color: #555555;
  gap: 23px;
  margin-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
  }
}
.faq__answer span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 35px;
  color: #f7b560;
}
@media screen and (max-width: 767px) {
  .faq__answer span {
    font-size: 25px;
    margin-bottom: -3px;
  }
}
.faq__answer p {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__answer p {
    font-size: 16px;
  }
}

.top-news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-news {
    display: block;
    margin-inline: auto;
    margin-bottom: 75px;
  }
}

@media screen and (max-width: 767px) {
  .top-news__intro {
    margin-inline: 15px;
  }
}

.top-news__heading {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top-news__heading {
    margin-bottom: 24px;
  }
}

.top-news__description {
  align-items: flex-start;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-news__description {
    margin-bottom: 30px;
  }
}

.top-news__btn {
  margin-inline: auto;
  margin-top: 20px;
}

.top-news__inner {
  flex-shrink: 0;
  width: 50vw;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border-radius: 100px 0 0 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 80px 40px 46px 55px;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    width: 96vw;
    margin: 0 0 30px auto;
    border-radius: 50px 0 0 50px;
    padding: 35px 20px 2px;
  }
}

.top-news__article {
  display: block;
  color: #555555;
  cursor: pointer;
}
.top-news__article:hover .top-news__article-title-text {
  background-size: 100% 3px;
}

.top-news__article-info {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .top-news__article-info {
    margin-bottom: 8px;
  }
}

.top-news__article-date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .top-news__article-date {
    font-size: 14px;
  }
}

.top-news__article-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.top-news__article-category {
  padding: 4px 20px;
  background-color: #93c572;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.top-news__article-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 40px;
}
.top-news__article-title-text {
  display: inline;
  background-image: linear-gradient(90deg, #555555, #555555);
  background-repeat: no-repeat;
  background-position: left 100%;
  background-size: 0 3px;
  transition: background-size 0.6s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top-news__article-title {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
}

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

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

.access__container {
  padding-top: 120px;
  margin-top: 120px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .access__container {
    margin-bottom: 80px;
  }
}

.access__heading {
  margin-inline: auto;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .access__heading {
    margin-bottom: 42px;
  }
}

.access__table-wrapper {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .access__table-wrapper {
    border-radius: 50px;
  }
}

.access__table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access__table {
    border-radius: 50px;
  }
}
.access__table tr:first-child th {
  padding-top: 85px;
}
@media screen and (max-width: 767px) {
  .access__table tr:first-child th {
    padding-top: 30px;
  }
}
.access__table tr:nth-child(n+1):nth-child(-n+4) td {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .access__table tr:nth-child(n+1):nth-child(-n+4) td {
    padding-left: 20px;
    padding-top: 26px;
  }
}
.access__table tr:nth-child(n+2):nth-child(-n+4) th {
  padding-top: 30px;
}
.access__table tr:nth-child(4) th {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .access__table tr:nth-child(4) th {
    padding-bottom: 0;
  }
}
.access__table tr:nth-child(4) td {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .access__table tr:nth-child(4) td {
    padding-bottom: 0;
  }
}
.access__table tr:nth-child(5) th {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .access__table tr:nth-child(5) th {
    padding-top: 35px;
    line-height: 0;
    padding-bottom: 36px;
  }
}
.access__table tr:nth-child(5) th a {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  color: #555555;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .access__table tr:nth-child(5) th a {
    font-size: 12px;
  }
}
.access__table th {
  width: 250px;
  background-color: #93c572;
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  padding-left: 50px;
  text-align: start;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .access__table th {
    font-size: 16px;
    width: 140px;
    padding-left: 20px;
  }
}
.access__table td {
  color: #555555;
  background-color: #fff;
  vertical-align: bottom;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .access__table td {
    font-size: 14px;
  }
}

.access__gmap-wrapper {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .access__gmap-wrapper {
    height: 250px;
  }
}

.tabs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 10px 50px;
  margin-inline: auto;
}
.tabs-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .tabs-container {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: -27px;
  }
}

.tab {
  width: fit-content;
  height: 44px;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 22px;
  color: #f7b560;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  white-space: nowrap;
  text-align: center;
  line-height: 44px;
}
.tab:first-child {
  padding: 0 40px;
}
.tab.selected {
  background-color: #93c572;
  color: #fff;
}

.page__heading {
  margin-top: 72px;
}

.archive__inner {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 160px;
  padding: 80px 50px;
}
@media screen and (max-width: 767px) {
  .archive__inner {
    border-radius: 50px;
    margin-bottom: 80px;
    padding: 48px 20px 32px;
  }
}

.archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .archive__list {
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
  }
}

.archive__item {
  display: flex;
  align-items: flex-start;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .archive__item {
    width: 305px;
    display: block;
    position: relative;
  }
}

.archive__thumbnail {
  width: 230px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .archive__thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .news__item--text {
    position: absolute;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    left: 0;
    bottom: 0;
    padding: 4px 12px;
    border-radius: 0 0 20px 20px;
  }
}

.archive__info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .archive__info {
    margin-bottom: 6px;
  }
}

.archive__date {
  color: #555555;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.news__item-meta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 6px;
}

.archive__cat-item {
  display: block;
  height: 20px;
  padding: 0 20px;
  background-color: #93c572;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  border-radius: 5px;
}

.title--pc {
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .title--pc {
    font-size: 14px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.archive__excerpt {
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4.5em;
}
@media screen and (max-width: 767px) {
  .archive__excerpt {
    display: none;
  }
}

.pagination ul {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
}

.pagination li {
  list-style: none;
}

.pagination li .page-numbers {
  width: 50px;
  height: 50px;
  color: #93c572;
  background-color: #fafafa;
  border-radius: 10px;
  border: 2px solid #F0F3F5;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}
.pagination li .page-numbers:hover {
  background-color: #93c572;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .pagination li .page-numbers {
    margin-top: -15px;
  }
}

span[property=name] {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

span[property=name]:hover {
  color: #666;
  transition: color 0.3s ease;
}

.page-top {
  margin-top: 140px;
}
@media screen and (max-width: 1023px) {
  .page-top {
    margin-top: 18px;
  }
}

.breadcrumbs {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 72px;
}

.breadcrumbs a {
  color: #000;
  background-image: linear-gradient(90deg, #555555, #555555);
  background-repeat: no-repeat;
  background-position: left 105%;
  background-size: 0 3px;
  transition: background-size 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.8;
  color: #555555;
  background-size: 100% 3px;
}

.breadcrumb-arrow {
  color: #93c572;
  margin: 0 10px 0 20px;
}

.page__heading {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .page__heading {
    margin-bottom: 22px;
  }
}

.page-top__discription {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .page-top__discription {
    margin-bottom: 64px;
  }
}

.fa-solid, .fas {
  display: inline-block;
  color: #93c572;
  margin: 0 8px;
}

@media screen and (max-width: 767px) {
  .breadcrumb-arrow-sp {
    margin-left: 0;
  }
}

.single__heading {
  font-size: 40px;
  color: #555555;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .single__heading {
    font-size: 25px;
    margin-top: 97px;
    margin-bottom: 8px;
  }
}

.single__info {
  display: flex;
  gap: 14px;
  margin-bottom: 54px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .single__info {
    margin-bottom: 44px;
  }
}

.single__time {
  font-size: 18px;
  color: #555555;
  letter-spacing: 0.1em;
  font-family: "Archivo Narrow", sans-serif;
}

.single__cat-item {
  font-size: 14px;
  display: block;
  height: 26px;
  background-color: #93c572;
  color: #fff;
  border-radius: 5px;
  padding: 0 20px;
  line-height: 23px;
}

.single__inner {
  background-color: #fff;
  padding: 50px 180px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .single__inner {
    width: 92vw;
    padding: 30px 20px;
    border-radius: 50px;
    margin-bottom: 80px;
  }
}

.alignright {
  width: 290px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .alignright {
    margin-bottom: 20px;
  }
}

body #toc_container {
  width: 100%;
  border: 2px solid #93c572;
  padding: 25px 30px 20px;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  body #toc_container {
    padding: 10px 18px 10px 15px;
    margin-bottom: 40px;
  }
}

body #toc_container p.toc_title {
  font-size: 20px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 15px;
  color: #555555;
}

body #toc_container .toc_list {
  list-style: none;
  counter-reset: toc-counter;
  font-size: 16px;
  font-weight: bold;
  color: #555555;
  margin-left: 20px;
}

body #toc_container .toc_list > li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  body #toc_container .toc_list > li {
    font-size: 14px;
    margin-left: 20px;
  }
}

body #toc_container .toc_list > li::before {
  content: counter(toc-counter) ".";
  counter-increment: toc-counter;
  position: absolute;
  left: 0;
  color: #f7b560;
  font-weight: bold;
}

body #toc_container .toc_list a {
  color: #555;
  text-decoration: none;
  line-height: 1.5;
}

body #toc_container p.toc_title + ul.toc_list {
  margin-top: -0.4em;
}

body #toc_container .toc_list ul a {
  margin-left: -30px;
}
body #toc_container .toc_list ul a::before {
  content: "・";
  color: #93c572;
}

h2.wp-block-heading {
  font-size: 24px;
  font-weight: bold;
  color: #555555;
  border-bottom: 2px solid #93c572;
  display: inline-block;
  margin-bottom: 22px;
}
h2.wp-block-heading ::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  h2.wp-block-heading {
    font-size: 20px;
  }
}

.single-news article p {
  color: #555555;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 30px;
}

h3.wp-block-heading {
  font-size: 20px;
  color: #555555;
  font-weight: bold;
  line-height: 1.3;
  padding-top: 110px;
  margin-top: -110px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
h3.wp-block-heading ::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
  visibility: hidden;
}
h3.wp-block-heading::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 26px;
  position: absolute;
  left: 0;
  transform: translateY(6%);
  background-color: #93c572;
  margin-right: 10px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading::before {
    width: 14px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    text-align: left;
    align-items: center;
  }
}

.single__columm {
  margin-bottom: 64px;
}

.single__thumbnail {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 22px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .single__thumbnail {
    margin-bottom: 20px;
  }
}

.single__btn {
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .single__btn {
    width: 300px;
    height: 70px;
    font-size: 20px;
    border-radius: 50px;
  }
}

.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__media {
  width: 290px;
  margin-bottom: 64px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .wp-block-media-text.has-media-on-the-right > .wp-block-media-text__media {
    width: 305px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.contact__heading {
  margin-top: 75px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    margin-top: 42px;
    margin-bottom: 16px;
  }
}

.contact__paragraph {
  color: #555555;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .contact__paragraph {
    margin-bottom: 37px;
    line-height: 1.6;
  }
}

.contact__inner {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 100px 180px 58px;
  margin-bottom: 158px;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 30px 20px 2px;
    border-radius: 50px;
    margin-bottom: 60px;
  }
}

.contact__title {
  color: #555555;
  font-weight: bold;
  font-size: 20px;
}

.contact__cats {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .contact__cats {
    gap: 10px;
    margin-bottom: -5px;
  }
}

.contact__cat {
  background-color: #93c572;
  color: #fff;
  padding: 4px 5px;
  font-size: 12px;
  border-radius: 5px;
}

.select__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}
.select__wrapper::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 14px;
  right: 22px;
  height: 14px;
  border-right: 3px solid #93c572;
  border-bottom: 3px solid #93c572;
  transform: rotate(45deg);
  pointer-events: none;
}

.contact__select {
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  font-size: 16px;
  height: 50px;
  text-align: left;
  color: #CBCBCB;
  border: 1px solid #93c572;
  border-radius: 5px;
  margin-bottom: 40px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__select {
    margin-bottom: 32px;
  }
}

.contact__label {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px;
  font-size: 16px;
  height: 50px;
  text-align: left;
  color: #555555;
  border: 1px solid #93c572;
  border-radius: 5px;
  margin-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .contact__label {
    margin-bottom: 29px;
  }
}

.contact__label-text {
  width: 100%;
  max-width: 600px;
  height: 150px;
  padding: 14px 20px;
  font-size: 16px;
  text-align: left;
  color: #555555;
  border: 1px solid #93c572;
  border-radius: 5px;
  margin-bottom: 45px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__label-text {
    margin-bottom: 30px;
  }
}

.contact__btn {
  display: block;
  margin-inline: auto;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    line-height: 1.3;
    font-size: 16px;
  }
}

@media screen and (max-width: 815px) {
  .contact__btn {
    font-size: 14px;
  }
}
.wpcf7-not-valid {
  border: 2px solid #dc3232;
}

span .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 16px;
  font-weight: normal;
  display: block;
  margin-top: -35px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  span .wpcf7-not-valid-tip {
    margin-top: -28px;
    margin-bottom: 7px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

.contact__btn {
  width: 200px;
  height: 50px;
  font-size: 16px;
  line-height: 16px;
  border: 2px solid #93c572;
  border-radius: 50px;
  background-color: #fff;
  text-align: center;
  color: #93c572;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: capitalize;
}
.contact__btn:hover {
  background-color: #93c572;
  color: #fff;
}
.contact__btn-ja {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-weight: bold;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
}

.confirm__text {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 25px;
}

.confirm__text--last {
  margin-bottom: 50px;
}

.confirm__btn {
  display: block;
  margin-inline: auto;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.confirm__btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 815px) {
  .confirm__btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .confirm__btn {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    line-height: 1.3;
    font-size: 16px;
  }
}
.thanks__inner {
  width: 70.2781844802vw;
  margin: 0 auto 156px;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  padding: 76px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__inner {
    width: 92vw;
    padding: 26px 66px 30px;
    border-radius: 50px;
    margin-bottom: 60px;
  }
}

.thanks__subheading {
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .thanks__subheading {
    margin-bottom: 20px;
  }
}

.thanks__text {
  color: #555555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    margin-bottom: 26px;
  }
}

.thanks__bottom {
  color: #93c572;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
}
.thanks__bottom--large {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .thanks__bottom--large {
    font-size: 20px;
  }
}
.thanks__bottom + .thanks__bottom {
  margin-top: 8px;
}
.thanks__bottom:nth-of-type(4) {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .thanks__bottom:nth-of-type(4) {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 815px) {
  .thanks__bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .thanks__bottom {
    font-size: 14px;
    line-height: 1.5;
  }
}

.thanks__btn {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}
.thanks__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 815px) {
  .thanks__btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    line-height: 1.3;
    font-size: 16px;
  }
}

.thanks__bottom--large {
  display: inline-block;
  color: #93c572;
}

.thanks__btn {
  width: 200px;
  height: 50px;
  padding: 15px 50px;
  font-size: 16px;
  line-height: 16px;
}

.news__tabs-content {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 160px;
  padding: 80px 50px;
}
@media screen and (max-width: 767px) {
  .news__tabs-content {
    border-radius: 50px;
    margin-bottom: 80px;
    padding: 48px 20px;
    display: flex;
    justify-content: center;
  }
}

.archive__thumbnail {
  width: 230px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .archive__thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
  }
}

.title--pc {
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .title--pc {
    font-size: 14px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
  }
}

.news__item-meta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 6px;
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */