@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: "Zen Kaku Gothic New","Noto Sans JP", sans-serif; /* FontFamily（日本語） */
  --font-family-en: "Montserrat", "Noto Sans JP", sans-serif; /* FontFamily（英字） */
  --line-height-base: 1.8; /* 基本のline-height */
  --color-olive: #6D6948; /* オリーブ色 */
  --color-orange: #FF783A; /* オレンジ色 */
  --color-font-base: #333; /* 文字色 */
  --height-header: 50; /* SP表示時のヘッダーの高さ */
  --padding-inline: 15px; /* SP表示時の左右余白 */
  --width-max-img: 480px; /* SP表示時の最大画像幅 */
  --l-inner-s: 1000;/* PC表示時のインナー幅 - 小 */
  --l-inner: 1200; /* PC表示時のインナー幅 - 基本 */
  /* --- 初期値設定 ここまで ------------------------ */

  /* 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 {
    --padding-inline: 25px; /* PC表示時の左右余白 */
    --width-max-img: 100%; /* PC表示時の最大画像幅 */
  }
}
@media screen and (min-width: 1000px) {
  :root {
    --height-header: 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;
}

[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.3s linear;
  transition: 0.3s linear;
}

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

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

input[type="radio"], 
input[type="checkbox"] {
  display: none;
}

/* PC */
@media screen and (min-width: 768px) {
  html{
    font-size: min(calc( 8/var(--l-inner) * 100vw + .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;
}

/*fit-img*/
.u-fit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}
/*small sp*/
@media screen and (max-width: 480px) {
  .u-small-sp-only {
    display: block;
  }
  .u-small-sp-only .p-top-mv__txt-wrap {
    border-radius: 0;
  }
}
/*=================================================
 *  Layout レイアウト
 *================================================*/
/*　セクション*/
.l-section {
  padding-top: clamp(80px, calc(120 / 1250* 100vw), 120px);
  padding-bottom: clamp(100px, calc(140 / 1250* 100vw), 140px);
}
.l-section + .l-section {
  border-top: solid 5px var(--color-olive);
}
/* インナー - 標準 */
.l-inner {
  width: 100%;
  max-width: calc(var(--l-inner)*1px + var(--padding-inline)*2);
  padding-inline: var(--padding-inline);
  margin-inline: auto;
}

/* ボタンエリア */
.l-btn-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PC */
@media screen and (min-width: 768px) {
  /* インナー - 極小 */
  .l-inner-xs {
    margin-inline: auto;
    max-width: calc(var(--l-inner-xs) * 1px);
  }
  /* インナー - 小 */
  .l-inner-s {
    margin-inline: auto;
    max-width: calc(var(--l-inner-s) * 1px);
  }
  /* ボタンエリア */
  .l-btn-area {
    flex-direction: row;
    justify-content: center;
  }
}

/*=================================================
 *  Component 共通部品
 *================================================*/
.c-blank-icon {
  width: calc(11 / 16* 1rem);
  aspect-ratio: 1;
  margin-left: calc(8 / 16* 1rem);
  vertical-align: middle;
}
.c-spacer {
  display: block;
  width: 100%;
  height: calc(var(--height-header) / 16* 1rem);
}
.c-mail {
  width: clamp(130px, calc(150 / 1250* 100vw), 150px);
  padding-bottom: 0.3em;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.8;
}
/* PC */
@media screen and (min-width: 1000px) {
  .c-spacer {
    height: calc(var(--height-header)/16*1rem);
  }
}
 /*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
.c-hamburger {
  padding: 10px;
  width: 40px;
  height: 40px;
}
.c-hamburger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.p-header.inversion .c-hamburger__line {
  background-color: var(--color-olive);
}
.c-hamburger__line::before,
.c-hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
}
.c-hamburger__line::before {
  top: -8px;
}
.c-hamburger__line::after {
  top: 8px;
}

/* ハンバーガーメニュー open時 */
.is-drawerActive .c-hamburger__line {
  background-color: transparent;
}
.is-drawerActive .c-hamburger__line::before,
.is-drawerActive .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}
.is-drawerActive .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.is-drawerActive .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* PC */
@media screen and (min-width: 1000px) {
  .c-hamburger {
    display: none;
  }
}
/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.c-breadcrumb {
  margin-top: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-breadcrumb__item {
  position: relative;
  line-height: 1;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.8em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #7a7b8d;
  border-bottom: 1px solid #7a7b8d;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 1.2em;
}
.c-breadcrumb__item a {
  font-size: 0.85rem;
  line-height: 1;
  color: #7a7b8d;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:first-child)::before {
    left: -0.9em;
    width: 7px;
    height: 7px;
    border-right: 1px solid #7a7b8d;
    border-bottom: 1px solid #7a7b8d;
    -webkit-transform: translateY(-30%) rotate(-45deg);
            transform: translateY(-30%) rotate(-45deg);
  }
  .c-breadcrumb__item + .c-breadcrumb__item {
    margin-left: 1.5em;
  }
}


/*------------------------------------------
 *  ページトップ
 *------------------------------------------*/
.c-page-top {
  position: fixed;
  right: calc(20/16*1rem);
  bottom: calc(20/16*1rem);
  z-index: 1;
}
.c-page-top a {
  width: clamp(50px, calc(66 / 1250* 100vw), 66px);
  height: clamp(50px, calc(66 / 1250* 100vw), 66px);
  border-radius: 50vh;
  background-color: #fff;
  color: var(--color-olive);
  font-size: clamp(10px, calc(12 / 1250* 100vw), 12px);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--color-olive);
  padding-top: 0.2em;
}
.c-page-top a::before {
  content: '';
  display: inline-block;
  width: clamp(12px, calc(20 / 1250* 100vw), 20px);
  height: clamp(12px, calc(20 / 1250* 100vw), 20px);
  border-top: solid 2px var(--color-olive);
  border-right: solid 2px var(--color-olive);
  transform: rotate(-45deg);
  margin-bottom: -0.4em;
}
.p-footer .c-page-top a:hover {
  opacity: 1;
  background-color: var(--color-olive);
  color: #fff;
}
.c-page-top a:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

#page .c-page-top a {
  background-color: var(--color-olive);
  color: #fff;
}
#page .c-page-top a::before {
  border-color: #fff;
}
#page .p-footer .c-page-top a:hover {
  filter: brightness(1.4);
}
/*------------------------------------------
 *  ページタイトル
 *------------------------------------------*/
.c-page-ttl {
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  セクションタイトル
 *------------------------------------------*/
.c-sec-ttl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-sec-ttl__main {
  font-weight: 700;
  color: var(--color-olive);
  letter-spacing: 0.25em;
  font-size: clamp(28px, calc(55 / 1250* 100vw), 55px);
  text-align: center;
  position: relative;
}
.c-sec-ttl__sub {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  text-align: center;
  position: relative;
  margin-top: clamp(20px, calc(40 / 1250* 100vw), 40px);
  word-break: auto-phrase;
}
.c-sec-ttl__main::before,
.c-sec-ttl__main::after,
.c-sec-ttl__sub::before,
.c-sec-ttl__sub::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
 /* moreボタン */
.c-more-btn {
  background-color: #fff;
  border: solid 2px var(--color-olive);
  color: var(--color-olive);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: calc(16/16*1rem);
  padding: calc(5/16*1rem) calc(90/16*1rem) calc(5/16*1rem) calc(12/16*1rem);
  position: relative;
  line-height: 1.4;
  width: fit-content;
  width: -moz-fit-content;
}
.c-more-btn::after {
  content: '';
  display: inline-block;
  background-image: url("../img/common/btn-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(76/16*1rem);
  aspect-ratio: 76/8;
  position: absolute;
  bottom: calc(10/16*1rem);
  right: calc(8/16*1rem);
}
.c-more-btn:hover {
  background-color: var(--color-olive);
  color: #fff;
}
.c-more-btn:hover::after {
  background-image: url("../img/common/btn-arrow-white.svg");
}

/* PC */
@media screen and (min-width: 768px) {
  .c-btn {
    max-width: calc(200/16*1rem);
  }
}
/*------------------------------------------
 *  下層ページMV
 *------------------------------------------*/
.c-sub-mv {
  background-color: var(--color-orange);
}
.c-sub-mv__img-wrap {
  width: 100%;
  aspect-ratio: 1440/500;
  max-height: 600px;
  min-height: 200px;
}
.c-sub-mv__flex {
  padding-block: clamp(20px, calc(30 / 1250* 100vw), 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-sub-mv__ttl {
  font-size: clamp(25px, calc(55 / 1250* 100vw), 55px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.25em;
  line-height: 1.5;
}
.c-sub-mv__txt {
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-sub-mv__flex {
    flex-direction: row;
    align-items: center;
  }
  .c-sub-mv__ttl {
    flex: 0 0 auto;
    margin-right: clamp(60px, calc(120 / 1250* 100vw), 120px);
  }
}
/*------------------------------------------
 *  下層ページbg
 *------------------------------------------*/
.c-sub-main {
  background-size: auto;
  background-repeat: repeat;
}
/* 大きいPC */
@media screen and (min-width: 1440px) {
  .c-sub-main {
    background-size: cover;
  }
}
/*------------------------------------------
 *  ページャー
 *------------------------------------------*/
.c-pager {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.c-pager .page + .page {
  margin-left: clamp(12px, calc( 20/ 1250* 100vw), 20px);
}
.c-pager a {
  font-size: clamp(20px, calc(25 / 1250* 100vw), 25px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, calc(45 / 1250* 100vw), 45px);
  height: clamp(40px, calc(45 / 1250* 100vw), 45px);
  border-radius: 50vh;
  position: relative;
  background-color: #fff;
  border: solid 2px var(--color-orange);
  color: var(--color-orange);
  position: relative;
}
.c-pager a:hover,
.c-pager .current a {
  background-color: var(--color-orange);
  color: #fff;
}
.c-pager .next a::after,
.c-pager .prev a::after {
  content: '';
  display: inline-block;
  width: clamp(10px, calc(15 / 1250* 100vw), 15px);
  height: clamp(10px, calc(15 / 1250* 100vw), 15px);
  border-top: solid 1px var(--color-orange);
  position: absolute;
}
.c-pager .prev a::after {
  border-left: solid 1px var(--color-orange);
  left: 50%;
  top: 50%;
  transform: translate(-30%,-50%) rotate(-45deg);
}
.c-pager .next a::after {
  border-right: solid 1px var(--color-orange);
  left: 50%;
  top: 50%;
  transform: translate(-70%,-50%) rotate(45deg);
}
.c-pager .prev a:hover::after,
.c-pager .next a:hover::after {
  border-color: #fff;
}
.c-pager .prev,
.c-pager .next {
  position: absolute;
  top: 50%;
}
.c-pager .next {
  left: calc(100% + clamp(12px, calc( 20/ 1250* 100vw), 20px));
  transform: translate(0,-50%);
}
.c-pager .prev {
  right: calc(100% + clamp(12px, calc( 20/ 1250* 100vw), 20px));
  transform: translate(0,-50%);
}


/* detailページ用*/
.c-pager .all a {
  width: fit-content;
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-inline: clamp(20px, calc(60 / 1250* 100vw), 60px)
}
.c-pager .detail-next {
  padding-left: clamp(50px, calc(100 / 1250* 100vw), 100px);
  margin-left: clamp(1px, calc(40 / 1250* 100vw), 40px);
}
.c-pager .detail-prev {
  padding-right: clamp(50px, calc(100 / 1250* 100vw), 100px);
  margin-right: clamp(1px, calc(40 / 1250* 100vw), 40px);
}
.c-pager .detail-prev::before ,
.c-pager .detail-next::before {
  display: inline-block;
  font-size: clamp(12px, calc(20 / 1250* 100vw), 20px);
  font-weight: 700;
  letter-spacing: 0.25em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-orange);
}
.c-pager .detail-next::before {
  content: 'next';
  left: 0;
}
.c-pager .detail-prev::before {
  content: 'prev';
  right: 0;
}

/* 小さいSP */
@media screen and (max-width: 420px) {
  .c-pager .detail-next {
    margin-left: 0;
  }
  .c-pager .detail-prev {
    margin-right: 0;
  }
}
/*------------------------------------------
 *  contact-banner
 *------------------------------------------*/
.c-contact {
  background-image: url("../img/common/contact-bg.jpg");
  background-size: auto;
  background-repeat: repeat;
}
#page .c-contact {
  border-top: solid 5px var(--color-olive);
}
.c-contact .c-sec-ttl__main::before {
  background-image: url("../img/common/contact-treat-left-01.svg");
  width: clamp(34px, calc(68 / 1250* 100vw), 68px);
  aspect-ratio: 68/52;
  top: 50%;
  left: 0;
  transform: translate(-170%,-50%);
}
.c-contact .c-sec-ttl__main::after {
  background-image: url("../img/common/contact-treat-right-01.svg");
  width: clamp(97px, calc(194 / 1250* 100vw), 194px);
  aspect-ratio: 194/90;
  top: 50%;
  right: 0;
  transform: translate(60%,-20%);
}
.c-contact .c-sec-ttl__sub {
  margin-top: clamp(60px, calc(80 / 1250* 100vw), 80px);
}
.c-contact .c-sec-ttl__sub::before {
  background-image: url("../img/common/contact-treat-left-02.svg");
  width: clamp(14px, calc(27 / 1250* 100vw), 27px);
  aspect-ratio: 27/47;
  bottom: 0;
  left: 0;
  transform: translate(-150%,0);
}
.c-contact .c-sec-ttl__sub::after {
  background-image: url("../img/common/contact-treat-right-02.svg");
  width: clamp(14px, calc(27 / 1250* 100vw), 27px);
  aspect-ratio: 27/47;
  bottom: 0;
  right: 0;
  transform: translate(150%,0);
}
@media screen and (max-width: 322px) {
  .c-contact .c-sec-ttl__sub::before {
    transform: translate(100%,-150%);
  }
  .c-contact .c-sec-ttl__sub::after {
    transform: translate(-100%,-150%);
  }
}
.c-contact-btn {
  background-color: #FF783A;
  color: #fff;
  font-weight: 600;
  font-size: clamp(18px, calc(28 / 1250* 100vw), 28px);
  text-align: center;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, calc(36 / 1250* 100vw), 36px) clamp(15px, calc(110 / 1250* 100vw), 110px);
  position: relative;
  margin-top: clamp(32px, calc(64 / 1250* 100vw), 64px);
  border-radius: 20px;
  white-space: nowrap;
}
.c-contact-btn::after {
  content: "";
  display: inline-block;
  width: clamp(10px, calc(14 / 1250* 100vw), 14px);
  height: clamp(10px, calc(14 / 1250* 100vw), 14px);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: clamp(10px, calc(30 / 1250* 100vw), 30px);
  top: 50%;
}
.c-contact-btn:hover {
  filter: brightness(1.2);
}

/* PC */
@media screen and (min-width: 768px) {

}
/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
.c-form__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}
.c-form__row + .c-form__row {
  margin-top: clamp(15px, calc(30 / 1250* 100vw), 30px);
  padding-top: clamp(15px, calc(30 / 1250* 100vw), 30px);
}
.contact-confirm-page .c-form__row + .c-form__row {
  border-top: solid 1px #B6B4A6;
}
.c-form__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: 0.5em;
  
}
.c-form__data {
  width: 100%;
}
/* タイトルラベル */
.c-form__ttl {
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
/* 必須ラベル */
.c-form__required {
  display: inline-block;
  width: clamp(32px, calc(48 / 1250* 100vw), 48px);
  height: clamp(15px, calc(22 / 1250* 100vw), 22px);
  font-weight: 600;
  font-size: clamp(10px, calc(14 / 1250* 100vw), 14px);
  letter-spacing: .1em;
  line-height: 1.5em;
  color: #fff;
  background-color: var(--color-olive);
  text-align: center;
  border-radius: 50vh;
  margin-left: clamp(10px, calc(20 / 1250* 100vw), 20px) ;
}
/* 入力項目 */
.c-form__input {
  width: 100%;
  padding: calc(7/16*1rem) calc(20/16*1rem) calc(5/16*1rem) calc(20/16*1rem);
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
  clamp(16px, calc(18 / 1250* 100vw), 18px);
  font-weight: 600;
  font-family: var(--font-family-base);
}
.c-form__input--textarea{
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 1.5;
}
.c-form__input + .c-form__input {
  margin-top: calc(20/16*1rem);
}
.c-form__input::-webkit-input-placeholder {
  font-size: calc(14/16*1rem);
  letter-spacing: .01em;
  color: #bbb;
}
.c-form__input::-moz-placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
.c-form__input:-ms-input-placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
.c-form__input::-ms-input-placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
.c-form__input::placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
/* ラジオボタン */
.c-form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 2.4;
  letter-spacing: 0.1em;
}
.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  font-weight: 600;
}
.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;
}
.c-form__radio-item label::before {
  width: clamp(20px, calc(28 / 1250* 100vw), 28px);
  height: clamp(20px, calc(28 / 1250* 100vw), 28px);
  left: 0;
  background-color: #fff;
  border: 1px solid var(--color-olive);
  border-radius: 5px;
}
.c-form__radio-item label::after {
  width: 7px;
  height: 11px;
  left: clamp(6px, calc(10 / 1250* 100vw), 10px);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
}
.c-form__radio-item input[type="checkbox"]:checked + label::before ,
.c-form__radio-item input[type="radio"]:checked + label::before {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
/* PP同意セレクトボックス */
.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 #ccc;
  border-left: 2px solid #ccc;
  -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: inline-block;
  padding-left: 1.8em;
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.c-form__checkbox-label a {
  text-decoration: underline;
}
.c-form__checkbox-label::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: clamp(20px, calc(28 / 1250* 100vw), 28px);
  height: clamp(20px, calc(28 / 1250* 100vw), 28px);
  background-color: #fff;
  border: 1px solid var(--color-olive);
  border-radius: 5px;
}
.c-form__checkbox-label:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  top: 50%;
  left: clamp(6px, calc(10 / 1250* 100vw), 10px);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  opacity: 0;
}
.c-form__checkbox:checked + .c-form__checkbox-label::before {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  opacity: 1;
}
/* 確認データ */
.c-form__confirm-data {
  width: 100%;
  display: block;
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-form__row {
    max-width: inherit;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .c-form__head {
    justify-content: flex-end;
    width: clamp(240px, calc(320 / 1250* 100vw), 320px);
    margin-bottom: 0;
  }
  .c-form__ttl {
    padding-right: clamp(48px, calc(72 / 1250* 100vw), 72px);
    text-align: right;
  }
  .c-form__data {
    width: calc(100% - clamp(270px, calc(360 / 1250* 100vw), 360px));
  }
  .c-form__input.furigana ,
  .c-form__input.name {
    width: 75%;
  }
  .c-form__input.postal ,
  .c-form__input.tel {
    width: 50%;
  }
  .c-form__required {
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 0;
  }
  /* ラジオボタン */
  .c-form__radio {
    flex-direction: row;
  }
  .c-form__radio-item {
    padding-right: 2em;;
  }
  .c-form__input::-webkit-input-placeholder {
    font-size: calc(16/16*1rem);
    letter-spacing: .04em;
  }
  .c-form__confirm-data {
    padding-left: 2em;
  }
}

/*=================================================
 *  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: hidden;
}

/*------------------------------------------
 *  ヘッダー
 *------------------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--height-header)/16*1rem);
  z-index: var(--l-layer__header);
}
.p-header.inversion {
  background-color: rgba(255,255,255,0.85);
}

 /* インナー */
.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(var(--height-header) / 16* 1rem);
  position: relative;
  z-index: 2;
}
/* ハンバーガーメニュー切り替わり */
@media screen and (min-width: 1000px) {
  .p-header__inner {
    height: calc(var(--height-header)/16*1rem);
  }
}


/* ロゴ */
.p-header__logo {
  width: calc(200/16*1rem);
}
.p-header.inversion .p-header__logo-white ,
.p-header .p-header__logo-olive {
  display: none;
}
.p-header.inversion .p-header__logo-olive {
  display: block;
}

/* メニュー */
.p-header__menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
}
.p-header__hamburger {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: calc(var(--l-layer__drawer) + 1);
}
.p-header__menu {
  position: absolute;
  transform: translateX(100%);
  opacity: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: calc(40/16*1rem) calc(20/16*1rem);
  width: 50%;
  min-width: calc(280/16*1rem);;
  height: 100vh;
  background-color: rgba(109,105,72,0.85);
  text-align: right;
  z-index: var(--l-layer__drawer);
  transition: all 0.3s ease-in;
}
.is-drawerActive .p-header__menu {
  transform: translateX(0);
  opacity: 1;
}
.p-header__menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-header__menu-item{
  padding: 0.5em;
}
.p-header__menu-item a {
  position: relative;
  font-size: calc(20/16*1rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em;
}
.p-header__menu-item a::after {
  position: absolute;
  bottom: -.3em;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: "";
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  background-color: currentColor;
}
.p-header__menu-item a:hover::after, .p-header__menu-item a:focus-visible::after {
  width: 100%;
}
.p-header__menu-item.p-header__menu-icon {
  width: calc(36/16*1rem);
  height: calc(36/16*1rem);
  border-radius: 50vh;
  background-color: #fff;
  padding: 0;
  margin-right: 0.5em;
  align-self: flex-end;
  margin-top: calc(20/16*1rem);
}
.p-header__menu-item.p-header__menu-icon a {
  width: 100%;
  height: 100%;
  padding: 0 20%;
  display: block;
}
.p-header__menu-item.p-header__menu-icon a img {
  object-fit: contain;
}
.p-header__menu-item.p-header__menu-icon a::after {
  display: none;
}
.p-header__menu-item.p-header__menu-icon a:hover {
  opacity: 0.7;
}
/*お問い合わせボタン*/
.p-header__fixed-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--color-olive);
  border: solid 2px #fff;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  writing-mode: vertical-rl;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: clamp(14px, calc(20 / 1250* 100vw), 20px);
  padding: clamp(20px, calc(38 / 1250* 100vw), 38px) clamp(10px, calc(18 / 1250* 100vw), 18px);
  color: #fff;
  z-index: 1;
}
.p-header__fixed-contact::before {
  content: '';
  display: inline-block;
  background-image: url("../img/common/icon-mail-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(18px, calc(34 / 1250* 100vw), 34px);
  aspect-ratio: 34/24;
  margin-bottom: 10px;
}
.p-header__fixed-contact:hover {
  filter: brightness(1.4);
}
/* PC */
@media screen and (min-width: 1000px) {
  /* ロゴ */
  .p-header__logo {
    width: clamp(180px, calc(240 / 1250* 100vw), 240px);
  }
  
  /* メニュー */
  .p-header__menu-wrapper{
    position: initial;
  }
  .p-header__menu {
    position: initial;
    display: block;
    width: auto;
    height: inherit;
    background: none;
    padding: 0;
    opacity: 1;
    transform: translateX(0);
  }
  .p-header__menu-list {
    flex-direction: row;
    align-items: center;
  }
  .p-header__menu-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    padding: 0.5em;
  }
  .p-header__menu-item a{
    font-size: clamp(12px, calc(15 / 1250* 100vw), 15px);
    color: #fff;
    font-weight: 700;
  }
  .p-header.inversion .p-header__menu-item a {
    color: var(--color-olive);
  }
  .p-header__menu-item.p-header__menu-icon {
    align-self: center;
    margin-top: 0;
  }
  
  .p-header__menu-icon + .p-header__menu-icon {
    margin-right: 0;
  }
  .p-header__menu-icon.p-header__menu-insta {
    margin-left: 1em;
  }
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  background-color: var(--color-olive);
  color: #fff;
}
.p-footer a:hover {
  opacity: 0.7;
}
.p-footer__inner-top {
  padding-top: clamp(50px, calc(100 / 1250* 100vw), 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__inner-bottom {
  padding-top: calc(36/16*1rem);
  padding-bottom: clamp(50px, calc(100 / 1250* 100vw), 100px);
}
.p-footer__left{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__logo {
  width: calc(200/16*1rem);
  display: block;
  margin: 0 auto calc(20/16*1rem);
}
.p-footer__txt {
  font-weight: 700;
  font-size: calc(15/16*1rem);
}
.p-footer__link-wrap {
  display: flex;
  margin-top: calc(24/16*1rem);
  justify-content: space-between;
  width: 100%;
  max-width: 280px;
}
.p-footer__icon-wrap {
  width: calc(36/16*1rem);
  height:  calc(36/16*1rem);
  border-radius: 50vh;
  background-color: #fff;
  padding: 0 calc(8/16*1rem);
  margin-right: calc(10/16*1rem);
}
.p-footer__patissier-link img,
.p-footer__icon-wrap img {
  object-fit: contain;
}
.p-footer__patissier-link {
  background-color: #fff;
  width: calc(150/16*1rem);
  height: calc(36/16*1rem);
  padding: 0 calc(33/16*1rem) 0 calc(18/16*1rem);
  border-radius: 10px;
  margin-left: auto;
  position: relative;
}
.p-footer__patissier-link::after {
  content: '';
  display: inline-block;
  background-image: url("../img/common/icon-blank.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(10/16*1rem);
  aspect-ratio: 1;
  position: absolute;
  right: calc(12/16*1rem);
  top: 50%;
  transform: translateY(-50%);
}
.p-footer__menu {
  display: none;
  flex-direction: column;
  margin-top: calc(36/16*1rem);
}
.p-footer__menu-item {
  font-size: calc(15/16*1rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-footer__copyright {
  font-size:  calc(13/16*1rem);
  font-weight: 500;
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: flex;
  }
  .p-footer__inner-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-footer__left {
    align-items: flex-start;
  }
  .p-footer__logo {
    width: clamp(180px, calc(240 / 1250* 100vw), 240px);
    margin: 0 0 calc(20/16*1rem);
  }
  .p-footer__txt {
    text-align: left;
  }
  .p-footer__menu {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .p-footer__menu-item {
    font-size: clamp(12px, calc(16 / 1250* 100vw), 16px);
  }
  .p-footer__menu-item + .p-footer__menu-item {
    margin-left: 1em;
  }
  .p-footer__copyright {
    text-align: left;
  }
}

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

/*----------------- MV -----------------*/
.p-top-mv {
  width: 100%;
  aspect-ratio: 1440/800;
  min-height: 300px;
  position: relative;
}
.p-top-mv__inner,
.p-top-mv__slider-item,
.p-top-mv__slider {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.p-top-mv__slider .slick-track ,
.p-top-mv__slider .slick-list {
  height: 100%;
}
.p-top-mv__inner .p-top-mv__txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__txt-box .l-inner {
  width: 100%;
  aspect-ratio: 1440/800;
  min-height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
} 
.p-top-mv__txt-wrap {
  background-color: var(--color-orange);
  border-radius: 20px;
  padding: clamp(20px, calc(35 / 1250* 100vw), 35px) clamp(30px, calc(63 / 1250* 100vw), 63px);
}
.p-top-mv__txt {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-size: clamp(18px, calc(30 / 1250* 100vw), 30px);
  text-align: center;
  
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv__slider-item ,
  .p-top-mv__slider,
  .p-top-mv {
    aspect-ratio: inherit;
    height: 100vh!important;
  }
  .p-top-mv__txt-box .l-inner {
    aspect-ratio: inherit;
    height: 100%;
  } 
}

@media screen and (max-width: 480px) {
  .p-top-mv .p-top-mv__txt-box {
    display: none;
  }
}
/*----------------- concept （下層ページと共通スタイル）-----------------*/
.p-top-concept {
  background-image: url("../img/top/top-concept-bg.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.p-top-concept .c-sec-ttl__sub::before {
  background-image: url("../img/top/top-concept-treat-left.svg");
  width: clamp(14px, calc(20 / 1250* 100vw), 20px);
  aspect-ratio: 20/51;
  top: 50%;
  left: 0;
  transform: translate(-150%,-50%);
}
.p-top-concept .c-sec-ttl__sub::after {
  background-image: url("../img/top/top-concept-treat-right.svg");
  width: clamp(14px, calc(20 / 1250* 100vw), 20px);
  aspect-ratio: 20/51;
  top: 50%;
  right: 0;
  transform: translate(150%,-50%);
}
.p-top-concept__contents {
  margin-top: clamp(80px, calc(120 / 1250* 100vw), 120px);
}
.p-top-concept__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}
.p-top-concept__item + .p-top-concept__item {
  margin-top: clamp(80px, calc(100 / 1250* 100vw), 100px);
}
.p-top-concept__img-box {
  background-color: #FFDCA8;
  padding: clamp(5px, calc(10 / 1250* 100vw), 10px);
}
.p-top-concept__img-wrap {
  background-color: #fff;
  padding: clamp(5px, calc(10 / 1250* 100vw), 10px);
}
.p-top-concept__number {
  font-size: clamp(25px, calc(50 / 1250* 100vw), 50px);
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-olive);
}
.p-top-concept__txt-wrap {
  display: flex;
  flex-direction: column;
}
.p-top-concept__number span {
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  text-transform: none;
  font-weight: 500;
  padding-left: 1em;
}
.p-top-concept__ttl {
  font-size: clamp(18px, calc(24 / 1250* 100vw), 24px);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: clamp(8px, calc(10 / 1250* 100vw), 10px);
  text-align: center;
  word-break: auto-phrase;
}
.p-top-concept__txt {
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  font-weight: 600;
  margin-top: clamp(15px, calc(25 / 1250* 100vw), 25px);
}
.p-top-concept__btn-area {
  margin-top: clamp(20px, calc(24 / 1250* 100vw), 24px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-concept__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-inline: 0;
    max-width: inherit;
  }
  .p-top-concept__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .p-top-concept__img-box {
    width: 46%;
  }
  .p-top-concept__txt-wrap {
    width: 50%;
    align-items: flex-start;
    text-align: left;
  }
  .p-top-concept__number {
    flex-direction: row;
    justify-content: flex-start;
  }
  .p-top-concept__ttl {
    text-align: left;
  }
  .p-top-concept__btn-area {
    justify-content: flex-end;
  }
}

/*----------------- design -----------------*/
.p-top-design {
  background-image: url("../img/top/top-design-bg.png");
  background-size: auto;
  background-repeat: repeat;
}
.p-top-design .c-sec-ttl__main::before {
  background-image: url("../img/top/top-design-treat-left-1.svg");
  width: clamp(91px, calc(182 / 1250* 100vw), 182px);
  aspect-ratio: 182/72;
  top: 50%;
  left: 0;
  transform: translate(-150%,-50%);
}
.p-top-design .c-sec-ttl__main::after {
  background-image: url("../img/top/top-design-treat-right-1.svg");
  width: clamp(67px, calc(134 / 1250* 100vw), 134px);
  aspect-ratio: 134/109;
  top: 50%;
  right: 0;
  transform: translate(150%,-50%);
}
@media screen and (max-width: 600px) {
  .p-top-design .c-sec-ttl__main::before {
    transform: translate(-120%,-50%);
  }
  .p-top-design .c-sec-ttl__main::after {
    transform: translate(120%,-50%);
  }
}
.p-top-design__contents {
  margin-top: clamp(70px, calc(100 / 1250* 100vw), 100px);
}
.p-top-design__list {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto; 
}
.p-top-design__item {
  width: 100%;
  margin-bottom: clamp(20px, calc(40 / 1250* 100vw), 40px);
}
.p-top-design__item a {
  display: block;
  width: 100%;
  aspect-ratio: 580/300;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.p-top-design__item a::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(109, 105, 72, 0.7);
  mix-blend-mode: multiply;
}
.p-top-design__item a:hover {
  filter: brightness(1.4);
}
.p-top-design__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-design__ttl-en {
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: clamp(24px, calc(38 / 1250* 100vw), 38px);
  line-height: 1.2;
}
.p-top-design__ttl-jp {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
}
.p-top-design__btn-area {
  margin-top: clamp(20px, calc(40 / 1250* 100vw), 40px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-design .c-sec-ttl__sub::before {
    background-image: url("../img/top/top-design-treat-left-2.svg");
    width: clamp(16px, calc(18 / 1250* 100vw), 18px);
    aspect-ratio: 18/65;
    top: 50%;
    left: 0;
    transform: translate(-150%,-50%);
  }
  .p-top-design .c-sec-ttl__sub::after {
    background-image: url("../img/top/top-design-treat-right-2.svg");
    width: clamp(16px, calc(18 / 1250* 100vw), 18px);
    aspect-ratio: 18/65;
    top: 50%;
    right: 0;
    transform: translate(150%,-50%);
  }
  .p-top-design__list {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    max-width: inherit;
    justify-content: space-between;
  }
  .p-top-design__item {
    width: 48%;
  }
}

/*----------------- plan -----------------*/
.p-top-plan {
  background-image: url("../img/top/top-plan-bg.png");
  background-size: auto;
  background-repeat: repeat;
}
.p-top-plan .c-sec-ttl__main::before {
  background-image: url("../img/top/top-plan-treat-left-1.svg");
  width: clamp(43px, calc(85 / 1250* 100vw), 85px);
  aspect-ratio: 85/112;
  top: 50%;
  left: 0;
  transform: translate(-150%,-50%);
}
.p-top-plan .c-sec-ttl__main::after {
  background-image: url("../img/top/top-plan-treat-right-1.svg");
  width: clamp(85px, calc(170 / 1250* 100vw), 170px);
  aspect-ratio: 170/74;
  top: 50%;
  right: 0;
  transform: translate(120%,-50%);
}
.p-top-plan .c-sec-ttl__sub::before {
  background-image: url("../img/top/top-plan-treat-left-2.svg");
  width: clamp(19px, calc(37 / 1250* 100vw), 37px);
  aspect-ratio: 37/53;
  bottom: 0;
  left: 0;
  transform: translate(-150%,0);
}
.p-top-plan .c-sec-ttl__sub::after {
  background-image: url("../img/top/top-plan-treat-right-2.svg");
  width: clamp(19px, calc(37 / 1250* 100vw), 37px);
  aspect-ratio: 37/53;
  bottom: 0;
  right: 0;
  transform: translate(150%,0);
}
.p-top-plan__contents {
  margin-top: clamp(70px, calc(100 / 1250* 100vw), 100px);
}
.p-top-plan__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.p-top-plan__item {
  background-image: url("../img/top/top-plan-item-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio:495/538;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  max-width: 280px;
  margin-bottom: clamp(40px, calc(50 / 1250* 100vw), 50px);
  position: relative;
}
.p-top-plan__item::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/top-plan-marker.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 51%;
  aspect-ratio: 206/9;
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
}
.p-top-plan__item:not(:last-of-type)::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/top-plan-cross.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10%;
  aspect-ratio: 41/42;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
}
.p-top-plan__item:nth-of-type(3)::after {
  width: 63%;
}
.p-top-plan__item:first-of-type {
  margin-right: 3.5%;
}
.p-top-plan__ttl {
  font-size: clamp(24px, calc(30 / 1250* 100vw), 30px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  padding-top: 10%;
}
.p-top-plan__img-wrap {
  height: 37%;
  margin-top: 4%;
}
.p-top-plan__img-wrap img {
  object-fit: contain;
}
.p-top-plan__item:nth-of-type(1) .p-top-plan__img-wrap {
  width: 34.5%;
}
.p-top-plan__item:nth-of-type(2) .p-top-plan__img-wrap {
  width: 88%;
}
.p-top-plan__item:nth-of-type(3) .p-top-plan__img-wrap {
  width: 71.7%;
}
.p-top-plan__txt {
  font-weight: 600;
  font-size: clamp(12px, calc(14 / 1250* 100vw), 14px);
  letter-spacing: 0.15em;
  padding: 0 10%;
  margin-top: 4%;
}
.p-top-plan__sample {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: clamp(40px, calc(50 / 1250* 100vw), 50px) auto 0;
}
.p-top-plan__sample-item {
  width: 100%;
  aspect-ratio: 580/408;
}
.p-top-plan__sample-item:hover {
  opacity: 0.7;
}
.p-top-plan__sample-item:not(:first-of-type) {
  margin-top: clamp(40px, calc(50 / 1250* 100vw), 50px);
}
.p-top-plan__btn-area {
  margin-top: clamp(80px, calc(100 / 1250* 100vw), 100px);
}
/*SPのみ*/
@media screen and (max-width: 767px) {
  .p-top-plan__list {
    flex-direction: row;
    max-width: 280px;
    margin: 0 auto;
  }
  .p-top-plan__item {
    width: 100%;
  }
  .p-top-plan__item:first-of-type {
    margin-right: 0;
  }
  .p-top-plan__item:not(:last-of-type)::before {
    right: inherit;
    left: 50%;
    top: 100%;
    transform: translate(-50%,20%);
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-plan .c-sec-ttl__sub::before {
    bottom: inherit;
    top: 50%;
    transform: translate(-150%,-50%);
  }
  .p-top-plan .c-sec-ttl__sub::after {
    bottom: inherit;
    top: 50%;
    transform: translate(150%,-50%);
  }
  .p-top-plan__list {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    width: 100%;
  }
  .p-top-plan__item {
    width: 31%;
    max-width: inherit;
  }
  .p-top-plan__item:not(:last-of-type) {
    margin-right: 3.5%;
  }
  .p-top-plan__sample {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    width: 100%;
  }
  .p-top-plan__sample-item {
    width: 48%;
  }
  .p-top-plan__sample-item:not(:first-of-type) {
    margin-top: 0;
  }
}

/*----------------- works -----------------*/
.p-top-works {
  background-image: url("../img/top/top-works-bg.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.p-top-works .c-sec-ttl__main::before {
  background-image: url("../img/top/top-works-treat-left.svg");
  width: clamp(118px, calc(236 / 1250* 100vw), 236px);
  aspect-ratio: 236/156;
  top: 50%;
  left: 0;
  transform: translate(-120%,-50%);
}
.p-top-works .c-sec-ttl__main::after {
  background-image: url("../img/top/top-works-treat-right.svg");
  width: clamp(96px, calc(191 / 1250* 100vw), 191px);
  aspect-ratio: 191/126;
  top: 50%;
  right: 0;
  transform: translate(120%,-50%);
}
.p-top-works__contents {
  margin-top: clamp(80px, calc(150 / 1250* 100vw), 150px);
}
.p-top-works__slider:first-of-type {
  margin-bottom: clamp(10px, calc(15 / 1250* 100vw), 15px);
}
.p-top-works__slider-item {
  margin: 0 clamp(2.5px, calc(5 / 1250* 100vw), 5px);
}
.p-top-works__slider-item a {
  display: block;
  aspect-ratio: 560/380;
  border-radius: 5px;
  overflow: hidden;
}
.p-top-works__btn-area {
  margin-top: clamp(80px, calc(100 / 1250* 100vw), 100px);
}
/* PC */
@media screen and (min-width: 768px) {
  
}

/*----------------- insta -----------------*/
.p-top-insta {
  background-image: url("../img/top/top-insta-bg.jpg");
  background-size: auto;
  background-repeat: repeat;
}
.p-top-insta__inner {
  display: flex;
  flex-direction: column;
  max-width: 510px;
  margin: 0 auto;
  align-items: center;
}
.p-top-insta__left {
  
}
.p-top-insta__contents {
  background-color: #fff;
  padding: clamp(20px, calc(50 / 1250* 100vw), 50px);
  margin-top: clamp(40px, calc(60 / 1250* 100vw), 60px);
}
.p-top-insta__flex {
  display: flex;
  margin-top: clamp(40px, calc(72 / 1250* 100vw), 72px);
  position: relative;
}
.p-top-insta__flex::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/top/top-insta-treat.svg");
  width: clamp(124px, calc(186 / 1250* 100vw), 186px);
  aspect-ratio: 186 / 57;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(0, -100%);
}
.p-top-insta__icon-wrap {
  width: calc(36 / 16* 1rem);
  height: calc(36 / 16* 1rem);
  border-radius: 50vh;
  background-color: var(--color-olive);
  padding: 0 2.2%;
}
.p-top-insta__txt {
  font-size: clamp(18px, calc(20 / 1250* 100vw), 20px);
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-left: 0.7em;
}
.p-top-insta__btn-area {
  margin-top: clamp(40px, calc(60 / 1250* 100vw), 60px);
}
.p-top-insta__card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-top-insta__card {
  width: 48%;
  aspect-ratio: 1;
  display: none;
}
.p-top-insta__card:nth-child(-n + 4) {
  display: block;
}
/**/
.p-top-insta__card:nth-child(-n + 2) {
  margin-bottom: 4%;
}
.p-top-insta__card a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-insta__card a:hover {
  filter: brightness(1.2);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-insta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: calc(var(--l-inner)* 1px + var(--padding-inline)* 2);
    width: 100%;
  }
  .p-top-insta__left {
    width: clamp(380px, calc(540 / 1250* 100vw), 540px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 auto;
  }
  .p-top-insta__contents {
    flex: 1 1 auto;
    margin-top: 0;
  }
  .p-top-insta .c-sec-ttl {
    align-items: flex-start;
  }
  .p-top-insta .c-sec-ttl__main {
    text-align: left;
  }
  .p-top-insta__flex::after {
    transform: translate(50%, -80%);
  }
  .p-top-insta__btn-area {
    justify-content: flex-start;
  }
}

/*----------------- news -----------------*/
.p-top-news {
  background-image: url("../img/top/top-news-bg.jpg");
  background-size: auto;
  background-repeat: repeat;
}
/* 大きいPC */
@media screen and (min-width: 1440px) {
  .p-top-news {
    background-size: contain;
  }
}
.p-top-news .c-sec-ttl__main::before {
  background-image: url("../img/top/top-news-treat-left.svg");
  width: clamp(66px, calc(132 / 1250* 100vw), 132px);
  aspect-ratio: 132/138;
  top: 50%;
  left: 0;
  transform: translate(-120%,-50%);
}
.p-top-news .c-sec-ttl__main::after {
  background-image: url("../img/top/top-news-treat-right.svg");
  width: clamp(57px, calc(114 / 1250* 100vw), 114px);
  aspect-ratio: 114/123;
  top: 50%;
  right: 0;
  transform: translate(120%,-50%);
}
.p-top-news__list {
  margin-top: clamp(60px, calc(80 / 1250* 100vw), 80px);
  background-color: #fff;
  border: solid 2px var(--color-olive);
  padding: clamp(10px, calc(16 / 1250* 100vw), 16px) clamp(15px, calc(56 / 1250* 100vw), 56px);
}
.p-top-news__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(10px, calc(20 / 1250* 100vw), 20px);
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  letter-spacing: 0.05em;
}
.p-top-news__item a:hover {
  opacity: 0.7;
}
.p-top-news__item:not(:last-of-type) {
  border-bottom: solid 1px var(--color-olive); 
}
.p-top-news__btn-area {
  margin-top: clamp(80px, calc(100 / 1250* 100vw), 100px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-news__item a {
    flex-direction: row;
    align-items: baseline;
  }
    .p-top-news__date {
    width: clamp(140px, calc(160 / 1250* 100vw), 160px);
    flex: 0 0 auto;
  }
}
/*----------------- Contact banner-----------------*/

/*トップページにのみ表示*/
.p-top-contact__link-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: clamp(80px, calc(150 / 1250* 100vw), 80px) auto 0;
}
#top .p-top-contact__link-wrap {
  display: flex;
}
.p-top-contact__link-item {
  position: relative;
}
.p-top-contact__link-item + .p-top-contact__link-item {
  margin-top: clamp(30px, calc(40 / 1250* 100vw), 40px);
}
.p-top-contact-btn {
  background-color: var(--color-olive);
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, calc(28 / 1250* 100vw), 28px);
  letter-spacing: 0.15em;
  width: 88%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 7.4%;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-contact-btn:hover {
  filter: brightness(1.4);
}
.p-top-contact-btn::after {
  content: "";
  display: inline-block;
  width: clamp(10px, calc(14 / 1250* 100vw), 14px);
  height: clamp(10px, calc(14 / 1250* 100vw), 14px);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: clamp(10px, calc(30 / 1250* 100vw), 30px);
  top: 50%;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-contact__link-wrap {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: inherit;
  }
  .p-top-contact__link-item {
    width: 48%;
  }
  .p-top-contact__link-item + .p-top-contact__link-item {
    margin-top: 0;
  }
}
/*------------------------------------------
 *  conceptページ
 *------------------------------------------*/
.p-sub-concept__main {
  background-image: url(../img/common/page-bg.jpg);
}
.p-sub-concept__section {
  margin-bottom: clamp(80px, calc(140 / 1250* 100vw), 140px);
}
.p-sub-concept__section .p-top-concept__item {
  background-color: #fff;
  padding: clamp(15px, calc(50 / 1250* 100vw), 50px);
  box-shadow: 8px 8px 0px 0px rgba(182, 180, 166, 0.4);
}
.p-sub-concept__section .p-top-concept__img-wrap {
  aspect-ratio: 500/365;
}
/*------------------------------------------
 *  concept detailページ
 *------------------------------------------*/
.concept-detail-page .p-top-concept__number {
  color: #fff;
  line-height: 1;
  margin-bottom: clamp(8px, calc(10 / 1250* 100vw), 10px);
}
.p-sub-concept-detail__item {
  background-color: #fff;
  margin: clamp(60px, calc(100 / 1250* 100vw), 100px) auto 0;
  border-radius: 30px;
  padding: clamp(30px, calc(100 / 1250* 100vw), 100px) clamp(20px, calc(100 / 1250* 100vw), 100px);
  max-width: 480px;
}
.p-sub-concept-detail__flex {
  display: flex;
  flex-direction: column;
}
.p-sub-concept-detail__flex + .p-sub-concept-detail__flex {
  margin-top: clamp(30px, calc(100 / 1250* 100vw), 100px);
}
.p-sub-concept-detail__img-wrap {
  margin-top: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-sub-concept-detail__ttl {
  font-weight: 700;
  font-size: clamp(20px, calc(26 / 1250* 100vw), 26px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-sub-concept-detail__txt {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.8;
  letter-spacing: 0%;
}
.p-sub-concept-detail__txt + .p-sub-concept-detail__txt {
  margin-top: 1.8em;
}
.p-sub-concept__btn-area {
  margin-top: clamp(60px, calc(100 / 1250* 100vw), 100px);
}
.p-sub-concept__btn {
  color: var(--color-orange);
  background-color: #fff;
  border: solid 2px var(--color-orange);
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(200px, calc(250 / 1250* 100vw), 250px);
  height: clamp(30px, calc(45 / 1250* 100vw), 45px);
  font-weight: 700;
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  line-height: 1;
  letter-spacing: 0.25em;
}
.p-sub-concept__btn:hover {
  background-color: var(--color-orange);
  color: #fff;
}
.p-sub-concept__btn + .p-sub-concept__btn {
  margin-top: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-concept-detail__item {
    max-width: inherit;
    margin: clamp(60px, calc(100 / 1250* 100vw), 100px) 0 0;
    width: 100%;
  }
  .p-sub-concept-detail__flex {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-sub-concept-detail__flex:nth-of-type(2n) {
    flex-direction: row;
  }
  
  .p-sub-concept-detail__img-wrap ,
  .p-sub-concept-detail__txt-wrap {
    width: 48%;
  }
  .p-sub-concept-detail__img-wrap {
    aspect-ratio: 480/320;
    margin-top: 0;
  }
  .p-sub-concept__btn + .p-sub-concept__btn {
    margin-top: 0;
    margin-left: clamp(20px, calc(50 / 1250* 100vw), 50px);
  }
}

/*------------------------------------------
 *  designページ
 *------------------------------------------*/
.p-sub-design__main {
  background-image: url(../img/common/page-bg.jpg);
}
.p-sub-design__sec-ttl {
  margin-top: clamp(6px, calc(120 / 1250* 100vw), 120px);
}
.p-sub-design__sec-ttl .c-sec-ttl__main {
  width: clamp(200px, calc(405 / 1250* 100vw), 405px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, calc(20 / 1250* 100vw), 20px);
}
.p-sub-design__sec-ttl .c-sec-ttl__main::before {
  background-image: url("../img/design/design-ttl-treat-left.svg");
  width: clamp(104px, calc(208 / 1250* 100vw), 208px);
  aspect-ratio: 208/115;
  top: 50%;
  right: 100%;
  transform: translate(-20%,-50%);
}
.p-sub-design__sec-ttl .c-sec-ttl__main::after {
  background-image: url("../img/design/design-ttl-treat-right.svg");
  width: clamp(89px, calc(177 / 1250* 100vw), 177px);
  aspect-ratio: 177/101;
  top: 50%;
  left: 100%;
  transform: translate(20%,-50%);
}
.p-sub-design__tab-wrap {
  margin-top: clamp(60px, calc(94 / 1250* 100vw), 94px);
}
.p-sub-design__tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.p-sub-design__tab-item {
  width: 30%;
  margin-bottom: clamp(30px, calc(50 / 1250* 100vw), 50px);
}
.p-sub-design__tab-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 8px 8px 0px 0px rgba(182, 180, 166, 0.4);
  padding: clamp(10px, calc(20 / 1250* 100vw), 20px) clamp(10px, calc(20 / 1250* 100vw), 20px) clamp(10px, calc(15 / 1250* 100vw), 15px);
  position: relative;
}
.p-sub-design__tab-item a:hover {
  filter: brightness(1.2);
}
.p-sub-design__tab-img-wrap {
  width: 100%;
  aspect-ratio: 1;
}
.p-sub-design__tab-number {
  position: absolute;
  top: clamp(10px, calc(20 / 1250* 100vw), 20px);
  left: clamp(10px, calc(20 / 1250* 100vw), 20px);
  width: clamp(32px, calc(47 / 1250* 100vw), 47px);
}
.p-sub-design__tab-ttl-en {
  font-weight: 700;
  text-transform: capitalize;
  font-size: clamp(16px, calc(26 / 1250* 100vw), 26px);
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin-top: clamp(5px, calc(10 / 1250* 100vw), 10px);
}
.p-sub-design__tab-ttl-jp {
  font-weight: 600;
  text-transform: capitalize;
  font-size: clamp(14px, calc(18 / 1250* 100vw), 18px);
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.p-sub-design__section {
  margin: clamp(30px, calc(50 / 1250* 100vw), 50px) auto 0;
  max-width: 600px;
}
.p-sub-design__section:last-of-type {
  margin-bottom: clamp(80px, calc(150 / 1250* 100vw), 150px);
}
.p-sub-design__item {
  background-color: #fff;
  box-shadow: 8px 8px 0px 0px rgba(182, 180, 166, 0.4);
  padding: clamp(15px, calc(25 / 1250* 100vw), 25px);
}
.p-sub-design-item__txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-sub-design-item__number {
  width: clamp(32px, calc(47 / 1250* 100vw), 47px);
  margin-top: clamp(15px, calc(25 / 1250* 100vw), 25px);
}
.p-sub-design-item__ttl-en {
  font-weight: 700;
  font-size: clamp(28px, calc(45 / 1250* 100vw), 45px);
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  margin-top: 0.5em;
}
.p-sub-design-item__ttl-jp {
  font-weight: 600;
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.p-sub-design-item__txt {
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin-top: clamp(22px, calc(34 / 1250* 100vw), 34px);
  text-align: center;
}
.p-sub-design-item__slider-wrap {
  margin-top: clamp(30px, calc(50 / 1250* 100vw), 50px);
}
.p-sub-design-item__slider .slick-slide {
  aspect-ratio: 740/493;
}
#page .p-sub-design-item__slider .slick-dots {
  padding-top: 0;
}
#page .p-sub-design-item__slider .slick-dots li {
  width: 19%;
  aspect-ratio: 74/49;
  opacity: 0.4;
}
#page .p-sub-design-item__slider .slick-dots li:not(:last-of-type) {
  margin-right: 1.25%;
}
#page .p-sub-design-item__slider .slick-dots li.slick-active {
  opacity: 1;
}
/* 小さいSP */
@media screen and (max-width: 420px) {
  .p-sub-design__tab-item {
    width: 45%;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-design__section {
    width: 100%;
    max-width: inherit;
    margin-inline: 0;
    margin-top: 0;
  }
  .p-sub-design__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-sub-design-item__txt-wrap {
    width: 36%;
    padding-bottom: clamp(30px, calc(60 / 1250* 100vw), 60px);
  }
  .p-sub-design-item__number {
    margin-top: 0;
  }
  .p-sub-design-item__slider-wrap {
    margin-top: 0;
    width: 60%;
  }
  #page .p-sub-design-item__slider .slick-dots {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 106.67%;
  }
  #page .p-sub-design-item__slider .slick-dots li {
    margin-bottom: 0;
  }
  /*左右反転*/
  .p-sub-design__section.reverse .p-sub-design__item {
    flex-direction: row-reverse;
  }
  #page .p-sub-design__section.reverse .p-sub-design-item__slider .slick-dots {
    right: inherit;
    left: 106.67%;;
  }
}
/*------------------------------------------
 *  companyページ
 *------------------------------------------*/
.p-sub-company__main {
  background-image: url(../img/company/company-bg.jpg);
}
.p-sub-company__section {
  margin-top: clamp(60px, calc(100 / 1250* 100vw), 100px);
  background-color: #fff;
  border-radius: clamp(30px, calc(50 / 1250* 100vw), 50px);
  padding: clamp(60px, calc(100 / 1250* 100vw), 100px) clamp(15px, calc(60 / 1250* 100vw), 60px);
}
.p-sub-company__section:last-of-type {
  margin-bottom: clamp(80px, calc(150 / 1250* 100vw), 150px);
}
.p-sub-company__sec-ttl .c-sec-ttl__main {
  font-weight: 600;
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  letter-spacing: 0.1em;
}
.p-sub-company__sec-ttl .c-sec-ttl__main::before {
  background-image: url("../img/company/company-ttl-line.svg");
  width: clamp(32px, calc(63 / 1250* 100vw), 63px);
  aspect-ratio: 63/7;
  right: 100%;
  top: 50%;
  transform: translate(-30%,-50%);
}
.p-sub-company__sec-ttl .c-sec-ttl__main::after {
  background-image: url("../img/company/company-ttl-line.svg");
  width: clamp(32px, calc(63 / 1250* 100vw), 63px);
  aspect-ratio: 63/7;
  left: 100%;
  top: 50%;
  transform: translate(30%,-50%);
}
.p-sub-company__sec-ttl .c-sec-ttl__sub {
  font-weight: 700;
  font-size: clamp(20px, calc(32 / 1250* 100vw), 32px);
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: clamp(30px, calc(52 / 1250* 100vw), 52px);
  color: var(--color-orange);
}
.p-sub-company__sec-ttl .c-sec-ttl__sub::before {
  background-image: url("../img/company/company-ttl-treat-left.svg");
  width: clamp(71px, calc(141 / 1250* 100vw), 141px);
  aspect-ratio: 141/139;
  right: 100%;
  top: 50%;
  transform: translate(-30%,-50%);
}
.p-sub-company__sec-ttl .c-sec-ttl__sub::after {
  background-image: url("../img/company/company-ttl-treat-right.svg");
  width: clamp(86px, calc(171 / 1250* 100vw), 171px);
  aspect-ratio: 171/143;
  left: 100%;
  top: 50%;
  transform: translate(30%,-50%);
}
.p-sub-company__txt {
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 2em;
}
.p-sub-company__txt {
  margin-top: clamp(30px, calc(50 / 1250* 100vw), 50px);
}
.p-sub-company__img-wrap {
  width: 100%;
  max-width: 345px;
  margin: clamp(30px, calc(50 / 1250* 100vw), 50px) auto 0;
}
.p-sub-company__thumb {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: clamp(8px, calc(10 / 1250* 100vw), 10px);
}
.p-sub-company__list {
  display: flex;
  width: 100%;
  border-bottom: solid 1px #B6B4A6;
  padding-bottom: clamp(20px, calc(35 / 1250* 100vw), 35px);
  margin-bottom: clamp(20px, calc(35 / 1250* 100vw), 35px);
  padding-inline: clamp(6px, calc(12 / 1250* 100vw), 12px);
}
.p-sub-company__list:first-of-type {
  margin-top: clamp(50px, calc(88 / 1250* 100vw), 88px);
}
.p-sub-company__list dt {
  font-weight: 700;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 36%;
  flex: 0 0 auto;
}
.p-sub-company__list dd {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  word-break: auto-phrase;
}
.p-sub-company__list-map {
  flex-direction: column;
  border-bottom:none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p-sub-company__department-list {
  display: flex;
  justify-content: space-between;
}
.p-sub-company__department-item {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.p-sub-company__department-txt {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: clamp(30px, calc(50 / 1250* 100vw), 50px);
  margin-bottom: 1em;
}
.p-sub-company__department-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 470/300;
  margin-top: auto;
}
.p-sub-company__department-map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-sub-company__btn {
  border: none;
  text-transform: capitalize;
}
.p-sub-company__btn:hover {
  background-color: #fff;
  color: var(--color-olive);
  opacity: 0.7;
}
.p-sub-company__btn:hover::after {
  background-image: url(../img/common/btn-arrow.svg);
}
.p-sub-company__service-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.p-sub-company__service-list:first-of-type {
  margin-top: clamp(40px, calc(50 / 1250* 100vw), 50px);
}
.p-sub-company__service-list:not(:last-of-type) {
  padding-bottom: clamp(20px, calc(32 / 1250* 100vw), 32px);
  margin-bottom: clamp(20px, calc(32 / 1250* 100vw), 32px);
  border-bottom: solid 1px #B6B4A6;
}
.p-sub-company__service-list dt {
  width: 28%;
  margin-right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-sub-company__service-list dd {
  width: 64%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-sub-company__service-ttl {
  font-weight: 700;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.5em;
}
.p-sub-company__service-txt {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-sub-company__service-banner {
  width: 100%;
  margin-top: clamp(20px, calc(32 / 1250* 100vw), 32px);
}
.p-sub-company__service-banner:hover {
  opacity: 0.7;
}
/* 小さいSP */
@media screen and (max-width: 520px) {
  .p-sub-company__sec-ttl .c-sec-ttl__sub {
    margin-bottom: 80px;
  }
  .p-sub-company__sec-ttl .c-sec-ttl__sub::before {
    right: 70%;
    top: 110%;
    transform: translate(0,0);
  }
  .p-sub-company__sec-ttl .c-sec-ttl__sub::after {
    left: 60%;
    top: 110%;
    transform: translate(0,0);
  }
  .p-sub-company__department-list {
    flex-direction: column;
  }
  .p-sub-company__department-item {
    width: 100%;
  }
  .p-sub-company__service-list {
    flex-direction: column;
    align-items: center;
  }
  .p-sub-company__service-list dt {
    width: 100%;
    max-width: 200px;
    margin-right: 0;
  }
  .p-sub-company__service-list dd {
    width: 100%;
    align-items: center;
    max-width: 400px;
  }
  .p-sub-company__service-txt {
    text-align: center;
    margin-top: 1em;
  }
  
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company__txt {
    text-align: center;
    word-break: auto-phrase;
  }
}
/*------------------------------------------
 *  NEWSページ
 *------------------------------------------*/
.p-sub-news__main {
  background-image: url(../img/news/news-bg.jpg);
}
.p-sub-news__list {
  padding-top: clamp(60px, calc(110 / 1250* 100vw), 110px);
}
.p-sub-news__item {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(20px, calc(50 / 1250* 100vw), 50px) clamp(15px, calc(50 / 1250* 100vw), 50px);
  max-width: 480px;
  margin: 0 auto;
}
.p-sub-news__item + .p-sub-news__item {
  margin-top: clamp(30px, calc(75 / 1250* 100vw), 75px);
}
.p-sub-news__flex {
  display: flex;
  flex-direction: column-reverse;
}
.p-sub-news__img-wrap,
.p-sub-news__txt-wrap {
  width: 100%;
}
.p-sub-news__img-wrap {
  aspect-ratio:468/331;
  margin-top: clamp(20px, calc(40 / 1250* 100vw), 40px);
}
.p-sub-news__img-wrap img {
  object-fit: contain;
}
.p-sub-news__date {
  color: var(--color-olive);
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.25em;
}
.p-sub-news__ttl {
  font-weight: 700;
  font-size: clamp(22px, calc(26 / 1250* 100vw), 26px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: clamp(8px, calc(12 / 1250* 100vw), 12px);
}
.p-sub-news__txt {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: clamp(16px, calc(24 / 1250* 100vw), 24px);
}
.p-sub-news__link {
  color: var(--color-olive);
  text-decoration: underline;
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: clamp(24px, calc(40 / 1250* 100vw), 40px);
}
.p-sub-news__pager-wrap {
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
  margin-bottom: clamp(70px, calc( 140/ 1250* 100vw), 140px);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-sub-news__item {
    max-width: inherit;
    width: 100%;
  }
  .p-sub-news__flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .p-sub-news__img-wrap {
    width: 40%;
    margin-top: 0;
  }
  .p-sub-news__txt-wrap {
    width: 48.5%;
  }
}

/*------------------------------------------
 *  worksページ planページ共通
 *------------------------------------------*/
.p-sub-works__main {
  background-image: url(../img/common/page-bg.jpg);
}
.p-sub-works {
  padding-bottom: clamp(80px, calc( 140/ 1250* 100vw), 140px);
}
.p-sub-works__list {
  margin-top: clamp(60px, calc( 100/ 1250* 100vw), 100px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-sub-works__item {
  width: 46%;
  box-shadow: 8px 8px 0px 0px rgba(182, 180, 166, 0.4);
  background-color: #fff;
  padding: clamp(15px, calc( 30/ 1250* 100vw), 30px);
  margin-bottom: clamp(60px, calc( 100/ 1250* 100vw), 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.p-sub-works__img-wrap {
  width: 100%;
  aspect-ratio: 490/346;
}
.p-sub-works__contents {
  margin-top: clamp(15px, calc( 30/ 1250* 100vw), 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.p-sub-works__ttl {
  font-size: clamp(16px, calc( 18/ 1250* 100vw), 18px);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: auto;
}
.p-sub-works__more-btn {
  align-self: flex-end;
  margin-top: clamp(15px, calc( 30/ 1250* 100vw), 30px);
}
/* 小さいSP */
@media screen and (max-width: 520px) {
  .p-sub-works__list {
    flex-direction: column;
  }
  .p-sub-works__item {
    width: 100%;
  }
}
/*------------------------------------------
 *  works detailページ plan detailページ共通
 *------------------------------------------*/
.p-sub-works-detail {
  margin-top: clamp(60px, calc( 100/ 1250* 100vw), 100px);
  background-color: #fff;
  border-radius: clamp(20px, calc( 30/ 1250* 100vw), 30px);
  padding: clamp(15px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-works-detail__ttl {
  font-size: clamp(20px, calc( 26/ 1250* 100vw), 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.p-sub-works-detail__slider-wrap {
  width: 90%;
  margin: clamp(30px, calc( 50/ 1250* 100vw), 50px) auto 0;
}
.p-sub-works-detail__slider-item {
  width: 100%;
}
.p-sub-works-detail__slider-img {
  width: 100%;
  aspect-ratio: 900/600;
}
.p-sub-works-detail__slider-img img {
  object-fit: contain;
}
/*slick カスタマイズ*/
#page .slick-prev, 
#page .slick-next {
  background-color: transparent;
  width: clamp(40px, calc( 50/ 1250* 100vw), 50px);
  height: clamp(40px, calc( 50/ 1250* 100vw), 50px);
  top: 25vw;
}
@media screen and (min-width: 1250px) {
  #page .slick-prev, 
  #page .slick-next {
    top: 35%;
  }
}
#page .slick-prev {
  transform: translate(-100%,-50%);
}
#page .slick-next {
  transform: translate(100%,-50%);
}
#page .slick-prev:before ,
#page .slick-next:before {
  content: '';
  width: clamp(19px, calc( 23/ 1250* 100vw), 23px);
  height: clamp(19px, calc( 23/ 1250* 100vw), 23px);
  border-top: solid 1px var(--color-olive);
  opacity: 1;
  top: 50%;
  left: 50%;
}
#page .slick-next:before {
  border-right: solid 1px var(--color-olive);
  transform: translate(-50%,-50%) rotate(45deg);
}
#page .slick-prev:before {
  border-left: solid 1px var(--color-olive);
  transform: translate(-50%,-50%) rotate(-45deg);
}
#page .slick-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding-top: clamp(10px, calc( 20/ 1250* 100vw), 20px);
}
#page .slick-dots li {
  width: 10%;
  height: inherit;
  aspect-ratio: 1;
  margin-bottom: clamp(10px, calc( 20/ 1250* 100vw), 20px);
}
#page .slick-dots li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page .slick-dots li:not(:nth-of-type(9n)) {
  margin-right: 1.25%;
}
#page .slick-dots li:last-of-type {
  margin-right: 0;
}
/* 小さいSP */
@media screen and (max-width: 560px) {
  #page .slick-dots li {
    width: 15%;
  }
  #page .slick-dots li:not(:nth-of-type(9n)) {
    margin-right: 0;
  }
  #page .slick-dots li:not(:nth-of-type(6n)) {
    margin-right: 2%;
  }
  #page .slick-dots li:last-of-type {
    margin-right: 0;
  }
}
/* 小さいSP */
@media screen and (max-width: 420px) {
  #page .slick-dots li {
    width: 18%;
  }
  #page .slick-dots li:not(:nth-of-type(6n)) {
    margin-right: 0;
  }
  #page .slick-dots li:not(:nth-of-type(5n)) {
    margin-right: 2.5%;
  }
  #page .slick-dots li:last-of-type {
    margin-right: 0;
  }
}
/*slickカスタマイズここまで*/
.p-sub-works-detail__caption {
  font-size: clamp(13px, calc( 15/ 1250* 100vw), 15px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  margin-top: 1em;
}
.p-sub-works-detail__txt {
  font-size: clamp(14px, calc( 16/ 1250* 100vw), 16px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: clamp(30px, calc( 50/ 1250* 100vw), 50px);
}
.p-sub-works-detail__info-wrap {
  border-top: solid 1px #B6B4A6;
  border-bottom: solid 1px #B6B4A6;
  padding: clamp(15px, calc( 20/ 1250* 100vw), 20px) 0;
  margin-top: clamp(20px, calc( 40/ 1250* 100vw), 40px);
  width: fit-content;
}
.p-sub-works-detail__info-wrap .p-sub-works-detail__txt {
  margin-top: 0;
}
.p-sub-works-detail__info-wrap dl {
  display: flex;
}
.p-sub-works-detail__info-wrap dt {
  flex: 0 0 auto;
  margin-right: 2em;
}
.p-sub-works-detail__pager-wrap {
  margin-block: clamp(50px, calc( 100/ 1250* 100vw), 100px);
}
/*------------------------------------------
 *  plan detailページ
 *------------------------------------------*/
.p-sub-plan__sub-img-wrap ,
.p-sub-plan__main-img-wrap {
  aspect-ratio: 1000/707;
}
.p-sub-plan__sub-img-wrap {
  margin-top: clamp(30px, calc( 50/ 1250* 100vw), 50px);
}
.p-sub-plan__info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(50px, calc( 75/ 1250* 100vw), 75px);
  margin-bottom: clamp(20px, calc( 40/ 1250* 100vw), 40px);
}
.p-sub-plan__info {
  display: flex;
  align-items: center;
  margin-right: 2em;
  line-height: 2;
}
.p-sub-plan__info dt {
  color: #fff;
  background-color: var(--color-olive);
  font-weight: 700;
  font-size: clamp(11px, calc( 13/ 1250* 100vw), 13px);
  line-height: 1;
  letter-spacing: 0.05em;
  padding: clamp(6px, calc( 8/ 1250* 100vw), 8px) clamp(12px, calc( 14/ 1250* 100vw), 14px);
  border-radius: 50vh;
}
.p-sub-plan__info dd {
  color: var(--color-olive);
  font-weight: 700;
  font-size: clamp(18px, calc( 20/ 1250* 100vw), 20px);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: 1em;
}

/*------------------------------------------
 *  CONTACTページ
 *------------------------------------------*/
.p-sub-contact__main {
  background-image: url(../img/contact/contact-bg.jpg);
  padding-bottom: clamp(60px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-contact__flow-list {
  display: flex;
  max-width: 850px;
  margin: clamp(50px, calc( 100/ 1250* 100vw), 100px) auto;
  justify-content: space-between;
}
.p-sub-contact__flow-item {
  width: 30%;
  height: clamp(40px, calc( 60/ 1250* 100vw), 60px);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #B6B4A6;
  font-size: clamp(16px, calc( 18/ 1250* 100vw), 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
.p-sub-contact__flow-item.current {
  background-color: var(--color-orange);
}
.p-sub-contact__flow-item:not(:last-of-type)::before {
  content: '';
  display: inline-block;
  width: clamp(12px, calc( 20/ 1250* 100vw), 20px);
  height: clamp(12px, calc( 20/ 1250* 100vw), 20px);
  border-top: solid 2px var(--color-olive);
  border-right: solid 2px var(--color-olive);
  position: absolute;
  left: 108.33%;
  top: 50%;
  transform: translate(-75%,-50%) rotate(45deg);
}
.p-sub-contact__pp-box {
  display: flex;
  justify-content: center;
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-contact__btn-area {
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-contact__btn {
  margin-top: 0;
  width: clamp(180px, calc( 488/ 1250* 100vw), 488px);
  height: clamp(70px, calc( 100/ 1250* 100vw), 100px);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, calc( 20/ 1250* 100vw), 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  transition: all 0.3s;
}
.p-sub-contact__btn::after {
  display: none;
}

/*確認*/
.p-sub-contact__btn-return {
  background-color: #808080;
  width: clamp(100px, calc(240 / 1250* 100vw), 240px);
  margin-right: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-sub-contact__btn-area {
  flex-direction: row;
  justify-content: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .contact-confirm-page .c-form__row {
    align-items: baseline;
  }
}

/*完了*/
.p-sub-thanks__msg-main {
  font-size: clamp(22px, calc( 32/ 1250* 100vw), 32px);
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: clamp(30px, calc( 40/ 1250* 100vw), 40px);
}
.p-sub-thanks__msg-sub {
  font-size: clamp(16px, calc( 20/ 1250* 100vw), 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  word-break: auto-phrase;
}
.p-sub-thanks__msg-sub + .p-sub-thanks__msg-sub {
  margin-top: 2em;
}
.p-sub-thanks__btn-area {
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
}
.c-contact-btn.c-btn-home {
  margin-top: 0;
  padding: clamp(20px, calc(36 / 1250* 100vw), 36px) clamp(80px, calc(180 / 1250* 100vw), 180px);
  background-color: var(--color-olive);
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
}
.c-contact-btn.c-btn-home::after {
  display: none;
}
/* PC */
@media screen and (min-width: 768px) {
}
/*------------------------------------------
 *  privacyページ
 *------------------------------------------*/
.p-sub-privacy__main {
  background-image: url(../img/common/page-bg.jpg);
}
.p-sub-privacy__section {
  background-color: #fff;
  border-radius: 30px;
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
  margin-bottom: clamp(80px, calc( 140/ 1250* 100vw), 140px);
  padding: clamp(40px, calc( 100/ 1250* 100vw), 100px) clamp(20px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-privacy__list li,
.p-sub-privacy__txt {
  font-weight: 600;
  font-size: clamp(14px, calc( 16/ 1250* 100vw), 16px);
  line-height: 1.8;
  letter-spacing: 0;
}
.p-sub-privacy__txt a {
  text-decoration: underline;
}
.p-sub-privacy__txt a:hover {
  opacity: 0.7;
}
.p-sub-privacy__ttl {
  font-weight: 700;
  font-size: clamp(20px, calc( 26/ 1250* 100vw), 26px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: clamp(40px, calc( 50/ 1250* 100vw), 50px);
}
.p-sub-privacy__txt + .p-sub-privacy__txt ,
.p-sub-privacy__txt + .p-sub-privacy__list ,
.p-sub-privacy__ttl + .p-sub-privacy__list ,
.p-sub-privacy__ttl + .p-sub-privacy__txt {
  margin-top: clamp(20px, calc( 30/ 1250* 100vw), 30px);
}
.p-sub-privacy__list {
  padding-left: 1.2em;
}
.p-sub-privacy__list-decimal {
  list-style-type: decimal;
}
.p-sub-privacy__list-alpha {
  list-style-type: lower-alpha;
  margin-bottom: clamp(20px, calc( 30/ 1250* 100vw), 30px);
}
.p-sub-privacy__list-roman {
  list-style-type: lower-roman;
}
/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-not-found__main {
  background-image: url(../img/common/page-bg.jpg);
}
.p-sub-not-found__section {
  background-color: #fff;
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
  margin-bottom: clamp(80px, calc( 140/ 1250* 100vw), 140px);
  border-radius: 30px;
  padding: clamp(40px, calc( 100/ 1250* 100vw), 100px) clamp(20px, calc( 100/ 1250* 100vw), 100px);
}
.p-sub-not-found__ttl {
  font-weight: 600;
  font-size: clamp(24px, calc( 32/ 1250* 100vw), 32px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  word-break: auto-phrase;
  
}
.p-sub-not-found__txt {
  font-weight: 600;
  font-size: clamp(16px, calc( 20/ 1250* 100vw), 16px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  word-break: auto-phrase;
  margin-top: clamp(30px, calc( 50/ 1250* 100vw), 50px);
}
.p-sub-not-found__btn-area {
  margin-top: clamp(50px, calc( 100/ 1250* 100vw), 100px);
}
/* PC */
@media screen and (min-width: 768px) {
}

/*=================================================
 *  PARTS
 *================================================*/
 .p-sub-prats{
  display: flex;
  flex-direction: column;
  gap:100px;
  margin-top:138px;
  margin-bottom:140px;
 }
 @media screen and (max-width: 767px) {
  .p-sub-prats{
    margin-top:50px;
    margin-bottom:50px;
  }
 }
 .p-sub-parts-floor-map{
  padding: 6.3% 8.4%;
  background-color:#fff;
  border-radius:30px;
 }
 .p-sub-parts-floor-map__title{
  display: flex;
  align-items: center;
  gap:20px;
  justify-content: center;
  margin-bottom:8%;
 }
 .p-sub-parts-floor-map__title>img{
  width:63px;
 }
 @media screen and (max-width: 767px) {
  .p-sub-parts-floor-map__title>img{
    width:30px;
  }
 }
 .p-sub-parts-floor-map__title__text{
  --minSize: 16;
  --maxSize: 32;
  --minViewportWidth: 600;
  --maxViewportWidth: 1200;
  font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  letter-spacing:0.2em;
  font-weight:700;
  color:#6D6948;
  text-transform: capitalize;
 }
 @media screen and (max-width: 767px) {
  .p-sub-parts-floor-map__title__text{
    font-size:20px;
  }
 }
 .p-sub-parts-floor-map-figures{
  width:100%;
  aspect-ratio: 1000/1280;
  display: flex;
  align-items: center;
  justify-content: center;
  position:relative;
 }
 @media screen and (max-width: 767px) {
  .p-sub-parts-floor-map-figures{
    aspect-ratio: unset;
    flex-direction: column;
    gap:40px;
  }
 }
 .p-sub-parts-first-floor-map-figures-1{
  position:absolute;
  top:0;
  left:0;
  width:26%;
 }
 @media screen and (max-width: 767px) {
  .p-sub-parts-first-floor-map-figures-1{
    position:relative;
    max-width:280px;
    width:100%;
  }
  .p-sub-parts-first-floor-map-figures-1:before{
    content:"1";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-2:before{
    content:"2";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-3:before{
    content:"3";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-4:before{
    content:"4";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-5:before{
    content:"5";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-6:before{
    content:"6";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-first-floor-map-figures-7:before{
    content:"7";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-1:before{
    content:"1";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-2:before{
    content:"2";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-3:before{
    content:"3";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-4:before{
    content:"4";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-5:before{
    content:"5";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .p-sub-parts-second-floor-map-figures-6:before{
    content:"6";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    aspect-ratio: 1/1;
    background-color:#6D6948;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:700;
    font-family: "Montserrat", sans-serif;
    border-radius:calc(1px * infinity);
    display:flex;
    justify-content:center;
    align-items:center;
  }
 }
 .p-sub-parts-first-floor-map-figures-1__text{
  margin-top:10px;
  --minSize: 8;
  --maxSize: 16;
  --minViewportWidth: 600;
  --maxViewportWidth: 1200;
  font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
 }
 @media screen and (max-width: 767px) {
  .p-sub-parts-first-floor-map-figures-1__text{
    font-size:15px;
  }
}
  .p-sub-parts-first-floor-map-figures-2{
    position:absolute;
    top:0;
    left:50%;
    translate:-50% 0;
    width:32%;
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-first-floor-map-figures-2{
      position:relative;
      max-width:280px;
      left:unset;
      width:100%;
      translate:unset;
    }
  }
  .p-sub-parts-first-floor-map-figures-2__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-first-floor-map-figures-2__text{
      font-size:15px;
    }
  }
  
    
  .p-sub-parts-first-floor-map-figures-3{
    position:absolute;
    top:0;
    right:0;
    width:26%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-3{
        position:relative;
        max-width:280px;
        width:100%;
        max-width:280px;
      }
    }
   .p-sub-parts-first-floor-map-figures-3__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-3__text{
        font-size:15px;
      }
    }
   .p-sub-parts-first-floor-map-figures-4{
    position:absolute;
    top:43%;
    left:0;
    width:26%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-4{
        position:relative;
        max-width:280px;
        width:100%;
      }
    }
   .p-sub-parts-first-floor-map-figures-4__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
        .p-sub-parts-first-floor-map-figures-4__text{
          font-size:15px;
        }
      }

   .p-sub-parts-first-floor-map-figures-5{
    position:absolute;
    top:43%;
    right:0;
    width:26%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-5{
        position:relative;
        max-width:280px;
        width:100%;
      }
    }
   .p-sub-parts-first-floor-map-figures-5__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
        .p-sub-parts-first-floor-map-figures-5__text{
          font-size:15px;
        }
      }
  .p-sub-parts-first-floor-map-figures-6{
    position:absolute;
    bottom:0;
    left:0;
    width:46%;
  }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-6{
        position:relative;
        max-width:280px;
        width:100%;
      }
    }
  .p-sub-parts-first-floor-map-figures-6__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-first-floor-map-figures-6__text{
      font-size:15px;
    }
  }
  .p-sub-parts-first-floor-map-figures-7{
    position:absolute;
    bottom:0;
    right:0;
    width:46%;
  }
    @media screen and (max-width: 767px) {
      .p-sub-parts-first-floor-map-figures-7{
        position:relative;
        max-width:280px;
        width:100%;
      }
    }
  .p-sub-parts-first-floor-map-figures-7__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-first-floor-map-figures-7__text{
      font-size:15px;
    }
  }
 .p-sub-parts-floor-map-figures__center{
  width:51.4%;
  display: block;
 }
  @media screen and (max-width: 767px) {
    .p-sub-parts-floor-map-figures__center{
      width:100%;
    }
  }

 .p-sub-parts-second-floor-map-figures-1{
  position:absolute;
  top:0;
  left:0;
  width:46%;
 }
  @media screen and (max-width: 767px) {
    .p-sub-parts-second-floor-map-figures-1{
      position:relative;
      max-width:280px;
      width:100%;
    }
  }
 .p-sub-parts-second-floor-map-figures-1__text{
  margin-top:10px;
  --minSize: 8;
  --maxSize: 16;
  --minViewportWidth: 600;
  --maxViewportWidth: 1200;
  font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
 }
  @media screen and (max-width: 767px) {
    .p-sub-parts-second-floor-map-figures-1__text{
      font-size:15px;
    }
  }
  .p-sub-parts-second-floor-map-figures-2{
    position:absolute;
    top:0;
    right:0;
    width:46%;
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-second-floor-map-figures-2{
      position:relative;
      max-width:280px;
      width:100%;
    }
  }
  .p-sub-parts-second-floor-map-figures-2__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-second-floor-map-figures-2__text{
      font-size:15px;
    }
  }
    
  .p-sub-parts-second-floor-map-figures-3{
    position:absolute;
    top:31%;
    left:0;
    width:26%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-3{
        position:relative;
        max-width:280px;
        width:100%;
      }
    }
   .p-sub-parts-second-floor-map-figures-3__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-3__text{
        font-size:15px;
      }
    }
   .p-sub-parts-second-floor-map-figures-4{
    position:absolute;
    top:31%;
    right:0;
    width:26%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-4{
        position:relative;
        max-width:280px;
        width:100%;
      }
   }
   .p-sub-parts-second-floor-map-figures-4__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-4__text{
        font-size:15px;
      }
    }
   .p-sub-parts-second-floor-map-figures-5{
    position:absolute;
    bottom:0;
    left:0;
    width:46%;
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-5{
        position:relative;
        max-width:280px;
        width:100%;
      }
   }
   .p-sub-parts-second-floor-map-figures-5__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
   }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-5__text{
        font-size:15px;
      }
    }
  .p-sub-parts-second-floor-map-figures-6{
    position:absolute;
    bottom:0;
    right:0;
    width:46%;
  }
    @media screen and (max-width: 767px) {
      .p-sub-parts-second-floor-map-figures-6{
        position:relative;
        max-width:280px;
        width:100%;
      }
   }

  .p-sub-parts-second-floor-map-figures-6__text{
    margin-top:10px;
    --minSize: 8;
    --maxSize: 16;
    --minViewportWidth: 600;
    --maxViewportWidth: 1200;
    font-size: clamp(calc(var(--minSize) * 1px), calc((var(--minSize) * 1px) + (var(--maxSize) - var(--minSize)) * ((100vw - (var(--minViewportWidth) * 1px)) / (var(--maxViewportWidth) - var(--minViewportWidth)))), calc(var(--maxSize) * 1px));
  }
  @media screen and (max-width: 767px) {
    .p-sub-parts-second-floor-map-figures-6__text{
      font-size:15px;
    }
  }
  .p-sub-parts-floor-map--pc{
    display:none;
  }
  @media screen and (min-width: 768px) {
    .p-sub-parts-floor-map--pc{
      display:block;
    }
  }
  .p-sub-parts-floor-map--sp{
    display:block;
  }
  @media screen and (min-width: 768px) {
    .p-sub-parts-floor-map--sp{
      display:none;
    }
  }

/*=================================================
 *  JavaScript用
 *================================================*/
/*  */
.js-xxx {
}
