@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, li {
  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;
}

body {
  font-family: "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

main {
  overflow: hidden;
}

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

picture {
  vertical-align: middle;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

a:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, p, a {
  color: #555555;
}

.header {
  width: 94.5827232796vw;
  height: 90px;
  background-color: #fff;
  border-radius: 45px;
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 10;
  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;
  }
}
.header__btn.opened span:first-child {
  transform: rotate(-20deg);
  top: 8px;
}
.header__btn.opened span:nth-child(2) {
  transform: rotate(20deg);
  top: 8px;
}
.header__btn.opened span:last-child::before {
  content: "close";
}

.header__btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #93c572;
  left: 50%;
  translate: -50% 0;
  transition: all 0.3s ease;
}
.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;
}

@media screen and (max-width: 1023px) {
  .header__menu {
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    height: 100vh;
    background-color: #f9f9f9;
    box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.1607843137);
    padding: 0 15px;
    translate: 0 200vw;
    transition: all 0.3s ease;
  }
  .header__menu.opened {
    translate: 0 0;
  }
  .header__menu .sp-only {
    display: block;
  }
  .header__menu ul {
    flex-direction: column;
  }
  .header__menu li {
    width: 100%;
    border-bottom: 1px solid #93c572;
  }
  .header__menu li:last-child {
    border-bottom: none;
  }
}
.header__menu ul {
  display: flex;
  gap: 1.4641288433vw;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .header__menu ul {
    gap: 0;
  }
}

.header__link {
  color: #3B4043;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .header__menu ul li:first-child .header__link {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .header__link {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
  }
  .header__link:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background-color: #93c572;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  .header__link:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: #93c572;
    top: 45%;
    right: 0;
    translate: 0 -50%;
    rotate: 30deg;
  }
}
.header__link span {
  color: #f7b560;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
}

.header__link--tel {
  text-align: center;
  color: #93c572;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
}
@media screen and (max-width:767px) {
  .header__link--tel {
    font-size: 14px;
    margin-top: 16px;
  }
}

.header__link--tel-large {
  font-size: 30px;
  margin-top: 8px;
}
@media screen and (max-width:767px) {
  .header__link--tel-large {
    font-size: 20px;
  }
}

.header__link--contact {
  display: block;
  width: 148px;
  height: 48px;
  border-radius: 50px;
  background-color: #f7b560;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
}
@media screen and (max-width: 1023px) {
  .header__link--contact {
    width: 300px;
    margin: 24px auto 0;
  }
}

.header__link-cat {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__link-cat {
    display: block;
    color: #f7b560;
    font-size: 12px;
    text-transform: uppercase;
  }
}

.header__link--contactbox {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__link--contactbox {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}

.header__link--contactbox__tel {
  font-size: 14px;
  font-weight: bold;
  color: #93c572;
  margin-bottom: 5px;
}

.header__link--contactbox__number {
  font-size: 20px;
  font-weight: bold;
  color: #93c572;
  margin-bottom: 10px;
}

.header__link--contactbox__time {
  font-size: 14px;
  font-weight: bold;
  color: #93c572;
  margin-bottom: 5px;
}

.header__link--contactbox__time2 {
  font-size: 14px;
  font-weight: bold;
  color: #93c572;
}

.fv {
  width: 100%;
  height: clamp(600px, 100vh, 768px);
  background: url("../img/FV.jpg") center/cover no-repeat;
  position: relative;
  z-index: 0;
  margin-bottom: 45px;
}

.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;
  }
}

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

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

.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;
}
@media screen and (max-width: 992px) {
  .fv__scroll {
    display: none;
  }
}

@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: #f7b560;
  position: absolute;
  bottom: 38px;
  right: 45px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #fff;
  padding: 14px 15px 18px 15px;
}
@media screen and (max-width:767px) {
  .fv__news {
    width: 142px;
    height: 76px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
  }
}

.fv__news.hidden {
  transition: 1s;
  opacity: 0;
  translate: 0 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;
    gap: 6px;
  }
}

.fv__news-heading {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #fff;
}
@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;
  color: #fff;
}
@media screen and (max-width:767px) {
  .fv__news-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}

.about {
  position: relative;
  margin-bottom: 45px;
  padding-top: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 282px;
}
@media screen and (max-width:767px) {
  .about {
    height: 661px;
  }
}

.about__logo {
  width: 314px;
  margin: 0 auto 54px;
}
@media screen and (max-width:767px) {
  .about__logo {
    width: 232px;
    height: 40px;
    margin: 0 auto;
  }
}

.about__text {
  text-align: center;
  line-height: 2;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .about__text {
    margin-top: 30px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

.about__text + .about__text {
  margin-top: 14px;
}

.about__text p :first-child {
  width: 535px;
  height: 85px;
}
@media screen and (max-width:767px) {
  .about__text p :first-child {
    width: 345px;
    height: 181px;
  }
}

.about__text p :last-child {
  width: 514px;
  height: 85px;
  padding-top: 25px;
}
@media screen and (max-width:767px) {
  .about__text p :last-child {
    width: 345px;
    height: 149px;
    margin-top: 35px;
  }
}

.about__img1 {
  width: min(14.6412884334vw, 200px);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width:767px) {
  .about__img1 {
    width: 64px;
    left: 19px;
  }
}

.about__img2 {
  width: min(13.2503660322vw, 181px);
  position: absolute;
  top: 48px;
  right: 0;
}
@media screen and (max-width:767px) {
  .about__img2 {
    width: 56px;
    top: 11px;
    right: 28px;
  }
}

.about__img3 {
  width: min(14.6412884334vw, 200px);
  position: absolute;
  left: 108px;
  bottom: 68px;
}
@media screen and (max-width:767px) {
  .about__img3 {
    width: 86px;
    left: 32px;
    bottom: 28px;
  }
}

.about__img4 {
  width: min(17.2767203514vw, 236px);
  position: absolute;
  right: 24px;
  bottom: 0;
}
@media screen and (max-width:767px) {
  .about__img4 {
    width: 98px;
    bottom: 3px;
    right: 43px;
  }
}

.fadein {
  opacity: 0;
  transition: all 2s;
}

.fadein.active {
  opacity: 1;
}

.introduction {
  width: 85.2122986823vw;
  margin-right: auto;
  margin-bottom: 113px;
  border-radius: 0px 100px 100px 0px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 72px 3.6603221083vw 80px 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  background-color: #ffffff;
}
@media screen and (max-width:767px) {
  .introduction {
    width: 100%;
    margin-bottom: 74px;
    border-radius: 0;
    padding: 48px 0 50px;
    justify-content: center;
  }
}

.introduction__inner {
  width: 66.6178623719vw;
}
@media screen and (max-width:767px) {
  .introduction__inner {
    width: 100%;
    padding: 0 15px;
  }
}

.introduction__heading {
  margin-bottom: 28px;
}

.introduction__tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.introduction__tab {
  width: 190px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #f7b560;
}
.introduction__tab h3 {
  color: #f7b560;
}
@media screen and (max-width:767px) {
  .introduction__tab {
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 10px;
  }
}

@media screen and (max-width:767px) {
  .introduction__tab:last-child {
    font-size: 14px;
  }
}

.introduction__tab.selected {
  background-color: #93c572;
}
.introduction__tab.selected h3 {
  color: #fff;
}

.introduction__area {
  visibility: hidden;
  height: 0;
}

.introduction__area.selected {
  visibility: visible;
  height: auto;
}

.introduction__paragraph {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 65px;
}
@media screen and (max-width:767px) {
  .introduction__paragraph {
    top: 206px;
    left: 15px;
    line-height: normal;
  }
}

.introduction__slide {
  display: flex;
}
.introduction__slide img {
  width: 300px;
  margin: 0 12px;
}

.introduction__slider .slick-list {
  overflow: visible;
}

.faq {
  margin-bottom: 120px;
}
@media screen and (max-width:767px) {
  .faq {
    width: 94.9333333333vw;
  }
}

.faq__heading {
  margin-inline: auto;
  margin-bottom: 45px;
}

.faq__item {
  background-color: #fff;
  border: 3px solid;
  border-color: #93c572;
  border-radius: 50px;
  padding: 20px 40px;
  position: relative;
  font-size: 20px;
  margin-top: 50px;
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .faq__item {
    border-radius: 30px;
    padding: 30px 20px 25px;
  }
}
.faq__item:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 15px;
  background-color: #fff;
  top: 50%;
  left: -3px;
  translate: 0 -50%;
  transition: all 0.3s ease;
}
.faq__item::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 15px;
  background-color: #fff;
  top: 50%;
  right: -3px;
  translate: 0 -50%;
  transition: all 0.3s ease;
}

.faq__item.is-open:before {
  height: 30px;
}
.faq__item.is-open::after {
  height: 30px;
}

.faq__question {
  border: none;
  background-color: transparent;
  cursor: unset;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  position: relative;
  width: 100%;
  font-family: "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
.faq__question::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #93c572;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media screen and (max-width:767px) {
  .faq__question::before {
    width: 15px;
  }
}
.faq__question::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #93c572;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 90deg;
  transition: all 0.3s ease;
}
@media screen and (max-width:767px) {
  .faq__question::after {
    width: 15px;
  }
}
@media screen and (max-width:767px) {
  .faq__question {
    gap: 10px;
  }
}

.faq__question.is-open::after {
  rotate: 0deg;
}

.faq__question span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 35px;
  color: #93c572;
  text-transform: capitalize;
}
@media screen and (max-width:767px) {
  .faq__question span {
    font-size: 25px;
  }
}

.faq__question p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}

.faq__answer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  display: none;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .faq__answer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.faq__answer span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 35px;
  color: #f7b560;
  text-transform: capitalize;
  font-size: 35px;
}

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

.news__intro a {
  margin-top: 20px;
}

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

.top-news__description {
  margin-top: 45px;
  line-height: 1.4;
}

.top-news__article-date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
}

.top-news__article-info {
  display: flex;
  gap: 11px;
}

.top-news__article:not(:first-child) {
  margin-top: 38px;
}

.top-news__article-cats {
  border-radius: 5px;
  text-align: center;
}

.top-news__article-cat {
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #93c572;
  border-radius: 5px;
  min-width: 96px;
  text-align: center;
}
.top-news__article-cat:not(:first-child) {
  display: none;
}

.top-news__article-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width:767px) {
  .top-news__btn {
    margin: 0 auto;
  }
}

.access {
  width: 70.2781844802vw;
  margin-top: 111px;
}

.access_heading {
  margin: 0 auto;
  margin-bottom: 46px;
}

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

.access__table {
  width: 100%;
  border-radius: 50px;
}

.access__table tr:first-child > *:first-child {
  border-radius: 100px 0 0 0;
}

.access__table tr:first-child td {
  border-radius: 0 100px 0 0;
}

.access__table tr:last-child > *:first-child {
  border-radius: 0 0 0 100px;
}
@media screen and (max-width:767px) {
  .access__table tr:last-child > *:first-child {
    border-radius: 0;
  }
}

.access__table tr:last-child > *:last-child {
  border-radius: 0 0 100px 0px;
}
@media screen and (max-width:767px) {
  .access__table tr:last-child > *:last-child {
    border-radius: 0;
  }
}

.access__table tr {
  font-size: 20px;
  color: #555555;
  vertical-align: middle;
}

.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 {
  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__table tr:first-child th {
  padding-top: 76px;
}
@media screen and (max-width:767px) {
  .access__table tr:first-child th {
    padding-top: 30px;
  }
}

.access__table tr:nth-child(n+2):nth-child(-n+4) th {
  padding-top: 24px;
}

.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: 24px;
  }
}

.access__table-middle2:nth-child(3) {
  padding-bottom: 50px;
}

.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__main-map p:last-child {
  padding-top: 21px;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: #555555;
  line-height: 21px;
}

.access__gmap-wrapper {
  height: 300px;
}

.access__table tr:nth-child(5) th {
  padding-top: 20px;
  line-height: 45px;
}
@media screen and (max-width:767px) {
  .access__table tr:nth-child(5) th {
    padding-top: 30px;
    padding-bottom: 32px;
  }
}

.access__map-link {
  text-decoration: underline;
  text-decoration-color: #555555;
  font-size: 16px;
}

.contact.container {
  width: 70.2781844802vw;
  background-color: #f7b560;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  margin-top: 160px;
  margin-bottom: 112px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width:767px) {
  .contact.container {
    width: calc(100% - 30px);
    margin-top: 80px;
    margin-left: 15px;
    margin-right: 15px;
    box-sizing: border-box;
  }
}

.contact__tittle {
  font-size: 40px;
  font-weight: bold;
  padding-top: 45px;
  color: #fff;
}
@media screen and (max-width:767px) {
  .contact__tittle {
    font-size: 30px;
  }
}

.contact__tittle-text {
  font-size: 18px;
  color: #fff;
  padding-top: 35px;
  line-height: 1.4;
}
@media screen and (max-width:767px) {
  .contact__tittle-text {
    padding-top: 16px;
  }
}

.contact a {
  margin-top: 36px;
  display: inline-block;
}
@media screen and (max-width:767px) {
  .contact a {
    margin-top: 14px;
  }
}

.contact__bottom {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (max-width:767px) {
  .contact__bottom {
    display: block;
  }
}

.contact__tel {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.contact__number {
  font-size: 30px;
  font-weight: bold;
  line-height: 0.8rem;
  color: #fff;
}
@media screen and (max-width:767px) {
  .contact__number {
    line-height: 3.8rem;
  }
}

.contact__time {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  padding-bottom: 50px;
  color: #fff;
}
@media screen and (max-width:767px) {
  .contact__time {
    line-height: 1.8rem;
  }
}

.contact__btn {
  font-size: 20px;
  font-weight: bold;
}

.footer {
  background-color: #fff;
  padding: 80px 0 30px;
}

.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: 30px;
    margin-bottom: 40px;
  }
}

.footer__logo {
  width: 202px;
  margin-bottom: 42px;
}

.footer__info-text {
  color: #555555;
  font-size: 16px;
  line-height: 1.3;
}
.footer__info-text + .footer__info-text {
  margin-top: 32px;
  text-transform: uppercase;
}

.footer__menu {
  margin-bottom: 128px;
}
.footer__menu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width:767px) {
  .footer__menu ul {
    display: block;
    margin-top: 31px;
    padding-top: 8px;
  }
}
.footer__menu ul li {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width:767px) {
  .footer__menu {
    margin-bottom: 28px;
  }
}

.footer__menu-link {
  font-size: 16px;
  font-weight: bold;
}

.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 {
  font-size: 25px;
  opacity: 0.5;
}

.footer__copyright {
  font-size: 12px;
  letter-spacing: 0.5;
  text-align: center;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #93c572;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  opacity: 0.8;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #93c572;
  border-right: 3px solid #93c572;
  transform: translateY(20%) rotate(-45deg);
}

.news.container {
  padding-top: 141px;
}
@media screen and (max-width:767px) {
  .news.container {
    padding-top: 30px;
  }
}

.group {
  display: flex;
}
@media screen and (max-width:767px) {
  .group {
    flex-wrap: wrap;
  }
}

.news__tittle {
  margin-top: 72px;
}
@media screen and (max-width:767px) {
  .news__tittle {
    font-size: 25px;
    margin-top: 35px;
  }
}

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

.category__menu {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .category__menu {
    width: 100%;
    overflow-x: scroll;
    padding: 20px;
  }
}

.category__menu ul {
  display: flex;
  gap: 16px;
}

.category__link {
  width: 126px;
  height: 44px;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  color: #f7b560;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: block;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}
.category__link.active {
  background-color: #93c572;
  color: #fff;
}

.news__inner {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width:767px) {
  .news__inner {
    width: 92vw;
    border-radius: 50px;
  }
}

.news__article-unit {
  display: flex;
  gap: 37px;
}
@media screen and (max-width:767px) {
  .news__article-unit {
    flex-direction: column;
    position: relative;
  }
}

.news__article-link {
  display: flex;
  gap: 37px;
}

.news__article-img {
  margin-top: 80px;
  margin-left: 50px;
  width: 230px;
  flex-shrink: 0;
}
@media screen and (max-width:767px) {
  .news__article-img {
    margin-top: 47px;
    width: 81.3333333333vw;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 20px;
    height: 199px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
}

.news__article-img img {
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.test__image {
  margin-top: 80px;
  margin-left: 50px;
  width: 230px;
  flex-shrink: 0;
}
@media screen and (max-width:767px) {
  .test__image {
    margin-top: 47px;
    width: 81.3333333333vw;
    margin-left: 20px;
  }
}

.test__image img {
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.news__article-inner {
  margin-top: 83px;
  margin-right: 50px;
}
.news__article-inner p {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .news__article-inner {
    position: absolute;
    top: 92px;
    right: -30px;
    width: 81.3333333333vw;
    border-radius: 0px 0px 20px 20px;
    background-color: #fff;
    opacity: 0.8;
    padding: 4px;
    height: 71px;
  }
  .news__article-inner p {
    display: none;
  }
}

.news__article-info {
  display: flex;
  gap: 19px;
}

.news__article-date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .news__article-date {
    font-size: 12px;
  }
}

.news__article-cats {
  display: flex;
  gap: 10px;
  width: auto;
}
@media screen and (max-width:767px) {
  .news__article-cats {
    position: absolute;
    top: -120px;
    right: 10px;
  }
  .news__article-cats .news__article-cat:not(:first-child) {
    display: none;
  }
}

.news__article-cat {
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #93c572;
  border-radius: 5px;
  min-width: 96px;
  text-align: center;
}

.news__article-title {
  color: #555555;
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  .news__article-title {
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.news__article-post {
  color: #555555;
  font-size: 14px;
  margin-top: 16px;
}

.pagination {
  margin: 0 auto;
  width: 230px;
  margin-top: 50px;
  padding-bottom: 80px;
}
@media screen and (max-width:767px) {
  .pagination {
    width: 180px;
  }
}

.pagination .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #fafafa;
  border: 2px solid #F0F3F5;
  font-size: 14px;
  color: #93C572;
  border-radius: 10px;
  line-height: 50px;
  text-align: center;
}

.category__link.selected {
  background-color: #93c572;
  color: #fff;
}

.breadcrumbs {
  display: flex;
}

.breadcrumbs__list {
  color: #93c572;
  margin-left: 20px;
  margin-right: 10px;
}

.archive.taxonomy.news_category.current-item {
  color: #555555;
}

.content__list {
  padding-top: 141px;
}
@media screen and (max-width:767px) {
  .content__list {
    padding-top: 17px;
  }
}

.content__tittle-lead {
  font-size: 40px;
  font-weight: bold;
  margin-top: 72px;
}
@media screen and (max-width:767px) {
  .content__tittle-lead {
    font-size: 25px;
    margin-top: 37px;
  }
}

.cntent__article-cats {
  display: flex;
  gap: 6px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.content__tittle-date {
  font-size: 16px;
}

.content__article-cat {
  text-align: center;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.content__article-cat1 {
  width: 96px;
  text-align: center;
  color: #555;
  font-size: 14px;
}

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

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

.content__top-img {
  padding-top: 50px;
  margin: 0 auto;
  width: 43.9238653001vw;
}
@media screen and (max-width:767px) {
  .content__top-img {
    width: 81.3333333333vw;
  }
}
.content__top-img img {
  border-radius: 20px;
}

.content__article-img {
  margin-top: 50px;
  border-radius: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width:767px) {
  .content__article-img {
    margin-top: 0;
  }
}

.content__menu {
  width: 43.9238653001vw;
  color: #555;
  border: 2px solid #93C572;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  margin-bottom: 75px;
}
.content__menu ul {
  margin-top: 17px;
  font-size: 16px;
  font-weight: bold;
  line-height: 25px;
}
@media screen and (max-width:767px) {
  .content__menu {
    width: 81.3333333333vw;
  }
}

.no_bullets {
  width: 43.9238653001vw;
  color: #555;
  border: 2px solid #93C572;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  margin-bottom: 75px;
}
.no_bullets > ul {
  margin-top: 17px;
  font-size: 16px;
  font-weight: bold;
  line-height: 25px;
  counter-reset: item;
}
.no_bullets > ul > li {
  position: relative;
  list-style-type: none;
  padding-left: 2rem;
  counter-increment: item;
}
.no_bullets > ul > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: #f7b560;
  padding-left: 1rem;
}
.no_bullets > ul > li > ul > li {
  list-style-type: none;
  padding-left: 1rem;
}
.no_bullets > ul > li > ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #93c572;
  padding-left: 2rem;
}
@media screen and (max-width:767px) {
  .no_bullets {
    width: 81.3333333333vw;
  }
}

.toc_title {
  font-size: 20px !important;
  font-weight: bold;
}

.number {
  color: #f7b560;
}

.point {
  color: #93c572;
}

.content__menu-tittle {
  font-size: 20px;
  font-weight: bold;
}

.content__menu-h2 {
  text-indent: 1rem;
}

.content__menu-h3 {
  text-indent: 2rem;
}

.content__desc {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 75px;
}
.content__desc p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width:767px) {
  .content__desc {
    margin-left: 20px;
    width: 74.6666666667vw;
  }
}

.content__desc-text {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 82px;
}
.content__desc-text ul {
  margin-top: 17px;
  font-size: 16px;
}
.content__desc-text p {
  margin-top: 60px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width:767px) {
  .content__desc-text {
    margin-left: 20px;
    width: 74.6666666667vw;
  }
}

.content__desc-tittle {
  font-size: 24px;
  font-weight: bold;
  -webkit-text-decoration: underline solid #93c572;
          text-decoration: underline solid #93c572;
  line-height: 20px;
}
@media screen and (max-width:767px) {
  .content__desc-tittle {
    font-size: 20px;
  }
}

.content__text-tittle {
  font-size: 20px;
  font-weight: bold;
  display: flex;
}
.content__text-tittle::before {
  content: "";
  width: 10px;
  height: 20px;
  background-color: #93c572;
  display: block;
}
@media screen and (max-width:767px) {
  .content__text-tittle {
    font-size: 18px;
  }
}

.content__desc-inner {
  margin-bottom: 63px;
}
.content__desc-inner p {
  line-height: 20px;
}
@media screen and (max-width:767px) {
  .content__desc-inner p {
    width: 69.3333333333vw;
  }
}
@media screen and (max-width:767px) {
  .content__desc-inner {
    display: block;
  }
}

.content__desc-img {
  width: 21.2298682284vw;
  float: right;
}
@media screen and (max-width:767px) {
  .content__desc-img {
    width: 69.3333333333vw;
    margin-top: 123px;
  }
}

.content__btn {
  margin: 0 auto;
  margin-top: 126px;
}

h2.wp-block-heading {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 75px;
  font-size: 24px;
  font-weight: bold;
  -webkit-text-decoration: underline solid #93c572;
          text-decoration: underline solid #93c572;
  line-height: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width:767px) {
  h2.wp-block-heading {
    width: auto;
    font-size: 20px;
  }
}

.content__inner p {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 75px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width:767px) {
  .content__inner p {
    width: 81.3333333333vw;
  }
}

h3.wp-block-heading {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 75px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width:767px) {
  h3.wp-block-heading {
    width: auto;
  }
}

h3.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  background-color: #93c572;
  left: 0;
  top: 0;
}

.wp-block-list {
  width: 43.9238653001vw;
  margin: 0 auto;
  margin-top: 75px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 80px;
}
@media screen and (max-width:767px) {
  .wp-block-list {
    width: auto;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
.wp-block-list li {
  padding-left: 1.5em;
  position: relative;
}
.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
}

.wp-block-image {
  margin: 0 0 20px 20px;
  width: 21.2298682284vw;
  float: right;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .wp-block-image {
    width: auto;
    float: none;
    margin: auto;
  }
}

.top-news__article-cats {
  display: flex;
  gap: 10px;
}
.top-news__article-cat {
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #93c572;
  border-radius: 5px;
  min-width: 96px;
  text-align: center;
}

.contactform {
  margin-top: 141px;
}
@media screen and (max-width:767px) {
  .contactform {
    margin-top: 17px;
  }
}

.contactform__tittle h2 {
  margin-top: 72px;
}
.contactform__tittle p {
  margin-top: 37px;
}

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

.contactform__form {
  padding-left: 13.17715959vw;
  margin-top: 48px;
}

.form__item1 {
  padding-top: 77px;
  font-size: 20px;
  font-weight: bold;
}

.form__item {
  margin-top: 37px;
  font-size: 20px;
  font-weight: bold;
}

.form__item-Required {
  width: 34px;
  background-color: #93c572;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
}

.form__item-input {
  width: min(29.2825768668vw, 400px);
  margin-top: 13px;
  color: #cbcbcb;
  position: relative;
  padding-inline: 20px;
  height: 50px;
  border: 1px solid #93c572;
  border-radius: 5px;
}

.form__item-input-text {
  width: 100%;
  max-width: 450px;
  font-size: 16px;
  color: #CBCBCB;
  padding-left: 20px;
  height: 100%;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding-inline: 20px;
}

.formsub {
  background-color: #f9f9f9;
  border: 1px solid #93c572;
  border-radius: 5px;
  padding-left: 1em;
  padding-right: 1em;
  line-height: 3rem;
  width: 100%;
  max-width: 450px;
  z-index: 5;
  position: absolute;
  display: none;
}
.formsub a {
  font-size: 16px;
  font-weight: bold;
  color: #93c572;
}

.formsub.open {
  display: block;
}

.formsub li:first-child, .formsub li:nth-child(2) {
  border-bottom: dashed 2px rgba(0, 0, 0, 0.1607843137);
}

.Form-Item-Textarea {
  margin-top: 13px;
  border: 1px solid #93c572;
  border-radius: 5px;
  padding-left: 1em;
  padding-right: 1em;
  height: 150px;
  width: 100%;
  max-width: 500px;
  font-size: 18px;
}

.form__item-btn {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.wpcf7-form-control-wrapp {
  display: flex;
  flex-flow: column;
}

select {
  outline: none;
}

textarea {
  outline: none;
  height: 100%;
}

input {
  outline: none;
}

.form__item-check {
  width: min(29.2825768668vw, 400px);
  margin-top: 13px;
  padding-top: 13px;
  color: #555;
  position: relative;
  padding-inline: 20px;
  height: 50px;
  border: 1px solid #93c572;
  border-radius: 5px;
}

.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;
  }
}

.btn {
  width: 300px;
  height: 70px;
  border-radius: 35px;
  border: solid 2px #93c572;
  background-color: #fff;
  font-family: "Archivo Narrow", sans-serif;
  color: #93c572;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 70px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #93c572;
  color: #fff;
}
@media screen and (max-width:767px) {
  .btn {
    width: 80.2666666667vw;
    border-radius: 50px;
  }
}

.container {
  width: 70.2781844802vw;
  margin-inline: auto;
}
@media screen and (max-width: 990px) {
  .container {
    width: auto;
  }
}
@media screen and (max-width:767px) {
  .container {
    width: unset;
    padding-inline: 15px;
  }
}

.section__heading {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
}
.section__heading:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/title-line.svg") center/contain no-repeat;
  z-index: -1;
  top: 18px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width:767px) {
  .section__heading {
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */