@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  /* 必要に応じて追加 */
}

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

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

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

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

.lg-show {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg-show {
    display: block;
  }
}

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

.xl-show {
  display: none;
}
@media screen and (max-width: 1199px) {
  .xl-show {
    display: block;
  }
}

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

.button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 13.125rem;
  padding: 1rem 0.625rem;
  border-radius: 47.44px;
  background-color: #034495;
  color: #fff;
  transition: background-color 0.7s ease, transform 0.5s ease-out;
  cursor: pointer;
}

.button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2em;
}

.button-icon {
  width: 0.375rem;
  height: 0.5625rem;
  transition: transform 0.5s ease-out;
}

.button:hover .button__icon {
  transform: translateX(10px);
}

.contact-parts {
  display: flex;
  justify-content: center;
  gap: 1.3125rem;
  padding: 4.625rem 0 3.25rem;
  background-image: url("../images/common/contact-parts-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .contact-parts {
    display: flex;
    flex-direction: column;
  }
}

.contact-parts__container {
  max-width: 18.75rem;
  margin: 0 auto;
  padding: 5.0625rem 0;
}

.contact-parts__card {
  min-width: 34.375rem;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .contact-parts__card {
    max-width: 37.5rem;
    min-width: 18.75rem;
    width: 90%;
    margin: 0 auto;
  }
}

.contact-parts__sub-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F2A96F;
}

.contact-parts__sub-title.contact-parts__sub-title--recruit {
  color: #B6D8C2;
}

.contact-parts__title {
  margin-top: 1.125rem;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F58031;
}

.contact-parts__title span {
  background: linear-gradient(#F2A96F, #F2A96F) 0 100%/0 1px no-repeat;
  transition-delay: 0.4s;
}

.contact-parts__title.contact-parts__title--recruit {
  background: linear-gradient(#B6D8C2, #B6D8C2) 0 100%/0 1px no-repeat;
  transition-delay: 0.4s;
}

.contact-parts__title.contact-parts__title--recruit {
  color: #39AA4E;
}

.contact-parts__details {
  margin-top: 1.5625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-parts__phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-parts__icon {
  width: 2.375rem;
  height: 2.375rem;
}

.contact-parts__icon img {
  width: 100%;
}

.contact-parts__phone-number {
  margin-left: 0.6875rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #F58031;
  cursor: pointer;
}

.contact-parts__reception {
  margin-top: 0.5625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #F58031;
}

.contact-parts__button.button {
  margin-top: 1.9375rem;
  max-width: 17.25rem;
}

.contact-parts__button-link.button-link {
  gap: 6.25rem;
}

.footer {
  padding: 2.3125rem 0.8125rem;
  background-color: #2E2E2E;
}

.footer__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
  }
}

.footer__info {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__info {
    line-height: 1.6em;
  }
}

@media screen and (max-width: 767px) {
  .footer__container {
    margin-top: 1.25rem;
  }
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav-item {
    margin-bottom: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-centre {
    margin-top: 1.25rem;
  }
}

.footer__copyright {
  margin-top: 1.0625rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}

/* ヘッダー全体の共通スタイル */
.header {
  height: 5.125rem;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 5000;
  background-color: #F5F4EA;
}

.header__inner {
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.625rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

/* ヘッダーのスクロール時共通スタイル */
.js-header {
  opacity: 95%;
  transition: background-color 0.5s ease, opacity 0.5s ease, clip-path 0.5s ease;
}

.js-header.is-active {
  opacity: 1;
}

/* ロゴの共通スタイル */
.header__logo {
  display: flex;
  align-items: center;
  height: inherit;
  width: 100%;
}

/* ロゴ内のリンクの共通スタイル */
.header__logo a {
  display: block;
  height: auto;
  width: 100%;
  padding: 0.9375rem 0;
}

/* ロゴ画像の共通スタイル */
.header__logo-img {
  max-width: 17.1875rem;
}
@media screen and (max-width: 999px) {
  .header__logo-img {
    max-width: 11.25rem;
  }
}

.header__logo-img.is-scroll {
  padding: 0;
  margin: 0 0 0 10%;
}
@media screen and (max-width: 999px) {
  .header__logo-img.is-scroll {
    padding: 0 1.5625rem 0 0;
  }
}

/* ナビゲーションのスタイル */
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 70%;
  min-width: 45.625rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: inherit;
  padding: 0;
  margin: 0;
}

.header__nav-item {
  text-align: center;
  position: relative;
  height: inherit;
  padding: 0 calc(1% + 0.125rem);
}

.header__nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #333;
  font-size: 1.0625rem;
  overflow: hidden;
  transition: color 0.3s ease;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0.8125rem;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transform: all 0.3s;
  transition: width 0.4s ease, left 0.3s ease;
}
.header__nav-item a:hover::after {
  width: 100%;
  left: 0;
}

.header__nav-item--contact a::after {
  display: none;
}

.header__nav-item--contact a:hover {
  background-color: #CC8400;
}

/* お問合せボタンのスタイル */
.header__nav-item.header__nav-item--contact {
  width: 13.125rem;
  height: auto;
}

.header__nav-item--contact a {
  display: flex;
  gap: 20px;
  background-color: #F58031;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 1.5rem;
  transition: background-color 0.5s ease;
}

.button__icon.button__icon--header {
  width: 0.4375rem;
  height: auto;
  transition: transform 0.5s ease-out;
}

.header .header__nav-item--contact a:hover {
  background-color: #FF5E00;
}

.header__nav-item--contact a:hover .button__icon--header {
  transform: translateX(10px);
}

/* ハンバーガーメニュー */
.hamburger {
  position: absolute;
  z-index: 10000;
  width: 5.125rem;
  height: inherit;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: #639973;
}

/* ハンバーガーの各線 */
.hamburger span {
  position: absolute;
  left: 1.5rem;
  display: inline-block;
  width: 2.1875rem;
  height: 0.1875rem;
  background-color: #fff;
  transition: all 0.5s ease;
}

/* 上の線 */
.hamburger span:first-child {
  top: 1.875rem;
}

/* 真ん中の線 */
.hamburger span:nth-child(2) {
  top: 2.625rem;
}

/* 下の線 */
.hamburger span:nth-child(3) {
  top: 3.375rem;
}

/* アクティブ時の変化 */
.js-hamburger.is-active span:first-child {
  top: 2.5625rem;
  animation: ham_btn_span01_active 0.75s forwards;
}

.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  animation: ham_btn_span02_active 0.75s forwards;
}

.js-hamburger.is-active span:nth-child(3) {
  top: 2.5625rem;
  animation: ham_btn_span03_active 0.75s forwards;
}

/* 非アクティブ時（元に戻る） */
.js-hamburger:not(.is-active) span:first-child {
  animation: ham_btn_span01_reverse 0.75s forwards;
}

.js-hamburger:not(.is-active) span:nth-child(2) {
  animation: ham_btn_span02_reverse 0.75s forwards;
}

.js-hamburger:not(.is-active) span:nth-child(3) {
  animation: ham_btn_span03_reverse 0.75s forwards;
}

/* 上の線のアニメーション */
@keyframes ham_btn_span01_active {
  0% {
    transform: rotate(0);
    opacity: 1;
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes ham_btn_span01_reverse {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: translateY(0.875rem) rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
/* 真ん中の線のアニメーション */
@keyframes ham_btn_span02_active {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham_btn_span02_reverse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 下の線のアニメーション */
@keyframes ham_btn_span03_active {
  0% {
    transform: rotate(0);
    opacity: 1;
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes ham_btn_span03_reverse {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: translateY(-0.875rem) rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
/* オーバーレイのスタイル */
.js-overlay {
  background-color: #333;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.6s, visibility 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 10;
}

.js-overlay.is-active {
  visibility: visible;
}

/* ドロワーメニュー */
.drawer-menu,
.js-drawer {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: #F5F4EA;
  transition: right 0.8s ease;
  z-index: 9999;
  opacity: 1;
}

.js-header .drawer-menu,
.js-header .js-drawer {
  opacity: 1;
}

.drawer-menu.is-active {
  right: 0;
}

.overlay {
  background-color: #333;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.6s, visibility 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 10;
}

.overlay.is-active {
  opacity: 0.8;
  visibility: visible;
}

.drawer-menu__inner {
  position: relative;
  max-width: 27.5rem;
  padding: 6.25rem 1.875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .drawer-menu__inner {
    padding: 4.375rem 1.875rem;
  }
}
@media screen and (max-width: 499px) {
  .drawer-menu__inner {
    max-width: 18.75rem;
  }
}

.drawer-logo {
  position: fixed;
  top: 2.8125rem;
  left: 1.25rem;
  z-index: 9999;
  background-color: #fff;
}

.drawer-logo img {
  width: 40%;
  /* ロゴのサイズを調整 */
  max-width: 18.75rem;
  min-width: 12.5rem;
  height: 5rem;
}

.drawer__nav-item {
  width: 100%;
  display: inline-block;
  font-size: 1.375rem;
  padding: 2.5rem 0 0.9375rem 2.625rem;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 499px) {
  .drawer__nav-item {
    padding: 1.875rem 0 0.9375rem 2rem;
  }
}

.drawer__nav-item:not(:last-child) {
  border-bottom: 2px dashed #639973;
}

.drawer-item a {
  color: #333;
  font-weight: 700;
}

.drawer__nav-item.drawer__nav-item--contact,
.drawer__nav-item.drawer__nav-item--tel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 3.125rem auto 0;
  text-align: center;
  padding: 1.25rem;
  text-align: center;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .drawer__nav-item.drawer__nav-item--contact,
  .drawer__nav-item.drawer__nav-item--tel {
    margin: 1.875rem auto 0;
  }
}

.drawer__nav-item.drawer__nav-item--contact {
  background-color: #639973;
}

.drawer__nav-item.drawer__nav-item--tel {
  background-color: #E18700;
}

.drawer__nav-item.drawer__nav-item--contact a,
.drawer__nav-item.drawer__nav-item--tel a {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 1.25rem;
  color: #fff;
}

/* 他のアイテムも同様に設定 */
.drawer-item__button {
  display: block;
  max-width: 18.75rem;
  margin: 2.5rem auto 0;
  background-color: #46B036;
  color: white;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.drawer-item__button:hover {
  background-color: #76c7a1;
}

.drawer-item__button span {
  font-size: 1.5625rem;
  font-weight: 700;
}

.drawer-item__button p {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.information-parts {
  padding: 4.1875rem 0;
  background-image: url("../images/common/green-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.information-parts__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3.4375rem 2.9375rem;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .information-parts__container {
    padding: 2.5rem 1.25rem;
    flex-direction: column;
  }
}

.information-parts__left-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .information-parts__left-container {
    margin: 0 auto;
  }
}

.information-parts__title-wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .information-parts__title-wrap {
    max-width: 15.625rem;
    text-align: start;
  }
}

.information-parts__sub-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  color: #333;
}

.information-parts__logo {
  max-width: 17.5rem;
}

.information-parts__contents {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.125rem;
}

.information-parts__contents.information-parts__contents--02 {
  margin-top: 1.125rem;
}

.information-parts__phon-number {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #F58031;
}

@media screen and (max-width: 767px) {
  .information-parts__right-container {
    width: 100%;
  }
}

.information-parts__map iframe {
  width: 38.125rem;
  height: 24.375rem;
  border: 0;
}
@media screen and (max-width: 767px) {
  .information-parts__map iframe {
    width: 100%;
    height: 21.875rem;
  }
}

.inner {
  max-width: 78.125rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 0.9375rem;
  }
}

.sm-only {
  display: none;
}

.md-sm-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .md-sm-only {
    display: block;
  }
  .md-sm-none {
    display: none;
  }
}
@media screen and (max-width: 499px) {
  .sm-only {
    display: block;
  }
}
@media screen and (max-width: 499px) {
  .sm-none {
    display: none;
  }
}
.section-title-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title__icon {
  width: 4.0625rem;
  height: auto;
}

.section-title {
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-sub-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #B6D8C2;
}

.section-title.section-title--white {
  color: #fff;
}

.section-sub-title.section-sub-title--news {
  color: #BDBBB9;
}

.section-title.section-title--small {
  font-size: 2rem;
}

.sub-fv__title {
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sub-fv__title {
    margin: 0 auto;
    max-width: 25rem;
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 499px) {
  .sub-fv__title {
    max-width: 18.75rem;
  }
}

.sub-fv__sub-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #B6D8C2;
}

.lower-section-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lower-section-sub-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #F2A96F;
}

.lower-section-title {
  position: relative;
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .lower-section-title {
    font-size: 2.1875rem;
  }
}
.lower-section-title::after {
  content: "";
  margin: 1.25rem auto 0;
  width: 2.5rem;
  height: 0.125rem;
  background-color: #F2A96F;
  display: flex;
  justify-content: center;
}

.sub-fv {
  position: relative;
  position: relative;
  padding-top: 5rem;
  height: 31.5625rem;
  background-image: url("../images/lower/lower-bg2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sub-fv {
    height: 25.3125rem;
    background-image: url("../images/lower/lower-bg-sp.png");
  }
}
.sub-fv::before {
  content: "";
  position: absolute;
  top: 31%;
  right: 15%;
  width: 22.1875rem;
  height: 9.125rem;
  background-image: url("../images/common/icon-home.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 1399px) {
  .sub-fv::before {
    content: "";
    position: absolute;
    top: 36%;
    right: 7%;
    height: 7.3125rem;
    width: 17.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-fv::before {
    display: none;
  }
}
.sub-fv::after {
  content: "";
  position: absolute;
  top: 33%;
  left: 7%;
  width: 9.6875rem;
  height: 8.375rem;
  background-image: url("../images/common/icon-wood-02.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 1399px) {
  .sub-fv::after {
    top: 40%;
    width: 7.5rem;
    height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-fv::after {
    display: none;
  }
}

.sub-fv__title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-fv__title-wrap {
    top: 60%;
    width: 90%;
  }
}

.sub-fv__title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-fv__title::before {
    content: "";
    position: absolute;
    top: 75%;
    right: -5%;
    background-image: url("../images/common/risu-kirikabu.png");
    width: 3.4375rem;
    height: 2.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;
  }
}
@media screen and (max-width: 767px) {
  .sub-fv__title::after {
    content: "";
    position: absolute;
    top: -145%;
    left: -16%;
    width: 3.9375rem;
    height: 3.375rem;
    background-image: url("../images/common/wood&yellow-bird.svg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;
  }
}

.tab__menu {
  display: flex;
  justify-content: center;
}

.tab__menu-item {
  padding: 0.625rem;
  min-width: 6.25rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1;
  color: #73B2C8;
  border: 1px solid #73B2C8;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab__menu-item {
    font-size: 1.25rem;
  }
}

.tab__menu-item + .tab__menu-item {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab__menu-item + .tab__menu-item {
    margin-left: 1.875rem;
  }
}

.tab__menu-item.is-active {
  color: #fff;
  background-color: #73B2C8;
}

.tab__content {
  margin-top: 1.25rem;
}

.tab__content-item {
  padding: 1.5625rem;
  display: none;
  background-color: #fff;
  border: 1px solid #73B2C8;
}

.tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-title-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-17 {
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text-17 {
    font-size: clamp(0.938rem, 0.801rem + 0.548vw, 1.063rem);
  }
}

.text-16 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.23;
}

.text-16--common {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}

.text-white {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}

.contact-page {
  background-color: #F5F4EA;
}

.contact__wrap {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    flex-direction: column-reverse;
  }
}

.contact__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .contact__img img {
    aspect-ratio: 375/240;
  }
}

.contact__body {
  width: 75.5%;
  flex-grow: 1;
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .contact__body {
    width: 100%;
    padding-bottom: 78px;
    margin-top: 0;
  }
}

.contact__text-wrap {
  margin: 0 auto;
  max-width: 272px;
}
@media screen and (max-width: 767px) {
  .contact__text-wrap {
    max-width: 227px;
    text-align: start;
  }
}

.contact__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__title {
    text-align: center;
    font-size: 14px;
    line-height: 1.9;
  }
}

.contact__btn-container {
  margin-top: 22px;
  max-width: 235px;
}
@media screen and (max-width: 767px) {
  .contact__btn-container {
    margin: 31px auto 0;
  }
}

.contact__btn-wrap {
  width: 100%;
  background-color: #639973;
}
@media screen and (max-width: 767px) {
  .contact__btn-wrap {
    max-width: 225px;
  }
}

.contact__btn-wrap:not(:first-child) {
  margin-top: 21px;
}

.contact__text {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-top: 12px;
    font-size: 12px;
  }
}

.contact__btn-wrap a[href^="tel:"] {
  pointer-events: auto;
}

.contact-intro {
  margin-top: 5.625rem;
}

.contact-intro__text-wrap {
  margin: 0 auto;
  max-width: 53.75rem;
}

.contact-intro__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
}

.contact-intro__text {
  margin-top: 2.0625rem;
}

.contact-form {
  max-width: 62.5rem;
  margin: 4.6875rem auto 0;
  padding: 3.8125rem 4.5rem;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 3.8125rem 1.875rem;
  }
}

.contact-main__form-label p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
}

.contact-main__form-label span {
  background-color: white;
  border: 2px solid #E18700;
  border-radius: 0.625rem;
  padding: 1px 5px;
  margin-right: 10px;
  font-size: 0.625rem;
  text-align: center;
  min-width: 2.25rem;
  color: #E18700;
}

.wpcf7 {
  display: flex;
  justify-content: center;
}

/* ラジオボタン全体のスタイリング */
.contact-main__form-radio {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact-main__form-radio {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 各ラジオボタンアイテムのスタイリング */
.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

/* ラジオボタンの基本スタイル */
.wpcf7-list-item input[type=radio] {
  cursor: pointer;
}

/* ラベルスタイリング */
.wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item label {
    margin-right: 0;
  }
}

.wpcf7-list-item label input {
  display: none;
}

/* ラジオボタンのカスタム見た目 */
.wpcf7-list-item span.wpcf7-list-item-label {
  position: relative;
  padding-left: 1.5625rem;
}

/* ラジオボタンのデフォルト外見を隠し、カスタムデザインを追加 */
.wpcf7-list-item span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #999;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ラジオボタンが選択されたときの内側の円を表示 */
.wpcf7-list-item input[type=radio]:checked + span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.240625rem;
  width: 0.625rem;
  height: 0.625rem;
  background: #999;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.1875rem 1.25rem 0.3125rem 0.625rem;
  border-radius: 0.5rem;
  background-color: #F3F3F3;
  border: none;
}

.wpcf7-list-item first last {
  text-align: left;
}

.contact-main__form-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-main__form-label-wrap {
  margin-top: 1.75rem;
}

/* 全てのテキスト入力フィールドのプレースホルダー */
.contact-main__form-input input::-moz-placeholder {
  padding-left: 0.625rem;
  color: #A29F9F;
  opacity: 1;
  font-size: 0.8125rem;
}
.contact-main__form-input input::placeholder {
  padding-left: 0.625rem;
  color: #A29F9F;
  opacity: 1;
  font-size: 0.8125rem;
}

.contact-main__form-submit {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.wpcf7-form-control.wpcf7-submit {
  padding: 1rem 4.875rem;
  border: none;
  background-color: #E18700;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border-radius: 2.25rem;
}

.wpcf7-spinner {
  display: none;
}

.privacy-policy {
  margin-top: 1.875rem;
  padding-bottom: 5.5rem;
}

.privacy-policy__inner.inner {
  max-width: 62.5rem;
}

.privacy-policy__title {
  max-width: 40.5rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3em;
  color: #111;
  border-bottom: 1px solid #000;
}

.privacy-policy__text-container {
  margin-top: 2.1875rem;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__second-title {
    margin-top: 0.9375rem;
  }
}

.privacy-policy__list.text-17 {
  letter-spacing: 0.03em;
}

.l-main {
  background-color: #F5F4EA;
}

.p-404 {
  padding-top: 12.5rem;
  width: 100%;
}

.p-404__inner {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 7.5rem;
}

.info-joint-container {
  padding: 5rem 0 0;
  background-image: url("../images/top/feature-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.info-philosophy {
  padding: 5.625rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .info-philosophy {
    padding: 3.125rem 0 2.5rem;
  }
}

.info-philosophy__container {
  margin-top: 5.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.25rem;
}
@media screen and (max-width: 767px) {
  .info-philosophy__container {
    margin-top: 2.5rem;
    flex-direction: column-reverse;
    text-align: center;
    gap: 3.125rem;
  }
}

.info-philosophy__img {
  max-width: 30.4375rem;
}
@media screen and (max-width: 767px) {
  .info-philosophy__img {
    max-width: 90%;
  }
}

.info-philosophy__img img {
  width: 100%;
  aspect-ratio: 487/321;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-philosophy__title {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.65em;
  color: #4D5953;
}
@media screen and (max-width: 767px) {
  .info-philosophy__title {
    font-size: clamp(1.125rem, 0.303rem + 3.288vw, 1.875rem);
  }
}

.info-philosophy__text {
  margin-top: 1.75rem;
}

.info-facility {
  padding: 4.0625rem 0;
  background-color: #FAFAF4;
}

.info-facility__container {
  margin: 3.75rem auto 0;
  max-width: 37.5rem;
}

.facility-details {
  width: 100%;
}

.facility-detail {
  display: flex;
  padding: 1.125rem 0;
  border-bottom: 1px solid #DDDDDD;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .facility-detail {
    flex-direction: column;
    gap: 0.9375rem;
    text-align: center;
  }
}

.facility-detail dt {
  width: 30%;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .facility-detail dt {
    width: 100%;
  }
}

.facility-detail__right-content {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  text-align: center;
}

.facility-detail dd {
  margin-left: 20px;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .facility-detail dd {
    margin-left: 0;
    font-size: 0.9375rem;
  }
}

.info-facility__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.375rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .info-facility__gallery {
    gap: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 499px) {
  .info-facility__gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-item {
  text-align: center;
  border-radius: 1rem;
}

.gallery-item p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .gallery-item p {
    font-size: 1rem;
  }
}

.gallery-item__img {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .gallery-item__img {
    margin-top: 0.9375rem;
  }
}

.gallery-item__img img {
  width: 100%;
  height: auto;
  width: 100%;
  aspect-ratio: 364/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-information {
  padding: 1.5rem 0 4rem;
  background-color: #FAFAF4;
}

.info-information__container {
  padding: 2.5625rem 0 3.25rem;
  border-radius: 1rem;
  background-color: #fff;
}

.info-information__text-wrap {
  margin-top: 2.5rem;
}

.info-information__text-wrap p {
  text-align: center;
}

.facility-detail.facility-detail--info dt {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .facility-detail.facility-detail--info dt {
    width: 100%;
  }
}

.facility-detail.facility-detail--info dd {
  font-size: 0.6875rem;
  color: #fff;
  background-color: #034495;
  padding: 0.375rem 1.5625rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .facility-detail.facility-detail--info dd {
    width: 70%;
    min-width: 12.5rem;
    margin: 0 auto;
  }
}

.info-message__container {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 9.0625rem;
  max-width: 68.75rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 999px) {
  .info-message__container {
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .info-message__container {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.8125rem;
  }
}

.info-message__left-content {
  margin-top: 5.625rem;
}

.info-message__img {
  margin-top: 3.75rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .info-message__img {
    width: 90%;
    margin: 0 auto;
  }
}

.info-message__img img {
  width: 100%;
  aspect-ratio: 364/240;
  min-width: 22.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .info-message__img img {
    min-width: 18.75rem;
  }
}

.info-message__right-content {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .info-message__right-content {
    width: 90%;
    margin: 0 auto;
  }
}

.info-message__text {
  text-align: left;
}

.info-company {
  margin-top: 8.4375rem;
  padding-bottom: 9.625rem;
}
@media screen and (max-width: 767px) {
  .info-company {
    margin-top: 5rem;
    padding-bottom: 5.625rem;
  }
}

.info-company__container {
  max-width: 50rem;
  margin: 0 auto;
}

.news-content {
  width: 100%;
  padding-left: 3.75rem;
  border-left: 3px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .news-content {
    padding: 2.3125rem 0 0;
    border-left: none;
  }
}

.news-list {
  width: 100%;
}

.news-item {
  padding-top: 0.625rem;
  padding-bottom: 1.6875rem;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .news-item {
    padding-top: 1.25rem;
    padding-bottom: 1.0625rem;
  }
}

.news-item:nth-child(1) {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .news-item:nth-child(1) {
    padding-top: 1.25rem;
    border-top: 1px solid #DDDDDD;
  }
}

.news-item:not(:first-child) {
  padding-top: 2.5rem;
}

.news-item a {
  display: flex;
}

.news-body {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-body {
    margin: 0;
  }
}

.news-info {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-info {
    margin: 0;
  }
}

.news-date {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #777;
}
@media screen and (max-width: 767px) {
  .news-date {
    font-size: 0.625rem;
  }
}

.news-labels {
  display: flex;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-labels {
    margin-left: 0.6875rem;
  }
}

.news-label {
  padding: 0.4375rem 1.125rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-label {
    font-size: 0.625rem;
    padding: 0.4375rem 0.9375rem;
  }
}
@media screen and (max-width: 499px) {
  .news-label {
    white-space: normal;
  }
}

.news-label:not(:first-child) {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-label:not(:first-child) {
    margin-left: 0.4375rem;
  }
}

.news-label--white {
  background-color: #fff;
}

.news-item-title {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news-item-title {
    line-height: 2;
    font-size: 0.875rem;
  }
}

.news-item a {
  opacity: 1;
}

.news-item a:hover .underline-expand::before {
  transform: scaleX(1);
}

.news-archive {
  margin-top: 5rem;
  padding-bottom: 5rem;
}

.news-archive__inner.inner {
  max-width: 62.5rem;
  margin: 0 auto;
}

.news-archive__nav-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 37.5rem;
  margin: 0 auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .news-archive__nav-box {
    height: 4.8125rem;
    background-color: #F5F4EA;
  }
}

.news-archive__link {
  flex: 1;
  padding: 1.375rem;
  text-align: center;
  background-color: #F5F4EA;
}
@media screen and (max-width: 767px) {
  .news-archive__link {
    background-color: transparent;
    padding: 0.625rem;
  }
}

.news-archive__link span {
  position: relative;
}
.news-archive__link span::after {
  content: "";
  position: absolute;
  bottom: 0.8125rem;
  left: 50%;
  width: 0;
  height: 2px;
  top: 122%;
  background-color: #39AA4E;
  transform: all 0.3s;
  transition: width 0.4s ease, left 0.3s ease;
}
.news-archive__link span:hover::after {
  width: 100%;
  top: 122%;
  left: 0;
}

.news-archive__link:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

/* 最後の要素の右上と右下にボーダーラディアスを適用 */
.news-archive__link:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .news-archive__link:last-child {
    padding: 0.625rem;
  }
}

.news-archive__pagenavi.pagenavi {
  padding: 3.5625rem 0 0;
}
@media screen and (max-width: 499px) {
  .news-archive__pagenavi.pagenavi {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.news-archive__thumbnail {
  width: 20%;
  padding-right: 0.9375rem;
}

.news-archive__labels {
  display: flex;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-archive__labels {
    margin-left: 0.6875rem;
  }
}

.news-archive__label {
  padding: 0.25rem 1.75rem;
  min-width: 8.25rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid #034495;
}
@media screen and (max-width: 767px) {
  .news-archive__label {
    font-size: 10px;
    padding: 7px 15px;
  }
}
@media screen and (max-width: 499px) {
  .news-archive__label {
    white-space: normal;
  }
}

.news-archive__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 550/400;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-archive__content {
  margin-top: 4.375rem;
}

.detail {
  width: 100%;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .detail {
    margin-top: 2.5rem;
  }
}

.detail__body {
  margin: 0 auto;
  padding: 2.5rem 0;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .detail__body {
    max-width: 37.5rem;
    padding: 0 1.875rem;
  }
}

.detail__date {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .detail__date {
    margin-top: 0.625rem;
  }
}

.detail__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .detail__categories {
    margin-top: 0.75rem;
  }
}

.detail__category {
  padding: 0.4375rem 0.9375rem;
  font-size: 1.25rem;
  background-color: #fff;
  border: 2px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .detail__category {
    font-size: 0.625rem;
  }
}

.detail__title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #333;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .detail__title {
    margin-top: 0.75rem;
    font-size: 1.5625rem;
    line-height: 1.8rem;
  }
}

.detail__thumbnail {
  width: 100%;
  height: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .detail__thumbnail {
    margin-top: 2.1875rem;
  }
}
.detail__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 840/470;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail__content {
  width: 100%;
  margin: 2.5rem auto 0;
}
.detail__content h2 {
  display: flex;
  align-items: center;
  font-size: 1.6875rem;
  padding: 0.625rem 0;
  border-radius: 5px;
  margin-bottom: 20px;
}
.detail__content h2::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: pink;
  margin-right: 0.625rem;
  vertical-align: middle;
}
.detail__content p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .detail__content p {
    font-size: 0.875rem;
    line-height: 2.2857142857;
  }
}
.detail__content a {
  font-size: 1.25rem;
  font-weight: 500;
  color: blue;
  -webkit-text-decoration: dashed;
          text-decoration: dashed;
}

.detail__other {
  display: flex;
  justify-content: space-between;
  margin: 3.75rem auto 0;
  max-width: 17.8125rem;
  width: 100%;
}
.detail__other a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
}
.detail__other a:hover {
  text-decoration: underline;
}
.detail__other .detail__prev-icon,
.detail__other .detail__next-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0.3125rem;
}
.detail__other .detail__link-text {
  font-size: 0.875rem;
}

.wp-block-list li {
  list-style-type: disc;
  margin-left: 20px;
}

.pagenavi__inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pagenavi__inner {
    padding: 0;
    max-width: 75rem;
  }
}

.pagenavi .wp-pagenavi {
  clear: both;
}

.pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .pagenavi .wp-pagenavi {
    justify-content: center;
  }
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  margin: 0 5.3px;
  padding: 12.5px 16.4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .pagenavi .wp-pagenavi a,
  .pagenavi .wp-pagenavi span {
    padding: 12.5px 14.4px;
  }
}

.pagenavi .wp-pagenavi a.previouspostslink,
.pagenavi .wp-pagenavi a.nextpostslink {
  position: relative;
  background-color: transparent;
  border: none;
  margin: 0;
}

.pagenavi .wp-pagenavi a.previouspostslink {
  padding-right: 0.625rem;
}

.pagenavi .wp-pagenavi a.previouspostslink::after,
.pagenavi .wp-pagenavi a.nextpostslink::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 0.75rem;
  width: 0.75rem;
  align-items: center;
  border-right: solid 3px #DDDDDD;
  border-top: solid 3px #DDDDDD;
  transition: left 0.3s;
}

.pagenavi .wp-pagenavi a.previouspostslink,
.pagenavi .wp-pagenavi a.nextpostslink:hover {
  opacity: 1;
}

.pagenavi .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink):hover,
.pagenavi .wp-pagenavi span:hover {
  color: #fff;
  background-color: #DDDDDD;
  border: none;
  opacity: 1;
  transition: background-color 0.3s;
}

.pagenavi .wp-pagenavi .current {
  color: #fff;
  background-color: blue;
  border: none;
}

/* 前への矢印に特有のスタイル */
.pagenavi .wp-pagenavi a.previouspostslink::after {
  left: 12%;
  transform: translateY(-50%) rotate(45deg) rotate(180deg);
}

/* 次への矢印に特有のスタイル */
.pagenavi .wp-pagenavi a.nextpostslink::after {
  left: 35%;
}

/* 前への矢印 hover時の特有のスタイル */
.pagenavi .wp-pagenavi a.previouspostslink:hover::after {
  left: -10%;
}

/* 次への矢印 hover時の特有のスタイル */
.pagenavi .wp-pagenavi a.nextpostslink:hover::after {
  left: 50%;
}

.side-navigation-title {
  margin: 0 0;
}

.side-navigation-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .side-navigation-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 13px;
    grid-column-gap: 33px;
    margin-top: 34px;
    max-width: 400px;
  }
}

.side-navigation-list li {
  display: inline-block;
  width: 100%;
  text-align: left;
  font-size: clamp(0.75rem, 0.607rem + 0.298vw, 0.875rem);
  font-weight: 500;
  color: #DDDDDD;
  transition: 0.3s;
  cursor: pointer;
}
.side-navigation-list li:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .side-navigation-list li {
    text-align: left;
    font-size: 12px;
    margin: 0;
  }
}

.side-navigation-link {
  display: flex;
  color: #DDDDDD;
  position: relative;
  padding-left: 21px;
  white-space: nowrap;
  width: 100%;
  text-align: left;
  font-size: clamp(0.75rem, 0.607rem + 0.298vw, 0.875rem);
  font-weight: 500;
  color: #DDDDDD;
  transition: 0.3s;
  cursor: pointer;
}
.side-navigation-link:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .side-navigation-link {
    text-align: left;
    font-size: 12px;
    margin: 0;
  }
}

.side-navigation-link:hover {
  opacity: 1;
}

.side-navigation-link.is-active {
  color: #333;
}

.side-navigation-link.is-active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #333;
  transform: translateY(-50%);
}

.side-navigation-link:not(:first-child) {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .side-navigation-link:not(:first-child) {
    margin: 0;
  }
}

.recruit-message {
  padding: 5.625rem 0 4.375rem;
  background-color: #F5F4EA;
}
.recruit-message__list {
  margin-top: 3.3125rem;
}

.recruit-message__item {
  display: flex;
  justify-content: center;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit-message__item {
    gap: 0;
  }
}

.recruit-message__item.recruit-message__item--03 {
  display: block;
}

.recruit-message__item:not(:first-child) {
  margin-top: 4.25rem;
}

.recruit-message__body {
  margin-top: 0.9375rem;
  display: flex;
  justify-content: center;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit-message__body {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.recruit-message__img.recruit-message__img--03 {
  max-width: 28.75rem;
}
@media screen and (max-width: 999px) {
  .recruit-message__img.recruit-message__img--03 {
    max-width: 25rem;
  }
}

.recruit-message__img.recruit-message__img--pc {
  max-width: 28.75rem;
}
@media screen and (max-width: 999px) {
  .recruit-message__img.recruit-message__img--pc {
    max-width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__img.recruit-message__img--pc {
    display: none;
  }
}

.recruit-message__img.recruit-message__img--sm {
  display: none;
}
@media screen and (max-width: 767px) {
  .recruit-message__img.recruit-message__img--sm {
    max-width: 25rem;
    display: block;
  }
}

.recruit-message__img.recruit-message__img--sm img {
  width: 100%;
  aspect-ratio: 430/283;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-message__item--reverse .recruit-message__img {
  width: 100%;
}

.recruit-message__text-wrap {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .recruit-message__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .recruit-message__title {
    text-align: center;
  }
}

.recruit-message__title span {
  display: inline;
  font-size: clamp(1.625rem, 0.375rem + 1.667vw, 1.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}

.recruit-message__title.title--green {
  color: #39AA4E;
}

.recruit-message__text {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .recruit-message__text {
    margin-top: 0;
  }
}

.recruit-message__item.recruit-message__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .recruit-message__item.recruit-message__item--reverse {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.recruit-detail {
  padding: 3rem 0 3.625rem;
  background-color: #F5F4EA;
}

.recruit-detail__container {
  padding: 3rem 0.625rem;
  border-radius: 1rem;
  background-color: #fff;
}

.recruit-detail__title-wrap {
  margin-top: 2.125rem;
  text-align: center;
}

.recruit-detail__title {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}
.recruit-detail__title::before {
  content: "";
  width: 1.625rem;
  height: 2.125rem;
  margin-top: 0.3125rem;
  background-image: url("../images/common/wood-1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
  transform: scaleX(-1);
}
.recruit-detail__title::after {
  content: "";
  width: 1.625rem;
  height: 2.125rem;
  margin-top: 0.3125rem;
  margin-left: 0;
  background-image: url("../images/common/wood-1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
  transform: scaleX(-1);
}

.specific-container {
  max-width: 50rem;
  margin: 0 auto;
}

.specific-detail {
  display: flex;
  justify-content: space-between;
  padding: 1.125rem 0;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .specific-detail {
    flex-direction: column;
    padding: 1.125rem 1.875rem;
  }
}

.specific-detail dt {
  width: 30%;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
}

.specific-detail dd {
  width: 70%;
  margin-left: 20px;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .specific-detail dd {
    width: 100%;
    margin-left: 0;
  }
}

.recruit-detail__button-container {
  width: 100%;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-container {
    flex-direction: column;
    width: 95%;
    margin: 3.75rem auto 0;
  }
}

.recruit-detail__button-item {
  width: 100%;
  max-width: 35rem;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  flex: 1;
  border-radius: 1rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-item {
    max-width: 21.875rem;
    text-align: left;
    padding: 1.25rem 0.625rem 1.25rem 0.625rem;
    margin: 0 auto;
  }
}

.recruit-detail__button-item--orange {
  background-color: #F59756;
}

.recruit-detail__button-item--navy {
  background-color: #034495;
}

.recruit-detail__button-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-item a {
    gap: 1.25rem;
  }
}

.recruit-detail__button-icon {
  width: 4.375rem;
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-icon {
    width: 2.5rem;
  }
}

.recruit-detail__button-item p {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-detail__button-item p {
    font-size: 1.125rem;
  }
}

.top-page {
  background-color: #639973;
  overflow: hidden;
}

.top-mv {
  position: relative;
  height: 57.8125rem;
  min-height: 50rem;
  padding-top: 5rem;
  background-image: url("../images/top/fv-bg-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F5F4EA;
}
@media screen and (max-width: 1199px) {
  .top-mv {
    height: 56.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv {
    height: 83.125rem;
    background-image: url("../images/top/fv-bg-img-md.jpg");
  }
}
@media screen and (max-width: 499px) {
  .top-mv {
    height: auto;
  }
}
.top-mv::before {
  content: "";
  position: absolute;
  top: 67%;
  left: 7%;
  width: 9.8125rem;
  height: 8.625rem;
  background-image: url("../images/common/wood&yellow-bird.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 1199px) {
  .top-mv::before {
    top: 67%;
    left: 1%;
  }
}
@media screen and (max-width: 499px) {
  .top-mv::before {
    top: 54%;
    width: 6.5rem;
    height: 5.625rem;
  }
}

.top-mv__inner {
  position: relative;
  padding: 0 7.625rem;
}
@media screen and (max-width: 1199px) {
  .top-mv__inner {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__inner {
    padding: 1.5625rem;
  }
}

@keyframes moveCloud {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-130vw);
  }
}
.top-mv__inner::before,
.top-mv__inner::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  animation: moveCloud 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__inner::before,
  .top-mv__inner::after {
    animation: none;
  }
}

.top-mv__inner::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 40vw;
  width: 383px;
  height: 167px;
  background-image: url("../images/common/cloud.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .top-mv__inner::before {
    top: 26%;
    left: 77%;
    width: 15.4375rem;
    height: 6.5625rem;
  }
}

.top-mv__inner::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 100vw;
  width: 383px;
  height: 167px;
  background-image: url("../images/common/cloud02.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .top-mv__inner::after {
    top: 10%;
    left: -8%;
    width: 15.4375rem;
    height: 6.5625rem;
  }
}

.top-mv__container {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 3.3125rem 0 2.8125rem;
  gap: 6.25rem;
  max-width: 87.5rem;
  margin: 0 auto;
  z-index: 2000;
}
@media screen and (max-width: 999px) {
  .top-mv__container {
    justify-content: center;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__container {
    padding: 0 0 2.8125rem;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
  }
}
@media screen and (max-width: 499px) {
  .top-mv__container {
    gap: 1.875rem;
  }
}

.top-mv__text-container {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 767px) {
  .top-mv__text-container {
    text-align: center;
  }
}

.top-mv__main-title {
  position: relative;
  margin-top: 3.125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4375rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5em;
  color: #4D5953;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-mv__main-title {
    margin-top: 0;
    font-size: 2rem;
  }
}
.top-mv__main-title::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -11rem;
  width: 28.875rem;
  height: 53.5625rem;
  background-image: url("../images/top/bg-bright.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .top-mv__main-title::before {
    top: -23%;
    left: -115%;
    width: 28.25rem;
    height: 57.125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__main-title::before {
    top: -24%;
    left: -8.8125rem;
    width: 23.25rem;
    height: 46.125rem;
  }
}

.top-mv__main-title span {
  color: orange;
}

.top-mv__main-swiper {
  position: relative;
  width: 67%;
  height: 100%;
  max-width: 69.375rem;
  z-index: 1000;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .top-mv__main-swiper {
    max-width: 60rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__main-swiper {
    width: 100%;
  }
}

.swiper-slide.top-mv__main-img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .swiper-slide.top-mv__main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-mv__main-swiper,
.top-mv__main-swiper .swiper-img,
.top-mv__main-swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.top-mv__main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.top-mv__main-swiper .swiper-slide.swiper-slide-active .swiper-img,
.top-mv__main-swiper .swiper-slide.swiper-slide-duplicate-active .swiper-img,
.top-mv__main-swiper .swiper-slide.swiper-slide-prev .swiper-img {
  animation: scale 10s linear 0s normal both;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper {
  margin: 0;
  max-width: 69.375rem;
}

.news-about-joint {
  background-image: url("../images/common/green-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 新着情報セクション */
.top-news {
  padding: 3.125rem 0 5.3125rem;
  margin: -0.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 6.25rem 0 5.3125rem;
  }
}
@media screen and (max-width: 499px) {
  .top-news {
    padding: 5rem 0 5.3125rem;
  }
}

.top-news__inner {
  position: relative;
  max-width: 78.125rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
.top-news__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 6.1875rem;
  height: 4.8125rem;
  background-image: url("../images/common/bird2.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .top-news__inner::before {
    top: -15%;
    right: 3%;
  }
}

.top-news__main {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2.5rem 2.375rem;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: #fff;
}
.top-news__main::before {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 8.1875rem;
  height: 6.8125rem;
  background-image: url("../images/common/icon-wood.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .top-news__main::before {
    bottom: -5%;
    width: 6.25rem;
    height: 5.4375rem;
  }
}
.top-news__main::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 7.3125rem;
  height: 3.875rem;
  background-image: url("../images/common/kirikabu.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .top-news__main {
    flex-direction: column;
  }
}

.top-news__left-container {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .top-news__left-container {
    width: 100%;
    text-align: center;
  }
}

.top-news__title.section-title {
  font-size: 2.125rem;
}

.top-news__button.top-news__button--pc {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .top-news__button.top-news__button--pc {
    display: none;
  }
}

.top-news__button.top-news__button--md {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-news__button.top-news__button--md {
    display: block;
    margin: 1.875rem auto 0;
  }
}

.top-news__list {
  width: 75%;
  list-style: none;
  padding: 1.875rem 0 0 5.25rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    width: 100%;
    padding: 1.875rem 0.3125rem 0;
  }
}

.top-news__item {
  display: flex;
  flex-direction: column;
  margin-top: 2.75rem;
  border-bottom: 2px solid #DDDDDD;
  padding: 0 0 1rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    gap: 0.625rem;
    padding: 0;
  }
}

.top-news__item:first-child {
  margin-top: 0;
}

.top-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #DDDDDD;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    font-size: 1.25rem;
  }
}

.top-news__link {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-news__link {
    font-size: 1.375rem;
  }
}

.top-news__chart {
  text-align: center;
  position: relative;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-news__chart {
    margin-top: 4.375rem;
  }
}

.top-news__chart a {
  position: relative;
  display: inline-block;
  margin-left: 2.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .top-news__chart a {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-news__chart a {
    font-size: 1.5625rem;
    margin: 0;
  }
}

.top-news__chart a::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  border: solid transparent;
  border-width: 0.4375rem 0 0.4375rem 0.5rem;
  border-left-color: #DDDDDD;
}
@media screen and (max-width: 767px) {
  .top-news__chart a::after {
    right: -2.5rem;
    border-width: 0.625rem 0 0.625rem 0.875rem;
  }
}

.top-news__more:hover {
  color: #3b8f89;
}

.top-about {
  position: relative;
  padding: 1.875rem 0 15.625rem;
}

.top-about__body {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 3.5625rem;
  max-width: 71.875rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 999px) {
  .top-about__body {
    flex-direction: column;
  }
}
.top-about__body::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  width: 4.5625rem;
  height: 3.1875rem;
  background-image: url("../images/common/risu.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 999px) {
  .top-about__body::before {
    top: -5%;
    left: 16%;
  }
}

.top-about__img-content {
  width: 93%;
  max-width: 31.3125rem;
  height: auto;
}
@media screen and (max-width: 999px) {
  .top-about__img-content {
    width: 100%;
    margin: 0 auto;
  }
}

.top-about__img-content img {
  width: 100%;
  border-radius: 1.25rem;
}

.top-about__text-container {
  text-align: left;
}
@media screen and (max-width: 999px) {
  .top-about__text-container {
    margin: 0 auto;
    max-width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .top-about__text-container {
    max-width: 37.5rem;
    width: 90%;
  }
}

.top-about__second-title {
  padding-bottom: 0.9375rem;
  font-size: 1.4375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about__second-title {
    font-size: 1.125rem;
    line-height: 2em;
  }
}

.top-about__second-title span {
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-about__second-title span {
    padding-bottom: 0.125rem;
  }
}

.top-about__text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 1rem;
  }
}

.top-service {
  background-image: url("../images/top/service-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-service__container {
  position: relative;
  top: -9.375rem;
  padding: 2.625rem 4.6875rem 4.6875rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .top-service__container {
    padding: 1.875rem 1.875rem 3.125rem;
  }
}

.top-service__top-text {
  margin-top: 1.5rem;
}

.top-service__top-text p {
  letter-spacing: 0.12em;
}

.top-service__img {
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__img {
    margin-top: 0;
  }
}

.top-service__img img {
  margin: 0 auto;
}

.top-service__bottom-container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-service__bottom-container {
    flex-direction: column;
  }
}

.top-service__item {
  padding-right: 2.1875rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top-service__item {
    max-width: 33.75rem;
    padding: 1.25rem;
    margin: 0 auto;
  }
}

.top-service__item:nth-child(2) {
  padding: 0 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-child(2) {
    padding: 1.25rem;
  }
}

.top-service__item:nth-child(3) {
  padding-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-child(3) {
    padding: 1.25rem;
  }
}

.top-service__item:not(:last-child) {
  border-right: 1px solid #AECE72;
}
@media screen and (max-width: 767px) {
  .top-service__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #AECE72;
  }
}

.top-service__icon img {
  margin: 0 auto;
}

.top-service__item-text {
  margin-top: 0.9375rem;
}

.top-feature {
  padding: 4.0625rem 0 6.0625rem;
  background-image: url("../images/top/feature-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-feature__inner {
  position: relative;
}
.top-feature__inner::before {
  content: "";
  position: absolute;
  bottom: -6%;
  right: -5%;
  width: 9.6875rem;
  height: 8.375rem;
  background-image: url("../images/common/icon-wood.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .top-feature__inner::before {
    bottom: -5%;
    right: 5%;
    width: 4rem;
    height: 3.5rem;
  }
}

.top-feature__container:not(:first-child) {
  margin-top: 3.5rem;
}

.top-feature__container.top-feature__container--first {
  margin-top: 1.5625rem;
}

.top-feature__item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5rem;
  padding: 3.5rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .top-feature__item {
    padding: 1.25rem;
  }
}

.top-feature__text-top {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-feature__text-top {
    flex-direction: column;
    gap: 0;
  }
}

.top-feature__number-wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-feature__number-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.top-feature__item-number {
  text-align: end;
  font-family: "Roboto", serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: #8FA992;
}
@media screen and (max-width: 767px) {
  .top-feature__item-number {
    font-size: 3.125rem;
  }
}

.top-feature__item-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #E18700;
}
@media screen and (max-width: 767px) {
  .top-feature__item-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .top-feature__item-title {
    font-size: 1.25rem;
  }
}

.top-feature__item-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-feature__item-text {
    margin-top: 1.25rem;
  }
}

.top-feature__img {
  width: 60%;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .top-feature__img {
    width: 100%;
    max-width: 25rem;
    margin-top: 1.25rem;
  }
}

.top-feature__img img {
  width: 100%;
  aspect-ratio: 318/181;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.top-feature__item.top-feature__item--reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
}

.top-feature__text-top.top-feature__text-top--reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-feature__text-top.top-feature__text-top--reverse {
    flex-direction: column;
  }
}

.top-comment {
  margin-top: -0.125rem;
  padding: 3.125rem 0 4.4375rem;
  background-color: #F5F4EA;
}

.top-comment__container {
  position: relative;
  display: flex;
  margin-top: 1.3125rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-comment__container::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 4%;
  width: 7.375rem;
  height: 7.6875rem;
  background-image: url("../images/top/flower.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .top-comment__container::before {
    top: 12%;
    left: -2%;
    width: 5.625rem;
    height: 5.9375rem;
  }
}
@media screen and (max-width: 499px) {
  .top-comment__container::before {
    top: 15%;
    left: -2%;
    width: 4.375rem;
    height: 4.6875rem;
  }
}

.top-comment__title span {
  background: linear-gradient(#8FA992, #8FA992) 0 100%/0 1px no-repeat;
}

.top-comment__sub-title {
  margin-top: 1.3125rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .top-comment__sub-title {
    margin: 1.3125rem auto 0;
    text-align: center;
    line-height: 2.2em;
  }
}
@media screen and (max-width: 499px) {
  .top-comment__sub-title {
    font-size: 0.9375rem;
  }
}

.top-comment__text {
  text-align: center;
  margin: 0.875rem auto 0;
}

.js-fadeUP {
  opacity: 0;
  transform: translateY(100px);
}

.js-fadeUP.is-show {
  animation: fadeUPAnime 0.8s forwards;
}

@keyframes fadeUPAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUP--delay.is-show {
  animation-delay: 0.5s;
}

.underline-expand {
  padding-bottom: 1px;
  background: linear-gradient(#B6D8C2, #B6D8C2) 0 100%/0 1px no-repeat;
  transition: background 1.5s;
  text-decoration: none;
  transition-delay: 0.8s;
}

.underline-expand.is-active {
  background-size: 100% 1px;
}

.underline-expand--hover {
  padding-bottom: 1px;
  background: linear-gradient(#39AA4E, #39AA4E) 0 100%/0 1.5px no-repeat;
  transition: background 0.5s;
  text-decoration: none;
}

a:hover .underline-expand--hover {
  background-size: 100% 1px; /* ホバー時に下線を全幅で表示 */
}
/*# sourceMappingURL=style.css.map */
