@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: 'Yu Mincho',YuMincho,"Hiragino Mincho ProN",serif; /* FontFamily（日本語） */
  --font-family-en: "Marcellus", serif;/* FontFamily（英字） */
  --line-height-base: 1.6; /* 基本のline-height */
  --color-accent: #A26286; /* アクセントカラー */
  --color-brown: #906242; /* 茶色 */
  --color-brown-bg: rgba(193, 153, 143, 0.9); /* 背景カラー */
  --color-font-base: #333; /* 文字色 */
  --height-header: 60; /* SP表示時のヘッダーの高さ */
  --padding-inline: 20px; /* SP表示時の左右余白 */
  --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 {
    --height-header: 120; /* PC表示時のヘッダーの高さ */
    --padding-inline: 25px; /* PC表示時の左右余白 */
    --width-max-img: 100%; /* PC表示時の最大画像幅 */
  }
}


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

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}
[lang=en] {
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

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

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

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

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

/* PC */
@media screen and (min-width: 768px) {
  html{
    font-size: min(calc( 8/var(--l-inner) * 100vw + .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-pc-only {
  display: none;
}
#top .u-page-only {
  display: none;
}
#page .u-top-only {
  display: none;
}
/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}

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

.l-top-main {
  overflow-x: hidden;
}
.l-btn-area {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
/*wrapper*/
.l-wrapper {
  position: relative;
}
/* PC */
@media screen and (min-width: 768px) {
  .l-btn-area {
    flex-direction: row;
    justify-content: center;
  }
  
}

/*=================================================
 *  Component 共通部品
 *================================================*/
/*------------------------------------------
 *  テキスト
 *------------------------------------------*/
.c-txt {
  font-weight: 500;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: 1.6;
  letter-spacing: 0.05em;

}
.c-txt + .c-txt {
  margin-top: 1.6em;
}
 /*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
.c-hamburger {
  padding: 10px;
  width: 40px;
  height: 40px;
  /*background: rgba(255,255,255,0.9);*/
}
.c-hamburger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
}
.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: var(--color-accent);
}
.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);
}
/*------------------------------------------
 *  下層ページヘッダー
 *------------------------------------------*/
.c-sub-mv {
  position: relative;
  aspect-ratio: 2160 / 826;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  max-height: 300px;
}
.c-sub-mv::before {
  content: '';
  display: inline-block;
  width: 100%;
  aspect-ratio: 2160 / 926;
  background-image: url("../img/page/mv-bg.png");
  background-position: 65% top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 50vw;
  top: -10%;
  z-index: -1;
  min-width: 800px;
  /*max-height: 720px;*/
  transform: translateX(-50%);
}
.c-sub-mv__inner {
  margin-top: 20px;
}
/*PC*/
@media screen and (min-width: 768px) {
  .c-sub-mv::before {
    background-size: contain;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  
}
/*大きいPC*/
@media screen and (min-width: 1250px) {
  .c-sub-mv__inner {
    margin-top: 3vw;
  }
}
/*大きいPC*/
@media screen and (min-width: 1680px) {
  .c-sub-mv::before {
    background-size: cover;
    background-position: center bottom;
  }
  
}

/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.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: 35%;
  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;
    top: 50%;
    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-sec-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-sec-ttl__main {
  color: var(--color-accent);
  font-weight: 400;
  font-size: clamp(40px, calc(70 / 1250* 100vw), 85px);
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-sec-ttl__sub {
  color: var(--color-accent);
  font-weight: 400;
  font-weight: 500;
  font-size: clamp(12px, calc(20 / 1250* 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.5em;
}
.c-sec-subttl .c-sec-ttl__main {
  font-size: clamp(32px, calc(48 / 1250* 100vw), 48px);
}

/* PC */
@media screen and (min-width: 768px) {
}
/*------------------------------------------
 *  下層ページセクションタイトル
 *------------------------------------------*/
.c-page-ttl {
  margin-top: clamp(30px, calc(60 / 1250 * 100vw), 60px);
  color: #C1998F;
  font-weight: 600;
  font-size: clamp(24px, calc(38 / 1250 * 100vw), 38px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-page-subttl {
  margin-top: clamp(25px, calc(50 / 1250 * 100vw), 50px);
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1250 * 100vw), 18px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;

}
/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
 /* ベーシックなボタン */
.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: calc(500/16*1rem);
  height: clamp(60px, calc(108 / 1250* 100vw), 108px);
  background-color: #C1998F;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(20px, calc(24 / 1250* 100vw), 24px);
  letter-spacing: .1em;
  color: #fff;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  border-radius: 50ch;
}

.c-btn:hover,
.c-btn:focus-visible {
  opacity: 0.7;
}

/* 戻るボタン・送信ボタン・TOPへ戻るボタン */
.c-btn-return {
  max-width: calc(340/16*1rem);
  background-color: #C2BEBD;
  height: clamp(60px, calc(90 / 1250* 100vw), 90px);
  margin-top: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.c-btn-home ,
.c-btn-send {
  max-width: calc(340/16*1rem);
  height: clamp(60px, calc(90 / 1250* 100vw), 90px);
}
.c-btn-home {
  text-transform: uppercase;
}
/*お問い合わせボタン*/
.c-btn-contact {
  background: url("../img/common/contact-btn-bg.png");
  border: solid 2px var(--color-brown);
  color: var(--color-brown);
  padding-left: clamp(37px, calc(74 / 1250* 100vw), 74px);
  position: relative;
  max-width: 461px;
}
.c-btn-contact::before {
  content: '';
  display: inline-block;
  background-image: url("../img/common/icon-mail.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(23px, calc(46 / 1250 * 100vw), 46px);
  aspect-ratio: 46 / 33;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
/* PC */
@media screen and (min-width: 768px) {
  .c-btn-return {
    margin-top: 0;
    margin-right: clamp(40px, calc(80 / 1250* 100vw), 80px);
  }
}
/*------------------------------------------
 *  ページトップ
 *------------------------------------------*/
.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(100 / 1250* 100vw), 100px);
  height: clamp(50px, calc(100 / 1250* 100vw), 100px);
  border-radius: 50vh;
  background-color: #fff;
  border: solid 1px #C1998F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-page-top a:hover {
  background-color: #C1998F;
}
.c-page-top a img {
  width: clamp(10px, calc(20 / 1250* 100vw), 20px);
}
.c-page-top a .u-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity:0;
  transition: all 0.3s;
}

.c-page-top a:hover .u-hover {
  opacity: 1;
}
/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
.c-form__input-wrap {
  background-color: #F8F3F2;
  border-radius: 20px;
  padding: clamp(30px, calc(100 / 1250* 100vw), 100px) clamp(20px, calc(100 / 1250* 100vw), 100px);
  margin-top: clamp(30px, calc(60 / 1250* 100vw), 60px);
  margin-bottom: clamp(50px, calc(100 / 1250* 100vw), 100px);
}
.c-form__row {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.c-form__row + .c-form__row {
  margin-top: clamp(15px, calc(30 / 1250* 100vw), 30px);
  padding-top: clamp(15px, calc(30 / 1250* 100vw), 30px);
}
.c-form__row + .c-form__row.no-ttl {
  margin-top: clamp(12px, calc(20 / 1250* 100vw), 20px);
}
.c-form__head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
  position: relative;
}
.c-form__data {
  position: relative;
  width: 100%;
}
/* タイトルラベル */
.c-form__ttl {
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  letter-spacing: .1em;
  line-height: 1.5;
}
/* 必須ラベル */
.c-form__required {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(44/16*1rem);
  height: calc(22/16*1rem);
  border-radius: 50vh;
  font-weight: 800;
  font-size: clamp(10px, calc(12 / 1250 * 100vw), 12px);
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
  background-color: #C1998F;
}
.c-form__row.no-ttl .c-form__required {
  display: none;
}
.c-form__required.u-pc-only {
  display: none;
}
.c-form__required.u-sp-only {
  margin-left: calc(20/16*1rem)
}
/* 入力項目 */
.c-form__input {
  width: 100%;
  padding: calc(10/16*1rem) calc(20/16*1rem);
  border-radius: 12px;
  background: #fff;
  border: 1px solid #C1998F;
  position: relative;
}
.c-form__input--textarea{
  line-height: 1.4;
}
.c-form__input + .c-form__input {
  margin-top: calc(20/16*1rem);
}
.c-form__input::-webkit-input-placeholder {
  font-size: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  letter-spacing: .01em;
  color: #bbb;
}
.c-form__input::-moz-placeholder {
  font-size: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  letter-spacing: .04em;
  color: #bbb;
}
.c-form__input:-ms-input-placeholder {
  font-size: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  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: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  letter-spacing: .04em;
  color: #bbb;
}
/* ラジオボタン */
input[type="radio"], 
input[type="checkbox"] {
  display: none;
}
.c-form__radio {
  display: flex;
  flex-direction: column;
}
.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  line-height: 2;
  font-weight: 500;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  letter-spacing: .05em;
  display: block;
}
.c-form__radio-item label::before,
.c-form__radio-item label::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
}
.c-form__radio-item label::before {
  width: 22px;
  height: 22px;
  left: 0;
  background-color: #fff;
  border: 2px solid #C1998F;
}
.c-form__radio-item label::after {
  width: 14px;
  height: 14px;
  left: 4px;
  background-color: #C1998F;
  opacity: 0;
}
.c-form__radio-item input[type="radio"]:checked + label::after {
  opacity: 1;
}
/* セレクトボックス */
.c-form__select-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #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;
  margin-left: 1.8em;
}
.c-form__checkbox-label::before{
  content: '';
  display: block;
  position: absolute;
  top: 1em;
  left: -1.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #C1998F;
  border-radius: 3px;
}
.c-form__checkbox-label:after {
  position: absolute;
  content: "";
  display: block;
  top: 1em;
  left: -1.45em;
  width: 7px;
  height: 11px;
  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 {
  color: #1a049b;
}
.c-form__checkbox:checked + .c-form__checkbox-label:before {
  background-color: #C1998F;
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  opacity: 1;
}
.c-form-counter {
  text-align: right;
  color: #999;
  font-size: clamp(12px, calc(14 / 1250 * 100vw), 14px);
}
/* 内容確認ページ */
.c-form__confirm-wrap {
  margin-top: clamp(50px, calc(100 / 1250 * 100vw), 100px);
  margin-bottom: clamp(50px, calc(100 / 1250 * 100vw), 100px);
}
.c-form__confirm-data {
  display: block;
  width: 100%;
  font-size: clamp(16px, calc(18 / 1250 * 100vw), 18px);
  letter-spacing: .1em;
  line-height: 1.5;
  position: relative;
}
.confirm-page .c-form__row + .c-form__row {
  border-top:solid 1px #E2DFDA;
}
.confirm-page .c-form__row:last-of-type {
  border-bottom:solid 1px #E2DFDA;
  padding-bottom: clamp(15px, calc(30 / 1250 * 100vw), 30px);
}
.confirm-page .c-form__ttl {
  font-weight: 700;
}
.confirm-page .p-sub-contact__btn-area {
  margin-top: clamp(40px, calc(70 / 1250 * 100vw), 70px);
}
/* PC */
@media screen and (min-width: 768px) {
  .c-form__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    line-height: 2;
  }
  .c-form__head {
    width: calc(200/16*1rem);
    justify-content: flex-end;
    padding-right: calc(30/16*1rem);
    text-align: right;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }
  .c-form__head.u-align-top {
    align-self: flex-start;
    margin-top: 0.3em;
  }
  .confirm-page .c-form__head.u-align-top {
    margin-top: 0;
  }
  .c-form__data {
    padding-left: calc(74/16*1rem);
    width: calc(100% - calc(200/16*1rem));
  }
  /* 必須ラベル */
  .c-form__required.u-pc-only {
    display: flex;
    position: absolute;
    right: inherit;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-form__required.u-sp-only {
    display: none;
  }
  .u-align-top .c-form__required {
    top: 0;
    transform: translateY(0);
    margin-top: 0.5em;
  }
  .confirm-page .u-align-top .c-form__required {
    margin-top: 0.1em;
  } 
  .c-form__row.no-ttl .c-form__required {
    display: flex;
  }
  .c-form__input::-webkit-input-placeholder {
    font-size: calc(16/16*1rem);
    letter-spacing: .04em;
  }
  .c-form__radio {
    flex-direction: row;
    flex-wrap: wrap;
    line-height: 2.4;
  }
  .c-form__radio-item {
    margin-right: 2em;
  }
  .u-column .c-form__radio-item {
    margin-right: 0;
    width: 50%;
  }
  /* 内容確認ページ */
  .confirm-page .c-form__row {
    padding-inline: clamp(15px, calc(30 / 1250 * 100vw), 30px)
  }
  .c-form__confirm-data {
    padding-left: calc(74 / 16 * 1rem);
  }
  .confirm-page .c-form__ttl {
    font-weight: 500;
  }

}
/* 大きいPC */
@media screen and (min-width: 1100px) {
  .u-column .c-form__radio-item {
    margin-right: 0;
    width: 33.33%;
  }
}
/*=================================================
 *  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;
  position: relative;
  overflow-x: 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);
  max-width: 100vw;
}

 /* インナー */
.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: inherit;
}

/* ロゴ */
.p-header__logo {
  width: clamp(90px, calc(152 / 1250* 100vw), 160px);
}

/* メニュー */
/*.p-header__menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
}*/
.p-header__hamburger {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: calc(var(--l-layer__drawer) + 1);
}
.p-header__menu {
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  top: 0;
  bottom: 0;
  right: 0;
  padding: 60px 20px 20px;
  width: 50%;
  min-width: calc(280/16*1rem);;
  height: 100vh;
  background: var(--color-brown-bg);
  text-align: right;
  z-index: var(--l-layer__drawer);
  transition: all 0.3s ease-in;
}
.is-drawerActive .p-header__menu {
  opacity: 1;
  transform: translateX(0);
}
.p-header__menu-item{
  padding: 1em;
}
.p-header__menu-item a {
  position: relative;
  font-size: calc(20/16*1rem);;
  color: #fff;
  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%;
}

/* PC */
@media screen and (min-width: 768px) {
/* メニュー */
  
  .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 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .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;
  }
  .p-header__menu-item a{
    font-size: calc(20/16*1rem);;
    color: var(--color-font-base);
  }
  .p-header__menu-item.u-sp-only {
    display: none;
  }
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  padding-top: clamp(40px, calc(60 / 1250* 100vw), 60px);
  position: relative;
  overflow: hidden;
}
.p-footer::before {
  content: '';
  display: inline-block;
  width: 100%;
  aspect-ratio: 1684/585;
  background-image: url("../img/common/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 1000px;
  position: absolute;
  left: 50vw;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-footer::before {
    transform: translateX(-500px);
  }
}
.p-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__right {
  display: none;
}
.p-footer__logo {
  width: clamp(90px, calc(152 / 1250 * 100vw), 160px);
}
.p-footer__txt {
  line-height: 2;
  margin-top: clamp(20px, calc(40 / 1250 * 100vw), 40px);
}
.p-footer__menu {
  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;
}
.p-footer__menu-item + .p-footer__menu-item {
  margin-top: 1em;
}
.p-footer__menu-item a {
  font-size: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(50/16*1rem);
  padding-bottom: calc(30/16*1rem);
  line-height: 1;
}
.p-footer__copyright {
  color: var(--color-accent);
  line-height: 1;
}
.p-footer__bottom .p-footer__menu-item a {
  font-size: clamp(12px, calc(14 / 1250 * 100vw), 14px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer::before {
    background-position: right;
  }
  .p-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .p-footer__left {
    align-items: flex-start;
  }
  .p-footer__right {
    display: block;
    margin-top: clamp(20px, calc(40 / 1250 * 100vw), 40px);
  }
  .p-footer__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-footer__menu-item + .p-footer__menu-item {
    margin-top: 0;
    margin-left: clamp(20px, calc(30 / 1250 * 100vw), 30px);
  }
  .p-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
}

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

/*----------------- MV -----------------*/
.p-top-mv {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 600px;
}
.p-top-mv::before {
  content: '';
  display: inline-block;
  width: 100%;
  aspect-ratio: 2160/1950;
  background-image: url("../img/top/mv-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.p-top-mv::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/mv-flower.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(120px, calc(360 / 1250* 100vw), 400px);
  aspect-ratio: 77/150;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: -1;
}
.p-top-mv__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.p-top-mv__txt-wrap {
  max-width: 640px;
}
.p-top-mv__txt-01 {
  text-transform: inherit;
  color: var(--color-accent);
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.p-top-mv__ttl {
  font-size: clamp(22px, calc(44 / 1250* 100vw), 55px);
  margin-top: 0.5em;
  font-weight: 400;
}
.c-txt + .p-top-mv__txt-02 {
  line-height: 2.5;
  width: 100%;
  margin-top: clamp(40px, calc(60 / 1250* 100vw), 60px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv::after {
    top: 110px;
  }
  
}
/* PC */
@media screen and (min-width: 960px) and (max-width: 1439px) {
  .p-top-mv__txt-wrap {
    margin-top: 5vw;
  }
  
}
/* 小さいSP */
@media screen and (max-width: 450px) {
  .p-top-mv__txt-wrap {
    margin-top: 30px;
  }
  .c-txt + .p-top-mv__txt-02 {
    width: 100%;
  }
}
/* 大きいPC */
@media screen and (min-width: 1440px) {
  .p-top-mv {
    height: 1000px;
    min-height: inherit;
  }
}
/*----------------- concept -----------------*/
.p-top-concept{
  /*margin-top: clamp(95px, calc(190 / 1250* 100vw), 190px);*/
  position: relative;
}
.p-top-concept::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/concept-bg1.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(170px, calc(500 / 1250* 100vw), 750px);
  aspect-ratio: 750/1950;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-10%);
  z-index: -1;
}
.p-top-concept::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/concept-bg2.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(160px, calc(472 / 1250* 100vw), 708px);
  aspect-ratio: 472/946;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-10%);
  z-index: -1;
}
.p-top-concept__inner {
  position: relative;
}
.p-top-concept__inner::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/concept-leaf.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(39px, calc(116 / 1250* 100vw), 138px);
  aspect-ratio: 116/138;
  position: absolute;
  top: clamp(80px, calc(120 / 1250* 100vw), 120px);
  right: 0;
  transform: translateX(20%);
  z-index: 1;
}
.p-top-concept__main-contents {
  background-color: var(--color-brown-bg);
  max-width: 1000px;
  margin: clamp(40px, calc(80 / 1250* 100vw), 80px) auto 0;
  padding: clamp(40px, calc(67 / 1250* 100vw), 67px) clamp(20px, calc(40 / 1250* 100vw), 40px) clamp(50px, calc(80 / 1250* 100vw), 80px);
  position: relative;
}
.p-top-concept__main-contents::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/concept-flower-left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(96px, calc(289 / 1250* 100vw), 289px);
  aspect-ratio: 289/398;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%,-30%);
  z-index: 1;
}
.p-top-concept__main-contents::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/concept-flower-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(39px, calc(116 / 1250* 100vw), 116px);
  aspect-ratio: 116/175;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0,50%);
  z-index: 1;
}
.p-top-concept__main-txt {
  text-align: center;
  font-size: clamp(22px, calc(36 / 1250* 100vw), 36px);
  font-weight: 600;
  line-height: 1.8;
  color: #fff;
}
.p-top-concept__txt {
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  line-height: 2;
  margin: clamp(200px, calc(35 / 1250* 100vw), 35px) auto 0;
  text-align: center;
  color: #fff;
  max-width: 756px;
}
.p-top-concept__subttl {
  font-size: clamp(20px, calc(36 / 1250* 100vw), 36px);
  line-height: 1.6;
  text-align: center;
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
.p-top-concept__list {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
.p-top-concept__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 7%;
}
.p-top-concept__item:not(:last-of-type) {
  border-right: solid 1px #E5D4D1;
}
.p-top-concept__item-number {
  font-weight: 400;
  font-size: clamp(20px, calc(36 / 1250* 100vw), 36px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-top-concept__item-ttl {
  font-weight: 500;
  font-size: clamp(18px, calc(20 / 1250* 100vw), 20px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #A26286;
}
.p-top-concept__item-subttl {
  font-weight: 500;
  font-size: clamp(20px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-concept__item-txt {
  font-size: 16px;
  margin-top: clamp(18px, calc(24 / 1250* 100vw), 24px);

}
/* PC */
@media screen and (min-width: 1250px) {
  .p-top-concept__inner::after {
    transform: translateX(50%);
  }
  .p-top-concept__main-contents::before {
    transform: translate(-75%,-30%);
  }
  .p-top-concept__main-contents::after {
    transform: translate(50%,50%);
  }
}
/* 小さいSP */
@media screen and (max-width: 700px) {
  .p-top-concept__list {
    flex-direction: column;
    max-width: 420px;
    margin: clamp(35px, calc(70 / 1250* 100vw), 70px) auto 0;
  }
  .p-top-concept__item {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .p-top-concept__item:not(:last-of-type) {
    border-right: none;
    border-bottom: solid 1px #E5D4D1;
  }
}
/*----------------- message -----------------*/
.p-top-message {
  margin-top: clamp(80px, calc(160 / 1250* 100vw), 160px);
  position: relative;
}
.p-top-message::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/message-bg-left.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(149px, calc(447.11 / 1250* 100vw), 670px);
  aspect-ratio: 447.11/896;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-5%,10%);
  z-index: -1;
}
.p-top-message::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/message-bg-right.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(174px, calc(521 / 1250* 100vw), 781px);
  aspect-ratio: 521/1354;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%,-25%);
  z-index: -1;
}
.p-top-message__main-contents {
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
.p-top-message__txt {
  line-height: 2;
  text-align: center;
}
.p-top-message__main-contents + .c-sec-ttl {
  margin-top: clamp(80px, calc(160 / 1250 * 100vw), 160px);
}
.p-top-profile__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(40px, calc(80 / 1250 * 100vw), 80px);
}
.p-top-profile__img-column {
  max-width: 400px;
  margin-bottom: clamp(30px, calc(60 / 1250* 100vw), 60px);
}
.p-top-profile__name-en {
  
  font-weight: 500;
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;

  margin-top: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-profile__name-jp {
 text-transform: capitalize;
  text-align: center;
  color: #A26286;
  font-weight: 400;
  font-size: clamp(24px, calc(36 / 1250* 100vw), 36px);
  line-height: 1;
  letter-spacing: 0.05;
  margin-top: 0.5em;
}
.p-top-profile__list {
  display: flex;
  align-items: baseline;
  border-bottom: solid 1px #E5D4D1;
  padding-bottom: clamp(10px, calc(20 / 1250* 100vw), 20px);
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px)
}
.p-top-profile__list:not(:last-of-type) {
  margin-bottom: clamp(10px, calc(20 / 1250* 100vw), 20px);
}
.p-top-profile__list:first-of-type {
  margin-top: clamp(10px, calc(20 / 1250* 100vw), 20px);
}
.p-top-profile__list dt {
  width: clamp(80px, calc(92 / 1250* 100vw), 92px);
  flex: 0 0 auto;
}
/*代表写真提供までのレイアウト・写真が来たら削除*/
.p-top-profile__name-en {
  margin-top: 0;
}
.p-top-profile__name-jp {
  margin-bottom: clamp(30px, calc(50 / 1250* 100vw), 50px);
  color: var(--color-font-base);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-profile__contents {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-top-profile__img-column {
    width: 33.33%;
    margin-bottom: 0;
  }
  .p-top-profile__txt-column {
    width: 58.33%;
  }
  .p-top-profile__list {
    padding-inline: clamp(10px, calc(20 / 1250* 100vw), 20px);
  }
  
  /*代表写真提供までのレイアウト・写真が来たら削除*/
  .p-top-profile__contents {
    justify-content: center;
  }
  .p-top-profile__txt-column {
    width: 100%;
    max-width: 640px;
  }
  
}
/*----------------- case study -----------------*/
.p-top-case {
  margin-top: clamp(130px, calc(260 / 1250* 100vw), 260px);
  position: relative;
}
.p-top-case::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/case-bg-left1.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(166px, calc(498 / 1250* 100vw), 862.5px);
  aspect-ratio: 498/998;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-20%);
  z-index: -1;
}
.p-top-case::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/case-bg-right.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(192px, calc(575 / 1250* 100vw), 575px);
  aspect-ratio: 575/1152;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-20%);
  z-index: -1;
}
.p-top-case__wrapper::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/case-bg-left2.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(78px, calc(224.66 / 1250* 100vw), 337px);
  aspect-ratio: 224.66/451;
  position: absolute;
  top: clamp(333px, calc(998 / 1250* 100vw), 998px);
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.p-top-case__slider-wrap {
  margin: clamp(60px, calc(80 / 1250* 100vw), 80px) auto 0;
}
.p-top-case__item-inner {
  border: solid 1px #C1998F;
  border-radius: clamp(30px, calc(60 / 1250* 100vw), 60px);
  overflow: hidden;
}
.p-top-case__ttl-wrap {
  background-color: #FFF9F6;
  border-bottom: solid 1px #C1998F;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, calc(36 / 1250* 100vw), 36px) 20px;
}
.p-top-case__ttl {
  font-weight: 600;
  font-size: clamp(18px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-top-case__subttl {
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
.p-top-case__contents-wrap {
  padding: clamp(20px, calc(30 / 1250* 100vw), 30px) clamp(20px, calc(50 / 1250* 100vw), 50px) clamp(20px, calc(40 / 1250* 100vw), 40px);
  background-color: #fff;
}
.p-top-case__persona-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: solid 1px #E5D4D1;
  margin-bottom: clamp(20px, calc(40 / 1250* 100vw), 40px);
  padding: 0 clamp(0px, calc(10 / 1250* 100vw), 10px) clamp(10px, calc(20 / 1250* 100vw), 20px);
}
.p-top-case__icon-wrap {
  display: none;
  width: clamp(55px, calc(110 / 1250* 100vw), 110px);
  flex: 0 0 auto;
  margin-bottom: clamp(15px, calc(30 / 1250* 100vw), 30px);
}
.p-top-case__icon-thumb {
  text-align: center;
  font-size: clamp(12px, calc(14 / 1250* 100vw), 14px);
  line-height: 1.8;
  margin-top: 0.5em;
}
.p-top-case__persona-txt {
  line-height: 1.8;
}
.p-top-case__contents-ttl {
  font-weight: 600;
  font-size: clamp(18px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 0 clamp(0px, calc(10 / 1250* 100vw), 10px);
  margin-bottom: clamp(16px, calc(20 / 1250* 100vw), 20px);
}
.p-top-case__contents-txt {
  padding: 0 clamp(0px, calc(10 / 1250* 100vw), 10px);
  line-height: 1.8;
}
.p-top-case__staff-wrap {
  margin: 0 clamp(0px, calc(10 / 1250* 100vw), 10px);
  background-color: #FFF9F6;
  margin-top: clamp(30px, calc(40 / 1250* 100vw), 40px);
  padding: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-case__staff-ttl {
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1250* 100vw), 18px);
  text-align: center;
  margin-bottom: clamp(20px, calc(24 / 1250* 100vw), 24px);
  line-height: 1;
}
.p-top-case__staff-txt {
  line-height: 1.8;
}
.p-top-case__read-more-wrap input {
  display: none;
}
.p-top-case__more-btn {
  display: block;
  color: #C1998F;
  margin-top: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
}
.p-top-case__more-btn span {
  font-weight: 600;
  font-size: clamp(14px, calc(16 / 1250* 100vw), 16px);
  line-height: calc(25/16);
  letter-spacing: 0.05em;
}
.p-top-case__more-btn .u-close {
  display: none;
}
.p-top-case__more-btn::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/more-btn.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/*続きを読むクリックで全文表示*/
.p-top-case__staff-txt ,
.p-top-case__contents-txt {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
input:checked + .p-top-case__staff-txt + .p-top-case__more-btn .u-close,
input:checked + .p-top-case__contents-txt + .p-top-case__more-btn .u-close,
input:checked + .p-top-case__staff-txt ,
input:checked + .p-top-case__contents-txt {
  display: block;
}
input:checked + .p-top-case__staff-txt + .p-top-case__more-btn .u-open,
input:checked + .p-top-case__contents-txt + .p-top-case__more-btn .u-open{
  display: none;
}
input:checked + .p-top-case__staff-txt + .p-top-case__more-btn::before,
input:checked + .p-top-case__contents-txt + .p-top-case__more-btn::before {
  background-image: url("../img/top/close-btn.svg");
}
/*slickカスタマイズ*/
.p-top-case__slider .slick-prev,
.p-top-case__slider .slick-next {
  width: clamp(50px, calc(100 / 1250 * 100vw), 100px);
  height: clamp(50px, calc(100 / 1250 * 100vw), 100px);
  border-radius: 50vh;
  background-color: #fff;
  border: solid 1px #C1998F;
  z-index: 1;
}
.p-top-case__slider .slick-next {
  transform: translate(50%,-50%);
}
.p-top-case__slider .slick-prev {
  transform: translate(-50%,-50%);
}
.p-top-case__slider .slick-prev::after,
.p-top-case__slider .slick-next::after,
.p-top-case__slider .slick-prev::before,
.p-top-case__slider .slick-next::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  height: clamp(10px, calc(20 / 1250* 100vw), 20px);
  opacity:1;
  transform: translate(-50%,-50%);
  aspect-ratio: 42/22;
  transition: all 0.3s;
}
.p-top-case__slider .slick-next::before {
  background-image: url("../img/common/arrow-right.svg")
}
.p-top-case__slider .slick-next::after {
  background-image: url("../img/common/arrow-right-white.svg");
  opacity: 0;
}
.p-top-case__slider .slick-prev::before {
  background-image: url("../img/common/arrow-left.svg")
}
.p-top-case__slider .slick-prev::after {
  background-image: url("../img/common/arrow-left-white.svg");
  opacity: 0;
}
.p-top-case__slider .slick-prev:hover,
.p-top-case__slider .slick-next:hover {
  background-color: #C1998F;
}
.p-top-case__slider .slick-prev:hover::after,
.p-top-case__slider .slick-next:hover::after {
  opacity: 1;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-case__slider-wrap {
    padding-inline: clamp(60px, calc(120 / 1250* 100vw), 120px);
  }
  .p-top-case__persona-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
  .p-top-case__icon-wrap {
    display: block;
    margin-right: clamp(25px, calc(50 / 1250* 100vw), 50px);
  }
  .p-top-case__staff-txt ,
  .p-top-case__contents-txt {
    display: block;
  }
  .p-top-case__more-btn {
    display: none;
  }
  /*slickカスタマイズ*/
  .p-top-case__slider .slick-next {
    transform: translate(120%,-50%);
  }
  .p-top-case__slider .slick-prev {
    transform: translate(-120%,-50%);
  }
}
/*----------------- company -----------------*/
.p-top-company {
  margin-top: clamp(130px, calc(260 / 1250* 100vw), 260px);
  position: relative;
}
.p-top-company::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/company-bg-left.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(129px, calc(386.23 / 1250* 100vw), 579px);
  aspect-ratio: 386.23/774;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-40%);
  z-index: -1;
}
.p-top-company::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/company-bg-right.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(295px, calc(686 / 1250* 100vw), 1029px);
  aspect-ratio: 686/1784;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-20%);
  z-index: -1;
}
.p-top-company__wrapper::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/company-flower.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(96px, calc(288 / 1250* 100vw), 288px);
  aspect-ratio: 288/363;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(90%);
  z-index: 1;
}
.p-top-company__inner {
  position: relative;
}
.p-top-company__inner::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/company-leaf1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(53px, calc(160 / 1250* 100vw), 160px);
  aspect-ratio: 160/167;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.p-top-company__inner::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/company-leaf2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(23px, calc(68 / 1250* 100vw), 68px);
  aspect-ratio: 68/103;
  position: absolute;
  top: 0;
  left: clamp(33px, calc(120 / 1250* 100vw), 120px);
  transform: translateY(-180%);
  z-index: 1;
}
.p-top-company__contents {
  margin: clamp(40px, calc(80 / 1250* 100vw), 80px) auto 0;
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
.p-top-company__img-wrap ,
.p-top-company__txt-wrap {
  width: 100%;
}
.p-top-company__item {
  display: flex;
  border-bottom: solid 1px #E5D4D1;
  padding-bottom: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-company__item:not(:last-of-type) {
  margin-bottom: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-company__item dt {
  width: clamp(100px, calc(120 / 1250* 100vw), 120px);
  flex: 0 0 auto;
}
.p-top-company__item-flex {
  display: flex;
  flex-direction: column;
}
.p-top-company__item-flex + .p-top-company__item-flex {
  margin-top: clamp(20px, calc(24 / 1250* 100vw), 24px);
}
.p-top-company__map-wrap {
  margin-top: clamp(30px, calc(60 / 1250* 100vw), 60px);
  position: relative;
  width: 100%;
  aspect-ratio: 600/400;
}
.p-top-company__map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-company__wrapper::after {
    bottom: inherit;
    top: 33.33vw;
    transform: translateY(40%);
  }
  .p-top-company__contents {
    max-width: inherit;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .p-top-company__txt-wrap {
    width: 41.67%;
  }
  .p-top-company__img-wrap {
    margin-top: 0;
  }
  .p-top-company__item-flex {
    flex-direction: row;
  }
  .p-top-company__item-flex dt {
    width: clamp(110px, calc(134 / 1250* 100vw), 134px);
    flex: 0 0 auto;
  }
  .p-top-company__map-wrap {
    width: 50%;
    margin-top: 0;
  }
}
/* 大きいPC */
@media screen and (min-width: 1250px) {
  .p-top-company__wrapper::after {
    top: 416.25px;
  }
}
/*----------------- news -----------------*/
.p-top-news {
  margin-top: clamp(130px, calc(260 / 1250* 100vw), 260px);
  padding-bottom: clamp(120px, calc(240 / 1250* 100vw), 240px);
  position: relative;
}
.p-top-news::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/news-bg-left1.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(74px, calc(222.67 / 1250* 100vw), 334px);
  aspect-ratio: 222.67/447;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.p-top-news::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/news-bg-right.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(480px, calc(1440 / 1250* 100vw), 1800px);
  aspect-ratio: 1440/890;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.p-top-news__inner::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/news-bg-left2.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  width: clamp(196px, calc(588 / 1250* 100vw), 882px);
  aspect-ratio: 588/931.86;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-top-news__list {
  width: 100%;
  max-width: 1000px;
  margin: clamp(40px, calc(80 / 1250* 100vw), 80px) auto 0;
}
.p-top-news__item {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #E5D4D1;
  padding-bottom: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-news__item:not(:last-of-type) {
  margin-bottom: clamp(20px, calc(30 / 1250* 100vw), 30px);
}
.p-top-news__date {
  margin-bottom: 0.5em;
}
.p-top-news__ttl {
  font-weight: 600;
}
.p-top-news__ttl + .p-top-news__txt {
  margin-top: 0.5em;
}
.c-txt + .p-top-news__link {
  margin-top: 0.5em;
  display: block;
  text-decoration: underline;
  color: var(--color-accent);
  font-weight: 600;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-news__item {
    flex-direction: row;
    padding-inline: clamp(20px, calc(30 / 1250* 100vw), 30px);
  }
  .p-top-news__date {
    width: clamp(100px, calc(120 / 1250* 100vw), 120px);
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  
}
/*----------------- Contact -----------------*/
.p-top-contact {
  background-color: var(--color-brown-bg);
  color: #fff;
  position: relative;
  padding-top: clamp(65px, calc(130 / 1250* 100vw), 130px);
  padding-bottom: clamp(50px, calc(100 / 1250* 100vw), 100px);
}
.p-top-contact__inner {
  position: relative;
}
.p-top-contact__inner::before {
  content: '';
  display: inline-block;
  background-image: url("../img/top/contact-flower.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(98px, calc(294 / 1250* 100vw), 294px);
  aspect-ratio: 294/431;
  position: absolute;
  top: 50%;
  right: 75%;
  transform: translate(0,-68%);
  z-index: 1;
}
.p-top-contact__inner::after {
  content: '';
  display: inline-block;
  background-image: url("../img/top/contact-star.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: clamp(143px, calc(428 / 1250* 100vw), 428px);
  aspect-ratio: 428/362;
  position: absolute;
  top: 30%;
  left: 72%;
  transform: translate(0,-65%);
  z-index: 1;
}
.p-top-contact .c-sec-ttl__sub ,
.p-top-contact .c-sec-ttl__main {
  color: #fff;
}
.p-top-contact__btn-area {
  margin-top: clamp(30px, calc(50 / 1250* 100vw), 50px);
}
.p-top-contact__txt {
  margin-top: clamp(30px, calc(60 / 1250* 100vw), 60px);
  font-size: clamp(20px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-contact__inner::before {
    right: 78%;
  }
  .p-top-contact__inner::after {
    transform: translate(0,-50%);
    left: 75%;
  }
}

/* 小さいSP */
@media screen and (max-width: 500px) {
  .p-top-contact__inner::before {
    top: 23%;
  }
  .p-top-contact__inner::after {
    top: 28%;
    left: 78%;
  }
}

/*------------------------------------------
 *  CONTACTページ
 *------------------------------------------*/
.p-sub-contact__pp {
  width: fit-content;
  display: block;
  margin: 0 auto;
  margin-top: clamp(60px, calc(100 / 1250* 100vw), 100px);
  font-size: clamp(16px, calc(20 / 1250* 100vw), 20px);
  line-height: 2;
}
.p-sub-contact__pp a {
  position: relative;
}
.p-sub-contact__pp a::after {
  content: '';
  display: inline-block;
  background-image: url("../img/common/blank.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  margin-right: 0.5em;
  aspect-ratio:19/18;
  transform: translateY(10%);
}
.p-sub-contact__btn-area {
  margin-top: clamp(30px, calc(40 / 1250* 100vw), 40px);
}
.p-sub-contact__btn-area>form {
  width: 100%;
  display: flex;
  justify-content: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-contact__pp a::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s;
  }
  .p-sub-contact__pp a:hover::before {
    transform: scaleX(1);
  }
}

/*------------------------------------------
 *  お問い合わせ完了ページ
 *------------------------------------------*/
.p-sub-thanks {
  margin-bottom: clamp(50px, calc(100 / 1250 * 100vw), 100px);
}
.p-sub-thanks__txt {
  font-weight: 500;
  font-size: clamp(18px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
.p-sub-thanks__btn-area {
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  privacyページ
 *------------------------------------------*/
.p-sub-privacy {
  margin: clamp(50px, calc(100 / 1250 * 100vw), 100px) auto;
}
.p-sub-privacy__group {
  margin-top: clamp(40px, calc(60 / 1250 * 100vw), 60px);
}
.p-sub-privacy__ttl {
  font-weight: 600;
  font-size: clamp(20px, calc(24 / 1250 * 100vw), 24px)
}
.p-sub-privacy__ttl + .p-sub-privacy__list ,
.p-sub-privacy__ttl + .p-sub-privacy__txt {
  margin-top: clamp(20px, calc(24 / 1250 * 100vw), 24px);
}

.p-sub-privacy__list {
  padding-left: 1.6em;
  margin-top: 1.6em;
}
.c-list-num {
  list-style-type: decimal;
}
.c-list-latin {
  list-style-type: lower-latin;
}
.c-list-roman {
  list-style-type: lower-roman;
  margin-bottom: 1.6em;;
}
.p-sub-privacy__last-txt {
  text-align: right;
  margin-top: clamp(40px, calc(60 / 1250 * 100vw), 60px);
}
/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-404 {
  margin-top: clamp(50px, calc(100 / 1250 * 100vw), 100px);
  margin-bottom: clamp(50px, calc(100 / 1250 * 100vw), 100px);
}
.p-sub-404__txt {
  font-weight: 500;
  font-size: clamp(18px, calc(24 / 1250* 100vw), 24px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}
.p-sub-404__btn-area {
  margin-top: clamp(40px, calc(80 / 1250* 100vw), 80px);
}




/*=================================================
 *  JavaScript用
 *================================================*/
/* PC ヘッダーに白背景追加 */
/* PC */
@media screen and (min-width: 768px) {
  .p-header {
    transition: all 0.3s;
    background-color: rgba(255,255,255,0);
  }
  .p-header.js-add-bg {
    background-color: rgba(255,255,255,0.85);
  }
}

/* 要素をふわっと表示 */
.js-fade-up-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out;
}
.js-fade-up-item.fade-up {
  opacity: 1;
  transform: translateY(0);
}