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

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
sp640未満
*/
/*-----------------------------------------
メディアクエリテンプレ https://haniwaman.com/breakpoint/
使い方：
@include mq('sp') { スマホレイアウト }
@include mq('tab') { タブレットレイアウト }
------------------------------------------*/
/* コンテナ幅 */
.container {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 999px) {
  .container {
    width: 95%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 32px;
  }
}

/*----------------------------------------
フォント関係の設定
------------------------------------------*/
/*〇パソコン～768pxまでのフォントサイズ*/
/*----------------------------
基準フォント指定
使い方：
font-family: $font-base、$font-minchoなど
------------------------------*/
/*------------------------------------------
■各フォントサイズ自由設定

使用例：
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 9.6rem;
}
@media screen and (max-width: 767px) {
  .sect-pad {
    padding: 0 0 4.8rem;
  }
}

.sect-pad--y {
  padding: 9.6rem 0 9.6rem;
}
@media screen and (max-width: 767px) {
  .sect-pad--y {
    padding: 4.8rem 0 4.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 {
  font-size: 62.5%;
  height: 100%;
}

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: #142139;
}
a:hover {
  opacity: 0.6;
}
a.u-pointer-events--pc {
  pointer-events: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a.u-pointer-events--pc {
    pointer-events: auto;
  }
}
a.u-blue--link {
  text-decoration: underline;
  color: #0000ee;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

body {
  height: auto;
  width: 100%;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  color: #142139;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  min-width: 100rem;
  /*----------------------------
  ■ min-widthで、横スクロール調整するときは、以下をOFFにする
  ------------------------------*/
  /*----------------------------
  ■ ここまで
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  body {
    min-width: 76.7rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 26px;
    min-width: 320px;
  }
}

button {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

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

/*
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: #fff;
  color: #142139;
}
.l-footer__body {
  padding: 1.6rem 0;
  border-top: 1px solid #A9979A;
}
@media screen and (max-width: 767px) {
  .l-footer__body {
    padding: 3rem 0;
  }
}
.l-footer__foot {
  background: #A9979A;
  color: #fff;
  font-family: "Cormorant Infant", serif;
  padding: 0.2em 0;
}
.l-footer__copyright {
  text-align: center;
  line-height: 1;
}
.l-footer__logo-wrap {
  width: 4.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-wrap {
    width: 8.2rem;
  }
}

/*----------------------------
headerは、基本640pxでSPに切替。
理由：
767px切替だと、レスポンシブ時にナビテキストが
折り返される可能性が高い為。
------------------------------*/
/*----------------------------
ヘッダー　テキストカラー初期設定
使い方：color: $header-txt-color;
------------------------------*/
.l-header {
  height: 117px;
  position: static;
  top: 0;
  width: 100%;
  background: #A9979A;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  /*----------------------------
  PCヘッダー
  ------------------------------*/
  /*----------------------------
  ロゴ設定
  ------------------------------*/
  /*----------------------------
  ナビラップ
  ------------------------------*/
  /*----------------------------
  PCナビリスト
  ------------------------------*/
  /*----------------------------
  〇PCナビ設定
  ------------------------------*/
  /*----------------------------
  ■ハンバーガーメニュー■
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー表示設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー　線
  ------------------------------*/
  /*----------------------------
  MENU/CLOSE文字の設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュ左に配置
  使い方：l-header__drawerに、leftクラスを付与すると、左側のメニューに変更可能
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 120px;
    position: fixed;
  }
}
.l-header.transform {
  background: #fff;
  color: #A9979A;
  height: 6.7rem;
  position: fixed;
}
.l-header.transform * {
  color: #A9979A;
}
.l-header__wrap {
  height: 100%;
  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;
  /*----------------------------
  SPヘッダー
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    display: none;
  }
}
.l-header__wrap--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__wrap--sp {
    height: 100%;
    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;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
}
.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__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;
}
@media screen and (max-width: 767px) {
  .l-header__nav-wrap {
    display: none;
  }
}
.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cormorant Infant", serif;
}
.l-header__nav-item {
  padding: 0 1em;
  font-size: 16px;
  font-weight: 500;
  /*----------------------------
  SPナビ設定
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    display: none;
  }
}
.l-header__nav-item--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--sp {
    width: calc(100% - 9rem);
    line-height: 2em;
    display: block;
    margin: 0 auto;
    font-family: "Cormorant Infant", serif;
    font-size: 66px;
  }
}
.l-header__nav-item--sp a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.l-header__nav-item--sp img {
  width: auto;
}
.l-header__nav-item--sp .align--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.l-header__nav-item a {
  color: #fff;
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: block;
  }
}
.l-header__drawer-bar {
  background-color: #fff;
  width: 45px;
  height: 1px;
  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--1 {
  top: 40%;
}
.l-header__drawer-bar--2 {
  top: 50%;
}
.l-header__drawer-bar--3 {
  top: 60%;
}
.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 {
  color: #333;
  border: 1px solid #A9979A;
  width: 120px;
  height: 120px;
  background: transparent;
  top: 0px;
  right: 0px;
  z-index: 1001;
  position: fixed;
  padding: 0;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  /*----------------------------
  ■ボタンアクティブ時の制御
  ------------------------------*/
}
.l-header__drawer-btn.active {
  border: 1px solid #A9979A;
  /*----------------------------
  ■メニュタップ時アニメーション　×に変更
  ------------------------------*/
}
.l-header__drawer-btn.active .l-header__drawer-bar {
  width: 45px;
  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 .l-header__drawer-bar--1 {
  -webkit-transform: rotate(0.7853981634rad) translate(-50%, -50%);
          transform: rotate(0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-btn.active .l-header__drawer-bar--2 {
  opacity: 0;
}
.l-header__drawer-btn.active .l-header__drawer-bar--3 {
  -webkit-transform: rotate(-0.7853981634rad) translate(-50%, -50%);
          transform: rotate(-0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-wrap {
  background: #A9979A;
  color: #142139;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 100px;
  -webkit-transform: translate(200%);
          transform: translate(200%);
  overflow-y: auto;
  height: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: fixed;
  top: 119px;
  right: 0;
  z-index: 1000;
}
.l-header__drawer-wrap.open {
  -webkit-transform: translate(0);
          transform: translate(0);
  height: 100%;
  padding-bottom: 10rem;
}
.l-header__drawer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: rgba(51, 51, 51, 0.5);
  display: none;
  top: 120px;
  left: 0;
}
.l-header .l-header__drawer.left .l-header__drawer-wrap {
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  right: auto;
  left: 0;
}
.l-header .l-header__drawer.left .l-header__drawer-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 {
  width: 4.9rem;
  position: fixed;
  z-index: 100;
  right: 2rem;
  bottom: 2rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .back-to-top-wrapper {
    width: 9.8rem;
  }
}

/*----------------------------
■■ ボタンコンポーネント　■■
使い方
<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 transparent;
  background: #fff;
  color: #1e202b;
  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: 0.7;
}
.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: 24rem;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__m-size {
    width: 24rem;
    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__left-icon {
  padding-left: 3.1rem;
  position: relative;
}
.c-btn__left-icon::before {
  content: "";
  position: absolute;
  left: 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__left-icon::before {
  background: url("../images/common/.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;
}

.pager .wp-pagenavi {
  text-align: center;
  margin: 5rem 0;
}
.pager .wp-pagenavi span.current {
  width: 5rem;
  height: 5rem;
  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: #2c2c2c;
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi span.current {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi span.current:hover {
  background: #2c2c2c;
  color: #fff;
}
.pager .wp-pagenavi .page {
  width: 5rem;
  height: 5rem;
  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: #2c2c2c;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .page {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi .page:hover {
  background: #2c2c2c;
  color: #fff;
  opacity: 1;
}
.pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
  width: 5rem;
  height: 5rem;
  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: #2c2c2c;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi .nextpostslink:hover, .pager .wp-pagenavi .previouspostslink:hover {
  background: #2c2c2c;
  color: #fff;
  opacity: 1;
}
.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__lists {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .faq__lists {
    margin-top: 3.2rem;
  }
}
.faq__list-item {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1.7rem 3.2rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    padding: 1rem;
    margin-bottom: 1.6rem;
  }
}
.faq__question {
  padding-left: 7.3%;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 0 2.5rem 0 3.5rem;
  }
}
.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 {
  padding: 2rem 1rem 2rem 7.3%;
  display: none;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 1rem 2.5rem 1rem 3.5rem;
  }
}
.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 {
  text-decoration: underline;
}

/*----------------------------
■■　カードコンポーネント　■■
概要：一覧(archive)などで、カード一覧
を使用する際に、使う事が多いコンポーネント
------------------------------*/
/*----------------------------
■　カード基準設定
------------------------------*/
.c-card {
  /*----------------------------
  ■カードグループ設定
  ------------------------------*/
  /*----------------------------
  ■カード画像設定
  ------------------------------*/
  /*----------------------------
  ■カードタイトル設定
  ------------------------------*/
  /*----------------------------
  ■カードinner設定
  概要：slickを使用する際に、c-cardを直接
  触ると、エラーが起こる。その為、内側のクラスとしてinnerを設けている。
  ------------------------------*/
  /*----------------------------
  ■カードラベル設定
  ------------------------------*/
  /*----------------------------
  ■カードボディ設定
  ------------------------------*/
  /*----------------------------
  ■カード日付設定
  ------------------------------*/
}
.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: 999px) {
  .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;
}
.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: 999px) {
  .c-card__label {
    height: 2.5rem;
  }
}
.c-card__body {
  padding: 0;
}
.c-card__date {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ADADAD;
}
@media screen and (max-width: 767px) {
  .c-card__date {
    font-size: 1.2rem;
  }
}

/*----------------------------
■■ パンくずコンポーネント　■■
------------------------------*/
.bread-nav__wrapper {
  padding: 5rem 0 2.5rem;
  line-height: 1;
}

/*----------------------------
■■ お問い合わせテンプレート　■■
------------------------------*/
/*----------------------------
カラー初期設定
------------------------------*/
.p-form {
  /*----------------------------
  ■お問い合わせボックス
  ------------------------------*/
  /*
  ・お問い合わせフローアイコン設定
  ------------------------------*/
  /*
  ・フローアイコン　間の線
  ------------------------------*/
  /*
  ・フローアイコン設定
  ------------------------------*/
  /*----------------------------
  ■入力項目　見出し　設定
  ------------------------------*/
  /*----------------------------
  ■テーブル設定
  ------------------------------*/
  /*----------------------------
  ■ボタンラップ
  ------------------------------*/
  /*----------------------------
  ■確認ページ confirm
  ------------------------------*/
  /*----------------------------
  ■　完了ページ thanks
  ------------------------------*/
  /*----------------------------
  ■recaptchaテキスト
  ------------------------------*/
  /*----------------------------
  ■ トップテキスト
  ------------------------------*/
  /*----------------------------
  ■　必須ラベル
  ------------------------------*/
  /*----------------------------
  ■ safari　ボタンバグ回避
  ------------------------------*/
}
.p-form__box {
  background: #fff;
  padding: 3.2rem 1rem 6.4rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-form__box {
    padding-bottom: 3.2rem;
  }
}
.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;
}
.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;
  padding: 3.2rem 0;
}
.p-form__border {
  width: 10rem;
  background: #1e202b;
  height: 1px;
  margin: -4rem 2rem 0;
}
.p-form__flow-icon {
  font-size: 1.6rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid #1e202b;
  border-radius: 50%;
  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;
  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: #1e202b;
  color: #fff;
}
.p-form__flow-icon p {
  font-weight: bold;
}
.p-form__heading {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 3.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  /*
  ・見出し横のマーク設定
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .p-form__heading {
    font-size: 1.6rem;
  }
}
.p-form__heading::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #1e202b;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.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%;
}
@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 0;
  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 0;
    line-height: 1.5;
  }
}
.p-form__table-wrap table {
  width: 100%;
}
.p-form__table-wrap input,
.p-form__table-wrap textarea,
.p-form__table-wrap select {
  border-radius: 0 !important;
  font-size: 1.6rem;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #d6d6d6;
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap textarea,
  .p-form__table-wrap select {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap textarea,
  .p-form__table-wrap select {
    padding: 1.2rem 2rem;
  }
}
.p-form__table-wrap input.u-half--width,
.p-form__table-wrap textarea.u-half--width,
.p-form__table-wrap select.u-half--width {
  width: 15rem;
}
.p-form__btn-wrap {
  text-align: center;
  padding-bottom: 3.2rem;
  /*
  ・個人情報チェックラベル設定
  ------------------------------*/
}
.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 2rem;
  text-align: left;
  /*
  ・カスタムチェックボックス
  戻るでチェック外れる為不採用 20230118
  ------------------------------*/
  /*
  ・カスタムチェックボックス　マーク
  戻るでチェック外れる為不採用 20230118
  ------------------------------*/
}
.p-form__btn-wrap .p-form__privacy-txt a {
  color: #0000ff;
  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: 1fr 6.4rem 1fr;
  grid-template-columns: repeat(2, 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;
  padding-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-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__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 {
  text-align: center;
  padding: 0 0 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-txt {
    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: #A9979A;
}
.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: 1.2rem;
  padding-top: 4.4rem;
}
.p-form__txt-top {
  font-size: 2.4rem;
  color: #142139;
  padding-bottom: 2.4rem;
}
@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-link {
  color: #A9979A;
  position: relative;
  font-size: 4.8rem;
  font-weight: bold;
  padding-left: 7rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__tel-link {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__tel-link {
    padding-left: 4rem;
  }
}
.p-form__tel-link::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #A9979A;
  left: 0;
  top: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-form__tel-link::before {
    top: 0.4rem;
  }
}
.p-form__label {
  background: #d9453b;
  color: #fff;
  padding: 0 5px;
  font-size: 1.4rem;
  margin-left: 1rem;
}
.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] {
  background: #ccc;
  border: 1px solid #ccc;
  pointer-events: none;
}
button[type=submit].active {
  pointer-events: initial;
  cursor: pointer;
  background: red;
  border: 1px solid red;
  color: #fff;
}
button[type=submit].active:hover {
  opacity: 0.7;
}

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

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

.sidebar__ttl {
  color: #A9979A;
  font-weight: bold;
  font-family: "bilo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sidebar__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sidebar__ttl {
    margin-bottom: 1.5rem;
  }
}
.sidebar__cat-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sidebar__cat-txt {
    font-size: 1.4rem;
  }
}
.sidebar__archive-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sidebar__archive-txt {
    font-size: 1.4rem;
  }
}
.sidebar__flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sidebar__inner-pc {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .sidebar__inner-sp {
    width: 100%;
    position: static;
  }
}
.archive__wrapper select[name=archive-dropdown] {
  border: 1px solid #c9c6c6;
  padding: 1.2rem 0.5em;
  background: #fff;
}
.archive__conts-wrapper {
  border-bottom: 1px solid #707070;
  width: 65rem;
  margin: 0 auto;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .archive__conts-wrapper {
    width: 100%;
  }
}

/*----------------------------
■■ 見出しコンポネント　■■
------------------------------*/
.c-heading {
  text-align: center;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Cormorant Infant", serif;
  color: #A9979A;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 25px;
  }
}
.c-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  left: 0;
  width: 100%;
  background: url("../images/common/c-heading-bd.svg") repeat left center/contain;
}
.c-heading__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-heading-box__wrap.u-before--none {
  position: relative;
}
.c-heading-box__wrap.u-before--none::before {
  content: "";
  display: none;
}
.c-heading-box.u-bg--white {
  color: #A9979A;
  background: #fff;
  border-top: 1px solid #A9979A;
  border-bottom: 1px solid transparent;
}
.c-heading-box.u-bg--white.u-bg--top-none {
  border-top: none;
}
.c-heading-box.u-bg--white .c-heading-box__wrap::before {
  content: "";
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
}
.c-heading-box.u-bg--white .c-heading-box__wrap::after {
  background: #A9979A;
}
.c-heading-box.u-bg--brown {
  color: #fff;
  background: #A9979A;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.c-heading-box.u-bg--brown .c-heading-box__wrap::before {
  content: "";
  border-color: #A9979A transparent transparent transparent;
  left: 50%;
}
.c-heading-box.u-bg--brown .c-heading-box__wrap::after {
  background: #fff;
}
.c-heading-box.u-bg--usubrown {
  color: #A9979A;
  background: #e5e1db;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.c-heading-box.u-bg--usubrown .c-heading-box__wrap::before {
  content: "";
  border-color: #e5e1db transparent transparent transparent;
  left: 50%;
}
.c-heading-box.u-bg--usubrown .c-heading-box__wrap::after {
  background: #A9979A;
}
.c-heading-box__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;
  position: relative;
  padding: 22px 0;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 30px 40px;
  }
}
.c-heading-box__wrap::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11.3px 6.5px 0 6.5px;
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap::before {
    border-width: 22.6px 13px 0 13px;
    bottom: -20px;
  }
}
.c-heading-box__wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 44px;
  width: 1px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap::after {
    width: calc(100% - 60px);
    height: 1px;
    top: 150px;
  }
}
.c-heading-box__wrap.u-slim::after {
  left: 38%;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap.u-slim::after {
    left: 50%;
  }
}
.c-heading-box__wrap.u-hair::after {
  left: 41%;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap.u-hair::after {
    left: 50%;
  }
}
.c-heading-box__wrap.u-ml {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap.u-ml {
    margin-left: auto;
  }
}
.c-heading-box__wrap.u-center--bd-none::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-heading-box__wrap.u-center--bd-none::after {
    display: block;
  }
}
.c-heading-box__txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding-left: 24px;
  line-height: 1.42;
}
@media screen and (max-width: 767px) {
  .c-heading-box__txt {
    padding-left: 0;
    margin-left: 0;
  }
}
.c-heading-box__txt.u-hair {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56.2%;
          flex: 0 1 56.2%;
}
.c-heading-box__txt.u-slim {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 61.8%;
          flex: 0 1 61.8%;
}
.c-heading-box__txt.u-pl--none {
  padding-left: 0;
}
.c-heading-box__ttl {
  font-size: 50px;
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 34px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl {
    font-size: 90px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 25px;
    padding-right: 0;
  }
}
.c-heading-box__ttl.u-nail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 327px;
          flex: 0 1 327px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl.u-nail {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.c-heading-box__ttl.u-slim {
  padding-right: 160px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl.u-slim {
    padding-right: 0;
  }
}
.c-heading-box__ttl.u-mens {
  padding-right: 51px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl.u-mens {
    padding-right: 0;
  }
}
.c-heading-box__ttl.u-hair {
  padding-right: 79px;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl.u-hair {
    padding-right: 0;
  }
}
.c-heading-box__ttl .u-font--s {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 1em;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl .u-font--s {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl .u-font--s {
    padding-left: 0;
    text-align: center;
  }
}
.c-heading-box__ttl.u-bd--right {
  padding-right: 38px;
  margin-right: 38px;
  border-right: 1px solid #A9979A;
}
@media screen and (max-width: 767px) {
  .c-heading-box__ttl.u-bd--right {
    padding: 0;
    margin: 0;
    margin-bottom: 27px;
    border-right: none;
  }
}

/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-top {
  /*----------------------------
  ■ about
  ------------------------------*/
  /*----------------------------
  ■■ menu　■■
  ------------------------------*/
  /*----------------------------
  ■ resevation
  ------------------------------*/
  /*----------------------------
  ■ back
  ------------------------------*/
}
.p-top .about__sect {
  padding: 107px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top .about__sect {
    padding: 87px 0 0;
  }
}
.p-top .about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 49px 0 28px;
}
@media screen and (max-width: 767px) {
  .p-top .about__media {
    padding: 51px 0 25px;
  }
}
.p-top .about__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media screen and (max-width: 767px) {
  .p-top .about__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0 20px;
  }
}
.p-top .about__media-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 0 2.1%;
}
@media screen and (max-width: 767px) {
  .p-top .about__media-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0 20px;
  }
}
.p-top .about__media-ttl {
  font-size: 20px;
  position: relative;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 767px) {
  .p-top .about__media-ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__media-ttl {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}
.p-top .about__media-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #091344;
  width: 40px;
}
.p-top .about__media-txt {
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top .about__media-txt {
    letter-spacing: 0.07em;
    padding-bottom: 20px;
  }
}
.p-top .menu__sect {
  padding-top: 115px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__sect {
    padding-top: 75px;
  }
}
.p-top .menu__container {
  margin: 0 auto;
  max-width: 100%;
  width: 905px;
}
.p-top .menu__box {
  padding: 43px 0;
  position: relative;
}
.p-top .menu__box.u-bg--brown {
  background: #A9979A;
}
.p-top .menu__box.u-bg--brown::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11.3px 6.5px 0 6.5px;
  border-color: #ffffff transparent transparent transparent;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top .menu__box.u-bg--brown::before {
    border-width: 22.6px 13px 0 13px;
  }
}
.p-top .menu__box.u-bg--white {
  background: #fff;
  color: #a9979a;
}
.p-top .menu__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 774px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top .menu__grid::before {
  content: "";
  position: absolute;
  left: calc(50% + 0.5px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: #152238;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid::before {
    display: none;
  }
}
.p-top .menu__grid.u-bd--usubrown::before {
  background: #a9979a;
}
.p-top .menu__grid .menu__lists:nth-child(1) {
  padding-right: 105px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid .menu__lists:nth-child(1) {
    padding-right: 0;
  }
}
.p-top .menu__grid .menu__lists:nth-child(1).u-pr {
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid .menu__lists:nth-child(1).u-pr {
    padding-right: 0;
  }
}
.p-top .menu__grid .menu__lists:nth-child(2) {
  padding-left: 105px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid .menu__lists:nth-child(2) {
    padding-left: 0;
  }
}
.p-top .menu__grid .menu__lists:nth-child(2).u-pl {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__grid .menu__lists:nth-child(2).u-pl {
    padding-left: 0;
  }
}
.p-top .menu__grid.u-width--l {
  max-width: 100%;
}
.p-top .menu__heading-wrap {
  padding-bottom: 41.5px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__heading-wrap {
    padding-bottom: 36.5px;
  }
}
.p-top .menu__bd {
  margin: 30px auto;
  width: 100%;
  height: 1px;
  background: #a9979a;
}
.p-top .menu__list-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 70px auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__list-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
}
.p-top .menu__lists-ttl {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists-ttl {
    font-size: 33px;
  }
}
.p-top .menu__lists-txt {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists-txt {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists {
    padding: 1em 0;
    border-top: 1px solid #152238;
  }
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists.u-bd--usubrown {
    border-top: 1px solid #a9979a;
  }
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists.u-bdt--none {
    border-top: none;
  }
}
.p-top .menu__lists li {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists li {
    font-size: 28px;
  }
}
.p-top .menu__lists li.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top .menu__lists li.u-flex.u-pb {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__lists li.u-flex.u-pb {
    padding-bottom: 15px;
  }
}
.p-top .menu__dot-lists ul li:nth-last-child(1) {
  background: none;
}
.p-top .menu__dot-lists li {
  border-top: 1px dashed #152238;
  padding: 0.5em 0;
}
@media screen and (max-width: 767px) {
  .p-top .menu__dot-heading {
    letter-spacing: -0.05em;
  }
}
.p-top .menu__dot-heading-box {
  border-top: 1px dashed #152238;
  border-bottom: 1px solid #152238;
  max-width: 774px;
  margin: 37px auto;
  padding: 1em 0;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__dot-heading-box {
    font-size: 27px;
  }
}
.p-top .menu__dot-heading-box .u-font--l {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-top .menu__dot-heading-box .u-font--l {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .menu__dot-heading-box {
    margin: 0px auto;
  }
}
.p-top .bnr__label-wrap {
  margin: 39px auto 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .bnr__label-wrap {
    margin: 47px auto 19px;
  }
}
.p-top .bnr__label-wrap::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #A9979A;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .bnr__label-wrap::before {
    max-width: 100%;
  }
}
.p-top .bnr__label {
  background: #A9979A;
  color: #fff;
  font-size: 14px;
  padding: 0 0.3em;
  position: relative;
  width: 128px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top .bnr__label {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .bnr__label {
    width: 202px;
  }
}
.p-top .bnr__groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 15px;
}
@media screen and (max-width: 767px) {
  .p-top .bnr__groups {
    gap: 12px 12px;
  }
}
.p-top .bridal-menu__bg {
  background: #e5e1db;
}
.p-top .bridal-menu__wrap {
  width: 503px;
  padding: 53px 0 47px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top .bridal-menu__wrap {
    padding: 50px;
    width: 100%;
  }
}
.p-top .mens-menu__bg {
  background: #A9979A;
}
.p-top .mens-menu__wrap {
  width: 702px;
  padding: 53px 0 52px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top .mens-menu__wrap {
    padding: 50px;
    width: 100%;
  }
}
.p-top .mens-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top .mens-menu__lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 130px 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  -webkit-column-gap: 130px;
     -moz-column-gap: 130px;
          column-gap: 130px;
}
@media screen and (max-width: 767px) {
  .p-top .mens-menu__lists {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0;
  }
}
.p-top .mens-menu__ttl {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-top .mens-menu__ttl {
    font-size: 33px;
  }
}
.p-top .mens-menu__ttl.u-pl {
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .mens-menu__ttl.u-pl {
    padding-left: 0;
  }
}
.p-top .mens-menu__price {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top .mens-menu__price {
    font-size: 29px;
  }
}
.p-top .hair-menu__bg {
  background: #fff;
  color: #A9979A;
}
.p-top .hair-menu__wrap {
  width: 730px;
  padding: 53px 0 48px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__wrap {
    padding: 50px;
    width: 100%;
  }
}
.p-top .hair-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top .hair-menu__lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 67px auto;
  grid-template-columns: auto auto;
  -webkit-column-gap: 67px;
     -moz-column-gap: 67px;
          column-gap: 67px;
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__lists {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }
}
.p-top .hair-menu__sub-txt {
  font-size: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__sub-txt {
    font-size: 24px;
  }
}
.p-top .hair-menu__ttl {
  font-size: 18px;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__ttl {
    font-size: 33px;
  }
}
.p-top .hair-menu__price {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__price {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .hair-menu__price .u-kuuhaku {
    width: 4.5em;
    display: inline-block;
  }
}
.p-top .slim-menu__wrap {
  width: 773px;
  margin: 0 auto;
  padding: 68px 0 74px;
}
@media screen and (max-width: 767px) {
  .p-top .slim-menu__wrap {
    padding: 50px 26px;
    width: 100%;
  }
}
.p-top .other-menu__bg {
  background: #A9979A;
  color: #fff;
  padding: 68px 0 129px;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__bg {
    padding: 36px 0 74px;
  }
}
.p-top .other-menu__heading-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__heading-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-top .other-menu__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__flex {
    max-width: 100%;
  }
}
.p-top .other-menu__flex .other-menu__heading-wrap:nth-child(2) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__flex .other-menu__heading-wrap:nth-child(2) {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.p-top .other-menu__heading {
  font-size: 50px;
  font-family: "Cormorant Infant", serif;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__heading {
    font-size: 80px;
  }
}
.p-top .other-menu__sub-heading {
  padding: 0 20px 0 11px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__sub-heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__sub-heading {
    padding: 10px 0 0 0;
    line-height: 1.3;
  }
}
.p-top .other-menu__heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 0.7;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__heading-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }
}
.p-top .other-menu__heading-wrap.u-flex--100 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-top .other-menu__heading-wrap.u-flex--100 .other-menu__sub-heading {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__heading-wrap.u-flex--100 .other-menu__sub-heading {
    padding: 0 0 0 23px;
  }
}
.p-top .other-menu__price {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__price {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .other-menu__price {
    text-align: right;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-top .cta__bnr-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(169, 151, 154, 0.15);
  padding: 22px 45px;
  -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 .cta__bnr-body {
    padding: 41px 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-body .cta__link-item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 268px;
            flex: 0 0 268px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-body .cta__link-item:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84px;
            flex: 0 0 84px;
  }
}
.p-top .cta__contact-txt {
  position: relative;
  padding-left: 2.9rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-txt {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-txt {
    padding-left: 5.4rem;
  }
}
.p-top .cta__contact-txt.u-font--l {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-txt.u-font--l {
    font-size: 4.2rem;
  }
}
.p-top .cta__contact-txt a {
  color: #A9979A;
}
.p-top .cta__contact-txt.u-icon--1::before {
  content: "";
  position: absolute;
  width: 2.16rem;
  height: 2.16rem;
  background: url("../images/top/cta-icon1.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-txt.u-icon--1::before {
    width: 3.88rem;
    height: 3.88rem;
  }
}
.p-top .cta__contact-txt.u-icon--2::before {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 1.8rem;
  background: url("../images/top/cta-icon2.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-txt.u-icon--2::before {
    width: 4rem;
    height: 3.22rem;
  }
}
.p-top .cta__contact-wrap {
  height: 121.61px;
  background: rgba(169, 151, 154, 0.15);
  padding: 22px 45px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-wrap {
    height: 221px;
    padding: 35px 96px;
  }
}
.p-top .cta__contact-wrap::before {
  content: "";
  position: absolute;
  width: 219px;
  height: 1px;
  background: #A9979A;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .cta__contact-wrap::before {
    width: 392px;
  }
}
.p-top .cta__bnr-head {
  background: #A9979A;
  color: #fff;
  text-align: center;
  padding: 1px 0;
  position: relative;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-head {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-head {
    padding: 3px 0;
  }
}
.p-top .cta__bnr-head::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #A9979A transparent transparent transparent;
  bottom: -5px;
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-head::before {
    border-width: 13.9px 8px 0 8px;
    bottom: -10px;
  }
}
.p-top .cta__box {
  padding: 50px 74px;
  width: 811px;
  margin: -100px auto 0;
  background: #fff;
  border: 1px solid #A9979A;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .cta__box {
    width: 100%;
    padding: 40px 60px 57px;
    margin-top: -40px;
  }
}
.p-top .cta__box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 15.6px 9px;
  border-color: transparent transparent #ffffff transparent;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top .cta__box-txt {
  text-align: center;
  font-size: 16px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top .cta__box-txt {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__box-txt {
    padding-bottom: 25px;
  }
}
.p-top .cta__bnr-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-top .cta__bnr-groups {
    row-gap: 16px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top .reserve__sect {
  padding: 150px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top .reserve__sect {
    padding: 170px 0 0;
  }
}
.p-top .reserve__body {
  max-width: 61.5rem;
  margin: 0 auto;
}
.p-top .reserve__txt {
  text-align: center;
  font-size: 1.6rem;
  padding: 4.4rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-top .reserve__txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .reserve__txt {
    padding: 5.3rem 0 8.3rem;
  }
}
.p-top .reserve__flex {
  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;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .reserve__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 50.6rem;
    margin: 0 auto;
  }
}
.p-top .reserve__border {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top .reserve__border {
    height: 1px;
    width: 50.6rem;
    margin: 4rem 0;
    position: static;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}
.p-top .reserve__conts img {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-top .reserve__conts.u-align--start {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 6px;
  }
}
.p-top .access {
  /*----------------------------
  ■マップインラインフレーム
  使い方：iframeを、map-wrapクラスで囲む。
  なお、iframe初期のheightと、widthは消去すること。（HTML側）
  ------------------------------*/
}
.p-top .access__sect {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .p-top .access__sect {
    padding-top: 170px;
  }
}
.p-top .access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .access__flex {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__flex {
    margin-top: 4.9rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .access__lists li {
  border-bottom: 1px solid #fff;
  padding: 0.7em 0;
}
.p-top .access__lists li.u-bd--dot {
  border-bottom: 1px dashed #fff;
}
.p-top .access__dl-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 9.3rem auto;
  grid-template-columns: 9.3rem auto;
  padding: 0.7em 0;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top .access__dl-lists {
    -ms-grid-columns: 17.3rem auto;
    grid-template-columns: 17.3rem auto;
  }
}
.p-top .access__list-ttl {
  font-size: 5rem;
  letter-spacing: 0.08em;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .p-top .access__list-ttl {
    font-size: 9.3rem;
  }
}
.p-top .access__list-txt.u-icon--1 {
  padding-left: 2.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--1 {
    padding-left: 5.2rem;
  }
}
.p-top .access__list-txt.u-icon--1::before {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 2.27rem;
  background: url("../images/common/icon1.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--1::before {
    width: 3.16rem;
    height: 4.22rem;
  }
}
.p-top .access__list-txt.u-icon--2 {
  padding-left: 2.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--2 {
    padding-left: 5.2rem;
  }
}
.p-top .access__list-txt.u-icon--2::before {
  content: "";
  position: absolute;
  width: 1.9rem;
  height: 1.9rem;
  background: url("../images/common/icon2.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--2::before {
    width: 3.55rem;
    height: 3.55rem;
  }
}
.p-top .access__list-txt.u-icon--3 {
  padding-left: 2.74rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--3 {
    padding-left: 5.2rem;
  }
}
.p-top .access__list-txt.u-icon--3::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 1.65rem;
  background: url("../images/common/icon3.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .access__list-txt.u-icon--3::before {
    width: 3.78rem;
    height: 3.08rem;
  }
}
.p-top .access__body {
  background: #A9979A;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 4rem 12rem 7rem 20.4rem;
}
@media screen and (max-width: 1400px) {
  .p-top .access__body {
    padding: 4rem 5% 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    padding: 2rem 5rem 8.4rem;
  }
}
.p-top .access__body a {
  color: #fff;
}
.p-top .access__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background: url("../images/top/access-bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top .access__img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    background: url("../images/top/access-bg-sp.jpg") no-repeat center center/cover;
    height: 77.3rem;
  }
}
.p-top .access__map-wrap {
  width: 100%;
  height: 24rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .access__map-wrap {
    margin-top: 3.9rem;
    height: 44.9rem;
  }
}
.p-top .access__map-wrap iframe {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.p-top .back__sect {
  padding-top: 17.7rem;
}
@media screen and (max-width: 767px) {
  .p-top .back__sect {
    padding-top: 25.2rem;
  }
}

/*----------------------------
改行クラス
使い方：
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: 999px) {
  .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 {
  color: #fff;
}

/*----------------------------
PC,TAB、SPの表示切り替え
使い方：
SPのみ出力したい等があれば、
クラス名をつけることで可能に。
------------------------------*/
.pc {
  display: block !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: 999px) {
  .tab {
    display: block !important;
  }
}

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

.tab-flex {
  display: none !important;
}
@media screen and (max-width: 999px) {
  .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;
  }
}

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

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