@charset "UTF-8";
:root {
  --color-text: #555555;
  --color-green: #93c572;
  --color-orange: #f7b560;
  --color-bg: #f9f9f9;
  --color-white: #ffffff;
  --color-line: #eeeeee;
  --color-muted-bg: #f0f3f5;
  --font-base: Yu Gothic Medium, 游ゴシック Medium, 游ゴシック体, sans-serif;
  --font-en: Archivo Narrow, sans-serif;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  color: #555555;
  background-color: #f9f9f9;
}

.inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.max-960 {
  max-width: 960px;
}

.flex-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 92%;
  }
}
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  z-index: 300;
  width: 90%;
  max-width: 1500px;
  height: 5.625rem;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 3.125rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}
.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  height: 2.5rem;
}
.header .btn--contact,
.header .btn--accent {
  width: 10rem;
  height: 2.8125rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
}

.global-nav {
  margin-left: auto;
  margin-right: 1.25rem;
}
.global-nav ul {
  display: flex;
  gap: 1.875rem;
}
.global-nav a {
  font-size: 0.9375rem;
  font-weight: bold;
  transition: color 0.3s;
}
.global-nav a:hover {
  color: #93c572;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 2.25rem;
  height: 2.625rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 301;
  flex-shrink: 0;
  color: #93c572;
}
.hamburger__bars {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 1.5rem;
}
.hamburger__bars span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: #93c572;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger__bars span:nth-child(3) {
  display: none;
}
.hamburger__text {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
}
.hamburger.is-open .hamburger__bars span:nth-child(1) {
  transform: translateY(0.21875rem) rotate(45deg);
}
.hamburger.is-open .hamburger__bars span:nth-child(2) {
  transform: translateY(-0.21875rem) rotate(-45deg);
}
@media screen and (max-width: 1199px) {
  .hamburger {
    display: flex;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    height: 4rem;
    padding: 0 1.25rem;
    border-radius: 0;
  }
  .header__contact {
    display: none;
  }
  .global-nav {
    display: none;
  }
}
.footer {
  padding-top: 3.75rem;
  border-top: 1px solid #dddddd;
}
.footer .inner {
  max-width: 960px;
}
.footer__top {
  margin-bottom: 2.5rem;
  align-items: stretch;
}
.footer__logo {
  margin-bottom: 1.25rem;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__nav {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
  font-weight: bold;
}
.footer__nav a:hover {
  color: #93c572;
}
.footer__sns {
  display: flex;
  gap: 0.9375rem;
  margin-top: auto;
}
.footer__sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #555555;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: 0.3s;
}
.footer__sns-icon:hover {
  background-color: #93c572;
  color: #ffffff;
  border-color: #93c572;
}
.footer__hours {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #555555;
}
.footer__address {
  text-transform: uppercase;
}
.footer__address-line {
  display: block;
}
.footer__address-tel {
  display: block;
  margin-top: 1.6em;
}
.footer__bottom {
  padding: 1.25rem 0;
  color: #999;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  text-align: center;
}
.footer__corp {
  text-transform: capitalize;
}

@media screen and (max-width: 954px) {
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  .footer__sns {
    margin-top: 0;
  }
}
.btn {
  display: inline-block;
  border-radius: 4.25rem;
  font-weight: lighter;
  text-align: center;
  transition: 0.3s;
}
.btn--contact, .btn--accent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 4.0625rem;
  background-color: #f7b560;
  color: #ffffff;
  font-size: 1rem;
}
.btn--contact:hover, .btn--accent:hover {
  background-color: #e09618;
  transform: translateY(-0.125rem);
}
.btn--viewmore, .btn--ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 4.0625rem;
  border: 0.125rem solid #93c572;
  color: #93c572;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.125rem;
  text-transform: capitalize;
}
.btn--viewmore:hover, .btn--ghost:hover {
  background-color: #93c572;
  color: #ffffff;
}
.btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 4.0625rem;
  background-color: #93c572;
  color: #ffffff;
  font-size: 1rem;
}
.btn--primary:hover {
  background-color: #7aad5a;
  transform: translateY(-0.125rem);
}
.btn--contact-white {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 4.375rem;
  margin: 0 auto 2.5rem;
  background-color: #ffffff;
  color: #93c572;
  border-radius: 3.125rem;
  border: 0.125rem solid #93c572;
  font-size: 1.125rem;
}
@media (any-hover: hover) {
  .btn--contact-white:hover {
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    transform: translateY(-0.1875rem);
  }
}

.news-detail__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem;
  height: 4.25rem;
  margin: 4.75rem auto 0;
  color: #93c572;
  border: 0.125rem solid #93c572;
  border-radius: 3rem;
  font-size: 1.25rem;
  font-weight: bold;
  transition: 0.3s;
}

.news-detail__back:hover {
  background-color: #93c572;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .news-detail__back {
    width: 100%;
    height: 3.75rem;
    margin-top: 3.25rem;
    font-size: 1.125rem;
  }
}
.activity__tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.875rem;
  height: 4.0625rem;
  background-color: #ffffff;
  color: #f7b560;
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
  opacity: 1;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: 0.3s;
}

.activity__tab-btn--active,
.activity__tab-btn:hover {
  background-color: #93c572;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .activity__tab-btn {
    width: 100%;
    height: 2.625rem;
    padding: 0;
    border-radius: 0.5rem;
    font-size: 0.78125rem;
    white-space: nowrap;
  }
}
.section-title {
  margin-bottom: 3.125rem;
  text-align: center;
}
.section-title--left {
  text-align: left;
}
.section-title__en {
  display: block;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #93c572;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.section-title__ja {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #555555;
  font-weight: bold;
  font-size: 2rem;
}
.section-title__ja::after {
  content: "";
  position: absolute;
  bottom: 0.16em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.55em;
  background-image: url("../img/wavyline.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title__ja {
    font-size: 1.5rem;
  }
  .section-title__ja::after {
    bottom: 0.14em;
    height: 0.52em;
  }
}
.contact-section {
  padding: 7.5rem 0;
  font-family: "Yu Gothic", "Yu Gothic Medium", sans-serif;
}
.contact-section .contact-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 28.125rem;
  padding: 3rem 2rem;
  background-color: #f7b560;
  color: #ffffff;
  text-align: center;
  border-radius: 3.125rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
}
.contact-section .contact-section__heading {
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.contact-section .contact-section__description {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
.contact-section .contact-section__description-line {
  display: block;
}
.contact-section .contact-section__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 4.375rem;
  margin: 0 auto 2.5rem;
  background-color: #ffffff;
  color: #93c572;
  border-radius: 3.125rem;
  border: 0.125rem solid #93c572;
  font-size: 1.125rem;
}
@media (any-hover: hover) {
  .contact-section .contact-section__btn:hover {
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    transform: translateY(-0.1875rem);
  }
}
.contact-section .contact-section__btn {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.contact-section .contact-section__tel {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
}
.contact-section .contact-section__tel-num {
  margin-left: 0.625rem;
  font-weight: bold;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-section__tel-num {
    pointer-events: auto;
  }
}
.contact-section .contact-section__tel-num {
  margin-left: 0.375rem;
  font-family: "Yu Gothic", "Yu Gothic Medium", sans-serif;
  letter-spacing: 0.02em;
}
.contact-section .contact-section__tel-time {
  display: block;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
}
.contact-section .contact-section__tel-hours {
  display: inline;
}

@media screen and (max-width: 767px) {
  .contact-section {
    padding: 3.75rem 0;
  }
  .contact-section .contact-section__card {
    min-height: auto;
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
  }
  .contact-section .contact-section__heading {
    font-size: 1.75rem;
    line-height: 1.45;
  }
  .contact-section .contact-section__description {
    font-size: 1rem;
    line-height: 1.8;
  }
  .contact-section .contact-section__tel {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .contact-section .contact-section__tel-num {
    display: block;
    margin-left: 0;
    font-size: 1.875rem;
    line-height: 1.35;
  }
  .contact-section .contact-section__tel-time {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .contact-section .contact-section__tel-hours {
    display: block;
  }
}
.access-box {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  grid-template-rows: 15rem 15rem;
  grid-template-areas: "sidebar info" "sidebar map";
  width: 100%;
  height: 30rem;
  background: #ffffff;
  border-radius: 5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.access-box__sidebar {
  grid-area: sidebar;
  background: #93c572;
  border-radius: 5rem 0 0 5rem;
  display: flex;
  flex-direction: column;
  padding: 3.75rem 0 0 2.5rem;
  box-sizing: border-box;
}
.access-box__sidebar-labels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.access-box__sidebar-map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.75rem;
}
.access-box__label {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}
.access-box__map-link {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #555555;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.access-box__map-link:hover {
  text-decoration: underline;
}
.access-box__info {
  grid-area: info;
  display: flex;
  align-items: flex-start;
  padding: 3.75rem 2.5rem 0;
}
.access-box__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.access-box__info-list address {
  font-style: normal;
}
.access-box__info-list .access-box__line {
  display: block;
}
.access-box__info-list li {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 0.875rem;
}
.access-box__info-list li:last-child {
  margin-bottom: 0;
}
.access-box__map {
  grid-area: map;
  overflow: hidden;
}
.access-box__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .access-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 250px;
    grid-template-areas: "sidebar" "info" "map";
    width: 100%;
    height: auto;
    border-radius: 3rem;
  }
  .access-box__sidebar {
    border-radius: 3rem 3rem 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .access-box__sidebar-labels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
  }
  .access-box__label {
    font-size: 1rem;
  }
  .access-box__sidebar-map {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    width: 100%;
  }
  .access-box__info {
    padding: 1.5rem;
  }
  .access-box__info-list li {
    font-size: 0.875rem;
  }
}
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}
.scroll-down__text {
  margin-bottom: 0.9375rem;
  color: #ffffff;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0.25rem rgba(0, 0, 0, 0.3);
}
.scroll-down__line {
  position: relative;
  width: 0.1875rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.scroll-down__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scaleY(0);
  transform-origin: top;
  animation: scrollVertical 3s infinite cubic-bezier(1, 0, 0, 1);
}
.scroll-down__arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: rgba(255, 255, 255, 0.2);
  transform-origin: left;
  transform: rotate(-30deg);
}
.scroll-down__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  animation: scrollHorizontal 3s infinite cubic-bezier(1, 0, 0, 1);
}

@keyframes scrollVertical {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  40.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  80%, 100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes scrollHorizontal {
  0%, 20% {
    transform: scaleX(0);
    transform-origin: left;
  }
  60% {
    transform: scaleX(1);
    transform-origin: left;
  }
  60.1% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.news-pop {
  display: block;
  position: fixed;
  right: 5%;
  bottom: 2.5rem;
  z-index: 100;
  width: 20rem;
  padding: 1.25rem;
  background-color: rgba(244, 167, 83, 0.95);
  border-radius: 0.9375rem;
  color: #ffffff;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  text-decoration: none;
}
.news-pop:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.375rem 0.9375rem rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.news-pop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1.25rem);
}
.news-pop__heading {
  margin-bottom: 0.3125rem;
  font-weight: bold;
  font-size: 1.25rem;
  text-transform: capitalize;
}
.news-pop__date {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.news-pop__title {
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .news-pop {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .news-pop:hover {
    transform: none;
  }
}
.drawer__overlay {
  position: fixed;
  top: calc(1.25rem + 5.625rem);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(249, 249, 249, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer__panel {
  position: fixed;
  top: calc(1.25rem + 5.625rem);
  left: 50%;
  z-index: 201;
  width: 90%;
  max-width: 1500px;
  height: auto;
  max-height: calc(100dvh - 6.875rem);
  padding: 1rem 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translate(-50%, -0.75rem);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
.drawer.is-open .drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}
.drawer.is-open .drawer__panel {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}
.drawer__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  margin: 0 -0.875rem;
  padding: 0 0.6875rem 0 0.625rem;
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 0.1875rem 0.5rem rgba(0, 0, 0, 0.3);
}
.drawer__logo img {
  height: 1.25rem;
  width: auto;
}
.drawer__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 1.875rem;
  height: 2.125rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #93c572;
}
.drawer__close:hover {
  color: #93c572;
}
.drawer__close-icon {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 1rem;
}
.drawer__close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 0.09375rem;
  background-color: currentColor;
  border-radius: 2px;
}
.drawer__close-icon span:nth-child(1) {
  transform: translateY(-50%) rotate(32deg);
}
.drawer__close-icon span:nth-child(2) {
  transform: translateY(-50%) rotate(-32deg);
}
.drawer__close-label {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.5625rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.drawer__nav {
  width: 100%;
  padding: 0.8125rem 0 0;
}
.drawer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer__nav-item {
  border-bottom: 1px solid #93c572;
}
.drawer__nav-link {
  display: flex;
  align-items: center;
  min-height: 3.4375rem;
  padding: 0 0.125rem;
  color: #555555;
  transition: color 0.2s;
}
.drawer__nav-link:hover {
  color: #93c572;
}
.drawer__nav-link:hover .drawer__nav-arrow {
  transform: translateX(0.25rem);
}
.drawer__nav-text {
  font-size: 1rem;
  font-weight: bold;
}
.drawer__nav-en {
  margin-left: 0.625rem;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #f7b560;
  letter-spacing: 0;
  text-transform: uppercase;
}
.drawer__nav-arrow {
  position: relative;
  margin-left: auto;
  width: 1.625rem;
  height: 0.625rem;
  color: #93c572;
  font-size: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.drawer__nav-arrow::before, .drawer__nav-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  background-color: currentColor;
  border-radius: 999px;
}
.drawer__nav-arrow::before {
  top: 50%;
  width: 1.625rem;
  height: 0.125rem;
  transform: translateY(-50%);
}
.drawer__nav-arrow::after {
  top: 50%;
  width: 0.5rem;
  height: 0.125rem;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
}
.drawer__contact {
  margin-top: 1rem;
  text-align: center;
}
.drawer__contact-label {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  margin-bottom: 0.125rem;
  color: #93c572;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.drawer__tel {
  margin-bottom: 0.75rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 0.95;
  color: #93c572;
  letter-spacing: 0.015em;
}
.drawer__tel a {
  color: inherit;
  text-decoration: none;
}
.drawer__hours-title {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  margin-bottom: 0.1875rem;
  color: #93c572;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.drawer__hours {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  margin-bottom: 1.25rem;
  color: #93c572;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18.375rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .drawer__overlay {
    top: 4rem;
  }
  .drawer__panel {
    top: 4rem;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 4rem);
    padding: 0.75rem 1.25rem 2rem;
    transform: translateY(-0.75rem);
  }
  .drawer.is-open .drawer__panel {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .drawer__overlay {
    top: 3.875rem;
  }
  .drawer__panel {
    top: 3.875rem;
    max-height: calc(100dvh - 3.875rem);
  }
}

.breadcrumb {
  padding: 0.75rem 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__link {
  color: #555555;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #93c572;
  text-decoration: underline;
}
.breadcrumb__sep {
  margin: 0 0.5rem;
  color: #aaaaaa;
  font-size: 0.625rem;
}

.page-header {
  padding: 11.25rem 0 5rem;
  text-align: center;
}
.page-header__en {
  display: block;
  margin-bottom: 0.625rem;
  color: #93c572;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-header__ja {
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
  color: #555555;
  font-size: 2rem;
  font-weight: bold;
}
.page-header__ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3.75rem;
  height: 0.1875rem;
  background-color: #93c572;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .page-header {
    padding: 7.5rem 0 3rem;
  }
  .page-header__en {
    font-size: 1.75rem;
  }
  .page-header__ja {
    font-size: 1.5rem;
  }
}
.news-filter {
  margin-bottom: 3.75rem;
}
.news-filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-filter__item {
  display: inline-flex;
}
.news-filter__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  background-color: #ffffff;
  color: #f7b560;
  border: none;
  border-radius: 4.25rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  font-family: inherit;
  font-weight: bold;
  font-size: 0.9375rem;
  cursor: pointer;
  appearance: none;
  transition: 0.3s;
}
.news-filter__link:hover {
  background-color: #93c572;
  color: #ffffff;
}
.news-filter__link.is-active {
  background-color: #93c572;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .news-filter {
    margin-bottom: 2.5rem;
  }
  .news-filter__list {
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1.75rem 0.625rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .news-filter__list::-webkit-scrollbar {
    display: none;
  }
  .news-filter__link {
    min-width: 6.25rem;
    height: 2.375rem;
    padding: 0 1rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 4.5rem;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffffff;
  color: #93c572;
  border: 0.0625rem solid #f0f3f5;
  border-radius: 0.5rem;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.pagination__link.is-current, .pagination__link.is-disabled {
  pointer-events: none;
}
.pagination__link.is-current {
  background-color: #f0f3f5;
}
.pagination__link.is-disabled {
  opacity: 0.45;
}

@media screen and (max-width: 767px) {
  .pagination {
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
  .pagination__link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
  }
}
.card__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: opacity 0.3s;
}
.card__link:hover {
  opacity: 0.6;
}
.card__meta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 0.5rem;
}
.card__date {
  font-family: "Archivo Narrow", sans-serif;
  color: #555555;
  text-transform: uppercase;
}
.card__category {
  padding: 0.25rem 0.75rem;
  background-color: #93c572;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 0.45rem;
}
.card__title {
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card--news {
  border-bottom: 1px solid #eeeeee;
}
.card--news:last-child {
  border-bottom: none;
}
.card--news .card__link {
  padding: 1.5625rem 0;
}

.news__category {
  padding: 0.25rem 0.75rem;
  background-color: #93c572;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 0.45rem;
}

@media screen and (max-width: 767px) {
  .news__category {
    min-width: 0;
    padding: 0.25rem 0.5rem;
    text-align: center;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
  }
  .card__title {
    font-size: 1rem;
    white-space: normal;
  }
}
.contact-form {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 11.25rem;
  background-color: #ffffff;
  border-radius: 6.25rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
}
.contact-form__row {
  margin-bottom: 2.5rem;
}
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  color: #555555;
  font-size: 1.25rem;
  font-weight: bold;
}
.contact-form__required {
  display: inline-block;
  padding: 0.1875rem 0.4375rem;
  background-color: #93c572;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: normal;
  border-radius: 0.25rem;
  line-height: 1;
}
.contact-form__optional {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background-color: #aaaaaa;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: normal;
  border-radius: 0.25rem;
}
.contact-form__field {
  position: relative;
  width: 100%;
}
.contact-form__input, .contact-form__select {
  width: 100%;
  max-width: 31.25rem;
  height: 3.125rem;
  padding: 0 1.25rem;
  background-color: #ffffff;
  color: #555555;
  border: 0.0625rem solid #93c572;
  border-radius: 0.25rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form__input:focus, .contact-form__select:focus {
  outline: none;
  border-color: #93c572;
}
.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2393c572' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__textarea {
  width: 100%;
  max-width: 37.5rem;
  min-height: 9.375rem;
  padding: 1rem;
  background-color: #ffffff;
  color: #555555;
  border: 0.0625rem solid #93c572;
  border-radius: 0.25rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  resize: none;
  transition: border-color 0.3s;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #93c572;
}
.contact-form__field.is-error .contact-form__input,
.contact-form__field.is-error .contact-form__select,
.contact-form__field.is-error .contact-form__textarea {
  border-color: #ff3636;
}
.contact-form__error {
  display: block;
  margin-top: 0.5rem;
  color: #ff3636;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
}
.contact-form__alert {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background-color: #fff0f0;
  border: 0.0625rem solid #ff3636;
  border-radius: 0.5rem;
  color: #ff3636;
  font-size: 0.9375rem;
  font-weight: bold;
}
.contact-form__privacy {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background-color: #f3f3f3;
  border-radius: 0.5rem;
  text-align: center;
}
.contact-form__privacy-text {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.contact-form__privacy-link {
  color: #93c572;
  text-decoration: underline;
}
.contact-form__privacy-link:hover {
  opacity: 0.7;
}
.contact-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
}
.contact-form__checkbox input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #93c572;
}
.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}
.contact-form .btn--contact-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3rem;
  background-color: #ffffff;
  color: #93c572;
  border: 0.125rem solid #93c572;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
}
@media (any-hover: hover) {
  .contact-form .btn--contact-confirm:hover {
    background-color: #93c572;
    color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 3rem 1.25rem;
    border-radius: 2.5rem;
  }
  .contact-form__row {
    margin-bottom: 2rem;
  }
  .contact-form__label {
    font-size: 1rem;
  }
  .contact-form__input, .contact-form__select {
    max-width: none;
    height: 3rem;
    font-size: 0.9375rem;
  }
  .contact-form__textarea {
    max-width: none;
    min-height: 8.75rem;
    font-size: 0.9375rem;
  }
  .contact-form__privacy {
    margin: 2rem 0;
    padding: 1.25rem;
  }
}
.contact-select {
  position: relative;
  width: 100%;
  max-width: 25rem;
}
.contact-select__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3.125rem;
  padding: 0 1.25rem;
  background-color: #ffffff;
  color: #555555;
  border: 0.0625rem solid #93c572;
  border-radius: 0.25rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s;
}
.contact-select__toggle:focus {
  outline: none;
  border-color: #93c572;
}
.contact-select__toggle::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  background-image: none;
  border-right: 0.1875rem solid #93c572;
  border-bottom: 0.1875rem solid #93c572;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.contact-select__list {
  position: absolute;
  top: calc(100% - 0.0625rem);
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 17.5rem;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  border: 0.0625rem solid #93c572;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: none;
  list-style: none;
  overflow-y: auto;
}
.contact-select__option {
  padding: 0.875rem 1.25rem;
  color: #93c572;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s, color 0.2s;
}
.contact-select__option + .contact-select__option {
  border-top: 0.125rem dashed #b8b8b8;
}
.contact-select__option:hover, .contact-select__option.is-active {
  background-color: rgba(147, 197, 114, 0.08);
  color: #93c572;
}
.contact-select__option[aria-selected=true] {
  background-color: #93c572;
  color: #ffffff;
  font-weight: bold;
}
.contact-select__native {
  display: none;
}
.contact-select.is-open .contact-select__toggle {
  border-color: #93c572;
  border-radius: 0.25rem 0.25rem 0 0;
}
.contact-select.is-open .contact-select__toggle::after {
  transform: rotate(225deg);
}
.contact-select.is-placeholder .contact-select__toggle {
  color: #cfcfcf;
}
.contact-select.is-error .contact-select__toggle {
  border-color: #ff3636;
}
.contact-select.is-error .contact-select__toggle::after {
  border-color: #ff3636;
}

@media screen and (max-width: 767px) {
  .contact-select {
    max-width: none;
  }
  .contact-select__toggle {
    height: 3rem;
    font-size: 0.9375rem;
  }
  .contact-select__option {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }
}
.contact-confirm {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 11.25rem;
  background-color: #ffffff;
  border-radius: 6.25rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
}
.contact-confirm__lead {
  margin-bottom: 2.5rem;
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
}
.contact-confirm__list {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0;
}
.contact-confirm__row {
  display: block;
  margin-bottom: 1.75rem;
}
.contact-confirm__term {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  color: #555555;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}
.contact-confirm__required {
  display: inline-block;
  padding: 0.1875rem 0.4375rem;
  background-color: #93c572;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: normal;
  border-radius: 0.25rem;
  line-height: 1;
}
.contact-confirm__desc {
  margin: 0;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.contact-confirm__desc--empty {
  color: #999999;
}
.contact-confirm__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
}
.contact-confirm .btn--contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3rem;
  background-color: #ffffff;
  color: #93c572;
  border: 0.125rem solid #93c572;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
}
@media (any-hover: hover) {
  .contact-confirm .btn--contact-submit:hover {
    background-color: #93c572;
    color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .contact-confirm {
    width: calc(100% - 2.5rem);
    padding: 3rem 1.25rem;
    border-radius: 2.5rem;
  }
  .contact-confirm__lead {
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    text-align: left;
  }
  .contact-confirm__list {
    max-width: none;
  }
  .contact-confirm__row {
    margin-bottom: 1.5rem;
  }
  .contact-confirm__term {
    font-size: 1rem;
  }
  .contact-confirm__desc {
    font-size: 0.9375rem;
  }
  .contact-confirm__actions {
    margin-top: 2.5rem;
  }
}
.contact-thanks {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background-color: #ffffff;
  border-radius: 6.25rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
  text-align: center;
}
.contact-thanks__heading {
  margin-bottom: 1.375rem;
  color: #555555;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.contact-thanks__message {
  margin-bottom: 1.75rem;
  color: #555555;
  font-size: 1rem;
  line-height: 1.75;
}
.contact-thanks__message-line {
  display: block;
}
.contact-thanks__tel {
  margin-bottom: 0.375rem;
  color: #93c572;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}
.contact-thanks__tel a {
  color: #93c572;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.contact-thanks__hours {
  color: #93c572;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.contact-thanks__actions {
  display: flex;
  justify-content: center;
  margin-top: 2.875rem;
}
.contact-thanks .btn--thanks-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3rem;
  background-color: #ffffff;
  color: #93c572;
  border: 0.125rem solid #93c572;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .contact-thanks .btn--thanks-top:hover {
    background-color: #93c572;
    color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .contact-thanks {
    padding: 3rem 1.25rem;
    border-radius: 2.5rem;
  }
  .contact-thanks__heading {
    font-size: 1.125rem;
  }
  .contact-thanks__message {
    font-size: 0.9375rem;
  }
  .contact-thanks__tel, .contact-thanks__hours {
    font-size: 1rem;
  }
  .contact-thanks__tel a {
    font-size: 1.5rem;
    pointer-events: auto;
  }
}
.fv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../img/fv.jpeg");
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}
.fv__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.2;
}
.fv__content {
  z-index: 1;
  margin-top: -3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fv__logo img {
  display: block;
  width: 12.6875rem;
  margin: 0 auto 1.25rem;
}
.fv__catchphrase {
  color: #87b16c;
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.3);
}
.fv__catchphrase-line {
  display: inline;
}

@media screen and (max-width: 767px) {
  .fv {
    min-height: 600px;
  }
  .fv__logo img {
    width: 10rem;
  }
  .fv__catchphrase {
    font-size: 1.75rem;
    padding: 0 1.25rem;
  }
  .fv__catchphrase-line {
    display: block;
  }
}
.about {
  position: relative;
  overflow: visible;
  padding: 7.5rem 0;
}
.about__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 37.5rem;
}
.about__text-area {
  z-index: 2;
  text-align: center;
}
.about__logo {
  width: 21.875rem;
  margin: 0 auto 1.875rem;
}
.about__text {
  font-weight: bold;
  line-height: 2;
}
.about__text-line {
  display: block;
}
.about__text-break {
  display: block;
  height: 2em;
}
.about__img {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.about__img--1 {
  top: 0;
  left: 5%;
  width: 13.75rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0;
}
.about__img--2 {
  top: 10%;
  right: 5%;
  width: 11.25rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0;
}
.about__img--3 {
  bottom: -7.5rem;
  left: 15%;
  width: 11.25rem;
  height: 11.25rem;
}
.about__img--4 {
  bottom: -11.875rem;
  right: 10%;
  width: 15.625rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0;
}
.about.is-visible .about__img {
  opacity: 1;
  transform: translateY(0);
}
.about.is-visible .about__img--1 {
  transition-delay: 0s;
}
.about.is-visible .about__img--2 {
  transition-delay: 0.6s;
}
.about.is-visible .about__img--3 {
  transition-delay: 1.2s;
}
.about.is-visible .about__img--4 {
  transition-delay: 1.8s;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 3.75rem 0;
  }
  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    min-height: auto;
    padding: 0;
  }
  .about__img {
    position: static;
    display: block;
    width: 100%;
    max-width: 11.25rem;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin: 0 auto;
  }
  .about__img--1 {
    grid-area: 1/1/2/2;
  }
  .about__img--2 {
    grid-area: 1/2/2/3;
  }
  .about__img--3 {
    grid-area: 3/1/4/2;
  }
  .about__img--4 {
    grid-area: 3/2/4/3;
  }
  .about__text-area {
    grid-area: 2/1/3/3;
    padding: 0.5rem 0;
  }
  .about__logo {
    width: 14rem;
  }
  .about__text {
    font-size: 0.9375rem;
  }
  .about__text-break {
    height: 2em;
  }
}
.activity {
  padding: 7.5rem 0;
}
.activity__bg-box {
  max-width: 90%;
  padding: 5rem 0;
  background-color: #ffffff;
  border-radius: 0 6.25rem 6.25rem 0;
  box-shadow: 1px 1px 0.625rem rgba(0, 0, 0, 0.3);
}
.activity .inner {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 64.0625rem) {
  .activity__title, .activity__tabs, .activity__desc {
    margin-left: 10.1875rem;
  }
}
.activity__title {
  position: relative;
  z-index: 1;
  left: 50%;
  display: inline-block;
  margin-bottom: 3.125rem;
  color: #555555;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  transform: translateX(-50%);
}
.activity__title::after {
  content: "";
  position: absolute;
  bottom: 0.16em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.55em;
  background-image: url("../img/wavyline.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
.activity__title {
  left: 0;
  text-align: left;
  transform: none;
}
.activity__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.activity__desc {
  margin-bottom: 3.125rem;
  line-height: 1.8;
  text-align: left;
}
.activity__desc-line {
  display: block;
}
.activity__gallery {
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.activity__gallery .splide__slide {
  width: 18.75rem;
}
.activity__gallery .splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .activity {
    padding: 3.75rem 0;
  }
  .activity__bg-box {
    max-width: 100%;
    border-radius: 0 3rem 3rem 0;
    padding: 3rem 0;
  }
  .activity__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .activity__title::after {
    bottom: 0.14em;
    height: 0.52em;
  }
  .activity__tabs {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .activity__desc {
    font-size: 0.875rem;
  }
}
.faq {
  padding: 7.5rem 0;
}
.faq .section-title__ja::after {
  left: -0.45em;
  width: calc(100% + 0.9em);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq__item {
  position: relative;
  border: 3px solid #93c572;
  border-radius: 50px;
  background: #ffffff;
}
.faq__item::before, .faq__item::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 0.5rem;
  height: 1.875rem;
  background: #f9f9f9;
  transform: translateY(-50%);
  pointer-events: none;
}
.faq__item:not(.faq__item--open)::before, .faq__item:not(.faq__item--open)::after {
  height: 1.25rem;
}
.faq__item::before {
  left: -0.3125rem;
}
.faq__item::after {
  right: -0.3125rem;
}
.faq__item--open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__item--open {
  border-radius: 2.5rem;
}
.faq__item--open::before, .faq__item--open::after {
  height: 1.875rem;
}
.faq__item--open .faq__answer {
  display: block;
}
.faq__question {
  display: grid;
  grid-template-columns: 2.1875rem minmax(0, 1fr) 1.25rem;
  align-items: center;
  gap: 0.9375rem;
  width: 100%;
  padding: 1.25rem 1.875rem;
  background: none;
  border: none;
  color: #555555;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.faq__q-mark, .faq__a-mark {
  flex: 0 0 2.1875rem;
  margin-right: 0;
  color: #93c572;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2.1875rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.faq__a-mark {
  color: #f7b560;
}
.faq__q-text {
  flex-grow: 1;
  min-width: 0;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #93c572;
  transform: translate(-50%, -50%);
}
.faq__icon::before {
  width: 1rem;
  height: 0.125rem;
}
.faq__icon::after {
  width: 0.125rem;
  height: 1rem;
  transition: 0.3s;
}
.faq__answer {
  display: none;
  padding: 0 1.875rem 1.5rem;
}
.faq__answer p {
  display: grid;
  grid-template-columns: 2.1875rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9375rem;
  margin: 0;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 3.75rem 0;
  }
  .faq .section-title__ja::after {
    left: -0.25em;
    width: calc(100% + 0.5em);
  }
  .faq__list {
    gap: 1rem;
  }
  .faq__item {
    border-radius: 1rem;
  }
  .faq__item::before, .faq__item::after {
    height: 1.5rem;
  }
  .faq__item:not(.faq__item--open)::before, .faq__item:not(.faq__item--open)::after {
    height: 1rem;
  }
  .faq__question {
    gap: 0.75rem;
    grid-template-columns: 2.1875rem minmax(0, 1fr) 1.25rem;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
  .faq__answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
  }
  .faq__answer p {
    display: block;
    gap: 0.75rem;
    line-height: 1.8;
  }
  .faq__a-mark {
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
  }
}
.news {
  overflow: hidden;
  padding: 7.5rem 0;
}
.news__grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-areas: "left right";
  column-gap: clamp(3.5rem, 5vw, 5rem);
  align-items: center;
  max-width: 960px;
  margin-left: auto;
}
.news__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0;
}
.news__left .news__lead {
  width: 25rem;
  max-width: 100%;
  margin-bottom: 2.875rem;
  line-height: 1.8;
}
.news__left .btn {
  align-self: center;
}
.news__left .btn--viewmore {
  width: 16rem;
}
.news__right-box {
  grid-area: right;
  padding: 3.125rem;
  padding-right: calc(1.25rem + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
  background-color: #ffffff;
  border-radius: 6.25rem 0 0 6.25rem;
  box-shadow: -1px 1px 0.625rem rgba(0, 0, 0, 0.3);
}
.news__list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5625rem 0;
  transition: opacity 0.3s;
}
.news__list a:hover {
  opacity: 0.6;
}
.news__meta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: auto;
  gap: 0.9375rem;
  margin-bottom: 0.5rem;
}
.news__date {
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}
.news__title {
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 3.75rem 0;
  }
  .news__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "right";
    column-gap: 0;
    margin-right: auto;
    max-width: 100%;
  }
  .news__left {
    padding-right: 0;
    padding-bottom: 2.5rem;
    align-items: center;
    text-align: center;
  }
  .news__left .news__lead {
    width: auto;
    margin-bottom: 1.875rem;
    text-align: left;
  }
  .news__left .btn--viewmore {
    width: 100%;
  }
  .news__right-box {
    margin-right: 0;
    padding-right: 3.125rem;
    border-radius: 3rem;
  }
  .news__title {
    font-size: 1rem;
    white-space: normal;
  }
}
.access {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .access {
    padding: 3rem 1rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.875rem;
    padding: 0 0.875rem;
    background-color: #ffffff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
  }
  .header__logo img {
    width: 8.75rem;
    height: auto;
  }
  .fv {
    align-items: center;
    height: 42.25rem;
    min-height: 42.25rem;
    margin-top: 3.875rem;
  }
  .fv__bg {
    background-position: center top;
  }
  .fv__bg::after {
    opacity: 0.38;
  }
  .fv__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: -4.5rem;
    padding: 0 1.5rem;
    text-align: left;
  }
  .fv__logo img {
    width: 5.5rem;
    margin: 0;
  }
  .fv__logo {
    flex-shrink: 0;
  }
  .fv__catchphrase {
    width: auto;
    padding: 0;
    color: #93c572;
    font-size: 1.625rem;
    line-height: 1.75;
    letter-spacing: 0.14em;
    text-shadow: none;
    white-space: nowrap;
  }
  .scroll-down {
    display: none;
  }
  .news-pop {
    position: fixed;
    top: 38.875rem;
    right: auto;
    left: 1.75rem;
    bottom: auto;
    width: 11.25rem;
    padding: 0.875rem 1rem;
    background-color: rgba(247, 181, 96, 0.95);
    border-radius: 0.625rem;
    box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }
  .news-pop__heading {
    display: inline;
    margin-right: 0.5rem;
    margin-bottom: 0;
    font-family: "Archivo Narrow", sans-serif;
    font-size: 1rem;
  }
  .news-pop__date {
    display: inline;
    margin-bottom: 0;
    font-size: 0.75rem;
    opacity: 1;
  }
  .news-pop__title {
    display: -webkit-box;
    margin-top: 0.5rem;
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.55;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .about {
    padding: 4.5rem 0 5rem;
  }
  .about__content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
    align-items: center;
  }
  .about__img {
    width: 5.25rem;
    height: 5.25rem;
    margin: 0 auto;
  }
  .about__img--1 {
    grid-area: 1/1/2/2;
  }
  .about__img--2 {
    grid-area: 1/2/2/3;
  }
  .about__img--3 {
    grid-area: 3/1/4/2;
  }
  .about__img--4 {
    grid-area: 3/2/4/3;
    width: 6.75rem;
    height: 6.75rem;
  }
  .about__text-area {
    grid-area: 2/1/3/3;
    padding: 0;
  }
  .about__logo {
    width: 12.25rem;
    margin-bottom: 1.875rem;
  }
  .about__text {
    font-size: 0.9375rem;
    line-height: 2.25;
    text-align: center;
  }
  .about__text-break {
    height: 2.25em;
  }
  .activity {
    padding: 0;
  }
  .activity__bg-box {
    max-width: 100%;
    padding: 2.875rem 0 3rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  }
  .activity .inner {
    width: 84%;
    margin: 0 auto;
  }
  .activity__title, .activity__tabs, .activity__desc {
    margin-left: 0;
  }
  .activity__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  .activity__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1.08fr;
    gap: 0.375rem;
    margin-bottom: 1.75rem;
  }
  .activity__desc {
    margin-bottom: 1.75rem;
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .activity__gallery {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    padding-left: 0;
  }
  .activity__gallery .splide__slide {
    width: 10.875rem;
  }
  .activity__gallery .splide__slide img {
    aspect-ratio: 174/145;
    border-radius: 0.875rem;
    object-fit: cover;
  }
  .faq {
    padding: 3.75rem 0 4rem;
  }
  .faq .section-title {
    margin-bottom: 2rem;
    text-align: center;
  }
  .faq__item {
    border-radius: 1.25rem;
  }
  .faq__question {
    padding: 1.25rem 1rem;
    align-items: flex-start;
  }
  .faq__q-mark, .faq__a-mark {
    font-size: 2.1875rem;
  }
  .faq__answer {
    padding: 0 1.25rem 1.25rem 1rem;
  }
  .faq__answer p {
    display: block;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .news {
    padding: 4.75rem 0 4rem;
  }
  .news__grid {
    width: 84%;
    grid-template-areas: "title" "lead" "list" "button";
    margin: 0 auto;
  }
  .news__left {
    display: contents;
  }
  .news__left .section-title {
    grid-area: title;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .news__left p {
    grid-area: lead;
    margin-bottom: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .news__right-box {
    grid-area: list;
    margin-right: calc(50% - 50vw);
    padding: 1.625rem 1.25rem;
    border-radius: 3rem 0 0 3rem;
    box-shadow: -0.1875rem 0.1875rem 0.875rem rgba(0, 0, 0, 0.3);
  }
  .news__list a {
    padding: 0.625rem 0 1.25rem;
  }
  .news__list li + li a {
    padding-top: 1.25rem;
  }
  .news__meta {
    display: grid;
    grid-template-columns: 5.75rem 5.875rem;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .news__date {
    font-size: 0.8125rem;
  }
  .news__title {
    font-size: 0.9375rem;
    line-height: 1.65;
    white-space: normal;
  }
  .news__left .btn--viewmore {
    grid-area: button;
    width: 100%;
    max-width: none;
    height: 4.25rem;
    margin: 1.875rem auto 0;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
  .access {
    width: 84%;
    padding: 4.75rem 0 4rem;
  }
  .access .section-title {
    margin-bottom: 2rem;
  }
  .access-box {
    display: grid;
    grid-template-columns: 36% 64%;
    grid-template-rows: auto 13.5rem;
    grid-template-areas: "sidebar info" "map map";
    border-radius: 3rem;
  }
  .access-box__sidebar {
    border-radius: 3rem 0 0 0;
    flex-direction: column;
    gap: 0;
    padding: 1.625rem 1rem;
  }
  .access-box__sidebar-labels {
    flex-direction: column;
    gap: 1.45rem;
  }
  .access-box__sidebar-map {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 1.65rem;
  }
  .access-box__label {
    font-size: 0.875rem;
  }
  .access-box__map-link {
    font-size: 0.6875rem;
  }
  .access-box__info {
    padding: 1.625rem 1rem;
  }
  .access-box__info-list li {
    min-height: 2.925rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.55;
  }
  .access-box__map {
    border-radius: 0 0 3rem 3rem;
  }
  .contact-section {
    padding: 4rem 0;
  }
  .contact-section .contact-section__card {
    width: 84%;
    min-height: 23.75rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
  }
  .contact-section .contact-section__heading {
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }
  .contact-section .contact-section__description {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
  }
  .contact-section .contact-section__btn {
    width: 100%;
    height: 3.625rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  .contact-section .contact-section__tel {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .contact-section .contact-section__tel-num {
    display: block;
    margin-left: 0;
    font-family: "Yu Gothic", "Yu Gothic Medium", sans-serif;
    font-size: 1.875rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }
  .contact-section .contact-section__tel-time {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.8;
  }
  .contact-section .contact-section__tel-hours {
    display: block;
  }
  .footer {
    padding: 3.75rem 0 1.5rem;
    border-top: 0;
  }
  .footer .inner {
    width: 84%;
  }
  .footer__logo {
    width: 11.5rem;
    margin-bottom: 1.5rem;
  }
  .footer__address, .footer__hours {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .footer__top {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer__nav {
    display: block;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .footer__sns {
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
  }
  .footer__sns-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 768px) and (max-width: 954px) {
  .footer {
    padding: 3.75rem 0 1.5rem;
    border-top: 0;
  }
  .footer .inner {
    width: 84%;
  }
  .footer__logo {
    width: 11.5rem;
    margin-bottom: 1.5rem;
  }
  .footer__address, .footer__hours {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .footer__top {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer__nav {
    display: block;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .footer__sns {
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
  }
  .footer__sns-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  }
}
.newsmore {
  padding: 8.125rem 0 0;
}
.newsmore__inner {
  width: 100%;
}
.newsmore__breadcrumb {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 3.5rem;
  padding: 0;
}
.newsmore__breadcrumb .breadcrumb__sep {
  color: #93c572;
}
.newsmore__heading-area {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}
.newsmore__title {
  margin-left: 0.75rem;
  margin-bottom: 2.75rem;
  font-size: 2.25rem;
  line-height: 1.35;
}
.newsmore__panel {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4.75rem 3rem 4.5rem;
  background-color: #ffffff;
  border-radius: 5rem;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.3);
}
.newsmore__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-height: 37.5rem;
}
.newsmore__item-link {
  display: grid;
  grid-template-columns: 13.75rem 1fr;
  gap: 2.25rem;
  align-items: center;
}
.newsmore__thumb {
  width: 13.75rem;
  height: 7.5rem;
  overflow: hidden;
  border-radius: 0.875rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
}
.newsmore__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsmore__thumb--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
}
.newsmore__thumb--logo img {
  width: 7.5rem;
  height: auto;
  object-fit: contain;
}
.newsmore__body {
  min-width: 0;
}
.newsmore__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555555;
  font-size: 0.8125rem;
  line-height: 1;
}
.newsmore__meta time {
  text-transform: uppercase;
}
.newsmore__meta span {
  min-width: 5.5rem;
  padding: 0.25rem 0.875rem;
  background-color: #93c572;
  color: #ffffff;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
}
.newsmore__item-title {
  margin-bottom: 0.625rem;
  color: #555555;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.45;
}
.newsmore__excerpt {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.8;
}
.newsmore__contact {
  padding: 7.5rem 0;
}

.news-detail {
  padding: 8.125rem 0 0;
}
.news-detail__inner {
  width: 100%;
}
.news-detail__breadcrumb {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 3.75rem;
  padding: 0;
}
.news-detail__breadcrumb .breadcrumb__sep {
  color: #93c572;
}
.news-detail__article {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.news-detail__header {
  margin-bottom: 3rem;
}
.news-detail__title {
  margin-bottom: 1rem;
  color: #555555;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #555555;
  font-size: 0.9375rem;
}
.news-detail__meta time {
  text-transform: uppercase;
}
.news-detail__meta span {
  min-width: 6rem;
  padding: 0.25rem 0.875rem;
  background-color: #93c572;
  color: #ffffff;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
}
.news-detail__panel {
  padding: 3.25rem 4.5rem 4.75rem;
  background-color: #ffffff;
  border-radius: 5rem;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.3);
}
.news-detail__main-visual {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto 4.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.3);
}
.news-detail__main-visual img {
  width: 100%;
  aspect-ratio: 600/390;
  object-fit: cover;
}
.news-detail__main-visual--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24.5rem;
  background-color: #eeeeee;
}
.news-detail__main-visual--logo img {
  width: 13.75rem;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.news-detail__toc {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto 4.75rem;
  padding: 1.625rem 1.875rem;
  border: 0.125rem solid #93c572;
  border-radius: 1rem;
  font-weight: bold;
}
.news-detail__toc-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.news-detail__toc ol {
  padding-left: 1.4rem;
  list-style: decimal;
}
.news-detail__toc ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.news-detail__toc li::marker {
  color: #f7b560;
}
.news-detail__toc ul li::marker {
  color: #93c572;
}
.news-detail__content {
  max-width: 37.5rem;
  margin: 0 auto;
  color: #555555;
}
.news-detail__content h2 {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
}
.news-detail__content h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.24em;
  left: 0;
  height: 0.125rem;
  background-color: #93c572;
}
.news-detail__content-heading--media {
  max-width: 17.5rem;
}
.news-detail__content h3 {
  position: relative;
  margin: 2.5rem 0 1rem;
  padding-left: 1.375rem;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.6;
}
.news-detail__content h3::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.625rem;
  height: 1.25rem;
  background-color: #93c572;
}
.news-detail__content p {
  margin: 1rem 0 2rem;
  font-size: 1rem;
  line-height: 1.85;
}
.news-detail__content ul {
  margin: 0 0 2rem 1.25rem;
  list-style: disc;
  line-height: 1.9;
}
.news-detail__media-row {
  display: grid;
  grid-template-columns: minmax(0, 17.5rem) 18.125rem;
  gap: 1.5rem;
  align-items: start;
  justify-content: center;
  margin: 0.75rem 0 3.25rem;
}
.news-detail__media-row p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.85;
}
.news-detail__media-row figure {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
}
.news-detail__media-row img {
  width: 100%;
  aspect-ratio: 290/285;
  object-fit: cover;
}
.news-detail__contact {
  padding: 7.5rem 0;
}

@media screen and (max-width: 767px) {
  .news-detail {
    padding: 4.875rem 0 0;
    overflow: hidden;
  }
  .news-detail__breadcrumb {
    width: 84%;
    margin: 0 auto 1.75rem;
    padding: 0;
  }
  .news-detail__breadcrumb .breadcrumb__list {
    row-gap: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.75;
  }
  .news-detail__breadcrumb .breadcrumb__item[aria-current=page] {
    width: 100%;
  }
  .news-detail__breadcrumb .breadcrumb__item:nth-last-child(2) .breadcrumb__sep {
    display: none;
  }
  .news-detail__article {
    width: 84%;
  }
  .news-detail__header {
    margin-bottom: 2.5rem;
  }
  .news-detail__title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .news-detail__meta {
    gap: 1rem;
    font-size: 0.8125rem;
  }
  .news-detail__meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    min-height: 1.625rem;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    line-height: 1;
  }
  .news-detail__panel {
    padding: 1.75rem 1.25rem 2.75rem;
    border-radius: 2.5rem;
  }
  .news-detail__main-visual {
    margin-bottom: 2.75rem;
    border-radius: 1rem;
  }
  .news-detail__main-visual--logo {
    min-height: 13rem;
  }
  .news-detail__main-visual--logo img {
    width: 8.75rem;
  }
  .news-detail__toc {
    margin-bottom: 3rem;
    padding: 1.25rem;
    font-size: 0.875rem;
  }
  .news-detail__content h2 {
    font-size: 1.375rem;
  }
  .news-detail__content h3 {
    margin: 2.25rem 0 0.875rem;
    padding-left: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.55;
  }
  .news-detail__content h3::before {
    top: 0.12em;
    width: 0.625rem;
    height: 2.875rem;
  }
  .news-detail__content p, .news-detail__content li {
    font-size: 0.9375rem;
  }
  .news-detail__media-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
  }
  .news-detail__contact {
    padding: 5rem 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .newsmore {
    padding: 4.875rem 0 0;
    overflow: hidden;
  }
  .newsmore__breadcrumb {
    width: 100%;
    margin: 0 0 1.75rem;
    padding: 0 1.75rem;
    font-size: 0.75rem;
  }
  .newsmore__heading-area {
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .newsmore__title {
    margin: 0 0 1.25rem;
    padding: 0 1.75rem;
    font-size: 1.5rem;
    line-height: 1.35;
  }
  .newsmore__panel {
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    padding: 1.875rem 1rem 2.625rem;
    border-radius: 2.5rem;
    box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.3);
  }
  .newsmore__list {
    gap: 1.625rem;
    min-height: 54.625rem;
  }
  .newsmore__item {
    position: relative;
  }
  .newsmore__item-link {
    position: relative;
    display: block;
    min-height: 12.4375rem;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
  }
  .newsmore__item::after {
    content: attr(data-category-label);
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    min-width: 4.625rem;
    padding: 0.3125rem 0.625rem;
    background-color: #93c572;
    color: #ffffff;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    z-index: 2;
  }
  .newsmore__thumb {
    width: 100%;
    height: 12.4375rem;
    border-radius: 0;
    box-shadow: none;
  }
  .newsmore__thumb--logo {
    background-color: #eeeeee;
  }
  .newsmore__thumb--logo img {
    width: 7rem;
  }
  .newsmore__body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.5rem 0.75rem 0.625rem;
    background-color: rgba(255, 255, 255, 0.78);
  }
  .newsmore__meta {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
    line-height: 1;
  }
  .newsmore__meta span {
    display: none;
  }
  .newsmore__item-title {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .newsmore__excerpt {
    display: none;
  }
  .newsmore__contact {
    padding: 5rem 0 4rem;
  }
}
.a-news {
  padding-bottom: 7.5rem;
}
.a-news__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.a-news__breadcrumb {
  margin-bottom: 2rem;
}
.a-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.a-news__list-wrap {
  padding: 1rem 2.5rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .a-news {
    padding-bottom: 3.75rem;
  }
  .a-news__list-wrap {
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
  }
}
.p-contact {
  padding: 8.125rem 0 12.5rem;
  background-color: #f9f9f9;
}
.p-contact__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.p-contact__breadcrumb {
  margin: 0 0 3.5rem;
  padding: 0;
}
.p-contact__breadcrumb .breadcrumb__sep {
  color: #93c572;
}
.p-contact__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #555555;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
}
.p-contact__title::after {
  content: "";
  position: absolute;
  bottom: 0.06em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.52em;
  background-image: url("../img/wavyline.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 4.875rem 0 5rem;
    overflow: hidden;
  }
  .p-contact__inner {
    width: 100%;
  }
  .p-contact__breadcrumb {
    margin: 0 0 1.75rem;
    padding: 0 1.75rem;
    font-size: 0.75rem;
  }
  .p-contact__title {
    margin: 0 0 1.5rem;
    padding: 0 1.75rem;
    font-size: 2rem;
  }
}
.p-contact__title {
  margin-bottom: 2rem;
}
.p-contact__lead {
  margin-bottom: 3.125rem;
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .p-contact__lead {
    margin-bottom: 2rem;
    padding: 0 1.75rem;
    font-size: 0.9375rem;
  }
  .p-contact .contact-form {
    width: calc(100% - 2.5rem);
  }
}
.p-confirm {
  padding: 8.125rem 0 12.5rem;
  background-color: #f9f9f9;
}
.p-confirm__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.p-confirm__breadcrumb {
  margin: 0 0 3.5rem;
  padding: 0;
}
.p-confirm__breadcrumb .breadcrumb__sep {
  color: #93c572;
}
.p-confirm__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #555555;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
}
.p-confirm__title::after {
  content: "";
  position: absolute;
  bottom: 0.06em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.52em;
  background-image: url("../img/wavyline.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-confirm {
    padding: 4.875rem 0 5rem;
    overflow: hidden;
  }
  .p-confirm__inner {
    width: 100%;
  }
  .p-confirm__breadcrumb {
    margin: 0 0 1.75rem;
    padding: 0 1.75rem;
    font-size: 0.75rem;
  }
  .p-confirm__title {
    margin: 0 0 1.5rem;
    padding: 0 1.75rem;
    font-size: 2rem;
  }
}
.p-confirm__title {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .p-confirm .contact-confirm {
    width: calc(100% - 2.5rem);
  }
}
.p-thanks {
  padding: 8.125rem 0 12.5rem;
  background-color: #f9f9f9;
}
.p-thanks__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.p-thanks__breadcrumb {
  margin: 0 0 3.5rem;
  padding: 0;
}
.p-thanks__breadcrumb .breadcrumb__sep {
  color: #93c572;
}
.p-thanks__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #555555;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
}
.p-thanks__title::after {
  content: "";
  position: absolute;
  bottom: 0.06em;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.52em;
  background-image: url("../img/wavyline.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding: 4.875rem 0 5rem;
    overflow: hidden;
  }
  .p-thanks__inner {
    width: 100%;
  }
  .p-thanks__breadcrumb {
    margin: 0 0 1.75rem;
    padding: 0 1.75rem;
    font-size: 0.75rem;
  }
  .p-thanks__title {
    margin: 0 0 1.5rem;
    padding: 0 1.75rem;
    font-size: 2rem;
  }
}
.p-thanks__title {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .p-thanks .contact-thanks {
    width: calc(100% - 2.5rem);
  }
}

@media (min-width: 768px) {
  .access-box__info-list .access-box__line {
    display: inline;
  }
  .access-box__info-list address .access-box__line + .access-box__line {
    margin-left: 0.4em;
  }
  .access-box__sidebar-labels {
    gap: 0.875rem;
  }
  .access-box__sidebar-labels .access-box__label {
    line-height: 1.381;
  }
}