@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: "Noto Sans JP", sans-serif; /* FontFamily（日本語） */
  --font-family-en: "Space Mono", sans-serif; /* FontFamily（英字） */
  --line-height-base: 1.8; /* 基本のline-height */
  --color-bg: #E3EAE0; /* 背景色 */
  --color-accent: #1B4D3E; /* アクセントカラー */
  --color-btn: #1D3028; /* ボタンカラー */
  --color-font-base: #333; /* 文字色 */
  --color-pale-green: #889269; /* 薄い緑 */
  --height-header: 80; /* SP表示時のヘッダーの高さ */
  --padding-inline: 20px; /* SP表示時の左右余白 */
  --width-max-img: 600px; /* SP表示時の最大画像幅 */
  --l-inner-xs: 900; /* PC表示時のインナー幅 - 極小 */
  --l-inner-s: 1200;/* PC表示時のインナー幅 - 小 */
  --l-inner: 1440; /* 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: 100; /* 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;
}

[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;
}

/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}

/*fit-img*/
.u-fit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* main - TOPページ*/
/*.l-top-main {
  padding-top: calc(var(--height-header)/16*1rem);
}*/

/* main - 下層ページ*/
.l-sub-main {
  padding-top: calc(var(--height-header)/16*1rem);
}

/* ボタンエリア */
.l-btn-area {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

/* 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);
  }
}

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

 /*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
.c-hamburger {
  padding: 10px;
  width: 60px;
  height: 40px;
}
.c-hamburger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-font-base);
}
.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-font-base);
}
.is-drawerActive .c-hamburger__line::before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.is-drawerActive .c-hamburger__line::after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.c-breadcrumb {
  margin-top: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  width: -moz-fit-content;
  min-width: 380px;
  margin: 0 0 0 auto;
  padding: clamp(7px, calc(13 / 1490* 100vw), 13px) clamp(20px, calc(40 / 1490* 100vw), 40px);
  position: relative;
}
.c-breadcrumb::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
  border-bottom-left-radius: 50vh;
  border-top-left-radius: 50vh;
  z-index: -1;
}
.c-breadcrumb__item {
  position: relative;
  line-height: 1;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 1.2em;
}
.c-breadcrumb__item a {
  font-size: calc(14/16*1rem);
  line-height: 1;
  color: var(--color-pale-green);
}
.c-breadcrumb__item:last-of-type a {
  color: var(--color-accent);
}
.c-breadcrumb__item:last-of-type {
  padding-left: calc(20/16*1rem);;
}
.c-breadcrumb__item:last-of-type::before {
  content: '';
  display: inline-block;
  width: calc(10/16*1rem);
  height: calc(10/16*1rem);
  border-radius: 50vh;
  background-color: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-breadcrumb__item:last-of-type span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
/* PC */
@media screen and (min-width: 768px) {
  
}


/*------------------------------------------
 *  セクションタイトル
 *------------------------------------------*/
.c-sec-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-sec-ttl__main {
  font-size: clamp(45px, calc(90 / 1490* 100vw), 90px);
  line-height: 1;
  color: var(--color-accent);
  text-transform: capitalize;
}
.c-sec-ttl__sub {
  font-size: clamp(12px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
  margin-top: 1em;
}
/* PC */
@media screen and (min-width: 768px) {
}
/*------------------------------------------
 *  下層ページセクションタイトル
 *------------------------------------------*/
.c-sub__sec-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-pale-green);
  margin-bottom: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
.c-sub__sec-ttl-en {
  font-size: clamp(30px, calc(60 / 1490* 100vw), 60px);
  line-height: 1;
  text-transform: capitalize;
}
.c-sub__sec-ttl-jp {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px); 
  line-height: 1;
  margin-top: clamp(8px, calc(10 / 1490* 100vw), 10px);
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  テキスト
 *------------------------------------------*/
.c-txt {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  line-height: 1.8;
  font-weight: 500;;
}
.c-txt + .c-txt {
  margin-top: 1.8em;
}
/* PC */
@media screen and (min-width: 768px) {
}

/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
 /* ベーシックなボタン */
.c-btn {
  font-size: calc(20/16*1rem);
  padding-bottom: calc(10/16*1rem);
  border-bottom: solid 1px var(--color-btn);
  color: var(--color-btn);
  text-align: center;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  position: relative;
  margin-right: calc(62/16*1rem);
  text-transform: inherit;
  line-height: 1;
}
.c-btn::before {
  content: '';
  display: inline-block;
  width: calc(50/16*1rem);
  height: calc(50/16*1rem);
  border-radius: 50vh;
  background-color: var(--color-accent);
  position: absolute;
  right: calc(-62/16*1rem);
  top: 50%;
  transform: translateY(-50%);
}
.c-btn::after {
  content: '';
  display: inline-block;
  width: calc(10/16*1rem);
  height: calc(10/16*1rem);
  border-radius: 50vh;
  background-color: var(--color-pale-green);
  position: absolute;
  right: calc(-37/16*1rem);
  top: 50%;
  transform: translate(50%,-50%);
  transition: all 0.3s;
}
.c-btn:hover,
.c-btn:focus-visible {
  color: var(--color-pale-green);
  border-bottom: solid 1px var(--color-pale-green);
}
.c-btn:hover::after {
  width: calc(50/16*1rem);
  height: calc(50/16*1rem);
}
/*submitボタン*/
.c-btn-submit {
  background-color: var(--color-accent);
  border-radius: 50vh;
  width: clamp(300px, calc(360 / 767 * 100vw), 360px);
  height: clamp(70px, calc(80 / 767 * 100vw), 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-submit:hover {
  opacity: 0.7;
}
.confirm-page .c-btn-submit {
  width: clamp(160px, calc(280 / 767 * 100vw),280px);
}
.c-btn-submit span {
  color: #fff;
  font-size: clamp(16px, calc(18 / 1490* 100vw), 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
/*戻るボタン*/
.confirm-page .c-btn-return {
  width: clamp(100px, calc(160 / 767 * 100vw), 160px);
  background-color: #999;
}
/*------------------------------------------
 *  下層ページMV
 *------------------------------------------*/
.c-sub-mv {
  padding-top: calc(var(--height-header) / 16 * 1rem);
  position: relative;
}
.c-sub-mv::before {
  content: '';
  display: inline-block;
  position: absolute;
  background-image: url("../img/common/page-header-mv.svg");
  width: clamp(276px, calc(552 / 1490 * 100vw), 552px);
  aspect-ratio: 368 / 523;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  transform: translate(41%,-25%);
  z-index: 1;
}
/* 小さいSP */
@media screen and (max-width: 500px) {
  .c-sub-mv::before {
    transform: translate(50%,-28%);
  }
}
@media screen and (max-width: 420px) {
  .c-sub-mv::before {
    transform: translate(65%,-28%);
  }
}
.c-sub-mv__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(30px, calc(44 / 1490 * 100vw), 44px);
}
.c-sub-mv__ttl-en {
  font-size: clamp(45px, calc(90 / 1490* 100vw), 90px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-accent);
}
.c-sub-mv__ttl-jp {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-accent);
  margin-top: calc(20 / 16 * 1rem);
  z-index: 1;
}
/*------------------------------------------
 *  お問い合わせバナー
 *------------------------------------------*/
.c-contact-banner {
  padding-top: clamp(160px, calc(200 / 1490* 100vw), 200px);
  position: relative;
}
.c-contact-banner::after ,
.c-contact-banner::before {
  content: '';
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.c-contact-banner::before {
  background-image: url("../img/common/contact-leaf-left.svg");
  aspect-ratio: 456/1024;
  width: clamp(228px, calc(456 / 1490* 100vw), 456px);
  top: 0;
  left: 0;
}
.c-contact-banner::after {
  background-image: url("../img/common/contact-leaf-right.svg");
  aspect-ratio: 452/1024;
  width: clamp(226px, calc(452 / 1490* 100vw), 452px);
  top: 0;
  right: 0;
}
/* 小さいSP */
@media screen and (max-width: 620px) {
  .c-contact-banner::before {
    transform: translateX(-30%)
  }
  .c-contact-banner::after {
    transform: translateX(30%)
  }
}
@media screen and (max-width: 420px) {
  .c-contact-banner::before {
    transform: translateX(-45%)
  }
  .c-contact-banner::after {
    transform: translateX(40%)
  }
}
.c-contact-banner__txt-wrap {
  background-color: rgba(248, 248, 248, 0.9);
  border-radius: clamp(30px, calc(60 / 1490* 100vw), 60px);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto clamp(150px, calc(290 / 1490 * 100vw), 290px);
  padding: 0 20px;
  word-break: auto-phrase;
}
.c-contact-banner__txt-wrap .c-sec-ttl__main {
  font-size: clamp(50px, calc(100 / 1490 * 100vw), 100px);
  margin-top: -0.5em;
  line-height: 1;
}
.c-contact-banner__txt-wrap .c-sec-ttl__sub {
  font-size: clamp(14px, calc(18 / 1490 * 100vw), 18px);
}
.c-contact-banner__txt {
  font-size: clamp(14px, calc(18 / 1490 * 100vw), 18px);
  font-weight: 500;
  margin-top: clamp(30px, calc(50 / 1490 * 100vw), 50px);
}
.c-btn-contact {
  background-color: #E25822;
  color: #fff;
  border-radius: 50vh;
  width: clamp(200px, calc(280 / 1490 * 100vw), 280px);
  height: clamp(50px, calc(70 / 1490 * 100vw), 70px);
  transform: translateY(50%);
  margin-top: clamp(5px, calc(15 / 1490 * 100vw), 15px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: clamp(16px, calc(24 / 1490 * 100vw), 24px);
  text-transform: inherit;
  position: relative;
}
.c-btn-contact::after {
  content: '';
    display: inline-block;
    width: calc(10 / 16 * 1rem);
    height: calc(10 / 16 * 1rem);
    border-radius: 50vh;
    background-color: var(--color-pale-green);
    position: absolute;
    right: calc(37 / 16 * 1rem);
    top: 50%;
    transform: translate(50%, -50%);
    transition: all 0.3s;
}
.c-btn-contact:hover {
  filter: brightness(1.1);
}
/* PC */
@media screen and (min-width: 768px) {
  .c-contact-banner__txt-wrap {
    width: 70%;
  }
}
/*------------------------------------------
 *  ページトップ
 *------------------------------------------*/
.c-page-top {
  position: fixed;
  right: clamp(20px, calc(40 / 1490* 100vw), 40px);
  bottom: 30px;
  z-index: 10000;
}
.c-page-top a {
  display: block;
  width: clamp(50px, calc(80 / 1490* 100vw), 80px);
  height: clamp(50px, calc(80 / 1490* 100vw), 80px);
  border-radius: 50vh;
  border: solid 2px var(--color-accent);
  background-color: rgba(255,255,255,0.3);
  position: relative;
}
.c-page-top a::before {
  content: "";
  display: inline-block;
  width: clamp(8px, calc(12 / 1490* 100vw), 12px);
  height: clamp(8px, calc(12 / 1490* 100vw), 12px);
  border-right: solid 2px var(--color-accent);
  border-top: solid 2px var(--color-accent);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-40%) rotate(-45deg);
}
.c-page-top a:hover {
  background-color: var(--color-accent);
}
.c-page-top a:hover::before {
  border-color: #fff;
}
/*------------------------------------------
 *  ページャー
 *------------------------------------------*/
.c-pager {
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.c-pager__item {
  margin-inline: 0.5em; 
}
.c-pager__item a {
  color: var(--color-accent);
  font-size: clamp(16px, calc(20 / 1490* 100vw), 20px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, calc(50 / 1490* 100vw), 50px);
  aspect-ratio: 1;
  border-radius: 50vh;
}
.c-pager__item a:hover {
  color: var(--color-pale-green);
}
.c-pager__item--current a:hover,
.c-pager__item--current a {
  background-color: var(--color-accent);
  color: #fff;
}

.c-pager__item--next a,
.c-pager__item--prev a {
  color: var(--color-btn);
  font-size: clamp(16px, calc(20 / 1490* 100vw), 20px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  display: flex;
  height: clamp(28px, calc(30 / 1490* 100vw), 30px);
  align-items: center;
  border-bottom: solid 1px var(--color-btn);
  position: absolute;
  top: 50%;
}
.c-pager__item--prev a {
  left: 0;
  transform: translate(-150%,-50%)
}
.c-pager__item--next a {
  right: 0;
  transform: translate(150%,-50%)
}
.c-pager__item--next a:hover,
.c-pager__item--prev a:hover {
  color: var(--color-pale-green);
  border-bottom: solid 1px var(--color-pale-green);
}
.c-pager__item--all {
  padding-inline: 2em;
}
.c-pager__item--all a {
  color: var(--color-btn);
  font-size: clamp(18px, calc(20 / 1490* 100vw), 20px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 50vh;
  border: solid 1px var(--color-btn);
  padding: 0.5em 1.8em;
}
.c-pager__item--all a:hover {
  background-color: var(--color-pale-green);
  border-color: var(--color-pale-green);
  color: #fff;
}
/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
input[type="radio"],
input[type="checkbox"] {
  display: none;
}
.c-form__row {
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: calc(20/16*1rem);
}
.c-form__row + .c-form__row {
  margin-top: calc(40/16*1rem);
}
.c-form__head {
  margin-top: calc(12/16*1rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/* タイトルラベル */
.c-form__ttl {
  font-weight: 600;
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
  color: #3a2c2c;
}
/* 必須ラベル */
.c-form__required {
  display: inline-block;
  margin-left: 2em;
  width: calc(50/16*1rem);
  height: calc(22/16*1rem);
  font-weight: 600;
  font-size: calc(12/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
  color: #333;
  border: 1px solid #707070;
  text-align: center;
}
/* 入力項目 */
.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;
}
.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: 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;
}
.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  line-height: 2;
}
.c-form__radio-item label::before,
.c-form__radio-item label::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
}
.c-form__radio-item label::before {
  width: 20px;
  height: 20px;
  left: 0;
  background-color: #fff;
  border: 1px solid #dedede;
}
.c-form__radio-item label::after {
  width: 12px;
  height: 12px;
  left: 4px;
  background-color: var(--color-accent);
  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: 1px solid #ddd;
  border-radius: 4px;
}
.c-form__checkbox-label:after {
  position: absolute;
  content: "";
  display: block;
  top: 1em;
  left: -1.4em;
  width: 7px;
  height: 11px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  opacity: 0;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-form__checkbox-label:after {
    left: -1.3em;
  }
}
.c-form__checkbox:checked {
  color: #1a049b;
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  opacity: 1;
}
/* 確認データ */
.c-form__confirm-data {
  display: block;
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
}
/* PC */
@media screen and (min-width: 768px) {
  .c-form__row {
    -ms-grid-columns: calc(230/16*1rem) calc(33/16*1rem) 1fr;
    grid-template-columns: calc(230/16*1rem) 1fr;
    gap: calc(33/16*1rem);
  }
  .c-form__head {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-form__required {
    margin-left: 0;
  }
  .c-form__input::-webkit-input-placeholder {
    font-size: calc(16/16*1rem);
    letter-spacing: .04em;
  }
  .c-form__confirm-data {
    margin-top: 0.5em;
  }
}

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

/*------------------------------------------
 *  ヘッダー
 *------------------------------------------*/
.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::before {
  content: '';
  display: inline-block;
  width: calc(100vw - 80px);
  height: 100%;
  background-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
  border-bottom-right-radius: 40px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
 /* インナー */
.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;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-header {
    /*background-color: rgba(255,255,255,0.85);*/
    backdrop-filter: blur(5px);
  }
  .p-header::before {
    width: inherit;
    height: calc(var(--height-header)*2/16*1rem);
    width: 100vw;
    min-width: 1440px;
    background-image: url("../img/common/header-bg.svg");
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    backdrop-filter: blur(0);
    
  }
  
  .p-header::after {
    content: '';
    display: inline-block;
    width: calc(50vw - 719.5px);
    height: calc(200% - 1px);
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .p-header__inner {
    position: relative;
  }
  
}

/* 大きいPC */
@media screen and (min-width: 1420px) {
  .p-header::before {
    left: 50vw;
    transform: translateX(-1280px);
    width: 300vw;
    background-image: url("../img/common/header-bg.png");
  }
  .p-header::after {
    display: none;
  }
  .p-header__inner::before {
    /*content: '';
    display: inline-block;
    width: calc(50vw - 600px);
    height: 99.5%;
    background-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    position: absolute;
    left: 97.83%;
    top: 0;
    z-index: -1;*/
    display: none;
  }
} 
/* ロゴ */
.p-header__logo {
  z-index: 4;
}
.p-header__logo>a {
  width: calc(100vw - 80px);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.p-header__logo-txt {
  font-size: clamp(12px, calc(15 / 1490* 100vw), 15px);
  color: var(--color-accent);
  font-weight: 700;
  padding-left: 1em;
  width: calc(100% - 70px);
}
.p-header__logo img {
  width: 70px;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-header__logo {
    align-self: flex-start;
    height: calc(var(--height-header) * 2 / 16 * 1rem);
    display: flex;
    align-items: center;
  }
  .p-header__logo>a {
    flex-direction: column;
    width: clamp(120px, calc(140 / 1490* 100vw), 140px);
  }
  .p-header__logo-txt {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-bottom:0.75em;
    line-height: 1.4;
  }
  .p-header__logo img {
    width: 100%;
  }
}

/* メニュー */
.p-header__menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}
.p-header__hamburger {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: calc(var(--l-layer__drawer) + 1);
}
.p-header__menu {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  padding: calc(var(--height-header) / 16 * 1rem) 10vw calc(80/16*1rem);
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg);
  text-align: right;
  z-index: var(--l-layer__drawer);
}
.is-drawerActive .p-header__menu {
  display: block;
  overflow-y: scroll;
}
.p-header__menu-item{
  padding: 1em 0;
  border-bottom: solid 1px #fff;
}
.p-header__menu-item a {
  position: relative;
  font-size: calc(28/16*1rem);
  color: var(--color-accent);
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.5;
}

.p-header__menu-item .p-header__menu-en {
  font-size: calc(10/16*1rem);
  font-weight: 600;
}
.p-header__menu-item-privacy {
  text-align: left;
  color: var(--color-accent);
  font-size: calc(18/16*1rem);
  margin-top: calc(40/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
/* メニュー */
  .p-header__menu-wrapper{
    position: initial;
    z-index: 5;
  }
  .p-header__menu {
    position: initial;
    display: block;
    width: auto;
    height: inherit;
    background: none;
    padding: 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;
    border-bottom: none;
    padding: 1em;
  }
  .p-header__menu-item a{
    font-size: calc(22/16*1rem);
    color: var(--color-font-base);
  }
  .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-footer {
  background-color: #1D3028;
  color: #fff;
  position: relative;
  z-index: 1;
}
.p-footer::before {
  content: '';
  display: inline-block;
  width: 100vw;
  height: clamp(105px, calc(210 / 1490 * 100vw), 210px);
  background-image: url("../img/common/footer-leaf.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
  z-index: 1;
}
.p-footer__inner {
  padding-top: calc(65/16*1rem);
}
.p-footer__flex {
  display: flex;
  justify-content: center;
}
.p-footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__logo {
  width: clamp(120px, calc(140 / 1490 * 100vw), 140px);
}
.p-footer__company-name {
  font-weight: 700;
  font-size: clamp(14px, calc(16 / 1490 * 100vw), 16px);
  line-height: 1;
  margin-top: clamp(20px, calc(30 / 1490 * 100vw), 30px);
}
.p-footer__txt {
  font-weight: 500;
  font-size: clamp(12px, calc(14 / 1490 * 100vw), 14px);
  margin-top: clamp(6px, calc(10 / 1490 * 100vw), 10px);
}

.p-footer__menu-item  {
  text-align: right;
}
.p-footer__menu-item a {
  font-size: clamp(12px, calc(14 / 1490 * 100vw), 14px);
}

.p-footer__menu-item a:hover {
  opacity: 0.7;
}
.p-footer__menu-item + .p-footer__menu-item {
  margin-left: clamp(30px, calc(40 / 1490 * 100vw), 40px);
}
.p-footer__btm {
  display: flex;
  flex-direction: column;
  margin-top: clamp(20px, calc(36 / 1490 * 100vw), 36px);
  padding-bottom: clamp(20px, calc(26 / 1490 * 100vw), 26px);
}
.p-footer__copyright {
  color: #999;
  font-size: clamp(12px, calc(14 / 1490 * 100vw), 14px);
}
.p-footer__btm .p-footer__menu-item a {
  font-size: clamp(12px, calc(14 / 1490 * 100vw), 14px);
}
@media screen and (max-width: 768px) {
  .p-footer__menu-item  {
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: flex;
  }
  .p-footer__flex {
    justify-content: space-between;
  }
  .p-footer__left {
    align-items: flex-start;
  }
  .p-footer__txt {
    text-align: left;
  }
  .p-footer__menu {
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 70px;
  }
  .p-footer__btm {
    flex-direction: row;
    justify-content: space-between;
  } 
}
/* 大きいPC */
@media screen and (min-width: 1490px) {
  .p-footer::before {
    background-repeat: repeat-x;
    background-size: contain;
  }
}
/*------------------------------------------
 *  TOPページ
 *------------------------------------------*/

/*----------------- MV -----------------*/
.p-top-mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
  max-height: 700px;
}
.p-top-mv::after ,
.p-top-mv::before {
  content: '';
  display: inline-block;
  position: absolute;
}
.p-top-mv::before {
  width: 88vw;
  height: 32%;
  background-image: url("../img/top/mv-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-top-mv::after {
  background-image: url("../img/top/mv-leaf.svg");
  /*width: clamp(200px, calc(529 / 1490* 100vw), 793px);*/
  width: clamp(200px, calc(529 / 1490* 100vw), 700px);
  aspect-ratio: 529/1342;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 70%;
  transform: translate(15%,-50%);
}
.p-top-mv__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.p-top-mv__txt-wrap {
  padding-left: 5%;
  padding-bottom: 15%;
  z-index: 1;
}
.p-top-mv__txt-main {
  color: var(--color-accent);
  font-size: clamp(40px, calc(68 / 1490* 100vw), 68px);
  text-transform: inherit;
  line-height: 1.2;
}
.p-top-mv__txt-sub .u-small-sp-only ,
.p-top-mv__txt-main .u-small-sp-only {
  display: none;
}
.p-top-mv__txt-sub {
  color: var(--color-accent);
  font-size: clamp(16px, calc(24 / 1490* 100vw), 24px);
  font-weight: 700;
  margin-top: 1em;
}
.p-top-mv__news-wrap {
  position: absolute;
  bottom: calc(20/16*1rem);
  left: calc(20/16*1rem);
  background-color: rgba(27, 77, 62, 0.85);
  border-radius: clamp(20px, calc(20 / 1490* 100vw), 20px);
  max-width: calc(90vw - 40px);
  padding: clamp(20px, calc(28 / 1490* 100vw), 28px) clamp(20px, calc(50 / 1490* 100vw), 50px);
  display: flex;
  align-items: center;
  z-index: 1;
}
.p-top-mv__news-ttl {
  color: #BDBA72;
  text-transform: capitalize;
  font-size: clamp(20px, calc(30 / 1490* 100vw), 30px);
  margin-right: clamp(20px, calc(40 / 1490* 100vw), 40px);
}
.p-top-mv__news-txt ,
.p-top-mv__news-date {
  font-size: clamp(12px, calc(14 / 1490* 100vw), 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}
.p-top-mv__news-txt {
  margin-top: 0.5em;
}
/* SP */
@media screen and (max-width: 767px) {
  .p-top-mv::before {
    width: 100vw;
  }
}
/* 小さいSP */
@media screen and (max-width: 500px) {
  .p-top-mv__txt-sub .u-small-sp-only ,
  .p-top-mv__txt-main .u-small-sp-only {
    display: block;
  }
  .p-top-mv__txt-wrap {
    padding-left: 0;
    padding-top: 35%;
    align-self: flex-start;
  }
  .p-top-mv::before {
    bottom: 80px;
  }
  .p-top-mv::after {
    transform: translate(15%, -85%);
  }
  .p-top-mv__inner {
    flex-direction: column;
    justify-content: space-between;
  }
  .p-top-mv__news-wrap {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: calc(100vw - 40px);
  }
} 
/* 小さいSP */
@media screen and (max-width: 350px) {
  .p-top-mv__txt-wrap {
    padding-top: 40%;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv {
    max-height: 1000px;
  }
  .p-top-mv::before {
    height: 45%;
  }
  .p-top-mv::after {
    transform: translate(15%,-50%);
  }
  .p-top-mv__txt-wrap {
    padding-left: 18%;
    padding-bottom: 10%;
  }
  .p-top-mv__news-wrap {
    bottom: calc(40/16*1rem);
    left: calc(40/16*1rem);
    max-width: 600px;
  }
}
@media screen and (min-width: 980px) {
  .p-top-mv::after {
    transform: translate(0,-50%);
  }
}

/*----------------- concept -----------------*/
.p-top-concept{
  padding-top: clamp(60px, calc(160 / 1490* 100vw), 160px);
  position: relative;
}
.p-top-concept__inner {
  position: relative;
}
.p-top-concept__catch {
  margin: clamp(40px, calc(60 / 1490* 100vw), 60px) auto 0;
  font-size: clamp(22px, calc(38 / 1490* 100vw), 38px);
  font-weight: 500;
  width: fit-content;
  letter-spacing: 0.05em;
}
.p-top-concept__catch .u-large {
  font-size: 1.26em;
  font-weight: 500;
}
.p-top-concept__txt-wrap {
  width: 100%;
  max-width: 427px;
  margin: clamp(60px, calc(100 / 1490* 100vw), 100px) auto 0;
}
.p-top-concept__btn-area {
  margin-top: calc(60/16*1rem);
  justify-content: flex-end;
}
/* SP */
@media screen and (max-width: 767px) {
  .p-top-concept__img-flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: calc(60/16*1rem);
    width: 100vw;
    margin-left: -20px;
  }
  .p-top-concept__img-wrap-01 {
    width: 40%;
  }
  .p-top-concept__img-wrap-02 {
    width: 50%;
    margin-top: 30%;
  }

}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-concept__contents {
    position: relative;
  }
  .p-top-concept__txt-wrap {
    width: 40%;
    transform: translateX(5vw);
  }
  .p-top-concept__img-wrap-01 {
    position: absolute;
    width: clamp(227px, calc(374 / 1490* 100vw), 374px);
    top: clamp(25px, calc(40 / 1490 * 100vw), 40px);
    right: 0;
    transform: translateX(20%);
  }
  @media screen and (min-width: 900px) {
    .p-top-concept__img-wrap-01 {
      transform: translateX(15%);
    }
  }
  @media screen and (min-width: 1100px) {
    .p-top-concept__img-wrap-01 {
      transform: translateX(0);
    }
  }
  .p-top-concept__img-wrap-02 {
    position: absolute;
    width: clamp(320px, calc(480 / 1490* 100vw), 480px);
    top: 45%;
    left: 0;
    transform: translateX(-40%);
  }
  @media screen and (min-width: 900px) {
    .p-top-concept__img-wrap-02 {
      top: 50%;
      transform: translateX(-20%);
    }
  }
  @media screen and (min-width: 1200px) {
    .p-top-concept__img-wrap-02 {
      transform: translateX(0);
    }
  }
  .p-top-concept__btn-area {
    width: fit-content;
    position: absolute;
    right: 0;
    bottom: calc(40/16*1rem);
    margin-top: 0;
  }
}

/*----------------- case -----------------*/
.p-top-case {
  padding-top: clamp(120px, calc(200 / 1490* 100vw), 200px);
}
.p-top-case__inner .l-inner-s {
  position: relative;
  z-index: 1;
}
.p-top-case__inner .l-inner-s::before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border-top-left-radius: clamp(30px, calc(60 / 1490* 100vw), 60px);
  border-bottom-left-radius: clamp(30px, calc(60 / 1490* 100vw), 60px);
  width: calc(50% + 50vw);
  height: calc(100% - calc(240/16*1rem));
  position: absolute;
  top: calc(120/16*1rem);
  left: 27%;
  z-index: -1;
}
.p-top-case__flex {
  display: flex;
  flex-direction: column;
}
.p-top-case .c-sec-ttl {
  align-items: flex-start;
}
.p-top-case__btn {
  align-self: flex-end;
  margin-top: clamp(40px, calc(60 / 767 * 100vw), 60px);
}
.p-top-case__list-wrap {
  /*display: flex;
  justify-content: space-between;
  flex-wrap: wrap;*/
  margin: clamp(40px, calc(60 / 767* 100vw), 60px) auto 0;
  max-width: 480px;
}
.p-top-case__list {
  margin: 0 auto;
}
/* 小さいSP */
@media screen and (max-width: 420px) {
  .p-top-case__list {
    /*flex-direction: column;*/
    max-width: 280px;
  }
}
.p-top-case__item {
  position: relative;
  padding: 0 clamp(10px, calc(15 / 1490* 100vw), 15px);
}
.p-top-case__img-wrap {
  aspect-ratio: 320/480;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top-case__img-wrap::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 50%, rgba(0, 0, 0, 0.4) 80%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-case__item a .p-top-case__img-wrap img {
  transition: all 0.3s ease-in-out;
}
.p-top-case__item a:hover .p-top-case__img-wrap img {
  transform: scale(1.15)
  /*filter: brightness(1.05);*/
}
.p-top-case__txt-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 clamp(20px, calc(35 / 1490* 100vw), 35px) clamp(10px, calc(20 / 1490* 100vw), 10px);
  color: #fff;
  z-index: 2;
}
.p-top-case__date-flex {
  display: flex;
  margin-bottom: calc(10/16*1rem);
}
.p-top-case__date-flex span,
.p-top-case__date,
.p-top-case__address ,
.p-top-case__txt {
  font-weight: 700;
  font-size: clamp(10px, calc(12 / 1490* 100vw), 12px);
  line-height: 1.4;
}
.p-top-case__date-flex span {
  margin-inline: 0.5em;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-case__inner .l-inner-s::before {
    top: clamp(60px, calc(90 / 1490* 100vw), 90px);
    height: calc(100% - clamp(120px, calc(180 / 1490* 100vw), 180px));
  }
  .p-top-case__flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .p-top-case__list-wrap {
    /*flex-direction: row;*/
    margin: calc(50/16*1rem) 0 0 clamp(20px, calc(35 / 1490* 100vw), 35px);
    width: calc(50% + 60vw);
    max-width: 1370px;
  }
  .p-top-case__item {
    /*width: 23.3%;
    margin-bottom: 0;*/
  }
  .p-top-case__item:not(:last-of-type) {
    /*margin-right: 2.26%;*/
  }
  .p-top-case__btn {
    margin-top: 0;
    margin-bottom: calc(22/16*1rem);
  }
}

/*----------------- flow -----------------*/
.p-top-flow {
  padding-top: clamp(60px, calc(200 / 1490* 100vw), 200px);
}
.p-top-flow__list {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: clamp(50px, calc(70 / 1490* 100vw), 70px) auto 0;
}
.p-top-flow__item {
  display: flex;
  align-items: flex-start;
}

.p-top-flow__number {
  color: var(--color-pale-green);
  font-size: clamp(30px, calc(50 / 1490* 100vw), 50px);
  position: relative;
  line-height: 1;
  padding-right: clamp(20px, calc(36 / 767* 100vw), 36px);
}
.p-top-flow__number::before {
  content: '';
  display: inline-block;
  width: calc(12/16*1rem);
  height: calc(12/16*1rem);
  border-radius: 50vh;
  background-color: var(--color-pale-green);
  position: absolute;
  right: calc(-6/16*1rem);
  top: 50%;
  transform: translateY(-50%);
}
.p-top-flow__txt-wrap {
  position: relative;
  padding-left: clamp(20px, calc(36 / 767* 100vw), 36px);
}
.p-top-flow__item:not(:last-of-type) .p-top-flow__txt-wrap::after {
  content: '';
  display: inline-block;
  background-color: var(--color-pale-green);
  position: absolute;
  width: 1px;
  height: 100%;
  top: calc(10/16*1rem);
  left: 0;
}
.p-top-flow__item:not(:last-of-type) .p-top-flow__txt-wrap {
  padding-bottom: calc(40/16*1rem);
}
.p-top-flow__ttl {
  font-size: clamp(15px, calc(20 / 1490* 100vw), 20px);
  font-weight: 700;
}
.p-top-flow__txt {
  margin-top: calc(12/16*1rem);
  font-size: clamp(10px, calc(12 / 1490* 100vw), 12px);
  line-height: 1.6;
  font-weight: 500;
}
.p-top-flow__btn-area {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
  justify-content: flex-end;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-flow__list {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
  }
  .p-top-flow__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 20%;
  }
  .p-top-flow__item:not(:last-of-type) {
    padding-bottom: 0;
  }
  .p-top-flow__number {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: clamp(20px, calc(36 / 1490* 100vw), 36px);
    margin-bottom: clamp(20px, calc(36 / 1490* 100vw), 36px);
    width: 100%;
    text-align: center;
  }
  .p-top-flow__number::before {
    right: inherit;
    top: inherit;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-top-flow__item:not(:last-of-type) .p-top-flow__number::after {
    content: '';
    display: inline-block;
    background-color: var(--color-pale-green);
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: calc(6/16*1rem);
    left: 50%;
  }
  .p-top-flow__txt-wrap {
    padding-left: 0;
  }
  .p-top-flow__item:not(:last-of-type) .p-top-flow__txt-wrap::after {
    display: none;
  }
  .p-top-flow__ttl {
    text-align: center;

  }
  .p-top-flow__txt {
    margin-top: calc(20/16*1rem);
    padding: 0 10%;
  }
}
/*----------------- brand -----------------*/
.p-top-brand {
  position: relative;
}
.p-top-brand__img-wrap-01 {
  margin-top: clamp(80px, calc(120 / 1490* 100vw), 120px);
  width: 85%;
  max-width: 1220px;
}
.p-top-brand__inner .l-inner-s {
  display: flex;
  flex-direction: column;
  margin-top: clamp(60px, calc(100 / 1490* 100vw), 100px);
}
.p-top-brand__contents {
  max-width: 480px;
  margin: 0 auto calc(40/16*1rem);
}
.p-top-brand__txt-wrap {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
.p-top-brand__img-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.p-top-brand__img-wrap-03, 
.p-top-brand__img-wrap-02 {
  width: 46%;
}
.p-top-brand__img-wrap-03 {
  margin-top: 15%;
}
.p-top-brand__btn-area {
  justify-content: flex-end;
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
/* PC */
@media screen and (min-width: 768px) {
   .p-top-brand {
    padding-bottom: 100px;
  }
 .p-top-brand__inner .l-inner-s {
    flex-direction: row-reverse;
  }
  .p-top-brand__contents {
    width: 50%;
    padding-top: clamp(24px, calc(48 / 1490* 100vw), 48px);
    max-width: inherit;
    margin: 0;
  }
  .p-top-brand__contents .c-sec-ttl {
    align-items: flex-end;
  }
  .p-top-brand__img-wrap {
    margin: 0;
    width: 45vw;
    position: absolute;
    top: 0;
    right: calc(50% + 5vw);
    max-width: 720px;
  }
}


/*------------------------------------------
 *  NEWSページ
 *------------------------------------------*/
.p-sub-news__xxx {
}

/*------------------------------------------
 *  conceptページ
 *------------------------------------------*/
.p-sub-concept__section {
  margin-top: clamp(30px, calc(60 / 1490* 100vw), 60px);
}
.p-sub-concept__flex {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(80px, calc(140 / 1490* 100vw), 140px);
}
.p-sub-concept__txt-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.p-sub-concept__img-wrap {
  width: 100%;
  max-width: 360px;
  margin: clamp(20px, calc(30 / 1490* 100vw), 30px) auto 0;
}
.p-sub-concept__main-ttl {
  font-size: clamp(22px, calc(38 / 1490* 100vw), 38px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: clamp(30px, calc(50 / 1490* 100vw), 50px);
  white-space: nowrap;
  text-align: center;
}
.p-sub-concept__main-ttl span {
  font-size: 1.26em;
  font-weight: 500;
}
.p-sub-concept__main-ttl .u-small-sp-only {
  display: none;
}
.p-sub-concept__txt {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-sub-concept__txt + .p-sub-concept__txt {
  margin-top: 1.8em;
}
.p-sub-concept__ttl {
  color: var(--color-pale-green);
  font-size: clamp(20px, calc(32 / 1490* 100vw), 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 1em;
  margin-bottom: clamp(30px, calc(40 / 1490* 100vw), 40px);
  text-align: center;
}
.p-sub-concept__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: clamp(30px, calc(50 / 1490* 100vw), 50px) auto clamp(80px, calc(140 / 1490* 100vw), 140px);
  max-width: 360px;
}
.p-sub-concept__item:not(:first-of-type) {
  margin-top: clamp(30px, calc(80 / 1490* 100vw), 80px);
}
.p-sub-concept__icon-wrap {
  width: 47%;
  margin: 0 auto;
}
.p-sub-concept__item-ttl {
  font-size: clamp(18px, calc(22 / 1490* 100vw), 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: clamp(20px, calc(30 / 1490* 100vw), 30px);
  white-space: nowrap;
}
.p-sub-concept__item-txt {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(20px, calc(30 / 1490* 100vw), 30px);
}
/* 小さいSP */
@media screen and (max-width: 420px) {
  .p-sub-concept__main-ttl .u-small-sp-only {
    display: block;
  }
} 
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-concept__flex {
    flex-direction: row;
    position: relative;
  }
  .p-sub-concept__txt-wrap {
    width: 50%;
    max-width: inherit;
    margin: 0;
  }
  .p-sub-concept__img-wrap {
    width: calc(50vw - 120px);
    transform: translateX(120px);
    margin: 0;
    max-width: inherit;
  }
  @media screen and (max-width: 1000px) {
    .p-sub-concept__img-wrap {
      width: calc(50vw - 60px);
      transform: translateX(60px);
    }
  }
  .p-sub-concept__main-ttl {
    text-align: left;
  }
  .u-reverse.p-sub-concept__flex {
    flex-direction: row-reverse;
  }
  .u-reverse .p-sub-concept__img-wrap {
    transform: translateX(-120px);
  }
  @media screen and (max-width: 1000px) {
    .u-reverse .p-sub-concept__img-wrap {
    transform: translateX(-60px);
  }
  }
  .p-sub-concept__ttl {
    text-align: left;
  }
  .p-sub-concept__ttl.u-center {
    text-align: center;
  }
  .p-sub-concept__list {
    flex-direction: row;
    max-width: inherit;
  }
  .p-sub-concept__item {
    width: 28.3%;
  }
  .p-sub-concept__item:not(:first-of-type) {
    margin-top: 0;
    margin-left: 7.55%;
  }
}
/*------------------------------------------
 *  case studyページ
 *------------------------------------------*/
.p-sub-case {
  margin-top: clamp(30px, calc(50 / 1490* 100vw), 50px);
}
.p-sub-case__list {
  display: flex;
  flex-wrap: wrap;
}
.p-sub-case__item {
  width: 48%;
  margin-bottom: clamp(50px, calc(80 / 1490* 100vw), 80px);
}
.p-sub-case__item:nth-of-type(2n+1) {
  margin-right: 4%;
}
.p-sub-case__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.p-sub-case__item>a img {
  transition: all 0.3s ease-in-out;
}
.p-sub-case__item>a:hover img {
  transform: scale(1.15);
}
.p-sub-case__date-place-flex {
  display: flex;
  justify-content: space-between;
  color: var(--color-accent);
  margin-top: clamp(14px, calc(21 / 1490* 100vw), 21px);
  line-height: 1;
}
.p-sub-case__item-place ,
.p-sub-case__item-date {
  font-size: clamp(12px, calc(15 / 1490* 100vw), 15px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-sub-case__item-ttl {
  font-size: clamp(12px, calc(15 / 1490* 100vw), 15px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: clamp(14px, calc(21 / 1490* 100vw), 21px);
}
.p-sub-case__pager-wrap {
  margin-top: clamp(16px, calc(20 / 1490* 100vw), 20px);
  margin-bottom: clamp(50px, calc(80 / 1490* 100vw), 80px);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-case__item {
    width: 30%;
  }
  .p-sub-case__item:nth-of-type(2n+1) {
    margin-right: 0;
  }
  .p-sub-case__item:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
}
/* 小さいSP */
@media screen and (max-width: 480px) {
  .p-sub-case__list {
    max-width: 360px;
    margin: 0 auto;
  }
  .p-sub-case__item {
    width: 100%;
  }
  .p-sub-case__item:nth-of-type(2n+1) {
    margin-right: 0;
  }
}
/*------------------------------------------
 *  case detailページ
 *------------------------------------------*/
.p-sub-case-detail {
  margin-bottom: clamp(50px, calc(80 / 1490* 100vw), 80px);
}
.p-sub-case-detail__ttl {
  margin-top: 0;
  height: clamp(119px, calc(126 / 1490* 100vw), 126px);
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 900px;
  font-size: clamp(20px, calc(34 / 1490* 100vw), 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--color-accent);
}
.case-detail-page .c-sub-mv {
  padding-top: calc(var(--height-header) / 32 * 1rem);
}
.case-detail-page .c-sub-mv::before {
  transform: translate(51%, -25%);
}
.p-sub-case-detail {
  margin-bottom: clamp(50px, calc(80 / 1490* 100vw), 80px);
}
.case-detail-page .p-sub-case__date-place-flex {
  justify-content: flex-start;
}
.case-detail-page .p-sub-case__item-place,
.case-detail-page .p-sub-case__item-date {
  font-size: clamp(14px, calc(16 / 1490 * 100vw), 16px);
}
.case-detail-page .p-sub-case__date-place-flex span:not(:last-of-type) {
  margin-right: 0.5em;
}
.p-sub-case-detail__mv-wrap {
  width: 100%;
  margin-top: clamp(28px, calc(32 / 1490 * 100vw), 32px);
}
.p-sub-case-detail__main-txt-wrap {
  max-width: 860px;
  margin:  clamp(40px, calc(60 / 1490 * 100vw), 60px) auto 0;
}
.p-sub-case-detail__main-txt {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
.p-sub-case-detail__flex {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  margin-top: clamp(60px, calc(100 / 1490* 100vw), 100px);
}
.p-sub-case-detail__flex:not(:first-of-type) {
  margin-top: clamp(80px, calc(130 / 1490* 100vw), 130px);
}
.p-sub-case-detail__txt-wrap {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: clamp(20px, calc(40 / 1490* 100vw), 40px);
  padding: clamp(20px, calc(40 / 1490* 100vw), 40px) clamp(20px, calc(50 / 1490* 100vw), 50px);
  width: 100%;
  max-width: 480px;
  margin: clamp(20px, calc(30 / 1490* 100vw), 30px) auto 0;
  z-index: 2;
}
.p-sub-case-detail__img-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  z-index: 1;
}
.p-sub-case-detail__flex-ttl {
  color: var(--color-accent);
  font-size: clamp(18px, calc(24 / 1490* 100vw), 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-sub-case-detail__flex-txt {
  font-size: clamp(13px, calc(15 / 1490* 100vw), 15px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: clamp(16px, calc(20 / 1490* 100vw), 20px);
}
.p-sub-case-detail__list-wrap {
  margin-top: clamp(120px, calc(150 / 1490* 100vw), 150px);
  width: 100%;
}
.p-sub-case-detail__list {
  width: 100%;
}
.p-sub-case-detail__list-img-wrap {
  width: calc(50% - 20px);
  margin-bottom: clamp(40px, calc(80 / 1490* 100vw), 80px);
}
.p-sub-case-detail__pager-wrap {
  margin-top: clamp(20px, calc(40 / 1490* 100vw), 40px);
}
.p-sub-case-detail__list-thumb {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 0.9em;
}
/* 小さいSP */
@media screen and (max-width: 500px) {
  .case-detail-page .c-sub-mv::before {
    transform: translate(60%, -28%);
  }
}
@media screen and (max-width: 420px) {
  .case-detail-page .c-sub-mv::before {
    transform: translate(65%, -28%);
  }
  .p-sub-case-detail__list-img-wrap {
    width: 100%;
  }
}
/* PC */
@media screen and (min-width: 768px){
  .case-detail-page .c-sub-mv {
    padding-top: calc(var(--height-header) / 16 * 1rem);
  }
  .p-sub-case-detail__ttl {
    text-align: center;
  }
  .p-sub-case-detail__flex {
    flex-direction: row;
    min-height: 400px;
  }
  .p-sub-case-detail__txt-wrap {
    width: 38.8%;
    height: fit-content;
    max-width: inherit;
    margin: 0 0 0 10%;
    flex: 0 0 auto;
  }
  .u-reverse .p-sub-case-detail__txt-wrap {
    margin: 0 0 0 auto;
  }
  .p-sub-case-detail__img-wrap {
    width: 57.3%;
    max-width: inherit;
    transform: translateX(-10.7%);
    margin: clamp(40px, calc(70 / 1490* 100vw), 70px) 0 0;
    flex: 0 0 auto;
  }
  .p-sub-case-detail__flex.u-reverse {
    flex-direction: row-reverse
  }
  .u-reverse .p-sub-case-detail__txt-wrap {
    margin: 0 10% 0 0;
  }
  .u-reverse .p-sub-case-detail__img-wrap {
    transform: translateX(10.7%);
  }
}
/*------------------------------------------
 *  flowページ
 *------------------------------------------*/
.p-sub-flow__section {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
.p-sub-flow__item {
  display: flex;
  align-items: stretch;
}
.p-sub-flow__item:not(:first-of-type) {
  margin-top: clamp(50px, calc(100 / 1490* 100vw), 100px);
}
.p-sub-flow__number {
  color: var(--color-pale-green);
  font-size: clamp(30px, calc(50 / 1490* 100vw), 50px);
  line-height: 1;
  margin-right: clamp(24px, calc(56 / 1490* 100vw), 56px);
  padding-right: clamp(24px, calc(56 / 1490* 100vw), 56px);
  position: relative;
  display: flex;
  align-items: flex-start;
}
.p-sub-flow__item:not(:last-of-type) .p-sub-flow__number::after ,
.p-sub-flow__number::before {
  content: '';
  display: inline-block;
  background-color: var(--color-pale-green);
  position: absolute;
}
.p-sub-flow__number::before {
  width: clamp(8px, calc(12 / 1490* 100vw), 12px);
  height: clamp(8px, calc(12 / 1490* 100vw), 12px);
  border-radius: 50vh;
  right: 0;
  top: clamp(15px, calc(25 / 1490 * 100vw), 25px);
  transform: translate(50%,-50%);
}
.p-sub-flow__item:not(:last-of-type) .p-sub-flow__number::after {
  width: 1px;
  height: calc(100% + clamp(50px, calc(100 / 1490* 100vw), 100px));
  right: 0;
  top: clamp(15px, calc(25 / 1490 * 100vw), 25px);
  transform: translateX(50%);
}
.p-sub-flow__contents {
  display: flex;
  flex-direction: column;
}
.p-sub-flow__img-wrap {
  max-width: 350px;
  flex: 0 0 auto;
  width: 80%;
  margin-bottom: clamp(20px, calc(55 / 1490* 100vw), 55px);
}
.p-sub-flow__ttl {
  font-size: clamp(20px, calc(24 / 1490* 100vw), 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: clamp(20px, calc(30 / 1490* 100vw), 30px);
}
.p-sub-flow__txt {
  font-weight: 400;
}
.flow-page .p-sub-flow__flex {
  margin-block: clamp(60px, calc(100 / 1490* 100vw), 100px);
  padding-top: clamp(60px, calc(100 / 1490* 100vw), 100px);
  border-top: solid 1px #fff;
}
.p-sub-warranty__item {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-sub-warranty__list.list-decimal{
  list-style-type: decimal;
  padding-left: 1.2em;
}
.p-sub-warranty__list.list-decimal>li:not(:first-of-type) {
  margin-top: 2em;
}
.p-sub-warranty__list.list-disc{
  list-style-type: disc;
  padding-left: 1.2em;
}
.p-sub-warranty__list.list-brackets li {
  list-style-type: none;
  padding-left: 1.5em;
  counter-increment: cnt 1;
  position: relative;
}
.p-sub-warranty__list.list-brackets li::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "(" counter(cnt) ") ";
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-flow__contents {
    flex-direction: row;
  }
  .p-sub-flow__number {
    align-items: center;
  }
  .p-sub-flow__item:not(:last-of-type) .p-sub-flow__number::after,
  .p-sub-flow__number::before {
    top: 50%;
  }
  .p-sub-flow__img-wrap {
    width: 40%;
    margin-bottom: 0;
    margin-right: clamp(30px, calc(55 / 1490* 100vw), 55px);
  }
}

/*------------------------------------------
 *  COMPANYページ
 *------------------------------------------*/
.p-sub-flow__flex ,
.p-sub-company__flex {
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
.p-sub-company__flex + .p-sub-company__flex {
  margin-top: clamp(100px, calc(200 / 1490* 100vw), 200px);
}
.p-sub-company__main-txt {
  color: var(--color-accent);
  font-size: clamp(22px, calc(28 / 1490* 100vw), 28px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: clamp(30px, calc(40 / 1490* 100vw), 40px);
}
.p-sub-company__txt {
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.p-sub-company__director-flex {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: clamp(50px, calc(80 / 1490* 100vw), 80px) auto 0;
}
.p-sub-company__director-txt-wrap {
  text-align: center;
}
.p-sub-company__director-txt-01 {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: clamp(20px, calc(60 / 1490* 100vw), 60px);
}
.p-sub-company__director-txt-02 {
  font-size: clamp(22px, calc(29 / 1490* 100vw), 29px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-top: clamp(10px, calc(20 / 1490* 100vw), 20px);
}
.p-sub-company__director-txt-03 {
  color: var(--color-accent);
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-top: clamp(8px, calc(10 / 1490* 100vw), 10px);
}
.p-sub-company__item {
  display: flex;
  padding-inline: clamp(5px, calc(20 / 1490* 100vw), 20px);
  padding-bottom: clamp(20px, calc(30 / 1490* 100vw), 30px);
  margin-bottom: clamp(20px, calc(30 / 1490* 100vw), 30px);
  border-bottom: solid 1px #fff;
}
.p-sub-company__item dt {
  width: clamp(120px, calc(170 / 1490* 100vw), 170px);
  flex: 0 0 auto;
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-sub-company__item dd {
  flex: 1 1 auto;
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-sub-company__map-wrap {
  position: relative;
  width: 100%;
  max-width: 590px;
  aspect-ratio: 590/340;
}
.p-sub-company__map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-sub-company__map-link {
  color: var(--color-btn);
  display: block;
  margin: clamp(12px, calc(15 / 1490* 100vw), 15px) 0 0 auto;
  width: fit-content;
  text-transform: inherit;
  border-bottom: solid 1px var(--color-btn);
}
.p-sub-company__map-link:hover {
  opacity: 0.7;
}
/* 小さいSP */
@media screen and (max-width: 480px) {
  .p-sub-company__item {
    flex-direction: column;
  }
  .p-sub-company__item dt {
    margin-bottom: 1em;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-flow__flex ,
  .p-sub-company__flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-flow__sec-ttl,
  .p-sub-company__sec-ttl {
    width: 33%;
  }
  .p-sub-warranty__contents ,
  .p-sub-company__contents {
    width: 66%;
  }
  .p-sub-company__director-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    align-items: center;
  }
  .p-sub-company__director-img-wrap {
    width: 52.5%;
  }
  .p-sub-company__director-txt-wrap {
    width: 40%;
    text-align: left;
  }
  
}
/*------------------------------------------
 *  STAFFページ
 *------------------------------------------*/
.p-sub-staff {
  margin-top: clamp(40px, calc(60 / 1490 * 100vw), 60px);
}
.p-sub-staff__item {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}
.p-sub-staff__item + .p-sub-staff__item {
  margin-top: clamp(60px, calc(120 / 1490 * 100vw), 120px);
}
.p-sub-staff__txt-wrap,
.p-sub-staff__img-wrap {
  width: 100%;
  position: relative;
}
.p-sub-staff__txt-wrap {
  margin-top: clamp(20px, calc(30 / 1490 * 100vw), 30px);
}
.p-sub-staff__name-en {
  color: var(--color-pale-green);
  font-size: clamp(24px, calc(40 / 1490* 100vw), 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  bottom: clamp(10px, calc(15 / 1490* 100vw), 15px);
  left: clamp(10px, calc(15 / 1490* 100vw), 15px);
}
.p-sub-staff__name-jp {
  color: var(--color-accent);
  font-size: clamp(20px, calc(28 / 1490* 100vw), 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}
.p-sub-staff__name-jp span {
  font-size: clamp(12px, calc(14 / 1490* 100vw), 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-left: clamp(10px, calc(20 / 1490* 100vw), 20px);
}
.p-sub-staff__department {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-top: clamp(20px, calc(30 / 1490* 100vw), 30px);
}
.p-sub-staff__license {
  display: flex;
  margin-top: clamp(10px, calc(20 / 1490* 100vw), 20px);
}
.p-sub-staff__license dt {
  color: var(--color-pale-green);
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.p-sub-staff__license dd {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  margin-left: clamp(10px, calc(10 / 1490* 100vw), 10px);
}
.p-sub-staff__txt {
  margin-top: clamp(20px, calc(40 / 1490* 100vw), 40px);
}
.p-sub-staff__sec-ttl {
  color: var(--color-accent);
  margin-top: clamp(100px, calc(200 / 1490* 100vw), 200px);
}
.p-sub-staff__list2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.p-sub-staff__item2 {
  width: 22.5%;
  margin-bottom: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
.p-sub-staff__item2:not(:last-of-type) {
  margin-right: calc(10% /3);
}
.p-sub-staff__name2 {
  color: var(--color-accent);
  font-size: clamp(18px, calc(22 / 1490* 100vw), 22px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-block: clamp(10px, calc(20 / 1490* 100vw), 20px);
}
.p-sub-staff__license2 {
  display: flex;
  margin-top: 0.25em;
}
.p-sub-staff__license2 dt {
  color: var(--color-pale-green);
  font-size: clamp(11px, calc(14 / 1490* 100vw), 14px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}
.p-sub-staff__license2 dd {
  font-size: clamp(11px, calc(14 / 1490* 100vw), 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 0.5em;
}
.p-sub-staff__txt2 {
  font-size: clamp(11px, calc(15 / 1490* 100vw), 15px);
  letter-spacing: 0;
  margin-top: clamp(10px, calc(20 / 1490* 100vw), 20px);
}
@media screen and (max-width: 900px) {
  .p-sub-staff__list2 {
    max-width: 600px;
    margin: 0 auto;
  }
  .p-sub-staff__item2 {
    width: 47%;
  }
  .p-sub-staff__item2:not(:last-of-type) {
    margin-right: 0;
  }
  .p-sub-staff__item2:nth-of-type(2n+1) {
    margin-right: 6%;
  }
}
@media screen and (max-width: 450px) {
  .p-sub-staff__license2 {
    flex-direction: column;
  }
  .p-sub-staff__license2 dd {
    margin-left: 0;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-staff__item {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
  }
  .p-sub-staff__img-wrap {
    width: 36.6%;
  }
  .p-sub-staff__txt-wrap {
    width: 58.3%;
    margin-top: 0;
  }
}

/*------------------------------------------
 *  CONTACTページ
 *------------------------------------------*/
.p-sub-contact__contents {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
  margin-bottom: clamp(180px, calc(240 / 1490* 100vw), 240px);
}
.p-sub-contact__list-01 {
  display: flex;
  margin-top: calc(6 / 16 * 1rem);
}
.p-sub-contact__list-01 label {
  margin-right: 2em;
}
.p-sub-contact__pp-box {
  padding-block: clamp(30px, calc(60 / 1490* 100vw), 60px);
  text-align: center;
}
/* 小さいSP*/
@media screen and (max-width: 500px) {
  .p-sub-contact__list-01 {
    flex-direction: column;
  }
}
/* お問い合せ内容確認 */
@media screen and (min-width: 768px) {
}
.p-sub-contact__btn--confirm {
  margin-top: clamp(60px, calc(100 / 1490* 100vw), 100px);
}
.p-sub-contact__btn--confirm li:first-of-type {
  margin-right: clamp(20px, calc(60 / 1490* 100vw), 60px);
}
/*------------------------------------------
 *  お問い合わせ完了ページ
 *------------------------------------------*/
.p-sub-404,
.p-sub-thanks {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
  margin-bottom: clamp(180px, calc(240 / 1490* 100vw), 240px);
}
.p-sub-404__ttl,
.p-sub-thanks__msg-main {
  color: var(--color-accent);
  font-size: clamp(24px, calc(40 / 1490* 100vw), 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6em;
}
.p-sub-404__txt,
.p-sub-thanks__msg-sub {
  font-size: clamp(14px, calc(16 / 1490* 100vw), 16px);
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
.p-sub-thanks__msg-sub + .p-sub-thanks__msg-sub {
  margin-top: 2em;
}
.p-sub-404__btn-area,
.p-sub-thanks__btn-area {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
}
/* PC */
@media screen and (min-width: 768px) {
}
/*------------------------------------------
 *  404ページ
 *------------------------------------------*/

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

/*------------------------------------------
 *  policy
 *------------------------------------------*/
.p-sub-policy-section {
  max-width: 1025px;
  margin: 0 auto;
  position: relative;
}
.p-sub-policy-section:first-of-type {
  margin-top: clamp(40px, calc(60 / 1490* 100vw), 60px);
  /*padding-bottom: clamp(130px, calc(228 / 1490* 100vw), 228px);*/
  padding-bottom: clamp(60px, calc(100 / 1490* 120vw), 120px);
}
/*.p-sub-policy-section:first-of-type::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 48px;
  background-image: radial-gradient(#333 20%, transparent 20%);
  background-size: 16px 16px;
  background-position: center;
  background-repeat: repeat-y;
  position: absolute;
  bottom: clamp(50px, calc(114 / 1490* 100vw), 114px);
  left: 50%;
  transform: translateX(-50%);
}*/
.p-sub-policy__txt {
  line-height: 1.6;
  font-weight: 400;
}
.p-sub-policy__txt + .p-sub-policy__txt {
  margin-top: 1.6em;
}
.p-sub-policy__list a,
.p-sub-policy__txt a {
  text-decoration: underline;
}
.p-sub-policy__list a:hover,
.p-sub-policy__txt a:hover {
  opacity: 0.7;
}
.p-sub-policy__ttl {
  font-size: clamp(20px, calc(24 / 1490* 100vw), 24px);
  letter-spacing: 0.05em;
  margin-top: clamp(40px, calc(50 / 1490* 100vw), 50px);
  font-weight: 500;
  margin-bottom: clamp(20px, calc(30 / 1490* 100vw), 30px);
}
.p-sub-policy__list {
  font-size: clamp(14px, calc(16 / 1490 * 100vw), 16px);
  list-style-type: decimal;
  margin-top: 1.6em;
  padding-left: 1.5em;
  line-height: 2;
}
.p-sub-policy__list.list-01 {
  line-height: 1.6;
}
.p-sub-policy__list.list-01 li:not(:first-of-type) {
  margin-top: 1.6em;
}
.p-sub-policy__list.list-brackets {
  padding-left: 0;
  margin-top: 0;
}
.p-sub-policy__list.list-brackets>li {
  position: relative;
  padding-left: 1.6em;
  list-style-type: none;
  counter-increment: cnt 1;
}
.p-sub-policy__list.list-brackets>li::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "(" counter(cnt) ") ";
}
ol + .p-sub-policy__txt {
  margin-top: 1.6em;
}
.p-sub-policy__list > .p-sub-policy__list {
  margin-top: 0;
}
.p-sub-policy__list.list-alpha {
  list-style-type: lower-alpha;
  margin-top: 0;
}
.p-sub-policy-section + .p-sub-policy-section {
  padding-block: clamp(60px, calc(100 / 1490* 100vw), 100px);
  border-top: solid 1px #fff;
}
/* PC */
@media screen and (min-width: 768px) {
}

/*=================================================
 *  JavaScript用
 *================================================*/
/* 要素をふわっと表示 */
.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);
}

/*左から右にスライドして表示*/
.js-slide-item-left {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.7s ease-in-out;
}
.js-slide-item-left.slide-left {
  opacity: 1;
  transform: translateX(0);
}
