@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: 1128px;
  margin: 0 auto;
  padding: 0 6.4rem;
}
@media screen and (max-width: 1127px) {
  .container {
    width: 100%;
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

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

/*----------------------------------------
フォント関係の設定
------------------------------------------*/
/*〇パソコン～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 16rem;
}
@media screen and (max-width: 1127px) {
  .sect-pad {
    padding: 0 0 9.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .sect-pad {
    padding: 0 0 8rem;
  }
}

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

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

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

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  color: #2B333B;
}
a:hover {
  opacity: 0.7;
}
a.u-pointer-events--pc {
  pointer-events: none;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  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: 2.5;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  color: #2B333B;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
    min-width: 32rem;
  }
}

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

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

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

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

[id] {
  scroll-margin-top: 12rem; /* ヘッダー高さ + マージン */
}
@media screen and (max-width: 1024px) {
  [id] {
    scroll-margin-top: 8rem;
  }
}

#tab1, #tab2, #tab3 {
  scroll-margin-top: 20rem; /* ヘッダー高さ + マージン */
}
@media screen and (max-width: 1024px) {
  #tab1, #tab2, #tab3 {
    scroll-margin-top: 22rem;
  }
}

@media screen and (max-width: 1024px) {
  [id^=story-] {
    scroll-margin-top: 23rem;
  }
}

.fade-down {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-down.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
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: #F0F0F0;
  color: #2B333B;
}
@media screen and (max-width: 1024px) {
  .l-footer {
    margin-top: 8.5rem;
    padding: 0;
  }
}
.l-footer a {
  color: #2B333B;
}
.l-footer .footer-content {
  padding-top: 10.3rem;
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-content {
    padding-top: 5rem;
  }
}
.l-footer .footer-container {
  padding-left: 8rem;
  padding-right: 8rem;
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-footer__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.1rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-footer__links {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__links {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.l-footer__link {
  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;
  background: #fff;
  padding: 3.3rem 3rem;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .l-footer__link {
    padding: 1rem 2rem 1rem 1rem;
  }
}
.l-footer__link-img {
  max-width: 18.5rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__link-img {
    max-width: 9rem;
  }
}
.l-footer__link-ttl span {
  margin-top: 1.2rem;
  margin-right: 0.5rem;
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
}
.l-footer__link-ttl-en {
  display: block;
  font-family: "Aboreto", system-ui;
  font-size: 3.4rem;
  color: #0057AA;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .l-footer__link-ttl-en {
    font-size: 2.5rem;
  }
}
.l-footer__inner {
  padding: 10.3rem 0;
  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;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8rem 37.9rem;
  grid-template-columns: 1fr 37.9rem;
  gap: 0 8rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    padding: 5rem 0 1rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-footer__left {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .l-footer__left {
    margin-top: 4rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-footer__message {
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.2222222222;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .l-footer__message {
    font-size: 3rem;
    line-height: 1.3333333333;
    white-space: nowrap;
  }
}
.l-footer__logo {
  max-width: 20.6rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__logo {
    max-width: 16rem;
  }
}
.l-footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .l-footer__wrap {
    margin-top: 3rem;
  }
}
.l-footer__nav-item {
  font-size: 1.5rem;
  line-height: 1;
}
.l-footer__address {
  margin-top: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.l-footer__map {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
}
.l-footer__right {
  padding-left: 3.8rem;
  border-left: 1px solid #B4B4B4;
}
@media screen and (max-width: 1024px) {
  .l-footer__right {
    padding-left: 0;
    border-left: none;
    display: contents;
  }
}
.l-footer__nav-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 1rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-items {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    gap: 2.1rem 7rem;
  }
}
.l-footer__nav-items2 {
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-items2 {
    margin-top: 2.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.l-footer__nav-item2 {
  padding-left: 2.8rem;
  line-height: 2.6;
  position: relative;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-item2 {
    letter-spacing: 0;
  }
}
.l-footer__nav-item2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/common/arrow-blue.svg) no-repeat center center/cover;
}
.l-footer__sns {
  margin-top: 9rem;
}
.l-footer__sns img {
  max-width: 3.9rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__sns {
    margin-top: 3rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-footer__bottom {
  background: #2B333B;
  color: #fff;
  padding: 7rem 0;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom {
    padding: 3rem 0;
  }
}
.l-footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.l-footer__bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.l-footer__bottom-nav-item {
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1;
}
.l-footer__bottom-nav-item a {
  color: #fff;
}
.l-footer__copyright {
  text-align: center;
  line-height: 1;
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1;
  color: #78828C;
}
.l-footer .footer-content--recruit {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 1000px) {
  .l-footer .footer-content--recruit {
    display: none;
  }
}
.l-footer .footer-content--recruit .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.4rem;
  max-width: 112.8rem;
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-content--recruit .container {
    gap: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-content--recruit .footer-logo {
    max-width: 20rem;
  }
}
.l-footer .footer-content--recruit .footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.1rem;
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-content--recruit .footer__nav-wrap {
    gap: 3rem;
  }
}
.l-footer .footer-content--recruit .footer__nav-item {
  line-height: 1.0666666667;
  margin-bottom: 1.6rem;
}
.l-footer .footer-content--recruit .footer__nav-item--sub {
  margin-top: 1.1rem;
  line-height: 1.3846153846;
}
.l-footer .footer-content--recruit .footer__nav-item--sub a {
  color: #2B333B;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 500;
  letter-spacing: 0;
}
.l-footer .footer-content--recruit .footer__nav-item--sub a:hover {
  color: #78828C;
}
.l-footer .footer-content--recruit .footer__nav-item a {
  color: #0057AA;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0666666667;
}

/*----------------------------
header.php
------------------------------*/
.l-header {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  width: 100%;
  height: 9rem;
  z-index: 1000;
  /*----------------------------
  PCヘッダー
  ------------------------------*/
  /*----------------------------
  ロゴ設定
  ------------------------------*/
  /*----------------------------
  ナビラップ
  ------------------------------*/
  /*----------------------------
  ナビリスト
  ------------------------------*/
  /*----------------------------
  〇ナビ設定
  ------------------------------*/
  /*----------------------------
  ■ハンバーガーメニュー■
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー表示設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー　線
  ------------------------------*/
  /*----------------------------
  MENU/CLOSE文字の設定
  ------------------------------*/
  /*----------------------------
  ■ ctaボタン
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュ左に配置
  使い方：l-header__drawerに、leftクラスを付与すると、左側のメニューに変更可能
  ------------------------------*/
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 8.5rem;
  }
}
.l-header__wrap {
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5rem 0 5rem;
}
@media screen and (max-width: 1000px) {
  .l-header__wrap {
    height: 8.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 2rem;
  }
}
.l-header__logo-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27.8rem;
          flex: 0 0 27.8rem;
}
@media screen and (max-width: 1279px) {
  .l-header__logo-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17.6rem;
            flex: 0 0 17.6rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-header__logo-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
            flex: 0 0 10rem;
  }
}
.l-header__logo-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-wrap {
    display: block;
    background: #fff;
    color: #2B333B;
    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: 8.5rem;
    right: 0;
    z-index: 1000;
  }
  .l-header__nav-wrap.open {
    -webkit-transform: translate(0);
            transform: translate(0);
    height: 100vh;
    padding-bottom: 8rem;
    padding-top: 0;
  }
  .l-header__nav-wrap.open .l-header__nav-item {
    display: block;
  }
}
.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-lists {
    display: block;
  }
}
.l-header__nav-lists.sp-only {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-lists.sp-only {
    display: block;
  }
}
.l-header__nav-lists.pc-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-lists.pc-only {
    display: none;
  }
}
.l-header__nav-item {
  font-weight: 500;
  letter-spacing: 0;
  padding: 0 1.6rem;
  font-size: 1.5rem;
  position: relative;
}
.l-header__nav-item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
  left: 0;
  width: 1.15px;
  height: 2.1rem;
  background: #2B333B;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-item::after {
    display: none;
  }
}
.l-header__nav-item:first-child::after {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-item {
    display: none;
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 2em;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
.l-header__nav-item:hover a {
  color: #0057AA;
  opacity: 1;
}
.l-header__nav-item.is-active a {
  color: #0057AA;
  opacity: 1;
}
.l-header__nav-lists.sp-only .l-header__nav-item {
  padding: 2rem 2rem 2rem 3rem;
  border-bottom: 1px solid #0057AA;
}
.l-header__nav-lists.sp-only .l-header__nav-item:first-child {
  border-top: 1px solid #0057AA;
}
.l-header__nav-lists.sp-only .l-header__nav-item a {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.8;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0057AA;
}
.l-header__nav-lists.sp-only .l-header__dropdown {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.l-header__nav-lists.sp-only .l-header__dropdown li {
  line-height: 1;
}
.l-header__nav-lists.sp-only .l-header__dropdown li.empty {
  pointer-events: none;
  visibility: hidden;
}
.l-header__nav-lists.sp-only .l-header__dropdown a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #2B333B;
  padding-left: 1.6rem;
  position: relative;
}
.l-header__nav-lists.sp-only .l-header__dropdown a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 0.8rem;
  background: url("../images/common/arrow.svg") no-repeat center center/contain;
}
.l-header__nav-lists.sp-only .l-header__dropdown.environment li:last-child {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.l-header__nav-lists.sp-only .l-header__dropdown.work li:nth-child(5), .l-header__nav-lists.sp-only .l-header__dropdown.work li:nth-child(6) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.l-header__nav-lists.sp-only .l-header__movie {
  padding: 2rem 2rem 3rem;
}
.l-header__nav-lists.sp-only .l-header__movie .section-title2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  color: #0057AA;
}
.l-header__copyright {
  margin-top: 4rem;
  background: #fff;
  height: 5rem;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
  color: #78828C;
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__drawer {
    display: block;
  }
}
.l-header__drawer-bar {
  background-color: #fff;
  width: 15px;
  height: 2px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}
.l-header__drawer-bar.bar--1 {
  top: 25%;
}
.l-header__drawer-bar.bar--2 {
  top: 50%;
}
.l-header__drawer-bar.bar--3 {
  top: 75%;
}
.l-header__drawer-menu-txt {
  bottom: 3px;
  font-size: 10px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  left: 0;
  text-align: center;
}
.l-header__drawer-menu-txt.u-disable--hidetxt {
  display: none;
}
.l-header__drawer-btn {
  width: 50px;
  height: 30px;
  background: #0057AA;
  border-radius: 20px;
  top: 30px;
  right: 20px;
  z-index: 1001;
  position: fixed;
  padding: 0;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  /*----------------------------
  ■ボタンアクティブ時の制御
  ------------------------------*/
}
.l-header__drawer-btn.active {
  /*----------------------------
  ■メニュタップ時アニメーション　×に変更
  ------------------------------*/
}
.l-header__drawer-btn.active .l-header__drawer-bar {
  width: 20px;
  left: 8px;
  background: #fff;
}
.l-header__drawer-btn.active .u-active--hidetxt {
  display: none;
}
.l-header__drawer-btn.active .u-disable--hidetxt {
  display: block;
  letter-spacing: 0.08em;
}
.l-header__drawer-btn.active .bar--1 {
  -webkit-transform: rotate(0.7853981634rad) translate(-50%, -50%);
          transform: rotate(0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-btn.active .bar--2 {
  opacity: 0;
}
.l-header__drawer-btn.active .bar--3 {
  -webkit-transform: rotate(-0.7853981634rad) translate(-50%, -50%);
          transform: rotate(-0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  display: none;
  top: 6.4rem;
  left: 0;
}
.l-header__btn-wrap {
  margin-left: 1vw;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .l-header__btn-wrap {
    margin-left: 2.5vw;
  }
}
.l-header__btn-wrap:hover .l-header__btn-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__btn-wrap:hover .l-header__btn {
  border-radius: 20px 20px 0 0;
  opacity: 1;
}
.l-header__btn-wrap.sp-only {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__btn-wrap.sp-only {
    display: block;
    position: fixed;
    top: 30px;
    right: 80px;
  }
  .l-header__btn-wrap.sp-only .l-header__btn {
    padding: 0.8rem 0.6rem 0.8rem 1.4rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.l-header__btn-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0099E7;
  color: #fff;
  border-radius: 1rem;
  min-width: 14.6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.8rem 0;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 1000px) {
  .l-header__btn-dropdown {
    min-width: 12.6rem;
  }
}
.l-header__btn-dropdown li {
  list-style: none;
}
.l-header__btn-dropdown-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  line-height: 1.0666666667;
  letter-spacing: 0;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .l-header__btn-dropdown-link {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}
.l-header__btn-dropdown-link::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 1rem;
  -webkit-mask-image: url("../images/common/arrow.svg");
          mask-image: url("../images/common/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #fff;
  right: 5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header__btn-dropdown-link::after {
    right: 4rem;
  }
}
.l-header__btn-dropdown-link:hover {
  background: #0099E7;
}
.l-header__btn {
  background: #0099E7;
  border-radius: 3.2rem;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 1.2rem 2rem 1.2rem 2rem;
  cursor: pointer;
}
.l-header__btn-txt {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.0666666667;
  letter-spacing: 0;
  position: relative;
  padding-right: 3.1rem;
}
.l-header__btn-txt::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.6rem;
  background: url("../images/common/arrow-down.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header__btn-txt::before {
    right: 0.6rem;
    width: 1rem;
    height: 0.6rem;
  }
}
.l-header .l-header__drawer.left .l-header__nav-wrap {
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  right: auto;
  left: 0;
}
.l-header .l-header__drawer.left .l-header__nav-wrap.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.l-header .l-header__drawer.left .l-header__drawer-btn {
  right: auto;
  left: 32px;
}

body.page-recruit .l-header {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.home .l-header {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

/*----------------------------
Object
------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  z-index: 100;
  width: 10rem;
  right: 2rem;
  bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .back-to-top-wrapper {
    width: 6rem;
  }
}

/*----------------------------
■■ ボタンコンポーネント　■■
使い方
<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-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #0057AA;
  background: #fff;
  color: #0057AA;
  border-radius: 35px;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  padding: 2.6rem 9rem 2.7rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #0057AA;
  line-height: 1;
  position: relative;
  max-width: 35rem;
  min-width: 35rem;
  /*----------------------------
    ■ ボタンサイズ
    使い方：クラスを変えると、ボタンのサイズが変わる
    ------------------------------*/
  /*
      ・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
      ------------------------------*/
  /*
  ・ボタンアイコン左
  ------------------------------*/
  /*
        ・ボタンアイコン右
        ------------------------------*/
}
@media screen and (max-width: 1024px) {
  .c-btn {
    width: 100%;
    padding: 1.8rem 2rem;
    border-radius: 25px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: unset;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 1.4rem;
  height: 0.6rem;
  background: #0057AA;
  -webkit-mask-image: url("../images/common/btn-arrow.svg");
          mask-image: url("../images/common/btn-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .c-btn::after {
    right: 2rem;
  }
}
.c-btn:focus, .c-btn:hover {
  opacity: 1;
  background: #0057AA;
  color: #fff;
}
.c-btn:focus::after, .c-btn:hover::after {
  background: #fff;
}
.c-btn__s-size {
  width: 20rem;
  height: 5rem;
}
@media screen and (max-width: 1024px) {
  .c-btn__s-size {
    width: 20rem;
    height: 5rem;
  }
}
.c-btn__m-size {
  width: 32rem;
  height: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .c-btn__m-size {
    width: 32rem;
    height: 6.4rem;
  }
}
.c-btn__l-size {
  width: 30rem;
  height: 8rem;
}
@media screen and (max-width: 1024px) {
  .c-btn__l-size {
    width: 30rem;
    height: 8rem;
  }
}
.c-btn.c-btn--2 {
  background: #000;
  color: #fff;
}
.c-btn.c-btn--2:hover {
  background: #0057AA;
  color: #fff;
}
.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: 1024px) {
  .c-btn__left-pc {
    margin: 0;
  }
}
.c-btn__center-pc {
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .c-btn__center-pc {
    margin: 0;
  }
}
.c-btn__right-pc {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .c-btn__right-pc {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-btn__left-sp {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-btn__center-sp {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .c-btn__right-sp {
    margin: 0 0 0 auto;
  }
}
.c-btn__margin--x {
  margin: 0 4rem;
}
@media screen and (max-width: 1024px) {
  .c-btn__margin--x {
    margin: 0;
  }
}
.c-btn__txt {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #0057AA;
}
.c-btn__left-icon {
  padding-left: 2rem;
  position: relative;
}
.c-btn__left-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 15px;
  background: url("../images/common/arrow.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__left-icon::before {
  background: url("../images/common/arrow_hover.svg") no-repeat center center/contain;
}
.c-btn__right-icon {
  padding-right: 3.1rem;
  position: relative;
}
.c-btn__right-icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 6px;
  background: url("../images/common/.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__right-icon::before {
  background: url("../images/common/.svg") no-repeat center center/contain;
}

.c-btn2 {
  position: relative;
  display: inline-block;
  padding-right: 7.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #2B333B;
  /* 横ライン */
  /* 矢印の先端 */
  /* ▼ ホバー時にラインが伸びる */
  /* ▼ ホバー時に矢印が右へスライド */
}
.c-btn2::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6.1rem;
  height: 1px;
  background: #2B333B;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid #2B333B;
  -webkit-transform: translateY(-25%) rotate(-65deg);
          transform: translateY(-25%) rotate(-65deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn2:hover::before {
  width: 11.9rem;
  right: -5.8rem;
}
.c-btn2:hover::after {
  right: -5.8rem;
}
.c-btn2.c-btn2--white {
  color: #FFF;
}
.c-btn2.c-btn2--white::before {
  background: #fff;
}
.c-btn2.c-btn2--white::after {
  border-right: 1px solid #fff;
}

.c-btn-down {
  position: relative;
  display: inline-block;
  padding-right: 7.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  border-radius: 30px;
  padding: 2.3rem 5.8rem 2.4rem 5.8rem;
  border: 1px solid #0057AA;
  color: #0057AA;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .c-btn-down {
    padding: 1.2rem 3.8rem;
    border-radius: 25px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn-down::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 1rem;
  height: 0.6rem;
  color: #fff;
  background: #0057AA;
  -webkit-mask-image: url("../images/common/arrow-down.svg");
          mask-image: url("../images/common/arrow-down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .c-btn-down::after {
    right: 1.8rem;
  }
}
.c-btn-down.open {
  color: #fff;
  background: #0057AA;
  opacity: 1;
}
.c-btn-down.open::after {
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.pager .wp-pagenavi {
  text-align: center;
  margin: 5rem 0;
}
.pager .wp-pagenavi span.current {
  width: 5rem;
  height: 5rem;
  margin: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2c2c2c;
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .pager .wp-pagenavi span.current {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi span.current:hover {
  background: #2c2c2c;
  color: #fff;
}
.pager .wp-pagenavi .page {
  width: 5rem;
  height: 5rem;
  margin: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2c2c2c;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .pager .wp-pagenavi .page {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi .page:hover {
  background: #2c2c2c;
  color: #fff;
  opacity: 1;
}
.pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
  width: 5rem;
  height: 5rem;
  margin: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2c2c2c;
  font-weight: bold;
  border: 1px solid #2c2c2c;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
    width: 3rem;
    height: 3rem;
  }
}
.pager .wp-pagenavi .nextpostslink:hover, .pager .wp-pagenavi .previouspostslink:hover {
  background: #2c2c2c;
  color: #fff;
  opacity: 1;
}
.pager .wp-pagenavi .pages {
  display: none;
}
.pager .wp-pagenavi .first, .pager .wp-pagenavi .last {
  border: none;
}
.pager .wp-pagenavi .first:hover, .pager .wp-pagenavi .last:hover {
  opacity: 0.7;
}
.pager .wp-pagenavi .extend {
  border: none;
}
.pager .wp-pagenavi .extend:hover {
  opacity: 0.7;
}

.faq__lists {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .faq__lists {
    margin-top: 3.2rem;
  }
}
.faq__list-item {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1.7rem 3.2rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .faq__list-item {
    padding: 1rem;
    margin-bottom: 1.6rem;
  }
}
.faq__question {
  padding-left: 7.3%;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .faq__question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .faq__question {
    padding: 0 2.5rem 0 3.5rem;
  }
}
.faq__question::before {
  content: "";
  background: url("../images/icon-q.svg") no-repeat center center/contain;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
@media screen and (max-width: 1024px) {
  .faq__question::before {
    top: 0.9rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.faq__question::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: url("../images/faq_open_icon.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .faq__question::after {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.faq__question.active::after {
  content: "";
  background: url("../images/faq_close_icon.svg") no-repeat center center/contain;
}
.faq__answer {
  padding: 2rem 1rem 2rem 7.3%;
  display: none;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .faq__answer {
    padding: 1rem 2.5rem 1rem 3.5rem;
  }
}
.faq__answer::before {
  content: "";
  background: url("../images/icon-a.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  width: 4.6rem;
  height: 4.6rem;
  top: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .faq__answer::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 1.1rem;
  }
}
.faq__answer a {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar__ttl {
  color: #0057AA;
  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: 1024px) {
  .sidebar__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__ttl {
    margin-bottom: 1.5rem;
  }
}
.sidebar__cat-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .sidebar__cat-txt {
    font-size: 1.4rem;
  }
}
.sidebar__archive-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .archive__conts-wrapper {
    width: 100%;
  }
}

/*----------------------------
■■ 見出しコンポネント　■■
------------------------------*/
.c-heading {
  font-size: 6rem;
  font-family: "Aboreto";
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #0057aa;
}
.c-heading--white {
  color: #ffffff;
}

.p-single .section-title2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-single .section-title2 {
    font-size: 2rem;
  }
}
.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: 1024px) {
  .p-single__conts-wrapper h1 {
    font-size: 2rem;
  }
}
.p-single__conts-wrapper h2 {
  margin: 3rem 0 2rem;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .p-single__conts-wrapper h2 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper h3 {
  padding-left: 3rem;
  border-left: 3px solid #1E202B;
  margin: 3rem 0 2rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .p-single__conts-wrapper h3 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper h4 {
  padding: 0.5rem 2rem;
  border-left: 3px solid #1E202B;
  margin: 3rem 0 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: #2B333B;
  background: #f4f4f4;
  margin: 3rem 0;
}
.p-single__conts-wrapper blockquote::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  background: url("../images/quote-left-solid.svg") no-repeat center center/contain;
}
.p-single__conts-wrapper blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.7;
}
.p-single__conts-wrapper blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.p-single__ttl-wrap {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .p-single__ttl-wrap {
    padding-bottom: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.p-single__date {
  line-height: 1;
}
.p-single__story {
  padding-top: 2.8rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-single__story {
    padding-top: 3rem;
  }
}
.p-single__story .section-title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single__story .section-title {
    font-size: 2rem;
    line-height: 1;
  }
}
.p-single__story-container {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20rem 3.8rem 1fr;
  grid-template-columns: 20rem 1fr;
  gap: 3.8rem;
}
@media screen and (max-width: 1024px) {
  .p-single__story-container {
    margin-top: 0;
    padding-top: 0.8rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.p-single__story-sidebar {
  position: sticky;
  top: 10rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .p-single__story-sidebar {
    top: 8.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    z-index: 1;
  }
}
@media screen and (max-width: 1024px) {
  .p-single__story-sidebar-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.8rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.8rem;
  }
}
.p-single__story-sidebar-item {
  padding: 1.5rem 0;
  border-top: 1px solid #B4B4B4;
}
@media screen and (max-width: 1024px) {
  .p-single__story-sidebar-item {
    padding: 1rem 0;
  }
}
.p-single__story-sidebar-item a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  color: #78828C;
}
@media screen and (max-width: 1024px) {
  .p-single__story-sidebar-item a {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
.p-single__story-sidebar-item a span {
  display: block;
}
.p-single__story-sidebar-item:last-child {
  border-bottom: 1px solid #B4B4B4;
}
@media screen and (max-width: 1024px) {
  .p-single__story-sidebar-item:nth-child(5) {
    border-bottom: 1px solid #B4B4B4;
  }
}
.p-single__story-sidebar-item.is-active a {
  color: #0057AA;
}
.p-single__story-item {
  padding: 5rem 0;
  border-bottom: 1px solid #2B333B;
}
.p-single__story-item:last-child {
  border-bottom: none;
}
.p-single__story-top {
  gap: 4.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22.2rem 4.5rem 1fr;
  grid-template-columns: 22.2rem 1fr;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.p-single__story-top-img {
  max-width: 22.2rem;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-img {
    max-width: 18rem;
    margin-inline: auto;
  }
}
.p-single__story-top-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 222/285;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-img img {
    aspect-ratio: 180/220;
  }
}
.p-single__story-top-body {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-single__story-top-body-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-body-ttl {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}
.p-single__story-top-body-position {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-body-position {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-single__story-top-body-txt {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-body-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-single__story-top-body-btn {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .p-single__story-top-body-btn {
    margin-top: 2rem;
    text-align: center;
  }
}
.p-single__story-top-body-btn .c-btn {
  background: #0057AA;
  color: #fff;
  padding: 2.2rem 6.3rem 2.2rem 6.3rem;
}
.p-single__story-faq {
  margin-top: 4.1rem;
}
@media screen and (max-width: 1024px) {
  .p-single__story-faq {
    margin-top: 4.3rem;
  }
}
.p-single__story-faq-contents:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-single__story-faq-contents:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.p-single__story-faq-ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  color: #0057AA;
}
.p-single__story-faq-txt {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-single__story-faq-txt {
    margin-top: 0.7rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-single__story-faq-table {
  margin-top: 1.2rem;
}
.p-single__story-faq-table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6.1rem 2.4rem 1fr;
  grid-template-columns: 6.1rem 1fr;
  gap: 2.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid #B4B4B4;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8666666667;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .p-single__story-faq-table dl {
    -ms-grid-columns: 4rem 1rem 1fr;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
  }
}
.p-single__story-faq-table dl:first-child {
  border-top: 1px solid #B4B4B4;
}
.p-single__story-faq-table dt {
  font-weight: 500;
}
.p-single__story-faq-table dd {
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .p-single__story-faq-table dd {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-single__story-faq-table dd span {
  font-weight: 500;
  color: #0057AA;
}
.p-single__story-other {
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other {
    margin-top: 2rem;
  }
}
.p-single__story-other-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
  padding: 5rem 0;
  border-bottom: 1px solid #2B333B;
}
.p-single__story-other-item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.3rem;
    padding: 3rem 0;
  }
}
.p-single__story-other-item-img {
  max-width: 22.2rem;
  min-width: 22.2rem;
  width: 28.9439374185%;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-img {
    max-width: 18rem;
    min-width: 18rem;
    width: 100%;
    margin-inline: auto;
  }
}
.p-single__story-other-item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 222/285;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-img img {
    aspect-ratio: 180/220;
  }
}
.p-single__story-other-item-body {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-single__story-other-item-body-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.p-single__story-other-item-body-wrap-position {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-body-wrap-position {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-single__story-other-item-body-wrap-name {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-body-wrap-name {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}
.p-single__story-other-item-body-txt {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-body-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-single__story-other-item-body-btn {
  margin-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .p-single__story-other-item-body-btn {
    text-align: center;
  }
}
.p-single__story-other-item-body-btn .c-btn {
  padding: 2.2rem 6.3rem 2.2rem 6.3rem;
}
.p-single__story-faq {
  display: none;
}
.p-single__story-faq.is-hidden {
  display: none;
}
.p-single .movie {
  padding-top: 5rem;
}
.p-single .movie .section-title2 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-single .movie .section-title2 {
    font-size: 2rem;
  }
}

.privacy__conts-wrap {
  padding-top: 7.1rem;
}
@media screen and (max-width: 1024px) {
  .privacy__conts-wrap {
    padding-top: 5.1rem;
  }
}
.privacy__head-txt {
  padding-bottom: 5.5rem;
  border-bottom: 1px solid #4A4A4A;
}
@media screen and (max-width: 1024px) {
  .privacy__head-txt {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .privacy__num {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .privacy-contact__conts-wrap {
    padding: 0 1rem 1rem 1rem;
    height: 15rem;
  }
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .privacy-contact__num {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .privacy-contact__num {
    padding: 1em 0 0.5em;
  }
}

.sub-view {
  padding-bottom: 0;
}
.sub-view__container {
  height: auto;
  width: 84.7222222222%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .sub-view__container {
    width: 100%;
  }
}
.sub-view__contents {
  width: 100%;
  height: auto;
  padding: 8.9rem 5rem;
  background: url("../images/kv/sub-kv.png") no-repeat center center/cover;
}
@media screen and (max-width: 1024px) {
  .sub-view__contents {
    padding: 3.2rem 2rem 6rem;
    background: url("../images/kv/sub-kv-sp.png") no-repeat center center/cover;
  }
}
.sub-view__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .sub-view__ttl {
    font-size: 2.6rem;
    line-height: 1.3846153846;
    letter-spacing: 0.05em;
  }
}
.sub-view__txt {
  margin-top: 2.7rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .sub-view__txt {
    margin-top: 1rem;
  }
}

/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-top .top-read {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.67;
  text-align: center;
  color: #2b333b;
}
.p-top .kv__sect {
  padding-bottom: 25.3rem;
}
@media screen and (max-width: 1279px) {
  .p-top .kv__sect {
    padding-bottom: 17.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top .kv__sect {
    padding-bottom: 12.6rem;
  }
}
.p-top .kv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 9.6rem);
  min-height: 56rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .p-top .kv__wrap {
    height: 100%;
    min-height: 48rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top .kv__wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 3.2rem;
    height: auto;
    min-height: initial;
    max-width: 48rem;
    margin: 0 auto;
  }
}
.p-top .kv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.875%;
          flex: 0 1 46.875%;
}
.p-top .kv__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.p-top .kv__img-wrap.img-left {
  max-width: 32rem;
  margin: 0 auto;
}
.p-top .kv__txt {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.66;
  font-size: 4.8rem;
}
@media screen and (max-width: 1024px) {
  .p-top .kv__txt {
    text-align: center;
    font-size: 2.4rem;
  }
}
.p-top .card__ttl-wrap {
  padding-bottom: 3rem;
  position: relative;
}
.p-top .card__ttl-wrap::before {
  content: "";
  position: absolute;
  width: 38.3rem;
  height: 1.4rem;
  background: url("../images/top/fukidashi.svg") no-repeat center center/contain;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top .about {
  padding-top: 5rem;
  padding-bottom: 10.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0057aa), to(#0099e7));
  background: linear-gradient(180deg, #0057aa 0%, #0099e7 100%);
}
.p-top .values {
  padding-top: 10rem;
}
.p-top .case {
  padding-top: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9ecff), color-stop(31%, #e4f2ff), to(#ffffff));
  background: linear-gradient(180deg, #d9ecff 0%, #e4f2ff 31%, #ffffff 100%);
}
.p-top .recruit {
  padding: 7.5rem 0;
  background: url("../images/top/recruit_bg.jpg") no-repeat center center/cover;
  position: relative;
}
.p-top .recruit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1a3652;
  opacity: 0.8;
}
.p-top .recruit .container {
  position: relative;
  z-index: 1;
}
.p-top .recruit .top-read {
  color: #ffffff;
}
.p-top .column {
  padding-top: 10rem;
}
.p-top .column__items {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9.9rem 1fr 9.9rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 9.9rem;
}
.p-top .column__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.p-top .column__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 301/201;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .column__item-body-ttl {
  font-size: 1.5rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 1.67;
  text-align: left;
  color: #000000;
}
.p-top .column__item-body-txt {
  font-size: 13px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.54;
  text-align: left;
  color: #2b333b;
}
.p-top .faq {
  padding-top: 10rem;
}

/*----------------------------
■■　概要ページ page-about.php　■■
------------------------------*/
.p-about .section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.125;
}
@media screen and (max-width: 1024px) {
  .p-about .section-title {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.p-about .section-title--center {
  text-align: center;
}
.p-about .section-title2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-about .section-title2 {
    font-size: 2rem;
  }
}
.p-about .sec-txt {
  margin-top: 2.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-about .sec-txt {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-about .sec-btn {
  margin-top: 3.2rem;
}
.p-about__message {
  padding-top: 9.8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1024px) {
  .p-about__message {
    padding-top: 6.2rem;
    padding-bottom: 4rem;
  }
}
.p-about__message .section-title2 {
  color: #0057AA;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .p-about__message .section-title2 {
    font-size: 1.5rem;
    line-height: 1.0666666667;
  }
}
.p-about__message .p-about__message-inner {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-inner {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.p-about__message .p-about__message-body {
  margin-top: 3.2rem;
  width: 48.4%;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-body {
    margin-top: 0;
    width: 100%;
    display: contents;
  }
}
.p-about__message .p-about__message-body-txt {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-body-txt {
    margin-top: 1rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-about__message .p-about__message-wrap {
  margin-top: 5rem;
  margin-left: 9.8rem;
  margin-right: -40%;
  padding-right: 10%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-wrap {
    margin-top: 1rem;
    margin-left: 0;
    margin-right: unset;
  }
}
.p-about__message .p-about__message-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  padding-right: 5rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-about__message .p-about__message-name span {
  margin-left: 1.5rem;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
.p-about__message .p-about__message-name::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/common/open.svg") no-repeat center center/contain;
}
.p-about__message .p-about__message-name:hover {
  opacity: 0.8;
}
.p-about__message .p-about__message-txt {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-txt {
    margin-top: 0.5rem;
  }
}
.p-about__message .p-about__message-img {
  width: 37.1%;
}
.p-about__message .p-about__message-img img {
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-img {
    width: 100%;
    display: contents;
  }
  .p-about__message .p-about__message-img img {
    margin-top: 4rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 335/437;
  }
}
.p-about__message .p-about__message-img-ttl {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3888888889;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-img-ttl {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    letter-spacing: 0.05em;
  }
}
.p-about__message .p-about__message-img-ttl span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-img-ttl span {
    display: none;
  }
}
.p-about__message .p-about__message-body-btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .p-about__message .p-about__message-body-btn {
    text-align: center;
    margin-top: 3rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-about .modal {
  display: none;
  position: absolute;
  top: -15%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .p-about .modal {
    left: 50%;
  }
}
.p-about .modal.is-active {
  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;
}
@-webkit-keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-about .modal__content {
  position: relative;
  width: 100%;
  max-width: 57.3rem;
  background: rgba(0, 87, 170, 0.9);
  color: #fff;
  padding: 3rem 3.1rem 2.3rem;
  overflow-y: auto;
  z-index: 10000;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .p-about .modal__content {
    width: 95%;
    padding: 2rem;
    max-height: 85vh;
  }
}
.p-about .modal.is-active .modal__content {
  opacity: 1;
  -webkit-animation: modalFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modalFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.p-about .modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .p-about .modal__header {
    margin-bottom: 1rem;
    gap: 2rem;
  }
}
.p-about .modal__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.p-about .modal__name span {
  margin-left: 1.5rem;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
.p-about .modal__close {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-about .modal__close {
    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;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-about .modal__close-icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-about .modal__close-icon {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/common/close.svg") no-repeat center center/contain;
    position: relative;
  }
}
.p-about .modal__text {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.1538461538;
}
.p-about .modal__text p {
  margin-bottom: 2rem;
}
.p-about .modal__text p:last-child {
  margin-bottom: 0;
}
.p-about__concept {
  padding-top: 7rem;
  padding-bottom: 21.2rem;
  background: linear-gradient(51.71deg, #E1F0FF 10.97%, #FAFDFF 87.4%);
}
@media screen and (max-width: 1024px) {
  .p-about__concept {
    padding-top: 4rem;
    padding-bottom: 8.6rem;
  }
}
.p-about__concept .p-about__concept-wrap {
  text-align: center;
}
.p-about__concept .p-about__concept-wrap:nth-child(n+2) {
  padding-top: 6rem;
}
@media screen and (max-width: 1024px) {
  .p-about__concept .p-about__concept-wrap:nth-child(n+2) {
    padding-top: 4rem;
  }
}
.p-about__concept .p-about__concept-en {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-about__concept .p-about__concept-en {
    font-size: 1.5rem;
    line-height: 1.0666666667;
  }
}
.p-about__concept .p-about__concept-read {
  margin-top: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .p-about__concept .p-about__concept-read {
    margin-top: 2rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
.p-about__concept .p-about__concept-read2 {
  margin-top: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .p-about__concept .p-about__concept-read2 {
    margin-top: 2rem;
  }
}
.p-about__concept .p-about__concept-txt {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-about__concept .p-about__concept-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
  }
}
.p-about .movie {
  margin-top: -24.5rem;
  padding-bottom: 10rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-about .movie {
    margin-top: -10.7rem;
  }
}
.p-about .movie::before {
  display: none;
}
.p-about .movie .section-title2 {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-about .movie .section-title2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
.p-about .movie .movie__video {
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .p-about .movie .movie__video {
    margin-top: 2rem;
  }
}
.p-about__people {
  position: relative;
  padding-bottom: 0;
  margin-top: -10rem;
  margin-left: -1px;
  /* --- 5枚目・6枚目のステージ --- */
  /* テキストは後からふわっと */
  /* 固定されている間、慣性スクロールの影響を抑えたい場合 */
}
@media screen and (max-width: 1200px) {
  .p-about__people {
    margin-top: -15rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-about__people {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 700px) {
  .p-about__people {
    margin-top: -5rem;
  }
}
.p-about__people::before {
  content: "";
  position: absolute;
  top: -1%;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg4.png") no-repeat top center/cover;
  z-index: -1;
  aspect-ratio: 1440/708;
}
@media screen and (max-width: 1200px) {
  .p-about__people::before {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-about__people::before {
    display: none;
  }
}
.p-about__people .wrapper {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.p-about__people figure {
  padding: 0;
}
.p-about__people .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%; /* JSで上書きされます */
  height: 100%; /* JSで上書きされます */
  z-index: 5;
  overflow: hidden;
  padding-top: 8rem;
  min-width: 60rem;
  min-height: 45rem;
}
@media screen and (max-width: 1024px) {
  .p-about__people .container {
    padding-top: 4rem;
    will-change: transform, clip-path;
    min-width: unset;
    min-height: unset;
  }
}
.p-about__people .section-title {
  color: #fff;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: absolute;
  top: 0; /* ← 画像からの距離 */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-about__people .section-title {
    font-size: 2rem;
    color: #0057AA;
  }
}
.p-about__people .mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  aspect-ratio: 1440/700;
}
@media screen and (max-width: 1024px) {
  .p-about__people .mask {
    aspect-ratio: 2/3;
    aspect-ratio: 375/650;
    width: 100%;
    height: 100%;
  }
}
.p-about__people .img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .p-about__people .img {
    aspect-ratio: 2/3;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform, clip-path;
  }
}
.p-about__people .img-1 {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-about__people .img-2 {
  opacity: 0;
  z-index: 2;
}
.p-about__people .img-3 {
  opacity: 0;
  z-index: 3;
}
.p-about__people .img-4 {
  height: 100vh;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7); /* 小さくして奥から出る感じに */
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .p-about__people .img-4 {
    height: 100%;
  }
}
.p-about__people .fixed-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 10; /* 4枚目より手前に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 初期状態はJSで画面外(下に配置)します */
}
.p-about__people .stage-text {
  left: 0;
  padding: 0 18%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-about__people .stage-text {
    left: 0;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.p-about__people .js-stage-4 .stage-text__right {
  margin-top: 20rem;
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-4 .stage-text__right {
    margin-top: 5rem;
  }
}
.p-about__people .js-stage-5 {
  z-index: 10; /* 5枚目よりさらに手前に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100dvh;
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-5 {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-5 .stage-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 1rem 5% 3rem;
    height: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-about__people .js-stage-5 .stage-text__left {
  width: 100%;
  right: 20%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-about__people .js-stage-5 .stage-text__left span {
  margin-right: 3rem;
  margin-bottom: 1rem;
  -webkit-writing-mode: rl;
      -ms-writing-mode: rl;
          writing-mode: rl;
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-5 .stage-text__left span {
    margin-right: 1.6rem;
  }
}
.p-about__people .js-stage-5 .stage-text__right {
  margin-top: 8.5rem;
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-5 .stage-text__right {
    margin-top: 0;
  }
}
.p-about__people .js-stage-6 {
  z-index: 11; /* 5枚目よりさらに手前に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100dvh;
}
.p-about__people .js-stage-6 .stage-text {
  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;
  gap: 6.3rem;
  bottom: 5%;
  padding: 0 15%;
}
@media screen and (max-width: 1024px) {
  .p-about__people .js-stage-6 .stage-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 5% 3rem;
    height: 80%;
  }
}
.p-about__people .stage-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform, clip-path;
}
.p-about__people .stage-text {
  position: relative;
  z-index: 12;
  color: #fff;
}
.p-about__people .js-mask-text {
  position: relative;
  display: inline-block;
  overflow: hidden; /* 重要 */
}
.p-about__people .stage-text__left,
.p-about__people .stage-text__right {
  display: block;
  clip-path: inset(100% 0 0 0); /* 下から全隠し */
}
.p-about__people .section {
  height: 100svh;
  position: relative;
  color: #fff;
}
.p-about__people .section__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: inherit;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 10vw;
}
.p-about__people .fourth-text {
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
.p-about__people .stage-text__left {
  font-size: 9.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__people .stage-text__left span {
  display: inline-block;
  margin-right: 1.7rem;
  font-size: 2.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-about__people .stage-text__left {
    font-size: 6.4rem;
  }
}
.p-about__people .stage-text__right-read {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .p-about__people .stage-text__right-read {
    font-size: 2.8rem;
    line-height: 1.3571428571;
  }
}
.p-about__people .stage-text__right-txt {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-about__people .stage-text__right-txt {
    margin-top: 0.2rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
.p-about__media {
  padding: 10rem 0;
}
@media screen and (max-width: 1024px) {
  .p-about__media {
    padding: 5.6rem 0 5rem;
  }
}
.p-about__media .section-title2 {
  color: #2B333B;
  text-align: center;
}
.p-about__media .p-about__media-items {
  margin-top: 4.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.3rem 5rem;
}
@media screen and (max-width: 1024px) {
  .p-about__media .p-about__media-items {
    margin-top: 3rem;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about__media .p-about__media-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-about__media .p-about__media-item-ttl {
  margin-top: 1.3rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.p-about__media .p-about__media-item-txt {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7333333333;
}
@media screen and (max-width: 1024px) {
  .p-about__media .p-about__media-item-img img {
    aspect-ratio: 335/169;
  }
}
.p-about .story .story__items {
  margin-top: 3.1rem;
}
@media screen and (max-width: 1024px) {
  .p-about .story .story__items {
    margin-top: 3.5rem;
  }
}

.movie {
  padding: 10.2rem 0 12.2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .movie {
    padding: 5rem 0;
  }
}
.movie::before {
  content: "";
  position: absolute;
  top: 26.4rem;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg3.png") no-repeat bottom center/cover;
  z-index: -1;
  aspect-ratio: 1440/886;
}
@media screen and (max-width: 1024px) {
  .movie::before {
    display: none;
  }
}
.movie__video {
  margin-top: 3.5rem;
}
@media screen and (max-width: 1024px) {
  .movie__video {
    margin-top: 2.4rem;
  }
}
.movie__video iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000/564;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .movie__video iframe {
    aspect-ratio: 336/190;
  }
}

.entry {
  position: relative;
  padding-bottom: 0;
  background: #fff;
}
.entry .container {
  max-width: 117rem;
  padding: 0 4.3rem;
}
@media screen and (max-width: 1024px) {
  .entry .container {
    padding: 0 2rem;
  }
}
.entry__bg {
  background: url("../images/common/entry_bg.jpg") no-repeat center center/cover;
  padding: 7.5rem 0 6.8rem;
}
@media screen and (max-width: 1024px) {
  .entry__bg {
    padding: 0;
  }
}
.entry__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 6.7rem 3.5rem 5.5rem;
  color: #2B333B;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  cursor: pointer;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .entry__inner {
    padding: 3.5rem 2rem 18.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.entry__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1024px) {
  .entry__ttl {
    font-size: 2rem;
    line-height: 1;
  }
}
.entry__read {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .entry__read {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    text-align: center;
  }
}
.entry__txt {
  margin-top: 1.9rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .entry__txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
  }
}
.entry__bottom {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, padding 0.5s ease, -webkit-transform 0.5s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media screen and (max-width: 1024px) {
  .entry__bottom {
    display: block;
    background: none;
    margin-top: -15.5rem;
    max-height: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow: visible;
  }
}
.entry__bottom.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.entry__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 1024px) {
  .entry__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.9rem;
    padding: 0 5rem;
  }
}
.entry__btn {
  background: #0099E7;
  color: #fff;
  padding: 1.3rem 7rem;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .entry__btn {
    padding: 1.3rem 7rem;
    text-align: center;
  }
}
.entry__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 1.2rem;
  -webkit-mask-image: url("../images/common/arrow-white.svg");
          mask-image: url("../images/common/arrow-white.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #fff;
}
.entry__btn2 {
  position: relative;
  background: #0057AA;
}
.entry__btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: unset;
  right: 2rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  width: 2.3rem;
  height: 1.2rem;
  -webkit-mask-image: url("../images/common/arrow-white.svg");
          mask-image: url("../images/common/arrow-white.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #fff;
}
.entry:hover .entry__inner {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 1024px) {
  .entry:hover .entry__inner {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.entry:hover .entry__bottom {
  padding: 2rem 0;
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .entry:hover .entry__bottom {
    padding: 0;
    max-height: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.entry:hover .footer-content--recruit {
  padding: 7.5rem 0 4.5rem;
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .entry:hover .footer-content--recruit {
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.p-recruit .section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.125;
}
@media screen and (max-width: 1024px) {
  .p-recruit .section-title {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.p-recruit .section-title2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-recruit .section-title2 {
    font-size: 2rem;
  }
}
.p-recruit .movie .section-title2 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-recruit .movie .section-title2 {
    font-size: 1.6rem;
  }
}
.p-recruit .sec-read {
  margin-top: 2.1rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-recruit .sec-read {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.p-recruit .sec-txt {
  margin-top: 0.7rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-recruit .sec-txt {
    margin-top: 0.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-recruit .sec-btn {
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .sec-btn {
    margin-top: 1.4rem;
  }
}
.p-recruit .kv__sect {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__sect {
    height: 92vh;
  }
}
.p-recruit .kv__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100dvh;
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__slider {
    height: 100vh;
  }
}
.p-recruit .kv__slide-item {
  position: relative;
  overflow: hidden;
}
.p-recruit .kv__slide-item img {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1440/840;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.1);
          transform: translateZ(0) scale(1.1);
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__slide-item img {
    aspect-ratio: 375/465;
    height: 100vh;
  }
}
.p-recruit .kv__diagonal-band {
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  pointer-events: none;
}
.p-recruit .kv__diagonal-band--top-left {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 20% 100%, 0 100%);
}
.p-recruit .kv__diagonal-band--bottom-right {
  bottom: 0;
  right: 0;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 0 100%);
}
.p-recruit .kv__pickup {
  position: absolute;
  top: 17%;
  right: 12%;
  z-index: 3;
  width: 14.6rem;
  height: 14.6rem;
  background: #FFFF00;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 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;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__pickup {
    top: 15%;
    right: 5%;
    width: 10.2rem;
    height: 10.2rem;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.p-recruit .kv__pickup:hover {
  -webkit-transform: translate(0px, 0px) scale(1.05) !important;
          transform: translate(0px, 0px) scale(1.05) !important;
}
.p-recruit .kv__banner {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 100%;
}
.p-recruit .kv__banner-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/recruit/kv_banner_bg.png") no-repeat center center/cover;
  aspect-ratio: 1440/210;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-bg {
    aspect-ratio: 375/80;
  }
}
@media screen and (max-width: 700px) {
  .p-recruit .kv__banner-bg {
    aspect-ratio: 375/129;
  }
}
.p-recruit .kv__banner-body {
  position: relative;
  bottom: 7rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-body {
    font-size: 1.8rem;
    bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit .kv__banner-body {
    bottom: 1.5rem;
  }
}
.p-recruit .kv__banner-body-text {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.4117647059;
  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;
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-body-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}
.p-recruit .kv__banner-body-text span {
  font-size: 6.4rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-body-text span {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.p-recruit .kv__banner-body-news {
  margin-top: -5.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 2rem;
  max-width: 81.8rem;
  margin-inline: auto;
  position: relative;
  z-index: 4;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-body-news {
    margin-top: 0;
    background: #E4F1FA;
    max-width: 100%;
    padding: 2rem 2rem;
  }
}
.p-recruit .kv__banner-body-news .news__item {
  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;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__banner-body-news .news__item {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__banner-body-news .news__item-date {
    text-align: right;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0;
    color: #78828C;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__banner-body-news .news__item-title {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0;
  }
}
.p-recruit .kv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 9.6rem);
  min-height: 56rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .p-recruit .kv__wrap {
    height: 100%;
    min-height: 48rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 3.2rem;
    height: auto;
    min-height: initial;
    max-width: 48rem;
    margin: 0 auto;
  }
}
.p-recruit .kv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.875%;
          flex: 0 1 46.875%;
}
.p-recruit .kv__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.p-recruit .kv__img-wrap.img-left {
  max-width: 32rem;
  margin: 0 auto;
}
.p-recruit .kv__txt {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.66;
  font-size: 4.8rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .kv__txt {
    text-align: center;
    font-size: 2.4rem;
  }
}
.p-recruit .card__ttl-wrap {
  padding-bottom: 3rem;
  position: relative;
}
.p-recruit .card__ttl-wrap::before {
  content: "";
  position: absolute;
  width: 38.3rem;
  height: 1.4rem;
  background: url("../images/top/fukidashi.svg") no-repeat center center/contain;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-recruit .read {
  overflow-x: hidden;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .read {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}
.p-recruit .read .sec-txt {
  margin-top: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .sec-txt {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .container {
    padding: 0;
  }
}
.p-recruit .read .content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .content-row {
    -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;
    gap: 3rem;
  }
}
.p-recruit .read .content-body {
  margin-top: 3rem;
  width: 47.8%;
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .content-body {
    margin-top: 0;
    width: 100%;
    padding: 0 2rem;
  }
}
.p-recruit .read .content-img {
  width: 70.2%;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .content-img {
    width: 100%;
    padding-left: 2rem;
  }
}
.p-recruit .read .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 692/406;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-recruit .read .content-img img {
    border-radius: 20px 0 0 20px;
    min-width: 35.8rem;
  }
}
.p-recruit .about {
  padding: 10rem 0 9.2rem;
  position: relative;
  width: 100%;
  height: auto;
  background: url("../images/recruit/about.jpg") no-repeat center center/cover;
  overflow-x: clip;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about {
    background: none;
    padding: 5.2rem 0 0;
  }
}
.p-recruit .about::before {
  content: "";
  position: absolute;
  top: -48%;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg1.png") no-repeat top center/cover;
  z-index: -1;
  aspect-ratio: 1440/965;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about::before {
    top: 14%;
    margin-left: unset;
    margin-right: unset;
    background: url("../images/common/bg-sp.png") no-repeat top center/cover;
    aspect-ratio: 378/780;
  }
}
.p-recruit .about .section-title {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .section-title {
    font-size: 2.4rem;
  }
}
.p-recruit .about .sec-read {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .sec-read {
    color: #0057AA;
  }
}
.p-recruit .about .content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.p-recruit .about .content-body {
  width: 31.2%;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .content-body {
    width: 100%;
    color: #2B333B;
  }
}
.p-recruit .about .content-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .content-img {
    display: block;
    position: unset;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-recruit .about .content-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/545;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .content-img img {
    aspect-ratio: 375/242;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .about .c-btn2--white {
    color: #2B333B;
  }
  .p-recruit .about .c-btn2--white::before {
    background: #2B333B;
  }
  .p-recruit .about .c-btn2--white::after {
    border-right: 1px solid #2B333B;
  }
}
.p-recruit .work {
  padding: 10rem 0;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .p-recruit .work {
    padding: 5rem 0 0;
    overflow-x: hidden;
  }
}
.p-recruit .work .section-title {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .section-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .container {
    padding: 0;
  }
}
.p-recruit .work .content-row {
  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;
  gap: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
  }
}
.p-recruit .work .content-body {
  margin-top: 1.4rem;
  width: 47.8%;
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .content-body {
    margin-top: 0;
    width: 100%;
  }
}
.p-recruit .work .content-img {
  width: 121%;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .content-img {
    width: 100%;
    margin-right: calc(50% - 55vw);
  }
}
.p-recruit .work .content-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 840/500;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-recruit .work .content-img img {
    aspect-ratio: 335/210;
    border-radius: 20px 0 0 20px;
  }
}
.p-recruit .environment {
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .container {
    padding: 0;
  }
}
.p-recruit .environment .section-title {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .section-title {
    font-size: 2.4rem;
  }
}
.p-recruit .environment .content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 5rem 0 0;
  }
}
.p-recruit .environment .content-body {
  margin-top: 1rem;
  width: 48.8%;
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .content-body {
    margin-top: 0;
    width: 100%;
    padding: 0 2rem;
  }
}
.p-recruit .environment .content-img {
  width: 121%;
  width: 138%;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .content-img {
    width: 100%;
    margin-left: calc(50% - 50vw);
    min-width: 35.8rem;
    padding-right: 2rem;
  }
}
.p-recruit .environment .content-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 837/500;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 40px 0;
  max-height: 60rem;
}
@media screen and (max-width: 1600px) {
  .p-recruit .environment .content-img img {
    max-height: 50rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .content-img img {
    aspect-ratio: 355/210;
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit .environment .sec-btn {
    margin-top: 1.6rem;
  }
}
.p-recruit .flow {
  padding: 10rem 0 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit .flow {
    padding: 5rem 0 0;
  }
}
.p-recruit .flow__table {
  margin-top: 3rem;
}
.p-recruit .flow__table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 29rem 2.7rem 1fr;
  grid-template-columns: 29rem 1fr;
  gap: 2.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.2rem 0;
  border-bottom: 1px solid #0057AA;
  min-height: 12rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit .flow__table dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.25rem 0;
  }
}
.p-recruit .flow__table dl:first-child {
  border-top: 1px solid #0057AA;
}
.p-recruit .flow__table dt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-recruit .flow__table dt {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1;
  }
}
.p-recruit .flow__table dt span {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-recruit .flow__table dt span {
    font-size: 1.3rem;
    line-height: 1;
  }
}
.p-recruit .flow__table dd {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-recruit .flow__table dd {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.p-environment .section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.125;
}
@media screen and (max-width: 1024px) {
  .p-environment .section-title {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.p-environment .section-title--center {
  text-align: center;
}
.p-environment .section-title2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment .section-title2 {
    font-size: 2rem;
  }
}
.p-environment__culture {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture {
    padding-top: 3.8rem;
    padding-bottom: 0;
  }
}
.p-environment__culture .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.2rem;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  width: 84%;
}
@media screen and (max-width: 1440px) {
  .p-environment__culture .container {
    width: unset;
    padding-left: 22rem;
  }
}
@media screen and (max-width: 1300px) {
  .p-environment__culture .container {
    padding-left: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-environment__culture .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding: 0;
  }
}
.p-environment__culture .section-title2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0;
  text-align: left;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture .section-title2 {
    font-size: 1.5rem;
    line-height: 1.0666666667;
  }
}
@media screen and (max-width: 1024px) {
  .p-environment__culture-body {
    width: 100%;
    padding: 0 2rem;
  }
}
.p-environment__culture-read {
  margin-top: 3.6rem;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5333333333;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture-read {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
.p-environment__culture-txt {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture-txt {
    line-height: 1.8666666667;
  }
}
.p-environment__culture-img {
  width: 43.4027777778%;
  min-width: 62.5rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture-img {
    min-width: unset;
    width: 100%;
  }
}
.p-environment__culture-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 625/374;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-environment__culture-img img {
    aspect-ratio: 375/224;
  }
}
.p-environment__value {
  background: #F5F5F5;
  padding: 8.6rem 0 4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__value {
    padding: 5rem 0 2rem;
  }
}
.p-environment__value .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 104.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-environment__value .container {
    gap: 0;
  }
}
.p-environment__value .section-title2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0;
  color: #0057AA;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .p-environment__value .section-title2 {
    font-size: 1.5rem;
    line-height: 1.0666666667;
  }
}
.p-environment__value-items {
  max-width: 104.8rem;
  margin-inline: auto;
}
.p-environment__value-item {
  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;
  padding: 3rem 0;
  border-bottom: 1px solid #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__value-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 0;
  }
}
.p-environment__value-item:last-child {
  border-bottom: none;
}
.p-environment__value-item-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__value-item-ttl {
    font-size: 1.8rem;
  }
}
.p-environment__value-item-txt {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
  width: 57.8260869565%;
}
@media screen and (max-width: 1024px) {
  .p-environment__value-item-txt {
    font-size: 1.4rem;
    line-height: 2;
    width: 100%;
  }
}
.p-environment__number {
  padding-top: 10rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-environment__number {
    padding-top: 5rem;
  }
}
.p-environment__number .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__number .container {
    gap: 2.2rem;
  }
}
.p-environment__number .section-title2 {
  color: #0057AA;
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__number .section-title2 {
    font-size: 2rem;
  }
}
.p-environment__number-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.8rem 1fr 4.8rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem 4.8rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__number-items {
    gap: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .p-environment__number-items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-environment__number-items {
    max-width: 30rem;
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-environment__growth {
  padding-top: 9.5rem;
  padding-bottom: 0;
  /* ベースとなるコンテナのスタイル */
  /* 研修・教育セクションのスタイル */
  /* --- 研修項目（ボタン）のスタイル --- */
  /* 研修期間のタイトル */
}
@media screen and (max-width: 1024px) {
  .p-environment__growth {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-environment__growth .container {
    padding: 0;
  }
}
.p-environment__growth .section-title2 {
  color: #0057AA;
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth .section-title2 {
    font-size: 2rem;
  }
}
.p-environment__growth-inner {
  margin-top: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-inner {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}
.p-environment__growth-img {
  margin-left: calc(50% - 50vw);
  width: 160%;
  width: 133%;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-img {
    width: 100%;
    margin-left: unset;
  }
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-body {
    padding: 0 2rem;
  }
}
.p-environment__growth-read {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5333333333;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-read {
    font-size: 2.4rem;
  }
}
.p-environment__growth-txt {
  margin-top: 2.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-txt {
    margin-top: 1.5rem;
  }
}
.p-environment__growth-container {
  margin-top: 10rem;
  padding: 11.5rem 0 10rem;
  background: #F5F5F5;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-container {
    margin-top: 0;
    padding: 2.2rem 2rem 5rem;
    overflow-x: hidden;
  }
}
.p-environment__growth-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  margin-left: 5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-tabs {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p-environment__growth-tabs li {
  padding: 1.7rem 2rem;
  background: #B4B4B4;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: bold;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-tabs li {
    padding: 1.3rem 1.8rem;
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
.p-environment__growth-tabs li.active {
  background: #fff;
  color: #0057AA;
  border-radius: 10px 10px 0 0;
}
.p-environment__growth-content {
  display: none;
}
.p-environment__growth-content.active {
  display: block;
}
.p-environment__growth-content {
  margin: 0 auto;
  padding: 5rem 5rem 3rem;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-content {
    padding: 0 1.5rem 2rem;
    border-radius: 0;
  }
}
.p-environment__growth-content-ttl {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-content-ttl {
    display: none;
  }
}
.p-environment__growth-training-contents {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-training-contents {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem;
  }
}
.p-environment__growth-contents-ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-contents-ttl {
    margin-top: 3rem;
    font-size: 1.8rem;
    line-height: 1;
  }
}
.p-environment__growth-body-txt {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.8571428571;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-body-txt {
    line-height: 2;
  }
}
.p-environment__growth-body-btn {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  display: inline-block;
  padding-left: 1.6rem;
  color: #0057AA;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-body-btn {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
}
.p-environment__growth-body-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6rem;
  height: 1.4rem;
  background: #0057AA;
  -webkit-mask-image: url("../images/common/arrow.svg");
          mask-image: url("../images/common/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}
.p-environment__growth-body-btn:hover::before {
  -webkit-animation: arrow-slide 0.5s ease;
          animation: arrow-slide 0.5s ease;
}
@-webkit-keyframes arrow-slide {
  0% {
    -webkit-transform: translateY(-45%) translateX(0);
            transform: translateY(-45%) translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-45%) translateX(1.2rem);
            transform: translateY(-45%) translateX(1.2rem);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(-45%) translateX(-1.2rem);
            transform: translateY(-45%) translateX(-1.2rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-45%) translateX(0);
            transform: translateY(-45%) translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-slide {
  0% {
    -webkit-transform: translateY(-45%) translateX(0);
            transform: translateY(-45%) translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-45%) translateX(1.2rem);
            transform: translateY(-45%) translateX(1.2rem);
    opacity: 0;
  }
  41% {
    -webkit-transform: translateY(-45%) translateX(-1.2rem);
            transform: translateY(-45%) translateX(-1.2rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-45%) translateX(0);
            transform: translateY(-45%) translateX(0);
    opacity: 1;
  }
}
.p-environment__growth-new-graduate-training {
  border-bottom: 1px solid #0057AA;
  padding-bottom: 2.8rem;
  padding-top: 3rem;
  margin-top: -3rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-new-graduate-training {
    padding-bottom: 0;
  }
}
.p-environment__growth-training-period {
  margin-bottom: 20px;
}
.p-environment__growth-ttl {
  margin-top: 5rem;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-ttl {
    margin-top: 2.7rem;
    font-size: 2rem;
  }
}
.p-environment__growth-subttl { /* h4のクラス */
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  background: #B4B4B4;
  padding: 1.2rem 2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-subttl {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    padding: 1.3rem 1.5rem;
  }
}
.p-environment__growth-mid-career-training {
  padding-top: 3rem;
  margin-top: -3rem;
}
.p-environment__growth-mid-career-training .p-environment__growth-subttl {
  margin-top: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-mid-career-training .p-environment__growth-subttl {
    margin-top: 2rem;
  }
}
.p-environment__growth-training-item-wrap {
  margin-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-training-item-wrap {
    margin-top: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .p-environment__growth-training-item-wrap:nth-child(n+2) {
    margin-top: 1.9rem;
  }
}
.p-environment__growth-training-item-ttl {
  display: inline-block;
  padding: 1.2rem 1.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1428571429;
  white-space: nowrap;
  background: #0057AA;
  min-width: 15.8rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-training-item-ttl {
    min-width: unset;
    font-size: 1.4rem;
    padding: 0.7rem 1rem;
  }
}
.p-environment__growth-training-item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-training-item-tags {
    gap: 0.8rem;
  }
}
.p-environment__growth-training-item-tag {
  display: inline-block;
  padding: 1.1rem 1.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2307692308;
  white-space: nowrap;
  border: 1px solid #2B333B;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-training-item-tag {
    font-size: 1.3rem;
    line-height: 1;
    padding: 0.8rem 1rem 0.8rem 1rem;
  }
}
.p-environment__growth-welfare-contents {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-welfare-contents {
    margin-top: 0;
    padding-top: 2rem;
    gap: 2rem;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-environment__growth-welfare-contents {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-environment__growth-welfare-item {
  text-align: center;
  border-radius: 30px;
  border: 2px solid #0057AA;
  padding: 2.4rem 0 2.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 3.2rem 13rem 1fr;
  grid-template-rows: 3.2rem 13rem 1fr;
}
.p-environment__growth-welfare-item:nth-child(3) {
  display: inline-block;
}
.p-environment__growth-welfare-item:nth-child(3) .p-environment__growth-welfare-item-img img {
  max-width: 12.6rem;
  aspect-ratio: 126/138;
}
.p-environment__growth-welfare-item:nth-child(4) .p-environment__growth-welfare-item-img img, .p-environment__growth-welfare-item:nth-child(6) .p-environment__growth-welfare-item-img img {
  aspect-ratio: 160/130;
}
.p-environment__growth-welfare-item-ttl {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6842105263;
  color: #0057AA;
}
.p-environment__growth-welfare-item-img {
  margin-top: 1.3rem;
}
.p-environment__growth-welfare-item-img img {
  max-width: 16rem;
  width: 100%;
  height: auto;
  aspect-ratio: 160/120;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-environment__growth-welfare-item-txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  color: #0057AA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-content {
    padding-top: 1rem;
  }
  .p-environment__growth-message-content .p-environment__growth-contents-ttl {
    display: none;
  }
}
@media screen and (max-width: 860px) {
  .p-environment__growth-message-content {
    padding-bottom: 0;
  }
}
.p-environment__growth-message-contents {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-contents {
    gap: 2rem;
  }
}
@media screen and (max-width: 860px) {
  .p-environment__growth-message-contents {
    margin-top: 0;
    gap: 0;
  }
}
.p-environment__growth-message-contents-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-contents-ttl {
    display: none;
  }
}
.p-environment__growth-message-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
  padding: 4rem;
  border: 1px solid #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-item {
    padding: 2rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 860px) {
  .p-environment__growth-message-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    border: none;
  }
  .p-environment__growth-message-item:nth-child(n+2) {
    border-top: 1px solid #0057AA;
  }
}
.p-environment__growth-message-item-img {
  max-width: 18rem;
  min-width: 18rem;
}
.p-environment__growth-message-item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 180/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-item-img {
    margin-inline: auto;
  }
}
.p-environment__growth-message-item-txt-ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #0057AA;
}
.p-environment__growth-message-item-txt-ttl span {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-environment__growth-message-item-txt-txt {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-environment__growth-message-item-txt-txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-environment .story {
  padding-top: 10.2rem;
}
@media screen and (max-width: 1024px) {
  .p-environment .story {
    padding-top: 5rem;
  }
}
.p-environment .story .story__items {
  margin-top: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .p-environment .story .story__items {
    margin-top: 3.5rem;
  }
}
.p-environment .movie {
  padding-top: 9.7rem;
}
@media screen and (max-width: 1024px) {
  .p-environment .movie {
    padding-top: 5rem;
  }
}
.p-environment .movie .section-title2 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-environment .movie .section-title2 {
    font-size: 1.6rem;
  }
}

.p-work .section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.125;
}
@media screen and (max-width: 1024px) {
  .p-work .section-title {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
.p-work .section-title--center {
  text-align: center;
}
.p-work .section-title2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #0057AA;
}
@media screen and (max-width: 1024px) {
  .p-work .section-title2 {
    font-size: 1.6rem;
    line-height: 1.25;
    text-align: center;
  }
}
.p-work__about {
  padding-top: 8rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-work__about {
    padding-top: 5.8rem;
  }
}
.p-work__about--txt {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  max-width: 62.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-work__about--txt {
    margin-top: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
    letter-spacing: 0;
  }
}
.p-work__flow {
  padding-top: 4rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-work__flow {
    padding-top: 3rem;
  }
}
.p-work__flow-items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-items {
    margin-top: 2rem;
  }
}
.p-work__flow-item {
  background: #fff;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 8px 2px rgba(0, 0, 0, 0.15);
  border-radius: 0px 73px 73px 73px;
  max-width: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  padding: 2.7rem 5.4rem;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.8rem;
    padding: 3rem 1.5rem 2.2rem;
    border-radius: 0px 30px 30px 30px;
    margin-inline: auto;
  }
}
.p-work__flow-item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.p-work__flow-item:nth-child(2) {
  margin-left: 15rem;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item:nth-child(2) {
    margin-left: 0;
    margin-inline: auto;
  }
}
.p-work__flow-item:nth-child(3) {
  margin-left: 30rem;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item:nth-child(3) {
    margin-left: 0;
    margin-inline: auto;
  }
}
.p-work__flow-item-ttl {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2307692308;
  background: #0057AA;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 15px;
  white-space: nowrap;
  min-width: 12rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item-ttl {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
  }
}
.p-work__flow-item-body-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.0909090909;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item-body-ttl {
    font-size: 1.8rem;
    line-height: 1.2222222222;
  }
}
.p-work__flow-item-body-txt {
  margin-top: 1.1rem;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-work__flow-item-body-txt {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-work__data {
  position: relative;
  padding-top: 10.5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 1024px) {
  .p-work__data {
    padding-top: 5.2rem;
    padding-bottom: 5.2rem;
  }
}
.p-work__data::before {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg3.png") no-repeat center/cover;
  z-index: -1;
  aspect-ratio: 1440/886;
}
@media screen and (max-width: 1440px) {
  .p-work__data::before {
    bottom: 11%;
  }
}
@media screen and (max-width: 600px) {
  .p-work__data::before {
    bottom: 10%;
    aspect-ratio: 375/1306;
    background: url("../images/common/bg3-sp.png") no-repeat center/cover;
  }
}
.p-work__data::after {
  content: "";
  position: absolute;
  top: -7%;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg5.png") no-repeat center/cover;
  z-index: -1;
  aspect-ratio: 1492/792;
}
@media screen and (max-width: 1400px) {
  .p-work__data::after {
    top: -9%;
  }
}
@media screen and (max-width: 1024px) {
  .p-work__data::after {
    top: -5%;
    aspect-ratio: 375/334;
    background: url("../images/common/bg5-sp.png") no-repeat center/cover;
  }
}
@media screen and (max-width: 600px) {
  .p-work__data::after {
    top: -2%;
  }
}
.p-work__data .section-title {
  font-size: 3.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-work__data .section-title {
    font-size: 2rem;
  }
}
.p-work__data-flex {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem;
}
@media screen and (max-width: 1024px) {
  .p-work__data-flex {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-work__data-flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 2.3rem;
  }
}
.p-work__data-item {
  margin-top: 4.2rem;
}
@media screen and (max-width: 1024px) {
  .p-work__data-item {
    margin-top: 2rem;
  }
}
.p-work__data-btn {
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-work__data-btn {
    margin-top: 2rem;
  }
}
.p-work__cards {
  background: #F5F5F5;
  padding: 4.5rem 0 5.5rem;
  padding-top: 4.8rem;
}
@media screen and (max-width: 1024px) {
  .p-work__cards {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }
}
.p-work__cards-subttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-subttl {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
.p-work__cards .section-title {
  color: #0057AA;
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .p-work__cards .section-title {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.p-work__cards-items {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.1rem 1fr 5.1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.1rem;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-items {
    margin-top: 3rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-work__cards-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-work__cards-item {
  background: #fff;
  border-radius: 20px;
  padding: 3.5rem 2rem 3.6rem;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-item {
    padding: 2rem 2rem 2.3rem;
  }
}
.p-work__cards-item-number {
  font-size: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3333333333;
  color: #0057AA;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-item-number {
    font-size: 3.6rem;
    line-height: 1.3333333333;
  }
}
.p-work__cards-item-read {
  margin-top: 0.7rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #0057AA;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-item-read {
    margin-top: 0.5rem;
    font-size: 1.8rem;
    line-height: 1.8888888889;
  }
}
.p-work__cards-item-txt {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-work__cards-item-txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-work__message {
  padding-top: 7rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-work__message {
    padding-top: 3.2rem;
  }
}
.p-work__message .container {
  margin: 0;
  padding: 0;
  padding-right: 22.5rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-work__message .container {
    padding-right: 0;
  }
}
.p-work__message-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-work__message-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}
.p-work__message-slider {
  width: 78%;
  width: 51vw;
}
@media screen and (max-width: 1024px) {
  .p-work__message-slider {
    width: 100%;
    margin-left: unset;
  }
}
.p-work__message-slider .slick-track {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-work__message-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-work__message-slider-item {
  max-width: 50rem;
  min-width: 50rem;
}
@media screen and (max-width: 1024px) {
  .p-work__message-slider-item {
    max-width: 37rem;
    min-width: 37rem;
  }
}
.p-work__message-slider-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/326;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 32.6rem;
}
@media screen and (max-width: 1024px) {
  .p-work__message-slider-item img {
    min-height: 20rem;
  }
}
.p-work__message-body {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .p-work__message-body {
    width: 100%;
    padding: 0 2rem;
  }
}
.p-work__message-body-ttl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5333333333;
}
@media screen and (max-width: 1024px) {
  .p-work__message-body-ttl {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
}
.p-work__message-body-txt {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
.p-work__job {
  padding-top: 10.5rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-work__job {
    padding-top: 5.2rem;
  }
}
.p-work__job .section-title {
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-work__job .section-title {
    font-size: 2rem;
    text-align: center;
  }
}
.p-work__job-contents {
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 1024px) {
  .p-work__job-contents {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}
.p-work__job-img {
  margin-left: calc(50% - 50vw);
  min-width: 60.4rem;
}
@media screen and (min-width: 1600px) {
  .p-work__job-img {
    min-width: 75.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-work__job-img {
    min-width: 100%;
    width: 100%;
    height: auto;
    margin-left: unset;
    margin-right: calc(50% - 50vw);
  }
}
.p-work__job-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 604/845;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-work__job-img img {
    aspect-ratio: 335/470;
  }
}
.p-work__job-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-work__job-items {
    gap: 2.9rem;
  }
}
.p-work__job-item-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0909090909;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #2B333B;
}
@media screen and (max-width: 1024px) {
  .p-work__job-item-ttl {
    font-size: 1.7rem;
  }
}
.p-work__job-item-txt {
  padding-top: 0.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8666666667;
}
@media screen and (max-width: 1024px) {
  .p-work__job-item-txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-work__job-txt {
  margin-top: 5.4rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-work__job-txt {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-work .movie {
  padding-top: 9.4rem;
}
@media screen and (max-width: 1024px) {
  .p-work .movie {
    padding-top: 5rem;
  }
}
.p-work .movie .section-title2 {
  text-align: center;
}
.p-work .movie .movie__video {
  margin-top: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .p-work .movie .movie__video {
    margin-top: 2rem;
  }
}
.p-work .story {
  padding-top: 9.1rem;
}
@media screen and (max-width: 1024px) {
  .p-work .story {
    padding-top: 4.8rem;
  }
}
.p-work .story .section-title2 {
  font-size: 3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-work .story .section-title2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-work .story .story__items {
    margin-top: 3rem;
  }
}

.story {
  padding: 10rem 0 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .story {
    padding: 5rem 0 0;
  }
}
.story::before {
  content: "";
  position: absolute;
  top: -61%;
  left: 0;
  width: 100%;
  height: auto;
  background: url("../images/common/bg2.png") no-repeat bottom center/cover;
  aspect-ratio: 1440/848;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .story::before {
    top: -41%;
    background: url("../images/common/bg2-sp.png") no-repeat top center/cover;
    aspect-ratio: 375/405;
  }
}
.story .section-title2 {
  color: #fff;
  text-align: center;
}
.story__items {
  margin-top: 2.4rem;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .story__items {
    margin-top: 3.5rem;
  }
}
.story__items .slick-slide {
  margin: 0 2.5rem;
}
@media screen and (max-width: 1024px) {
  .story__items .slick-slide {
    margin: 0 1rem;
  }
}
.story__items .slick-list {
  margin: 0 -1rem;
}
@media screen and (max-width: 1024px) {
  .story__items .slick-list {
    margin: 0 -0.5rem;
  }
}
.story__items .slick-prev:not(.story-slider-arrow),
.story__items .slick-next:not(.story-slider-arrow) {
  display: none !important;
}
.story__items .story-slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 6.1rem;
  height: 6.1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .story__items .story-slider-arrow {
    display: none;
  }
}
.story__items .story-slider-arrow:hover {
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.story__items .story-slider-arrow:before {
  display: none !important;
}
.story__items .story-slider-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
.story__items .story-slider-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.story__items .story-slider-arrow.slick-disabled:hover {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.story__items .story-slider-arrow.story-slider-arrow--prev {
  left: 10rem;
}
.story__items .story-slider-arrow.story-slider-arrow--next {
  right: 10rem;
}
.story__items .story-slider-arrow .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.story__item {
  position: relative;
  margin: 0 auto;
  max-width: 36.2rem;
  overflow: hidden;
}
.story__item:hover {
  opacity: 1;
}
.story__item:hover .story__item-img img {
  border-radius: 40px 40px 0 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 1024px) {
  .story__item:hover .story__item-img img {
    border-radius: 20px 20px 0 0;
  }
}
.story__item:hover .story__item-body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.story__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 362/423;
  -o-object-fit: cover;
     object-fit: cover;
}
.story__item-img img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 362/423;
  -o-object-fit: cover;
     object-fit: cover;
}
.story__item-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  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;
  gap: 2rem;
  background: rgba(0, 87, 170, 0.9);
  color: #fff;
  padding: 2.6rem 0;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .story__item-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 0;
  }
}
.story__item-position {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4666666667;
}
@media screen and (max-width: 1024px) {
  .story__item-position {
    font-size: 1.2rem;
    text-align: center;
  }
}
.story__item-name {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .story__item-name {
    font-size: 1.8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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