@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: 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;
  }
}

@media (min-width: 1001px) {
  .menu-banners__title {
    display: none;
  }
}

@media (max-width: 1000px) {
  .menu-banners__title {
    width         : fit-content;
    color         : #EB7F32;
    font-size     : 1.8rem;
    font-weight   : 700;
    letter-spacing: 1.5px;
    line-height   : 1.45;
    margin-block  : 3rem 1.5rem !important;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .menu-banners__title {
    border-right : 6px solid #EB7F32;
    padding-right: 1em;
    margin-left  : auto;
  }
}

@media (max-width: 768px) {
  .menu-banners__title {
    letter-spacing: 1px;
    margin-block  : 3rem 1rem !important;
    border-left   : 6px solid #EB7F32;
    padding-left  : 0.8em;
    margin-left   : 0;
  }
}

/* ポップアップメニュー（開いたあと） */
.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;
  }
}

/* --- ピックアップラベル（差し込みテキスト）のデザイン --- */
.camp-card__pickup {
  margin        : 0px 0 20px;
  padding       : 8px 12px;
  background    : #EB7F32;
  color         : #fff;
  font-size     : 1.4rem;
  font-weight   : 700;
  border-radius : 6px;
  line-height   : 1.4;
  letter-spacing: 0.05em;
  box-shadow    : 0 2px 6px rgba(0, 0, 0, 0.16);
  display       : block;
  text-align    : center;
}

/* --- 251204 :: キャンプステータスラベルのデザイン --- */
.camp-status:not(.camp-status--sold-out) {
  position        : absolute;
  display         : block;
  width           : fit-content;
  height          : auto;
  padding         : 0.2em 0.8em;
  text-align      : center;
  font-size       : 14px;
  font-weight     : 600;
  letter-spacing  : 1px;
  color           : #FFF;
  top             : 0;
  left            : 2em;
  border-radius   : 0 0 10px 10px;
  background-color: #2a9d63;
}

.camp-status:not(.camp-status--sold-out):before {
  content: attr(data-status);
}

/* ステータス :: comingsoon */
.camp-status:not(.camp-status--sold-out)[data-status="comingsoon"] {
  background-color: #EBB132;
}

/* ステータス :: 残りわずか */
.camp-status:not(.camp-status--sold-out)[data-status="残りわずか"] {
  background-color: #2a9d63;
}

/* ステータス :: キャンセル待ち */
.camp-status:not(.camp-status--sold-out)[data-status="キャンセル待ち"] {
  background-color: #1EA7BF;
}

/* ステータス :: 参加中の皆様へ */
.camp-status:not(.camp-status--sold-out)[data-status="参加中の皆様へ"] {
  background-color: #eb7f32;
}

/* ステータス :: ご報告（終了） */
.camp-status:not(.camp-status--sold-out)[data-status="ご報告（終了）"] {
  background-color: #5a6856;
}