@charset "utf-8";

/* -------------------------------------------------------------------------
  root
  ------------------------------------------------------------------------- */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-maroon-100: #DB8F8F;
  --color-maroon: #860000;
  --color-green-100: #EEF1F0;
  --color-green-200: #EEF2DF;
  --color-green-300: #8FDBC7;
  --color-green: #008662;
  --color-gray-100: #eee;
  --color-gray-200: #e0e0e0;
  --color-gray-300: #bbb;
  --color-blue: #5B8DB3;

  --line-height-reset: 1;
  --line-height-tight: 1.2;
  --line-height-snug: 1.5;
  --line-height-head: 1.8;
  --line-height-body: 2;
  --letter-spacing-reset: 0;
  --letter-spacing-sm: 0.02em;
  --letter-spacing-md: 0.05em;
  --letter-spacing-lg: 0.08em;

  --font-size-sm: 0.85em;

  --layer-bg-back: 10;
  --layer-bg: 15;
  --layer-bg-mask: 20;
  --layer-content: 30;
  --layer-overlay-light: 50;
  --layer-overlay-heavy: 60;
  --layer-cta: 100;
  --layer-header: 300;
  --layer-modal: 1000;
  --layer-toast: 9999;

  --button-height-base: 4.4rem;
  --header-height: 7.5rem;

  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --duration-fast: 0.35s;
  --duration-base: 0.7s;
  --duration-slow: 1.05s;

  --color-brand-primary: var(--color-green);
  --color-on-dark: var(--color-white);
  --color-hamburger-line: var(--color-black);
  --bg-color-header: var(--color-white);

  --shadow-tight: 0 0.3rem 0.6rem -0.2rem rgba(0, 0, 0, 0.15);
  --shadow-base: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.15);
  --shadow-dark: 0.2rem 0.2rem 0.8rem 0 rgba(0, 0, 0, 0.2);
  --text-shadow-double: 0.1rem 0.1rem 0 rgba(0, 0, 0, 1),
    0 0 0.8rem rgba(0, 0, 0, 1);

  /* コンテンツエリア関連 */
  /* Tokens */
  --width-standard: 80rem;
  --width-large: 90rem;
  --width-small: 50rem;
  --width-ex-large: 128rem;

  --space-side-sm: 3rem;
  --space-side-md: 5.4rem;
  --space-side-lg: 10rem;
  --space-side-xl: 11rem;
  --space-side-2xl: 13.4rem;
  --space-side-3xl: 19rem;

  /* Defaults */

  --layout-content-side: var(--space-side-sm);
  --container-inner-width: var(--width-standard);
  --container-side-gap: var(--layout-content-side);

  /* Calculation */
  /* --layout-max-width: calc(var(--container-inner-width) + (var(--container-side-gap) * 2)); */
  --layout-max-width-header: calc(var(--width-large) + 4rem);
}

@media screen and (min-width:744px) {
  :root {
    --container-side-gap: var(--space-side-2xl);
  }
}

@media screen and (min-width:1024px) {
  :root {
    --container-side-gap: var(--space-side-xl);
  }
}

/* -------------------------------------------------------------------------
  reset nmc
  ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

video,
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

button,
[type="button"] {
  -webkit-appearance: none;
  /* iOS/Safari 特有のデフォルトの角丸やシャドウ、ボタンのスタイルを削除 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 大文字化などが勝手に行われるのを防ぎ親要素の設定を継承 */
  cursor: pointer;
}

address {
  font-style: normal;
  /* 斜体を解除 */
}


/* -------------------------------------------------------------------------
  base
  ------------------------------------------------------------------------- */
html {
  font-size: 2.6667vw;
}

@media screen and (min-width: 744px) {
  html {
    font-size: 1.302vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    /* 1024px基準 */
    font-size: 0.9766vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    /* font-size: 0.7813vw; */
    font-size: 10px;
  }
}

/* @media screen and (min-width: 1536px) {
  html {
    font-size: 12px
  }
} */


body {
  font-size: 1.4rem;
  /* 14px */
  line-height: var(--line-height-body);
  color: var(--color-black);
  font-family:
    "FOT-筑紫Aオールド明朝 Pr6 R",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "HiraMinProN-W3",
    serif;
  font-weight: 400;

  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  --section-padding: 10rem;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);

  overflow: hidden;
  position: relative;
  z-index: var(--layer-content);
}

@media screen and (min-width: 1280px) {
  section {
    --section-padding: 15rem;
  }
}

/* -------------------------------------------------------------------------
  font
  ------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 400;
  line-height: var(--line-height-head);
  letter-spacing: var(--letter-spacing-md);
  margin: 0;
}

h1,
.h1 {
  font-size: 3.6rem;
}

h2,
.h2 {
  font-size: 2.1rem;
}

h3,
.h3 {
  font-size: 1.8rem;
}

h4,
.h4 {
  font-size: 1.6rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}


/* -------------------------------------------------------------------------
  layout
  ------------------------------------------------------------------------- */
.l-section {
  --l-section-gap: 5rem;
  display: flex;
  flex-direction: column;
  gap: var(--l-section-gap);
}

.l-stack {
  --l-stack-gap: 3rem;
  display: flex;
  flex-direction: column;
  gap: var(--l-stack-gap);
  width: 100%;
}

.l-stack>* {
  margin-top: 0;
  margin-bottom: 0;
}

.l-stack--lg {
  --l-stack-gap: 5rem;
}

.l-container {
  width: 100%;
  /* max-width: var(--layout-max-width); */
  max-width: calc(var(--container-inner-width) + (var(--container-side-gap) * 2));
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--container-side-gap);
}


/* タブレットのみコンテンツエリア広め */
@media screen and (min-width:744px) {
  .l-container--tab-large {
    padding-inline: var(--space-side-md);
  }
}

@media screen and (min-width:1024px) {
  .l-container--tab-large {
    padding-inline: var(--container-side-gap);
  }
}

/* 画面幅いっぱい */
.l-container--full {
  padding-inline: 0;
  max-width: none;
}

/* 画面幅いっぱい（モバイルのみ） */
.l-container--sp-full {
  padding-inline: 0;
}

@media screen and (min-width:744px) {
  .l-container--sp-full {
    padding-inline: var(--container-side-gap);
  }
}


/* -------------------------------------------------------------------------
  画面追従CTA
  ------------------------------------------------------------------------- */
.l-floating-cta {
  position: fixed;
  z-index: var(--layer-cta);
  bottom: 2rem;
  right: 2rem;
}

@media screen and (min-width:744px) {
  .l-floating-cta {
    z-index: var(--layer-header);
    bottom: auto;
    top: 0;
    right: var(--header-height);
    margin-right: 2.5rem;

    height: var(--header-height);
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width:1280px) {
  .l-floating-cta {
    z-index: var(--layer-cta);
    display: block;
    height: auto;
    margin-right: 0;

    top: auto;
    bottom: 0;
    right: 2rem;
    bottom: 2rem;
  }

}

.l-floating-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width:744px) {
  .l-floating-cta__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

@media screen and (min-width:1280px) {
  .l-floating-cta__inner {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

}

.l-floating-cta__item {
  display: flex;
  justify-content: flex-end;
}



/* -------------------------------------------------------------------------
  components
  ------------------------------------------------------------------------- */
/* c-button */
.c-button {
  display: block;
  width: fit-content;
  max-width: 100%;
  height: var(--button-height-base);
  padding: 0.4rem 0;
}

.c-button__body {
  color: var(--color-on-dark);
  line-height: var(--line-height-reset);
  letter-spacing: var(--letter-spacing-md);

  height: 100%;

  display: flex;
  align-items: center;
  padding: 0 2rem;
  background-color: var(--color-brand-primary);
  border: solid 0.1rem var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.c-button__text {
  display: block;
  position: relative;
}

.c-button__text::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-green-300);
  position: absolute;
  top: 0;
  left: -1rem;
}

.c-button--maroon .c-button__body {
  background-color: var(--color-maroon);
}

.c-button--maroon .c-button__text::before {
  background-color: var(--color-maroon-100);
}

.c-button-back>a {
  text-decoration: underline;

}

/* -------------------------------------------------------------------------
    c-fade-overlay
  ------------------------------------------------------------------------- */
.c-fade-overlay {
  position: relative;
  /* サイズ */
  --fade-height-top: 38%;
  --fade-height-bottom: 38%;

  /* 色 */
  --fade-color-top: #ffffff;
  --fade-color-bottom: #ffffff;

  /* 開始地点 */
  --fade-start-top: 0%;
  --fade-start-bottom: 0%;

  overflow: hidden;
}

.c-fade-overlay::before,
.c-fade-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.c-fade-overlay::before {
  top: -2px;
  background: linear-gradient(to bottom, var(--fade-color-top) var(--fade-start-top), transparent);
  height: var(--fade-height-top);
}

.c-fade-overlay::after {
  bottom: -2px;
  background: linear-gradient(to top, var(--fade-color-bottom) var(--fade-start-bottom), transparent);
  height: var(--fade-height-bottom);
}



/* -------------------------------------------------------------------------
  c-head
  ------------------------------------------------------------------------- */
/* 英字サブ+メイン+コピー */
.c-head-sub-line {
  text-align: center;
}

.c-head-sub-line__title {
  margin-bottom: 2rem;
}

.c-head-sub-line__sub-ttl {
  font-size: 1.4rem;
  line-height: var(--line-height-reset);

  display: block;
  width: fit-content;
  padding-bottom: 0.5em;
  border-bottom: solid 0.1rem currentColor;
  margin: 0 auto;
}

.c-head-sub-line__sub-ttl+.c-head-sub-line__main-ttl {
  margin-top: 3rem;
}

.c-head-sub-line__main-ttl--link {
  cursor: pointer;
}

@media screen and (min-width:1024px) {
  .c-head-sub-line__main-ttl--link {
    transition: opacity 0.3s var(--ease-out);
  }

  .c-head-sub-line__main-ttl--link:hover {
    opacity: 0.7;
  }
}

/* 左に緑のタテ線 */
.c-head-left-line {
  padding-left: 0.85em;
  position: relative;
}

.c-head-left-line::before {
  content: "";
  display: block;
  width: 0.25em;
  height: 1em;
  background-color: var(--color-brand-primary);
  position: absolute;
  top: 0.4em;
  left: 0;
}

/* -------------------------------------------------------------------------
  c-card
  ------------------------------------------------------------------------- */
/* 区画まとめ情報カード */
.c-card-all-lot-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-card-all-lot-info__dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width:744px) {
  .c-card-all-lot-info__dl {
    max-width: 38.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-card-all-lot-info__dl>div {
  display: flex;
  /* align-items: flex-start; */
  align-items: baseline;

  gap: 1rem;
}

.c-card-all-lot-info__dt {
  flex: 0 0 3.6em;
  min-width: 0;

  line-height: var(--line-height-reset);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2em;

  border: solid 0.1rem var(--color-black);
}

.c-card-all-lot-info__dd {
  font-size: 1.15em;
  line-height: var(--line-height-tight);
}

.c-card-all-lot-info__dd>span {
  display: block;
  line-height: var(--line-height-snug);
}

.c-card-all-lot-info__dd>span+span {
  margin-top: 0.2em;
}

/* -------------------------------------------------------------------------
  c-frame
  ------------------------------------------------------------------------- */
.c-frame {
  position: relative;

}

.c-frame>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-frame--16-9 {
  aspect-ratio: 16/ 9;
}

.c-frame--10-7 {
  aspect-ratio: 10/ 7;
}

.c-frame--1-1 {
  aspect-ratio: 1 / 1;
}

.c-figcaption {
  position: absolute;
  bottom: 0;
  left: 0;

  font-size: 14px;
  line-height: var(--line-height-reset);
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.5);

}

/* -------------------------------------------------------------------------
  c-data-list
  ------------------------------------------------------------------------- */

.c-dl-outline {
  display: block;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
  text-align: justify;
}

.c-dl-outline__item {
  display: inline;
}

.c-dl-outline__label,
.c-dl-outline__data {
  display: inline;
  margin: 0;
  padding: 0;
}

.c-dl-outline__label::before {
  content: " ●";
}

.c-dl-outline__label::after {
  content: "/";
}

.c-license {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
}

/* -------------------------------------------------------------------------
  header
  ------------------------------------------------------------------------- */
.l-header {
  height: var(--header-height);
  z-index: var(--layer-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color-header);
  /* overflow: hidden; */
  /* box-shadow: var(--shadow-tight); */
}

.l-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  box-shadow: var(--shadow-tight);
  z-index: 10;
  /* nav(z-index未指定)より高く設定 */
  pointer-events: none;
  /* クリックイベントを透過させる */
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

@media screen and (min-width:1024px) {
  .l-header__inner {
    padding-left: 1rem;
  }
}

@media screen and (min-width:1280px) {
  .l-header__inner {
    max-width: var(--layout-max-width-header);
    margin-inline: auto;

    padding-left: 0;
    padding-right: 0.5rem;
  }
}

.l-header__logo {}

.l-header__logo>a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

.l-header__logo img {
  display: block;
  width: 21.7rem;
}

/* -------------------------------------------------------------------------
  header nav
  ------------------------------------------------------------------------- */
.l-header__nav {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100vh - var(--header-height));
  padding-top: 5rem;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s var(--ease-in),
    visibility 0s linear 0.15s;
}

@media screen and (min-width: 1280px) {
  .l-header__nav {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;

    /* PC表示リセット */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* SPメニュー展開時のアクティブ状態 */
.l-header__nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.2s var(--ease-out),
    visibility 0s linear 0s;
}

/* ナビゲーション内部レイアウト */
/* navコンテンツラッパー */
.l-header-nav {
  height: 100%;
  overflow-y: auto;
}

.l-header-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 1280px) {
  .l-header-nav__inner {
    display: block;
  }
}

/* コンテンツエリア（スクロール領域） */
.l-header-nav__content {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 1280px) {
  .l-header-nav__content {
    display: block;
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width: 1280px) {
  .menu-wrapper {
    display: flex;
    height: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .menu-wrapper>li {
    height: 100%;
    transition: background-color 0.3s var(--ease-out);
  }

  .menu-wrapper>li:hover {
    background-color: var(--color-gray-100);
  }
}

.menu-wrapper>li>a {
  display: block;
  padding: 1.5rem 3rem;
}

@media screen and (min-width: 1280px) {
  .menu-wrapper>li>a {
    height: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------
  header hamburger 
  ------------------------------------------------------------------------- */
.l-header__hamburger {
  --hamburger-gap: 0.8rem;
  --hamburger-line-height: 0.1rem;
  --hamburger-offset: calc(var(--hamburger-gap) / 2 + var(--hamburger-line-height) / 2);
  --hamburger-offset-neg: calc(var(--hamburger-offset) * -1);

  width: var(--header-height);
  height: 100%;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--hamburger-gap);
}

@media screen and (min-width:1280px) {
  .l-header__hamburger {
    display: none;
  }
}

/* ハンバーガーライン */
.l-header__hamburger-line {
  display: block;
  position: relative;

  width: 2rem;
  height: var(--hamburger-line-height);

  background-color: var(--color-hamburger-line);

  transform: translate(0, 0) rotate(0deg);
  transform-origin: center;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

/* Active（×に変形） */
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: translate(0, var(--hamburger-offset)) rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  transform: translate(0, var(--hamburger-offset-neg)) rotate(-45deg);
}

/* -------------------------------------------------------------------------
  main
  ------------------------------------------------------------------------- */
.l-main {
  margin-top: var(--header-height);
}

@media screen and (min-width:744px) {
  .home .l-main {
    margin-top: 0;
  }
}

/* -------------------------------------------------------------------------
  footer
  ------------------------------------------------------------------------- */
.l-footer {
  position: relative;
  z-index: var(--layer-content);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-footer__logo {
  width: 21.7rem;
}

.l-footer__copyright {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

/* -------------------------------------------------------------------------
  utilities
  ------------------------------------------------------------------------- */
.color-on-dark {
  color: var(--color-on-dark);
}

.color-brand-primary {
  color: var(--color-brand-primary);
}

.bg-brand-primary {
  background-color: var(--color-brand-primary);
}

.bg-green-heavy-light {
  background-color: var(--color-green-100);
}

.bg-green-middle-light {
  background-color: var(--color-green-200);
}

.bg-maroon {
  background-color: var(--color-maroon);
}

.u-text-small {
  font-size: 1.2rem;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

@media screen and (min-width:744px) {
  .u-text-center-pc {
    text-align: center;
  }
}

.u-text-palt {
  font-feature-settings: "palt";
}

.ib {
  display: inline-block;
}

.pc {
  display: none;
}

@media screen and (min-width:744px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

/* -------------------------------------------------------------------------
 p-sec-contact
  ------------------------------------------------------------------------- */
.p-sec-contact {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width:744px) {
  .p-sec-contact {
    padding-top: var(--section-padding);
  }
}

.p-sec-contact .l-container {
  --container-inner-width: 66rem;
}

.p-sec-contact__body {
  padding: 1rem;
  /* max-width: 66rem;
  margin-left: auto;
  margin-right: auto; */
}

.p-sec-contact__inner {
  padding: 5rem 2.8rem;
  border: solid 0.1rem var(--color-on-dark);
}

@media screen and (min-width:744px) {
  .p-sec-contact__inner {
    padding: 5rem 4.8rem;
  }
}

.p-sec-contact__inner>div {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.p-sec-contact__title::before {
  --icon-size: 3rem;
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-inline: auto;
  margin-bottom: 1.5rem;
  background-image: url(../images/contact_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-sec-contact__title>span {
  display: block;
}

.p-sec-contact__desc {
  line-height: var(--line-height-head);
}

/* お問い合わせセクション全体（背景・オーバーレイ） */
.p-sec-contact-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: var(--layer-modal);
  /* 最前面に配置 */
  background-color: rgba(0, 0, 0, 0.7);
  /* 背景を暗くする */

  /* 初期状態：隠しておく */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;

  /* 中身のスクロールを許可 */
  overflow-y: auto;

  padding: 7.5rem 1.5rem;
}

@media screen and (min-width:744px) {
  .p-sec-contact-2 {

    padding: 7.5rem 0;
  }

}

.p-sec-contact-2 .l-container {
  --container-inner-width: 66rem;
}

/* 内側のコンテンツコンテナ（ここが右からスライドする） */
.p-sec-contact-2>.l-container {
  width: 100%;

  /* 幅を調整（基準幅の変数を使用） */
  min-height: 100vh;

  /* スライドの初期状態：右側に100%押し出す */
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}



/* アクティブ時の挙動 */
.p-sec-contact-2.is-active {
  opacity: 1;
  visibility: visible;
}

.p-sec-contact-2.is-active .l-container {
  transform: translateX(0);
  /* スライドイン */
}

/* 閉じるボタン（右上に固定） */
.js-trigger-close-contact-2 {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;

  visibility: hidden;
}

.p-sec-contact-2.is-active .js-trigger-close-contact-2 {
  visibility: visible;
}

/* -------------------------------------------------------------------------
 recaptcha
  ------------------------------------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-message {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0.5em 1em;
  color: #aaa;
  font-family:
    "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Meiryo", sans-serif;
  font-weight: normal;
}

.recaptcha-message a {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
 splide
  ------------------------------------------------------------------------- */
.splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.splide__pagination__page {
  display: block;
  width: 1rem;
  height: 0.2rem;
  background-color: var(--color-gray-200);
  transition: background-color 0.3s ease;
}

.splide__pagination__page.is-active {
  background-color: var(--color-brand-primary);
}

.p-sec-thanks {
  background-color: var(--color-green-100);
}

@media screen and (min-width:744px) {
  .p-sec-thanks__body {
    width: fit-content;
    margin-inline: auto;
  }
}