﻿/* ========================================
   Variables
======================================== */
:root {
  --color-green: #5cab26;
  --color-orange: #f5a940;
  --color-white: #ffffff;
  --color-text: #333333;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Archivo Narrow", sans-serif;
  --transition: 0.3s ease;
}

/* ========================================
   Utility
======================================== */
.hidden-pc {
  display: none;
}

@media (max-width: 768px) {
  .hidden-pc {
    display: inline;
  }
}

/* ========================================
   Base
======================================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ドロワーオープン中はスクロールを禁止 */
body.is-drawer-open {
  overflow: hidden;
}

/* ========================================
   Layout: Header
======================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
}

.l-header__inner {
  background: var(--color-white);
  border-radius: 100px;
  padding: 10px 30px 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1292px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 90px;
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.l-header__logo img {
  width: 169px;
  height: 29px;
  object-fit: contain;
}

.l-header__logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

/* ========================================
   Component: GNav (PC)
======================================== */
.c-gnav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-gnav__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-gnav__item {
  letter-spacing: 0.8px;
}

.c-gnav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--transition);
}

.c-gnav__link:hover {
  color: var(--color-green);
}

.c-gnav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 100px;
  white-space: nowrap;
  width: 148px;
  transition: opacity var(--transition);
}

.c-gnav__button:hover {
  opacity: 0.85;
}

/* ========================================
   Component: Drawer (SP)
======================================== */
.c-drawer {
  display: none;
}

/* ---- ハンバーガーボタン ---- */
.c-drawer__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px;
}

/* 棒2本をflexで通常フローに乗せる */
.c-drawer__bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}

.c-drawer__bar::before,
.c-drawer__bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #93c572;
  border-radius: 2px;
}

.c-drawer__label {
  font-size: 9px;
  font-family: var(--font-en);
  font-weight: 700;
  color: #93c572;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* ---- オーバーレイ ---- */
.c-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

/* ---- ドロワーパネル ---- */
.c-drawer__content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* ---- .is-open で開く ---- */
.c-drawer.is-open .c-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

.c-drawer.is-open .c-drawer__content {
  transform: translateX(0);
}

/* ---- パネルヘッダー ---- */
.c-drawer__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  box-shadow: 0px 3px 6px #00000029;
  height: 50px;
}

.c-drawer__panel-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-drawer__panel-logo img {
  width: 116px;
  height: 20px;
  object-fit: contain;
}

.c-drawer__panel-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

/* ---- CLOSEボタン ---- */
.c-drawer__close {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-drawer__close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.c-drawer__close-icon::before,
.c-drawer__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #93c572;
  border-radius: 2px;
}

.c-drawer__close-icon::before {
  transform: rotate(45deg);
}
.c-drawer__close-icon::after {
  transform: rotate(-45deg);
}

.c-drawer__close-label {
  font-size: 9px;
  font-family: var(--font-en);
  font-weight: 700;
  color: #93c572;
  letter-spacing: 0.12em;
}

/* ---- ドロワーナビ ---- */
.c-drawer__nav {
  flex: 1;
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
}

.c-drawer__item {
  border-bottom: 1px solid var(--color-green);
}

.c-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.c-drawer__link-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-drawer__link-ja {
  font: normal normal bold 16px/1.5 YuGothic;
  color: #3b4043;
}

.c-drawer__link-en {
  font: normal normal normal 12px/16px Archivo Narrow;
  color: #f7b560;
  letter-spacing: 0.6px;
}

.c-drawer__link-arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 10px;
  flex-shrink: 0;
  color: var(--color-green);
}
.c-drawer__link-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.c-drawer__link-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 1.5px;
  background-color: currentColor;
  transform-origin: right center;
  transform: translateY(-50%) rotate(45deg);
}

/* ---- 電話番号 ---- */
.c-drawer__tel {
  text-align: center;
  padding: 25px 0 25px;
}

.c-drawer__tel-label {
  font: normal normal bold 14px/24px YuGothic;
  letter-spacing: 0px;
  color: var(--color-green);
}

.c-drawer__tel-number {
  display: block;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: var(--color-green);
}

.c-drawer__tel-hours {
  font: normal normal bold 14px/21px YuGothic;
  letter-spacing: 0px;
  color: var(--color-green);
}

/* ---- お問い合わせボタン ---- */
.c-drawer__button {
  display: block;
  background: var(--color-orange);
  color: var(--color-white);
  font: normal normal bold 16px/30px YuGothic;
  letter-spacing: 0px;
  text-align: center;
  padding: 18px;
  border-radius: 100px;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  transition: opacity var(--transition);
}

.c-drawer__button:hover {
  opacity: 0.85;
}

/* ========================================
   Page: MV (Main Visual)
======================================== */
.p-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-height: 768px;
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.p-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
}

.p-mv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 125px 24px 120px;
}

.p-mv__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
}

.p-mv__logo img {
  width: 203px;
  height: 157px;
  object-fit: contain;
}

.p-mv__catch-br {
  display: none;
}

@media (max-width: 768px) {
  .p-mv__catch-br {
    display: inline;
  }
}

.p-mv__logo-text {
  font-size: 14px;
  font-weight: 700;
  color: #93c572;
}

.p-mv__catch {
  font-size: 50px;
  font-weight: 700;
  color: #87b16c;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 7.5px;
}

/* SCROLLインジケーター */
.p-mv__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.p-mv__scroll-text {
  font-size: 10px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ffffff;
}

.p-mv__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: #ffffff;
  transform-origin: top center;
  animation: scroll-bar 2s ease-in-out infinite;
}

@keyframes scroll-bar {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  80%,
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

/* Newsカード */
.p-mv__news {
  position: absolute;
  bottom: 50px;
  right: 45px;
  z-index: 1;
  background: var(--color-orange);
  border-radius: 20px;
  padding: 20px 20px 20px 15px;
  width: 337px;
  height: 109px;
  box-shadow: 0px 3px 6px #00000029;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.p-mv__news.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.p-mv__news-label {
  margin-bottom: 6px;
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal 600 20px/12px Archivo Narrow;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 1;
}

.p-mv__news-date {
  margin-bottom: 8px;
  margin-top: 15px;
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal normal 12px/12px Archivo Narrow;
  letter-spacing: 0.6px;
  color: #ffffff;
  opacity: 1;
}

.p-mv__news-title {
  color: var(--unnamed-color-ffffff);
  text-align: left;
  font: normal normal bold 16px/1.4 YuGothic;
  letter-spacing: 0.8px;
  color: #ffffff;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ========================================
   Page: About
======================================== */
.p-about {
  background: var(--color-white);
  padding: 60px 24px;
}

.p-about__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-about__img {
  position: absolute;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.p-about__img.is-visible {
  opacity: 1;
}

.p-about__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* body を基準に配置。padding がテキストの保護ゾーン。
   画像のサイズ + 端からの offset ≤ padding になるよう設定 */
.p-about__img--tl {
  top: 35px;
  left: 0px;
  width: 200px;
  transition-delay: 0s;
} /* 20+155=175 < 240 ✓ */
.p-about__img--tr {
  top: 68px;
  right: 0px;
  width: 181px;
  transition-delay: 0.3s;
} /* 20+140=160 < 240 ✓ */
.p-about__img--bl {
  bottom: -115px;
  left: 110px;
  width: 200px;
  transition-delay: 0.6s;
} /* 55+155=210 < 240 ✓ */
.p-about__img--br {
  bottom: -185px;
  right: 40px;
  width: 235px;
  transition-delay: 0.9s;
} /* 40+175=215 < 240 ✓ */

.p-about__body {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  /* 上下200px・左右240pxがテキスト保護ゾーン（画像はこの内側に収まる） */
  padding: 95px 80px;
}

.p-about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-about__logo {
  width: 314px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.p-about__text {
  font: normal normal bold 16px/32px YuGothic;
  color: #555555;
  text-align: center;
  margin-top: 35px;
}

.p-about__text + .p-about__text {
  margin-top: -5px;
}

/* ========================================
   Responsive: About (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-about {
    padding: 10.7vw 5.3vw 10vw;
    height: auto;
  }

  .p-about__inner {
    padding: 0;
    min-height: auto;
    height: auto;
  }

  .p-about__body {
    width: 100%;
    height: auto;
    padding: 24vw 0vw 12vw;
    justify-content: center;
    gap: 5.3vw;
  }

  .p-about__img {
    position: absolute;
    aspect-ratio: 1 / 1;
  }

  /* top画像: 5vw + 画像高さ < 26vw(padding-top) なのでテキストに被らない */
  .p-about__img--tl {
    width: 18vw;
    height: auto;
    top: 5vw;
    left: 4vw;
  }
  .p-about__img--tr {
    width: 16vw;
    height: auto;
    top: 5vw;
    right: 4vw;
  }
  /* bottom画像: 5vw + 画像高さ < 33vw(padding-bottom) なのでテキストに被らない */
  .p-about__img--bl {
    width: 23vw;
    height: auto;
    bottom: -17vw;
    left: 7vw;
  }
  .p-about__img--br {
    width: 27vw;
    height: auto;
    bottom: -23vw;
    right: 10vw;
  }

  .p-about__text {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    margin-top: 0;
  }
  .p-about__text + .p-about__text {
    margin-top: 0px;
  }

  .p-about__logo {
    width: 64vw;
    height: auto;
  }
}

/* ========================================
   Page: Activity
======================================== */
.p-activity {
  display: flex;
  align-items: center;
  padding: 190px 0 40px;
  min-height: 780px;
}

.p-activity__card {
  width: calc(50vw + 500px);
  height: 740px;
  margin: 0;
  background: #ffffff;
  border-radius: 0 100px 100px 0;
  box-shadow: 1px 1px 10px #00000029;
  overflow: hidden;
}

.p-activity__inner {
  width: 960px;
  height: 100%;
  margin-left: calc(50vw - 480px);
  padding: 40px 60px 60px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.p-activity__title {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 10px;
  display: table;
  align-self: flex-start;
  position: relative;
  font: normal normal bold 40px/68px YuGothic;
  letter-spacing: 4px;
  color: #555555;
  opacity: 1;
  text-align: center;
}

.p-activity__title::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 22px;
  background: url("../img/wave.svg") no-repeat left bottom / 100% auto;
}

.p-activity__title--center {
  display: table;
  margin: 0 auto 25px;
}

.p-activity__tabs {
  display: flex;
  gap: 19px;
  margin-bottom: 50px;
}

.p-activity__tab {
  width: 190px;
  height: 65px;
  padding: 10px 0;
  text-align: center;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 20px;
  color: var(--color-orange);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.p-activity__tab.is-active {
  background: #93c572;
  color: var(--color-white);
  border-color: #93c572;
}

.p-activity__panel {
  display: none;
}

.p-activity__panel.is-active {
  display: block;
}

.p-activity__text {
  margin-bottom: 69px;
  text-align: left;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: YuGothic;
  letter-spacing: 0px;
  color: #555555;
  width: 750px;
  letter-spacing: 0px;
}

.p-activity__images {
  /* card の overflow:hidden でクリップ。1枚目を左半分はみ出させる。
     margin-left = -(card padding-left 60px + 画像半分 150px) = -210px
     margin-right = -(card padding-right 60px) でカード右端まで拡張 */
  margin-left: -420px;
  margin-right: -30px;
}
.p-activity__images .slick-slide {
  width: 324px;
  padding: 0 12px;
}

.p-activity__images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ========================================
   Responsive: Activity (max 960px, min 769px)
======================================== */
@media (max-width: 960px) and (min-width: 769px) {
  .p-activity {
    padding: 190px 0 60px;
  }

  .p-activity__card {
    width: 100%;
    border-radius: 0px;
  }

  .p-activity__inner {
    margin: 0 auto;
    width: 100%;
    margin-left: 0;
    padding: 40px 60px 60px;
  }
}

/* ========================================
   Responsive: Activity (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-activity {
    padding: 24vw 0px;
    width: 100%;
  }

  .p-activity__card {
    border-radius: 0px;
    width: 100%;
  }

  .p-activity__inner {
    padding: 0px 15px 40px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .p-activity__title {
    font-size: 30px;
    padding: 0px;
  }

  .p-activity__title::after {
    padding-top: 70px;
    width: 129px;
  }

  .p-activity__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .p-activity__tab {
    flex: 1;
    padding: 8px 4px;
    font-size: 13px;
    height: 50px;
    border-radius: 10px;
  }

  .p-activity__text {
    margin-top: 16px;
    font-size: 16px;
    margin-bottom: 35px;
    width: 100%;
    text-align: left;
    font: normal normal normal 16px/24px YuGothic;
    letter-spacing: 0.5px;
    color: #555555;
    opacity: 1;
  }

  .p-activity__images {
    margin: 0 -20px;
  }

  .p-activity__images .slick-slide {
    width: 66.667vw;
    padding: 0 8px;
    max-width: 250px;
    max-height: 209px;
  }

  .p-activity__images img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
  }
}

/* ========================================
   Page: FAQ
======================================== */
.p-faq {
  padding: 40px 24px;
  background: #ffffff;
}

.p-faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-faq__item {
  position: relative;
  border: 3px solid #93c572;
  border-radius: 50px;
  background: var(--color-white);
  overflow: hidden;
}

.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
}

.p-faq__q-label {
  flex-shrink: 0;
  text-align: left;
  font: normal normal normal 35px/47px Archivo Narrow;
  letter-spacing: 0px;
  color: #93c572;
  opacity: 1;
}

.p-faq__q-text {
  flex: 1;
  font-weight: 500;
  text-align: left;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0.5px;
  color: #555555;
  opacity: 1;
}

.p-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  background: #93c572;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-faq__icon::before {
  width: 16px;
  height: 2px;
}

.p-faq__icon::after {
  width: 2px;
  height: 16px;
  transition: opacity var(--transition);
}

.p-faq__item.is-open .p-faq__icon::after {
  opacity: 0;
}

.p-faq__answer-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.p-faq__item.is-open .p-faq__answer-wrapper {
  max-height: 400px;
}

.p-faq__answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 24px 20px;
}

.p-faq__a-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  font-family: var(--font-en);
  flex-shrink: 0;
}

.p-faq__a-text {
  color: #555555;
  text-align: left;
  font: normal normal normal 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
}

/* ========================================
   Responsive: FAQ (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-faq {
    padding: 48px 15px;
  }

  .p-faq__list {
    gap: 12px;
  }

  .p-faq__question {
    padding: 16px;
    gap: 12px;
  }

  .p-faq__q-label,
  .p-faq__a-label {
    font-size: 18px;
  }

  .p-faq__q-text {
    font-size: 14px;
  }

  .p-faq__answer {
    flex-direction: column;
    gap: 4px;
    padding: 0 16px 16px;
  }
}

/* ========================================
   Page: News
======================================== */
.p-news {
  padding: 80px 0 20px;
  background: var(--color-white);
}

.p-news__body {
  display: flex;
  align-items: center;
  margin-left: calc(50vw - 480px);
}

.p-news__left {
  width: 480px;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 40px;
}

.p-news__title {
  margin-bottom: 10px;
}

.p-news__desc {
  margin-bottom: 60px;
  width: 400px;
  text-align: left;
  font: normal normal normal 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
}

.p-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: normal normal normal 20px/27px Archivo Narrow;
  letter-spacing: 2px;
  color: #93c572;
  font-weight: 400;
  font-size: 15px;
  font-family: var(--font-en);
  transition:
    background var(--transition),
    color var(--transition);
  background: #ffffff;
  border: 2px solid #93c572;
  border-radius: 50px;
  width: 300px;
  height: 70px;
  margin-left: 50px;
}

.p-news__button:hover {
  background: #93c572;
  color: var(--color-white);
}

.p-news__right {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  box-shadow: 1px 1px 10px #00000029;
  border-radius: 100px 0px 0px 100px;
  height: 438px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}

.p-news__list {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  gap: 30px;
}

.p-news__item {
  padding: 5px 0;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.p-news__date {
  text-align: left;
  font: normal normal normal 16px/22px Archivo Narrow;
  letter-spacing: 0.8px;
  color: #555555;
  opacity: 1;
}

.p-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  background: #93c572 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
  width: 108px;
  height: 26px;
}

.p-news__item-title {
  text-align: left;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================
   Page: Access
======================================== */
.access {
  padding: 50px 24px;
  background: #f9f9f9;
}

.access__wrap {
  max-width: 960px;
  margin: 0 auto;
}

.access__title {
  display: table;
  margin: 0 auto 20px;
}

.access__inner {
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.access__info {
  display: grid;
  grid-template-columns: 250px 1fr;
  background: #ffffff;
}

.access__info dl {
  display: contents;
}

.access__row {
  display: contents;
}
.access__dt-company {
  padding: 80px 0 0 50px;
}
.access__dd-company {
  padding: 80px 0 0 50px;
}
.access__dt-address {
  padding: 15px 0 15px 50px;
}
.access__dd-address {
  padding: 15px 0 0 50px;
}

@media (min-width: 600px) {
  .access__dd-address br {
    display: none;
  }
}
.access__dt-tel {
  padding: 0px 0 15px 50px;
}
.access__dd-tel {
  padding-left: 50px;
}

.access__dt-time {
  padding: 0px 0 50px 50px;
}
.access__dd-time {
  padding-left: 50px;
}

.access__dt {
  background: #93c572;
  display: flex;
  align-items: center;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0;
  color: #555555;
}

.access__dd {
  display: flex;
  text-align: left;
  font: normal normal normal 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
}

.access__map {
  height: 300px;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: auto auto 1fr;
  background: #93c572;
}

.access__map-label {
  grid-column: 1;
  padding: 20px 0 6px 50px;
  font: normal normal bold 20px/34px YuGothic;
  color: #555555;
  text-align: left;
}

.access__map-link {
  grid-column: 1;
  padding: 0 0 20px 50px;
  display: block;
  font: normal normal bold 16px/27px YuGothic;
  color: #555555;
  text-decoration: underline;
}

.access__map iframe {
  grid-column: 2;
  grid-row: 1 / 4;
  display: block;
  width: 100%;
  height: 100%;
}

/* ========================================
   Responsive: タブレット以下 (max 1024px)
   ヘッダーナビをドロワーへ切り替え
======================================== */
@media (max-width: 1024px) {
  .l-header {
    padding: 0;
    width: 100vw;
  }

  .l-header__logo img {
    width: 116px;
    height: 20px;
  }
  .l-header__inner {
    height: 50px;
    border-radius: 0px;
    padding: 15px 10px;
  }

  .c-gnav {
    display: none;
  }

  .c-drawer {
    display: flex;
    align-items: center;
  }
}

/* ========================================
   Responsive: タブレット MV (769px–1024px)
   ロゴ＋キャッチを横並びに
======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .p-mv__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 100px 40px 120px;
  }

  .p-mv__logo {
    flex-shrink: 0;
  }

  .p-mv__logo img {
    width: 110px;
    height: 110px;
  }

  .p-mv__catch {
    font-size: 4vw;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

/* ========================================
   Responsive: SP (max 768px)
   ヒーローレイアウトの調整
======================================== */
@media (max-width: 768px) {
  .p-mv {
    max-height: 600px;
  }

  .p-mv__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 14px 120px;
    gap: 4px;
  }

  .p-mv__logo {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 80px;
  }

  .p-mv__logo img {
    width: 80px;
    height: 80px;
  }

  .p-mv__logo-text {
    font-size: 11px;
  }

  .p-mv__catch {
    font-size: 25px;
    text-align: center;
    letter-spacing: 3.75px;
    line-height: 1.5;
    margin-top: 80px;
    color: #93c572;
    opacity: 1;
  }

  .p-mv__scroll {
    display: none;
  }

  .p-mv__news {
    left: 20px;
    bottom: 24px;
    max-width: 142px;
    height: 72px;
    padding: 10px 0 10px 10px;
    border-radius: 12px;
  }

  .p-mv__news-label {
    font-size: 15px;
    margin-bottom: 0;
  }

  .p-mv__news-date {
    font-size: 10px;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.5px;
  }

  .p-mv__news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    margin-top: 4px;
  }

  .p-mv__news-title {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* ========================================
   Responsive: MV 中間幅 (400px–768px)
======================================== */
@media (min-width: 320px) and (max-width: 768px) {
  .p-mv__inner {
    justify-content: center;
  }
}

/* ========================================
   Responsive: News タブレット (960px–769px)
======================================== */
@media (max-width: 960px) and (min-width: 769px) {
  .p-news__body {
    margin-left: 0;
    padding: 0 0 0 40px;
  }

  .p-news__left {
    width: 50%;
    padding-right: 20px;
  }

  .p-news__right {
    border-radius: 60px 0 0 60px;
    height: auto;
    padding: 40px 40px;
  }
  .p-news__desc {
    width: 360px;
  }
}

/* ========================================
   Responsive: News SP (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-news {
    padding: 10px 0 0 14px;
  }

  .p-news__body {
    flex-direction: column;
    margin-left: 0;
    padding: 0;
    gap: 0;
  }

  /* p-news__leftを透過させて子要素をbodyのflexに直接参加させる */
  .p-news__left {
    display: contents;
  }

  .p-news__title {
    order: 1;
    padding: 0 15px;
    padding-left: 0;
    margin-bottom: 16px;
  }

  .p-news__desc {
    order: 2;
    margin-bottom: 24px;
    width: 100%;
  }

  /* 右端まで伸ばす（左だけ15px空ける） */
  .p-news__right {
    order: 3;
    flex: none;
    width: calc(100% - 15px);
    border-radius: 20px 0 0 20px;
    height: 381px;
    padding: 0;
  }

  /* ニュースカードの下にボタンを配置 */
  .p-news__button {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0;
    font: normal normal normal 20px/27px Archivo Narrow;
    letter-spacing: 2px;
    color: #93c572;
    opacity: 1;
  }

  .p-news__list {
    padding-left: 15px;
    margin-top: 3px;
    gap: 25px;
  }
  .p-news__meta {
    margin-bottom: 5px;
    gap: 25px;
  }
  .p-news__date {
    text-align: left;
    font: normal normal normal 14px/18px Archivo Narrow;
    letter-spacing: 0.7px;
    color: #555555;
    opacity: 1;
  }

  .p-news__category {
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal normal 14px/24px YuGothic;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
  }

  .p-news__item-title {
    text-align: left;
    font: normal normal bold 16px/27px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    opacity: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

/* ========================================
   Responsive: Access タブレット (960px–769px)
======================================== */
@media (max-width: 960px) and (min-width: 769px) {
  .access {
    padding: 60px 24px;
  }

  .access__info {
    grid-template-columns: 160px 1fr;
  }

  .access__dt {
    padding: 12px 0 12px 30px;
    font-size: 14px;
  }
  .access__dt-company {
    padding-top: 50px;
  }

  .access__dd {
    padding: 12px 32px;
    font-size: 13px;
  }
  .access__dd-company {
    padding-top: 50px;
  }

  .access__map {
    grid-template-columns: 160px 1fr;
  }

  .access__map-label,
  .access__map-link {
    padding-left: 30px;
    font-size: 13px;
  }
}

/* ========================================
   Responsive: Access SP (max 768px)
======================================== */
@media (max-width: 768px) {
  .access {
    padding: 30px 15px 48px;
  }
  .access__title {
    margin-bottom: 10px;
  }
  .access__inner {
    max-width: 550px;
    margin: 0 auto;
    height: 600px;
    border-radius: 50px;
  }

  .access__info {
    grid-template-columns: 139px 1fr;
  }

  .access__dt {
    text-align: left;
    font: normal normal bold 16px/27px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    opacity: 1;
  }
  .access__dt-company {
    padding: 25px 0 0 20px;
  }
  .access__dt-address {
    padding: 20px 0 70px 20px;
    align-self: start;
  }
  .access__dt-tel {
    padding: 0px 0 0 20px;
    align-self: center;
    margin-top: -10px;
  }
  .access__dt-time {
    padding: 20px 0 25px 20px;
    align-self: start;
  }

  .access__dd {
    padding: 10px 15px;

    text-align: left;
    font: normal normal normal 14px/24px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    opacity: 1;
  }
  .access__dd-company {
    padding: 25px 0 0 20px;
  }
  .access__dd-address {
    padding: 20px 0 0 20px;
  }
  .access__dd-tel {
    padding: 0 0 0 20px;
    margin-top: -10px;
  }
  .access__dd-time {
    padding: 20px 0 0 20px;
  }

  .access__map {
    height: 420px;
    display: grid;
    grid-template-columns: 139px 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .access__map-label {
    grid-column: 1;
    grid-row: 1;
    padding: 10px 15px 4px;
    font: normal normal bold 16px/27px YuGothic;
    letter-spacing: 0px;
    color: #555;
  }
  .access__map-link {
    grid-column: 1;
    grid-row: 2;
    padding: 0 15px 10px;
    text-align: left;
    font: normal normal bold 12px/20px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    opacity: 1;
  }
  .access__map-box {
    grid-column: 2;
    grid-row: 1 / 3;
    background: #ffffff;
    height: auto;
  }
  .access__map iframe {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    height: 100%;
  }
}

/* ========================================
   Page: Contact
======================================== */
.p-contact {
  padding: 110px 24px 80px;
  background: #f9f9f9;
}

.p-contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p-contact__card {
  background: #f7b560 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #00000029;
  border-radius: 50px;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.p-contact__title {
  color: #ffffff;
  text-align: left;
  font: normal normal bold 40px/68px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

.p-contact__desc {
  text-align: center;
  font: normal normal normal 18px/27px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

.p-contact__button {
  display: block;
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  color: #93c572;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 100px;
  border: 2px solid #93c572;
  text-align: center;
  transition: opacity var(--transition);
}

.p-contact__button:hover {
  opacity: 0.85;
}

.p-contact__tel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.p-contact__tel-label {
  text-align: center;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

.p-contact__tel-text {
  font-size: 14px;
  color: #ffffff;
}

.p-contact__tel-number {
  font: normal normal bold 30px/51px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
}

.p-contact__hours {
  text-align: center;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}

/* ========================================
   Responsive: Contact (960px–600px)
======================================== */
@media (max-width: 960px) and (min-width: 600px) {
  .p-contact__card {
    width: 600px;
    margin: 0 auto;
  }
}

/* ========================================
   Responsive: Contact (max 960px)
======================================== */
@media (max-width: 960px) {
  .p-contact {
    padding: 30px 4vw;
  }

  .p-contact__card {
    padding: 48px 24px;
    gap: 20px;
  }

  .p-contact__title {
    font-size: 28px;
  }

  .p-contact__button {
    max-width: 300px;
  }

  .p-contact__tel-label {
    display: block;
  }

  .p-contact__tel-number {
    display: block;
  }
}

@media (max-width: 768px) {
  .p-contact__inner {
    height: 450px;
  }
  .p-contact__card {
    padding: 30px 24px;
    gap: 10px;
  }
  .p-contact__desc {
    margin-top: -10px;
  }
  .p-contact__button {
    margin-top: 10px;
    text-align: center;
    font: normal normal bold 20px/34px YuGothic;
    letter-spacing: 2px;
    color: #93c572;
    opacity: 1;
  }
  .p-contact__tel-area {
    gap: 0;
  }
  .p-contact__tel-number {
    margin-top: -10px;
  }
}

@media (max-width: 600px) {
  .p-contact__hours-label,
  .p-contact__hours-time {
    display: block;
  }
}

@media (max-width: 360px) {
  .p-contact__title {
    font-size: 25px;
  }
  .p-contact__desc {
    font-size: 16px;
  }
  .p-contact__tel-label {
    font-size: 15px;
  }
  .p-contact__tel-number {
    font-size: 20px;
  }
  .p-contact__hours {
    font-size: 16px;
  }
}

/* ========================================
   Layout: Footer
======================================== */
.l-footer {
  background: #ffffff;
  padding: 110px 24px 40px;
}

.l-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.l-footer__body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 40px;
}

.l-footer__left {
  flex-shrink: 0;
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  width: 300px;
}

.l-footer__logo-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.l-footer__logo-text {
  width: 202px;
  height: auto;
  object-fit: contain;
}

.l-footer__address {
  font-style: normal;
  font: normal 500 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
}

.l-footer__address p:nth-child(3) {
  margin-top: 20px;
}

.l-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.l-footer__nav-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.l-footer__nav-link {
  transition: color var(--transition);
  font: normal normal bold 16px/12px YuGothic;
  letter-spacing: 0.8px;
  color: #555555;
  opacity: 1;
}

.l-footer__nav-link:hover {
  color: var(--color-green);
}

.l-footer__social {
  display: flex;
  gap: 12px;
}

.l-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  color: #555555;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.l-footer__social-link:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.l-footer__copy {
  text-align: center;
  font-size: 12px;
  color: #888888;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

/* 900px〜501px: 2カラム + ナビ縦並び */
@media (max-width: 900px) and (min-width: 501px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }

  .l-footer__social {
    margin-top: 24px;
  }
}

/* 500px以下: 1カラムレイアウト */
@media (max-width: 500px) {
  .l-footer {
    padding: 60px 15px 40px;
  }
  .l-footer__logo {
    margin-bottom: 25px;
  }

  .l-footer__body {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
  }

  .l-footer__right {
    align-items: flex-start;
    gap: 25px;
    width: 100%;
  }

  .l-footer__nav-list {
    flex-direction: column;
    gap: 3px;
    justify-content: flex-start;
  }

  .l-footer__social {
    align-self: flex-end;
    gap: 18px;
  }
}

/* ========================================
   Page: News List (news.html)
======================================== */

/* パンくずリスト */
.c-breadcrumb-wrap {
  background: #f5f5f0;
  padding: 100px 24px 16px;
}

.c-breadcrumb-wrap__inner {
  max-width: 960px;
  margin: 0 auto;
}

.c-breadcrumb__list {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  row-gap: 0px;
  font-size: 13px;
  color: #555555;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "›";
  color: #93c572;
  font-size: 18px;
}

.c-breadcrumb__link {
  font-family: YuGothic, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
  transition: opacity var(--transition);
}

.c-breadcrumb__link:hover {
  opacity: 0.7;
}

.c-breadcrumb__item--current {
  text-align: left;
  font: normal normal medium 14px/24px YuGothic;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

/* ニュース一覧セクション */
.p-news-list {
  padding: 30px 24px 80px;
  background: #f5f5f0;
}

.p-news-list__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p-news-list__category-sp {
  display: none;
}

/* カテゴリフィルター */
.p-news-list__filter {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.p-news-list__filter-btn {
  width: 126px;
  padding: 10px 0;
  border-radius: 100px;
  border: none;
  box-shadow: 0px 3px 6px #00000029;
  font-size: 14px;
  color: #f7b560;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition:
    background var(--transition),
    color var(--transition);
}

.p-news-list__filter-btn:hover,
.p-news-list__filter-btn.is-active {
  background: #93c572;
  color: #ffffff;
}

/* 記事カードエリア */
.p-news-list__card {
  background: #ffffff;
  border-radius: 100px;
  padding: 60px 50px 32px;
}

.p-news-list__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-news-list__item:first-child {
  padding-top: 32px;
}

.p-news-list__link {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: opacity var(--transition);
}

.p-news-list__link:hover {
  opacity: 0.7;
}

/* サムネイル */
.p-news-list__thumb {
  flex-shrink: 0;
  width: 230px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0px 3px 6px #00000029;
}

.p-news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 記事コンテンツ */
.p-news-list__body {
  flex: 1;
  min-width: 0;
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: -5px;
}

.p-news-list__date {
  font-family: var(--font-en);
  white-space: nowrap;
  font: normal normal medium 14px/18px Archivo Narrow;
  letter-spacing: 0.7px;
  color: #555555;
  opacity: 1;
}

.p-news-list__category {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 5px;
  background: #93c572;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
}

.p-news-list__item-title {
  line-height: 1.5;
  margin-bottom: 10px;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
}

.p-news-list__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #777777;
}

/* ページネーション */
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 0;
}

.c-pagination__arrow,
.c-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 2px solid #f0f3f5;
  background: #fafafa;
  color: #93c572;
  font-size: 14px;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.c-pagination__arrow:hover,
.c-pagination__page:hover {
  border-color: #93c572;
  color: #93c572;
}

.c-pagination__page.is-active {
  background: #93c572;
  border-color: #93c572;
  color: #ffffff;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .p-news-list {
    padding: 5px 15px 60px;
  }

  .p-news-list__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .p-news-list__filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .p-news-list__filter::-webkit-scrollbar {
    display: none;
  }

  .p-news-list__filter-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 13px;
  }

  .p-news-list__item:first-child {
    padding-top: 0;
  }

  /* カード外枠 */
  .p-news-list__card {
    padding: 20px 20px 0;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* 記事リストをカード並びに */
  .p-news-list__list {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .p-news-list__item {
    border-bottom: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
  }

  /* カードをオーバーレイレイアウトに */
  .p-news-list__link {
    display: block;
    padding: 0;
    position: relative;
    aspect-ratio: 305 / 199;
    overflow: hidden;
    border-radius: 16px;
  }

  /* サムネイルを背景のように全面に敷く */
  .p-news-list__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: unset;
    border-radius: 0;
    box-shadow: none;
  }

  /* SP用カテゴリバッジを右上に */
  .p-news-list__category-sp {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    padding: 3px 14px;
    border-radius: 5px;
    background: #93c572;
    font-size: 12px;
    color: #ffffff;
    white-space: nowrap;
  }

  /* PC用カテゴリはSPで非表示 */
  .p-news-list__category {
    display: none;
  }

  /* 日付・タイトルを下部オーバーレイに重ねる */
  .p-news-list__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 14px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 20px 20px;
  }

  .p-news-list__meta {
    margin-bottom: 4px;
    gap: 0;
  }

  .p-news-list__date {
    font: normal normal 500 12px/16px "Archivo Narrow";
    letter-spacing: 0.6px;
    color: #555555;
  }

  .p-news-list__item-title {
    font: normal normal bold 14px/21px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    margin-bottom: 0;
  }

  /* 本文抜粋は非表示 */
  .p-news-list__excerpt {
    display: none;
  }
}

/* ========================================
   Responsive: Breadcrumb (max 1024px)
======================================== */
@media (max-width: 1024px) {
  .c-breadcrumb-wrap {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .c-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
  }
}

/* ========================================
   Page: News Single (news-single.html)
======================================== */
.p-news-single {
  padding: 40px 24px 80px;
  background: #f5f5f0;
}

.p-news-single__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p-news-single__card {
  background: #ffffff;
  border-radius: 40px;
  padding: 60px 120px;
  box-shadow: 0px 3px 6px #00000029;
}

/* 記事タイトル（カード外・グレー背景上） */
.p-news-single__title {
  font: normal normal bold 40px/68px YuGothic;
  letter-spacing: 4px;
  color: #555555;
  margin-bottom: 16px;
}

/* 日付・カテゴリ（カード外） */
.p-news-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.p-news-single__date {
  font: normal normal normal 16px/22px "Archivo Narrow";
  letter-spacing: 0.8px;
  color: #707070;
}

.p-news-single__category {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 5px;
  background: #93c572;
  font: normal normal 500 14px/24px YuGothic;
  letter-spacing: 0px;
  color: #ffffff;
}

/* アイキャッチ画像 */
.p-news-single__thumb {
  width: 600px;
  height: 391px;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f0f0;
  margin: 0 auto 30px;
}

.p-news-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 目次 */
.p-news-single__toc {
  border: 2px solid #93c572;
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 48px;
  width: 600px;
  margin: 0 auto 48px;
}
.p-news-single__body.entry-content {
  width: 600px;
  margin: 0 auto;
}
.p-news-single__toc-title {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
}

/* H2レベル（番号付き） */
.p-news-single__toc-h2 {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  color: #f7b560;
}

.p-news-single__toc-h2 > li > a {
  font: normal normal bold 16px/27px YuGothic;
  letter-spacing: 0.8px;
  color: #f7b560;
  transition: opacity var(--transition);
}

.p-news-single__toc-h2 > li > a.p-news-single__toc-h2-title {
  color: #555555;
}

.p-news-single__toc-h2 > li > a:hover {
  opacity: 0.7;
}

/* H3レベル（bullet） */
.p-news-single__toc-h3 {
  list-style: disc;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-news-single__toc-h3 > li {
  color: #93c572;
}

.p-news-single__toc-h3 a {
  font: normal normal bold 16px/27px YuGothic;
  letter-spacing: 0px;
  color: var(--color-green);
  transition: opacity var(--transition);
}

.p-news-single__toc-h3 a.p-news-single__toc-h3-title {
  color: #555555;
}

.p-news-single__toc-h3 a:hover {
  opacity: 0.7;
}

/* 本文エリア */
.entry-content h2 {
  font: normal normal bold 24px/41px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  display: table;
  border-bottom: 2px solid #93c572;
  margin-top: 70px;
  margin-bottom: 10px;
}

.entry-content h3 {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  padding-left: 10px;
  border-left: 14px solid #93c572;
  margin-top: 25px;
  margin-bottom: 10px;
}

.entry-content p {
  font: normal normal 500 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  margin-bottom: 20px;
}

.entry-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.entry-content ul li {
  font: normal normal 500 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  padding-left: 1em;
}

.entry-content ul li::before {
  content: "・";
  margin-left: -1em;
}

/* 画像＋テキスト横並び */
.p-news-single__img-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.p-news-single__img-wrap img {
  width: 286px;
  height: 290px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
}

.p-news-single__img-wrap p {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}

/* 一覧に戻るボタン */
.p-news-single__back {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  border-top: 1px solid #eeeeee;
}

.p-news-single__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 301px;
  height: 70px;
  border: 2px solid #93c572;
  border-radius: 50px;
  color: #93c572;
  font-size: 15px;
  font-weight: 700;
  background: #ffffff;
  transition:
    background var(--transition),
    color var(--transition);
}

.p-news-single__back-btn:hover {
  background: #93c572;
  color: #ffffff;
}

/* ========================================
   Responsive: News Single (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-news-single {
    padding: 5px 15px 60px;
  }

  .p-news-single__card {
    padding: 32px 20px 40px;
    border-radius: 20px;
  }

  .p-news-single__title {
    font: normal normal bold 25px/37px YuGothic;
    letter-spacing: 2.5px;
  }

  .p-news-single__thumb {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .p-news-single__toc {
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
  }

  .p-news-single__body.entry-content {
    width: 100%;
  }

  .p-news-single__toc-h2 > li > a {
    font: normal normal bold 14px/21px YuGothic;
    letter-spacing: 0.7px;
  }

  .p-news-single__toc-h3 a {
    font: normal normal bold 14px/21px YuGothic;
    letter-spacing: 0px;
  }

  .p-news-single__body h2 {
    font-size: 18px;
    margin-top: 36px;
  }

  .p-news-single__body h3 {
    font-size: 15px;
    margin-top: 24px;
  }

  .p-news-single__img-wrap {
    flex-direction: column;
  }

  .p-news-single__img-wrap img {
    width: 100%;
  }

  .p-news-single__back {
    margin-top: 40px;
    padding-top: 32px;
  }
}

/* ========================================
   Page: Contact Form (contact.html)
======================================== */
.p-contact-page {
  padding: 30px 24px 80px;
  background: #f5f5f0;
}

.p-contact-page__inner {
  max-width: 960px;
  margin: 0 auto;
}

.p-contact-page__desc {
  margin-top: 8px;
  margin-bottom: 40px;
  text-align: left;
  font: normal normal 500 16px/27px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
}

.p-contact-page__card {
  background: #ffffff;
  border-radius: 100px;
  padding: 60px 80px 50px;
  box-shadow: 0px 3px 6px #00000029;
  min-height: 720px;
}

.p-contact-page__form {
  max-width: 600px;
  margin: 0 auto;
}

/* フォーム共通パーツ */
.c-form-group {
  margin-bottom: 32px;
}

.c-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  margin-bottom: 10px;
}

.c-form-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  background: #93c572;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}

.c-form-input,
.c-form-textarea {
  width: 100%;
  border: 1.5px solid #93c572;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-ja);
  color: #555555;
  background: #ffffff;
  outline: none;
  transition: border-color var(--transition);
}

.c-form-input {
  max-width: 500px;
}

.c-form-input:focus,
.c-form-textarea:focus {
  border-color: #5cab26;
}

.c-form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* カスタムセレクト */
.c-form-select {
  position: relative;
  max-width: 400px;
}

.c-form-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #93c572;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-ja);
  color: #aaaaaa;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition);
}

.c-form-select__trigger.is-selected {
  color: #555555;
}

.c-form-select__arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.c-form-select.is-open .c-form-select__arrow {
  transform: rotate(180deg);
}

.c-form-select__list {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #93c572;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 10;
  overflow: hidden;
}

.c-form-select.is-open .c-form-select__list {
  display: block;
}

.c-form-select.is-open .c-form-select__trigger {
  border-radius: 8px 8px 0 0;
}

.c-form-select__item {
  padding: 12px 16px;
  font-size: 14px;
  color: #93c572;
  cursor: pointer;
  border-top: 1.5px dashed #93c572;
  transition: background var(--transition);
}

.c-form-select__item:hover {
  background: #f5f5f0;
}

/* エラー表示 */
.c-form-error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 6px;
}

.c-form-group.is-error .c-form-input,
.c-form-group.is-error .c-form-textarea,
.c-form-group.is-error .c-form-select-input,
.c-form-group.is-error .c-cf7-select__trigger {
  border-color: #e53e3e;
}

.c-form-group.is-error .c-form-error {
  display: block;
}

/* CF7: セレクト（ネイティブ） */
.c-form-select-input {
  width: 100%;
  max-width: 400px;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1.5px solid #93c572;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  color: #CBCBCB;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%2393c572' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* CF7 カスタムドロップダウン */
.c-cf7-select {
  position: relative;
  max-width: 400px;
}

.c-cf7-select__trigger {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #93c572;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  color: #CBCBCB;
  user-select: none;
}

.c-cf7-select__trigger.is-selected {
  color: #555555;
}

.c-cf7-select__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform var(--transition);
  color: #93c572;
}

.c-form-group.is-error .c-cf7-select__arrow {
  color: #e53e3e;
}

.c-cf7-select.is-open .c-cf7-select__arrow {
  transform: rotate(180deg);
}

.c-cf7-select.is-open .c-cf7-select__trigger {
  border-radius: 8px 8px 0 0;
}

.c-cf7-select__list {
  display: none;
  position: absolute;
  top: calc(100% - 1.5px);
  left: 0;
  right: 0;
  border: 1.5px solid #93c572;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  z-index: 10;
}

.c-cf7-select.is-open .c-cf7-select__list {
  display: block;
}

.c-cf7-select__item {
  padding: 12px 16px;
  font-size: 14px;
  color: #93c572;
  border-top: 1px dashed #93c572;
  cursor: pointer;
  transition: background var(--transition);
}

.c-cf7-select__item:hover {
  background: #f5f5f0;
}

/* CF7: バリデーションエラー */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid {
  border-color: #e53e3e !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}

/* 送信ボタン */
.c-form-submit {
  text-align: center;
  margin-top: 48px;
}

.c-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  padding: 0;
  border: 2px solid #93c572;
  border-radius: 100px;
  background: #ffffff;
  color: #93c572;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.c-form-btn:hover {
  background: #93c572;
  color: #ffffff;
}

.p-contact-page--confirm .p-activity__title {
  margin-top: 0;
}


/* ========================================
   Responsive: Contact Form (max 768px)
======================================== */
@media (max-width: 768px) {
  .p-contact-page {
    padding: 5px 15px 30px;
  }

  .p-contact-page__card {
    padding: 24px 20px;
    border-radius: 50px;
    min-height: 666px;
  }

  .p-contact-page__desc {
    margin-bottom: 20px;
  }

  .c-form-label {
    font: normal normal bold 20px/34px YuGothic;
    letter-spacing: 0px;
    color: #555555;
  }

  .c-form-group {
    margin-bottom: 16px;
  }

  .c-form-input {
    height: 50px;
  }

  .c-cf7-select__trigger {
    height: 50px;
  }

  .c-form-textarea {
    min-height: 150px;
  }

  .c-form-submit {
    margin-top: 0px;
  }

  .c-form-btn {
    width: 200px;
    height: 50px;
    padding: 0;
    border-radius: 50px;
  }
}

/* ========================================
   Page: Contact Complete (contact-complete.html)
======================================== */
.p-contact-page--complete .p-contact-page__card {
  min-height: 400px;
}

.p-contact-page--complete {
  padding-bottom: 120px;
}

.p-contact-complete {
  text-align: center;
  padding: 20px 0;
}

.p-contact-complete__title {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  margin-bottom: 20px;
}

.p-contact-complete__desc {
  font: normal normal 500 16px/24px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  margin-bottom: 32px;
}

.p-contact-complete__tel {
  margin-bottom: 40px;
}

.p-contact-complete__tel-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.p-contact-complete__tel-label {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #93c572;
}

.p-contact-complete__tel-number {
  font: normal normal bold 30px/51px YuGothic;
  letter-spacing: 0px;
  color: #93c572;
}

.p-contact-complete__tel-hours {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #93c572;
}

/* ========================================
   Table of Contents Plus override
======================================== */
#toc_container {
  display: none !important;
  border: 2px solid #93c572;
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 48px;
  background: #ffffff;
  width: auto;
  float: none;
}

#toc_container .toc_title {
  font-size: 15px;
  font-weight: 700;
  color: #555555;
  margin-bottom: 14px;
  text-align: left;
}

#toc_container ul.toc_list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

#toc_container ul.toc_list > li {
  margin-bottom: 8px;
  color: #f7b560;
}

#toc_container ul.toc_list > li::marker {
  color: #f7b560;
}

#toc_container ul.toc_list a {
  font-size: 14px;
  color: #555555;
  transition: opacity var(--transition);
}

#toc_container ul.toc_list a:hover {
  opacity: 0.7;
}

#toc_container ul.toc_list ul {
  list-style: disc;
  padding-left: 16px;
  margin-top: 6px;
}

#toc_container ul.toc_list ul > li {
  margin-bottom: 4px;
  color: #93c572;
}

#toc_container ul.toc_list ul > li::marker {
  color: #93c572;
}

#toc_container ul.toc_list ul a {
  font-size: 13px;
  color: #555555;
}

#toc_container .toc_number {
  display: none;
}

/* ========================================
   Page: Contact Confirm (contact-confirm.html)
======================================== */
.p-contact-page__confirm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c-form-confirm-item {
  border-bottom: 1px solid #e8e8e8;
}

.c-form-confirm-item:first-child {
  border-top: 1px solid #e8e8e8;
  padding-top: 14px;
}

.c-form-confirm-label {
  font: normal normal bold 20px/34px YuGothic;
  letter-spacing: 0px;
  color: #555555;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-form-confirm-value {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .p-contact-complete{
    padding: 0;
  }
  .p-contact-complete__tel-line {
    flex-direction: column;
    gap: 6px;
  }

  .p-contact-complete__title {
    font: normal normal bold 20px/34px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    margin-bottom: 10px;
  }

  .p-contact-complete__desc {
    font: normal normal 500 16px/24px YuGothic;
    letter-spacing: 0px;
    color: #555555;
    margin-bottom: 10px;
  }

  .p-contact-complete__tel-label {
    font: normal normal bold 14px/24px YuGothic;
    letter-spacing: 0px;
  }

  .p-contact-complete__tel-number {
    font: normal normal bold 20px/34px YuGothic;
    letter-spacing: 0px;
  }

  .p-contact-complete__tel-hours {
    font: normal normal bold 14px/21px YuGothic;
    letter-spacing: 0px;
  }

  .p-contact-page__confirm {
    gap: 12px;
  }

  .p-contact-page--complete .p-contact-page__card {
    min-height: 421px;
  }
  .p-contact-page--complete{
    padding-bottom: 60px;
  }
}
