@charset "utf-8";
/*-------common------*/
html {
  font-size: 62.5%;
}
body {
  font-size: var(--b-fs);
  color: var(--b-color);
  font-family: var(--b-font-family);
  letter-spacing: var(--b-ls);
  line-height: var(--b-lh);
  font-weight: var(--b-fw);
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--b-color);
  transition: 0.25s ease-in-out;
}
a:hover {
  opacity: 0.6;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-size: var(--b-fs);
}
img {
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th {
  font-weight: 500;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
em {
  font-style: normal;
}
dl {
  margin: 0;
}
dt {
  margin: 0;
}
dd {
  margin: 0;
}
dl .row {
  display: flex;
}
.SP {
  display: none;
}
.TAB820 {
  display: none;
}
/* =====================
  Layout / Box
===================== */
.l-inner {
  padding-inline: 5.55%;
}
.u-w-fit {
  width: fit-content;
}
.u-mx-auto {
  margin-inline: auto;
}
.u-pos-rel {
  position: relative;
}
.u-z-1 {
  z-index: 1;
}
.u-z-2 {
  z-index: 2;
}
/* =====================
  Display
===================== */
.u-flex {
  display: flex;
}
.u-flex-re {
  flex-direction: row-reverse;
}
.u-flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.u-block {
  display: block;
}
.u-inline-block {
  display: inline-block;
}
/* 目には見せないが読み上げ・検索エンジンには残す（SEO用のh1など）。
   display:none だとスクリーンリーダーからも消えるのでクリップで隠す。
   absolute + 1px なのでレイアウトには一切影響しない。 */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* =====================
  Flex Align
===================== */
.u-ai-center {
  align-items: center;
}
.u-ai-start {
  align-items: flex-start;
}
.u-ai-end {
  align-items: flex-end;
}
.u-jc-center {
  justify-content: center;
}
.u-jc-start {
  justify-content: flex-start;
}
.u-jc-between {
  justify-content: space-between;
}
.u-jc-end {
  justify-content: flex-end;
}
.u-flex-1 {
  flex: 1;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
/* =====================
  Grid
===================== */
.u-grid {
  display: grid;
}
.u-grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
/* =====================
  Typography
===================== */
.u-fw300 {
  font-weight: 300;
}
.u-fw400 {
  font-weight: 400;
}
.u-fw500 {
  font-weight: 500;
}
.u-fw600 {
  font-weight: 600;
}
.u-fw700 {
  font-weight: 700;
}
.u-fw900 {
  font-weight: 900;
}

.u-lh10 {
  line-height: 1;
}
.u-lh12 {
  line-height: 1.2;
}
.u-lh14 {
  line-height: 1.4;
}
.u-lh16 {
  line-height: 1.6;
}
.u-lh20 {
  line-height: 2;
}

.u-ls005 {
  letter-spacing: 0.05em;
}
.u-ls01 {
  letter-spacing: 0.1em;
}
.u-ls0 {
  letter-spacing: 0;
}

.u-tc {
  text-align: center;
}
.u-uppercase {
  text-transform: uppercase;
}

/* =====================
  Color
===================== */
.u-cwhite {
  color: #fff;
}
.u-cblack {
  color: #000;
}

.u-bwhite {
  background: #fff;
}
.u-bblack {
  background: #000;
}

/* =====================
  Spacing
===================== */
.u-mr-01 {
  margin-right: 1em;
}

/* =====================
  Page
===================== */
.u-page-404 {
  padding: 150px 0;
}

/* =====================
  Reset
===================== */
* {
  box-sizing: border-box;
}
/*-------common-end------*/
.c-footer-icons {
  display: none;
  justify-content: space-around;
  align-items: stretch;
  position: fixed;
  z-index: 701;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* padding-bottom: calc(env(safe-area-inset-bottom) / 2); */
}
/*-------hd------*/
.fixed-wrap.is-fixed {
  position: fixed;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*-------ft------*/
#page-top {
  position: fixed;
  right: 7.7%;
  bottom: 65px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 600;
}
#page-top.is-show {
  opacity: 1;
  visibility: visible;
}
/* =========================================================
  ヘッダー / フッター（header.php・footer.php）
  ※ main.css から移設。common.css の #page-top・.fixed-wrap より
     後ろに置くこと（同詳細度で後勝ちのため）
========================================================= */
/*-------hd------*/
/* 最初から absolute で浮かせておく。relative→fixed だとフローから抜ける瞬間に
   下のコンテンツがヘッダーの高さ分ガクッと上がるため。absolute も fixed も
   フロー外なので、切り替わってもレイアウトは一切動かない。
   ヘッダー分の高さは本文側の padding-top で確保する。 */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
/* .p-index / .p-sub を持たない汎用テンプレート（記事一覧・詳細・404など）は
   ヘッダーを重ねない設計なので、ここで高さ分を確保する */
body:not(.home):not(.page) {
  padding-top: clamp(70px, var(--px-100), 100px);
}
/* これらのページには上部のシアン帯が無く、白のロゴ・社名が背景に埋もれるため
   ヘッダーに常時グラデーションを敷く */
body:not(.home):not(.page) .l-header {
  background-image: linear-gradient(
    120deg,
    var(--c-cyan) 0%,
    var(--c-green) 100%
  );
}
/* .is-fixed（common.css で position:fixed）になった時。
   ヘッダーの文字色（白のロゴ・社名／#333のナビ）はページ上部のシアン〜グリーン帯の上で
   成立する設計なので、固定時の背景も同じグラデの半透明にして配色関係をそのまま保つ。 */
.l-header.is-fixed {
  top: 0;
  left: 0;
  background-image: linear-gradient(
    120deg,
    rgba(20, 209, 214, 0.88) 0%,
    rgba(51, 210, 134, 0.88) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.l-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, var(--px-40), 40px);
  /* デザイン指定の高さは100px固定。ロゴ(133px)は下にはみ出させるので min-height にしない */
  height: clamp(70px, var(--px-100), 100px);
  padding-top: clamp(4px, 0.486vw, 7px);
  padding-right: clamp(10px, 0.972vw, 14px);
  padding-left: clamp(16px, 4.514vw, 65px);
}
/*----- ロゴ -----*/
.c-logo__link {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.764vw, 11px);
  color: var(--c-white);
}
/* ロゴマークは画像（img/common/logo.webp）。落ち影は元のCSS実装と同じ値を
   drop-shadow で再現する（box-shadow と違い、円の形に沿って落ちる） */
.c-logo__mark {
  flex-shrink: 0;
  display: block;
  width: clamp(74px, 9.236vw, 133px);
  height: auto;
  filter: drop-shadow(4px 1px 4px rgba(0, 0, 0, 0.25));
  transition: width 0.3s ease;
}
/* 固定時はロゴを小さくする（SPは下の @media で45pxのまま据え置く） */
.l-header.is-fixed .c-logo__mark {
  width: clamp(56px, 5.556vw, 80px);
}
.c-logo__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1px, 0.208vw, 3px);
  line-height: 1.35;
  letter-spacing: 0;
}
.c-logo__name-ja {
  font-size: clamp(17px, var(--px-30), 30px);
  font-weight: 700;
}
.c-logo__name-en {
  font-size: clamp(11px, var(--px-18), 18px);
  font-weight: 600;
}
/*----- ヘッダー右側（TEL＋ナビ） -----*/
.l-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(2px, 0.278vw, 4px);
}
.c-tel {
  display: inline-flex;
  align-items: center;
  gap: clamp(3px, 0.417vw, 6px);
  padding: clamp(3px, 0.347vw, 5px) clamp(8px, 0.833vw, 12px);
  border-radius: 81px;
  background: var(--c-green-dark);
  color: var(--c-white);
}
.c-tel__icon {
  flex-shrink: 0;
  width: 24px;
  height: auto;
}
.c-tel__num {
  letter-spacing: var(--b-ls-label);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
/*----- グローバルナビ -----*/
.c-nav {
  padding-right: clamp(0px, 1.042vw, 15px);
}
.c-nav__list {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 4.028vw, 58px);
}
.c-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c-nav__en {
  letter-spacing: var(--b-ls-label);
  font-size: clamp(11px, var(--px-15), 15px);
  line-height: 1.35;
  color: var(--c-text);
}
.c-nav__ja {
  letter-spacing: var(--b-ls-label);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--c-green-dark);
}
/*-------ft-----*/
.l-footer {
  position: relative;
  overflow: hidden;
  background: var(--c-beige);
}
/* 右側の庭園イラスト（Figmaでは多数のベクターの集合 → 1枚のPNGとして書き出し） */
.l-footer__illust {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 73.7%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  object-position: right;
  opacity: 0.2;
}
.l-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 15.417vw, 222px);
  padding-top: clamp(30px, 2.917vw, 42px);
  padding-right: clamp(16px, var(--px-40), 40px);
  padding-bottom: clamp(30px, 2.847vw, 41px);
  padding-left: clamp(16px, 10.972vw, 158px);
}
/*----- フッターのブランド（ロゴ＋社名＋TEL） -----*/
.c-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: clamp(200px, 17.153vw, 247px);
}
.c-footer-brand__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.042vw, 15px);
  width: 100%;
}
/* グラデーション版のロゴマークは画像（img/common/logo-gradient.webp） */
.c-footer-brand__mark {
  display: block;
  width: clamp(90px, 9.236vw, 133px);
  height: auto;
}
.c-footer-brand__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1px, 0.208vw, 3px);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--c-green);
}
.c-footer-brand__name-ja {
  font-size: clamp(20px, var(--px-30), 30px);
  font-weight: 700;
}
.c-footer-brand__name-en {
  font-size: clamp(12px, var(--px-18), 18px);
  font-weight: 600;
}
.c-footer-brand .c-tel--lg {
  margin-top: clamp(16px, 2.222vw, 32px);
}
/* 単独で置く大きいTELボタン。margin-inline:auto で中央寄せするため、
   inline-flex ではなく block レベルの flex にする（インラインだと auto マージンが効かない）。
   幅もデザイン固定値なので min-width ではなく width で確定させる。 */
.c-tel--lg {
  display: flex;
  justify-content: center;
  width: clamp(190px, 16.111vw, 232px);
  padding-block: clamp(5px, 0.417vw, 6px);
}
.c-tel--lg .c-tel__num {
  line-height: 1.8;
}
/*----- フッターナビ -----*/
.c-footer-nav {
  margin-top: clamp(16px, 8.194vw, 118px);
}
/*----- コピーライト -----*/
.c-copyright {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 0.903vw, 13px) 5.55%;
  background-image: linear-gradient(
    176.19deg,
    var(--c-cyan) 41.27%,
    var(--c-green) 98.24%
  );
}
.c-copyright__text {
  letter-spacing: var(--b-ls-label);
  font-size: clamp(13px, var(--px-16), 16px);
  line-height: 2.5;
  color: var(--c-white);
}
/*----- ページトップ -----*/
#page-top {
  right: 3.6%;
  bottom: clamp(20px, 4.583vw, 66px);
}
.c-pagetop__link {
  display: block;
  width: clamp(40px, 3.958vw, 57px);
}
.c-pagetop__link img {
  width: 100%;
  height: auto;
}
/*-------contact-form------*/
.cs-contact-form {
  max-width: 950px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 80px;
}
.cs-contact-form .row {
  margin-bottom: 30px;
}
.cs-contact-form .row:last-child {
  margin-bottom: 0;
}
.cs-contact-form textarea,
.cs-contact-form input {
  border: none;
  background: #fff;
  font-size: max(1.111vw, 16px);
  width: 100%;
  padding: 0.5em 0 0.5em 1em;
}
.cs-contact-form input:focus-visible,
.cs-contact-form textarea:focus-visible {
  outline: none;
}
.cs-contact-form dt {
  width: 30%;
}
.cs-contact-form dd {
  width: 70%;
}
.cs-contact-form-btn-wrap {
  text-align: center;
}
.table-form input:focus-visible,
.table-form textarea:focus-visible {
  outline: none;
}
input[type="submit"] {
  font-family: "Noto Serif JP", serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
}
span.wpcf7-spinner {
  display: none;
}
/*lightbox*/
#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
}
/*-------ipad----*/
@media screen and (max-width: 1180px) {
}
/*-------ipad-air----*/
@media screen and (max-width: 820px) {
  body .TAB820 {
    display: none;
  }
}
/*-------iphone----*/
@media screen and (max-width: 680px) {
  .u-flex,
  .u-flex.u-flex-re,
  dl .row {
    flex-direction: column;
  }
  .u-grid {
    grid-template-columns: 1fr;
  }
  .u-grid.u-grid-col-2,
  .u-grid.u-grid-col-3,
  .u-grid.u-grid-col-4 {
    grid-template-columns: 1fr;
  }
  body .SP {
    display: block;
  }

  body .PC {
    display: none;
  }
  .c-footer-icons {
    display: flex;
  }
  .u-tc.u-SPtl {
    text-align: left;
  }
  .table-form tr {
    display: flex;
    flex-direction: column;
  }
  .table-form th {
    width: 100%;
  }
  .table-form td {
    padding: 0 0 1em;
  }
  .cs-contact-form dt {
    width: 100%;
  }
  .cs-contact-form dd {
    width: 100%;
  }
  .fixed-wrap {
    position: fixed;
    animation: none;
  }

  /* ----- ここから main.css より移設（ヘッダー / フッター） ----- */
  /*----- ヘッダー -----*/
  /* SPはヘッダー帯を固定しない。common.css の .fixed-wrap{position:fixed} と
     .fixed-wrap.is-fixed{position:fixed; animation:slideDown} を打ち消して、
     .is-fixed が付いても外れても見た目・位置が一切変わらないようにする。
     画面に残り続けるのは #menu-button（position:fixed）だけ。 */
  .l-header,
  .l-header.is-fixed {
    position: absolute;
    animation: none;
    background-image: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .l-header__inner {
    height: auto;
    align-items: flex-start;
    padding: 2.5px 0 6px 2.8%;
  }
  /* ドロワー（#main-menu-container）を内包したままレイアウトからは外す */
  .l-header__right {
    display: contents;
  }
  .l-header__right .c-tel {
    display: none;
  }
  .c-logo__link {
    gap: 5.5px;
  }
  .c-logo__mark {
    width: 45px;
    filter: drop-shadow(2px 1px 3px rgba(0, 0, 0, 0.25));
  }
  /* SPは .is-fixed で何も変えないので、ロゴも縮小しない */
  .l-header.is-fixed .c-logo__mark {
    width: 45px;
  }
  .c-logo__name-ja {
    font-size: 14px;
  }
  .c-logo__name-en {
    font-size: 8px;
  }
  .c-nav {
    padding-right: 0;
  }

  /*----- フッター -----*/
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 42px 5% 0;
  }
  .l-footer__illust {
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    object-position: bottom;
  }
  .c-footer-brand {
    width: 100%;
  }
  .c-footer-brand__link {
    gap: 15px;
  }
  .c-footer-brand__mark {
    width: 133px;
  }
  .c-footer-brand__name-ja {
    font-size: 30px;
  }
  .c-footer-brand__name-en {
    font-size: 18px;
  }
  /* SPカンプではTELボタンは232px固定 */
  .c-tel--lg {
    width: 232px;
    height: 56px;
  }
  .c-footer-brand .c-tel--lg {
    margin-top: 35px;
  }
  .c-footer-nav {
    width: 100%;
    margin-top: 83px;
    padding-bottom: 92px;
  }
  .c-footer-nav .c-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 43px 55px;
  }

  /*----- 下部固定バー -----*/
  /* common.css の `body .SP{display:block}`(0,1,1) に .c-footer-icons(0,1,0) が
     詳細度で負けて縦積みになるため、body を付けて横並びを確定させる */
  body .c-footer-icons {
    display: flex;
    height: 57px;
    padding-right: 57px;
  }
  /* Figma(59:311)は TEL 218 / アクセス 101 / PAGE TOP 57 の3分割。
     区切り線は無く、背景色の違いで分かれる。中身は左揃え。 */
  .c-footer-icons__item {
    display: flex;
    align-items: center;
    background: var(--c-green-dark);
    color: var(--c-white);
    line-height: 29px;
    letter-spacing: var(--b-ls-label);
    white-space: nowrap;
  }
  .c-footer-icons__item--tel {
    flex: 1;
    gap: 8px;
    padding-right: 10px;
    padding-left: 9px;
    /* Figmaは375px基準で24px。固定幅（アクセス101 + PAGE TOP 57 + 左右余白と
       アイコン48 = 206px）を引いた残りに収まるよう、狭い端末でだけ縮める */
    font-size: min(24px, calc((100vw - 206px) * 24 / 169));
  }
  .c-footer-icons__item--map {
    flex: 0 0 101px;
    gap: 3px;
    padding-right: 2px;
    padding-left: 4px;
    background: var(--c-green-mid);
    font-size: 18px;
  }
  /* 2つのアイコンは寸法が違うので一括指定にせず個別に実寸で固定する */
  .c-footer-icons__item--tel img {
    width: 21px;
    height: 21px;
  }
  .c-footer-icons__item--map img {
    width: 17.5px;
    height: 22.75px;
  }
  /* SPではページトップを常時表示してバーの一部として見せる */
  body #page-top {
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    z-index: 702;
  }
  .c-pagetop__link {
    width: 57px;
  }
}
