@charset "UTF-8";
:root {
  --mainColor: #93c572;
  --accentColor: #f7b560;
  --txtColor: #555555;
  --backgroundColor: #F9F9F9;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  background-color: var(--backgroundColor);
  color: var(--txtColor);
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  text-align: center;
}
body.menu-open {
  overflow: hidden;
  /* 背景のスクロールを無効にする */
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  max-width: clamp(800px, 90vw, 960px);
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .wrapper {
    max-width: clamp(350px, 90vw, 800px);
  }
}

.container {
  background-color: #ffffff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  padding: 80px 50px;
  margin-top: 50px;
  margin-bottom: 160px;
}
@media screen and (max-width: 900px) {
  .container {
    padding: 47px 20px;
    border-radius: 50px;
    margin-top: 0;
    margin-bottom: 80px;
  }
}

.common-button {
  display: block;
  background-color: #ffffff;
  border: 2px solid var(--mainColor);
  border-radius: 50px;
  padding: 1em 0;
  color: var(--mainColor);
  font-size: 20px;
  width: 300px;
  margin: 40px auto;
  text-align: center;
  letter-spacing: 0.1em;
  height: 70px;
}

.section-header__title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 4px;
  background-image: url(../img/title-line.svg);
  background-position: 0 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .section-header__title {
    font-size: 29px;
  }
}
.section-header__description {
  text-align: left;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .logo {
    width: 116px;
  }
  .logo img {
    width: 100%;
  }
}

.header {
  position: fixed;
  width: 100%;
  font-weight: bold;
  z-index: 100;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .header {
    margin: 0 auto;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  width: 95%;
  background-color: #fff;
  border-radius: 100px;
  padding: 0 22px 0 44px;
  margin: 20px auto;
}
@media screen and (max-width: 900px) {
  .header__container {
    border-radius: 0;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
.header__list {
  display: flex;
  gap: 2vw;
  color: #3B4043;
  align-items: center;
}
.header__contact-button {
  background-color: var(--accentColor);
  color: #ffffff;
  text-align: center;
  padding: 1em 1.6em;
  border-radius: 50px;
  margin-right: 10px;
}
.header__open-button {
  position: relative;
  cursor: pointer;
  height: 50px;
  border: none;
  width: 20px;
  background: none;
  display: none;
}
.header__open-button span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  right: 2px;
  height: 2px;
  background: var(--mainColor);
  width: 20px;
}
.header__open-button span:nth-of-type(1) {
  top: 15px;
}
.header__open-button span:nth-of-type(2) {
  top: 21.5px;
}
.header__open-button span:nth-of-type(2)::after {
  content: "MENU";
  position: absolute;
  top: 5px;
  left: -5.5px;
  color: var(--mainColor);
  font-size: 0.6rem;
  text-transform: uppercase;
}
.header__open-button.active span:nth-of-type(1) {
  top: 14px;
  transform: translateY(6px) rotate(-20deg);
  width: 20px;
}
.header__open-button.active span:nth-of-type(2) {
  top: 26px;
  transform: translateY(-6px) rotate(20deg);
  width: 20px;
}
.header__open-button.active span:nth-of-type(2)::after {
  content: "Close";
  transform: translateY(0) rotate(-20deg);
  top: 5px;
}

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sp-menu {
  background-color: var(--backgroundColor);
  width: 100%;
  display: none;
}
.sp-menu__list-item {
  border-bottom: 1px solid var(--mainColor);
  font-weight: bold;
  padding: 20px 0;
  position: relative;
  text-align: left;
}
.sp-menu__list-item span {
  color: var(--accentColor);
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
}
.sp-menu__list-item::before {
  position: absolute;
  content: "";
  border: 1px solid #93c572;
  border-radius: 2px;
  right: 0;
  width: 25px;
  top: 50%;
}
.sp-menu__list-item::after {
  position: absolute;
  content: "";
  border: 1px solid #93c572;
  border-radius: 2px;
  top: 18px;
  right: 0;
  width: 9px;
  transform: translateY(9px) rotate(40deg);
}
.sp-menu__contact-box {
  margin-top: 20px;
  padding-bottom: 20px;
}
.sp-menu__contact-text {
  color: var(--mainColor);
  font-size: 14px;
  font-weight: bold;
}
.sp-menu__contact-text--tel {
  font-size: 20px;
  margin-bottom: 15px;
}
.sp-menu__contact-button {
  display: block;
  background-color: var(--accentColor);
  color: #ffffff;
  text-align: center;
  width: 300px;
  padding: 0.75em 0;
  border-radius: 50px;
  margin: 25px auto;
}

.hero {
  background-image: url(../img/FV.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 768px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .hero {
    height: 600px;
  }
}
.hero__content {
  position: fixed;
  transform: translateY(100%);
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .hero__content {
    display: flex;
    transform: translateY(159%);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 900px) {
  .hero__content-logo {
    width: 20%;
  }
}
.hero__content-caption {
  font-size: 50px;
  line-height: 1.5;
  color: var(--mainColor);
  text-shadow: 1px 2px 3px #808080;
  letter-spacing: 0.15em;
  margin: 11.5px auto;
}
@media screen and (max-width: 900px) {
  .hero__content-caption {
    font-size: 6.7vw;
    text-shadow: none;
    margin: 0;
  }
}
.hero__news {
  background-color: var(--accentColor);
  color: #fff;
  border-radius: 20px;
  width: 337px;
  height: 109px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  text-align: left;
  padding: 15px 9px;
  position: absolute;
  right: 45px;
  bottom: 48px;
}
@media screen and (max-width: 900px) {
  .hero__news {
    margin: 0 0 20px 20px;
    border-radius: 10px;
    width: 142px;
    height: 76px;
    text-align: left;
    padding: 7px 9px;
    right: 0;
    left: 0px;
    bottom: 0px;
  }
}
@media screen and (max-width: 900px) {
  .hero__news-box {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
}
.hero__news-title {
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .hero__news-title {
    font-size: 12px;
  }
}
.hero__news-date {
  font-size: 11px;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .hero__news-date {
    font-size: 8px;
    text-align: center;
  }
}
.hero__news-caption {
  margin-top: 9px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .hero__news-caption {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}

.fadeIn {
  animation: fadeInAnime 0.5s forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeOut {
  animation: fadeOutAnime 0.5s forwards;
  opacity: 1;
}

@keyframes fadeOutAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
    display: none;
  }
}
.scroll-down {
  position: absolute;
  right: 50%;
  margin-top: -100px;
  animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.scroll-down span {
  position: absolute;
  left: -30px;
  bottom: 60px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.scroll-down:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 3px;
  height: 20px;
  background: #ffffff;
  transform: skewX(-31deg);
}
.scroll-down:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 50px;
  background: #ffffff;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation: fadeUpAnime 1s forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.back-ground {
  background-color: var(--backgroundColor);
  position: relative;
  z-index: 1;
}

.about {
  font-weight: bold;
  padding-top: 45px;
}
@media screen and (max-width: 900px) {
  .about {
    padding-top: 38px;
  }
}
.about__inner {
  position: relative;
  min-height: 703px;
  margin-bottom: 53px;
}
@media screen and (max-width: 900px) {
  .about__inner {
    margin: 0 auto;
  }
}
.about__logo {
  margin-bottom: 47px;
}
@media screen and (max-width: 900px) {
  .about__logo {
    margin-bottom: 17px;
  }
}
.about__logo-image {
  width: 314px;
  height: auto;
  margin-top: 115px;
}
@media screen and (max-width: 900px) {
  .about__logo-image {
    margin-top: 90px;
    width: 233px;
  }
}
.about__text {
  line-height: 2;
  margin-bottom: 14px;
}
@media screen and (max-width: 900px) {
  .about__text {
    margin-bottom: 25px;
  }
}
.about__image-wrapper:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 900px) {
  .about__image-wrapper:nth-child(1) {
    width: 63px;
    left: 21px;
  }
}
.about__image-wrapper:nth-child(2) {
  position: absolute;
  top: 48px;
  right: 0;
  width: 181px;
  height: auto;
  animation-delay: 0.4s;
}
@media screen and (max-width: 900px) {
  .about__image-wrapper:nth-child(2) {
    width: 57px;
    top: 13px;
    right: 30px;
  }
}
.about__image-wrapper:nth-child(3) {
  position: absolute;
  top: 434px;
  left: 109px;
  width: 200px;
  height: auto;
  animation-delay: 0.6s;
}
@media screen and (max-width: 900px) {
  .about__image-wrapper:nth-child(3) {
    width: 86px;
    top: auto;
    left: 34px;
    bottom: 62px;
  }
}
.about__image-wrapper:nth-child(4) {
  position: absolute;
  top: 435px;
  right: 25px;
  width: 233px;
  height: auto;
  animation-delay: 0.8s;
}
@media screen and (max-width: 900px) {
  .about__image-wrapper:nth-child(4) {
    width: 98px;
    top: auto;
    right: 45px;
    bottom: 36px;
  }
}
.about__image {
  width: 100%;
  height: auto;
}

.activity {
  position: relative;
  padding-top: 72px;
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .activity {
    padding-top: 0;
    padding-bottom: 50px;
    background-color: #ffffff;
  }
}
.activity::after {
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  height: 100%;
  width: 100%;
  border-radius: 0px 100px 100px 0px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .activity::after {
    display: none;
  }
}
.activity__tab-list {
  display: flex;
  gap: 8px;
}
.activity__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .activity__inner {
    padding: 46px 15px 15px 15px;
  }
}
.activity__tab-item {
  font-size: 20px;
  color: var(--accentColor);
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  margin-top: 27px;
  margin-right: 18px;
  padding: 0.95em 0;
  width: 190px;
  cursor: pointer;
}
@media (any-hover: hover) {
  .activity__tab-item:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 900px) {
  .activity__tab-item {
    font-size: 14px;
    border-radius: 10px;
    width: 110px;
    margin-top: 35px;
    margin-right: 0;
    padding: 1.036em 0;
  }
}
.activity__tab-item.active {
  background-color: #93c572;
  color: #fff;
}
.activity__panel {
  position: relative;
  visibility: hidden;
  height: 0;
}
.activity__panel.show {
  margin-top: 47px;
  visibility: unset;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 900px) {
  .activity__panel.show {
    margin-top: 20px;
  }
}
.activity__slider {
  left: -18%;
  margin-top: 60px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .activity__slider {
    left: 0;
    margin-top: 37px;
  }
}
.activity__slider-item {
  margin-right: 24px;
}
.activity__slider-item img {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 900px) {
  .activity__slider-item img {
    width: 250px;
    height: 209px;
  }
}

.faq {
  margin-top: 114px;
}
@media screen and (max-width: 900px) {
  .faq {
    margin-top: 0px;
  }
}
.faq__title {
  margin: 40px auto;
}
@media screen and (max-width: 900px) {
  .faq__title {
    font-size: 29px;
    margin-top: 77px;
    margin-bottom: 0;
  }
}
.faq__item {
  border: 2px solid var(--mainColor);
  border-radius: 50px;
  margin-bottom: 50px;
  padding: 14px 37px;
  text-align: left;
  letter-spacing: 0.01em;
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .faq__item {
    border-radius: 30px;
    padding: 25px 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.faq__item::after {
  position: absolute;
  top: calc(50% - 7.5px);
  left: -3px;
  content: "";
  width: calc(6px + 100%);
  border-top: 15px solid #fff;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.faq__question {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .faq__question {
    font-size: 16px;
  }
}
.faq__question:before {
  position: absolute;
  right: 0px;
  content: "";
  width: 20px;
  border-top: 3px solid #93c572;
}
.faq__question:after {
  position: absolute;
  right: 0px;
  content: "";
  width: 20px;
  border-top: 3px solid #93c572;
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
}
.faq__question.open {
  padding-top: 10px;
}
@media screen and (max-width: 900px) {
  .faq__question.open {
    padding-top: 0;
  }
}
.faq__question.open:after {
  transform: rotate(180deg);
}
.faq__answer {
  display: none;
}
.faq__answer.stay {
  display: block;
}
.faq__answer-inner {
  display: flex;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 23px;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .faq__answer-inner {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  .faq__answer-text {
    margin-top: 5px;
  }
}
.faq__icon {
  font-size: 29px;
  font-weight: normal;
  color: var(--mainColor);
  margin-right: 25px;
}
@media screen and (max-width: 900px) {
  .faq__icon {
    font-size: 22px;
    margin-right: 11px;
  }
}
.faq__icon--answer {
  color: var(--accentColor);
}
@media screen and (max-width: 900px) {
  .faq__text {
    line-height: 1.5;
    margin-right: 10px;
  }
}
.faq__toggle {
  font-size: 21px;
  font-weight: bold;
  color: var(--mainColor);
}

.news {
  display: flex;
  margin-top: 118px;
}
@media screen and (max-width: 900px) {
  .news {
    flex-direction: column;
    margin-top: 80px;
    margin-left: 15px;
  }
}
.news__header {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .news__header {
    width: 100%;
  }
}
.news__header-content {
  max-width: 480px;
  margin-top: 77px;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .news__header-content {
    max-width: 100%;
    margin: 0 15px 0 0;
  }
}
.news__description {
  margin-top: 40px;
  height: 105px;
  width: 85%;
}
@media screen and (max-width: 900px) {
  .news__description {
    line-height: 1.7;
    margin-top: 27px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
  }
}
.news__button {
  width: 85%;
  display: block;
  background: none;
  border: none;
}
.news__button a {
  margin: 32px 44px;
}
@media screen and (max-width: 900px) {
  .news__button a {
    margin: 0 auto;
    font-size: 18px;
    font-weight: normal;
    line-height: 2;
  }
}
@media screen and (max-width: 900px) {
  .news__button {
    width: 100%;
    margin: 26px auto 30px auto;
  }
}
.news__list {
  width: 50%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px 0px 0px 100px;
  padding: 53px 0 79px 50px;
}
@media screen and (max-width: 900px) {
  .news__list {
    width: 100%;
    border-radius: 50px 0px 0px 50px;
    padding: 0 20px 33px 20px;
  }
}
.news__list-inner {
  max-width: 95%;
}
.news__item {
  margin-top: 33px;
}
@media screen and (max-width: 900px) {
  .news__item {
    margin-top: 31px;
  }
}
.news__item-box {
  display: flex;
  font-size: 14px;
  align-items: center;
}
.news__date {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .news__date {
    font-size: 14 px;
  }
}
.news__category {
  color: #fff;
  background-color: var(--mainColor);
  border-radius: 5px;
  margin-left: 30px;
  padding: 0.2em 20px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .news__category {
    height: 27px;
  }
}
.news__text {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .news__text {
    font-size: 16px;
    margin-top: 5px;
    line-height: 1.7;
  }
}

.access {
  margin-top: 113px;
}
@media screen and (max-width: 900px) {
  .access {
    margin-top: 45px;
  }
}
.access__title {
  margin: 0 auto;
}
.access__content {
  background: linear-gradient(90deg, var(--mainColor) 0%, var(--mainColor) 26%, #ffffff 26%, #ffffff 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  height: 600px;
  margin-top: 44px;
  padding-top: 30px;
}
@media screen and (max-width: 900px) {
  .access__content {
    background: linear-gradient(90deg, var(--mainColor) 0%, var(--mainColor) 40%, #ffffff 26%, #ffffff 100%);
    border-radius: 50px;
    margin-top: 40px;
  }
}
.access__table {
  width: 100%;
  height: 200px;
  border-collapse: collapse;
  margin-top: 44px;
}
@media screen and (max-width: 900px) {
  .access__table {
    width: 100%;
    height: 223px;
    line-height: 1.5;
    margin-top: 0;
  }
}
.access__table--map {
  height: 300px;
  margin-top: 22px;
}
@media screen and (max-width: 900px) {
  .access__table--map {
    height: 79px;
  }
}
.access__row {
  text-align: left;
}
.access__label {
  font-size: 20px;
  font-weight: bold;
  width: 26%;
  padding-left: 50px;
}
@media screen and (max-width: 900px) {
  .access__label {
    font-size: 16px;
    width: 40%;
    vertical-align: top;
    padding-left: 20px;
  }
}
.access__value {
  width: 74%;
  padding-left: 50px;
}
@media screen and (max-width: 900px) {
  .access__value {
    font-size: 14px;
    width: 60%;
    vertical-align: top;
    padding-left: 20px;
  }
}
.access__google-map-row {
  font-size: 20px;
  font-weight: bold;
  vertical-align: top;
  text-align: left;
  padding: 21px 49px;
  width: 26%;
}
@media screen and (max-width: 900px) {
  .access__google-map-row {
    font-size: 16px;
    width: 40%;
    text-align: left;
    padding: 0 0 0 22px;
  }
}
.access__map-link {
  font-size: 16px;
  font-weight: normal;
  text-decoration: underline;
  padding-top: 27px;
}
@media screen and (max-width: 900px) {
  .access__map-link {
    font-size: 12px;
  }
}
.access__google-map-sp {
  border-radius: 0 0 50px 50px;
  height: 247px;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0px 0px 100px 0px;
}

.contact {
  color: #ffffff;
  padding-top: 160px;
  padding-bottom: 113px;
}
@media screen and (max-width: 900px) {
  .contact {
    padding-top: 82px;
    padding-bottom: 60px;
  }
}
.contact__container {
  background-color: var(--accentColor);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50px;
  padding: 47px 20px;
}
@media screen and (max-width: 900px) {
  .contact__container {
    padding-bottom: 30px;
  }
}
.contact__title {
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .contact__title {
    font-size: 28px;
    letter-spacing: 0.07em;
  }
}
.contact__description {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .contact__description {
    margin-top: 12px;
  }
}
.contact__button {
  margin: 38px auto 35px;
}
@media screen and (max-width: 900px) {
  .contact__button {
    margin: 15px auto;
  }
}
.contact__info {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .contact__info {
    margin-top: 6px;
  }
}
.contact__info span {
  font-size: 30px;
}

.footer {
  position: relative;
  text-align: left;
  padding-top: 83px;
  padding-bottom: 30px;
  background-color: #fff;
  z-index: 1;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  .footer {
    padding-top: 33px;
    padding-bottom: 30px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  display: block;
  width: 202px;
  height: auto;
}
.footer__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__link-list {
  display: flex;
  align-items: start;
  gap: 17px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .footer__link-list {
    flex-direction: column;
    gap: 5px;
    line-height: 1.5;
  }
}
.footer__address {
  margin-top: 34px;
}
@media screen and (max-width: 900px) {
  .footer__address {
    margin-top: 16px;
  }
}
.footer__tel {
  margin-top: 18px;
}
.footer__box {
  display: flex;
  flex-direction: column;
  row-gap: 130px;
}
@media screen and (max-width: 900px) {
  .footer__box {
    row-gap: 0;
  }
}
.footer__nav {
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer__sns {
  display: flex;
  justify-content: end;
  gap: 19px;
}
@media screen and (max-width: 900px) {
  .footer__sns {
    margin-top: 28px;
    margin-right: 5px;
  }
}
.footer__icon {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  text-align: center;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.footer__icon img {
  height: 100%;
}
.footer__bottom {
  font-size: 12px;
  text-align: center;
  margin-top: 21px;
}
@media screen and (max-width: 900px) {
  .footer__bottom {
    margin-top: 37px;
    font-size: 11px;
  }
}
.footer__copyright {
  margin: 0;
}

.breadcrumb {
  text-align: left;
  padding-top: 140px;
  font-size: 14px;
  line-height: 1.65;
}
@media screen and (max-width: 900px) {
  .breadcrumb {
    padding-top: 65px;
  }
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item:after {
  content: ">";
  padding: 0 0.2em;
  color: var(--mainColor);
}
.breadcrumb__item:last-child:after {
  content: "";
}
.breadcrumb__item a:hover {
  color: #808080;
}

.archive__title {
  margin-top: 72px;
}
@media screen and (max-width: 900px) {
  .archive__title {
    margin-top: 35px;
  }
}
.archive__tab-box {
  margin: 45px auto 50px auto;
}
@media screen and (max-width: 900px) {
  .archive__tab-box {
    margin: 20px auto 25px auto;
    overflow: scroll;
    height: 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.archive__tab-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .archive__tab-list {
    gap: 10px;
    padding: 0 14px;
    width: 550px;
    justify-content: flex-start;
  }
}
.archive__box {
  margin-bottom: 0;
}
.archive__block {
  display: flex;
  gap: 37px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .archive__block {
    display: block;
    position: relative;
    margin-bottom: 30px;
  }
}
.archive__thumbnail {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  width: 230px;
  height: 150px;
}
.archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .archive__thumbnail {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 900px) {
  .archive__text-area {
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0px 0px 20px 20px;
    width: 100%;
  }
}
.archive__text-area-box {
  display: flex;
  align-items: center;
}
.archive__date {
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .archive__date {
    font-size: 12px;
  }
}
.archive__category {
  font-size: 14px;
  color: #fff;
  background-color: #93c572;
  border-radius: 5px;
  margin-left: 23px;
  padding: 0.2em 20px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .archive__category {
    position: absolute;
    bottom: 163px;
    right: 10px;
  }
}
.archive__content {
  text-align: left;
  margin-top: 10px;
}
.archive__content-title {
  margin-top: 6px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .archive__content-title {
    font-size: 14px;
    margin: 5px 0;
  }
}
.archive__content-text {
  font-size: 14px;
  font-weight: normal;
  margin-top: 20px;
}

.pagination {
  text-align: center;
}
.pagination__item {
  display: inline;
  background-color: var(--backgroundColor);
  color: var(--mainColor);
  font-size: 14px;
  border: 2px solid #f0f3f5;
  border-radius: 10px;
  margin-right: 7px;
  padding: 1.143em 1.315em;
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next, .nav-links.dots {
  background-color: var(--backgroundColor);
  color: var(--mainColor);
  font-size: 14px;
  border: 2px solid #f0f3f5;
  border-radius: 10px;
  margin-right: 7px;
  padding: 1.143em 1.315em;
}

.post {
  text-align: left;
}
.post__box {
  padding: 48px 180px 50px;
}
@media screen and (max-width: 900px) {
  .post__box {
    padding: 30px 20px;
    margin-top: 40px;
  }
}
.post__title {
  font-size: 40px;
  font-weight: bold;
  margin-top: 76px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .post__title {
    font-size: 25px;
    line-height: 1.35;
    margin-top: 34px;
    margin-bottom: 13px;
  }
}
.post__title-box {
  display: flex;
  align-items: center;
}
.post__title-date {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.post__title-category {
  color: #fff;
  font-size: 14px;
  background-color: var(--mainColor);
  border-radius: 5px;
  margin-left: 19px;
  padding: 0.25em 20px;
  text-align: center;
}
.post__img {
  width: 100%;
  margin: 0 auto;
}
.post__img img {
  border-radius: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.post__content h2 {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid var(--mainColor);
  margin-top: 78px;
}
@media screen and (max-width: 900px) {
  .post__content h2 {
    font-size: 20px;
    margin-top: 43px;
  }
}
.post__content h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-top: 37px;
  border-left: 10px solid #93c572;
  padding-left: 10px;
}
@media screen and (max-width: 900px) {
  .post__content h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 34px;
  }
}
.post__content p,
.post__content ul,
.post__content ol {
  margin-top: 18px;
  line-height: 1.65;
}
@media screen and (max-width: 900px) {
  .post__content p,
  .post__content ul,
  .post__content ol {
    margin-top: 12px;
    line-height: 1.7;
  }
}
.post__content ul,
.post__content ol {
  list-style: inside;
}
.post__content-box {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .post__content-box {
    flex-direction: column;
  }
}
.post__content-box-text {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .post__content-box-text {
    width: 100%;
  }
}
.post__content-box-img {
  width: 50%;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .post__content-box-img {
    width: 100%;
  }
}
.post__content-box-img img {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.post__back-button {
  margin: 75px auto 0 auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .post__back-button {
    margin: 35px auto 0 auto;
  }
}

div#toc_container {
  font-weight: bold;
  border: 2px solid var(--mainColor);
  border-radius: 20px;
  padding: 26px 28px;
  margin-top: 24px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  div#toc_container {
    padding: 9px 14px;
    margin-top: 15px;
  }
}
div#toc_container p.toc_title {
  text-align: left;
  font-size: 20px;
  line-height: 27px;
}
div#toc_container .toc_list {
  counter-reset: num;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 10px;
  margin-left: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  div#toc_container .toc_list {
    font-size: 14px;
    margin-left: 0px;
    margin-top: 13px;
  }
}
div#toc_container .toc_list > li {
  counter-increment: num;
}
div#toc_container .toc_list > li::before {
  content: counter(num) ".";
  color: var(--accentColor);
}
div#toc_container .toc_list > li > ul > li {
  letter-spacing: 0.01em;
  position: relative;
}
@media screen and (max-width: 900px) {
  div#toc_container .toc_list > li > ul > li {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) and (max-width: 900px) {
  div#toc_container .toc_list > li > ul > li:last-child {
    margin-bottom: 14px;
  }
}
div#toc_container .toc_list > li > ul > li::before {
  position: absolute;
  top: -9px;
  left: -18px;
  content: "・";
  font-size: 25px;
  color: var(--mainColor);
}

.enquiry__title {
  margin-top: 76px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .enquiry__title {
    margin-top: 35px;
    margin-bottom: 20px;
  }
}
.enquiry__descript {
  margin-top: 35px;
}

.contact-form__group {
  margin-bottom: 38px;
}
@media screen and (max-width: 900px) {
  .contact-form__group {
    margin-bottom: 30px;
  }
}
.contact-form__label {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 20px;
}
.contact-form__required {
  font-size: 12px;
  line-height: 1;
  margin-left: 10px;
  padding: 5px;
  background: var(--mainColor);
  color: #ffffff;
  border-radius: 5px;
  display: inline-block;
  font-weight: 100;
  height: 23px;
}
.contact-form__input {
  display: block;
  border: 1px solid var(--mainColor);
  border-radius: 5px;
  margin-top: 12px;
  padding-left: 20px;
  width: 500px;
  height: 50px;
}
.contact-form__input.wpcf7-not-valid {
  border-color: #D53838;
}
@media screen and (max-width: 900px) {
  .contact-form__input {
    width: 100%;
  }
}
.contact-form__option {
  background-color: #F9F9F9;
  color: var(--mainColor);
  font-size: 16px;
  border-bottom: var(--mainColor) dashed;
}
.contact-form__textarea {
  display: block;
  border: 1px solid var(--mainColor);
  border-radius: 5px;
  margin-top: 12px;
  padding: 10px 20px;
  width: 600px;
  height: 150px;
}
@media screen and (max-width: 900px) {
  .contact-form__textarea {
    width: 100%;
  }
}
.contact-form__confirm-text {
  margin-top: 9px;
  text-align: left;
}
.contact-form__button {
  font-size: 16px;
  width: 200px;
  height: 50px;
  padding: 0;
  margin-top: 52px;
}
.contact-form__button--back {
  display: block;
  background-color: var(--mainColor);
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--mainColor);
  border-radius: 6px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1em;
}

.custom-dropdown {
  position: relative;
  display: block;
  border: 1px solid var(--mainColor);
  border-radius: 5px;
  margin-top: 12px;
  width: 400px;
  height: 50px;
  /* ドロップダウンが開いたときの矢印変更 */
}
@media screen and (max-width: 900px) {
  .custom-dropdown {
    width: 100%;
  }
}
.custom-dropdown__selected {
  color: #CBCBCB;
  padding-left: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  height: 100%;
  text-align: left;
  line-height: 48px;
}
.custom-dropdown__selected.selected {
  color: var(--txtColor);
}
.custom-dropdown__selected::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 47%;
  width: 14px;
  height: 14px;
  border-left: 2px solid var(--mainColor);
  /* 緑色 */
  border-bottom: 2px solid var(--mainColor);
  /* 緑色 */
  transform: translateY(-47%) rotate(-45deg);
  pointer-events: none;
}
.custom-dropdown.open .custom-dropdown__selected::after {
  transform: translateY(-50%) rotate(135deg);
}
.custom-dropdown__list {
  display: none;
  position: absolute;
  background-color: #F9F9F9;
  border: 1px solid var(--mainColor);
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-dropdown option {
  color: var(--mainColor);
  padding: 14px 10px;
  margin: 0 10px;
  cursor: pointer;
  text-align: left;
  background-image: linear-gradient(to right, var(--mainColor), var(--mainColor) 10px, transparent 1px, transparent 8px);
  background-size: 15px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.custom-dropdown option:last-child {
  background: none;
}
.custom-dropdown option:hover {
  background-color: #ddd;
}
.custom-dropdown.open .custom-dropdown__list {
  display: block;
}

.wpcf7-not-valid-tip {
  text-align: left;
}

.thanks__text--large {
  font-size: 20px;
  font-weight: bold;
}
.thanks__text--medium {
  margin-top: 23px;
  margin-bottom: 30px;
}
.thanks__info {
  color: var(--mainColor);
}

.cat-item {
  width: 126px;
  color: var(--accentColor);
  font-weight: bold;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  text-align: center;
  height: 44px;
}
.cat-item a {
  display: block;
  padding: 0.7em;
}
.cat-item.current-cat {
  background-color: var(--mainColor);
  color: #fff;
}

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

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