@charset "UTF-8";
/*----------------------------
Foundation
------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

figure {
  margin: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*----------------------------
■■　サイトの基本設定　base.scss ■■
------------------------------*/
/* ブレークポイント
pc：$layout-width-innerまで
tab：$layout-width-inner　-　1px ~ 768px
sp767未満
*/
/*-----------------------------------------
メディアクエリテンプレ https://haniwaman.com/breakpoint/
使い方：
@include mq('sp') { スマホレイアウト }
@include mq('tab') { タブレットレイアウト }
------------------------------------------*/
/* コンテナ幅 */
.container {
  width: 1118px;
  margin: 0 auto;
  padding: 0 6.4rem;
}
@media screen and (max-width: 1117px) {
  .container {
    width: 100%;
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 2.5rem;
  }
}

.container--l {
  width: 1344px;
  margin: 0 auto;
  padding: 0 3.2rem;
}
@media screen and (max-width: 1350px) {
  .container--l {
    width: 100%;
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .container--l {
    width: 100%;
    padding: 0 10px;
  }
}

/*----------------------------------------
フォント関係の設定
------------------------------------------*/
/*〇パソコン～768pxまでのフォントサイズ*/
/*----------------------------
基準フォント指定
使い方：
font-family: $font-base、$font-minchoなど
------------------------------*/
/* @font-face {
  font-family: "SourceHanSansJP";
  src: url("../font/SourceHanSansJP-Normal.woff2") format("woff2"), url("../font/SourceHanSansJP-Normal.woff") format("woff"), url("../font/SourceHanSansJP-Normal.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("../font/SourceHanSansJP-Light.woff2") format("woff2"), url("../font/SourceHanSansJP-Light.woff") format("woff"), url("../font/SourceHanSansJP-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../font/ShipporiMincho-Regular.woff2") format("woff2"), url("../font/ShipporiMincho-Regular.woff") format("woff"), url("../font/ShipporiMincho-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */
/*------------------------------------------
■各フォントサイズ自由設定

使用例：
CSSにて、fzでショートコード利用可能

左から、PC,SPのフォントサイズ指定
@include font--l(rem,rem);

左から、PC、TAB、SPのフォントサイズ指定
@include font--l3(rem,rem,rem);
--------------------------------------------*/
/*----------------------------------------
色関係の設定
------------------------------------------*/
/*----------------------------
■　sectionのpadding設定
sectionによく使われる余白の設定
使い方：section class="sect-pad"
------------------------------*/
/*
・基準paddingの設定　基本PC 9.6rem SP4.8rem
------------------------------*/
.sect-pad {
  padding: 0 0 16rem;
}
@media screen and (max-width: 1117px) {
  .sect-pad {
    padding: 0 0 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sect-pad {
    padding: 0 0 8rem;
  }
}

.sect-pad--y {
  padding: 16rem 0 16rem;
}
@media screen and (max-width: 1117px) {
  .sect-pad--y {
    padding: 9.6rem 0 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sect-pad--y {
    padding: 8rem 0 8rem;
  }
}

/*----------------------------------------
全体構造：Structure
------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: clamp(10px, 0.78125vw, 10px);
    font-size: clamp(5px, 10px + -5 * (100vw - 1280px) / -512, 10px);
  }
}
@media (max-width: 1152px) {
  html {
    font-size: clamp(0.546875rem, 36.25%, 0.625rem);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 62.5%;
  }
}

img {
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  color: #333;
}
a:hover {
  opacity: 0.7;
}
a.u-pointer-events--pc {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a.u-pointer-events--pc {
    pointer-events: auto;
  }
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

body {
  height: auto;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  line-height: 2.5;
  -webkit-text-size-adjust: 100%;
  color: #333;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 20rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

button {
  font-family: "Shippori Mincho", serif;
}

button,
button:focus,
button:active {
  color: inherit; /* 親の文字色を継承 */
  -webkit-appearance: none; /* iOS Safari のデフォルトボタン装飾を無効化 */
  -moz-appearance: none;
       appearance: none;
}

input, select, textarea {
  -webkit-appearance: none;
}

/* ユーザーエージェントスタイル（ブラウザ初期値）の上書き */
textarea {
  font-family: "Shippori Mincho", serif;
}

/*----------------------------------------
〇ヘッダー固定の調整
概要：ヘッダーfixedの場合、メイン画像がヘッダーに隠れる為、その分の余白設定することで、下に隠れないようになる。
※ヘッダー固定の場合のみ調整
------------------------------------------*/
.main-body {
  padding-top: 9.6rem;
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .main-body {
    padding-top: 6.4rem;
    padding-top: 4.8rem;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*
WordPress管理バーの位置調整
使い方：
WordPress管理バーのずらしたい方向に、位置指定
*/
/*----------------------------
■　Chorome relタグ　自動赤点線の除去
------------------------------*/
body a[rel~=nofollow], body a[rel~=sponsored], body a[rel~=ugc] {
  outline: none !important;
}

/*----------------------------
■ base.scssここまで
------------------------------*/
/*----------------------------
Layout
------------------------------*/
/*----------------------------
■■ フッター　■■
------------------------------*/
/*----------------------------
フッター　テキストカラー初期設定
使い方：colorに、$footer-txt-colorを入力。
color: $footer-txt-color;
------------------------------*/
.l-footer {
  background: url(../images/common/footer_bg.jpg) no-repeat center/cover;
  color: #333;
  padding: 7.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 4rem 0 0;
  }
}
.l-footer a {
  color: #333;
}

/*----------------------------
header.php
------------------------------*/
.l-header {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  width: 100%;
  height: 15.1rem;
  z-index: 1000;
  /*----------------------------
  PCヘッダー
  ------------------------------*/
  /*----------------------------
  ロゴ設定
  ------------------------------*/
  /*----------------------------
  ナビラップ
  ------------------------------*/
  /*----------------------------
  ナビリスト
  ------------------------------*/
  /*----------------------------
  〇ナビ設定
  ------------------------------*/
  /*----------------------------
  ■ハンバーガーメニュー■
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー表示設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー　線
  ------------------------------*/
  /*----------------------------
  MENU/CLOSE文字の設定
  ------------------------------*/
  /*----------------------------
  ■ ctaボタン
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュ左に配置
  使い方：l-header__drawerに、leftクラスを付与すると、左側のメニューに変更可能
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4.8rem;
  }
}
.l-header .container {
  width: unset;
}
@media screen and (max-width: 1279px) {
  .l-header .container {
    width: 128rem;
  }
}
.l-header__wrap {
  height: 9.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem 0 3rem;
}
@media screen and (max-width: 1300px) {
  .l-header__wrap {
    padding: 0 1rem 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 0 1rem;
  }
}
.l-header__logo-wrap {
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap {
    max-width: 11.4rem;
    z-index: 1001;
    position: relative;
  }
}
.l-header__logo-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo-wrap p {
  line-height: 1.9090909091;
  letter-spacing: 0;
  white-space: nowrap;
  font-size: 1.1rem;
  padding-bottom: 1rem;
}
@media (max-width: 1152px) {
  .l-header__logo-wrap p {
    font-size: 1rem;
    letter-spacing: -0.08em;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap p {
    display: none;
  }
}
.l-header__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .l-header__nav-wrap {
    display: block;
    background: #fff;
    color: #333;
    width: 100%;
    padding-top: 8.8rem;
    padding-bottom: 10rem;
    -webkit-transform: translate(200%);
            transform: translate(200%);
    overflow-y: auto;
    height: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }
  .l-header__nav-wrap.open {
    -webkit-transform: translate(0);
            transform: translate(0);
    height: 100%;
    padding: 8rem 0 10rem;
  }
  .l-header__nav-wrap.open .l-header__nav-item {
    display: block;
  }
  .l-header__nav-wrap.open .l-header__bottom.sp {
    display: block;
  }
}
.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-lists {
    margin-top: 2.5rem;
    padding: 0 2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.5rem;
  }
}
.l-header__nav-item {
  font-weight: 500;
  letter-spacing: 0;
  font-size: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    display: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2em;
    font-size: 1.4rem;
  }
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: block;
  }
}
.l-header__drawer-bar {
  background-color: #fff;
  width: 24px;
  height: 2px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}
.l-header__drawer-bar.bar--1 {
  top: 25%;
}
.l-header__drawer-bar.bar--2 {
  top: 40%;
}
.l-header__drawer-bar.bar--3 {
  top: 55%;
}
.l-header__drawer-menu-txt {
  bottom: 3px;
  font-size: 10px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  left: 0;
  text-align: center;
}
.l-header__drawer-menu-txt.u-disable--hidetxt {
  display: none;
}
.l-header__drawer-btn {
  width: 48px;
  height: 48px;
  border-radius: 0 0 0 5px;
  top: 0;
  right: 0;
  z-index: 1001;
  position: fixed;
  padding: 0;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  /*----------------------------
  ■ボタンアクティブ時の制御
  ------------------------------*/
}
.l-header__drawer-btn p {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.l-header__drawer-btn.active {
  /*----------------------------
  ■メニュタップ時アニメーション　×に変更
  ------------------------------*/
}
.l-header__drawer-btn.active .l-header__wrap-sp {
  display: none;
}
.l-header__drawer-btn.active .l-header__drawer-bar {
  width: 2.5rem;
  left: 8px;
  background: #fff;
}
.l-header__drawer-btn.active .u-active--hidetxt {
  display: none;
}
.l-header__drawer-btn.active .u-disable--hidetxt {
  display: block;
  letter-spacing: 0.08em;
}
.l-header__drawer-btn.active .bar--1 {
  -webkit-transform: rotate(0.7853981634rad) translate(-50%, -50%);
          transform: rotate(0.7853981634rad) translate(-50%, -50%);
  top: 35%;
  left: 50%;
}
.l-header__drawer-btn.active .bar--2 {
  opacity: 0;
}
.l-header__drawer-btn.active .bar--3 {
  -webkit-transform: rotate(-0.7853981634rad) translate(-50%, -50%);
          transform: rotate(-0.7853981634rad) translate(-50%, -50%);
  top: 35%;
  left: 50%;
}
.l-header__drawer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: rgba(51, 51, 51, 0.5);
  display: none;
  top: 6.4rem;
  left: 0;
}
.l-header__btn-wrap {
  margin-left: 5vw;
}
@media screen and (max-width: 1279px) {
  .l-header__btn-wrap {
    margin-left: 2.5vw;
  }
}
.l-header__btn {
  border-radius: 3.2rem;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 13.8rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    width: 100%;
    height: 6rem;
    border-radius: 5px;
    text-align: center;
  }
}
.l-header__btn-txt {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4285714286;
  padding-left: 2.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__btn-txt {
    padding-left: 0;
    padding-top: 2.7rem;
  }
}
.l-header .l-header__drawer.left .l-header__nav-wrap {
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  right: auto;
  left: 0;
}
.l-header .l-header__drawer.left .l-header__nav-wrap.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.l-header .l-header__drawer.left .l-header__drawer-btn {
  right: auto;
  left: 32px;
}

/*----------------------------
Object
------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  z-index: 100;
  width: 8rem;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .back-to-top-wrapper {
    width: 4rem;
    right: 0;
    bottom: 0;
  }
}

/*----------------------------
■■ ボタンコンポーネント　■■
使い方
<div class="c-btn__m-size">
  <a href="#" class="c-btn">
    <span class="c-btn__txt">テキスト</span>
  </a>
</div><!-- .c-btn__wrap -->

c-btn__m-sizeのクラス変更で、サイズ調整可能
------------------------------*/
/*----------------------------
■ ボタン基本設定
------------------------------*/
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #333;
  background: #fff;
  color: #333;
  border-radius: 32px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  /*----------------------------
    ■ ボタンサイズ
    使い方：クラスを変えると、ボタンのサイズが変わる
    ------------------------------*/
  /*
      ・Sサイズ
      ------------------------------*/
  /*
      ・通常サイズ（Mサイズ）
      ------------------------------*/
  /*
    ・（Lサイズ）
    ------------------------------*/
  /*----------------------------
  ■ボタンカラーパターン
  使い方：c-btnにマルチクラスでカラー変更可能
  例）c-btn c-btn--2
  ------------------------------*/
  /*----------------------------
  ■ ボタン位置調整
  使い方：サイズがついているクラスに、マルチクラスをする。
  c-btn__left（左寄せ）
  c-btn__center（中央寄せ）
  c-btn__right（右寄せ）
  例：
  <div class="c-btn__m-size c-btn__center">
  ------------------------------*/
  /*----------------------------
    ■　フォント設定
    ------------------------------*/
  /*----------------------------
      ■ボタンアイコン設定
      使い方：c-btn__txt に、マルチクラスで付与すると、アイコン追加。
      <span class="c-btn__txt c-btn__left-icon">テキスト</span>

      fontawesomeアイコンは、以下より探す
      https://fontawesome.com/search?s=solid%2Cbrands
      ------------------------------*/
  /*
  ・ボタンアイコン左
  ------------------------------*/
  /*
        ・ボタンアイコン右
        ------------------------------*/
}
.c-btn:focus, .c-btn:hover {
  opacity: 1;
  background: #333;
  color: #fff;
}
.c-btn__s-size {
  width: 20rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-btn__s-size {
    width: 20rem;
    height: 5rem;
  }
}
.c-btn__m-size {
  width: 32rem;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__m-size {
    width: 32rem;
    height: 6.4rem;
  }
}
.c-btn__l-size {
  width: 30rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .c-btn__l-size {
    width: 30rem;
    height: 8rem;
  }
}
.c-btn.c-btn--2 {
  background: #000;
  color: #fff;
}
.c-btn.c-btn--2:hover {
  background: #fff;
  color: #000;
}
.c-btn__left {
  margin: 0 auto 0 0;
}
.c-btn__center {
  margin: 0 auto;
}
.c-btn__right {
  margin: 0 0 0 auto;
}
.c-btn__left-pc {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .c-btn__left-pc {
    margin: 0;
  }
}
.c-btn__center-pc {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn__center-pc {
    margin: 0;
  }
}
.c-btn__right-pc {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn__right-pc {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__left-sp {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__center-sp {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__right-sp {
    margin: 0 0 0 auto;
  }
}
.c-btn__margin--x {
  margin: 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__margin--x {
    margin: 0;
  }
}
.c-btn__txt {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 1.6rem;
  }
}
.c-btn__left-icon {
  padding-left: 2rem;
  position: relative;
}
.c-btn__left-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 15px;
  background: url("../images/common/arrow.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__left-icon::before {
  background: url("../images/common/arrow_hover.svg") no-repeat center center/contain;
}
.c-btn__right-icon {
  padding-right: 3.1rem;
  position: relative;
}
.c-btn__right-icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 6px;
  background: url("../images/common/.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__right-icon::before {
  background: url("../images/common/.svg") no-repeat center center/contain;
}

.c-btn--circle {
  display: inline-block;
  width: 22.2rem;
  height: 22.2rem;
  background: url("../images/btn_bg.png") no-repeat center center/contain;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767px) {
  .c-btn--circle {
    width: 12.5rem;
    height: 12.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.c-btn--circle span {
  font-size: 4.5rem;
  line-height: 1.1111111111;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .c-btn--circle span {
    font-size: 2.6rem;
    line-height: 1.4615384615;
  }
}

.pager .wp-pagenavi {
  text-align: center;
  margin: 7.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi {
    margin: 2.7rem 0 0;
  }
}
.pager .wp-pagenavi span.current {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  border: 1px solid #333;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi span.current {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.pager .wp-pagenavi span.current:hover {
  background: #333;
  color: #fff;
}
.pager .wp-pagenavi .page {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-weight: bold;
  border: 1px solid #333;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .page {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.pager .wp-pagenavi .page:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
.pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
  width: 0.9rem;
  height: 1.8rem;
  margin: 0 2.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: transparent;
  font-size: 0;
  font-weight: bold;
  border: none;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
    margin: 0 1.9rem;
  }
}
.pager .wp-pagenavi .nextpostslink:hover, .pager .wp-pagenavi .previouspostslink:hover {
  opacity: 0.7;
}
.pager .wp-pagenavi .nextpostslink {
  background-image: url("../images/common/next.svg");
}
.pager .wp-pagenavi .previouspostslink {
  background-image: url("../images/common/prev.svg");
}
.pager .wp-pagenavi .pages {
  display: none;
}
.pager .wp-pagenavi .first, .pager .wp-pagenavi .last {
  border: none;
}
.pager .wp-pagenavi .first:hover, .pager .wp-pagenavi .last:hover {
  opacity: 0.7;
}
.pager .wp-pagenavi .extend {
  border: none;
}
.pager .wp-pagenavi .extend:hover {
  opacity: 0.7;
}

.faq {
  padding: 4.3rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 2.2rem 0 6.3rem;
  }
}
.faq__lists {
  width: 100%;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .faq__lists {
    margin-top: 0;
  }
}
.faq__list-item {
  background: #fff;
  padding: 1.7rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #D3D3D3;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    padding: 1.3rem 0;
  }
}
.faq__question {
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.28;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    padding: 0 4rem 0 0;
    gap: 0.7rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.faq__question span {
  font-size: 4.3rem;
  font-weight: 500;
  color: #333;
  line-height: 1.511627907;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .faq__question span {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}
.faq__question span.faq__question-icon {
  content: "";
  position: absolute;
  right: 0;
  border: 1px solid #333;
  border-radius: 50%;
  width: 3.8rem;
  height: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .faq__question span.faq__question-icon {
    top: 1rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}
.faq__question span.faq__question-icon::before {
  content: "";
  position: absolute;
  width: 2.1rem;
  height: 2px;
  background: #333;
}
@media screen and (max-width: 767px) {
  .faq__question span.faq__question-icon::before {
    width: 1.5rem;
  }
}
.faq__question span.faq__question-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2.1rem;
  background: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__question span.faq__question-icon::after {
    height: 1.5rem;
  }
}
.faq__question.active span.faq__question-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__question::before {
  content: "";
  background: url("../images/icon-q.svg") no-repeat center center/contain;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    top: 0.9rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.faq__question::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: url("../images/faq_open_icon.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.faq__question.active::after {
  content: "";
  background: url("../images/faq_close_icon.svg") no-repeat center center/contain;
}
.faq__answer {
  display: none;
  position: relative;
  font-weight: 400;
  letter-spacing: 0;
  padding-left: 6rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 1rem 0 1rem 3.5rem;
    line-height: 2;
  }
}
.faq__answer::before {
  content: "";
  background: url("../images/icon-a.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  width: 4.6rem;
  height: 4.6rem;
  top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .faq__answer::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 1.1rem;
  }
}
.faq__answer a {
  font-weight: 700;
  text-decoration: underline;
  color: #333;
}
.faq__ttl {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .faq__ttl {
    margin-top: 6rem;
  }
}
.faq__btn {
  margin-top: 5.2rem;
  max-width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .faq__btn {
    margin-top: 4rem;
  }
}

/*----------------------------
■■　カードコンポーネント　■■
概要：一覧(archive)などで、カード一覧
を使用する際に、使う事が多いコンポーネント
------------------------------*/
/*----------------------------
■　カード基準設定
------------------------------*/
.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 0.5rem 2rem;
  /*----------------------------
  ■カードグループ設定
  ------------------------------*/
  /*----------------------------
  ■カード画像設定
  ------------------------------*/
  /*----------------------------
  ■カードタイトル設定
  ------------------------------*/
  /*----------------------------
  ■カードinner設定
  概要：slickを使用する際に、c-cardを直接
  触ると、エラーが起こる。その為、内側のクラスとしてinnerを設けている。
  ------------------------------*/
  /*----------------------------
  ■カードラベル設定
  ------------------------------*/
  /*----------------------------
  ■カードボディ設定
  ------------------------------*/
  /*----------------------------
  ■カード日付設定
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .c-card {
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
.c-card__groups {
  display: -ms-grid;
  display: grid;
  padding: 6.4rem 0 0;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 4.8rem;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1279px) {
  .c-card__groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-card__groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-card__img-wrap {
  margin-bottom: 1.6rem;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  /*
  ・画像のレスポンシブ設定
  ------------------------------*/
}
.c-card__img-wrap.c-card__img-wrap1x1::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.c-card__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__ttl {
  font-weight: normal;
  line-height: 1.43;
}
@media screen and (max-width: 767px) {
  .c-card__ttl {
    font-size: 1.5rem;
  }
}
.c-card__inner {
  -webkit-transition: 250ms all;
  transition: 250ms all;
  position: relative;
}
.c-card__label {
  color: #fff;
  background: #3B454D;
  height: 3.2rem;
  min-width: 16rem;
  padding: 0 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1279px) {
  .c-card__label {
    height: 2.5rem;
  }
}
.c-card__body {
  padding: 0;
}
.c-card__date {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-card__date {
    font-size: 1.2rem;
  }
}

/*----------------------------
■■ mediaテンプレート　■■
------------------------------*/
.c-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 1279px) {
  .c-media {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .c-media {
    display: -ms-grid;
    display: grid;
    justify-items: center;
    max-width: 48rem;
    margin: 0 auto;
    row-gap: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.c-media.u-pb--0 {
  padding-bottom: 0;
}
.c-media__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40.25%;
          flex: 0 1 40.25%;
}
@media screen and (max-width: 767px) {
  .c-media__img-wrap {
    max-width: 32rem;
  }
}
.c-media__img-wrap.u-img--l {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55.55%;
          flex: 0 1 55.55%;
}
.c-media__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.6%;
          flex: 0 1 48.6%;
}
@media screen and (max-width: 1279px) {
  .c-media__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52.5%;
            flex: 0 1 52.5%;
  }
}
.c-media__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 1em;
}
@media screen and (max-width: 1279px) {
  .c-media__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-media__ttl {
    font-size: 2rem;
  }
}
.c-media__btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-media__btn {
    margin-top: 1.6rem;
  }
}

/*----------------------------
■■ パンくずコンポーネント　■■
------------------------------*/
.bread-nav {
  width: 100%;
  border-top: 1px solid #D3D3D3;
}
.bread-nav__wrapper {
  padding: 1.6rem 4.5rem;
  line-height: 1;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .bread-nav__wrapper {
    padding: 1.6rem 0;
  }
}

/*----------------------------
■■ お問い合わせテンプレート　■■
------------------------------*/
/*----------------------------
カラー初期設定
------------------------------*/
.p-form {
  /*----------------------------
  ■お問い合わせボックス
  ------------------------------*/
  /*
  ・お問い合わせフローアイコン設定
  ------------------------------*/
  /*
  ・フローアイコン　間の線
  ------------------------------*/
  /*
  ・フローアイコン設定
  ------------------------------*/
  /*----------------------------
  ■入力項目　見出し　設定
  ------------------------------*/
  /*----------------------------
  ■テーブル設定
  ------------------------------*/
  /*----------------------------
  ■ボタンラップ
  ------------------------------*/
  /*----------------------------
  ■確認ページ confirm
  ------------------------------*/
  /*----------------------------
  ■　完了ページ thanks
  ------------------------------*/
  /*----------------------------
  ■recaptchaテキスト
  ------------------------------*/
  /*----------------------------
  ■ トップテキスト
  ------------------------------*/
  /*----------------------------
  ■　必須ラベル
  ------------------------------*/
  /*----------------------------
  ■ safari　ボタンバグ回避
  ------------------------------*/
}
.p-form__box {
  background: transparent;
  padding: 0 1rem 6.4rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-form__box {
    padding-bottom: 3.2rem;
  }
}
.p-form__box .c-heading__sub {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-form__box .c-heading__sub {
    font-size: 1.6rem;
  }
}
.p-form__box .p-country-name {
  display: none;
}
.p-form__txt-bottom {
  font-weight: 500;
}
.p-form__flow-icon-inner {
  width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.p-form__flow-icon-inner .u-ls--0 {
  letter-spacing: 0;
}
.p-form__flow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  padding: 0 0 8rem;
}
@media screen and (max-width: 1279px) {
  .p-form__flow-wrap {
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__flow-wrap {
    padding-bottom: 4rem;
  }
}
.p-form__border {
  width: 10rem;
  background: #333;
  height: 1.5px;
  margin: -4rem 2rem 0;
}
.p-form__flow-icon {
  font-size: 1.6rem;
  width: 5rem;
  height: 5rem;
  border: 1.5px solid #333;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon {
    margin-bottom: 1.3rem;
  }
}
.p-form__flow-icon.active {
  background: #333;
  color: #fff;
}
.p-form__flow-icon p {
  font-weight: bold;
}
.p-form__heading {
  font-size: 2.4rem;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  ・見出し横のマーク設定
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .p-form__heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__heading {
    padding-left: 2rem;
  }
}
.p-form__heading::before {
  content: "";
  width: 0.6rem;
  height: 3.2rem;
  background: #333;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__heading .u-hide--txt {
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-form__heading .u-hide--txt {
    font-size: 1.2rem;
  }
}
.p-form__table-wrap {
  max-width: 70rem;
  margin: 0 auto;
  /*
  ・テーブル行設定
  ------------------------------*/
  /*
  ・非表示テキスト設定（個人情報）
  ------------------------------*/
  /*
  ・ハイフンは入力不要の調整
  ------------------------------*/
  /*
  ・※郵便番号入力で住所が自動表示されます
  の調整
  ------------------------------*/
}
.p-form__table-wrap tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 3rem;
  /*
  ・お名前、ふりがな行設定
  ------------------------------*/
}
.p-form__table-wrap tr.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /*
  ・お名前、ふりがな　幅設定
  ------------------------------*/
}
.p-form__table-wrap tr.p-form__flex td {
  width: 48%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-form__table-wrap .u-hidden--txt {
  display: none;
}
.p-form__table-wrap .u-hidden--txt.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-form__table-wrap .u-hidden--txt .u-padding--left {
  padding-left: 5rem;
}
.p-form__table-wrap .u-padding--top {
  padding-top: 0.4rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--top {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--top {
    padding-top: 1rem;
  }
}
.p-form__table-wrap .u-padding--y {
  padding: 1rem 0 2.3rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--y {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--y {
    padding: 1rem 0 2rem;
    line-height: 1.5;
  }
}
.p-form__table-wrap table {
  width: 100%;
}
.p-form__table-wrap input,
.p-form__table-wrap select,
.p-form__table-wrap textarea {
  border-radius: 0 !important;
  font-size: 1.6rem;
  width: 100%;
  background: #fff;
  border: 1px solid #333;
  padding: 1.6rem 2rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap select,
  .p-form__table-wrap textarea {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap select,
  .p-form__table-wrap textarea {
    padding: 1.2rem 2rem;
  }
}
.p-form__table-wrap input.u-half--width,
.p-form__table-wrap select.u-half--width,
.p-form__table-wrap textarea.u-half--width {
  width: 15rem;
}
.p-form__table-wrap label {
  letter-spacing: 0.1em;
}
.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
}
.p-form__flex .u-blue--link {
  padding: 0 0.2em 0 0.5em;
}
.p-form__btn-wrap {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  /*
  ・個人情報チェックラベル設定
  ------------------------------*/
}
.p-form__btn-wrap label {
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
.p-form__btn-wrap input {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0;
}
.p-form__btn-wrap.disable {
  display: none;
}
.p-form__btn-wrap input[type=checkbox]:checked + .p-form__privacy-txt::after {
  opacity: 1;
}
.p-form__btn-wrap .p-form__privacy-txt {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1rem;
  text-align: left;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-form__btn-wrap .p-form__privacy-txt {
    margin-bottom: 2.4rem;
  }
}
.p-form__btn-wrap .p-form__privacy-txt a {
  color: #333;
  text-decoration: underline;
}
.p-form__btn-wrap .p-form__privacy-txt span {
  font-weight: bold;
}
.p-form__btn-wrap .p-form__privacy-txt::after, .p-form__btn-wrap .p-form__privacy-txt::before {
  content: "";
  position: absolute;
  display: block;
}
.p-form__confirm-btn-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 6rem auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  padding-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups {
    -ms-grid-columns: (auto)[1];
    grid-template-columns: repeat(1, auto);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}
.p-form__confirm-btn-groups .c-btn__m-size {
  width: 24rem;
}
.p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
  justify-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
  justify-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__wrapper {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__wrapper {
    padding-top: 4rem;
  }
}
.p-form__thanks-txt {
  padding: 0 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1279px) {
  .p-form__thanks-txt {
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__thanks-txt {
    padding-bottom: 5rem;
    text-align: left;
  }
}
.p-form__thanks-btn-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 4.8rem;
  -webkit-column-gap: 6.4rem;
     -moz-column-gap: 6.4rem;
          column-gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) {
  justify-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) a {
  color: #333;
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(2) {
  justify-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups .c-btn__m-size:nth-child(2) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__recaptcha-txt {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 4rem;
}
.p-form__txt-top {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  line-height: 1.9;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form__txt-top {
    font-size: 1.6rem;
  }
}
.p-form__tel-wrap {
  text-align: center;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-form__tel-wrap {
    padding-bottom: 1.8rem;
  }
}
.p-form__tel-wrap a {
  color: #333;
}
.p-form__tel {
  position: relative;
  font-size: 3.6rem;
  font-weight: bold;
  padding-left: 4.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__tel {
    padding-left: 3rem;
  }
}
.p-form__tel::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #333;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__tel::before {
    top: 0.6rem;
  }
}
.p-form__tel-txt {
  font-weight: 500;
  padding-top: 2rem;
  line-height: 1.66;
}
.p-form__label {
  background: #AA2C04;
  color: #fff;
  border-radius: 2rem;
  font-weight: bold;
  padding: 0 5px;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 1em;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  width: 6.4rem;
  height: 3.2rem;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: 1.4rem;
  }
}
.p-form input[type=radio] {
  -webkit-appearance: auto;
  padding: 0;
}
.p-form input#privacy-policy {
  -webkit-appearance: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  padding: 0;
}

/*----------------------------
■リキャプチャバッヂ削除
------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

/*----------------------------
■ 送信ボタン
------------------------------*/
button[type=submit] {
  font-size: 1.6rem;
  background: #ccc;
  color: #fff;
  display: -ms-grid;
  display: grid;
  border: 0;
  place-items: center;
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
}
@media screen and (max-width: 767px) {
  button[type=submit] {
    font-size: 1.4rem;
  }
}
button[type=submit].active {
  pointer-events: initial;
  cursor: pointer;
  background: #333;
  border: 0;
}
button[type=submit].active:hover {
  opacity: 0.7;
}
button[type=submit].u-rev {
  background: #7d7d7d;
  padding: 0;
}

.mw_wp_form button[type=submit],
.mw_wp_form input[type=submit] {
  pointer-events: initial;
  cursor: pointer;
}

input#privacy-policy {
  -webkit-appearance: auto;
}

label[for=privacy-policy-1] input[id=privacy-policy-1] {
  margin: 0;
  width: 24px;
  height: 24px;
}
label[for=privacy-policy-1] .mwform-checkbox-field-text {
  display: none;
}

input[type=checkbox] {
  padding: 0;
  -webkit-appearance: checkbox;
  width: auto;
  height: auto;
}

input[type=radio] {
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0 10px 0 0;
  -webkit-appearance: auto;
}

.mwform-radio-field label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-kakunin .p-form__label {
  display: none;
}
.p-kakunin .p-form__box input[id=privacy-policy] {
  display: none;
}
.p-kakunin .p-form__box .c-heading__sub {
  color: #333;
  padding-bottom: 1.5em;
}

@media screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
}

/*1.フェードインアニメーションの指定*/
.scroll-fade {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .scroll-fade {
    opacity: 1;
  }
}

/*一瞬表示されるのを防ぐ*/
.scroll-load {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .scroll-load {
    opacity: 1;
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.fadeInDown {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*----------------------------
■■ 見出しコンポネント　■■
------------------------------*/
.p-single {
  position: relative;
}
.p-single::before {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 34.7rem;
  height: 61rem;
  z-index: -1;
  background: url(../images/common/bg2.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-single::before {
    display: none;
  }
}
.p-single__sect.news {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-single__sect.news {
    padding-bottom: 5.8rem;
  }
}
.p-single__conts-wrapper {
  width: 100%;
  padding-top: 5.5rem;
  padding-bottom: 8rem;
  border-bottom: 1px dashed #D3D3D3;
  /*----------------------------
  ■画像設定
  ------------------------------*/
  /*----------------------------
  ■見出しレイアウト
  ------------------------------*/
  /*----------------------------
  ■テーブルレイアウト
  ------------------------------*/
  /*----------------------------
  ■　文字装飾レイアウト
  ------------------------------*/
  /*
  ・太文字
  ------------------------------*/
  /*
  ・リスト
  ------------------------------*/
  /*
  ・引用ボックス
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper {
    padding-top: 4.5rem;
    padding-bottom: 2.8rem;
  }
}
.p-single__conts-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.p-single__conts-wrapper a {
  text-decoration: underline;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-single__conts-wrapper a:has(.aligncenter) {
  margin: 0 auto;
}
.p-single__conts-wrapper a:has(.alignright) {
  margin-left: auto;
}
.p-single__conts-wrapper a:has(.alignleft) {
  margin-right: auto;
}
.p-single__conts-wrapper .aligncenter {
  display: block;
  margin: 0 auto;
}
.p-single__conts-wrapper .alignright {
  margin-left: auto;
  display: block;
}
.p-single__conts-wrapper .alignleft {
  margin-right: auto;
  display: block;
}
.p-single__conts-wrapper h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h1 {
    font-size: 2.2rem;
    line-height: 1.3181818182;
  }
}
.p-single__conts-wrapper h2 {
  margin: 3rem 0 2rem;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h2 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper h3 {
  padding-left: 3rem;
  border-left: 3px solid #1E202B;
  margin: 3rem 0 2rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h3 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper h4 {
  padding: 0.5rem 2rem;
  border-left: 3px solid #1E202B;
  margin: 3rem 0 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h4 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper p {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper p {
    margin-top: 1.8rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-single__conts-wrapper a {
  color: #000AFF;
  text-decoration: underline;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
}
.p-single__conts-wrapper table {
  width: 100%;
  border: 1px solid #acacac;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper table {
    margin-bottom: 2.4rem;
  }
}
.p-single__conts-wrapper td {
  border-bottom: 1px solid #acacac;
  border-right: 1px solid #acacac;
  height: 7rem;
  vertical-align: middle;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper td {
    padding: 0 1.5rem;
  }
}
.p-single__conts-wrapper tr:nth-child(1) {
  background: #1E202B;
  color: #fff;
  font-weight: bold;
  border-right: 1px solid #acacac;
  text-align: center;
}
.p-single__conts-wrapper strong,
.p-single__conts-wrapper b {
  font-weight: bold;
}
.p-single__conts-wrapper ul, .p-single__conts-wrapper ol {
  margin-left: 2em;
}
.p-single__conts-wrapper ul {
  list-style: disc;
}
.p-single__conts-wrapper blockquote {
  position: relative;
  padding: 5px 12px 5px 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  color: #333;
  background: #f4f4f4;
  margin: 3rem 0;
}
.p-single__conts-wrapper blockquote::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  background: url("../images/quote-left-solid.svg") no-repeat center center/contain;
}
.p-single__conts-wrapper blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.7;
}
.p-single__conts-wrapper blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.p-single__ttl-wrap {
  padding-bottom: 4rem;
  border-bottom: 1px dashed #D3D3D3;
}
@media screen and (max-width: 767px) {
  .p-single__ttl-wrap {
    padding-bottom: 1.8rem;
  }
}
.p-single__date {
  line-height: 1;
}

/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-top .sec-ttl-en {
  font-size: 1.6rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.3125;
  letter-spacing: 0;
  margin-bottom: 3rem;
  padding-bottom: 0.8rem;
  padding-left: 0.4rem;
  border-bottom: 0.5px solid #333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top .sec-ttl-en {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-top .sec-ttl {
  font-size: 4.2rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5476190476;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-top .sec-ttl {
    font-size: 3rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .p-top .sec-ttl {
    font-size: 2.7rem;
    line-height: 1.3333333333;
  }
}
.p-top .sticky-wrapper {
  position: relative;
}
.p-top .mv {
  padding: 2.7rem 3.3rem;
  height: 100dvh;
  background: url("../images/mv.jpg") no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .mv {
    padding: 1.2rem;
  }
}
.p-top .mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.p-top .mv__logo {
  max-width: 19.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .mv__logo {
    max-width: 16.5rem;
  }
}
.p-top .mv__contents {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  left: 12.5%;
}
@media screen and (max-width: 767px) {
  .p-top .mv__contents {
    left: 7%;
  }
}
.p-top .mv__ttl {
  font-size: 5.5rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4727272727;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .mv__ttl {
    font-size: 3.9rem;
    line-height: 1.4871794872;
  }
}
.p-top .mv__txt {
  font-size: 2rem;
  font-family: "SourceHanSansJP", sans-serif;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0;
  color: #fff;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .mv__txt {
    margin-top: 1.8rem;
    font-size: 1.4rem;
    line-height: 1.9285714286;
  }
}
.p-top .mv__link {
  position: fixed;
  bottom: 4rem;
  right: 5rem;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .p-top .mv__link {
    position: absolute;
    bottom: unset;
    top: -26rem;
    right: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .mv__link {
    position: absolute;
    bottom: unset;
    top: -14rem;
    right: 1.9rem;
  }
}
.p-top .mv__link.is-stopped {
  position: absolute;
  bottom: 4rem;
}
.p-top .story {
  padding: 7.3rem 0 10.8rem;
  background: linear-gradient(210deg, #639C46 0%, #12341C 50%, #000805 100%);
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .story {
    padding: 3.7rem 0 7rem;
  }
}
.p-top .story .container {
  max-width: 72.8rem;
  margin-inline: auto;
}
.p-top .story .sec-ttl-en {
  border-bottom: 0.5px solid #fff;
}
.p-top .story__ttl {
  margin-top: 11.5rem;
  margin-bottom: 8.2rem;
  font-size: 4.2rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.7857142857;
  letter-spacing: 0;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top .story__ttl {
    margin-top: 6.5rem;
    margin-bottom: 4.5rem;
    font-size: 2.7rem;
    line-height: 1.9259259259;
  }
}
.p-top .story__txt {
  margin-top: 3.3rem;
  font-size: 1.6rem;
  font-family: "SourceHanSansJP", sans-serif;
  font-weight: 300;
  line-height: 2.0625;
  letter-spacing: 0;
  color: #fff;
  padding: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .story__txt {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 1.5rem;
  }
}
.p-top .story__txt:last-child {
  padding-bottom: 6rem;
  border-bottom: 0.5px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top .story__txt:last-child {
    padding-bottom: 5rem;
  }
}
.p-top .scroll-contents {
  background: url("../images/scroll-contents_bg.jpg") no-repeat center/cover;
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  padding: 8rem 0;
  /* ドットのスタイル */
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents {
    padding: 5rem 2.5rem;
    height: 100vh;
    min-height: 65rem;
    max-height: unset;
  }
}
.p-top .scroll-contents .dots-nav {
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .dots-nav {
    top: 36.5rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    right: 2rem;
    gap: 1rem;
  }
}
.p-top .scroll-contents .dots-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .dots-nav__item {
    gap: 0.8rem;
  }
}
.p-top .scroll-contents .dots-nav__label {
  font-size: 1.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #7F7045;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .dots-nav__label {
    font-size: 1.4rem;
  }
}
.p-top .scroll-contents .dots-nav .dots-nav__item.is-active .dots-nav__label {
  opacity: 1;
  visibility: visible;
}
.p-top .scroll-contents .dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #B3B3B3;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.p-top .scroll-contents .dot.active {
  background: #7F7045;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.p-top .scroll-contents .scroll-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 90dvh;
  background: url("../images/scroll-contents_bg.jpg") no-repeat center/cover;
  opacity: 0; /* 基本は透明 */
  visibility: hidden;
  -webkit-transition: visibility 0s;
  transition: visibility 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top .scroll-contents .scroll-content:nth-child(1) {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.p-top .scroll-contents .scroll-content:nth-child(2) {
  z-index: 2;
}
.p-top .scroll-contents .scroll-content:nth-child(3) {
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content {
    top: 1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 98vh;
    padding-top: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: auto;
  }
}
.p-top .scroll-contents .scroll-content .sec-ttl-en {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content .sec-ttl-en {
    margin-bottom: 0;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content .sec-ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.p-top .scroll-contents .scroll-content__item {
  gap: 4.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 50.3rem 4.5rem 1fr;
  grid-template-columns: 50.3rem 1fr;
  width: 100%;
  padding-right: 13rem;
}
@media screen and (max-width: 1000px) {
  .p-top .scroll-contents .scroll-content__item {
    -ms-grid-columns: 37rem 1fr;
    grid-template-columns: 37rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 2rem;
    padding: 0 2rem;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .p-top .scroll-contents .scroll-content__item {
    padding: 2rem 2rem;
  }
}
.p-top .scroll-contents .scroll-content__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-top .scroll-contents .scroll-content__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 503/680;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__img img {
    aspect-ratio: 311/200;
  }
}
@media screen and (max-width: 500px) {
  .p-top .scroll-contents .scroll-content__img img {
    aspect-ratio: 311/227;
  }
}
.p-top .scroll-contents .scroll-content__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-bottom: 8.3rem;
  border-bottom: 0.5px solid #333;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__body {
    padding-bottom: 4rem;
    display: contents;
  }
}
.p-top .scroll-contents .scroll-content__txt {
  margin-top: 3rem;
  font-size: 1.4rem;
  font-family: "SourceHanSansJP", sans-serif;
  line-height: 2.3571428571;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__txt {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.p-top .scroll-contents .scroll-content__txt--small {
  font-size: 1rem;
  line-height: 3.3;
  letter-spacing: 0;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__txt--small {
    display: block;
    font-size: 0.8rem;
    line-height: 2.25;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid #333;
  }
}
.p-top .scroll-contents .scroll-content__btn {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__btn {
    margin-top: 1rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    margin-right: auto;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid #333;
  }
}
.p-top .scroll-contents .scroll-content__btn a {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4285714286;
  letter-spacing: 0;
  padding: 1rem 7rem 1rem 0.5rem;
  display: inline-block;
  border-bottom: 0.5px solid #333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__btn a {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.5rem 4.2rem 0.5rem 0.5rem;
  }
}
.p-top .scroll-contents .scroll-content__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  background: url("../images/btn_arrow.svg") no-repeat center/contain;
}
.p-top .scroll-contents .scroll-content__lists {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__lists {
    margin-top: 0;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid #333;
  }
}
.p-top .scroll-contents .scroll-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list {
    gap: 1rem;
  }
}
.p-top .scroll-contents .scroll-content__list:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.p-top .scroll-contents .scroll-content__list-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list-img {
    max-width: 3.6rem;
  }
}
.p-top .scroll-contents .scroll-content__list-img img {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list-img img {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.p-top .scroll-contents .scroll-content__list-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .scroll-contents .scroll-content__list-ttl {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.1111111111;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list-ttl {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-top .scroll-contents .scroll-content__list-txt {
  font-size: 1.4rem;
  font-family: "SourceHanSansJP", sans-serif;
  line-height: 2.3571428571;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .scroll-contents .scroll-content__list-txt {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.p-top .cta {
  padding: 13rem 0;
  background: url("../images/mv.jpg") no-repeat center/cover;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .cta {
    padding: 2.9rem 0;
  }
}
.p-top .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.p-top .cta .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 8rem;
  padding-right: 11rem;
}
@media screen and (max-width: 1000px) {
  .p-top .cta .container {
    padding-right: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta .container {
    padding-left: 2.5rem;
    padding-right: 1.7rem;
  }
}
.p-top .cta__txt {
  font-size: 3.8rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1000px) {
  .p-top .cta__txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__txt {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__link .c-btn--circle {
    width: 8.8rem;
    height: 8.8rem;
    font-size: 0.9rem;
    line-height: 2;
  }
  .p-top .cta__link .c-btn--circle span {
    font-size: 1.8rem;
    line-height: 1.2222222222;
  }
}
.p-top .gallery {
  padding: 6.2rem 0 11rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-top .gallery {
    padding: 3.2rem 0 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .gallery .sec-ttl-en {
    margin-bottom: 2.8rem;
  }
}
.p-top .gallery .sec-ttl {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .gallery .sec-ttl {
    margin-top: 0;
  }
}
.p-top .gallery__wrapper {
  position: relative;
}
.p-top .gallery__items {
  margin-top: 6.1rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top .gallery__items {
    margin-top: 3.6rem;
  }
}
.p-top .gallery__items .slick-list {
  margin-left: 0;
  padding-left: 0;
}
.p-top .gallery__items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 12.5%;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__items .slick-track {
    margin-left: 2%;
  }
}
.p-top .gallery__items .slick-slide {
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__items .slick-slide {
    margin-right: 2rem;
  }
}
.p-top .gallery__items .slick-slide:first-child {
  margin-left: 0;
}
.p-top .gallery__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 959/521;
}
.p-top .gallery__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.3rem;
  margin-top: 3rem;
  font-size: 1.6rem;
  font-family: "Bebas Neue", sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 1rem 1rem 0;
  width: auto;
  min-width: 16.5rem;
  min-height: 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__nav {
    margin-top: 2rem;
    font-size: 1.4rem;
    gap: 0.5rem;
    padding: 0;
    min-width: 7rem;
    min-height: 2.8rem;
  }
}
.p-top .gallery__prev, .p-top .gallery__next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-top .gallery__prev:hover, .p-top .gallery__next:hover {
  opacity: 0.7;
}
.p-top .gallery__prev:disabled, .p-top .gallery__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p-top .gallery__prev img, .p-top .gallery__next img {
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__prev img, .p-top .gallery__next img {
    width: 1rem;
    height: 1rem;
  }
}
.p-top .gallery__nav-number {
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__nav-number {
    font-size: 0.8rem;
  }
}
.p-top .gallery__current {
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top .gallery__current {
    font-size: 1.8rem;
  }
}
.p-top .gallery__separator {
  margin: 0;
}
.p-top .gallery__total {
  font-weight: 400;
}
.p-top .information {
  padding: 9.5rem 0 10rem;
  background: linear-gradient(45deg, #639C46 0%, #12341C 50%, #000805 100%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .information {
    padding: 2.9rem 0 5rem;
  }
}
.p-top .information .sec-ttl-en {
  border-bottom: 0.5px solid #fff;
}
.p-top .information .sec-ttl {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .information .sec-ttl {
    margin-top: 2rem;
    margin-left: 0.7rem;
  }
}
.p-top .information__items {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  padding: 0 3rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .information__items {
    margin-top: 5rem;
    gap: 3.5rem;
    padding: 0 1.5rem;
  }
}
.information__img {
  background-color: #fff;
}
.p-top .information__item {
  max-width: 458px;
}
.p-top .information__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .information__body {
  padding: 1.6rem 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .information__body {
    padding: 1rem;
  }
}
.p-top .information__ttl {
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.1363636364;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .information__ttl {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}
.p-top .information__txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-family: "SourceHanSansJP", sans-serif;
  line-height: 2.3571428571;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .information__txt {
    margin-top: 0.3rem;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: -0.08em;
  }
}
.p-top .contact {
  padding: 7.4rem 0 4.3rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .contact {
    padding: 3.3rem 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .contact .sec-ttl-en {
    margin-bottom: 2.5rem;
  }
}
.p-top .contact .sec-ttl {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .contact .sec-ttl {
    margin-top: 0;
    margin-left: 0.7rem;
  }
}
.p-top .footer {
  padding: 3rem 0;
  background: linear-gradient(210deg, #639C46 0%, #12341C 50%, #000805 100%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .footer {
    padding: 2rem 0 2.8rem;
  }
}
.p-top .footer .container {
  padding: 0 8rem 0 9rem;
}
@media screen and (max-width: 1000px) {
  .p-top .footer .container {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .footer .container {
    padding: 0 1.5rem;
  }
}
.p-top .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem;
  }
}
.p-top .footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .footer__left {
    gap: 2.5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-top .footer__logo img {
  max-width: 23.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .footer__logo img {
    max-width: 16.3rem;
  }
}
.p-top .footer__info {
  font-size: 1.2rem;
  line-height: 1.9166666667;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top .footer__info {
    font-size: 0.9rem;
    line-height: 1.6666666667;
  }
}
.p-top .footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top .footer__wrap {
    gap: 0.5rem;
  }
}
.p-top .footer__tel {
  white-space: nowrap;
}
.p-top .footer__tel a {
  color: #fff;
  text-decoration: none;
}
.p-top .footer__fax {
  white-space: nowrap;
}
.p-top .footer__fax a {
  color: #fff;
  pointer-events: none;
  text-decoration: none !important;
  border-bottom: none !important;
  cursor: default;
}
.p-top .footer__mail a {
  color: #fff;
}
.p-top .footer__right-tel {
  font-size: 3.7rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  text-align: right;
  position: relative;
  padding-left: 6rem;
  padding-right: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .footer__right-tel {
    font-size: 2.5rem;
    line-height: 1.6666666667;
    padding-left: 4.3rem;
    padding-right: 0.02em;
    text-align: center;
  }
}
.p-top .footer__right-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 5rem;
  height: 2.7rem;
  background: url("../images/tel.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .footer__right-tel::before {
    width: 3.5rem;
    height: 1.8rem;
  }
}
.p-top .footer__right-txt {
  font-size: 1.2rem;
  font-family: "SourceHanSansJP", sans-serif;
  line-height: 1.9166666667;
  letter-spacing: -0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top .footer__right-txt {
    font-size: 0.9rem;
    line-height: 1.7777777778;
    text-align: center;
  }
}

.data .container {
  margin-top: 6.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .data .container {
    margin-top: 3.7rem;
    margin-bottom: 0;
  }
}
.data__table {
  margin-top: 3rem;
}
.data__table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 18rem 1.6rem 1fr;
  grid-template-columns: 18rem 1fr;
  gap: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .data__table dl {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
.data__table dl:nth-child(n+2) {
  margin-top: 1.7rem;
}
.data__table dt {
  background: #CDE2F2;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 0.4rem 0;
  font-weight: 500;
}
.data__table dd {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .data__table dd {
    text-align: center;
  }
}
.data__table-wrap {
  margin-top: 2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .data__table-wrap {
    width: 50%;
  }
}
.data__table-wrap::before {
  content: "";
  position: absolute;
  right: -15.2rem;
  top: 0;
  width: 11.2rem;
  height: 14.3rem;
  background: url(../images/data/data-txt.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .data__table-wrap::before {
    height: 100%;
    right: -13.5rem;
    background: url(../images/data/data-txt-sp.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .data__table-wrap dd {
    text-align: left;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .data__table-wrap dl:nth-child(n+2) {
    margin-top: 1.2rem;
  }
}
.data__contents {
  margin-top: 6.7rem;
}
@media screen and (max-width: 767px) {
  .data__contents {
    margin-top: 4.5rem;
  }
}
.data__contents--mt {
  margin-top: 6.7rem;
}
@media screen and (max-width: 767px) {
  .data__contents--mt {
    margin-top: 3rem;
  }
}
.data__contents-ttl {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .data__contents-ttl {
    font-size: 1.7rem;
    line-height: 1.5294117647;
    gap: 2.1rem;
  }
}
.data__contents-ttl span {
  font-size: 4.3rem;
  line-height: 0.8372093023;
  letter-spacing: 0;
  color: #0F7ECF;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .data__contents-ttl span {
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}
.data__contents-table {
  margin-top: 3rem;
  border-collapse: collapse;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
  border: 1px solid #E4E4E4;
}
@media screen and (max-width: 767px) {
  .data__contents-table {
    width: 100%;
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
}
.data__contents-table tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem (22rem)[3];
  grid-template-columns: 16rem repeat(3, 22rem);
}
@media screen and (max-width: 767px) {
  .data__contents-table tr {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.data__contents-table tr:first-child th {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2.1rem 0;
}
@media screen and (max-width: 767px) {
  .data__contents-table tr:first-child th {
    padding: 0.7rem 0;
  }
}
.data__contents-table th {
  background: #F2F8FD;
  text-align: center;
  padding: 1.3rem 0;
  border: 1px solid #E4E4E4;
  place-content: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data__contents-table th {
    padding: 0.7rem 0;
  }
}
.data__contents-table td {
  text-align: center;
  padding: 1.3rem 0;
  border: 1px solid #E4E4E4;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .data__contents-table td {
    padding: 1.4rem 0;
  }
}
.data__contents-table td.td-col2 {
  padding: 0.8rem 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .data__contents-table5 {
    width: 100%;
  }
}
.data__contents-table5 tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem (22rem)[2];
  grid-template-columns: 16rem repeat(2, 22rem);
}
@media screen and (max-width: 767px) {
  .data__contents-table5 tr {
    -ms-grid-columns: 8rem (1fr)[2];
    grid-template-columns: 8rem repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table5 tr:first-child th {
    padding: 1.6rem 0;
  }
}
.data__contents-table2 {
  width: 100%;
}
.data__contents-table2 tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem (1fr)[4];
  grid-template-columns: 16rem repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .data__contents-table2 tr {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.data__contents-table3 {
  margin-top: 2.6rem;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .data__contents-table3 {
    width: 100%;
    margin-top: 1rem;
  }
}
.data__contents-table3 tbody {
  width: 100%;
}
.data__contents-table3 th, .data__contents-table3 td {
  border: 1px solid #ccc;
  padding: 1.6rem 0.2rem;
  text-align: center;
  vertical-align: middle;
  height: auto;
}
@media screen and (max-width: 767px) {
  .data__contents-table3 th, .data__contents-table3 td {
    padding: 0.7rem 0.2rem;
  }
}
.data__contents-table3 th {
  background: #333;
  font-weight: 700;
  color: #fff;
}
.data__contents-table3 th:first-child {
  background: #F2F8FD;
  color: #333;
  min-width: 16rem;
}
@media screen and (max-width: 767px) {
  .data__contents-table3 th:first-child {
    min-width: 8rem;
    padding: 0;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table3 th:nth-child(n+2) {
    min-width: 12.9rem;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table3 th.blue {
    background: #333;
    color: #fff;
  }
}
.data__contents-table3 tr {
  height: auto;
}
.data__contents-table3 td {
  padding: 0.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data__contents-table3 td {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table3.pc-only {
    display: none;
  }
}
.data__contents-table3.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .data__contents-table3.sp-only {
    display: block;
  }
}
.data__contents-table4 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .data__contents-table4 {
    margin-top: 3.5rem;
  }
}
.data__contents-table4 dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem 1fr;
  grid-template-columns: 16rem 1fr;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.data__contents-table4 dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F2F8FD;
  border: 1px solid #EAEAEA;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dt {
    padding: 0.8rem 0;
  }
}
.data__contents-table4 dd {
  border: 1px solid #EAEAEA;
  padding: 2.9rem 4rem 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1380px) {
  .data__contents-table4 dd {
    padding: 2.9rem 3rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dd {
    padding: 1.2rem 2rem 2rem;
    width: 100%;
  }
}
.data__contents-table4 dd .data__contents-table4-list-row {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: (1fr)[5];
  grid-template-rows: repeat(5, 1fr);
  -webkit-column-gap: 3.8rem;
     -moz-column-gap: 3.8rem;
          column-gap: 3.8rem;
}
@media screen and (max-width: 1380px) {
  .data__contents-table4 dd .data__contents-table4-list-row {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dd .data__contents-table4-list-row {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .data__contents-table4 dd .data__contents-table4-list-row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.data__contents-table4 dd li {
  padding-left: 1.6rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dd li {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.data__contents-table4 dd li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #0F7ECF;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .data__contents-table4 dd li::before {
    top: 1.6rem;
  }
}
.data__contents-wrap {
  max-width: 78.2rem;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem 2rem;
  background: #F2F8FD;
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .data__contents-wrap {
    margin-top: 1.8rem;
    padding: 1.6rem 1.6rem 2rem;
    gap: 1rem;
  }
}
.data__contents-item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .data__contents-item {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.data__contents-item span {
  display: inline-block;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  width: 2.6rem;
  height: 2.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .data__contents-item span {
    margin-right: 0.5rem;
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .data .data__contents-item.column {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.data__contents-items {
  margin-top: 3.7rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.7rem 1fr 2.7rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.8rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .data__contents-items {
    margin-top: 1.5rem;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.data__contents-item-ttl {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .data__contents-item-ttl {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}
.data__contents-item-img {
  margin-top: 0.8rem;
}
.data__contents-item-img.modal-img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__contents-item-img.modal-img::after {
    content: "";
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    width: 2.7rem;
    height: 2.7rem;
    background: url(../images/data/data-icon.svg) no-repeat center center/contain;
  }
}
.data__contents-items2 {
  margin-top: 3.4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.7rem 1fr 2.7rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .data__contents-items2 {
    margin-top: 1.2rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-items2.data__contents-items2--mt {
    margin-top: 4.3rem;
  }
}
.data__contents-items2:has(.data__contents-table4) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30rem 4rem 1fr;
  grid-template-columns: 30rem 1fr;
  gap: 4rem;
}
@media screen and (max-width: 1380px) {
  .data__contents-items2:has(.data__contents-table4) {
    -ms-grid-columns: 25rem 2rem 1fr;
    grid-template-columns: 25rem 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-items2:has(.data__contents-table4) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.data__contents-items2:has(.data__contents-table4) dd {
  width: 100%;
  position: relative;
}
.data__contents-items2:has(.data__contents-table4) dd::before {
  content: "等";
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .data__contents-items2:has(.data__contents-table4) dd::before {
    font-size: 1.4rem;
    line-height: 2;
    bottom: 0.3em;
    right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-items2 .data__contents-item-ttl {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-items2 .data__contents-item-img {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .data__contents-items2 .data__contents-table4 {
    margin-top: 0;
  }
}
.data .img-modal {
  display: none; /* 非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.data .img-modal-content {
  display: block;
  margin: 30% auto;
  max-width: 90%;
  height: auto;
  aspect-ratio: 288/260;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .data .img-modal-content {
    margin: 50% auto;
  }
}
.data .img-modal-close {
  position: absolute;
  top: 12%;
  right: 6%;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

/*----------------------------
改行クラス
使い方：
PCのみの改行は、point-br--pc
TAB未満の改行は、point-br--tab
SP未満の改行は、point-br--sp
------------------------------*/
.point-br--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .point-br--sp {
    display: block;
  }
}
.point-br--tab {
  display: none;
}
@media screen and (max-width: 1279px) {
  .point-br--tab {
    display: block;
  }
}
.point-br--pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .point-br--pc {
    display: none;
  }
}

/*----------------------------
テキスト位置調整クラス
------------------------------*/
.u-txt--center {
  text-align: center;
}

.u-txt--left {
  text-align: left;
}

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

/*----------------------------
色変更クラス
------------------------------*/
.u-color--white--white {
  color: #fff;
}

/*----------------------------
背景色変更クラス
------------------------------*/
.u-bg--gray {
  background: #fff;
}

/*----------------------------
PC,TAB、SPの表示切り替え
使い方：
SPのみ出力したい等があれば、
クラス名をつけることで可能に。
------------------------------*/
.pc {
  display: block !important;
}
@media (max-width: 1152px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.pc-inline {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .pc-inline {
    display: none !important;
  }
}

.pc-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none !important;
  }
}

.tab {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .tab {
    display: block !important;
  }
}

.tab-inline {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .tab-inline {
    display: inline !important;
  }
}

.tab-flex {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .tab-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.sp-inline {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline !important;
  }
}

.sp-flex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.pc-small {
  display: none !important;
}
@media (max-width: 1152px) {
  .pc-small {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-small {
    display: none !important;
  }
}

/*----------------------------
//インラインブロック
使い方：
折り返し自動制御で使える。
例）折り返しのタイミングで２段に
したい場合など。
------------------------------*/
.u-display--ib {
  display: inline-block;
  font-weight: inherit;
}

/*----------------------------
etc
------------------------------*/

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input[type="radio"] {
	position: absolute;
	display: none;
	width: 100%;
	padding: 0;
}

input[type="radio"]+span {
	position: relative;
}

input[type="radio"]+span::before {
	content: "";
	position: absolute;
	top: calc(50% - 13px);
	left: -40px;
	display: block;
	width: 26px;
	height: 26px;
	background-color: #ffffff;
	border: 1px solid #969696;
	border-radius: 50%;
	cursor: pointer;
}

input[type="radio"]:checked+span::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	left: calc(-40px + 13px - 5px);
	display: block;
	width: 10px;
	height: 10px;
	background-color: #333333;
	border-radius: 50%;
	cursor: pointer;
}

input[type="checkbox"] {
	position: absolute;
	display: none;
	width: 100%;
	padding: 0;
}

input[type="checkbox"]+span {
	position: relative;
	padding-left: 38px;
}

input[type="checkbox"]+span::before {
	content: "";
	position: absolute;
	top: calc(50% - 13px);
	left: 0;
	display: block;
	width: 26px;
	height: 26px;
	background-color: #ffffff;
	border: 1px solid #969696;
	border-radius: 4px;
	cursor: pointer;
}

input[type="checkbox"]:checked+span::after {
	content: "\2713";
	position: absolute;
	top: calc(50% - 21px);
	left: 8px;
	display: block;
	font-size: 2.4rem;
	color: #000000;
	cursor: pointer;
}

input[type="file"] {
	border: none !important;
	padding-left: 0 !important;
}

.form-box form .contact-dl-box .flex-contents {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.form-box form .contact-dl-box .flex-contents.col {
	align-items: flex-start;
	flex-direction: column;
}

@media screen and (max-width: 768px) {
	.form-box form .contact-dl-box .flex-contents {
		align-items: flex-start;
		flex-direction: column;
		row-gap: 10px;
	}
}

.form-box form .contact-dl-box dl.dl-check-box .dd-check-box {
	display: inline-block;
	margin-top: -15px;
	margin-left: -15px;
}

.form-box form .contact-dl-box span.wpcf7-list-item {
	display: block;
  margin: 10px 0 0 0;
}

.form-box form .contact-dl-box dl {
	margin-bottom: 0;
}
.form-box form .contact-dl-box dl+dl {
  margin-top: 0;
}

.form-box form .contact-dl-box dl.dl-check-box .wpcf7-form-control-wrap+.wpcf7-form-control-wrap input {
	margin-top: 10px;
}

.form-box form .contact-dl-box dl:first-child {
	margin-top: 0;
}

.form-box form .contact-dl-box dl dt {
	width: 195px;
	font-weight: 700;
	font-size: 1.8rem;
}

.form-box form .contact-dl-box dl dt .required {
  margin-bottom: 4px;
  padding: 3px 6px;
	font-size: 1.2rem;
	color: #fff;
}

.form-box form .contact-dl-box dl dd {
  flex-grow: 1;
  width: auto;
  margin-top: 0;
  margin-left: 0;
}
.form-box form .contact-dl-box dl dd.input-middle {
  flex: 0 0 360px;
}

.form-box form .contact-dl-box dl dd input {
	width: 100%;
	padding: 9px 25px;
	font-size: 1.4rem;
	background: #ffffff;
	border: solid 1px #dedede;
}

.form-box form .contact-dl-box .title-block {
	background-color: #fffbe6;
	border: solid 1px #ffc300;
	padding: 8px 16px;
}

.form-box form .contact-dl-box .title-block h3 {
	padding-left: 1em;
	text-indent: -1em;
}

.form-box form .contact-dl-box dl dd input.size-m {
	max-width: 400px;
}

.form-box form .contact-dl-box dl dd .select-box {
	position: relative;
}

.form-box form .contact-dl-box dl dd .select-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	z-index: 10;
	width: 0;
	height: 0;
	margin: auto;
	border-width: 0 7px 10px 7px;
	border-style: solid;
	border-color: transparent transparent #333333 transparent;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	pointer-events: none;
}

.form-box form .contact-dl-box dl dd input[type="date"] {
	width: 226px;
	padding: 8px 8px 8px 25px;
	background: #ffffff;

	-webkit-background: #ffffff;
	-moz-background: #ffffff;
	-o-background: #ffffff;
}

.form-box form .contact-dl-box dl dd input[type="date"]::-webkit-inner-spin-button,
.form-box form .contact-dl-box dl dd input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;

	-webkit-appearance: none;
	appearance: none;
}

.form-box form .contact-dl-box dl dd textarea {
	width: 100%;
	height: 319px;
	padding: 25px;
	font-size: 1.4rem;
	line-height: 1.8;
	background: #ffffff;
	border: solid 1px #dedede;
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.addr input {
	margin-top: 30px;
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice-time,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice-time {
	position: relative;
	display: inline-block;
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice::before,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice-time::before,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice::before,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice-time::before {
	content: "";
	position: absolute;
	top: 0;
	right: 16px;
	bottom: 6px;
	width: 0;
	height: 0;
	margin: auto;
	border-width: 0 0 10px 10px;
	border-style: solid;
	border-color: transparent #333333 #333333 transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice input,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice select,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.first-choice-time select,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice select,
.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.second-choice-time select {
	width: 226px;
	height: 48px;
	padding: 9px 8px 9px 25px;
}

.form-box form .contact-dl-box dl dd .wpcf7-form-control-wrap.personal_address_1 {
	display: block;
	margin-top: 16px;
}

.form-box form .contact-dl-box dl dd .wpcf7-radio .wpcf7-list-item {
	display: block;
	margin: 10px 0 0 0;
	padding-left: 40px;
}

.form-box form .contact-dl-box .note-box {
	background-color: #fffbe6;
	padding: 30px;
	margin: 30px 0;
}

.form-box form .contact-dl-box .note-box ul {
	margin-top: 10px;
	line-height: 1.8;
}

.form-box form .contact-dl-box .note-box .underline {
	text-decoration: underline;
}

.form-box form .range {
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}

.form-box form #consent-box {
	margin-top: 30px;
	font-size: 1.8rem;
	text-align: center;
}

.form-box form #consent-box input[type="checkbox"]+span {
	position: relative;
	display: block;
}

.form-box form #consent-box input[type="checkbox"]+span::before {
	content: "";
	position: absolute;
	top: -1px;
	display: block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	text-align: center;
	background: #ffffff;
	border: 1px solid #333333;
	border-radius: 0;
	cursor: pointer;
}

.form-box form #consent-box input[type="checkbox"]:checked+span::after {
	font-size: 2.6rem;
}

.form-box form #consent-box .privacy-page {
	color: #ff8927;
	text-decoration: none;
}

.form-box form #submit-box {
	margin-top: 40px;
	text-align: center;
}

.form-box form #submit-box .btn-orange {
	width: 400px;
	font-weight: 700;
	font-size: 2.4rem;
	border: none;
}

.form-box form #submit-box .btn-orange:hover {
	opacity: 0.8;
}

.form-box th {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 25%;
}

.form-box td {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 75%;
}

.form-box select {
	height: 50px;
	padding: 10px 20px;
}

.form-box .your-email {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.form-box .zip {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 150px;
}

.form-box .addr {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.form-box .your-content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.form-box .required {
	display: inline-block;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1;
	color: #ffffff;
}

.form-box .w-max {
	width: 100%;
}

.form-box .w-short {
	width: 250px !important;
}

.form-box .notes {
	margin-top: 30px;
}

.form-box .contact-dl-wrap+.contact-dl-wrap {
	margin-top: 90px;
}

.form-box .contact-dl-wrap .ttl-underline {
	padding-bottom: 8px;
	font-size: 2.4rem;
	line-height: 1.6;
}



#submit-box .wpcf7-response-output {
	text-align: center;
}

#btn-submit .ajax-loader {
	position: absolute;
	top: calc(50% - 8px);
}

@media screen and (min-width: 768px) {
	.contact-box th {
		text-align: left;
	}
}

@media screen and (max-width: 767px) {

	.contact-box input[type="text"],
	.contact-box input[type="password"],
	.contact-box input[type="email"],
	.contact-box input[type="tel"],
	.contact-box input[type="url"],
	.contact-box input[type="number"],
	.contact-box textarea {
		width: 100%;
	}

	.contact-box td,
	.contact-box th {
		display: block;
		width: 100%;
	}

	.form-box form .contact-dl-box dl dt {
		font-size: 1.6rem;
	}

	.form-box form #submit-box .btn-orange {
		width: 80%;
	}

	.form-box form #submit-box .btn-orange:hover {
		opacity: 0.8;
	}

	.form-box form .contact-dl-box span.wpcf7-list-item {
		width: 100%;
	}

	.form-box form .contact-dl-box .note-box {
		padding: 20px 15px;
		margin-top: 30px;
	}

	.form-box form .contact-dl-box .note-box .head {
		font-size: 1.8rem;
	}

	.form-box form .contact-dl-box .note-box li {
		margin-left: 16px;
		text-indent: -16px;
	}
	
	.form-box form .contact-dl-box .title-block h3 {
		font-size: 1.5rem;
	}
}

.sec-inner.pt0 {
	padding-top: 0;
}

.contact-dl-box.has-padding {
	padding: 58px 135px;
}

.single-event .form-box #consent-box,
#materials .form-box #consent-box,
#mail-magazine .form-box #consent-box,
#contact .form-box #consent-box {
	margin-top: 50px;
}

#materials .form-box #submit-box,
#mail-magazine .form-box #submit-box,
#contact .form-box #submit-box {
	margin-top: 50px;
}

@media screen and (max-width: 768px) {
	.sec-inner.pt0 {
		padding-top: 0;
	}

	#materials .form-box,
	#mail-magazine .form-box,
	#contact .form-box {
		padding: 0;
	}

	.contact-dl-box.has-padding {
		padding: 30px 25px 20px;
	}

	#materials .form-box #consent-box,
	#mail-magazine .form-box #consent-box,
	#contact .form-box #consent-box {
		margin-top: 50px;
	}

	#materials .form-box #submit-box,
	#mail-magazine .form-box #submit-box,
	#contact .form-box #submit-box {
		margin-top: 50px;
	}
}

.morimodel-form {
  width: 700px;
  margin: 50px auto 0;
}
.morimodel-form dl {
  display: flex;
  border-top: 1px #dedede dashed;
  padding: 20px 0;
}
.morimodel-form dl:last-child {
  border-bottom: 1px #dedede dashed;
}
.wpcf7-form-control-wrap {
  display: block;
  line-height: 0;
}
.wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 10px;
}
.horizontal {
  display: flex;
  justify-content: space-between;
}
.horizontal .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0;
}
.row-zip .mark, 
.row-zip .wpcf7-form-control-wrap {
  vertical-align: middle;
}
.row-zip .mark {
  font-size: 2rem;
  font-weight: bold;
}
.row-name .wpcf7-form-control-wrap, 
.row-furigana .wpcf7-form-control-wrap {
  display: inline-block;
}
.row-zip .wpcf7-form-control-wrap {
  display: inline-block;
  width: 175px;
}
#consent-box .wpcf7-form-control {
  line-height: 1.65;
}
.required {
  vertical-align: super;
}
small {
  font-size: smaller;
}
.wpcf7-list-item {
  display: inline-block;
}
.required {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  background-color: #000;
  color: #fff;
}
.submit-wrap {
  position: relative;
  display: inline-block;
}
.submit-wrap::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  width: 42px;
  height: 1px;
  background-color: #eee;
}
.submit-wrap::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: calc(50% - 3px);
  right: 20px;
  width: 7px;
  height: 7px;
  border-width: 1px 1px 0 0;
  border-color: #eee;
  border-style: solid;
  box-sizing: border-box;
  transform: rotate(45deg);
}
.form-box form .contact-dl-box dl dd input.your-name, 
.form-box form .contact-dl-box dl dd input.your-kana {
  width: 170px;
}
.form-box form .contact-dl-box dl dd textarea {
  padding: 15px;
}
.btn-black {
  width: 315px;
  padding: 8px 0;
  border: none;
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2.6rem;
}
.wpcf7-spinner {
  top: 100%;
  left: calc(50% - 12px);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .morimodel-form {
    width: 100%;
  }
  .morimodel-form dl {
    display: block;
  }
  .form-box form .contact-dl-box dl dd input.your-name, 
  .form-box form .contact-dl-box dl dd input.your-kana {
    width: 160px;
  }
}
