@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: "Noto Sans JP", sans-serif; /* FontFamily（日本語） */
  --font-family-serif: "Noto Serif JP", serif; /* FontFamily（日本語） */
  --line-height-base: 1.6; /* 基本のline-height */
  --color-bg: #F5F3F2; /* 背景色 */
  --color-accent: #cfb55d; /* アクセントカラー */
  --color-pink: #D14F4F; /* ピンク */
  --color-blue: #668FAE; /* ブルー */
  --color-aqua: #5DABCF; /* 水色 */
  --color-red: #FC5400; /* 赤 */
  --color-font-base: #000; /* 文字色 */
  --color-font-btn: #fff; /* ボタン文字色 */
  --height-header: 60; /* SP表示時のヘッダーの高さ */
  --padding-inline: 20px; /* SP表示時の左右余白 */
  --width-max-img: 600px; /* SP表示時の最大画像幅 */
  --l-inner-xs: 880; /* PC表示時のインナー幅 - 極小 */
  --l-inner-s: 1100; /* PC表示時のインナー幅 - 小 */
  --l-inner: 1440; /* PC表示時のインナー幅 - 基本 */
  --space-xs: 20; /* 項目間のスペース - 極小 */
  --space-sm: 40; /* 項目間のスペース - 小 */
  --space-md: 80; /* 項目間のスペース - 中 */
  --space-lg: 100; /* 項目間のスペース - 大 */
  --space-xl: 140; /* 項目間のスペース - 極大 */
  /* --- 初期値設定 ここまで ------------------------ */

  /* z-index */
  --l-layer__modal: 100;
  --l-layer__drawer: 40;
  --l-layer__header: 20;
  --l-layer__floating: 10;
  --l-layer__default: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  :root {
    --height-header: 60; /* PC表示時のヘッダーの高さ */
    --padding-inline: 25px; /* PC表示時の左右余白 */
    --width-max-img: 100%; /* PC表示時の最大画像幅 */
  }
}

/*=================================================
 *  Base ベーススタイル
 *================================================*/
html {
  font-size: 1em;
  min-height: -webkit-fill-available;
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  letter-spacing: 0.1em;
}

[lang="en"] {
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* フォーカス時のアウトライン */
:focus-visible {
  outline: 1px solid var(--color-accent);
}

/* アンカー位置をヘッダーの高さ分ずらす */
:target {
  scroll-margin-top: calc(var(--height-header) * 1px);
}

/* PC */
@media screen and (min-width: 768px) {
  html {
    font-size: min(calc(8 / var(--l-inner) * 100vw + 0.5em), 1em);
  }
  /* 電話番号リンクをクリック不可 */
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*=================================================
 *  Utility ユーティリティ
 *================================================*/

/* float関連 */
.u-cf::before,
.u-cf::after {
  clear: both;
  content: "";
  display: block;
}
.u-fl {
  float: left;
}
.u-fr {
  float: right;
}

/* 左寄せ、中央、右寄せ */
.u-left {
  text-align: left;
}
.u-center {
  text-align: center;
}
.u-right {
  text-align: right;
}

/* 太字 */
.u-bold {
  font-weight: 700;
}

/* Word Break（親要素にクラス指定） */
.u-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* スクリーンリーダー向け */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 表示／非表示 切り替え */
.u-small-sp-only,
.u-pc-only {
  display: none;
}
/* fontサイズ・色調整 */
.u-gold {
  color: #cfb55d;
  font-weight: inherit;
}
.u-small,
.u-larger,
.u-large {
  font-weight: inherit;
}
/* fit-img */
.u-fit-img img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}
/* 小さいSP */
@media screen and (max-width: 480px) {
  .u-small-sp-only {
    display: block;
  }
}

/*=================================================
 *  Layout レイアウト
 *================================================*/
/* インナー - 標準 */
.l-inner-xs,
.l-inner-s,
.l-inner {
  width: 100%;
  max-width: calc(var(--l-inner) * 1px + var(--padding-inline) * 2);
  padding-inline: var(--padding-inline);
  margin-inline: auto;
}
.l-inner-s {
  max-width: calc(var(--l-inner-s) * 1px + var(--padding-inline) * 2);
}
.l-inner-xs {
  max-width: calc(var(--l-inner-xs) * 1px + var(--padding-inline) * 2);
}

/* セクション - 下層ページ */
.l-sub-section {
  margin-top: calc(var(--space-md) / 16 * 1rem);
}

/* ボタンエリア */
.l-btn-area {
  display: flex;
  justify-content: center;
  text-align: center;
}
/*下層MVロゴ*/
.l-sub-main {
  position: relative;
}
/* PC */
@media screen and (min-width: 768px) {
}

/*=================================================
 *  Component 共通部品
 *================================================*/

/*------------------------------------------
 *  セクションタイトル
 *------------------------------------------*/
.c-ttl-main {
  font-size: clamp(22px, calc(40 / 1440 * 100vw), 40px);
  font-weight: 700;
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
/* ベーシックなボタン */
.c-btn {
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: clamp(10px, calc(20 / 1440 * 100vw), 20px);
  background-color: var(--color-red);
  font-weight: 700;
  color: #fff;
  text-align: center;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  font-size: clamp(22px, calc(32 / 1440 * 100vw), 32px);
  padding: 1em 0.5em;
  position: relative;
}

.c-btn:hover,
.c-btn:focus-visible {
  filter: brightness(1.1);
}
.c-btn::after {
  content: '';
  display: inline-block;
  width: clamp(12px, calc(14 / 1440 * 100vw), 14px);
  height: clamp(12px, calc(14 / 1440 * 100vw), 14px);
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  transform: translateY(-50%) rotate(45deg);
}
/* PC */
@media screen and (min-width: 768px) {
}

/*submitボタン*/
.c-btn-submit {
  color: #fff;
  font-weight: 700;
  max-width: 360px;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  padding-block: 1.5em;
}

/*resetボタン*/
.c-btn-reset {
  background-color: #999;
  color: #fff;
  font-weight: 700;
  max-width: 120px;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  padding-right: 30px;
}
/* 大きいPC */
@media screen and (min-width: 1100px) {
  .c-btn-reset {
    max-width: 200px;
  }
}
.c-btn-reset:hover {
  filter: brightness(0.7);
  background-color: #999;
}
/*returnボタン*/
.c-btn-return {
  max-width: 360px;
}

/*------------------------------------------
 *  ページトップボタン
 *------------------------------------------*/
.c-page-top a {
  display: block;
  width: clamp(40px, calc(70 / 1440 * 100vw), 70px);
  aspect-ratio: 1;
  border-radius: 50vh;
  border: solid 1px var(--color-font-base);
  position: fixed;
  bottom: 30px;
  right: 20px;
}
.c-page-top a::before {
  content: "";
  display: inline-block;
  width: clamp(8px, calc(14 / 1440 * 100vw), 14px);
  height: clamp(8px, calc(14 / 1440 * 100vw), 14px);
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: solid 1px var(--color-font-base);
  border-right: solid 1px var(--color-font-base);
  transform: translate(-50%, -30%) rotate(-45deg);
}
.c-page-top a:hover {
  background-color: var(--color-font-base);
}
.c-page-top a:hover::before {
  border-color: #fff;
}

/*------------------------------------------
 *  下層ページMVロゴ
 *------------------------------------------*/
.c-sub-mv-logo {
  position: absolute;
  top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  left: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  width: clamp(100px, calc(180 / 1440 * 100vw), 180px);
}

/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
.c-form__row {
  display: flex;
  align-items: center;
  line-height: calc(40 / 16 * 1rem);
  padding: 0 clamp(30px, calc(110 / 1440 * 100vw), 110px);
}
.c-form__row:first-of-type {
  margin-top: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
.c-form__row + .c-form__row {
  margin-top: calc(40 / 16 * 1rem);
}
.c-form__textarea {
  align-items: flex-start;
}
.c-form__head {
  position: relative;
  width: calc(300 / 16 * 1rem);
  flex: 0 0 auto;
  margin-right: calc(30 / 16 * 1rem);
}
/* タイトルラベル */
.c-form__ttl {
  font-weight: 700;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center
}
.c-form__ttl .u-small {
  display: block;
  font-size: clamp(15px, calc(16 / 1440 * 100vw), 16px);
  line-height: 1.4;
  margin-top: 0.5em;
}
/* 必須ラベル */
.c-form__required {
  width: calc(44 / 16 * 1rem);
  height: calc(25 / 16 * 1rem);
  font-weight: 700;
  font-size: calc(14 / 16 * 1rem);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--color-red);
  text-align: center;
  border-radius: 5px;
  margin-left: 0.8em;
}
/* 入力項目 */
.c-form__data {
  width: 100%;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
}
.c-form__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-form__input {
  width: 100%;
  padding: calc(6 / 16 * 1rem) calc(20 / 16 * 1rem);
  border-radius: 5px;
  background: #fff;
  border: 1px solid #2f2c2c;
  height: calc(40 / 16 * 1rem);
}
.c-form__input--textarea {
  line-height: 1.4;
  height: calc(240 / 16 * 1rem);
}
.c-form__input + .c-form__input {
  margin-top: calc(20 / 16 * 1rem);
}
.c-form__input::-webkit-input-placeholder {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.01em;
  color: #bbb;
}
.c-form__input::-moz-placeholder {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.01em;
  color: #bbb;
}
.c-form__input:-ms-input-placeholder {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.01em;
  color: #bbb;
}
.c-form__input::-ms-input-placeholder {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.01em;
  color: #bbb;
}
.c-form__input::placeholder {
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.01em;
  color: #bbb;
}
.c-form__input#tel {
  width: 50%;
}
.c-form__input#postal {
  width: 50%;
}
/* ラジオボタン */
input[type="radio"],
input[type="checkbox"] {
  display: none;
}
.c-form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-form__radio-item {
  padding-right: 2em;
}
.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  line-height: 2;
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  letter-spacing: 0.1em;
  color: #2F2C2C;
}
.c-form__radio-item label::before,
.c-form__radio-item label::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
}
.c-form__radio-item label::before {
  width: 20px;
  height: 20px;
  left: 0;
  background-color: #fff;
  border: 1px solid #2f2c2c;
}
.c-form__radio-item label::after {
  width: 8px;
  height: 8px;
  left: 6px;
  background-color: #2F2C2C;
  opacity: 0;
}
.c-form__radio-item input[type="radio"]:checked + label::after {
  opacity: 1;
}
/* セレクトボックス */
.c-form__select-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2f2c2c;
  border-left: 2px solid #2f2c2c;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
.c-form__select-box {
  padding: 0 40px 0 20px;
  min-height: 2.6em;
  margin: 0 auto 0 0;
  color: #757575;
  background-color: #fff;
  border: solid 1px #dedede;
  border-radius: 3px;
}
.c-form__select-box option {
  color: #000;
}
/* チェックボックス */
.c-form__checkbox-label {
  position: relative;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  margin: calc(40 / 16 * 1rem) auto;
  padding-left: calc(20px + 2em);
  padding-right: 20px;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  word-break: auto-phrase;
  font-weight: 700;
}
.c-form__checkbox-label a {
  text-decoration: underline;
}
.c-form__checkbox-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 20px;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #2f2c2c;
  border-radius: 5px;
}
.c-form__checkbox-label:after {
  position: absolute;
  content: "";
  display: block;
  top: 0.9em;
  left: 1.5em;
  width: 7px;
  height: 11px;
  border-right: 2px solid #2f2c2c;
  border-bottom: 2px solid #2f2c2c;
  -webkit-transform: translateY(-70%) rotate(45deg);
  transform: translateY(-70%) rotate(45deg);
  opacity: 0;
}
.c-form__checkbox:checked {
  color: #1a049b;
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  opacity: 1;
}
.c-form-inputlabel {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-form__data:has(.c-form-inputlabel) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.c-form-inputlabel input {
  opacity: 1;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-form__input::-webkit-input-placeholder {
    font-size: calc(16 / 16 * 1rem);
    letter-spacing: 0.04em;
  }
  .c-form__confirm-data {
    margin-top: 0.5em;
  }
  .c-form__input#postal {
    width: 25%;
  }
}
/*　SP */
@media screen and (max-width: 767px) {
  .c-form__row {
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    padding-inline: 20px;
  }
  .c-form__head {
    padding-left: 0;
    margin-right: 0;
    width: 100%;
    margin-bottom: 0.5em;
  }
  .c-form__required {
    left: inherit;
    right: 0;
  }
  .c-form__input#tel {
    width: 100%;
  }
  .c-form__ttl .u-small {
    margin-top: 0;
    margin-bottom: 0.5em;
  }
}

/*=================================================
 *  Project ページ固有
 *================================================*/
#wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  padding: clamp(30px, calc(60 / 1440 * 100vw), 60px) 0;
}
.p-footer__inner {
  max-width: 750px;
}
.p-footer__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__logo-wrap {
  width: clamp(114px, calc(228 / 1440 * 100vw), 228px);
}
.p-footer__txt-wrap {
  margin-top: 20px;
}
.p-footer__txt {
  font-size: clamp(11px, calc(12 / 1440 * 100vw), 12px);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-footer__txt + .p-footer__txt {
  margin-top: 2em;
}
.p-footer__copyright {
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-footer__txt-wrap {
    width: 55%;
    margin-top: 0;
  }
  .p-footer__txt {
    text-align: left;
  }
}

/*------------------------------------------
 *  TOPページ
 *------------------------------------------*/

/*----------------- MV -----------------*/
.p-top-mv {
  background-image: url("../img/mv-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 500px;
}
.p-top-mv__logo-wrap {
  position: absolute;
  left: clamp(20px, calc(86 / 1440 * 100vw), 86px);
  top: clamp(25px, calc(55 / 1440 * 100vw), 55px);
  width: clamp(81px, calc(162 / 1440 * 100vw), 162px);
}
.p-top-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.p-top-mv__txt {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(44 / 1440 * 100vw), 44px);
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}
.p-top-mv__txt .u-bg-txt {
  font-size: clamp(28px, calc(74 / 1440 * 100vw), 74px);
  font-weight: 700;
  background-color: var(--color-blue);
  padding: 0.3em;
  margin-inline: 0.3em;
  display: inline-block;
}
/* 小さいSP */
@media screen and (max-width: 480px) {
  .p-top-mv__txt .u-bg-txt {
    margin-top: 0.3em;
  }
}
.p-top-mv__txt + .p-top-mv__txt {
  margin-top: 1.5em;
}
.p-top-mv__txt-wrap {
  background-color: rgba(207, 181, 93, 0.85);
  padding: clamp(20px, calc(34 / 1440 * 100vw), 34px);
  margin-top: 10%;
  position: relative;
}
.p-top-mv__txt-wrap::after {
  content: "";
  display: inline-block;
  width: clamp(37px, calc(73 / 1440 * 100vw), 73px);
  aspect-ratio: 73 / 36;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: rgba(207, 181, 93, 0.85);
  position: absolute;
  top: calc(100% + clamp(10px, calc(16 / 1440 * 100vw), 16px));
  left: 50%;
  transform: translateX(-50%);
}

.p-top-mv__txt-wrap .p-top-mv__txt {
  font-size: clamp(18px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv {
    max-height: 800px;
  }
  
}

/*----------------- catch -----------------*/
.p-top-catch__question {
  background-color: var(--color-blue);
  text-align: center;
  font-weight: 700;
  font-size: clamp(30px, calc(70 / 1440 * 100vw), 70px);
  line-height: 1.6;
  letter-spacing: 0;
  color: #fff;
  padding: 0.5em 0;
}
.p-top-catch {
  background-image: url("../img/catch-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: clamp(42px, calc(84 / 1440 * 100vw), 84px);
  padding-bottom: clamp(50px, calc(100 / 1440 * 100vw), 100px);
}
.p-top-catch__txt-01 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(50 / 1440 * 100vw), 50px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}
.p-top-catch__txt-01 .u-bg-txt {
  background-color: #000;
  font-size: 1.2em;
  display: inline-block;
  padding: 0.3em;
  margin-inline: 0.3em;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0.3em;
}
.p-top-catch__txt-02 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, calc(54 / 1440 * 100vw), 54px);
  word-break: auto-phrase;
}
.p-top-catch__txt-03 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(28 / 1440 * 100vw), 28px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.2em;
}
.p-top-catch__txt-04 {
  width: fit-content;
  margin: clamp(30px, calc(50 / 1440 * 100vw), 50px) auto clamp(60px, calc(100 / 1440 * 100vw), 100px);
  background-color: #fff;
  color: var(--color-blue);
  font-weight: 700;
  font-size: clamp(18px, calc(25 / 1440 * 100vw), 25px);
  line-height: 1.8;
  letter-spacing: 0;
  padding: 0.6em 1em 0;
  position: relative;
}
.p-top-catch__txt-04::after {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 438 / 60;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-catch__txt-05 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
}
.p-top-catch__txt-06 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(22px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: 2em;
  word-break: auto-phrase;
}
.p-top-catch__txt-06 .u-large {
  font-size: clamp(26px, calc(42 / 1440 * 100vw), 42px);
  font-weight: 700;
}
.p-top-catch__txt-07 {
  color: #FFF;
  width: fit-content;
  font-weight: 700;
  font-size: clamp(24px, calc(38 / 1440 * 100vw), 38px);
  line-height: 1.8;
  letter-spacing: 0px;
  text-align: center;
  padding: 0.6em 1em;
  background-color: #000;
  margin: 2em auto 0;
}
.p-top-catch__txt-08 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(20px, calc(28 / 1440 * 100vw), 28px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: 2em;
  word-break: auto-phrase;
}

/*----------------- lead -----------------*/
.p-top-lead-section {
  background-image: url("../img/lead-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: clamp(30px, calc(34 / 1440 * 100vw), 34px);
  padding-bottom: clamp(60px, calc(80 / 1440 * 100vw), 80px);
}
.p-top-lead__txt-01 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(30px, calc(68 / 1440 * 100vw), 68px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead__txt-02 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
  margin-top: 0.5em;
}
.p-top-lead__btn-area {
  margin-top: clamp(40px, calc(50 / 1440 * 100vw), 50px);
}
/*----------------- lead2 -----------------*/
.p-top-lead2-section {
  padding-block: clamp(60px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-lead2__txt-01 {
  font-weight: 700;
  font-size: clamp(18px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead2__list {
  display: flex;
  padding: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  background-color: var(--color-accent);
  width: fit-content;
  margin: clamp(30px, calc(50 / 1440 * 100vw), 50px) auto 0;
  position: relative;
}
.p-top-lead2__list::after {
  content: "";
  display: inline-block;
  width: clamp(32px, calc(65 / 1440 * 100vw), 65px);
  aspect-ratio: 65 / 32;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: rgba(207, 181, 93, 0.85);
  position: absolute;
  top: calc(100% + clamp(16px, calc(20 / 1440 * 100vw), 20px));
  left: 50%;
  transform: translateX(-50%);
}
.p-top-lead2__item {
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.p-top-lead2__item:not(:last-of-type) {
  margin-right: clamp(60px, calc(112 / 1440 * 100vw), 112px);
}
.p-top-lead2__item:not(:last-of-type)::after {
  content: '';
  display: inline-block;
  background-image: url("../img/multiplication-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(12px, calc(22 / 1440 * 100vw), 22px);
  height: clamp(12px, calc(22 / 1440 * 100vw), 22px);
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(clamp(24px, calc(44 / 1440 * 100vw), 44px),-50%);
}
.p-top-lead2__item .u-large {
  font-weight: 700;
  font-size: 2em;
  margin-top: clamp(8px, calc(13 / 1440 * 100vw), 13px);
}
.p-top-lead2__txt-02 {
  font-weight: 700;
  font-size: clamp(18px, calc(28 / 1440 * 100vw), 28px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(60px, calc(92 / 1440 * 100vw), 92px);
}
.p-top-lead2__txt-03 {
  color: var(--color-accent);
  font-weight: 700;
  font-size: clamp(28px, calc(70 / 1440 * 100vw), 70px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(4px, calc(6 / 1440 * 100vw), 6px);
}
.p-top-lead2__btn-area {
  margin-top: clamp(30px, calc(40 / 1440 * 100vw), 40px);;
}
.p-top-lead2__txt-04 {
  font-weight: 500;
  font-size: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(18px, calc(27 / 1440 * 100vw), 27px);
}
/* 小さいSP */
@media screen and (max-width: 520px) {
  .p-top-lead2__list {
    flex-direction: column;
    padding-inline: 40px;
    align-items: center
  }
  .p-top-lead2__item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: clamp(60px, calc(112 / 1440 * 100vw), 112px);
  }
  .p-top-lead2__item:not(:last-of-type)::after {
    top: 100%;
    left: 50%;
    transform: translate(-50%,clamp(24px, calc(44 / 1440 * 100vw), 44px));
  }
}

/*----------------- lead3 -----------------*/
.p-top-lead3-section {
  background-color: var(--color-accent);
  padding-top: clamp(50px, calc(80 / 1440 * 100vw), 80px);
  padding-bottom: clamp(60px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-lead3__txt-01 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead3__txt-02 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(26px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead3__txt-02 .u-large {
  font-size: 1.5em;
  font-weight: 700;
}
.p-top-lead3__img-wrap {
  margin:clamp(30px, calc(43 / 1440 * 100vw), 43px) auto 0;
  display: flex;
  flex-direction: column;
  max-width: 360px;
}
.p-top-lead3__txt-03 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, calc(58 / 1440 * 100vw), 58px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-lead3__img-wrap {
    width: 100%;
    max-width: 880px;
  }

}
/*----------------- lead4 -----------------*/
.p-top-lead4-section {
  padding-top: clamp(50px, calc(70 / 1440 * 100vw), 70px);
  padding-bottom: clamp(60px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-lead4__txt-01 {
  font-weight: 700;
  font-size: clamp(26px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead4__txt-02 {
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, calc(40 / 1440 * 100vw), 40px);
}
.p-top-lead4__item {
  width: 100%;
  background-color: #fff;
  padding: clamp(20px, calc(36 / 1440 * 100vw), 36px) clamp(20px, calc(50 / 1440 * 100vw), 50px) clamp(20px, calc(45 / 1440 * 100vw), 45px);
}
.p-top-lead4__item:first-of-type {
  margin-top: clamp(40px, calc(77 / 1440 * 100vw), 77px);
}
.p-top-lead4__item + .p-top-lead4__item {
  margin-top: clamp(30px, calc(45 / 1440 * 100vw), 45px);
}
.p-top-lead4__item-ttl {
  font-weight: 700;
  font-size: clamp(20px, calc(24 / 1440 * 100vw), 24px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
}
.p-top-lead4__item-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  margin: clamp(30px, calc(50 / 1440 * 100vw), 50px) auto 0;
}
.p-top-lead4__item-left {
  border: solid 2px var(--color-aqua);
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(20px, calc(25 / 1440 * 100vw), 25px);
  position: relative;
}
.p-top-lead4__item-left::after {
  content: '';
  display: inline-block;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(24px, calc(46 / 1440 * 100vw), 46px);
  aspect-ratio: 46/24;
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translate(-50%,50%) rotate(90deg);
}
.p-top-lead4__item-right {
  border: solid 2px var(--color-accent);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(20px, calc(25 / 1440 * 100vw), 25px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 80px;
}
.item-01 .p-top-lead4__item-right {
  background-image: url("../img/realestate-img-02.jpg");
}
.item-02 .p-top-lead4__item-right {
  background-image: url("../img/realestate-img-03.jpg");
}
.p-top-lead4__item-subttl {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  transform: translateY(-50%);
  padding: 0.2em 0.7em;
  color: #fff;
}
.p-top-lead4__item-left .p-top-lead4__item-subttl {
  background-color: var(--color-aqua);
  font-size: clamp(14px, calc(16 / 1440 * 100vw), 16px);
}
.p-top-lead4__item-left .p-top-lead4__item-price {
  font-weight: 700;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead4__item-left .p-top-lead4__item-price .u-large {
  font-weight: 700;
  font-size: 2.4em;
}
.p-top-lead4__item-left .p-top-lead4__item-txt-01 {
  font-weight: 700;
  font-size: clamp(18px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.7em;
}
.p-top-lead4__item-left .p-top-lead4__item-txt-02 {
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1em;
}
.p-top-lead4__item-right .p-top-lead4__item-subttl {
  background-color: var(--color-accent);
  font-size: clamp(22px, calc(36 / 1440 * 100vw), 36px);
}
.p-top-lead4__item-right .p-top-lead4__item-price {
  font-weight: 700;
  font-size: clamp(24px, calc(34 / 1440 * 100vw), 34px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-pink);
}
.p-top-lead4__item-right .p-top-lead4__item-price .u-large {
  font-weight: 900;
  font-size: 2.6em;
  
}
.p-top-lead4__item-right .p-top-lead4__item-txt-01 {
  font-weight: 700;
  font-size: clamp(20px, calc(26 / 1440 * 100vw), 26px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.2em;
  filter: drop-shadow(3px 2px 4px #3E3A394D);
}
.p-top-lead4__item-right .p-top-lead4__item-txt-02 {
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.4;
  letter-spacing: 0;
  filter: drop-shadow(0px 0px 10px #FFFFFF);
  text-align: center;
  margin-top: 1em;
}
.p-top-lead4__txt-03 {
  color: #fff;
  background-color: var(--color-accent);
  font-weight: 700;
  font-size: clamp(20px, calc(26 / 1440 * 100vw), 26px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  padding: 0.7em 1.5em;
  width: fit-content;
  margin: clamp(30px, calc(45 / 1440 * 100vw), 45px) auto 0;
  position: relative;
}
.p-top-lead4__txt-03::after {
  content: "";
  display: inline-block;
  width: clamp(18px, calc(36 / 1440 * 100vw), 36px);
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: var(--color-accent);
  position: absolute;
  top: 0;
  right: 15%;
  transform: translateY(-50%);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-lead4__item-flex {
    flex-flow: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: inherit;
  }
  .p-top-lead4__item-left {
    width: 36.6%;
  }
  .p-top-lead4__item-left::after {
    top: 50%;
    bottom: inherit;
    left: 113%;
    transform: translate(0%,-50%);
  }
  .p-top-lead4__item-right {
    width: 50.8%;
    margin-top: 0;
  }
}
/*----------------- middle -----------------*/
.p-top-middle-section {
  background-image: url("../img/middle-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: clamp(60px, calc(80 / 1440 * 100vw), 80px);
}
.p-top-middle__txt-01 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(23px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-middle__txt-02 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 800px;
  margin: clamp(30px, calc(50 / 1440 * 100vw), 50px) auto 0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-middle__txt-02 {
    width: 70%;
  }
}
/*----------------- reality -----------------*/
.p-top-reality-section {
  padding-block: clamp(80px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-reality__txt-01 {
  font-weight: 700;
  font-size: clamp(23px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-reality__txt-02 {
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
.p-top-reality__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  align-items: center;
  margin: clamp(30px, calc(50 / 1440 * 100vw), 50px) auto 0;
  max-width: 480px;
  position: relative;
}
.p-top-reality__item:last-of-type::before {
  content: "";
  display: inline-block;
  width: clamp(37px, calc(73 / 1440 * 100vw), 73px);
  aspect-ratio: 73 / 36;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--color-accent);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,clamp(40px, calc(62.5 / 1440 * 100vw), 62.5px));
}
.p-top-reality__item:first-of-type {
  margin-top: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
.p-top-reality__icon-wrap {
  padding-top: clamp(30px, calc(40 / 1440 * 100vw), 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-reality__icon-wrap img {
  height: clamp(80px, calc(90 / 1440 * 100vw), 90px);
  width: auto;
}
.p-top-reality__txt-wrap {
  width: 100%;
}
.p-top-reality__txt-03 {
  background-color: #D5D5D5;
  display: flex;
  align-items: center;
  padding-left: clamp(20px, calc(50 / 1440 * 100vw), 50px);
  height: clamp(80px, calc(90 / 1440 * 100vw), 90px);
}
.p-top-reality__txt-03 dd ,
.p-top-reality__txt-03 dt {
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
  letter-spacing: 0;
}
.p-top-reality__txt-04 dt ,
.p-top-reality__txt-03 dt {
  width: clamp(160px, calc(200 / 1440 * 100vw), 200px);
  flex: 0 0 auto;
  text-align: center;
}
.p-top-reality__txt-04 dd ,
.p-top-reality__txt-03 dd {
  flex: 1 1 auto;
  word-break: auto-phrase;
}
.p-top-reality__txt-04 {
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  padding-left: clamp(20px, calc(50 / 1440 * 100vw), 50px);
  height: clamp(80px, calc(90 / 1440 * 100vw), 90px);
}
.p-top-reality__txt-04 dd ,
.p-top-reality__txt-04 dt {
  font-weight: 700;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.6;
  letter-spacing: 0;
}
.p-top-reality__txt-04 dt .u-large {
  font-weight: 700;
  font-size: clamp(20px, calc(26 / 1440 * 100vw), 26px);
}
.p-top-reality__txt-04 dd {
  font-size: clamp(18px, calc(22 / 1440 * 100vw), 22px);
}
.p-top-reality__icon-txt {
  font-weight: 700;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 10px;
}
.p-top-reality__txt-05 {
  font-weight: 700;
  font-size: clamp(30px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(80px, calc(125 / 1440 * 100vw), 125px);
}
.p-top-reality__txt-05 .u-underline {
  font-weight: 700;
  border-bottom: solid 4px var(--color-accent);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-reality__item {
    flex-direction: row;
    align-items: stretch;
    max-width: inherit;
  }
  .p-top-reality__icon-wrap {
    width: 36%;
    justify-content: space-between;
    position: relative;
  }
  .p-top-reality__txt-wrap {
    width: 64%;
  }
  .p-top-reality__icon-wrap::after {
    content: "";
    display: inline-block;
    height: 100%;
    aspect-ratio: 21/180;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 99.9%;
  }
}
/* 小さいSP */
@media screen and (max-width: 480px) {
  .p-top-reality__txt-03,
  .p-top-reality__txt-04 {
    flex-direction: column;
    text-align: center;
    height: inherit;
    padding-block: 20px;
  }
  .p-top-reality__txt-03 dd,
  .p-top-reality__txt-04 dd {
    margin-top: 10px;
  }
}

/*----------------- strength -----------------*/
.p-top-strength-section {
  background-image: url("../img/strength-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
.p-top-strength__ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-strength__item {
  background-color: rgba(255,255,255,0.9);
  padding: clamp(30px, calc(40 / 1440 * 100vw), 40px) clamp(20px, calc(90 / 1440 * 100vw), 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-strength__item:first-of-type {
  margin-top: clamp(40px, calc(50 / 1440 * 100vw), 50px);
}
.p-top-strength__item + .p-top-strength__item {
  margin-top: 30px;
}
.p-top-strength__item:first-of-type .p-top-strength__icon-wrap {
  width: clamp(58.5px, calc(78 / 1440 * 100vw), 78px)
}
.p-top-strength__item:nth-of-type(2) .p-top-strength__icon-wrap {
  width: clamp(48.6px, calc(64.8 / 1440 * 100vw), 64.8px)
}
.p-top-strength__item:last-of-type .p-top-strength__icon-wrap {
  width: clamp(45px, calc(60 / 1440 * 100vw), 60px)
}
.p-top-strength__item-ttl {
  font-weight: 700;
  font-size: clamp(20px, calc(24 / 1440 * 100vw), 24px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1em;
}
.p-top-strength__txt {
  font-weight: 500;
  font-size: clamp(14px, calc(16 / 1440 * 100vw), 16px);
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 1.25em;
}
/*----------------- difference -----------------*/
.p-top-difference-section {
  padding-block: clamp(80px, calc(120 / 1440 * 100vw), 120px)
}
.p-top-difference__ttl {
  font-weight: 700;
  font-size: clamp(24px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-difference__txt {
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  word-break: auto-phrase;
}
.p-top-difference__table-wrap {
  margin-top: clamp(50px, calc(70 / 1440 * 100vw), 70px);
  overflow-x: auto;
}
.p-top-difference__table-inner {
  overflow-x: scroll;
}
.p-top-difference__table-inner img {
  width: 720px;
  max-width: inherit;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-difference__table-inner img {
    width: 100%;
  }
}
/*----------------- lead5 -----------------*/
.p-top-lead5-section {
  background-image: url("../img/lead5-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(50px, calc(62 / 1440 * 100vw), 62px);
  padding-bottom: clamp(50px, calc(80 / 1440 * 100vw), 80px);
}
.p-top-lead5__ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, calc(40 / 1440 * 100vw), 40px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-lead5__ttl .u-large {
  font-size: 1.5em;
  font-weight: 700;
}
.p-top-lead5__txt-01 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: 2em;
}
.p-top-lead5__txt-02 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, calc(50 / 1440 * 100vw), 50px);
}
.p-top-lead5__btn-area {
  margin-top: clamp(20px, calc(40 / 1440 * 100vw), 40px);
}
/*----------------- case -----------------*/
.p-top-case-section {
  padding-block: clamp(80px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-case__ttl {
  font-weight: 700;
  font-size: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.p-top-case__item {
  background-color: #fff;
  padding: clamp(30px, calc(42 / 1440 * 100vw), 42px) clamp(20px, calc(42 / 1440 * 100vw), 42px) clamp(30px, calc(50 / 1440 * 100vw), 50px);
}
.p-top-case__item:first-of-type {
  margin-top: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
.p-top-case__item + .p-top-case__item {
  margin-top: clamp(30px, calc(50 / 1440 * 100vw), 50px);
}
.p-top-case__number {
  color: #B9B9B9;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: block;
  text-align: center;
}
.p-top-case__item-subttl {
  font-weight: 700;
  font-size: clamp(20px, calc(24 / 1440 * 100vw), 24px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
  margin-top: 0.6em;
}
.p-top-case__item-ttl {
  color: var(--color-pink);
  font-weight: 700;
  font-size: clamp(28px, calc(40 / 1440 * 100vw), 40px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
  margin-top: 0.2em;
}
.p-top-case__result-wrap,
.p-top-case__contract-wrap {
  border: solid 2px var(--color-aqua);
  margin-top: clamp(45px, calc(58 / 1440 * 100vw), 58px);
}
.p-top-case__result-wrap {
  border: solid 2px var(--color-accent);
}
.p-top-case__result-ttl ,
.p-top-case__contract-ttl {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transform: translateY(-50%);
  padding: 0.5em 1em;
  color: #fff;
  background-color: var(--color-aqua);
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  width: fit-content;
  margin: 0 auto;
}

.p-top-case__result-ttl {
  background-color: var(--color-accent);
}
.p-top-case__flex {
  padding: clamp(9px, calc(12 / 1440 * 100vw), 12px) clamp(21px, calc(28 / 1440 * 100vw), 28px) clamp(22.5px, calc(30 / 1440 * 100vw), 30px) clamp(39px, calc(52 / 1440 * 100vw), 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-top-case__icon-wrap {
  width: 27.5%;
}
.p-top-case__icon-wrap img {
  width: clamp(90px, calc(113 / 1440 * 100vw), 113px);
  display: block;
  margin: 0 auto;
}
.p-top-case__icon-txt {
  font-weight: 500;
  font-size: clamp(12px, calc(14 / 1440 * 100vw), 14px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
}
.p-top-case__txt-wrap {
  width: 67.6%;
}
.p-top-case__txt {
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0;
}
.p-top-case__result-wrap .p-top-case__txt-wrap {
  width: 100%;
  padding: 0 clamp(20px, calc(47 / 1440 * 100vw), 47px) clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
/* 小さいSP */
@media screen and (max-width: 600px) {
  .p-top-case__flex {
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(20px, calc(47 / 1440 * 100vw), 47px) clamp(20px, calc(30 / 1440 * 100vw), 30px);
  }
  .p-top-case__txt-wrap ,
  .p-top-case__icon-wrap {
    width: 100%;
  }
  .p-top-case__icon-wrap {
    margin-bottom: 20px;
  }
}
/*----------------- area -----------------*/
.p-top-area-section {
  background-color: var(--color-accent);
  padding-block: clamp(70px, calc(100 / 1440 * 100vw), 100px);
}
.p-top-area__ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(24px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-top-area__txt-01 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(14px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
.p-top-area__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block:  clamp(30px, calc(50 / 1440 * 100vw), 30px);
  padding-inline:  clamp(10px, calc(20 / 1440 * 100vw), 20px);
  margin-top: clamp(30px, calc(50 / 1440 * 100vw), 50px);
  position: relative;
}
.p-top-area__flex::after ,
.p-top-area__flex::before {
  content: '';
  display: inline-block;
  width: 100%;
  aspect-ratio: 880/22;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
.p-top-area__flex::before{
  background-image: url("../img/brackets-01.svg");
  top: 0;
}
.p-top-area__flex::after{
  background-image: url("../img/brackets-02.svg");
  bottom: 0;
}
.p-top-area__flex .p-top-area__txt-01 {
  margin-top: 0;
}
.p-top-area__subttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
.p-top-area__txt-02 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(13px, calc(15 / 1440 * 100vw), 15px);
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 0.7em;
  word-break: auto-phrase;
}
.p-top-area__img-wrap {
  max-width: 420px;
  margin-top: 30px;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-area__flex {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .p-top-area__flex .p-top-area__txt-01 {
    text-align: left;
  }
  .p-top-area__txt-wrap {
    width: 37.6%;
  }
  .p-top-area__img-wrap {
    width: 60%;
    max-width: inherit;
  }
}
/*----------------- qa -----------------*/
.p-top-qa-section {
  padding-block: clamp(80px, calc(120 / 1440 * 100vw), 120px);
}
.p-top-qa__ttl {
  font-weight: 700;
  font-size: clamp(24px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
.p-top-qa__item + .p-top-qa__item {
  margin-top: clamp(30px, calc(40 / 1440 * 100vw), 40px);
}
.p-top-qa__item-txt ,
.p-top-qa__item-ttl {
  background-color: #fff;
  padding: clamp(10px, calc(15 / 1440 * 100vw), 15px) clamp(20px, calc(30 / 1440 * 100vw), 30px);
  font-weight: 500;
  font-size: clamp(15px, calc(18 / 1440 * 100vw),18px);
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
}
.p-top-qa__item-ttl {
  padding-right: clamp(40px, calc(50 / 1440 * 100vw),50px);
  cursor: pointer;
}
.p-top-qa__item-ttl::after ,
.p-top-qa__item-ttl::before {
  content: '';
  display: inline-block;
  width: clamp(17px, calc(20 / 1440 * 100vw),20px);
  height: 2px;
  background-color: #000;
  position: absolute;
  right: clamp(15px, calc(20 / 1440 * 100vw),20px);
  top: 50%;
  transform: translateY(-50%);
}
.p-top-qa__item-ttl::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.u-active.p-top-qa__item-ttl::after {
  transform: translateY(-50%) rotate(0);
}
.p-top-qa__item-txt {
  display: none;
}
.p-top-qa__item-txt::before {
  content: '';
  display: inline-block;
  width: calc(100% - clamp(40px, calc(60 / 1440 * 100vw), 60px));
  height: 1px;
  background-color: #DBDBDB;
  position: absolute;
  top: 0;
  left: clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
/*----------------- contact -----------------*/
.p-top-contact-section {
  background-color: var(--color-accent);
  padding-block: clamp(60px, calc(100 / 1440 * 100vw), 100px);
}
.p-top-contact__form-wrap {
  border-radius: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  background-color: #fff;
  overflow: hidden;
}
.p-top-contact__ttl-wrap {
  background-color: var(--color-red);
  padding: clamp(30px, calc(60 / 1440 * 100vw), 60px) clamp(20px, calc(30 / 1440 * 100vw), 30px) clamp(25px, calc(45 / 1440 * 100vw), 45px);
}
.p-top-contact__ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.p-top-contact__txt {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.5em;
}
.p-top-contact__btn-area {
  padding-bottom: clamp(50px, calc(70 / 1440 * 100vw), 70px);
}
@media screen and (min-width: 768px) {

}


/*----------------- contact -----------------*/

/*確認ページ*/
.p-sub-contact-confirm {
  padding-top: clamp(80px, calc(100 / 1440 * 100vw), 100px);
}
.p-sub-contact__ttl {
  font-weight: 700;
  font-size: clamp(24px, calc(32 / 1440 * 100vw), 32px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, calc(50 / 1440 * 100vw), 50px);
}
.p-sub-contact__txt {
  font-weight: 500;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  padding-inline: 20px;
}
.p-sub-confirm__btn-area {
  padding-top: clamp(30px, calc(50 / 1440 * 100vw), 50px);
  padding-bottom: clamp(50px, calc(70 / 1440 * 100vw), 70px);
  padding-inline: 20px;
}
.confirm-page form {
  width: 50%;
  margin-left: clamp(20px, calc(30 / 1440 * 100vw), 30px);
  max-width: 360px;
}
.confirm-page .c-btn-submit {
  width: 100%;
  max-width: inherit;
}
/* PC */
@media screen and (min-width: 768px) {
  
}
/*送信完了*/
.p-sub-thanks {
  padding-top: clamp(120px, calc(160 / 1440 * 100vw), 160px);
}
.p-sub-thanks__txt-main {
  color: var(--color-accent);
  font-weight: 700;
  font-size: clamp(24px, calc(42 / 1440 * 100vw), 22px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.p-sub-thanks__txt-sub {
  font-weight: 500;
  font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: 2em;
}
.p-sub-thanks__btn-area {
  margin-top: clamp(50px, calc(80 / 1440 * 100vw), 80px);
}
/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-404 {
  text-align: center;
  padding-top: clamp(120px, calc(200 / 1440 * 100vw), 200px);
  padding-bottom: clamp(60px, calc(100 / 1440 * 100vw), 100px);
}
.p-sub-404__ttl-jp {
  font-size: clamp(17px, calc(40 / 1440 * 100vw), 40px);
  font-weight: 700;
}
.p-sub-404__ttl-en {
  font-size: clamp(38px, calc(96 / 1440 * 100vw), 96px);
  font-weight: 700;
  display: block;
}
.p-sub-404__txt {
  font-size: clamp(15px, calc(20 / 1440 * 100vw), 20px);
  font-weight: 700;
  margin-top: clamp(40px, calc(60 / 1440 * 100vw), 60px);
}
.p-sub-404__btn-area {
  margin-top: clamp(40px, calc(60 / 1440 * 100vw), 60px);
}

/* PC */
@media screen and (min-width: 768px) {
}
/*=================================================
 *  JavaScript用
 *================================================*/
/*  */
.js-xxx {
}
/*=================================================
 *  TOP 追従ボタン
 *================================================*/
.p-top-sticky-button {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 100;
  border-radius: 15px 0 0 15px;
  background-color: #d14f4f;
  padding: 76px 14px 23px;
}
@media screen and (min-width: 768px) {
  .p-top-sticky-button {
    bottom: 170px;
    padding: 90px 14px 23px;
  }
}
.p-top-sticky-button__icon {
  width: 72.2%;
  position: absolute;
  top: -20.3%;
  left: 50%;
  translate: -41% 0;
}
.p-top-sticky-button__text {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-top-sticky-button {
    font-size: 20px;
  }
}
.p-top-sticky-button__text--large {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 6px;
  line-height: 1;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-top-sticky-button__text--large {
    font-size: 26px;
  }
}
.p-top-sticky-button__text--link {
  display: block;
  width: max-content;
  margin-inline: auto;
  margin-top: 11px;
  max-width: 100%;
  padding-inline: 19px;
  background-color: #fff;
  color: #d14f4f;
  font-size: 14px;
  font-weight: 700;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-top-sticky-button__text--link {
    font-size: 16px;
  }
}
.p-top-pro-button {
  display: flex;
  border-radius: 24px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  background-color: #d14f4f;
  transition: opacity 0.3s ease;
  padding: 16px 36px;
  gap: 16px;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .p-top-pro-button {
    padding: 36px 79px;
    gap: 24px;
    margin-top: 70px;
  }
}
.p-top-pro-button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.p-top-pro-button__text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-pro-button__text {
    font-size: 28px;
  }
}
.p-top-pro-button__icon {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-pro-button__icon {
    width: 48px;
  }
}

/*----------------- modal -----------------*/
.js-modal {
  display: none;
}
.js-modal.is-active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
}
.js-modal-background {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.js-modal-inner {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.js-modal-header {
  position: relative;
  border-radius: 16px 16px 0 0;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .js-modal-header {
    border-radius: 24px 24px 0 0;
    padding: 24px;
  }
}
.js-modal-header-title {
  display: flex;
  flex-direction: column;
}
.js-modal-header-title__text--top {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .js-modal-header-title__text--top {
    font-size: 28px;
  }
}
.js-modal-header-title__text--bottom {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .js-modal-header-title__text--bottom {
    font-size: 40px;
  }
}
.js-modal--1 .js-modal-header {
  background-color: #d14f4f;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.js-modal--2 .js-modal-header {
  background-color: #cfb55d;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.js-modal-close-icon {
  position: absolute;
  top: 0;
  right: 0;
  translate: 50% -50%;
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  background-color: #545454;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .js-modal-close-icon {
    width: 55px;
  }
}
.js-modal-close-icon__image {
  width: 18px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .js-modal-close-icon__image {
    width: 24px;
  }
}
.js-modal-content {
  background-color: #fff;
  border-radius: 0 0 24px 24px;
  padding: 24px 16px;
  max-height: 70vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .js-modal-content {
    padding: 48px 96px;
  }
}
.js-modal-form-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.js-modal-form-list-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line {
    flex-direction: row;
    gap: 48px;
  }
}
.js-modal-form-list-line-description {
  flex-grow: 1;
}
.js-modal-form-list-line-term {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  flex-shrink: 1;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line-term {
    gap: 25px;
    width: 258px;
  }
}
.js-modal-form-list-line-term:has(.js-modal-form-list-line-term__annotation) {
  padding-left: unset;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line-term:has(.js-modal-form-list-line-term__annotation) {
    padding-left: 68px;
  }
}
.js-modal-form-list-line-term__required {
  background-color: #bc2727;
  color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.js-modal-form-list-line-description__input--text {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #2f2c2c;
  border-radius: 5px;
  font-size: 14px;
}
.js-modal-form-list-line-description__input--tel {
  width: 50%;
  padding: 8px 12px;
  border: 1px solid #2f2c2c;
  border-radius: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line-description__input--text {
    padding: 10px 21px;
    font-size: 16px;
  }
}
.js-modal-form-list-line-description__textarea {
  width: 100%;
  padding: 8px 12px;
  height: 200px;
  border: 1px solid #2f2c2c;
  border-radius: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line-description__textarea {
    font-size: 16px;
    padding: 10px 21px;
  }
}
.js-modal-form-list-line-term__text {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  margin-top: 0.1lh;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .js-modal-form-list-line-term__text {
    font-size: 16px;
    margin-top: 0.2lh;
  }
}
.js-modal-form-list-line-term__annotation {
  font-size: 14px;
  font-weight: 700;
}
.js-modal-form__privacy-policy {
  margin-top: 16px;
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .js-modal-form__privacy-policy {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}
.js-modal-form-privacy-policy__link {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
  text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .js-modal-form-privacy-policy__link {
    text-underline-offset: 0.5em;
  }
}
.js-modal-form__button {
  margin-top: 32px;
  display: block;
  width: max-content;
  background-color: #2f2c2c;
  color: #fff;
  max-width: 100%;
  margin-inline: auto;
  padding: 16px 32px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .js-modal-form__button {
    padding: 21px 85px;
    font-size: 18px;
    font-size: 24px;
  }
}
