@charset "UTF-8";
/*
  [ファイル説明]
  SCSS 全体の読み込み順を管理する入口ファイルです。setting → foundation → layout → component → project の順で読み込みます。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/* setting: 色・フォント・ブレークポイントなど、全体で使う前提データを読み込みます。 */
/*
  [ファイル説明]
  サイト全体で使う色変数を定義するファイルです。色を変更するときはこのファイルを起点にします。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/*
  [ファイル説明]
  サイト全体で使うフォント変数を定義するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/*
  [ファイル説明]
  レスポンシブ用のブレークポイントをまとめるファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/*
  [ファイル説明]
  SCSS でメディアクエリを簡潔に書くための mixin を定義するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/* foundation: ブラウザ差の吸収と基本設定です。 */
/*
  [ファイル説明]
  ブラウザごとの差を小さくするためのリセット CSS です。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
small,
strong,
ul,
ol,
li,
figure,
footer,
header,
nav,
section,
main,
button {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

/*
  [ファイル説明]
  サイト全体の基本文字サイズ、本文設定、共通要素の初期スタイルを定義するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #454649;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  background: #ffffff;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body.is_menu_open {
  overflow: hidden;
}

main {
  display: block;
}

.section_inner01 {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.section_inner02 {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
}

/* layout: ページ全体の骨組みです。 */
/*
  [ファイル説明]
  横幅と左右余白を整える共通コンテナクラスの定義です。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.l_container {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .l_container {
    width: min(100% - 32px, 1200px);
  }
}
/*
  [ファイル説明]
  main エリア全体のレイアウト調整を行うファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.l_main {
  overflow: clip;
}

/*
  [ファイル説明]
  トップページ全体のレイアウト調整を行うファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
#fv {
  position: relative;
}
#fv .l_fv_ttl {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-size: 60px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.75;
  letter-spacing: 8px;
}
#fv .l_fv_bunner {
  position: absolute;
  bottom: 80px;
  width: 100%;
  padding: 0 30px;
}
#fv .l_fv_bunner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
#fv .l_fv_bunner ul li {
  overflow: hidden;
}
#fv .l_fv_bunner ul a figure {
  position: relative;
}
#fv .l_fv_bunner ul a figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 120, 214, 0.75);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
#fv .l_fv_bunner ul a figure::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: solid 2px #ffffff;
  z-index: 1;
}
#fv .l_fv_bunner ul a figure img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
}
#fv .l_fv_bunner ul a figure figcaption {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  z-index: 2;
}
#fv .l_fv_bunner ul a:hover figure {
  position: relative;
}
#fv .l_fv_bunner ul a:hover figure::before {
  background: rgba(38, 184, 240, 0.75);
}
#fv .l_fv_bunner ul a:hover figure img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

@media only screen and (max-width: 767px) {
  #fv .l_fv_ttl {
    font-size: 25px;
  }
  #fv .l_fv_bunner {
    padding: 0 10px;
  }
  #fv .l_fv_bunner ul {
    gap: 10px;
  }
  #fv .l_fv_bunner ul a figure figcaption {
    font-size: 16px;
  }
}
.top_topics {
  padding: 80px 0;
}
.top_topics .top_section_ttl {
  margin: 0 0 40px;
}
.top_topics .section_inner01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(48px, 4vw, 74px);
}
.top_topics .section_inner01 > :first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.top_topics .section_inner01 > :last-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

@media only screen and (max-width: 767px) {
  .top_topics_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top_topics .top_section_ttl {
    text-align: center;
    margin: 0;
  }
  .top_topics .section_inner01 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto 48px;
  }
  .top_topics .section_inner01 > :first-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    overflow: hidden;
    width: 100%;
  }
  .top_topics .section_inner01 > :last-child {
    width: 100%;
  }
}
.top_aboutus {
  padding: 80px 0;
  background: url(../img/_top/top_aboutus_bg.jpg) no-repeat center center/cover;
}
.top_aboutus .section_inner01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: clamp(48px, 4vw, 74px);
}
.top_aboutus .top_section_ttl {
  margin: 0 0 60px;
}
.top_aboutus .top_section_catch {
  margin: 0 0 20px;
}
.top_aboutus .top_section_body {
  margin: 0 0 40px;
}
.top_aboutus_img {
  width: calc(57% - clamp(48px, 4vw, 74px) / 2);
}
.top_aboutus_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_aboutus_body {
  width: calc(43% - clamp(48px, 4vw, 74px) / 2);
}

@media only screen and (max-width: 1030px) {
  .top_aboutus {
    background: url(../img/_top/top_aboutus_bg_sp.jpg) no-repeat center center/cover;
  }
  .top_aboutus .top_section_ttl {
    margin: 0;
  }
  .top_aboutus .top_section_catch {
    margin: 0 0 30px;
  }
  .top_aboutus_img {
    width: 100%;
  }
  .top_aboutus_body {
    width: 100%;
  }
  .top_aboutus_body .u_pc_only {
    display: none !important;
  }
  .top_aboutus .c_button {
    margin: auto;
    display: block;
  }
}
.top_company {
  padding: 80px 0;
  position: relative;
}
.top_company::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 420px;
  background: #f2f4f6;
  top: 0;
  right: 0;
  z-index: -1;
}
.top_company::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 380px;
  background: #f2f4f6;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.top_company .section_inner01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: clamp(48px, 4vw, 74px);
  margin: 0 auto 160px;
}
.top_company .top_section_ttl {
  margin: 0 0 60px;
}
.top_company .top_section_catch {
  margin: 0 0 20px;
}
.top_company .top_section_body {
  margin: 0 0 40px;
}
.top_company_img {
  width: calc(57% - clamp(48px, 4vw, 74px) / 2);
  position: relative;
}
.top_company_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e5b9e;
  left: -20px;
  bottom: -20px;
  z-index: -1;
}
.top_company_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_company_body {
  width: calc(43% - clamp(48px, 4vw, 74px) / 2);
}
.top_company .js_company_swiper {
  z-index: 0;
}
.top_company .js_company_swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media only screen and (max-width: 1030px) {
  .top_company::before {
    width: 200px;
    height: 300px;
  }
  .top_company::after {
    width: 300px;
    height: 300px;
  }
  .top_company .section_inner01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto 100px;
  }
  .top_company .top_section_ttl {
    margin: 0;
  }
  .top_company .top_section_catch {
    margin: 0 0 30px;
  }
  .top_company_img {
    width: 100%;
  }
  .top_company_body {
    width: 100%;
  }
  .top_company_body .u_pc_only {
    display: none !important;
  }
  .top_company .c_button {
    margin: auto;
    display: block;
  }
}
.top_recruit {
  padding: 100px 0;
  background: url(../img/_top/top_recruit_bg.jpg) no-repeat center center/cover;
}
.top_recruit .top_section_ttl {
  margin: 0 0 50px;
  text-align: center;
}
.top_recruit .top_section_ttl .en {
  color: #ffffff;
}
.top_recruit .top_section_ttl .jp {
  color: #ffffff;
}
.top_recruit .top_section_body {
  text-align: center;
  color: #ffffff;
  margin: 0 0 60px;
}
.top_recruit .c_button {
  display: block;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .top_recruit {
    padding: 50px 0;
    background: url(../img/_top/top_recruit_bg_sp.jpg) no-repeat center center/cover;
  }
  .top_recruit .top_section_ttl {
    margin: 0 0 30px;
  }
  .top_recruit .top_section_body {
    margin: 0 0 50px;
    text-align: left;
  }
}
.top_contact {
  padding: 90px 0 100px;
  background: #ebf3fd;
}
.top_contact .top_section_ttl {
  margin: 0 0 50px;
  text-align: center;
}
.top_contact .c_button {
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .top_contact {
    padding: 50px 0;
  }
}
/* component: 使い回しできる小さな部品です。 */
/*
  [ファイル説明]
  使い回ししやすい共通ボタンコンポーネントのスタイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.c_button {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.c_button.btn--blue {
  max-width: 220px;
  width: 100%;
  padding: 25px 0 25px 30px;
  color: #fff;
  background-color: #1e5b9e;
  border: solid 1px #1e5b9e;
  border-radius: 50px;
}
.c_button.btn--blue .fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_button.btn--blue:hover {
  color: #1e5b9e;
  background: #ffffff;
}
.c_button.btn--blue:hover .fa-position-right {
  right: 15px;
}
.c_button.btn--blue__02 {
  max-width: 220px;
  width: 100%;
  padding: 25px 0 25px;
  color: #fff;
  background-color: #1e5b9e;
  border: solid 1px #1e5b9e;
  border-radius: 50px;
  text-align: center;
}
.c_button.btn--blue__02:hover {
  color: #1e5b9e;
  background: #ffffff;
}
.c_button.btn--white {
  max-width: 240px;
  width: 100%;
  padding: 25px 0 25px 30px;
  color: #1e5b9e;
  background-color: #ffffff;
  border: solid 1px #1e5b9e;
  border-radius: 50px;
}
.c_button.btn--white .fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_button.btn--white:hover {
  color: #ffffff;
  background: #1e5b9e;
}
.c_button.btn--white:hover .fa-position-right {
  right: 15px;
}
.c_button.btn--white_box {
  position: relative;
  max-width: 476px;
  width: 100%;
  padding: 50px 0;
  color: #1e5b9e;
  background: #ffffff;
  border: solid 1px #ffffff;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 22px;
}
.c_button.btn--white_box::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background: url(../img/_main/arrow_blue.svg) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_button.btn--white_box:hover {
  color: #ffffff;
  background: #1e5b9e;
}
.c_button.btn--white_box:hover::before {
  right: 30px;
}
.c_button.btn--blue_box {
  max-width: 476px;
  width: 100%;
  padding: 50px 0;
  color: #ffffff;
  background: #1e5b9e;
  border: solid 1px #1e5b9e;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  font-size: 22px;
}
.c_button.btn--blue_box .btn--blue_box_icon {
  display: block;
  width: 36px;
  height: 26px;
  background: url(../img/_main/icon_mail_white.svg) no-repeat center center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_button.btn--blue_box:hover {
  color: #1e5b9e;
  background: #ffffff;
}
.c_button.btn--blue_box:hover .btn--blue_box_icon {
  background: url(../img/_main/icon_mail_blue.svg) no-repeat center center/cover;
  -webkit-transform: rotate3d(1, 1, 1, 360deg);
          transform: rotate3d(1, 1, 1, 360deg);
}

@media only screen and (max-width: 767px) {
  .c_button.btn--white_box {
    max-width: 260px;
    padding: 20px 0;
    font-size: 16px;
  }
  .c_button.btn--white_box::before {
    width: 32px;
    height: 32px;
    right: 16px;
  }
  .c_button.btn--white_box:hover::before {
    right: 10px;
  }
  .c_button.btn--blue_box {
    max-width: 260px;
    padding: 20px 0;
    gap: 10px;
    font-size: 16px;
  }
  .c_button.btn--blue_box .btn--blue_box_icon {
    width: 24px;
    height: 17px;
  }
}
/*
  [ファイル説明]
  使い回ししやすい共通ボタンコンポーネントのスタイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.top_section_ttl .en {
  font-family: "din-2014", sans-serif;
  font-size: 60px;
  font-weight: bold;
  color: #1e5b9e;
  margin: 0 0 4px;
}
.top_section_ttl .jp {
  font-size: 20px;
  font-weight: bold;
  color: #8fa0ae;
}
.top_section_catch {
  font-size: 26px;
  font-weight: bold;
  color: #1e5b9e;
  line-height: 1.6;
  overflow: hidden;
}
.top_section_body {
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .top_section_ttl .en {
    font-size: 40px;
    margin: 0 0 10px;
  }
  .top_section_ttl .jp {
    font-size: 16px;
  }
  .top_section_catch {
    font-size: 22px;
  }
}
.c_lower_section {
  padding: 100px 0 120px;
}
.c_lower_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 56px;
  color: #1e5b9e;
  text-align: center;
}
.c_lower_ttl span {
  display: inline-block;
  padding: 0 60px;
  border-left: solid 2px #1e5b9e;
  border-right: solid 2px #1e5b9e;
}

.p_recruit .c_lower_ttl {
  color: #0a79c7;
}
.p_recruit .c_lower_ttl span {
  border-left: solid 2px #0a79c7;
  border-right: solid 2px #0a79c7;
}

@media only screen and (max-width: 767px) {
  .c_lower_ttl {
    font-size: 24px;
  }
  .c_lower_ttl span {
    padding: 0 26px;
  }
}
/*
  [ファイル説明]
  使い回ししやすい共通ボタンコンポーネントのスタイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
/* ---------------------------------
▼▼準備中ページ用（後々削除する事）
--------------------------------- */
.soon-bg {
  background: #f2f4f6;
}

.coming-soon {
  width: 100%;
  background: #f2f4f6;
  padding: 100px 0;
}
.coming-soon-inner {
  max-width: 1200px;
  width: 95%;
  margin: auto;
  text-align: center;
}
.coming-soon-inner img {
  margin: 0 auto 40px;
}
.coming-soon_ttl {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 40px;
}

/* ---------------------------------
▲▲準備中ページ用（後々削除する事）
--------------------------------- */
/*
  [ファイル説明]
  使い回ししやすい共通ボタンコンポーネントのスタイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.c_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c_table tr {
  border-top: 1px solid #c5c5c5;
}
.c_table tr:last-child {
  border-bottom: 1px solid #c5c5c5;
}
.c_table th,
.c_table td {
  padding: 20px;
  font-size: 16px;
  line-height: 1.7;
  vertical-align: middle;
}
.c_table th {
  width: 240px;
  text-align: center;
  background: #ebf3fd;
  font-weight: 700;
}
.c_table td {
  background: #ffffff;
}
.c_table td ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .c_table th,
  .c_table td {
    padding: 14px 12px;
    font-size: 14px;
  }
  .c_table th {
    width: 110px;
  }
}
/*
  [ファイル説明]
  使い回ししやすい共通ボタンコンポーネントのスタイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.c_pagination {
  margin: 60px 0 0;
}
.c_pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 25px;
}
.c_pagination__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c_pagination__item.is_current .c_pagination__link {
  color: #8fa0ae;
  pointer-events: none;
  border-bottom: solid 2px #8fa0ae;
}
.c_pagination__item--dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c_pagination__item--prev .c_pagination__link, .c_pagination__item--next .c_pagination__link {
  width: 46px;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 50%;
  border: 1px solid #1e5b9e;
  color: #ffffff;
  background: #1e5b9e;
}
.c_pagination__item--prev .c_pagination__link:hover, .c_pagination__item--next .c_pagination__link:hover {
  color: #1e5b9e;
  background: #ffffff;
}
.c_pagination__link, .c_pagination__dots {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.c_pagination__link {
  color: #1e5b9e;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.c_pagination__link:hover {
  color: #8fa0ae;
  border-bottom: solid 2px #8fa0ae;
}
.c_pagination__dots {
  color: #1e5b9e;
  border-color: transparent;
}

@media only screen and (max-width: 767px) {
  .c_pagination {
    margin: 40px 0 0;
  }
  .c_pagination__list {
    gap: 20px;
  }
  .c_pagination__link, .c_pagination__dots {
    font-size: 14px;
  }
  .c_pagination__item--prev .c_pagination__link, .c_pagination__item--next .c_pagination__link {
    width: 46px;
    font-size: 12px;
    padding: 0 12px;
  }
}
/* project: この案件固有の見た目を作るパーツ群です。 */
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
#loading {
  -webkit-transition: all 1s;
  transition: all 1s;
  background: #1e5b9e;
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/*
  [ファイル説明]
  プロジェクト固有のヘッダーデザインを管理するファイルです。PC / SP 両方の見た目を定義します。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_header {
  position: absolute;
  z-index: 100;
  width: 100%;
  padding: 2svh 0 0;
}
.p_header__inner {
  width: 95%;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 88px;
  padding: 0 2svw;
  gap: 24px;
}
.p_header__logo {
  display: block;
  width: 330px;
}
.p_header__nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.p_header__nav_link {
  display: inline-block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.p_header__nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: #ebf3fd;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.p_header__nav_link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.p_header__toggle {
  display: none;
}

@media only screen and (max-width: 1030px) {
  .p_header {
    padding: 0;
  }
  .p_header__inner {
    min-height: 72px;
    width: 100%;
    border-radius: 0;
    padding: 0 0 0 2svw;
  }
  .p_header__nav {
    position: fixed;
    top: 72px;
    right: 0;
    z-index: 11;
    width: 100%;
    height: 100dvh;
    padding: 30px 24px 32px;
    color: #ffffff;
    background: #1e5b9e;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -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;
  }
  .p_header__nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p_header__nav_link {
    font-size: 20px;
  }
  .p_header__nav_link::after {
    background: unset;
  }
  .p_header__logo {
    width: 180px;
  }
  .p_header__toggle {
    position: relative;
    z-index: 12;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    width: 72px;
    height: 72px;
    margin-left: auto;
  }
  .p_header__toggle_line {
    position: absolute;
    left: 50%;
    width: 42px;
    height: 2px;
    background: #002f75;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p_header__toggle_line--top {
    top: 25px;
  }
  .p_header__toggle_line--bottom {
    top: 36px;
  }
  .p_header__toggle_text {
    position: absolute;
    left: 50%;
    bottom: 15px;
    font-size: 10px;
    font-weight: 700;
    color: #002f75;
    line-height: 1;
    letter-spacing: 0.08em;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  /* メニュー展開時 */
  .is_open .p_header__toggle {
    background: #002f75;
  }
  .is_open .p_header__toggle_line {
    background: #ffffff;
  }
  .is_open .p_header__toggle_line--top {
    top: 35px;
    -webkit-transform: translateX(-40%) rotate(45deg);
            transform: translateX(-40%) rotate(45deg);
  }
  .is_open .p_header__toggle_line--bottom {
    top: 35px;
    -webkit-transform: translateX(-40%) rotate(-45deg);
            transform: translateX(-40%) rotate(-45deg);
  }
  .is_open .p_header__toggle_text {
    opacity: 0;
  }
}
#lower_page .p_header {
  padding: 0;
}
#lower_page .p_header__inner {
  width: 100%;
  border-radius: unset;
}

/*
  [ファイル説明]
  プロジェクト固有のフッターデザインを管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_footer {
  background: #033255;
  color: #fff;
  padding: 100px 0 120px;
}
.p_footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.p_footer__logo {
  margin: 0 0 48px;
  display: block;
}
.p_footer__logo figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.p_footer__logo figure img {
  width: 114px;
}
.p_footer__logo figure figcaption {
  font-size: 45px;
  font-weight: bold;
}
.p_footer__address {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 35px;
}
.p_footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 20px;
}
.p_footer__sns .fa-brands {
  font-size: 40px;
}
.p_footer__nav {
  min-width: 0;
  margin: 0 0 0 auto;
}
.p_footer__nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 3vw, 56px);
  line-height: 1.3;
}
.p_footer__nav_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_footer__nav_item:last-child {
  -webkit-box-pack: unset;
  -webkit-justify-content: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.p_footer__nav_item:last-child .p_footer__nav_item_children {
  margin: 0 0 40px;
}
.p_footer__nav_item_children {
  padding: 20px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p_footer__nav_item_children.first {
  margin: 0 0 40px;
}
.p_footer__nav_item_children_link {
  padding: 0 0 0 15px;
  position: relative;
  font-size: 14px;
  display: inline-block;
}
.p_footer__nav_item_children_link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 0;
}
.p_footer__nav_item_children_link span {
  position: relative;
  display: inline-block;
}
.p_footer__nav_item_children_link span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
  left: 0;
  bottom: -0.2em;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right 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;
}
.p_footer__nav_item_children_link:hover span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.p_footer__nav_link {
  display: inline-block;
}
.p_footer__nav_link span {
  position: relative;
  display: inline-block;
}
.p_footer__nav_link span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
  left: 0;
  bottom: -0.2em;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right 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;
}
.p_footer__nav_link:hover span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media only screen and (max-width: 767px) {
  .p_footer {
    padding: 50px 0;
  }
  .p_footer__inner {
    gap: unset;
  }
  .p_footer__inner div {
    width: 100%;
  }
  .p_footer__logo {
    margin: 0 0 30px;
  }
  .p_footer__logo figure {
    gap: 14px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p_footer__logo figure img {
    width: 68px;
  }
  .p_footer__logo figure figcaption {
    font-size: 27px;
  }
  .p_footer__address {
    font-size: 14px;
    margin: 0 0 20px;
    text-align: center;
  }
  .p_footer__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*
  [ファイル説明]
  トップページ FV の Swiper 見た目を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_fv_swiper {
  position: relative;
  z-index: 0;
}

.p_fv_swiper__slider,
.p_fv_swiper__slide {
  min-height: 100svh;
}

.p_fv_swiper__slide {
  position: relative;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

.p_fv_swiper__media {
  position: absolute;
  inset: 0;
}

.p_fv_swiper__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .p_fv_swiper__media,
.swiper-slide-duplicate-active .p_fv_swiper__media,
.swiper-slide-prev .p_fv_swiper__media {
  -webkit-animation: zoomUp 24s linear 0s normal both;
          animation: zoomUp 24s linear 0s normal both;
}

.swiper-pagination.p_fv_swiper__pagination {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.swiper-pagination.p_fv_swiper__pagination .swiper-pagination-bullet {
  height: 18px;
  width: 18px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
}

.swiper-pagination.p_fv_swiper__pagination .swiper-pagination-bullet-active {
  background: #1e5b9e;
}

@media only screen and (max-width: 767px) {
  .swiper-pagination.p_fv_swiper__pagination {
    bottom: 16px !important;
  }
}
/*
  [ファイル説明]
  下層ページの MV 見た目を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.header_dpace {
  height: 88px;
}

.p_lower_mv {
  padding: 60px 0;
  color: #ffffff;
  background: url(../img/_main/lower_mv_bg.jpg) no-repeat center center/cover;
}
.p_lower_mv .top_section_ttl .jp {
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  margin: 0 0 16px;
  display: block;
}
.p_lower_mv .top_section_ttl .en {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}

@media only screen and (max-width: 1030px) {
  .header_dpace {
    height: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .p_lower_mv {
    background: url(../img/_main/lower_mv_bg_sp.jpg) no-repeat center center/cover;
    padding: 30px 0;
  }
  .p_lower_mv .top_section_ttl .jp {
    font-size: 30px;
    margin: 0 0 10px;
  }
  .p_lower_mv .top_section_ttl .en {
    font-size: 16px;
  }
}
.p_recruit .p_lower_mv {
  background: url(../img/_main/recruit_mv_bg.jpg) no-repeat center center/cover;
}

/*
  [ファイル説明]
  パンくずリストの見た目を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
#to-contact {
  position: fixed;
  top: 140px;
  right: 0;
}
#to-contact a {
  background: #1e5b9e;
  color: #ffffff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: block;
  padding: 32px 15px;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  border: solid 1px #1e5b9e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#to-contact a:hover {
  color: #1e5b9e;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  #to-contact {
    top: unset;
    bottom: 0;
    right: 0;
  }
  #to-contact a {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding: 20px 15px;
    border-radius: 10px 0 0 0;
  }
}
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_topics_list__item {
  border-top: 1px solid #c5c5c5;
}
.p_topics_list__item:last-child {
  border-bottom: 1px solid #c5c5c5;
}
.p_topics_list__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 4vw, 50px);
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p_topics_list__link:hover {
  background: rgba(30, 120, 214, 0.08);
}
.p_topics_list__date {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  color: #4b7cb1;
}
.p_topics_list__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .p_topics_list__link {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .p_topics_list__date {
    width: 100%;
  }
  .p_topics_list__text {
    font-size: 16px;
  }
}
.page_single .p_topics_single {
  padding: 100px 0 120px;
}
.page_single .p_topics_single_ttl {
  padding: 0 0 40px;
  border-bottom: solid 1px #c5c5c5;
}
.page_single .p_topics_single_ttl time {
  font-weight: bold;
  font-family: "din-2014", sans-serif;
  color: #4b7cb1;
  margin: 0 0 40px;
  display: block;
}
.page_single .p_topics_single_ttl p {
  font-size: 26px;
  font-weight: bold;
  color: #1e5b9e;
}
.page_single .p_topics_single_content {
  padding: 40px 0 50px;
  border-bottom: solid 1px #c5c5c5;
  margin: 0 0 100px;
}
.page_single .p_topics_single_content p,
.page_single .p_topics_single_content figure {
  margin: 0 0 50px;
  line-height: 1.6;
}
.page_single .p_topics_single_content img {
  max-width: 500px;
  width: 100%;
}
.page_single .p_topics_single .c_button {
  display: block;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .page_single .p_topics_single {
    padding: 50px 0 60px;
  }
  .page_single .p_topics_single_ttl {
    padding: 0 0 20px;
  }
  .page_single .p_topics_single_ttl time {
    margin: 0 0 20px;
  }
  .page_single .p_topics_single_content {
    padding: 30px 0 40px;
    margin: 0 0 50px;
  }
  .page_single .p_topics_single_content p,
  .page_single .p_topics_single_content figure {
    margin: 0 0 30px;
  }
}
/*
  [ファイル説明]
  main エリア全体のレイアウト調整を行うファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.page_contact .p_contact {
  padding: 100px 0 160px;
}
.page_contact .p_contact_inner {
  max-width: 740px;
  width: 90%;
  margin: auto;
}
.page_contact .p_contact .p_contact_form {
  width: min(100%, 800px);
  margin: 40px auto 0;
}
.page_contact .p_contact .p_contact_form__item {
  margin: 0 0 30px;
}
.page_contact .p_contact .p_contact_form__item:last-of-type {
  margin-bottom: 40px;
}
.page_contact .p_contact .p_contact_form__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.page_contact .p_contact .p_contact_form__required {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 52px;
  height: 28px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #1e5b9e;
}
.page_contact .p_contact .p_contact_form__input, .page_contact .p_contact .p_contact_form__textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #c5c5c5;
  background: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page_contact .p_contact .p_contact_form__input::-webkit-input-placeholder, .page_contact .p_contact .p_contact_form__textarea::-webkit-input-placeholder {
  color: #8fa0ae;
}
.page_contact .p_contact .p_contact_form__input::-moz-placeholder, .page_contact .p_contact .p_contact_form__textarea::-moz-placeholder {
  color: #8fa0ae;
}
.page_contact .p_contact .p_contact_form__input:-ms-input-placeholder, .page_contact .p_contact .p_contact_form__textarea:-ms-input-placeholder {
  color: #8fa0ae;
}
.page_contact .p_contact .p_contact_form__input::-ms-input-placeholder, .page_contact .p_contact .p_contact_form__textarea::-ms-input-placeholder {
  color: #8fa0ae;
}
.page_contact .p_contact .p_contact_form__input::placeholder, .page_contact .p_contact .p_contact_form__textarea::placeholder {
  color: #8fa0ae;
}
.page_contact .p_contact .p_contact_form__input:focus, .page_contact .p_contact .p_contact_form__textarea:focus {
  outline: none;
  border-color: #1e5b9e;
}
.page_contact .p_contact .p_contact_form__textarea {
  min-height: 240px;
  resize: vertical;
}
.page_contact .p_contact .p_contact_form__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.page_contact .p_contact .p_contact_form__button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.page_contact .p_contact .p_contact_form__button--confirm {
  color: #ffffff;
  background: #1e5b9e;
  border-color: #1e5b9e;
  text-align: center;
}
.page_contact .p_contact .p_contact_form__button--confirm:hover {
  color: #1e5b9e;
  background: #ffffff;
}
.page_contact .p_contact .p_contact_form__button--reset {
  color: #454649;
  background: #8fa0ae;
  border-color: #c5c5c5;
  text-align: center;
}
.page_contact .p_contact .p_contact_form__button--reset:hover {
  background: #f2f4f6;
}

@media only screen and (max-width: 767px) {
  .page_contact .p_contact {
    padding: 50px 0 80px;
  }
  .page_contact .p_contact_form {
    margin-top: 30px;
  }
  .page_contact .p_contact_form__label {
    gap: 8px;
    font-size: 16px;
  }
  .page_contact .p_contact_form__input, .page_contact .p_contact_form__textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .page_contact .p_contact_form__buttons {
    gap: 12px;
  }
  .page_contact .p_contact_form__button {
    min-width: 150px;
    min-height: 50px;
    padding: 10px 16px;
    font-size: 14px;
  }
}
.p_contact_confirm {
  border-top: 1px solid #cfcfcf;
  margin: 0 0 50px;
}
.p_contact_confirm__item {
  padding: 30px 0;
  border-bottom: 1px solid #cfcfcf;
}
.p_contact_confirm__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.p_contact_confirm__content {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.8;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  white-space: normal;
  word-break: break-word;
}

@media only screen and (max-width: 767px) {
  .p_contact_confirm__item {
    padding: 24px 0;
  }
  .p_contact_confirm__label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .p_contact_confirm__content {
    padding: 14px 16px;
    font-size: 14px;
  }
}
.p_contact_thanks_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #1e5b9e;
  text-align: center;
  margin: 0 0 50px;
}
.p_contact_thanks_txt {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 50px;
}
.p_contact_thanks .c_button {
  display: block;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .p_contact_thanks_ttl {
    font-size: 26px;
    margin: 0 0 30px;
  }
  .p_contact_thanks_txt {
    font-size: 16px;
    margin: 0 0 30px;
    text-align: left;
  }
  .p_contact_thanks .c_button {
    display: block;
    margin: auto;
  }
}
/* Contact Form 7 のスピナーを非表示にする */
.wpcf7-spinner {
  display: none !important;
}

.cf7-cf-turnstile {
  width: 100%;
  text-align: center;
}

/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_recruit_section01 .c_lower_ttl {
  margin: 0 0 50px;
}
.p_recruit_bodycopy {
  margin: 0 0 60px;
  text-align: center;
}
.p_recruit .c_table tr {
  border-top: 1px solid #0a79c7;
}
.p_recruit .c_table tr:last-child {
  border-bottom: 1px solid #0a79c7;
}
.p_recruit .c_table th {
  color: #0a79c7;
  background: #dbf0fa;
}
.p_recruit_section02 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(30, 91, 158)), to(rgb(219, 240, 250)));
  background-image: -webkit-linear-gradient(bottom, rgb(30, 91, 158), rgb(219, 240, 250));
  background-image: linear-gradient(0deg, rgb(30, 91, 158), rgb(219, 240, 250));
}
.p_recruit_section02 .c_lower_ttl {
  margin: 0 0 100px;
}
.p_recruit_section02 .c_button {
  display: block;
  margin: auto;
}
.p_recruit_section02 .p_tab {
  margin: 0 0 120px;
}
.p_recruit_section02 .p_tab__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_recruit_section02 .p_tab__button {
  width: calc(33.3333333333% - 10px);
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
  background: #0a79c7;
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  min-height: 80px;
  text-align: center;
}
.p_recruit_section02 .p_tab__button.is_active {
  background: #ffffff;
  color: #0a79c7;
}
.p_recruit_section02 .p_tab__content {
  background: #ffffff;
  display: none;
  padding: 0 0 80px;
}
.p_recruit_section02 .p_tab__content.is_active {
  display: block;
}
.p_recruit_section02 .p_tab__content_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 95%;
  margin: 0 0 0 auto;
  padding: 80px 0 65px;
}
.p_recruit_section02 .p_tab__content_head_img {
  width: 52%;
}
.p_recruit_section02 .p_tab__content_head_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_recruit_section02 .p_tab__content_head_info {
  background: #0a79c7;
  width: 48%;
  padding: 40px 0;
}
.p_recruit_section02 .p_tab__content_head_info_inner {
  width: 89%;
}
.p_recruit_section02 .p_tab__content_head_info_ttl {
  background: #ffffff;
  color: #0a79c7;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  padding: 30px 0 30px 65px;
  margin: 0 0 46px;
}
.p_recruit_section02 .p_tab__content_head_info_ttl_name {
  font-size: 3.2rem;
}
.p_recruit_section02 .p_tab__content_head_info_ttl_affiliation {
  font-size: 14px;
}
.p_recruit_section02 .p_tab__content_head_info_box {
  color: #ffffff;
  padding: 0 0 0 65px;
}
.p_recruit_section02 .p_tab__content_head_info_box h4 {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 20px;
}
.p_recruit_section02 .p_tab__content_head_info_box h4::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 0;
}
.p_recruit_section02 .p_tab__content_head_info_box p {
  line-height: 2;
}
.p_recruit_section02 .p_tab__content_contents {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_recruit_section02 .p_tab__content_contents_interview, .p_recruit_section02 .p_tab__content_contents_schedule {
  width: 48%;
}
.p_recruit_section02 .p_tab__content_contents_ttl {
  background: #0a79c7;
  color: #ffffff;
  font-size: 26px;
  font-family: "din-2014", sans-serif;
  padding: 10px 0 10px 45px;
  position: relative;
}
.p_recruit_section02 .p_tab__content_contents_ttl::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #ffffff;
  border-right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
}
.p_recruit_section02 .p_tab__content_contents_interview_lists {
  padding: 40px 0 0;
}
.p_recruit_section02 .p_tab__content_contents_interview_lists li {
  margin: 0 0 50px;
}
.p_recruit_section02 .p_tab__content_contents_interview_lists h4 {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0 48px;
  margin: 0 0 24px;
  color: #0a79c7;
  position: relative;
}
.p_recruit_section02 .p_tab__content_contents_interview_lists h4::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background: #0a79c7;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.p_recruit_section02 .p_tab__content_contents_interview_lists p {
  line-height: 1.8;
}
.p_recruit_section02 .p_tab__content_contents_schedule {
  background: #ebf8fd;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists {
  width: 90%;
  margin: auto;
  padding: 40px 0 0;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl dt {
  font-family: "din-2014", sans-serif;
  color: #0a79c7;
  width: 60px;
  position: relative;
  padding: 0 0 22px;
  line-height: 1.5;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl dt::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a79c7;
  top: 3px;
  right: -9px;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl dd {
  width: calc(100% - 60px);
  padding: 0 0 22px 32px;
  line-height: 1.6;
  position: relative;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl dd::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 5px);
  background: #0a79c7;
  bottom: -5px;
  left: 0;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl:last-child dt {
  border-right: unset;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl:last-child dt::before {
  right: -9px;
}
.p_recruit_section02 .p_tab__content_contents_schedule_lists dl:last-child dd::after {
  content: unset;
}

@media only screen and (max-width: 767px) {
  .p_recruit .c_lower_section {
    padding: 48px 0;
  }
  .p_recruit_section01 .c_lower_ttl {
    margin: 0 0 30px;
  }
  .p_recruit_bodycopy {
    margin: 0 0 30px;
    line-height: 1.6;
  }
  .p_recruit_section02 .c_lower_ttl {
    margin: 0 0 50px;
  }
  .p_recruit_section02 .p_tab {
    margin: 0 0 60px;
  }
  .p_recruit_section02 .p_tab__button {
    width: calc(33.3333333333% - 0.4rem);
    padding: 10px;
    font-size: 14px;
    min-height: 50px;
  }
  .p_recruit_section02 .p_tab__content {
    padding: 0 0 30px;
  }
  .p_recruit_section02 .p_tab__content_head {
    width: 95%;
    margin: 0 auto;
    padding: 32px 0 48px;
  }
  .p_recruit_section02 .p_tab__content_head_img {
    width: 100%;
  }
  .p_recruit_section02 .p_tab__content_head_info {
    width: 100%;
    padding: 16px 0;
  }
  .p_recruit_section02 .p_tab__content_head_info_inner {
    width: 89%;
  }
  .p_recruit_section02 .p_tab__content_head_info_ttl {
    gap: 10px;
    padding: 12px 0 12px 24px;
    margin: 0 0 22px;
  }
  .p_recruit_section02 .p_tab__content_head_info_ttl_naem {
    font-size: 22px;
  }
  .p_recruit_section02 .p_tab__content_head_info_ttl_affiliation {
    font-size: 12px;
  }
  .p_recruit_section02 .p_tab__content_head_info_box {
    padding: 0 0 0 24px;
  }
  .p_recruit_section02 .p_tab__content_head_info_box h4 {
    font-size: 18px;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
  }
  .p_recruit_section02 .p_tab__content_head_info_box h4::before {
    width: 10px;
    height: 10px;
  }
  .p_recruit_section02 .p_tab__content_contents_interview, .p_recruit_section02 .p_tab__content_contents_schedule {
    width: 100%;
  }
  .p_recruit_section02 .p_tab__content_contents_ttl {
    font-size: 22px;
    padding: 12px 0 12px 40px;
  }
  .p_recruit_section02 .p_tab__content_contents_ttl::before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #ffffff;
    left: 15px;
  }
  .p_recruit_section02 .p_tab__content_contents_interview_lists {
    padding: 30px 0 0;
  }
  .p_recruit_section02 .p_tab__content_contents_interview_lists li {
    margin: 0 0 30px;
  }
  .p_recruit_section02 .p_tab__content_contents_interview_lists h4 {
    font-size: 16px;
    padding: 0 0 0 24px;
    margin: 0 0 16px;
  }
  .p_recruit_section02 .p_tab__content_contents_interview_lists h4::before {
    width: 16px;
    height: 1px;
  }
}
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_company_info {
  padding: 120px 0 0;
  margin: 0 0 140px;
}
.p_company_info .c_table {
  margin: 0 0 50px;
}
.p_company_info .c_table th {
  color: #1e5b9e;
  background: #f2f4f6;
}
.p_company .c_button.btn--white {
  max-width: 280px;
}
.p_company_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  background: #1e5b9e;
  padding: 16px 0 16px 20px;
  margin: 0 0 70px;
}
.p_company_access {
  margin: 0 0 150px;
}
.p_company_access_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.p_company_access_lists_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_company_access_lists_item_map, .p_company_access_lists_item_info {
  width: 48%;
}
.p_company_access_lists_item_map iframe {
  width: 100%;
  height: 100%;
}
.p_company_access_lists_item_info_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 10px;
  border-bottom: solid 1px #1e5b9e;
  margin: 0 0 16px;
}
.p_company_access_lists_item_info_head h3 {
  font-size: 22px;
}
.p_company_access_lists_item_info_head a {
  color: #1e5b9e;
  background: #ebf3fd;
  display: block;
  padding: 8px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p_company_access_lists_item_info_head a:hover {
  background: #1e5b9e;
  color: #ebf3fd;
}
.p_company_access_lists_item_info_body_address {
  margin: 0 0 10px;
}
.p_company_access_lists_item_info_body_contact {
  margin: 0 0 25px;
}
.p_company_access_lists_item_info_body_contact tbody {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p_company_access_lists_item_info_body_contact tbody tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p_company_access_lists_item_info_body_contact tbody tr th {
  width: 120px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  margin: 0 10px 0 0;
  font-weight: unset;
}
.p_company_organization {
  margin: 0 auto 130px;
}
.p_company_organization_img {
  max-width: 760px;
  margin: 0 auto;
}
.p_company_organization_img:first-of-type {
  margin: 0 auto 100px;
}
.p_company_history {
  margin: 0 0 150px;
}
.p_company_history_lists_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  background: #f2f4f6;
  border-bottom: solid 1px #c5c5c5;
  line-height: 1.6;
}
.p_company_history_lists_item:nth-child(even) {
  background: #ffffff;
}
.p_company_history_lists_item_year {
  width: 80px;
  color: #1e5b9e;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p_company_history_lists_item_month {
  width: 76px;
  color: #1e5b9e;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .p_company_info {
    padding: 50px 0 0;
    margin: 0 0 60px;
  }
  .p_company_info .c_table {
    margin: 0 0 40px;
  }
  .p_company .c_button.btn--white {
    max-width: 280px;
  }
  .p_company_ttl {
    font-size: 22px;
    padding: 10px 0 10px 14px;
    margin: 0 0 24px;
  }
  .p_company_access {
    margin: 0 0 80px;
  }
  .p_company_access_lists_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p_company_access_lists_item_map, .p_company_access_lists_item_info {
    width: 100%;
  }
  .p_company_access_lists_item_map {
    height: 250px;
  }
  .p_company_access_lists_item_info {
    margin: 0 0 30px;
  }
  .p_company_access_lists_item_info_head a {
    padding: 8px;
    max-width: 200px;
  }
  .p_company_access_lists_item_info_body_address {
    font-size: 14px;
  }
  .p_company_access_lists_item_info_body_contact tbody tr th {
    width: 100%;
    text-align: unset;
    -moz-text-align-last: unset;
         text-align-last: unset;
    text-indent: -10px;
    margin: 0 0 10px;
  }
  .p_company_access_lists_item_info_body_contact tbody tr td {
    font-size: 14px;
  }
  .p_company_organization {
    margin: 0 auto 60px;
  }
  .p_company_organization_img:first-of-type {
    margin: 0 auto 45px;
  }
  .p_company_history {
    margin: 0 0 60px;
  }
  .p_company_history_lists {
    font-size: 14px;
  }
  .p_company_history_lists_item {
    padding: 10px 0;
  }
  .p_company_history_lists_item_year {
    width: 60px;
  }
  .p_company_history_lists_item_month {
    width: 40px;
  }
}
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_aboutus .c_lower_section {
  background: url(../img/about_us/about-us_bg_01.jpg) repeat-x top center/contain;
  padding: 100px 0 0;
}
.p_aboutus_ttl01 {
  max-width: 360px;
  border-radius: 50px;
  background: #1e5b9e;
  padding: 14px 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 46px;
}
.p_aboutus_philosophy {
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 60px 30px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
  margin: 0 0 56px;
}
.p_aboutus_philosophy_catch {
  font-size: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin: 0 0 40px;
}
.p_aboutus_philosophy_catch_blue {
  color: #1e5b9e;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
}
.p_aboutus_philosophy_body {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  line-height: 2;
  margin: 0 0 45px;
  color: #353535;
  font-weight: 600;
}
.p_aboutus_philosophy_body_blue {
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  color: #1e5b9e;
}
.p_aboutus_philosophy_txt {
  line-height: 1.6;
}
.p_aboutus_policy {
  background: #ebf3fd;
  padding: 60px 0;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
}
.p_aboutus_policy_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  width: 80%;
  margin: auto;
}
.p_aboutus_policy_lists_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p_aboutus_policy_lists_item_num {
  width: 90px;
  font-family: "din-2014", sans-serif;
  font-size: 80px;
  font-weight: bold;
  color: #1e5b9e;
  border-right: solid 1px #1e5b9e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_aboutus_policy_lists_item_contents {
  width: calc(100% - 90px);
  padding: 0 0 0 50px;
}
.p_aboutus_policy_lists_item_contents dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.p_aboutus_policy_lists_item_contents dl dt {
  font-size: 28px;
  font-weight: bold;
  color: #1e5b9e;
}
.p_aboutus_policy_lists_item_contents dl dd {
  line-height: 2;
}
.p_aboutus_message {
  background: url(../img/about_us/about-us_bg_02.svg) no-repeat center center/cover;
  padding: 300px 0 120px;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin: -130px 0 0;
  z-index: -1;
}
.p_aboutus_message::before, .p_aboutus_message::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 100%;
  background: url(../img/about_us/about-us_bg_03.svg) repeat-y center center/contain;
  top: 0;
}
.p_aboutus_message::before {
  left: -190px;
}
.p_aboutus_message::after {
  right: -190px;
}
.p_aboutus_message_inner {
  width: 90%;
  margin: auto;
}
.p_aboutus_message_ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 40px;
}
.p_aboutus_message_ttl span {
  border-bottom: solid 1px #ffffff;
  display: inline-block;
  padding: 0 0 15px;
}
.p_aboutus_message_catch {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 50px;
}
.p_aboutus_message_txt {
  line-height: 2.5;
  margin: 0 0 40px;
}
.p_aboutus_message_signature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p_aboutus_message_signature_name {
  font-size: 28px;
}

@media only screen and (max-width: 767px) {
  .p_aboutus .c_lower_section {
    background: url(../img/about_us/about-us_bg_01_sp.jpg) repeat-x top center/contain;
    padding: 30px 0 0;
  }
  .p_aboutus_ttl01 {
    max-width: 240px;
    padding: 10px 0;
    font-size: 18px;
    margin: 0 auto 30px;
  }
  .p_aboutus_philosophy {
    padding: 30px 10px;
    margin: 0 0 24px;
  }
  .p_aboutus_philosophy_catch {
    font-size: 30px;
    margin: 0 0 30px;
    line-height: 1.3;
  }
  .p_aboutus_philosophy_body {
    font-size: 16px;
    margin: 0 0 30px;
  }
  .p_aboutus_policy {
    padding: 30px 0;
  }
  .p_aboutus_policy_lists_item_num {
    width: 40px;
    font-size: 32px;
    border: unset;
  }
  .p_aboutus_policy_lists_item_contents {
    width: 100%;
    padding: unset;
  }
  .p_aboutus_policy_lists_item_contents dl {
    gap: 24px;
  }
  .p_aboutus_policy_lists_item_contents dl dt {
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p_aboutus_policy_lists_item_contents dl dt h3 {
    padding: 0 0 0 10px;
    line-height: 1.6;
    border-left: solid 1px #1e5b9e;
  }
  .p_aboutus_message {
    padding: 130px 0 70px;
    margin: -70px 0 0;
  }
  .p_aboutus_message::before, .p_aboutus_message::after {
    width: 130px;
  }
  .p_aboutus_message::before {
    left: -90px;
  }
  .p_aboutus_message::after {
    right: -90px;
  }
  .p_aboutus_message_inner {
    width: 80%;
  }
  .p_aboutus_message_ttl {
    font-size: 18px;
    margin: 0 0 40px;
  }
  .p_aboutus_message_catch {
    font-size: 26px;
    margin: 0 0 30px;
  }
  .p_aboutus_message_txt {
    margin: 0 0 30px;
    line-height: 2;
    text-align: left;
  }
  .p_aboutus_message_signature {
    font-size: 14px;
  }
  .p_aboutus_message_signature_name {
    font-size: 22px;
  }
}
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_metal_section {
  padding: 120px 0 160px;
  background: url(../img/metal/metal_bg.jpg) no-repeat center center/cover;
}
.p_metal_section_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10%;
  margin: 0 0 130px;
}
.p_metal_section_contents, .p_metal_section_img {
  width: 45%;
}
.p_metal_section_contents h2 {
  font-size: 26px;
  font-weight: bold;
  color: #1e5b9e;
  margin: 0 0 40px;
  line-height: 1.6;
}
.p_metal_section_contents p {
  line-height: 2;
}
.p_metal_section_img {
  position: relative;
  z-index: 0;
}
.p_metal_section_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e5b9e;
  top: 24px;
  left: 24px;
  z-index: -1;
}
.p_metal_section_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_metal_section_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.p_metal_section_links .c_button {
  width: calc(33.3333333333% - 16px);
}
.p_metal_section_links .c_button.btn--white_box {
  border: solid 1px #1e5b9e;
  text-align: unset;
  padding: 50px 0 50px 30px;
}
.p_metal_section_links .c_button.btn--white_box::before {
  right: 20px;
  width: 40px;
  height: 40px;
}
.p_metal_section_links .c_button.btn--white_box:hover::before {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .p_metal_section {
    padding: 30px 0 60px;
  }
  .p_metal_section_body {
    gap: 50px;
    margin: 0 0 100px;
  }
  .p_metal_section_contents, .p_metal_section_img {
    width: 100%;
  }
  .p_metal_section_contents h2 {
    font-size: 26px;
    margin: 0 0 20px;
  }
  .p_metal_section_links {
    gap: 16px;
  }
  .p_metal_section_links .c_button {
    max-width: 260px;
    width: 100%;
  }
  .p_metal_section_links .c_button.btn--white_box {
    text-indent: 30px;
    padding: 20px 0;
  }
  .p_metal_section_links .c_button.btn--white_box::before {
    right: 20px;
    width: 32px;
    height: 32px;
  }
  .p_metal_section_links .c_button.btn--white_box:hover::before {
    right: 10px;
  }
}
.p_strength_ttl {
  padding: 100px 0 90px;
}
.p_strength_points {
  padding: 60px 0;
  background: #ebf3fd;
}
.p_strength_points .section_inner01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8%;
}
.p_strength_points_box {
  width: 46%;
}
.p_strength_points_img {
  margin: 0 0 50px;
}
.p_strength_points_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  padding: 0 0 14px;
  border-bottom: solid 1px #1e5b9e;
  margin: 0 0 25px;
}
.p_strength_points_txt {
  color: #1e5b9e;
  line-height: 1.6;
}
.p_strength_flow {
  padding: 120px 0;
}
.p_strength_flow .section_inner01 {
  background: url(../img/strength/strength_flow_bg.jpg) no-repeat center center/cover;
  margin: 0 auto 80px;
}
.p_strength_flow .c_button {
  display: block;
  margin: auto;
}
.p_strength_flow_inner {
  width: 90%;
  margin: auto;
  padding: 80px 0 130px;
}
.p_strength_flow_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  background: #1e5b9e;
  padding: 16px 0 16px 20px;
  margin: 0 0 70px;
}
.p_strength_flow_lists {
  padding: 0 16% 0 100px;
}
.p_strength_flow_lists_item {
  padding: 0 0 80px 80px;
  position: relative;
  border-left: solid 1px #1e5b9e;
}
.p_strength_flow_lists_item:last-of-type {
  padding: 0 0 0 10%;
  border-left: unset;
}
.p_strength_flow_lists_item_num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: #1e5b9e;
  background: #ffffff;
  border: solid 1px #1e5b9e;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -30px;
  left: -48px;
}
.p_strength_flow_lists_item_num_en {
  font-weight: 600;
}
.p_strength_flow_lists_item_num_txt {
  font-size: 35px;
  font-weight: 600;
}
.p_strength_flow_lists_item_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  margin: 0 0 30px;
}
.p_strength_flow_lists_item_txt {
  line-height: 1.6;
  margin: 0 0 30px;
}
.p_strength_flow_lists_item_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_strength_flow_lists_item_img figure {
  width: calc(50% - 17px);
}

@media only screen and (max-width: 767px) {
  .p_strength_ttl {
    padding: 50px 0 30px;
  }
  .p_strength_points {
    padding: 50px 0;
  }
  .p_strength_points .section_inner01 {
    gap: 50px;
  }
  .p_strength_points_box {
    width: 100%;
  }
  .p_strength_points_img {
    margin: 0 0 40px;
  }
  .p_strength_points_ttl {
    font-size: 22px;
    padding: 0 0 12px;
    margin: 0 0 20px;
    text-align: center;
  }
  .p_strength_flow {
    padding: 48px 0 64px;
  }
  .p_strength_flow .section_inner01 {
    margin: 0 auto 64px;
  }
  .p_strength_flow_inner {
    padding: 24px 0 60px;
  }
  .p_strength_flow_ttl {
    font-size: 22px;
    padding: 10px 0 10px 14px;
    margin: 0 0 24px;
  }
  .p_strength_flow_lists {
    padding: 0 0 0 30px;
  }
  .p_strength_flow_lists_item {
    padding: 0 0 50px 50px;
  }
  .p_strength_flow_lists_item:last-of-type {
    padding: 0 0 0 50px;
  }
  .p_strength_flow_lists_item_num {
    width: 60px;
    height: 60px;
    top: -15px;
    left: -30px;
  }
  .p_strength_flow_lists_item_num_en {
    font-size: 10px;
  }
  .p_strength_flow_lists_item_num_txt {
    font-size: 22px;
  }
  .p_strength_flow_lists_item_ttl {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .p_strength_flow_lists_item_txt {
    margin: 0 0 20px;
  }
  .p_strength_flow_lists_item_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  .p_strength_flow_lists_item_img figure {
    width: 100%;
  }
}
.p_business_section {
  padding: 0 0 120px;
}
.p_business_section .section_inner01 {
  margin: 0 auto 80px;
}
.p_business_ttl {
  padding: 100px 0 90px;
}
.p_business .c_button {
  display: block;
  margin: auto;
}
.p_business_box {
  background: #ebf3fd;
  padding: 50px 0 64px;
  overflow: hidden;
  margin: 0 0 40px;
}
.p_business_box:last-of-type {
  margin: 0;
}
.p_business_box_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 90%;
  margin: 0 auto 56px;
}
.p_business_box_head_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  padding: 16px 35px 16px 0;
  background: #1e5b9e;
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
}
.p_business_box_head_ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e5b9e;
  top: 0;
  left: -120px;
  z-index: -1;
}
.p_business_box_head_body {
  color: #1e5b9e;
}
.p_business_box_head_body h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 16px;
}
.p_business_box_img {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .p_business_section {
    padding: 0 0 64px;
  }
  .p_business_section .section_inner01 {
    margin: 0 auto 64px;
  }
  .p_business_ttl {
    padding: 50px 0 30px;
  }
  .p_business_box {
    padding: 24px 0;
    margin: 0 0 24px;
  }
  .p_business_box_head {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 26px;
  }
  .p_business_box_head_ttl {
    font-size: 22px;
    padding: 12px 35px 12px 0;
    max-width: unset;
    width: 100%;
  }
  .p_business_box_head_body h4 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .p_business_box_img {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p_epuipment_section {
  padding: 0 0 120px;
}
.p_epuipment_section .section_inner02 {
  margin: 0 auto 80px;
}
.p_epuipment_ttl {
  padding: 100px 0 90px;
}
.p_epuipment .c_button {
  display: block;
  margin: auto;
}
.p_epuipment .details {
  margin: 0 0 30px;
}
.p_epuipment .details-summary {
  position: relative;
  display: block;
  padding: 20px;
  color: #1e5b9e;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  border: solid 2px #1e5b9e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p_epuipment .details-summary::-webkit-details-marker {
  display: none;
}
.p_epuipment .details-summary .btn {
  position: absolute;
  top: 37%;
  right: 5%;
  width: 18px;
  height: 18px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.p_epuipment .details-summary .btn:before, .p_epuipment .details-summary .btn:after {
  content: "";
  background: #1e5b9e;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  right: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.p_epuipment .details-summary .btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  right: 7px;
}
.p_epuipment .details-summary:hover {
  cursor: pointer;
  color: #ffffff;
  background: #1e5b9e;
}
.p_epuipment .details-summary:hover .btn:before, .p_epuipment .details-summary:hover .btn:after {
  background: #ffffff;
}
.p_epuipment .details-summary.is-active .btn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.p_epuipment .details-summary.is-active .btn:before {
  content: none;
}
.p_epuipment_table {
  width: 100%;
  border: solid 1px #c5c5c5;
}
.p_epuipment_table tr {
  border-bottom: solid 1px #c5c5c5;
}
.p_epuipment_table tr:nth-of-type(odd) {
  background: #f2f4f6;
}
.p_epuipment_table tr th {
  color: #ffffff;
  background: #1e5b9e;
  border: solid 1px #c5c5c5;
  width: 33.3333333333%;
  text-align: center;
  padding: 15px 0;
}
.p_epuipment_table tr td {
  padding: 15px 0;
  text-align: center;
  border-right: solid 1px #c5c5c5;
}

@media only screen and (max-width: 767px) {
  .p_epuipment_section {
    padding: 0 0 64px;
  }
  .p_epuipment_section .section_inner02 {
    margin: 0 auto 64px;
  }
  .p_epuipment_ttl {
    padding: 50px 0 30px;
  }
  .p_epuipment .details-summary {
    padding: 20px;
    font-size: 20px;
  }
  .p_epuipment_table tr th {
    font-size: 14px;
  }
  .p_epuipment_table tr td {
    font-size: 14px;
  }
}
/*
  [ファイル説明]
  プロジェクト固有のローディング画面を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_future_section {
  padding: 120px 0 160px;
  background: url(../img/future/future_bg.jpg) no-repeat center center/cover;
}
.p_future_section_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10%;
  margin: 0 0 130px;
}
.p_future_section_contents, .p_future_section_img {
  width: 45%;
}
.p_future_section_contents h2 {
  font-size: 26px;
  font-weight: bold;
  color: #1e5b9e;
  margin: 0 0 40px;
  line-height: 1.6;
}
.p_future_section_contents p {
  line-height: 2;
}
.p_future_section_img {
  position: relative;
  z-index: 0;
}
.p_future_section_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e5b9e;
  top: 24px;
  left: 24px;
  z-index: -1;
}
.p_future_section_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_future_section_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.p_future_section_links .c_button {
  width: calc(33.3333333333% - 16px);
}
.p_future_section_links .c_button.btn--white_box {
  border: solid 1px #1e5b9e;
  text-align: unset;
  padding: 0 0 0 30px;
  min-height: 120px;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_future_section_links .c_button.btn--white_box::before {
  right: 20px;
  width: 40px;
  height: 40px;
}
.p_future_section_links .c_button.btn--white_box:hover::before {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .p_future_section {
    padding: 30px 0 60px;
  }
  .p_future_section_body {
    gap: 50px;
    margin: 0 0 100px;
  }
  .p_future_section_contents, .p_future_section_img {
    width: 100%;
  }
  .p_future_section_contents h2 {
    font-size: 26px;
    margin: 0 0 20px;
  }
  .p_future_section_links {
    gap: 16px;
  }
  .p_future_section_links .c_button {
    max-width: 260px;
    width: 100%;
  }
  .p_future_section_links .c_button.btn--white_box {
    min-height: 60px;
  }
  .p_future_section_links .c_button.btn--white_box::before {
    right: 20px;
    width: 32px;
    height: 32px;
  }
  .p_future_section_links .c_button.btn--white_box:hover::before {
    right: 10px;
  }
}
.p_power-generation_ttl {
  padding: 100px 0 90px;
}
.p_power-generation_section_catch {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  line-height: 1.6;
  text-align: center;
  background: #ebf3fd;
  padding: 50px 0;
}
.p_power-generation_section .section_inner01 {
  padding: 120px 0 200px;
}
.p_power-generation_section .section_inner01 .c_pagination {
  margin: 60px 0 50px;
}
.p_power-generation_section .section_inner01 .c_button {
  display: block;
  margin: auto;
}
.p_power-generation_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px;
}
.p_power-generation_lists_item {
  max-width: calc(33.3333333333% - 32px);
  width: 100%;
}
.p_power-generation_lists_item_img {
  margin: 0 0 15px;
}
.p_power-generation_lists_item_img_bg {
  background: #f0f0f0;
  aspect-ratio: 46/35;
  margin: 0 0 15px;
}
.p_power-generation_lists_item_img_bg img {
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p_power-generation_lists_item_img_ttl {
  font-weight: bold;
}
.p_power-generation_lists_item_access {
  margin: 0 0 10px;
}

@media only screen and (max-width: 767px) {
  .p_power-generation_ttl {
    padding: 50px 0 30px;
  }
  .p_power-generation_section_catch {
    font-size: 18px;
    padding: 30px 0;
  }
  .p_power-generation_section_catch .section_inner01 {
    padding: 60px 0 100px;
  }
  .p_power-generation_section_catch .section_inner01 .c_pagination {
    margin: 40px 0 50px;
  }
  .p_power-generation_lists {
    gap: 20px;
  }
  .p_power-generation_lists_item {
    max-width: 100%;
  }
  .p_power-generation_lists_item_img {
    margin: 0 0 10px;
  }
  .p_power-generation_lists_item_access {
    font-size: 14px;
    line-height: 1.4;
  }
  .p_power-generation_lists_item_spec tr {
    display: grid;
    gap: 10px;
  }
  .p_power-generation_lists_item_spec tr td {
    font-size: 14px;
    line-height: 1.4;
  }
}
.p_energy_ttl {
  padding: 100px 0 90px;
}
.p_energy_section_catch {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  line-height: 1.6;
  text-align: center;
  background: #ebf3fd;
  padding: 50px 0;
}
.p_energy_section .section_inner01 {
  padding: 120px 0 200px;
}
.p_energy_section .section_inner01 .c_button {
  display: block;
  margin: auto;
}
.p_energy_section_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 9%;
  margin: 0 0 120px;
}
.p_energy_section_box_img {
  width: 52%;
  position: relative;
}
.p_energy_section_box_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e5b9e;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}
.p_energy_section_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_energy_section_box_info {
  width: 39%;
}
.p_energy_section_box_info h3 {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  padding: 0 0 30px;
  border-bottom: solid 1px #1e5b9e;
  margin: 0 0 30px;
}
.p_energy_section_box_info h4 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 20px;
}
.p_energy_section_box_info p {
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p_energy_ttl {
    padding: 50px 0 30px;
  }
  .p_energy_section_catch {
    font-size: 18px;
    padding: 30px 0;
  }
  .p_energy_section .section_inner01 {
    padding: 60px 0 100px;
  }
  .p_energy_section_box {
    margin: 0 0 80px;
  }
  .p_energy_section_box:first-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p_energy_section_box_img {
    width: 100%;
  }
  .p_energy_section_box_img::before {
    bottom: -20px;
    right: -20px;
  }
  .p_energy_section_box_info {
    width: 100%;
  }
  .p_energy_section_box_info h3 {
    font-size: 26px;
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  .p_energy_section_box_info h4 {
    font-size: 20px;
    margin: 0 0 18px;
  }
  .p_energy_section_box_info p {
    margin: 0 0 30px;
  }
}
.p_primary_ttl {
  padding: 100px 0 90px;
}
.p_primary_section_catch {
  font-size: 32px;
  font-weight: bold;
  color: #1e5b9e;
  line-height: 1.6;
  text-align: center;
  background: #ebf3fd;
  padding: 50px 0;
}
.p_primary_section .section_inner01 {
  padding: 120px 0 200px;
}
.p_primary_section .section_inner01 .c_button {
  display: block;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .p_primary_ttl {
    padding: 50px 0 30px;
  }
  .p_primary_section_catch {
    font-size: 18px;
    padding: 30px 0;
  }
  .p_primary_section_catch .section_inner01 {
    padding: 60px 0 100px;
  }
}
/* javascript: JS が付与する状態クラスの見た目です。 */
/*
  [ファイル説明]
  JavaScript が付け外しする状態クラス is_fixed / is_open の見た目を管理するファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.p_header.is_fixed {
  position: fixed;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-animation: header_slide_down 0.3s ease;
          animation: header_slide_down 0.3s ease;
  padding: 0;
}

.p_header.is_open .p_header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p_header.is_open .p_header__overlay {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes header_slide_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header_slide_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fadeHeaderTrigger,
.js-fadeHereTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeRightTrigger,
.js-fadeLeftTrigger,
.js-fademvTrigger {
  opacity: 0;
}

.js-fadeHeader {
  -webkit-animation: fadeDownAnime 0.5s ease forwards;
          animation: fadeDownAnime 0.5s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fademv {
  -webkit-animation: fademvAnime 0.5s ease forwards;
          animation: fademvAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  opacity: 0;
}
@-webkit-keyframes fademvAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fademvAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeHere {
  -webkit-animation: fadeHereAnime 0.5s ease forwards;
          animation: fadeHereAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.js-fadeHere:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-fadeHere:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.js-fadeHere:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.js-fadeHere:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js-fadeHere:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.js-fadeHere:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.js-fadeHere:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.js-fadeHere:nth-child(9) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@-webkit-keyframes fadeHereAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeHereAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeUp {
  -webkit-animation: fadeUpAnime 0.5s ease forwards;
          animation: fadeUpAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.js-fadeUp:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js-fadeUp:nth-child(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.js-fadeUp:nth-child(4) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.js-fadeUp:nth-child(5) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.js-fadeUp:nth-child(6) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.js-fadeUp:nth-child(7) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js-fadeUp:nth-child(8) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.js-fadeUp:nth-child(9) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.js-fadeUp:nth-child(10) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.js-fadeUp:nth-child(11) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.js-fadeUp:nth-child(12) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js-fadeUp:nth-child(13) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.js-fadeUp:nth-child(14) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.js-fadeUp:nth-child(15) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.js-fadeUp:nth-child(16) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.js-fadeUp:nth-child(17) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.js-fadeUp:nth-child(18) {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.js-fadeUp:nth-child(19) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
.js-fadeUp:nth-child(20) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.js-fadeUp:nth-child(21) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.js-fadeUp:nth-child(22) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.js-fadeUp:nth-child(23) {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}
.js-fadeUp:nth-child(24) {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}
.js-fadeUp:nth-child(25) {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}
.js-fadeUp:nth-child(26) {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}
.js-fadeUp:nth-child(27) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.js-fadeUp:nth-child(28) {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}
.js-fadeUp:nth-child(29) {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}
.js-fadeUp:nth-child(30) {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}
.js-fadeUp:nth-child(31) {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fadeDown {
  -webkit-animation: fadeDownAnime 0.5s ease forwards;
          animation: fadeDownAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.js-fadeDown:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-fadeDown:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-faderight {
  -webkit-animation: fadeRightAnime 0.5s ease forwards;
          animation: fadeRightAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.js-faderight:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-faderight:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-fadeleft {
  -webkit-animation: fadeLeftAnime 0.5s ease forwards;
          animation: fadeLeftAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.js-fadeleft:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-fadeleft:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-slideUp {
  -webkit-animation: slideUpAnime 0.5s ease forwards;
          animation: slideUpAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js-slideUp:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-slideUp:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes slideUpAnime {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUpAnime {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-slideDown {
  -webkit-animation: slideDownAnime 0.5s ease forwards;
          animation: slideDownAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js-slideDown:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-slideDown:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes slideDownAnime {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDownAnime {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-slideright {
  -webkit-animation: slideRightAnime 0.5s ease forwards;
          animation: slideRightAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js-slideright:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-slideright:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes slideRightAnime {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideRightAnime {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-slideleft {
  -webkit-animation: slideLeftAnime 0.5s ease forwards;
          animation: slideLeftAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js-slideleft:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.js-slideleft:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes slideLeftAnime {
  from {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideLeftAnime {
  from {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.bgextend {
  -webkit-animation: bgextendAnimeBase 1s forwards;
          animation: bgextendAnimeBase 1s forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgextend .bgappear {
  -webkit-animation: bgextendAnimeSecond 1s forwards 0.6s;
          animation: bgextendAnimeSecond 1s forwards 0.6s;
  opacity: 0;
}
@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #1e5b9e;
  -webkit-animation: bgLRextendAnime 1s forwards;
          animation: bgLRextendAnime 1s forwards;
}
@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.smoothText {
  overflow: hidden;
  display: block;
}
.smoothTextTrigger {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
          transform: translate3d(0, 100%, 0) skewY(12deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  display: block;
}
.smoothTextAppear {
  -webkit-transform: translate3d(0, 0, 0) skewY(0);
          transform: translate3d(0, 0, 0) skewY(0);
}

/* utility: 例外的な表示切替など、補助用途のクラスです。 */
/*
  [ファイル説明]
  PC / SP で表示切り替えを行う補助クラスをまとめたファイルです。

  [コードの見方]
  - 上から下へ読めば、対象パーツの基本形 → 状態変化 → レスポンシブ対応の順で追えるようにしています。
  - 変数や mixin を使っている箇所は、setting / mixin フォルダを先に見ると理解しやすいです。
*/
.u_sp_only {
  display: none !important;
}

.u_tab_only {
  display: none !important;
}

@media only screen and (max-width: 1030px) {
  .u_tab_only {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .u_pc_only {
    display: none !important;
  }
  .u_sp_only {
    display: block !important;
  }
}/*# sourceMappingURL=styles.css.map */