@charset "UTF-8";
.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

/* _reset.scss（自作ライト版） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-block: 0;
}
p:not(:last-child) {
  margin-block: 0 1em;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  background-color: #FFFDFD;
  margin: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.28px;
}

main {
  margin-top: -13rem;
}
@media (max-width: 768px) {
  main {
    margin-top: -11.5rem;
  }
}

a,
button {
  transition: transform 0.3s ease;
}
a:hover,
button:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .is-tb {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .no-tb {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .c-outline {
    padding-inline: 3rem;
  }
}

.c-palt {
  font-feature-settings: "palt";
}

.c-wrapper {
  max-width: 1440px;
  margin-inline: auto;
  padding-block: 9rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-wrapper {
    max-width: 94vw;
    padding-block: 3rem;
  }
}

.c-title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  gap: 2.6rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .c-title {
    margin-bottom: 3rem;
  }
}
.c-title__heading {
  color: #333;
  text-align: center;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.26px;
  margin-block: 0;
  font-feature-settings: "halt" on;
}
@media (max-width: 768px) {
  .c-title__heading {
    width: 100%;
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
.c-title__subheading {
  color: #333;
  text-align: center;
  font-feature-settings: "halt" on;
  /* font-h2-sub */
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  margin-block: 0;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

/* 基本文字スタイル */
.c-text--green {
  color: #2A9D63;
}
.c-text--bold {
  font-weight: 700;
}
.c-text--center {
  text-align: center;
}
.c-text--large {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.9px;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

/* 汎用フェードイン（バリエーション対応） */
.js-fade {
  --fade-distance: 24px;
  --fade-duration: 0.8s;
  --fade-ease: cubic-bezier(.22, .61, .36, 1);
  --fade-delay: 0s;
  opacity: 0;
  transition: opacity var(--fade-duration) var(--fade-ease) var(--fade-delay), transform var(--fade-duration) var(--fade-ease) var(--fade-delay);
  will-change: opacity, transform;
  backface-visibility: hidden;
  /* 初期状態：フェードのみ */
  transform: none;
  /* ===== バリエーション ===== */
}
.js-fade.is-show {
  opacity: 1;
  transform: none;
}
.js-fade[data-fade=up] {
  transform: translateY(24px);
}
.js-fade[data-fade=up].is-show {
  transform: translateY(0);
}
.js-fade[data-fade=down] {
  transform: translateY(-24px);
}
.js-fade[data-fade=down].is-show {
  transform: translateY(0);
}
.js-fade[data-fade=left] {
  transform: translateX(-24px);
}
.js-fade[data-fade=left].is-show {
  transform: translateX(0);
}
.js-fade[data-fade=right] {
  transform: translateX(24px);
}
.js-fade[data-fade=right].is-show {
  transform: translateX(0);
}
.js-fade[data-fade=zoom] {
  transform: scale(0.92);
}
.js-fade[data-fade=zoom].is-show {
  transform: scale(1);
}
.js-fade[data-fade=rotate] {
  transform: rotate(-5deg) scale(0.96);
}
.js-fade[data-fade=rotate].is-show {
  transform: rotate(0) scale(1);
}
.js-fade[data-fade=normal] {
  transform: none;
}

/* スタッガー */
[data-stagger=children] > .js-fade {
  --fade-delay: 0s;
}

[data-stagger=children] > .js-fade:nth-child(1) {
  --fade-delay: .1s;
}

[data-stagger=children] > .js-fade:nth-child(2) {
  --fade-delay: .2s;
}

[data-stagger=children] > .js-fade:nth-child(3) {
  --fade-delay: .3s;
}

[data-stagger=children] > .js-fade:nth-child(4) {
  --fade-delay: .4s;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  .js-fade {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.c-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  box-sizing: border-box;
  width: fit-content;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #333;
}
.c-btn svg {
  width: 1.2em;
  height: 1.2em;
}
.c-btn svg path {
  fill: #2A9D63;
}
.c-btn--more svg path {
  fill: #EB7F32;
}
.c-btn--right {
  margin-left: auto;
}

.c-btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.4em 1.6em;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.c-btn2--form {
  background-color: #00A0C6;
  color: #fff;
}
.c-btn2--form:hover, .c-btn2--form:focus-visible {
  transform: translateY(2px);
  transition: transform 0.2s ease;
}
.c-btn2--right {
  margin-left: auto;
}
@media (max-width: 768px) {
  .c-btn2--sp-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-btn2__label {
  line-height: 1;
  white-space: nowrap;
}
.c-btn2__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-btn2__icon-svg {
  width: 12px;
  height: 12px;
  display: block;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.c-hero {
  padding-bottom: 3rem;
}
.c-hero__inner {
  position: relative;
  width: 94vw;
  height: 90vh;
  margin-inline: auto;
  background-image: url("/wp-content/themes/original/assets/images/top/pic01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .c-hero__inner {
    background-image: url("/wp-content/themes/original/assets/images/top/pic01-sp.jpg");
    background-position: center;
    height: 64vh;
  }
}
.c-hero__title {
  position: absolute;
  width: 685px;
  height: auto;
  bottom: 18vh;
  left: 6vw;
  margin: 0;
  font-size: 5.5rem;
  font-weight: 900;
  color: #2A9D63;
  background: rgba(255, 255, 255, 0.8);
  width: fit-content !important;
  line-height: 1;
  padding: 3rem 8rem;
  border-radius: 100px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .c-hero__title {
    width: 90vw !important;
    font-size: 2.65rem;
    top: initial;
    left: 50%;
    bottom: 3vw;
    height: fit-content;
    padding: 2rem 3rem;
    transform: translate(-50%, 0);
  }
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.sns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.sns__item {
  width: 4rem;
  height: auto;
}
.sns svg {
  width: 100%;
  height: auto;
}
.sns svg path {
  fill: #333;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

/* メニュー開閉後のiPhoneでの画面ロック防止 */
body.is-menu-open #site-header {
  transform: none !important;
  will-change: auto !important;
}

header#site-header {
  position: sticky;
  top: 2rem;
  width: 85vw;
  height: 100px;
  margin-inline: auto;
  filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.15));
  z-index: 1000;
}
@media (max-width: 1200px) {
  header#site-header {
    width: 90vw;
  }
}

.header-wrap {
  background: #FFF;
  margin-top: 6rem;
  padding: 2rem 4rem;
  border-radius: 50px;
  box-sizing: border-box;
  transition: background-color 0.4s ease;
}
@media (max-width: 1200px) {
  .header-wrap {
    padding: 1.4rem 2rem 2rem;
  }
}
@media (max-width: 768px) {
  .header-wrap {
    margin-top: 3rem;
    padding: 1rem 3rem;
    border-radius: 28px;
    transition: padding 0.4s ease, background-color 0.4s ease;
  }
}
.header-wrap.is-open {
  background: #F5F1E8;
  border-radius: 50px !important;
  transition: background-color 0.4s ease;
}
@media (max-width: 768px) {
  .header-wrap.is-open {
    padding: 1.5rem !important;
    border-radius: 28px !important;
    transition: padding 0.4s ease, background-color 0.4s ease;
  }
}

.header-menu {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 1200px) {
  .header-menu {
    height: 35px;
    justify-content: space-between;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 0;
  height: 100%;
}
.site-logo h1 {
  margin: 0;
}
.site-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-logo img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.main-navigation {
  margin-inline: auto 2rem;
}
@media (max-width: 1200px) {
  .main-navigation {
    margin-inline: auto 1rem;
  }
}
@media (max-width: 780px) {
  .main-navigation {
    margin: 2.5rem 0;
  }
}
.main-navigation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 1300px) {
  .main-navigation ul {
    gap: 0rem;
  }
}
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.main-navigation .menu-item:not(:last-child) {
  border-right: 1px dashed #2A9D63;
  padding-right: 2rem;
}
@media (max-width: 1300px) {
  .main-navigation .menu-item:not(:last-child) {
    padding-right: 1rem;
    border-right: none;
  }
}
.main-navigation .menu-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .main-navigation .menu-item a {
    align-items: flex-start;
  }
}
.main-navigation .menu-item span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}
.main-navigation .menu-item span.menu-item__ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  text-align: center;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 1.6px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .main-navigation .menu-item span.menu-item__ja {
    font-size: 1.45rem;
  }
}
.main-navigation .menu-item span.menu-item__en {
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  color: #2A9D63;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .main-navigation .menu-item span.menu-item__en {
    font-size: 1.2rem;
  }
}

.applied {
  display: inline-flex;
  flex-direction: row;
  gap: 0.1em;
  align-items: center;
  cursor: pointer;
  background-color: #EB7F32;
  color: #fffefd;
  border-radius: 50px;
  padding: 8px 7px 8px 10px;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
}
.applied svg {
  width: 14px;
  height: 14px;
}
.applied svg path {
  fill: #fffefd;
}

.hamburger {
  position: relative;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  /* アクティブで ✕ に */
  /*
  &.is-active {
      .top {
          transform: translateY(10px) rotate(45deg);
      }

      .middle {
          opacity: 0;
      }

      .bottom {
          transform: translateY(-10px) rotate(-45deg);
      }
  }*/
}
.hamburger__icon {
  width: 29px;
  height: 24px;
}
.hamburger .line {
  stroke: #2A9D63;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: transform 0.35s ease, opacity 0.25s ease;
  vector-effect: non-scaling-stroke;
  /* 低モーション設定の端末ではアニメ省略 */
}
@media (prefers-reduced-motion: reduce) {
  .hamburger .line {
    transition: none !important;
  }
}

/* ナビゲーションポップアップ */
/* アコーディオン版（高さをアニメさせる） */
.menu-accordion {
  overflow: hidden;
  height: 0;
  transition: height 0.28s ease;
  will-change: height;
}
.menu-accordion__inner {
  border-radius: 28px;
  padding: clamp(12px, 2vw, 28px);
}
@media (max-width: 768px) {
  .menu-accordion__inner {
    margin: 1.8rem 0 0;
    padding: 0;
    border-radius: 20px;
  }
}

.menu-banners {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1vw;
}
@media (max-width: 1000px) and (min-width: 780px) {
  .menu-banners {
    padding-top: 3rem;
  }
}
@media (max-width: 780px) {
  .menu-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
  }
}
.menu-banners__item {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
  .menu-banners__item {
    filter: none;
  }
}

/* ポップアップメニュー（開いたあと） */
.menu-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-popup__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #2a7a58;
}

/* 省エネ：モーション削減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .menu-accordion {
    transition: none;
  }
}
/* ------------------------ */
/* SP用 :: メニュードロワー版 */
/* ------------------------ */
.menu-drawer {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  z-index: 1500;
  /* メニュー本体（中身は今の .menu-accordion を流用） */
  /* スクロールを寄せたい領域にだけ overflow:auto を付与 */
}
.menu-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease;
}
.menu-drawer__panel {
  position: absolute;
  inset: 0;
  background: #F5F1E8;
  height: 100dvh;
  /* アドレスバー対策で d vh を使う */
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  padding: 4.5vw;
}
.menu-drawer__scroll {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-drawer .menu-accordion {
  overflow: visible;
}
.menu-drawer .hamburger .top {
  transform: translateY(10px) rotate(45deg);
}
.menu-drawer .hamburger .middle {
  opacity: 0;
}
.menu-drawer .hamburger .bottom {
  transform: translateY(-10px) rotate(-45deg);
}

/* SP時に body をロックするクラス */
body.is-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

footer.site-footer {
  background-color: #F5F1E8;
}

.footer__inner {
  padding-block: 12rem 2rem;
  max-width: 1440px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer__inner {
    max-width: 94vw;
  }
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.footer .contact-box {
  position: relative;
  width: 100%;
  border: 4px solid #2A9D63;
  border-radius: 8px;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  background: #fff;
  color: #2A9D63;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media (max-width: 1200px) {
  .footer .contact-box {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .footer .contact-box {
    padding: 1.5rem;
  }
}
.footer .contact-box__header {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: #2A9D63;
  color: #fff;
  padding: 1.4rem;
  border-radius: 0 0 0.5rem 0;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .footer .contact-box__header {
    font-size: 1.6rem;
    line-height: 1.2;
    width: 100%;
    border-radius: initial;
    padding: 0.8rem;
  }
}
.footer .contact-box__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 3.5em;
}
@media (max-width: 768px) {
  .footer .contact-box__body {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 5.5rem;
  }
}
.footer .contact-box__title {
  flex: 2;
}
.footer .contact-box__title p {
  font-size: 2.4vw;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 4px;
  font-feature-settings: "halt" on;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer .contact-box__title p {
    font-size: 6vw;
    line-height: 1.2;
  }
}
.footer .contact-box__numbers {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 2vw;
}
@media (max-width: 768px) {
  .footer .contact-box__numbers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4vw;
    width: 100%;
  }
}
.footer .contact-item {
  display: flex;
  flex: 0 1 16vw;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.2rem;
}
@media (max-width: 1200px) {
  .footer .contact-item {
    flex: 0 1 46%;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .footer .contact-item {
    flex: auto;
    gap: 0.5rem;
  }
}
.footer .contact-item__label {
  display: inline-block;
  width: 100%;
  background: #2A9D63;
  color: #fff;
  font-size: 1vw;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 4px;
  padding: 0.4em 2.5em;
  border-radius: 30px;
  margin: 0;
}
@media (max-width: 1200px) {
  .footer .contact-item__label {
    font-size: 1.6rem;
    padding: 0.25em 2.5em;
  }
}
.footer .contact-item__number {
  font-size: 2vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 1200px) {
  .footer .contact-item__number {
    font-size: 2.6rem;
  }
}
.footer .contact-item__note {
  display: inline-block;
  width: fit-content;
  border: 2px solid #2A9D63;
  border-radius: 4px;
  padding: 0.4em 0.8em;
  font-size: 0.8vw;
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .footer .contact-item__note {
    padding: 0.25em 0.6em;
    font-size: 1.6rem;
  }
}
.footer__info {
  display: flex;
  align-items: flex-end;
  gap: 5rem;
}
@media (max-width: 1200px) {
  .footer__info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.footer__logo a img {
  width: auto;
  height: 9rem;
}
.footer__address {
  margin-bottom: 0.6rem !important;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.36px;
}
@media (max-width: 1200px) {
  .footer__address {
    text-align: center;
    margin-bottom: 3rem !important;
  }
}
.footer__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1200px) {
  .footer__phone {
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
    width: fit-content;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .footer__phone {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer__phone--tel, .footer__phone--fax {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.2;
}
.footer__phone--tel svg, .footer__phone--fax svg {
  width: 0.8em;
  height: auto;
}
.footer__phone--tel svg path, .footer__phone--fax svg path {
  fill: #333;
}
.footer__navigation .menu-item__en {
  display: none;
}
.footer__navigation .footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.12px;
}
@media (max-width: 1200px) {
  .footer__navigation .footer-nav {
    justify-content: center;
    gap: 0 2rem;
  }
}
.footer__navigation .footer-nav__pdf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.12px;
}
@media (max-width: 1200px) {
  .footer__navigation .footer-nav__pdf {
    justify-content: center;
    margin-top: 0.1rem;
  }
}
.footer__navigation .footer-nav__pdf-item a {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.footer__navigation .footer-nav__pdf-item a svg {
  width: 17px;
  height: 18px;
}
.footer__sns {
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .footer__sns {
    padding-top: 5rem;
  }
}
.footer__copyright {
  padding-block: 2rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #333;
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1.12px;
}
@media (max-width: 768px) {
  .footer__copyright {
    padding-block: 4rem 0;
  }
}

/* --- 広報誌ページ用簡易CSS（style.cssに移設推奨） --- */
/* --- 全体レイアウト --- */
.p-field__section { margin-bottom: 80px; }
.c-heading-secondary {
    font-size: 1.5rem;
    border-left: 5px solid #2A9D63;
    padding: 10px 15px;
    margin-bottom: 30px;
    background: #f4f4f4;
}

/* --- 最新号エリア (1カラム) --- */
.p-field__grid--latest {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* --- バックナンバーエリア (4カラム) --- */
.p-field__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PCで4列 */
    gap: 24px;
}

/* --- カードデザイン共通 --- */
.c-card-field {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.c-card-field:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #2A9D63;
}

.c-card-field__link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 画像エリア */
.c-card-field__thumb {
    width: 100%;
    aspect-ratio: 210 / 297; /* A4比率 */
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.c-card-field__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.c-card-field:hover .c-card-field__thumb img {
    transform: scale(1.05);
}

/* 本文エリア */
.c-card-field__body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c-card-field__title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2A9D63;
    line-height: 1.4;
}

.c-card-field__date {
    font-size: 1.2rem;
    color: #888;
    margin-top: auto; /* 下部に配置 */
}

/* --- 最新号の特別スタイル --- */
.c-card-field--large {
    width: 100%;
    flex-direction: row; /* 横並び */
    align-items: stretch;
    border: 2px solid #2A9D63; /* 最新号を目立たせる */
}
.c-card-field--large .c-card-field__link {
    flex-direction: row;
    width: 100%;
}
.c-card-field--large .c-card-field__thumb {
    width: 40%;
    aspect-ratio: auto;
    min-height: 350px;
}
.c-card-field--large .c-card-field__body {
    width: 60%;
    padding: 40px;
    justify-content: center;
    align-items: flex-start; /* 左寄せ */
}
.c-card-field--large .c-card-field__title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.c-card-field--large .c-card-field__date {
    font-size: 1.3rem;
    margin-bottom: 30px;
    margin-top: 0;
}
.c-btn-pdf {
    display: inline-block;
    padding: 12px 40px;
    background: #EB7F32;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}
.c-btn-pdf:hover {
    opacity: 0.8;
}

/* --- スマホ対応 (768px以下) --- */
@media (max-width: 768px) {
    /* バックナンバーを1列に */
    .p-field__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    /* 最新号を縦並びに */
    .c-card-field--large {
        flex-direction: column;
    }
    .c-card-field--large .c-card-field__link {
        flex-direction: column;
    }
    .c-card-field--large .c-card-field__thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9; /* スマホで見やすい比率 */
    }
    .c-card-field--large .c-card-field__body {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    .c-card-field--large .c-card-field__title {
        font-size: 1.5rem;
    }
}

/* =========================================
   サブメニュー（ドロップダウン & アコーディオン）追加スタイル
   ========================================= */

/* --------------------------------------------------
   PC版（マウスオーバーで展開）
-------------------------------------------------- */
@media (min-width: 769px) {
    /* 親メニューの基点 */
    .main-navigation .menu-item-has-children {
        position: relative;
    }

    /* ▼があることを示すアイコン（必要に応じて） */
    .main-navigation .menu-item-has-children > a::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        border-color: #2A9D63 transparent transparent transparent;
        margin: 5px auto 0; /* 下に配置 */
        transition: transform 0.3s;
    }
    .main-navigation .menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }

    /* サブメニュー本体（初期非表示） */
    .main-navigation .sub-menu {
        display: block; /* アニメーション用にblockにしておく */
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background-color: #fff;
        min-width: 240px; /* 少し広めに */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 10px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    /* ホバーで表示 */
    .main-navigation .menu-item-has-children:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* サブメニューのアイテム */
    .main-navigation .sub-menu .menu-item {
        border-right: none !important; /* 親の区切り線を打ち消し */
        padding: 0 !important;
        margin: 0;
        display: block;
        text-align: left;
    }

    /* サブメニューのリンク */
    .main-navigation .sub-menu .menu-item a {
        display: block;
        padding: 12px 20px;
        flex-direction: row; /* 親のcolumn指定を解除 */
        align-items: center;
        gap: 0;
        background: transparent;
        transition: background 0.2s;
    }
    .main-navigation .sub-menu .menu-item a:hover {
        background-color: #f0f7f4; /* 薄い緑 */
    }

    /* テキスト調整 */
    .main-navigation .sub-menu .menu-item span.menu-item__ja {
        font-size: 1.4rem;
        text-align: left;
        color: #333;
    }
    .main-navigation .sub-menu .menu-item span.menu-item__en {
        display: none; /* サブメニューでは英語表記は邪魔なら消す */
    }
}

/* --------------------------------------------------
   SP版（タップでアコーディオン展開）
-------------------------------------------------- */
    .main-navigation .sub-menu .menu-item a {
        font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
        font-weight: 900;       /* 親と同じ太さ */
        font-size: 1.45rem;     /* 親と同じサイズ */
        letter-spacing: 1.6px;  /* 親と同じ字間 */
        color: #333;
        text-align: left;       /* リストなので左揃えが見やすいですが、中央にしたい場合は center にしてください */
        line-height: 1.4;       /* 複数行になった時に詰まりすぎないよう少し余裕を持たせています */

    }

@media (max-width: 768px) {
    .main-navigation .menu-item-has-children {
        width: 100%;
    }
    
    /* 親リンクのレイアウト調整 */
    .main-navigation .menu-item-has-children > a {
        position: relative;
        width: 100%;
    }

    /* 開閉用の＋ボタン（疑似要素） */
    .main-navigation .menu-item-has-children > a::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        font-weight: bold;
        color: #2A9D63;
        transition: transform 0.3s;
    }
    /* 開いている時の－ボタン */
    .main-navigation .menu-item-has-children.is-active > a::after {
        content: "-"; /* または transform: rotate(45deg); で＋を×にする */
        transform: translateY(-50%);
    }

    /* サブメニュー本体（初期非表示） */
    .main-navigation .sub-menu {
        display: none; /* JSでslideDown */
        width: 100%;
        padding-left: 20px; /* インデント */
        background-color: rgba(42, 157, 99, 0.05); /* 背景色を薄く */
        margin-top: 10px;
        border-radius: 8px;
    }

    /* 開いた時（JSで付与するクラス） */
    .main-navigation .sub-menu.is-open {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .main-navigation .sub-menu .menu-item {
        border-bottom: 1px dashed #ccc;
    }
    .main-navigation .sub-menu .menu-item:last-child {
        border-bottom: none;
    }
    
    .main-navigation .sub-menu .menu-item a {
        padding: 15px 0;
        align-items: flex-start;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .main-navigation .menu-item-has-children > a {
        padding-right: 40px; /* 右側に余白を確保 */
    }
    .main-navigation .menu-item-has-children > a::after {
        width: 40px; /* タップ判定を広げる */
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
    }
}