@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: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1319px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.6rem;
  }
}

.container--s {
  max-width: 119.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1319px) {
  .container--s {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container--s {
    width: 100%;
    padding: 0 1.6rem;
  }
}

/*----------------------------------------
フォント関係の設定
------------------------------------------*/
/*〇パソコン～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: #052A4D;
}
a:hover {
  opacity: 0.7;
}
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: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 3;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  color: #052A4D;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  /*----------------------------
  ■ min-widthで、横スクロール調整するときは、以下をOFFにする
  ------------------------------*/
  /*スクロールバー非表示 IE, Edge 対応 */
  -ms-overflow-style: none;
  /* スクロールバー非表示 Firefox 対応 */
  scrollbar-width: none;
  /* スクロールバー非表示 Chrome Edge 対応 */
  /*----------------------------
  ■ ここまで
  ------------------------------*/
}
body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: 37.5rem;
  }
}

button {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

/*----------------------------------------
〇ヘッダー固定の調整
概要：ヘッダーfixedの場合、メイン画像がヘッダーに隠れる為、その分の余白設定することで、下に隠れないようになる。
※ヘッダー固定の場合のみ調整
------------------------------------------*/
/*
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: #0C5DA9;
  color: #fff;
  padding: 6.4rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.2rem 0;
  }
}
.l-footer a {
  color: #fff;
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1319px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__body {
  border-right: 1px solid #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50rem;
          flex: 0 1 50rem;
  padding-right: 3.2rem;
}
@media screen and (max-width: 1319px) {
  .l-footer__body {
    border-right: 0;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__body {
    padding-right: 0;
    padding-bottom: 3.2rem;
  }
}
.l-footer__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6rem;
}
@media screen and (max-width: 1319px) {
  .l-footer__nav-wrap {
    padding-left: 0;
    padding-top: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-wrap {
    padding-top: 0;
  }
}
.l-footer__sub-nav-wrap {
  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;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-nav-wrap {
    padding-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__sub-nav-item {
  padding: 0 2em;
  font-size: 1.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__sub-nav-item {
    font-size: 1.2rem;
  }
}
.l-footer__sub-nav-item::before {
  content: "/";
  position: absolute;
  right: -0.4em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__logo-wrap {
  max-width: 32.3rem;
  width: 100%;
  margin-bottom: 3.2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-wrap {
    margin-bottom: 2.4rem;
  }
}
.l-footer__address-wrap {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .l-footer__address-wrap {
    font-size: 1.4rem;
  }
}
.l-footer__cta-inner {
  padding: 6.4rem 0;
  background: url("../images/common/l-footer-cta-bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-footer__cta-inner {
    padding: 3.2rem 0;
  }
}
.l-footer__cta-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 1319px) {
  .l-footer__cta-flex {
    max-width: 60rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__cta-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68.5rem;
          flex: 0 0 68.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__cta-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.l-footer__lists {
  color: #fff;
  display: -ms-grid;
  display: grid;
  row-gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__lists {
    row-gap: 1.6rem;
  }
}
.l-footer__lists.u-px {
  padding: 0 6.4rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .l-footer__lists.u-px {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__lists.u-px {
    padding: 0 1.6rem;
    margin-top: 3.2rem;
  }
}
.l-footer__lists.u-font--black {
  color: #052A4D;
}
.l-footer__list-item {
  padding-left: 6.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list-item {
    padding-left: 3.2rem;
  }
}
.l-footer__nav-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-lists {
    display: none;
  }
}
.l-footer__nav-list-item {
  line-height: 2;
}
.l-footer__cta-ttl {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__cta-ttl {
    margin-bottom: 1rem;
  }
}
.l-footer__cta-label {
  margin-bottom: 2.4rem;
}
.l-footer__cta-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3rem;
  max-width: 46.3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__cta-groups {
    row-gap: 1.6rem;
  }
}
.l-footer__cta-wrap {
  margin-top: 5rem;
}
.l-footer__list-subtxt {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.66;
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .l-footer__list-subtxt {
    font-size: 1.2rem;
  }
}
.l-footer__list-txt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer__list-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__list-txt {
    letter-spacing: 0;
  }
}
.l-footer__list-txt .u-bd--yellow {
  border-bottom: 3px solid #F6B111;
}
.l-footer__list-txt::before {
  content: "";
  position: absolute;
  width: 3.3rem;
  height: 3.3rem;
  background: url("../images/common/footer-list-label.svg") no-repeat center center/contain;
  left: -6.4rem;
  top: 0rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list-txt::before {
    width: 1.68rem;
    height: 1.68rem;
    left: -3.2rem;
    top: 0.5rem;
  }
}
.l-footer__cta-groups {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*----------------------------
headerは、基本1000pxでSPに切替。
理由：
767px切替だと、レスポンシブ時にナビテキストが
折り返される可能性が高い為。
------------------------------*/
/*----------------------------
ヘッダー　テキストカラー初期設定
使い方：color: $header-txt-color;
------------------------------*/
.l-header {
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 0 0 0 4.8rem;
  position: fixed;
  top: 0;
  left: 0;
  height: 9.6rem;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  /*----------------------------
  ヘッダー
  ------------------------------*/
  /*----------------------------
  ロゴ設定
  ------------------------------*/
  /*----------------------------
  ナビラップ
  ------------------------------*/
  /*----------------------------
  ナビリスト
  ------------------------------*/
  /*----------------------------
  〇ナビ設定
  ------------------------------*/
  /*----------------------------
  ■ハンバーガーメニュー■
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー表示設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー　線
  ------------------------------*/
  /*----------------------------
  MENU/CLOSE文字の設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュ左に配置　使わない場合削除
  使い方：l-header__drawerに、leftクラスを付与すると、左側のメニューに変更可能
  ------------------------------*/
}
@media screen and (max-width: 1000px) {
  .l-header {
    padding: 0 1.6rem;
    height: 4.8rem;
  }
}
.l-header__wrap {
  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;
  z-index: 1000;
  width: 100%;
}
.l-header__cta-tel {
  width: 32.1rem;
  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-left: 2.4rem;
}
.l-header__desc {
  color: #fff;
  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: #0c5da9;
  border-radius: 1.8rem;
  height: 3.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-left: 4rem;
  padding: 0 1em;
}
@media screen and (max-width: 1700px) {
  .l-header__desc {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1319px) {
  .l-header__desc {
    display: none;
  }
}
.l-header__desc .u-font--l {
  font-size: 1.8rem;
  padding-left: 0.9rem;
}
.l-header__logo-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32.2rem;
          flex: 0 0 32.2rem;
}
@media screen and (max-width: 1700px) {
  .l-header__logo-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26rem;
            flex: 0 0 26rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.6rem;
            flex: 0 0 18.6rem;
    margin-top: 0.7rem;
  }
}
.l-header__drawer-logo {
  width: 14.8rem;
  position: absolute;
  top: 2.7rem;
  left: 2.6rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-logo {
    width: 10.6rem;
    top: 2.3rem;
    left: 2.3rem;
  }
}
.l-header__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  height: 100%;
  margin-right: 14.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1000;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-wrap {
    display: none;
  }
}
.l-header__nav-wrap.u-nav--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav-wrap.u-nav--sp {
    display: block;
  }
}
.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-lists {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3.6rem;
    padding: 5.2rem 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__cta-tel {
    padding-top: 1.7rem;
  }
}
@media screen and (max-width: 1600px) {
  .l-header__cta-tel {
    display: none;
  }
}
.l-header__sub-nav-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding: 4rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__sub-nav-wrap {
    padding: 2.4rem 0 6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-header__sub-nav-item {
  padding: 0 2em;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__sub-nav-item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__sub-nav-item {
    padding: 0 0.8em;
  }
}
.l-header__sub-nav-item::after {
  content: "/";
  position: absolute;
  left: -0.4em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
.l-header__sub-nav-item a {
  color: #fff;
}
.l-header__drawer-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6.4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4rem;
  -webkit-column-gap: 6.4rem;
     -moz-column-gap: 6.4rem;
          column-gap: 6.4rem;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-lists {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__drawer-lists {
    gap: 2.4rem 2.2rem;
  }
}
.l-header__cta-item {
  position: relative;
}
.l-header__cta-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24rem 24rem;
  grid-template-columns: 24rem 24rem;
  margin-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__cta-groups {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .l-header__cta-groups {
    display: none;
  }
}
.l-header__drawer-cta-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3rem;
  width: 48rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-cta-groups {
    row-gap: 1.6rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-header__drawer-cta-groups .l-header__cta:nth-child(1) {
    width: 83.7%;
    margin: 0 auto;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.l-header__drawer-tel {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-tel {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__drawer-tel {
    pointer-events: auto;
  }
}
.l-header__drawer-tel .u-font--s {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: initial;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-tel .u-font--s {
    font-size: 2.4rem;
  }
}
.l-header__drawer-nav-ttl {
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-nav-ttl {
    display: none;
  }
}
.l-header__drawer-nav-inner {
  padding: 5.4rem 4.5rem 15rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-nav-inner {
    padding: 3.6rem 1.6rem 15rem;
  }
}
.l-header__drawer-list-item a {
  color: #fff;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.l-header__drawer-nav {
  z-index: 1001;
  background: #0C5DA9;
  height: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  top: 0;
  right: 0;
  margin-right: 0;
  -webkit-transform: translate(200%);
          transform: translate(200%);
  width: 64rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-nav {
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .l-header__drawer-nav {
    min-height: 70rem;
  }
}
.l-header__drawer-nav.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.l-header__cta {
  color: #fff;
}
.l-header__drawer-cta {
  width: 24rem;
  min-height: 4.8rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.6rem 2rem;
  border: 1px solid #4a7b9f;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-cta {
    height: 5.6rem;
    padding: 1.6rem 2rem 1.6rem 0;
  }
}
.l-header__cta-en {
  font-size: 2rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .l-header__cta-en {
    font-size: 1rem;
  }
}
.l-header__cta-en.u-color--blue {
  color: #89c5f2;
}
.l-header__cta-txt-wrap {
  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;
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__cta-txt-wrap.u-icon--1 {
  padding-left: 8rem;
}
.l-header__cta-txt-wrap.u-icon--1::before {
  content: "";
  position: absolute;
  width: 2.8rem;
  height: 3.8rem;
  background: url("../images/common/header-cta-icon1.svg") no-repeat center center/contain;
  left: 3.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__cta-txt-wrap.u-icon--2 {
  padding-left: 7rem;
}
.l-header__cta-txt-wrap.u-icon--2::before {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 3rem;
  background: url("../images/common/header-cta-icon2.svg") no-repeat center center/contain;
  left: 2.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__cta-txt-wrap.u-icon--3 {
  padding-left: 6.6rem;
}
.l-header__cta-txt-wrap.u-icon--3::before {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 2.8rem;
  background: url("../images/common/header-cta-icon3.svg") no-repeat center center/contain;
  left: 1.7rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__drawer-cta-txt {
  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;
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-cta-txt {
    padding-left: 5.5rem;
  }
}
.l-header__drawer-cta-txt.u-icon--1::before {
  content: "";
  position: absolute;
  width: 3.6rem;
  height: 4.8rem;
  background: url("../images/common/header-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) {
  .l-header__drawer-cta-txt.u-icon--1::before {
    left: 1.6rem;
    width: 2.2rem;
    height: 2.8rem;
  }
}
.l-header__drawer-cta-txt.u-icon--2::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 4rem;
  background: url("../images/common/header-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) {
  .l-header__drawer-cta-txt.u-icon--2::before {
    left: 1.6rem;
    width: 2.7rem;
    height: 2.3rem;
  }
}
.l-header__drawer-cta-txt.u-icon--3::before {
  content: "";
  position: absolute;
  width: 5.2rem;
  height: 3.47rem;
  background: url("../images/common/header-cta-icon3.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header__drawer-cta-txt.u-icon--3::before {
    left: 1.6rem;
    width: 2.8rem;
    height: 1.867rem;
  }
}
.l-header__cta-ttl {
  font-size: 1.4rem;
  line-height: 1.22;
}
@media screen and (max-width: 767px) {
  .l-header__cta-ttl {
    font-size: 1.6rem;
  }
}
.l-header__cta-ttl.u-font--s {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__cta-ttl.u-font--s {
    font-size: 1.6rem;
  }
}
.l-header__cta-ttl.u-font--l {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__cta-ttl.u-font--l {
    font-size: 1.6rem;
  }
}
.l-header__drawer-bar {
  background-color: #fff;
  width: 40px;
  height: 2px;
  display: block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}
@media screen and (max-width: 1000px) {
  .l-header__drawer-bar {
    background: #0c5da9;
    height: 1px;
  }
}
.l-header__drawer-bar.bar--1 {
  top: 40%;
}
.l-header__drawer-bar.bar--2 {
  top: 50%;
}
.l-header__drawer-bar.bar--3 {
  top: 60%;
}
.l-header__drawer-bar.u-bg--white {
  background: #fff;
}
.l-header__drawer-btn {
  color: #0C5DA9;
  background: #0C5DA9;
  width: 14.5rem;
  height: 9.6rem;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 1002;
  padding: 0;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  /*----------------------------
  ■ボタンアクティブ時の制御
  ------------------------------*/
}
@media screen and (max-width: 1000px) {
  .l-header__drawer-btn {
    width: 4rem;
    height: 4.8rem;
    background: transparent;
    right: 1.6rem;
  }
}
.l-header__drawer-btn.active {
  /*----------------------------
  ■メニュタップ時アニメーション　×に変更
  ------------------------------*/
}
.l-header__drawer-btn.active .l-header__drawer-bar {
  width: 36.77px;
  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.3853981634rad) translate(-50%, -50%);
          transform: rotate(0.3853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-btn.active .bar--2 {
  opacity: 0;
}
.l-header__drawer-btn.active .bar--3 {
  -webkit-transform: rotate(-0.3853981634rad) translate(-50%, -50%);
          transform: rotate(-0.3853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-wrap {
  background: #fff;
  color: #052A4D;
  width: 100%;
  padding-top: 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: 4.8rem;
  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-inner {
  width: 100%;
  height: 100%;
}
.l-header__drawer-bg-inner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-bg-inner {
    display: none;
  }
}
.l-header__drawer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  display: none;
  left: 0;
  top: 0;
}

@-webkit-keyframes header {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes header {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------
Object
------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  z-index: 100;
  width: 5.5rem;
  right: 2rem;
  bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .back-to-top-wrapper {
    width: 4.8rem;
  }
}

.c-label {
  color: #fff;
  font-size: 3.2rem;
  background: #115da9;
  padding-left: 2em;
  line-height: 2.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-label {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-label {
    line-height: 2;
    padding-left: 1em;
  }
}
.c-label.u-font--sp {
  font-size: 3.2rem;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .c-label.u-font--sp {
    font-size: 1.6rem;
  }
}
.c-label.u-px {
  padding: 0.5rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-label.u-px {
    padding: 0.5rem 1.2rem;
  }
}
.c-label.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-label__num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.5rem;
          flex: 0 0 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  color: #fff;
  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-right: 4.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 1319px) {
  .c-label__num {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-label__num {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1319px) {
  .c-label__num {
    margin-right: 1.6rem;
    height: 3rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3rem;
            flex: 0 0 3rem;
  }
}
.c-label__num.u-bg--1 {
  background: #CE6601;
}
.c-label__num.u-bg--2 {
  background: #F6B111;
}
.c-label__num.u-bg--3 {
  background: #43B094;
}
.c-label__num.u-bg--4 {
  background: #3484D0;
}
.c-label__num.u-bg--5 {
  background: #0C5DA9;
  border: 1px solid #fff;
}
.c-label__num.u-bg--6 {
  background: #052A4D;
  border: 1px solid #fff;
}
.c-label.u-mt {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .c-label.u-mt {
    margin-top: 4rem;
  }
}
.c-label__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.2rem;
}
@media screen and (max-width: 1319px) {
  .c-label__txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-label__txt {
    font-size: 2rem;
  }
}
.c-label__txt.u-font--s {
  font-size: 3.2rem;
}
@media screen and (max-width: 1319px) {
  .c-label__txt.u-font--s {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-label__txt.u-font--s {
    font-size: 1.4rem;
  }
}

/*----------------------------
■■ ボタンコンポーネント　■■
使い方
<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 #0C5DA9;
  background: #fff;
  color: #0C5DA9;
  border-radius: 36px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.06);
          box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.06);
  /*----------------------------
    ■ ボタンサイズ
    使い方：クラスの変えると、ボタンのサイズが変わる
    ------------------------------*/
  /*
      ・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: #0C5DA9;
  color: #fff;
}
.c-btn__s-size {
  width: 20rem;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__s-size {
    width: 20rem;
    height: 6.4rem;
  }
}
.c-btn__m-size {
  width: 29rem;
  height: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__m-size {
    width: 29rem;
    height: 5.6rem;
  }
}
.c-btn__l-size {
  width: 36.6rem;
  height: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn__l-size {
    max-width: 100%;
  }
}
.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.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 1.6rem;
  }
}
.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: 10px;
  background: url("../images/common/arrow.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__left-icon::before {
  background: url("../images/common/arrow-white.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: #0C5DA9;
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  border: 1px solid #0C5DA9;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi span.current {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi span.current:hover {
  background: #0C5DA9;
  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: #0C5DA9;
  font-weight: bold;
  border: 1px solid #0C5DA9;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .page {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi .page:hover {
  background: #0C5DA9;
  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: #0C5DA9;
  font-weight: bold;
  border: 1px solid #0C5DA9;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Noto Sans JP", 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: #0C5DA9;
  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__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .faq__sect {
    padding: 4.8rem 0 8rem;
  }
}
.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;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    padding: 1rem;
    margin-bottom: 1.6rem;
  }
}
.faq__question {
  padding-left: 7.3%;
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1319px) {
  .faq__question {
    padding-left: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 0 2.5rem 0 3.5rem;
  }
}
.faq__question::before {
  content: "";
  background: url("../images/faq/icon-q.svg") no-repeat center center/contain;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  left: 0;
  top: -0.7rem;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    top: 0.7rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.faq__question::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: url("../images/faq/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/faq_close_icon.svg") no-repeat center center/contain;
}
.faq__answer {
  padding: 4rem 1rem 0 7.3%;
  display: none;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 2rem 2.5rem 0 3.5rem;
  }
}
.faq__answer::before {
  content: "";
  background: url("../images/faq/icon-a.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  width: 4.6rem;
  height: 4.6rem;
  top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .faq__answer::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 2.3rem;
  }
}
.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: 3.2rem;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1319px) {
  .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.3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3rem 2.3rem;
    padding-top: 3.2rem;
  }
}
.c-card__img-wrap {
  margin-bottom: 1.6rem;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
}
.c-card__img-wrap img {
  aspect-ratio: 296/166;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__heading {
  letter-spacing: 0;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-card__heading {
    font-size: 1.6rem;
  }
}
.c-card__inner {
  -webkit-transition: 250ms all;
  transition: 250ms all;
  position: relative;
}
.c-card__label {
  color: #fff;
  background: #0C5DA9;
  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: 1319px) {
  .c-card__label {
    height: 2.5rem;
  }
}
.c-card__body {
  padding: 0;
}
.c-card__date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #B7BEB5;
}
@media screen and (max-width: 767px) {
  .c-card__date {
    font-size: 1.2rem;
  }
}

/*----------------------------
■■ パンくずコンポーネント　■■
------------------------------*/
.bread-nav__wrapper {
  width: 100%;
  background: #FAFAFA;
  min-height: 6.2rem;
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .bread-nav__wrapper {
    padding-top: 4.8rem;
  }
}
.bread-nav__wrapper.admin {
  padding-top: 6.8rem;
}
@media screen and (max-width: 767px) {
  .bread-nav__wrapper.admin {
    padding-top: 0.2rem;
  }
}
.bread-nav__txt {
  font-size: 1.4rem;
  text-align: right;
  color: #D1D6D9;
}
@media screen and (max-width: 767px) {
  .bread-nav__txt {
    font-size: 1.2rem;
  }
}
.bread-nav__txt a {
  color: #D1D6D9;
}

/*----------------------------
■■ お問い合わせテンプレート　■■
------------------------------*/
/*----------------------------
カラー初期設定
------------------------------*/
.p-form {
  /*----------------------------
  ■お問い合わせボックス
  ------------------------------*/
  /*
  ・お問い合わせフローアイコン設定
  ------------------------------*/
  /*
  ・フローアイコン　間の線
  ------------------------------*/
  /*
  ・フローアイコン設定
  ------------------------------*/
  /*----------------------------
  ■入力項目　見出し　設定
  ------------------------------*/
  /*----------------------------
  ■テーブル設定
  ------------------------------*/
  /*----------------------------
  ■ボタンラップ
  ------------------------------*/
  /*----------------------------
  ■確認ページ confirm
  ------------------------------*/
  /*----------------------------
  ■　完了ページ thanks
  ------------------------------*/
  /*----------------------------
  ■recaptchaテキスト
  ------------------------------*/
  /*----------------------------
  ■ トップテキスト
  ------------------------------*/
  /*----------------------------
  ■　必須ラベル
  ------------------------------*/
  /*----------------------------
  ■ safari　ボタンバグ回避
  ------------------------------*/
}
.p-form__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-form__sect {
    padding: 4.8rem 0 8rem;
  }
}
.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: #0C5DA9;
  height: 1px;
  margin: -4rem 2rem 0;
}
.p-form__flow-icon {
  font-size: 1.6rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid #0C5DA9;
  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: #0C5DA9;
  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: #0C5DA9;
  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: #0C5DA9;
}
.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: #052A4D;
  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: #0C5DA9;
  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: #0C5DA9;
  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;
  width: auto;
  margin-top: -0.3rem;
}
.p-form input#privacy-policy {
  -webkit-appearance: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  padding: 0;
}
.p-form__flex {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/*----------------------------
■リキャプチャバッヂ削除
------------------------------*/
.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: #0C5DA9;
  border: 1px solid #0C5DA9;
  color: #fff;
}
button[type=submit].active:hover {
  opacity: 0.7;
}

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

label[for=privacy-policy-1] {
  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: 3.2rem !important;
}

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

.p-country-name {
  color: #fff;
}

/*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: #0C5DA9;
  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 {
  font-size: 4rem;
  line-height: 2;
  position: relative;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 2.4rem;
  }
}
.c-heading::before {
  content: "";
  height: 0.8rem;
  width: 9.6rem;
  background: #F6B111;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-heading__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-heading__en {
  line-height: 1.66;
}

/*----------------------------
■■　概要ページ page-about.php　■■
------------------------------*/
.category__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .category__sect {
    padding: 4.8rem 0 8rem;
  }
}

.p-company .sis__sect {
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-company .sis__sect {
    padding: 4.8rem 0;
  }
}
.p-company .sis__img-wrap {
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-company .sis__img-wrap {
    padding-top: 3.2rem;
  }
}
.p-company .philosophy__sect {
  padding: 9.6rem 0;
  background: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__sect {
    padding: 4.8rem 0;
  }
}
.p-company .philosophy__name {
  text-align: right;
}
.p-company .philosophy__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .philosophy__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40rem;
          flex: 0 1 40rem;
  margin-right: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-company .philosophy__media-img-wrap {
    margin-right: 6rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30rem;
            flex: 0 1 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__media-img-wrap {
    max-width: 25rem;
    margin: 0 auto 1.6rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.p-company .philosophy__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company .company__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-company .company__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-company .company__table {
  width: 100%;
  line-height: 2.2;
  margin-top: 5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-company .company__table {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company .company__table {
    font-size: 1.6rem;
  }
}
.p-company .company__table tr td:nth-child(1) {
  font-weight: bold;
  width: 10em;
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr td:nth-child(1) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr td:nth-child(2) {
    padding-top: 0;
    width: 100%;
  }
}
.p-company .company__table td {
  padding: 1.5em 0 1em;
}
.p-company .company__table tr {
  border-bottom: 1px solid #052A4D;
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .people__sect {
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .p-company .people__sect {
    padding-bottom: 8rem;
  }
}
.p-company .people__card-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr 3.2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.4rem 3.2rem;
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-company .people__card-groups {
    margin-top: 4.8rem;
    gap: 3.2rem 1.6rem;
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-company .people__card-img-wrap {
  margin-bottom: 1.6rem;
}
.p-company .people__card-post-name {
  text-align: center;
  line-height: 1.3;
  padding-bottom: 0.3em;
}
.p-company .people__card-txt {
  text-align: center;
  line-height: 1.3;
}
.privacy__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .privacy__sect {
    padding: 4.9rem 0 8rem;
  }
}
.privacy__conts-wrap {
  padding-top: 7.1rem;
}
@media screen and (max-width: 767px) {
  .privacy__conts-wrap {
    padding-top: 5.1rem;
  }
}
.privacy__head-txt {
  padding-bottom: 5.5rem;
  border-bottom: 1px solid #4a4a4a;
}
@media screen and (max-width: 767px) {
  .privacy__head-txt {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__lists .privacy__num:nth-child(1) {
    padding-top: 3.5rem;
  }
}
.privacy__num {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  padding: 4rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .privacy__num {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__num {
    padding: 7rem 0 2.5rem;
  }
}

.privacy-contact__conts-wrap {
  padding: 0 3rem 3rem 3rem;
  background: #fff;
  border: 1px solid #282828;
  height: 22rem;
  overflow-y: scroll;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .privacy-contact__conts-wrap {
    padding: 0 1rem 1rem 1rem;
    height: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-contact__lists .privacy-contact__num:nth-child(1) {
    padding-top: 1.5rem;
  }
}
.privacy-contact__txt-wrap {
  line-height: 1.33;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .privacy-contact__txt-wrap {
    font-size: 1.2rem;
  }
}
.privacy-contact__num {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.5em 0 1em;
}
@media screen and (max-width: 767px) {
  .privacy-contact__num {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-contact__num {
    padding: 1em 0 0.5em;
  }
}

.p-single__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-single__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-single__conts-wrapper {
  width: 100%;
  /*----------------------------
  ■画像設定
  ------------------------------*/
  /*----------------------------
  ■見出しレイアウト
  ------------------------------*/
  /*----------------------------
  ■テーブルレイアウト
  ------------------------------*/
  /*----------------------------
  ■　文字装飾レイアウト
  ------------------------------*/
  /*
  ・太文字
  ------------------------------*/
  /*
  ・リスト
  ------------------------------*/
  /*
  ・引用ボックス
  ------------------------------*/
}
.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: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h1 {
    font-size: 2rem;
  }
}
.p-single__conts-wrapper h2 {
  margin: 3rem 0 2rem;
  font-size: 3.2rem;
  padding: 0.5em 0; /*上下の余白*/
  line-height: 1.5;
  border-top: solid 3px #0C5DA9; /*上線*/
  border-bottom: solid 3px #0C5DA9; /*下線*/
}
@media screen and (max-width: 1319px) {
  .p-single__conts-wrapper h2 {
    font-size: 2.4rem;
  }
}
@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 #0C5DA9;
  line-height: 1.5;
  margin: 3rem 0 2rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 1319px) {
  .p-single__conts-wrapper h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h3 {
    font-size: 1.7rem;
  }
}
.p-single__conts-wrapper h4 {
  padding: 0.5rem 2rem;
  border-left: 3px solid #1e202b;
  line-height: 1.5;
  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 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: #052A4D;
  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/single/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: 3.2rem;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-single__ttl-wrap {
    padding-bottom: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.p-single__date {
  line-height: 1;
}
.p-single__btn-wrap {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-single__btn-wrap {
    margin-top: 3.2rem;
  }
}

.sv__sect {
  height: 48rem;
  /* 背景がheaderに入り込んでいる場合に適用 不要の場合削除 */
  /* ---------------------------
  各ページのsub-view画像
  ------------------------------*/
}
@media screen and (max-width: 1000px) {
  .sv__sect {
    height: 38.4rem;
    /* 背景がheaderに入り込んでいる場合に適用 不要の場合削除*/
  }
}
@media screen and (max-width: 767px) {
  .sv__sect {
    height: 24rem;
  }
}
.sv__sect .conteiner {
  position: relative;
  height: 100%;
}
.sv__sect.bg--news {
  background: url("../images/kv/news.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .sv__sect.bg--news {
    background: url("../images/kv/news.jpg") no-repeat center center/cover;
  }
}
.sv__sect.bg--about {
  background: url("../images/kv/about.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .sv__sect.bg--about {
    background: url("../images/kv/about.jpg") no-repeat center center/cover;
  }
}
.sv__sect.bg--company {
  background: url("../images/kv/company.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .sv__sect.bg--company {
    background: url("../images/kv/company.jpg") no-repeat center center/cover;
  }
}
.sv__ttl-wrap {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 1.2em;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1319px) {
  .sv__ttl-wrap {
    left: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sv__ttl-wrap {
    left: 1.6rem;
  }
}
.sv__ttl {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.66;
}
@media screen and (max-width: 1319px) {
  .sv__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sv__ttl {
    font-size: 2rem;
  }
}

/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-top .kv__sect {
  padding-top: 9.6rem;
  padding-top: 6.5rem;
}
@media screen and (max-width: 1319px) {
  .p-top .kv__sect {
    padding-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__sect {
    padding-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__sect {
    padding-top: 0.2rem;
  }
}
.p-top .feature__sect {
  background: url("../images/top/feature-bg.jpg") no-repeat center center/cover;
  padding: 10.5rem 0 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .feature__sect {
    padding: 14rem 0 6.4rem;
  }
}
.p-top .feature__bnr {
  max-width: 115.2rem;
  margin: 0 auto 8.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .feature__bnr {
    margin-bottom: 10rem;
  }
}
.p-top .feature__label-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.7rem 1fr 2.7rem 1fr 2.7rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 2.7rem;
  padding: 6.4rem 0;
}
@media screen and (max-width: 1319px) {
  .p-top .feature__label-groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top .feature__label-groups {
    padding: 3.2rem 0;
    -ms-grid-columns: 1fr 1.4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 1.4rem;
  }
}
.p-top .feature__body-txt {
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top .feature__body-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .feature__body-txt {
    letter-spacing: 0;
    line-height: 2.28;
    text-align: center;
    padding-bottom: 3.2rem;
  }
}
.p-top .feature__body {
  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 .feature__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .voice__sect {
  background: url("../images/top/voice-bg.jpg") no-repeat center center/cover;
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .voice__sect {
    background: url("../images/top/voice-bg-sp.jpg") no-repeat center center/cover;
    padding: 8rem 0 6.4rem;
  }
}
.p-top .voice__body {
  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 .voice__ttl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  line-height: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  position: relative;
}
@media screen and (max-width: 1319px) {
  .p-top .voice__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
  }
}
.p-top .voice__ttl::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  left: -3rem;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.p-top .voice__ttl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  right: -3rem;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.p-top .voice__box-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 2rem;
  padding-top: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .p-top .voice__box-groups {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups {
    padding: 5.2rem 0 3.2rem;
    gap: 1.3rem 1.3rem;
    -ms-grid-columns: 1fr 1.3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(1) .voice__box-img img {
    width: 4.4rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(2) .voice__box-img img {
    width: 8.5rem;
    height: 7.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(3) .voice__box-img img {
    width: 5.6rem;
    height: 5.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(4) .voice__box-img img {
    width: 8.5rem;
    height: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(5) .voice__box-img img {
    width: 8.6rem;
    height: 6.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(6) .voice__box-img img {
    width: 8.5rem;
    height: 5.97rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(7) .voice__box-img img {
    width: 6.46rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(8) .voice__box-img img {
    width: 4.8rem;
    height: 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(9) .voice__box-img img {
    width: 8.49rem;
    height: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-groups .voice__box:nth-child(10) .voice__box-img img {
    width: 4.85rem;
    height: 6.2rem;
  }
}
.p-top .voice__box {
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid #d1d6d9;
  padding: 2.4rem 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-top .voice__box {
    padding: 1.2rem;
  }
}
.p-top .voice__box-ttl {
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top .voice__box-ttl {
    line-height: 1.33;
  }
}
.p-top .voice__box-img {
  text-align: center;
  min-height: 14rem;
  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) {
  .p-top .voice__box-img {
    min-height: 9rem;
  }
}
.p-top .voice__box-img img {
  width: auto;
  height: auto;
}
.p-top .service__sect {
  padding: 9.6rem 0 18.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__sect {
    padding: 6.4rem 0;
  }
}
.p-top .service__media {
  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;
  padding-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__media {
    padding-bottom: 6.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .service__media-img-wrap {
  margin-right: 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43.75%;
          flex: 0 0 43.75%;
}
@media screen and (max-width: 767px) {
  .p-top .service__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
}
.p-top .service__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .service__media-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  color: #052a4d;
  line-height: 1.66;
  padding-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .p-top .service__media-ttl {
    font-size: 2.4rem;
  }
}
.p-top .service__media-txt .u-font--l {
  font-size: 2.4rem;
  color: #0C5DA9;
}
@media screen and (max-width: 767px) {
  .p-top .service__media-txt .u-font--l {
    font-size: 1.4rem;
  }
}
.p-top .service__heading {
  width: 44rem;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__heading {
    max-width: 34.3rem;
    width: 100%;
    margin-bottom: 3.2rem;
  }
}
.p-top .service__box {
  background: #fafafa;
  border: 1px solid rgba(5, 42, 77, 0.5);
  padding: 2rem 8.7% 3.3rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__box {
    margin-bottom: 3.2rem;
  }
}
.p-top .service__box-heading {
  text-align: center;
  border-bottom: 1px solid rgba(5, 42, 77, 0.5);
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__box-heading {
    margin-bottom: 3rem;
  }
}
.p-top .service__box-item-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 4rem;
}
@media screen and (max-width: 1319px) {
  .p-top .service__box-item-groups {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__box-item-groups {
    -ms-grid-columns: 1fr 3.2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 3.2rem;
  }
}
.p-top .service__box-item-desc {
  font-weight: bold;
  line-height: 2;
}
.p-top .service__box-item {
  text-align: center;
}
.p-top .service__box-item img {
  width: auto;
  height: 8rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__box-item img {
    margin-bottom: 1.6rem;
  }
}
.p-top .service__bnr {
  max-width: 115.2rem;
  margin: 0 auto 12.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top .service__bnr {
    margin-bottom: 6.4rem;
  }
}
.p-top .area__sect {
  background: url("../images/top/area-bg.jpg") no-repeat right center/cover;
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .area__sect {
    background: url("../images/top/area-bg-sp.jpg") no-repeat right center/cover;
  }
}
.p-top .area__box {
  border-radius: 1.6rem;
  padding: 6.4rem;
  background-color: rgba(255, 255, 255, 0.8); /* 背景色を白にし、不透明度を設定 */
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px); /* 背景のぼかし効果を適用 */
  width: 78.4rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .area__box {
    max-width: 100%;
    padding: 4.8rem 0.8rem;
  }
}
.p-top .area__box-heading {
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
  color: #f6b111;
  font-family: "Noto Serif JP", serif;
  padding: 0 6.4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top .area__box-heading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .area__box-heading {
    padding: 0 4.2rem;
  }
}
.p-top .area__box-heading::before {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 5.8rem;
  background: url("../images/top/area-left-icon.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top .area__box-heading::after {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 5.8rem;
  background: url("../images/top/area-right-icon.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top .area__txt {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top .area__txt {
    line-height: 1.71;
  }
}
.p-top .area__subtxt {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.28;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .area__subtxt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .area__subtxt {
    line-height: 2;
  }
}
.p-top .order__sect {
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .order__sect {
    padding: 10rem 0 6.4rem;
  }
}
.p-top .order__img-wrap {
  max-width: 119.4rem;
  width: 100%;
  margin: 6.4rem auto 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .order__img-wrap {
    margin: 2.4rem auto 4.8rem;
  }
}
.p-top .order__media {
  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-top .order__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .order__media-img-wrap {
  margin-right: 9.6rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 1319px) {
  .p-top .order__media-img-wrap {
    margin-right: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .order__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.p-top .order__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .order__media-ttl {
  font-size: 3.2rem;
  line-height: 1.75;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 1319px) {
  .p-top .order__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .order__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .order__media-ttl {
    line-height: 1.33;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-top .order__media-ttl .u-font--s {
    font-size: 1.8rem;
  }
}
.p-top .order__media-txt {
  font-size: 1.6rem;
  line-height: 2.5;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top .order__media-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .order__media-txt {
    padding-bottom: 3rem;
  }
}
.p-top .news__sect {
  padding: 9.6rem 0;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-top .news__sect {
    padding: 6.4rem 0;
  }
}
.p-top .news__btn-wrap {
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-top .news__btn-wrap {
    margin: 3.2rem auto 0;
  }
}
.p-top .company__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-top .company__sect {
    padding: 6.4rem 0 9.6rem;
    overflow: hidden;
  }
}
.p-top .company__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 6.4rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .company__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -ms-grid;
    display: grid;
  }
}
.p-top .company__media-img-wrap {
  margin-right: 9.6rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 1319px) {
  .p-top .company__media-img-wrap {
    margin-right: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .company__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .company__btn-wrap {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-top .company__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top .company__media-body {
    display: contents;
  }
}
.p-top .company__media-ttl {
  font-size: 3.2rem;
  line-height: 1.75;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 1319px) {
  .p-top .company__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .company__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .company__media-ttl {
    line-height: 1.33;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
  }
}
.p-top .company__media-txt {
  line-height: 2.5;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top .company__media-txt {
    padding-bottom: 3rem;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
  }
}

.p-features .features__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-features .features__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-features .features__media-groups {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-features .features__media-groups {
    padding-top: 3.2rem;
  }
}
.p-features .features__media-groups .features__media:nth-child(1) {
  padding-top: 0;
}
.p-features .features__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4rem 0;
  border-bottom: 1px solid rgba(5, 42, 77, 0.5);
}
@media screen and (max-width: 767px) {
  .p-features .features__media {
    padding: 3.2rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-features .features__media.u-flex--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-features .features__media.u-flex--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-features .features__media-img-wrap {
  margin-right: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.75%;
          flex: 0 1 43.75%;
}
@media screen and (max-width: 1319px) {
  .p-features .features__media-img-wrap {
    margin-right: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features .features__media-img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
}
.p-features .features__media-img-wrap.u-flex--rev {
  margin-right: 0;
  margin-left: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-features .features__media-img-wrap.u-flex--rev {
    margin-left: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features .features__media-img-wrap.u-flex--rev {
    width: 100%;
    margin: 0 0 1.6rem;
  }
}
.p-features .features__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-features .features__media-ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  margin-bottom: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1319px) {
  .p-features .features__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features .features__media-ttl {
    font-size: 2.2rem;
  }
}
.p-features .features__media-ttl .u-color--blue {
  color: #0C5DA9;
}
.p-features .features__btn-wrap {
  max-width: 48rem;
  width: 100%;
  display: block;
  margin-top: 3.2rem;
}
.p-features .features__num {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #0C5DA9;
  color: #fff;
  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-right: 4.8rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1319px) {
  .p-features .features__num {
    margin-right: 1.6rem;
    width: 3rem;
    height: 3rem;
  }
}

.p-pc3000 .pc__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-pc3000 .pc__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4rem 0;
  border-bottom: 1px solid rgba(5, 42, 77, 0.5);
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media {
    padding: 3.2rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-pc3000 .pc__media.u-flex--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media.u-flex--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-pc3000 .pc__media-groups {
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media-groups {
    padding-top: 3.2rem;
  }
}
.p-pc3000 .pc__media-groups .pc__media:nth-child(1) {
  padding-top: 0;
}
.p-pc3000 .pc__media-img-wrap {
  margin-right: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.75%;
          flex: 0 1 43.75%;
}
@media screen and (max-width: 1319px) {
  .p-pc3000 .pc__media-img-wrap {
    margin-right: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media-img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
}
.p-pc3000 .pc__media-img-wrap.u-flex--rev {
  margin-right: 0;
  margin-left: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-pc3000 .pc__media-img-wrap.u-flex--rev {
    margin-left: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media-img-wrap.u-flex--rev {
    width: 100%;
    margin: 0 0 1.6rem;
  }
}
.p-pc3000 .pc__btn-wrap {
  max-width: 48rem;
  width: 100%;
  display: block;
  margin-top: 3.2rem;
}
.p-pc3000 .pc__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-pc3000 .pc__media-ttl {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  margin-bottom: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1319px) {
  .p-pc3000 .pc__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pc3000 .pc__media-ttl {
    font-size: 2.1rem;
  }
}
.p-pc3000 .pc__media-ttl .u-color--blue {
  color: #0C5DA9;
}
.p-pc3000 .pc__num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.8rem;
          flex: 0 0 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #0C5DA9;
  color: #fff;
  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-right: 4.8rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1319px) {
  .p-pc3000 .pc__num {
    margin-right: 1.6rem;
    height: 3rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3rem;
            flex: 0 0 3rem;
  }
}
.p-order .order__sect {
  padding: 9.6rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__sect {
    padding: 4.8rem 0 6rem;
  }
}
.p-order .order__img-wrap {
  padding: 6.4rem 0 11rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__img-wrap {
    padding: 3.2rem 0 5.5rem;
  }
}
.p-order .order__flow {
  padding-bottom: 14.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__flow {
    padding-bottom: 7.7rem;
  }
}
.p-order .order__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-order .order__media.u-pb {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__media.u-pb {
    padding-bottom: 3.2rem;
  }
}
.p-order .order__media-img-wrap {
  margin-left: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.75%;
          flex: 0 1 43.75%;
}
@media screen and (max-width: 1319px) {
  .p-order .order__media-img-wrap {
    margin-left: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__media-img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.6rem;
  }
}
.p-order .order__media-img-wrap.u-flex--rev {
  margin-right: 0;
  margin-left: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-order .order__media-img-wrap.u-flex--rev {
    margin-left: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__media-img-wrap.u-flex--rev {
    width: 100%;
    margin: 0 0 1.6rem;
  }
}
.p-order .order__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-order .order__media-ttl {
  font-size: 2.4rem;
  line-height: 1.66;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1319px) {
  .p-order .order__media-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__media-ttl {
    font-size: 1.8rem;
  }
}
.p-order .order__box {
  background: #FAFAFA;
  padding: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .p-order .order__box {
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__box {
    padding: 1.6rem;
  }
}
.p-order .order__box-ttl {
  text-align: center;
  border-bottom: 1px solid #052A4D;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.66;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-order .order__box-ttl {
    font-size: 1.8rem;
  }
}
.p-order .order__conts-inner-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-inner-groups {
    row-gap: 3rem;
  }
}
.p-order .order__conts-inner {
  line-height: 2;
}
.p-order .order__conts-inner .u-font--l {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-inner .u-font--l {
    font-size: 1.8rem;
  }
}
.p-order .order__conts-inner .u-font--m {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-inner .u-font--m {
    font-size: 1.6rem;
  }
}
.p-order .order__conts-inner .u-color--blue {
  color: #0C5DA9;
}
.p-order .order__conts-inner-subtxt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-inner-subtxt {
    font-size: 1.2rem;
  }
}
.p-order .order__conts-inner-heading {
  border-bottom: 1px solid #707070;
  font-weight: bold;
  line-height: 2.5;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-order .order__btn-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__btn-wrap .c-btn__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__btn-wrap .c-btn__left-icon {
    padding-left: 1rem;
  }
}
.p-order .order__conts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 16rem;
     -moz-column-gap: 16rem;
          column-gap: 16rem;
}
@media screen and (max-width: 1319px) {
  .p-order .order__conts-grid {
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-grid {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.p-order .order__box-conts {
  margin-top: 3.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__box-conts {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-order .order__tel-wrap {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1319px) {
  .p-order .order__tel-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__tel-wrap {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.p-order .order__tel-wrap img {
  width: 46.3rem;
  margin-right: 4.6rem;
}
@media screen and (max-width: 1319px) {
  .p-order .order__tel-wrap img {
    margin-right: 0;
    width: auto;
    max-width: 46.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__tel-wrap img {
    width: 100%;
  }
}
.p-order .order__tel-txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.66;
}
.p-order .order__tel-txt .u-font--s {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__tel-txt .u-font--s {
    font-size: 1.2rem;
  }
}
.p-order .order__triangle-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-order .order__triangle {
  width: 4rem;
  margin: 0 auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-order .order__triangle {
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-order .order__conts-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-order .order__conts-groups {
    row-gap: 3.2rem;
  }
}
.p-order .order__gray-box {
  background: #FAFAFA;
  padding: 6.4rem 4.2rem;
  line-height: 1.66;
  margin: 2.4rem 0;
}
@media screen and (max-width: 1319px) {
  .p-order .order__gray-box {
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-order .order__gray-box {
    padding: 1.6rem;
  }
}
.p-order .order__gray-txt {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-order .order__gray-txt {
    font-size: 1.6rem;
  }
}
.p-order .order__sub-txt {
  font-size: 1.4rem;
  line-height: 2.28;
}
@media screen and (max-width: 767px) {
  .p-order .order__sub-txt {
    font-size: 1.4rem;
  }
}

.p-service-price .service__sect {
  padding: 9.6rem 0 11rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__sect {
    padding: 4.8rem 0 5.5rem;
  }
}
.p-service-price .service__conts-groups {
  padding-top: 9.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 16rem;
}
@media screen and (max-width: 1319px) {
  .p-service-price .service__conts-groups {
    row-gap: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .service__conts-groups {
    padding-top: 4.8rem;
    row-gap: 3.2rem;
  }
}
.p-service-price .service__box-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-service-price .service__box-grid.u-col--1 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
.p-service-price .service__box {
  background: #fafafa;
  padding: 6.4rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .p-service-price .service__box {
    padding: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box {
    padding: 1.6rem;
    margin-top: 3.2rem;
  }
}
.p-service-price .service__box.u-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box.u-grid {
    row-gap: 3.2rem;
  }
}
.p-service-price .service__box-head-subtxt {
  padding-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-head-subtxt {
    padding-top: 2.4rem;
  }
}
.p-service-price .service__box-groups-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 16rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-groups-grid {
    row-gap: 8rem;
  }
}
.p-service-price .service__box-ttl {
  font-size: 2.4rem;
  border-bottom: 1px solid #052a4d;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1319px) {
  .p-service-price .service__box-ttl {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-ttl {
    margin-bottom: 2rem;
  }
}
.p-service-price .service__box-ttl.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-service-price .service__box-ttl.u-flex .u-font--l {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-ttl.u-flex .u-font--l {
    font-size: 2rem;
  }
}
.p-service-price .service__box-ttl.u-flex .u-font--s {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__box-ttl.u-flex .u-font--s {
    font-size: 1.2rem;
  }
}
.p-service-price .service__head-txt {
  text-align: center;
  line-height: 2.66;
  font-weight: bold;
  font-size: 2.4rem;
  padding: 6.4rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .service__head-txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .service__head-txt {
    padding: 3.2rem 0 2.4rem;
  }
}
@media screen and (max-width: 1319px) {
  .p-service-price .menu__table-wrap {
    overflow-x: scroll;
  }
}
.p-service-price .menu__table-inner {
  overflow-x: scroll;
}
.p-service-price .menu__table {
  width: 128rem;
}
.p-service-price .menu__table thead {
  background: #052a4d;
}
.p-service-price .menu__table thead tr th:nth-child(1) {
  width: 51.2rem;
}
.p-service-price .menu__table thead tr th:nth-child(2) {
  width: 44rem;
}
.p-service-price .menu__table thead tr th:nth-child(3) {
  width: 20rem;
}
.p-service-price .menu__table thead tr th:nth-child(4) {
  width: 12.8rem;
}
.p-service-price .menu__table thead th {
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table thead th {
    font-size: 1.6rem;
  }
}
.p-service-price .menu__table tbody tr {
  border-bottom: 1px solid #ecf2f8;
}
.p-service-price .menu__table tbody td {
  vertical-align: middle;
  text-align: center;
  padding: 1em 1.5em;
  line-height: 2;
  border-right: 1px solid #ecf2f8;
}
.p-service-price .menu__table tbody td.u-bg--orange {
  background: #fff7d6;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-service-price .menu__table tbody td.u-bg--blue {
  background: #ecf2f8;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-service-price .menu__table tbody td.u-txt--left {
  text-align: left;
}
.p-service-price .menu__table tbody td .u-font--s {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table tbody td .u-font--s {
    font-size: 1.2rem;
  }
}
.p-service-price .menu__table tbody td .u-font--l {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table tbody td .u-font--l {
    font-size: 1.6rem;
  }
}
.p-service-price .menu__table tbody td b {
  display: block;
}
.p-service-price .menu__table-heading {
  text-align: center;
  padding: 0 2em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.66;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table-heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table-heading {
    margin-bottom: 3.2rem;
  }
}
.p-service-price .menu__table-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 90%;
  width: 3px;
  background: #052A4D;
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
}
.p-service-price .menu__table-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 90%;
  width: 3px;
  background: #052A4D;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}
.p-service-price .menu__table-heading.u-mt {
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__table-heading.u-mt {
    margin-top: 8rem;
  }
}
.p-service-price .menu__osusume-icon {
  width: 8.9rem;
  margin: 0 auto;
}
.p-service-price .menu__blue-box {
  background: #0C5DA9;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em;
  line-height: 1.66;
  font-weight: bold;
  border-radius: 0.8rem;
  margin: 0 auto;
}
.p-service-price .menu__box {
  background: #fafafa;
  padding: 3.2rem 6rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .menu__box {
    margin-top: 3.2rem;
    padding: 1.6rem;
  }
}
.p-service-price .order__box-conts-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-service-price .order__box-conts-groups {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-service-price .order__box {
  background: #fafafa;
  padding: 6.4rem;
  width: 100%;
}
@media screen and (max-width: 1319px) {
  .p-service-price .order__box {
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price .order__box {
    padding: 1.6rem;
  }
}
.p-service-price .order__box-ttl {
  text-align: center;
  border-bottom: 1px solid #052a4d;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.66;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-service-price .order__box-ttl {
    font-size: 1.8rem;
  }
}
.p-service .service-top__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-service .service-top__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-service .service-top__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 27.4rem;
          flex: 0 1 27.4rem;
  margin-left: 5.4rem;
}
@media screen and (max-width: 1319px) {
  .p-service .service-top__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23rem;
            flex: 0 0 23rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service-top__media-img-wrap {
    margin-left: 2.4rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 15rem;
    margin: 0 auto;
  }
}
.p-service .service-top__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service .service-top__media-ttl {
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #052a4d;
  line-height: 1.66;
  font-size: 3.2rem;
  margin-bottom: 6rem;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-service .service-top__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service-top__media-ttl {
    margin-bottom: 3rem;
  }
}
.p-service .service__sect {
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-service .service__sect {
    padding: 4.8rem 0;
  }
}
.p-service .service__box-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 2rem;
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 1319px) {
  .p-service .service__box-groups {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups {
    gap: 1.3rem 1.3rem;
    -ms-grid-columns: 1fr 1.3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(1) .voice__box-img img {
    width: 4.4rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(2) .voice__box-img img {
    width: 8.5rem;
    height: 7.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(3) .voice__box-img img {
    width: 5.6rem;
    height: 5.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(4) .voice__box-img img {
    width: 8.5rem;
    height: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(5) .voice__box-img img {
    width: 8.6rem;
    height: 6.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(6) .voice__box-img img {
    width: 8.5rem;
    height: 5.97rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(7) .voice__box-img img {
    width: 6.46rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(8) .voice__box-img img {
    width: 4.8rem;
    height: 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(9) .voice__box-img img {
    width: 8.49rem;
    height: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service__box-groups .voice__box:nth-child(10) .voice__box-img img {
    width: 4.85rem;
    height: 6.2rem;
  }
}
.p-service .service__box {
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid #d1d6d9;
  padding: 2.4rem 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-service .service__box {
    padding: 1.2rem;
  }
}
.p-service .service__box-ttl {
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service .service__box-ttl {
    line-height: 1.33;
  }
}
.p-service .service__box-img {
  text-align: center;
  min-height: 14rem;
  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) {
  .p-service .service__box-img {
    min-height: 9rem;
  }
}
.p-service .service__box-img img {
  width: auto;
  height: auto;
}
.p-service .area__sect {
  background: #fafafa;
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-service .area__sect {
    padding: 4.8rem 0;
  }
}
.p-service .area__head-txt {
  text-align: center;
  padding: 6rem 0;
  font-weight: bold;
  line-height: 2;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-service .area__head-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .area__head-txt {
    padding: 3rem 0;
  }
}
.p-service .area__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4rem 0;
  border-bottom: 1px solid rgba(5, 42, 77, 0.5);
}
@media screen and (max-width: 767px) {
  .p-service .area__media {
    padding: 3.2rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .area__media.u-flex--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service .area__media.u-flex--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .area__media.u-bd--none {
  border: none;
}
.p-service .area__media.u-py {
  padding: 9.6rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-service .area__media.u-py {
    padding-top: 4.8rem;
  }
}
.p-service .area__media-groups {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-service .area__media-groups {
    padding-top: 3.2rem;
  }
}
.p-service .area__media-groups .features__media:nth-child(1) {
  padding-top: 0;
}
.p-service .area__media-img-wrap {
  margin-right: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.75%;
          flex: 0 1 43.75%;
}
@media screen and (max-width: 1319px) {
  .p-service .area__media-img-wrap {
    margin-right: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .area__media-img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
}
.p-service .area__media-img-wrap.u-flex--rev {
  margin-right: 0;
  margin-left: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-service .area__media-img-wrap.u-flex--rev {
    margin-left: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .area__media-img-wrap.u-flex--rev {
    width: 100%;
    margin: 0 0 1.6rem;
  }
}
.p-service .area__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service .area__media-ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  margin-bottom: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1319px) {
  .p-service .area__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .area__media-ttl {
    font-size: 2.2rem;
  }
}
.p-service .area__media-ttl .u-color--blue {
  color: #0c5da9;
}
.p-service .area__btn-wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service .area__btn-wrap {
    margin-top: 2.5rem;
    margin: 2.5rem auto 0;
  }
}
.p-service .service-box__sect {
  padding: 16rem 0;
}
@media screen and (max-width: 767px) {
  .p-service .service-box__sect {
    padding: 8rem 0;
  }
}
.p-service .service-box__conts-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 16rem;
}
@media screen and (max-width: 767px) {
  .p-service .service-box__conts-groups {
    row-gap: 8rem;
  }
}
.p-service .service-box__wrap {
  background: #fafafa;
  padding: 6.4rem;
  margin-top: 6.4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6rem;
}
@media screen and (max-width: 1319px) {
  .p-service .service-box__wrap {
    padding: 3.2rem;
    margin-top: 4rem;
    row-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service-box__wrap {
    padding: 1.6rem;
    margin-top: 3.2rem;
    row-gap: 3.2rem;
  }
}
.p-service .service-box__media {
  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-service .service-box__media {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-service .service-box__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9.6rem;
          flex: 0 0 9.6rem;
  margin-right: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .p-service .service-box__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.4rem;
            flex: 0 0 6.4rem;
    margin-right: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service .service-box__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.2rem;
            flex: 0 0 3.2rem;
    margin-right: 1.6rem;
    margin-top: 0.5rem;
  }
}
.p-service .service-box__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service .service-box__media-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.66;
  border-bottom: 1px solid #052a4d;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-service .service-box__media-ttl {
    font-size: 1.8rem;
  }
}
.p-service .service-box__foot-txt {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.22;
}
@media screen and (max-width: 767px) {
  .p-service .service-box__foot-txt {
    font-size: 1.6rem;
  }
}

.p-tokusho .tokusho__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-tokusho .tokusho__table {
  width: 100%;
  line-height: 2.2;
  margin-top: 6.4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__table {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__table {
    font-size: 1.6rem;
  }
}
.p-tokusho .tokusho__table tr td:nth-child(1) {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__table tr td:nth-child(1) {
    padding-bottom: 0;
  }
}
.p-tokusho .tokusho__table tr td:nth-child(2) {
  width: 69%;
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__table tr td:nth-child(2) {
    padding-top: 0;
    width: 100%;
  }
}
.p-tokusho .tokusho__table td {
  padding: 1.5em 0 1em;
}
.p-tokusho .tokusho__table tr {
  border-bottom: 1px solid #052A4D;
}
@media screen and (max-width: 767px) {
  .p-tokusho .tokusho__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-company .sis__sect {
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-company .sis__sect {
    padding: 4.8rem 0;
  }
}
.p-company .sis__img-wrap {
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-company .sis__img-wrap {
    padding-top: 3.2rem;
  }
}
.p-company .philosophy__sect {
  padding: 9.6rem 0;
  background: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__sect {
    padding: 4.8rem 0;
  }
}
.p-company .philosophy__name {
  text-align: right;
}
.p-company .philosophy__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .philosophy__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40rem;
          flex: 0 1 40rem;
  margin-right: 8rem;
}
@media screen and (max-width: 1319px) {
  .p-company .philosophy__media-img-wrap {
    margin-right: 6rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30rem;
            flex: 0 1 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company .philosophy__media-img-wrap {
    max-width: 25rem;
    margin: 0 auto 1.6rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.p-company .philosophy__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company .company__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-company .company__sect {
    padding: 4.8rem 0 8rem;
  }
}
.p-company .company__table {
  width: 100%;
  line-height: 2.2;
  margin-top: 5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-company .company__table {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company .company__table {
    font-size: 1.6rem;
  }
}
.p-company .company__table tr td:nth-child(1) {
  font-weight: bold;
  width: 10em;
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr td:nth-child(1) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr td:nth-child(2) {
    padding-top: 0;
    width: 100%;
  }
}
.p-company .company__table td {
  padding: 1.5em 0 1em;
}
.p-company .company__table tr {
  border-bottom: 1px solid #052A4D;
}
@media screen and (max-width: 767px) {
  .p-company .company__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .people__sect {
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .p-company .people__sect {
    padding-bottom: 8rem;
  }
}
.p-company .people__card-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr 3.2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.4rem 3.2rem;
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-company .people__card-groups {
    margin-top: 4.8rem;
    gap: 3.2rem 1.6rem;
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-company .people__card-img-wrap {
  margin-bottom: 1.6rem;
}
.p-company .people__card-post-name {
  text-align: center;
  line-height: 1.3;
  padding-bottom: 0.3em;
}
.p-company .people__card-txt {
  text-align: center;
  line-height: 1.3;
}
/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-area .kv__sect {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .kv__sect {
    padding-top: 4.8rem;
  }
}
.p-area .feature__sect {
  background: url("../images/top/feature-bg.jpg") no-repeat center center/cover;
  padding: 10.5rem 0 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .feature__sect {
    padding: 14rem 0 6.4rem;
  }
}
.p-area .feature__bnr {
  max-width: 115.2rem;
  margin: 0 auto 8.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-area .feature__bnr {
    margin-bottom: 10rem;
  }
}
.p-area .feature__label-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.7rem 1fr 2.7rem 1fr 2.7rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 2.7rem;
  padding: 6.4rem 0;
}
@media screen and (max-width: 1319px) {
  .p-area .feature__label-groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-area .feature__label-groups {
    padding: 3.2rem 0;
    -ms-grid-columns: 1fr 1.4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 1.4rem;
  }
}
.p-area .feature__body-txt {
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-area .feature__body-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .feature__body-txt {
    letter-spacing: 0;
    line-height: 2.28;
    text-align: center;
    padding-bottom: 3.2rem;
  }
}
.p-area .feature__body {
  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-area .feature__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-area .voice__sect {
  background: url("../images/top/voice-bg.jpg") no-repeat center center/cover;
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-area .voice__sect {
    background: url("../images/top/voice-bg-sp.jpg") no-repeat center center/cover;
    padding: 8rem 0 6.4rem;
  }
}
.p-area .voice__body {
  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-area .voice__ttl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  line-height: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  position: relative;
}
@media screen and (max-width: 1319px) {
  .p-area .voice__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
  }
}
.p-area .voice__ttl::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  left: -3rem;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.p-area .voice__ttl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  right: -3rem;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.p-area .voice__box-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 2rem;
  padding-top: 6.4rem;
}
@media screen and (max-width: 1319px) {
  .p-area .voice__box-groups {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups {
    padding: 5.2rem 0 3.2rem;
    gap: 1.3rem 1.3rem;
    -ms-grid-columns: 1fr 1.3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(1) .voice__box-img img {
    width: 4.4rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(2) .voice__box-img img {
    width: 8.5rem;
    height: 7.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(3) .voice__box-img img {
    width: 5.6rem;
    height: 5.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(4) .voice__box-img img {
    width: 8.5rem;
    height: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(5) .voice__box-img img {
    width: 8.6rem;
    height: 6.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(6) .voice__box-img img {
    width: 8.5rem;
    height: 5.97rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(7) .voice__box-img img {
    width: 6.46rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(8) .voice__box-img img {
    width: 4.8rem;
    height: 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(9) .voice__box-img img {
    width: 8.49rem;
    height: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-groups .voice__box:nth-child(10) .voice__box-img img {
    width: 4.85rem;
    height: 6.2rem;
  }
}
.p-area .voice__box {
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid #d1d6d9;
  padding: 2.4rem 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-area .voice__box {
    padding: 1.2rem;
  }
}
.p-area .voice__box-ttl {
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-area .voice__box-ttl {
    line-height: 1.33;
  }
}
.p-area .voice__box-img {
  text-align: center;
  min-height: 14rem;
  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) {
  .p-area .voice__box-img {
    min-height: 9rem;
  }
}
.p-area .voice__box-img img {
  width: auto;
  height: auto;
}
.p-area .service__sect {
  padding: 9.6rem 0 18.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__sect {
    padding: 6.4rem 0;
  }
}
.p-area .service__media {
  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;
  padding-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__media {
    padding-bottom: 6.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-area .service__media-img-wrap {
  margin-right: 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43.75%;
          flex: 0 0 43.75%;
}
@media screen and (max-width: 767px) {
  .p-area .service__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
}
.p-area .service__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-area .service__media-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  color: #052a4d;
  line-height: 1.66;
  padding-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .p-area .service__media-ttl {
    font-size: 2.4rem;
  }
}
.p-area .service__media-txt .u-font--l {
  font-size: 2.4rem;
  color: #0C5DA9;
}
@media screen and (max-width: 767px) {
  .p-area .service__media-txt .u-font--l {
    font-size: 1.4rem;
  }
}
.p-area .service__heading {
  width: 44rem;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__heading {
    max-width: 34.3rem;
    width: 100%;
    margin-bottom: 3.2rem;
  }
}
.p-area .service__box {
  background: #fafafa;
  border: 1px solid rgba(5, 42, 77, 0.5);
  padding: 2rem 8.7% 3.3rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__box {
    margin-bottom: 3.2rem;
  }
}
.p-area .service__box-heading {
  text-align: center;
  border-bottom: 1px solid rgba(5, 42, 77, 0.5);
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__box-heading {
    margin-bottom: 3rem;
  }
}
.p-area .service__box-item-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__box-item-groups {
    -ms-grid-columns: 1fr 3.2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 3.2rem;
  }
}
.p-area .service__box-item-desc {
  font-weight: bold;
  line-height: 2;
}
.p-area .service__box-item {
  text-align: center;
}
.p-area .service__box-item img {
  width: auto;
  height: 8rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-area .service__box-item img {
    margin-bottom: 1.6rem;
  }
}
.p-area .service__bnr {
  margin-top: 12.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-area .service__bnr {
    margin-top: 6.4rem;
  }
}
.p-area .service__bnr {
  max-width: 115.2rem;
  margin: 0 auto 12.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-area .service__bnr {
    margin-bottom: 6.4rem;
  }
}
.p-area .area__sect {
  background: url("../images/top/area-bg.jpg") no-repeat right center/cover;
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-area .area__sect {
    background: url("../images/top/area-bg-sp.jpg") no-repeat right center/cover;
  }
}
.p-area .area__box {
  border-radius: 1.6rem;
  padding: 6.4rem;
  background-color: rgba(255, 255, 255, 0.8); /* 背景色を白にし、不透明度を設定 */
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px); /* 背景のぼかし効果を適用 */
  width: 78.4rem;
}
@media screen and (max-width: 767px) {
  .p-area .area__box {
    max-width: 100%;
    padding: 4.8rem 0.8rem;
  }
}
.p-area .area__box-heading {
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
  color: #f6b111;
  font-family: "Noto Serif JP", serif;
  padding: 0 6.4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-area .area__box-heading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .area__box-heading {
    padding: 0 4.2rem;
  }
}
.p-area .area__box-heading::before {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 5.8rem;
  background: url("../images/top/area-left-icon.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-area .area__box-heading::after {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 5.8rem;
  background: url("../images/top/area-right-icon.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-area .area__txt {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-area .area__txt {
    line-height: 1.71;
  }
}
.p-area .area__subtxt {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.28;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-area .area__subtxt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .area__subtxt {
    line-height: 2;
  }
}
.p-area .order__sect {
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-area .order__sect {
    padding: 10rem 0 6.4rem;
  }
}
.p-area .order__img-wrap {
  max-width: 119.4rem;
  width: 100%;
  margin: 6.4rem auto 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-area .order__img-wrap {
    margin: 2.4rem auto 4.8rem;
  }
}
.p-area .order__media {
  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;
}
.p-area .order__media-img-wrap {
  margin-right: 9.6rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .p-area .order__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.p-area .order__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-area .order__media-ttl {
  font-size: 3.2rem;
  line-height: 1.75;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 767px) {
  .p-area .order__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .order__media-ttl {
    line-height: 1.33;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-area .order__media-ttl .u-font--s {
    font-size: 1.8rem;
  }
}
.p-area .order__media-txt {
  font-size: 1.6rem;
  line-height: 2.5;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-area .order__media-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .order__media-txt {
    padding-bottom: 3rem;
  }
}
.p-area .news__sect {
  padding: 9.6rem 0;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-area .news__sect {
    padding: 6.4rem 0;
  }
}
.p-area .news__btn-wrap {
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-area .news__btn-wrap {
    margin: 3.2rem auto 0;
  }
}
.p-area .company__sect {
  padding: 9.6rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-area .company__sect {
    padding: 6.4rem 0 9.6rem;
    overflow: hidden;
  }
}
.p-area .company__media {
  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;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-area .company__media {
    padding-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -ms-grid;
    display: grid;
  }
}
.p-area .company__media-img-wrap {
  margin-right: 9.6rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .p-area .company__media-img-wrap {
    margin-right: 0;
    margin-bottom: 3.2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-area .company__btn-wrap {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-area .company__media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-area .company__media-body {
    display: contents;
  }
}
.p-area .company__media-ttl {
  font-size: 3.2rem;
  line-height: 1.75;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 767px) {
  .p-area .company__media-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area .company__media-ttl {
    line-height: 1.33;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-area .company__media-txt {
  line-height: 2.5;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-area .company__media-txt {
    padding-bottom: 3rem;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-area .toshi__sect {
  padding: 9.6rem 0;
  background: url("../images/top/feature-bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-area .toshi__sect {
    padding: 4.8rem 0;
  }
}

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

.u-color--blue {
  color: #0C5DA9;
}

.u-color--red {
  color: #E60335;
}

/*----------------------------
背景色変更クラス
------------------------------*/
.u-bg--white {
  background: #fff;
}
.u-bg--gray {
  background: #F5F5F5;
}
.u-bg--black {
  background: #052A4D;
  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: 1319px) {
  .tab {
    display: block !important;
  }
}

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

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

/*----------------------------
padding margin
------------------------------*/
.u-pt10-5 {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .u-pt10-5 {
    padding-top: 0.5rem;
  }
}

.u-pt20-10 {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .u-pt20-10 {
    padding-top: 1rem;
  }
}

.u-pt30-15 {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-pt30-15 {
    padding-top: 1.5rem;
  }
}

.u-pt40-20 {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-pt40-20 {
    padding-top: 2rem;
  }
}

.u-pt50-25 {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-pt50-25 {
    padding-top: 2.5rem;
  }
}

.u-pt60-30 {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-pt60-30 {
    padding-top: 3rem;
  }
}

.u-mt10-5 {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .u-mt10-5 {
    margin-top: 0.5rem;
  }
}

.u-mt20-10 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mt20-10 {
    margin-top: 1rem;
  }
}

.u-mt30-15 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mt30-15 {
    margin-top: 1.5rem;
  }
}

.u-mt40-20 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mt40-20 {
    margin-top: 2rem;
  }
}

.u-mt50-25 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50-25 {
    margin-top: 2.5rem;
  }
}

.u-mt60-30 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mt60-30 {
    margin-top: 3rem;
  }
}

.u-pb10-5 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .u-pb10-5 {
    padding-bottom: 0.5rem;
  }
}

.u-pb20-10 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .u-pb20-10 {
    padding-bottom: 1rem;
  }
}

.u-pb30-15 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .u-pb30-15 {
    padding-bottom: 1.5rem;
  }
}

.u-pb40-20 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .u-pb40-20 {
    padding-bottom: 2rem;
  }
}

.u-pb50-25 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .u-pb50-25 {
    padding-bottom: 2.5rem;
  }
}

.u-pb60-30 {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .u-pb60-30 {
    padding-bottom: 3rem;
  }
}

.u-mb10-5 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .u-mb10-5 {
    margin-bottom: 0.5rem;
  }
}

.u-mb20-10 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mb20-10 {
    margin-bottom: 1rem;
  }
}

.u-mb30-15 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mb30-15 {
    margin-bottom: 1.5rem;
  }
}

.u-mb40-20 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mb40-20 {
    margin-bottom: 2rem;
  }
}

.u-mb50-25 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mb50-25 {
    margin-bottom: 2.5rem;
  }
}

.u-mb60-30 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mb60-30 {
    margin-bottom: 3rem;
  }
}

.u-m10-5 {
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  .u-m10-5 {
    margin: 0.5rem 0;
  }
}

.u-m20-10 {
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .u-m20-10 {
    margin: 1rem 0;
  }
}

.u-m30-15 {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .u-m30-15 {
    margin: 1.5rem 0;
  }
}

.u-m40-20 {
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .u-m40-20 {
    margin: 2rem 0;
  }
}

.u-m50-25 {
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  .u-m50-25 {
    margin: 2.5rem 0;
  }
}

.u-m60-30 {
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .u-m60-30 {
    margin: 3rem 0;
  }
}

.u-p10-5 {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .u-p10-5 {
    padding: 0.5rem 0;
  }
}

.u-p20-10 {
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .u-p20-10 {
    padding: 1rem 0;
  }
}

.u-p30-15 {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .u-p30-15 {
    padding: 1.5rem 0;
  }
}

.u-p40-20 {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .u-p40-20 {
    padding: 2rem 0;
  }
}

.u-p50-25 {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .u-p50-25 {
    padding: 2.5rem 0;
  }
}

.u-p60-30 {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .u-p60-30 {
    padding: 3rem 0;
  }
}

/*----------------------------
etc
------------------------------*/
.main-view__wrap {
  height: 100vh;
  overflow: hidden;
}
.main-view__wrap div {
  height: 100%;
}
.main-view__wrap img {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .order__box-conts {
  margin-top: 3.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top .order__box-conts {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-area .order__box-conts {
  margin-top: 3.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-area .order__box-conts {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
