@charset "UTF-8";
/*
	Theme Name: LAYUP（レイアップ）
	Version: 1.0.0
	Author: Le-in.Inc
    Author URI: https://le-in.net/
    Description: LAYUP（レイアップ）のWordPressオリジナルテーマです。
    Text Domain: layup
*/
/* 『style.scss』：全ページ共通クラス用Scssファイル
===================================================
**「ファイル概要」
・全体のCSS設計や、全ページに共通して登場するクラスへの割り当てを行います。
	※ヘッダー、フッター、下層ページの冒頭など
**
====================================================== */
/* クラス名について
===================================================
・クラス名命名規則は基本的にBEM（Block Element Modifier）を採用しています。
・クラス名は接頭語をわかりやすいそのセクションの意味を表現する単語とし、以降はそのセクションの構造的意味合いの単語とします。
	※TOPページに登場するクラス名のみ、すべてのクラス名の冒頭に"front"を付与しています。例えばトップページと下層ページで同じ系統の記事一覧を表示する場合でも、レイアウトが異なる場合があるからです。
・シングルクラス方式を採用しています。1つのタグに対して付与するクラス名は原則1つとしていますが、状況に応じて複数付与する場合もあります。
	※例：同様の並びの兄弟要素の末尾要素のみ、間隔を広げるために末尾の要素に2つ目のクラスを付与するなど。
====================================================== */
/* ブレイクポイント
===================================================
**
	768pxまではPCサイズ、767px以下はスマホサイズで切り替える
	・（max-width:1339px）
	・（max-width:767px）
**
==================================================== */
.bp-sp_i, .bp-sp_ib, .bp-sp_b {
  display: none;
}

@media screen and (max-width: 767px) {
  .bp-pc {
    display: none;
  }
  .bp-sp_i {
    display: inline;
  }
  .bp-sp_ib {
    display: inline-block;
  }
  .bp-sp_b {
    display: block;
  }
}
/* 『基本要素のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	”ブラウザ毎のデフォルト設定をリセット”。
	余白関係：0にする
	リストスタイルの余白無し、接頭マーク無し
	画像ファイル：親要素の幅を超えない幅
	画像の下の空白を埋めるようにする
	**
==================================================== */
/* マージン初期化&ボックスサイジング */
body, h1, h2, h3, h4, h5, h6, p, div,
figure, ul, ol, li, dl, dt, dd,
article, a, span, nav, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストスタイルのリセット */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* 画像ファイル：幅を大きく */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンクテキスト */
a {
  text-decoration: none;
  color: inherit;
}

a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
/* 『フォーム部品のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	ブラウザ毎のデフォルト設定をリセット。
	・文字色とフォント：body要素を引き継ぐようにする
	・余白関係：0にする
	・枠線：無しにする
	・背景色：無しにする
	**
==================================================== */
/* 初期形状のリセット */
input:not([type=radio]),
select,
button,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none;
}

/* マウスオンでカーソル表示 */
input[type=submit],
input[type=button],
button {
  cursor: pointer;
}

/* 連絡先タグの文字スタイル */
address {
  font-style: normal;
}

/* テーブルタグのスタイル */
table {
  border-collapse: collapse;
  width: 100%;
}

/* フィールドセットタグのスタイル */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

/* ===================================================
	※※本サイトの採用フォントについて※※
	Google Fontより採用
	- 通常フォント：Noto Sans JP
	- 英字フォント：Robot
	- その他フォント：Zen Maru Gothic (記事タグ)
==================================================== */
/* ===================================================
	基本要素のCSS設定
==================================================== */
:root {
  --base-color-blue: #000097;
  --base-color-orange: #eb791b;
  --base-color-yellow: #d4ca01;
  --base-color-yellow-hover: #e6de4b;
  --base-color-black: #2d2d2d;
  --base-color-black-hover: #8f8f8f;
  --base-color-bg: #f4f4f4;
  --base-color-black-hover: #666;
}

body {
  font: 500 1rem/1.9333333333 "Noto Sans JP", sans-serif;
  color: #000;
  scroll-behavior: auto;
  background-color: var(--base-color-bg);
}
body.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

/* 『フォーム部品CSS』
==================================================== */
form {
  /* テキスト */
}
form input[type=text]:not(.not-form),
form input[type=tel],
form input[type=email],
form input[type=number],
form input[type=password],
form textarea {
  padding: 0.85em;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
  background-color: #e6e6e6;
  border: 2px solid #e6e6e6;
}
form input[type=text]:not(.not-form)::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=number]::-moz-placeholder, form textarea::-moz-placeholder {
  color: #999;
}
form input[type=text]:not(.not-form)::placeholder,
form input[type=tel]::placeholder,
form input[type=email]::placeholder,
form input[type=number]::placeholder,
form textarea::placeholder {
  color: #999;
}
form textarea {
  resize: vertical;
}
form select {
  padding: 1em 3em 1em 1em;
  width: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background: top 50% right 20px/12px 24px url(./assets/img/icon-triangle.png) no-repeat;
  cursor: pointer;
  background-color: white;
}
form input[type=text]:not(.not-form):focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form input[type=number]:focus,
form select:focus-visible,
form input[type=checkbox]:focus,
form textarea:focus {
  border-color: #97c6ff;
  background-color: white;
}
form {
  /* 送信ボタン */
}
form input[type=submit],
form button {
  display: inline-block;
  padding: 1.5em 4em;
  background-color: black;
  color: white;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  transition: background-color 300ms;
}
form input[type=submit]:hover,
form button:hover {
  background-color: #666;
}
form input[type=checkbox] {
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #e6e6e6;
  position: relative;
  border: 2px solid #e6e6e6;
}
form input[type=checkbox]:focus {
  border-color: #97c6ff;
  background-color: white;
}
form input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 60%;
  height: 32%;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}
form input[type=checkbox]:checked {
  background-color: black;
  border-color: black;
}
form input[type=checkbox]:checked::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  form input[type=text],
  form input[type=tel],
  form input[type=email],
  form textarea {
    padding: 0.5em;
    font-size: 1.6rem;
  }
  form select {
    font-size: 1.6rem;
    padding: 0.5em 2em 0.5em 0.5em;
    background-position-x: calc(100% - 10px);
  }
  form input[type=checkbox]:focus {
    border-color: #f2f0f0;
  }
}
/* ===================================================
	アニメーション用クラス
==================================================== */
[data-animate=scroll-slideIn-right],
[data-animate-item=slideIn-right] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
[data-animate=scroll-slideIn-right].is-show,
[data-animate-item=slideIn-right].is-show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 500ms ease-in;
}

[data-animate=scroll-fadeIn-left],
[data-animate-item=fadeIn-left] {
  opacity: 0;
  transform: translateX(5px);
}
[data-animate=scroll-fadeIn-left].is-show,
[data-animate-item=fadeIn-left].is-show {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 500ms ease-in, transform 500ms ease-in-out;
}

/* ===================================================
	サイト全体包括要素
==================================================== */
/* ===================================================
	コンテナ（サイトコンテンツ幅）
==================================================== */
.l-container {
  max-width: 1260px;
  margin: 0 auto;
}
.l-container--wide {
  padding-left: 6rem;
  padding-right: 6rem;
}
.l-container--post {
  margin: 0 auto;
  max-width: 875px;
}
.l-container--form {
  margin: 0 auto;
  max-width: 820px;
}

@media screen and (max-width: 1339px) {
  .l-container {
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 20px;
  }
}
/* ===================================================
	ヘッダー
==================================================== */
.g-header {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}
.g-header__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 56px;
  background-color: white;
  line-height: 1;
}
.g-header__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 5px 0 46px;
  font-size: 0;
}
.g-header__toggle {
  display: block;
  padding: 10px;
  font-size: inherit;
}
.g-header__toggle-inner {
  display: inline-block;
  width: 24px;
  height: 16px;
  position: relative;
}
.g-header__toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}
.g-header__toggle-line:first-child {
  top: 0;
}
.g-header__toggle-line:nth-child(2) {
  top: calc(50% - 1px);
}
.g-header__toggle-line:last-child {
  bottom: 0;
}
.g-header__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.g-header__social-link {
  display: inline-block;
  padding: 6px;
  transition: opacity 300ms;
}
.g-header__social-link:hover {
  opacity: 0.5;
}
.g-header__contact {
  flex-grow: 0;
  flex-shrink: 0;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding: calc(2.5em + 10px) 0 2.5em 0;
  background-color: black;
  color: white;
  font: 500 1rem/1 "Roboto", sans-serif;
  position: relative;
  transition: background-color 300ms;
}
.g-header__contact:hover {
  background-color: #666;
}
.g-header__contact::before, .g-header__contact::after {
  content: "";
  position: absolute;
  top: 0;
}
.g-header__contact::before {
  right: 0;
  border-style: solid;
  border-width: 10px 0 0 15px;
  border-color: var(--base-color-orange) transparent;
}
.g-header__contact::after {
  left: 0;
  border-style: solid;
  border-width: 10px 15px 0 0;
  border-color: white transparent;
}

/* ===================================================
	フッター
==================================================== */
.g-footer {
  padding: 56px 0 40px;
  background-color: white;
}
.g-footer__inner {
  display: flex;
  justify-content: space-between;
}
.g-footer__social {
  margin-left: -6px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0;
}
.g-footer__social-link {
  display: block;
  padding: 6px;
  transition: opacity 300ms;
}
.g-footer__social-link:hover {
  opacity: 0.5;
}
.g-footer__lead {
  margin-top: 2em;
  font: 400 1.25rem/1 "Roboto", sans-serif;
  color: #949494;
}
.g-footer__logo-link {
  margin-top: 0.6em;
  display: inline-block;
  transition: opacity 300ms;
}
.g-footer__logo-link:hover {
  opacity: 0.5;
}
.g-footer__address {
  margin-top: 1.7em;
  font: 500 0.75rem/1.5 "Roboto", sans-serif;
}
.g-footer__copyrights {
  margin-top: 0.5em;
  font: 500 0.75rem/1 "Roboto", sans-serif;
  line-height: 1.5;
}
.g-footer__nav {
  width: -moz-max-content;
  width: max-content;
}
.g-footer__menu {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  gap: 1.2em 3.5em;
  font: 500 0.9375rem/1.5 "Roboto", sans-serif;
}
.g-footer__menu-item:nth-child(odd):last-child {
  grid-column: 2;
  grid-row: -1;
}
.g-footer__menu-item a {
  transition: opacity 300ms;
}
.g-footer__menu-item a:hover {
  opacity: 0.5;
}

/* ===================================================
	CTAエリア：お問い合わせ
==================================================== */
.c-cta-contact {
  margin: 120px 0 80px;
}
.c-cta-contact__panel {
  padding: 48px 0 100px;
  background-color: black;
  color: white;
  text-align: center;
  position: relative;
}
.c-cta-contact__decoration {
  position: absolute;
  left: 50%;
  top: -55px;
  transform: translateX(-50%);
  width: 9.3125rem;
  aspect-ratio: 149/153;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-image: linear-gradient(180deg, #ee771d 0%, transparent 100%);
}
.c-cta-contact__title {
  font: 200 7.5rem/1 "Roboto", sans-serif;
  letter-spacing: -0.07em;
  color: rgb(76.5, 76.5, 76.5);
}
.c-cta-contact__lead {
  margin-top: 0.5em;
  font: 700 2.5rem/1.2 "Roboto", sans-serif;
}
.c-cta-contact__emphasis {
  color: var(--base-color-orange);
}
.c-cta-contact__text {
  margin-top: 1em;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.8181818182;
}
.c-cta-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 294px;
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: var(--base-color-yellow);
  font: 500 1.25rem/1 "Roboto", sans-serif;
  color: white;
  aspect-ratio: 294/56;
  transform: translate(-50%, -50%);
  transition: background-color 300ms;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 15px));
}
.c-cta-contact__btn:hover {
  background-color: var(--base-color-yellow-hover);
}

/* ===================================================
	CTAエリア：Recruit
==================================================== */
.c-cta-recruit {
  margin: 0 0 8rem;
  background: var(--base-color-orange) center center/cover no-repeat;
}
.c-cta-recruit__panel {
  margin-right: auto;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
}
.c-cta-recruit__inner {
  margin: 0 auto;
  padding: 100px 0 120px;
  max-width: 1160px;
  font-family: "Roboto", sans-serif;
  color: white;
}
.c-cta-recruit__title {
  font-weight: 100;
  font-size: 7.5rem;
  line-height: 1;
  color: rgb(241, 161.2, 95.4);
}
.c-cta-recruit__lead {
  font-weight: 700;
  font-size: 2.5rem;
}
.c-cta-recruit__description {
  font-size: 1.375rem;
  line-height: 1.8181818182;
}
.c-cta-recruit__footer {
  margin-top: 3.25rem;
  display: flex;
  align-items: center;
  gap: 0 1.75rem;
}
.c-cta-recruit__hr {
  margin: 0;
  flex-grow: 1;
  border-style: solid;
  border-width: 1px 0 0;
  border-color: black;
}
.c-cta-recruit__link {
  background-color: black;
  padding: 1em 2em 1em calc(2em + 0.625rem);
  font-size: 1.25rem;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0.625rem 100%, 0 calc(100% - 1.125rem));
  flex-grow: 0;
  flex-shrink: 0;
  transition: background-color 300ms;
}
.c-cta-recruit__link:hover {
  background-color: #666;
}

/* ===================================================
	フッター・ニュース
==================================================== */
.foot-news {
  padding: 28px 0 40px;
  background-color: white;
  margin: 2px 0;
}
.foot-news__inner {
  position: relative;
  display: flex;
}
.foot-news__decoration {
  position: absolute;
  top: -0.5rem;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.foot-news__title {
  position: relative;
  z-index: 2;
  font: 500 1.5rem/1 "Roboto", sans-serif;
}
.foot-news__head {
  width: 116px;
}
.foot-news__archives {
  width: calc(100% - 116px);
}
.foot-news__archive {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
}
.foot-news__archive:not(:first-child) {
  margin-top: 0.5em;
}
.foot-news__archive-time {
  width: 102px;
}
.foot-news__archive-title {
  max-width: calc(100% - 102px);
  font-size: inherit;
  font-weight: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.foot-news__archive-link:hover {
  text-decoration: underline;
}
.foot-news__more {
  margin-top: 0.2em;
}
.foot-news__more-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.2em;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 300ms;
}
.foot-news__more-link:hover {
  opacity: 0.5;
}
.foot-news__more-text {
  font: 500 1rem/1 "Roboto", sans-serif;
}
/* ===================================================
	下層ページヘッダー
==================================================== */
.c-page-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  padding-top: 1.75rem;
}
.c-page-header__tagline {
  font: 600 0.75rem/1 "Roboto", sans-serif;
  color: #2d2d2d;
}
.c-page-header__logo-wrapper {
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: -5px;
}
.c-page-header__logo-link {
  padding: 5px;
  font-size: 0;
  transition: opacity 300ms;
}
.c-page-header__logo-link:hover {
  opacity: 0.5;
}
.c-page-header__statement {
  font-weight: 700;
  font-size: 0.875rem;
  color: #5b5b5b;
}
/* ===================================================
	セクション共通パーツ
==================================================== */
.c-page-title {
  padding: 9.3125rem 6rem 0;
}
.c-page-title__title {
  display: grid;
  grid-template-columns: auto;
}
.c-page-title__en, .c-page-title__ja {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
.c-page-title__en {
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--base-color-black);
  position: relative;
  z-index: 1;
}
.c-page-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.3em;
  z-index: -1;
  width: 48px;
  aspect-ratio: 48/51;
  background-image: linear-gradient(180deg, #ee771d 0%, #fbddc7 42%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.c-page-title__ja {
  font-weight: 700;
  font-size: 1rem;
  color: black;
}

@media screen and (max-width: 767px) {
  .section-entitle {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 375px) {
  .section-title {
    font-size: 2.7rem;
  }
}
/* ===================================================
	リンクボタン
==================================================== */
.link-button {
  display: block;
  aspect-ratio: 1/1;
  width: 84px;
  height: auto;
  background: right center/200% 100% linear-gradient(90deg, black 0%, black 50%, var(--base-color-yellow) 50%, var(--base-color-yellow) 100%) no-repeat;
  transition: background-position 300ms;
  font-size: 0;
}
.link-button svg {
  width: 100%;
  height: 100%;
}
.link-button svg path {
  fill: black;
  transition: fill 0.3s linear;
}
.link-button .group-default {
  transform: translate(calc(50% - 12.4px), calc(50% - 6.5px));
}
.link-button .group-small {
  transform: scale(1.6153846154) translate(19px, 21px);
}
button:hover .link-button, [href]:hover .link-button, .link-button[href]:hover {
  background-position: left center;
}
button:hover .link-button .arrow-svg path, [href]:hover .link-button .arrow-svg path, .link-button[href]:hover .arrow-svg path {
  fill: #ffda55;
}

@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  button:hover .link-button, [href]:hover .link-button, .link-button[href]:hover {
    background-position: right center;
  }
  button:hover .link-button .arrow-svg path, [href]:hover .link-button .arrow-svg path, .link-button[href]:hover .arrow-svg path {
    fill: black;
  }
}
@media screen and (max-width: 767px) {
  .link-button {
    width: 72px;
  }
}
/* ===================================================
	ページネーション（記事一覧）
==================================================== */
.c-pagination-archive {
  padding: 2.5rem 0;
  background-color: white;
}
.c-pagination-archive .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.9375rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.c-pagination-archive .page-numbers {
  font-size: 1.125rem;
  width: 2.2222222222em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.c-pagination-archive .page-numbers.next,
.c-pagination-archive .page-numbers.prev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination-archive .page-numbers[href] {
  transition: background-color 300ms;
}
.c-pagination-archive .page-numbers[href]:hover {
  background-color: #999;
}
.c-pagination-archive .current {
  background-color: black;
  color: white;
}

/* ===================================================
	ページネーション（記事詳細）
==================================================== */
.c-pagination-single {
  margin-top: 6rem;
}
.c-pagination-single__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2em;
  font-size: 1.125rem;
  line-height: 1;
}
.c-pagination-single__button {
  padding: 0.75em 1.5em;
  border-radius: 9999px;
}
.c-pagination-single__button--center {
  background-color: black;
  color: white;
  transition: background-color 300ms;
}
.c-pagination-single__button--center:hover {
  background-color: #666;
}
.c-pagination-single__button--prev, .c-pagination-single__button--next {
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: flex;
  align-items: center;
  gap: 0 0.6666666667em;
}
.c-pagination-single__button--prev[href], .c-pagination-single__button--next[href] {
  transition: color 300ms;
}
.c-pagination-single__button--prev[href] path, .c-pagination-single__button--next[href] path {
  transition: stroke 300ms;
}
.c-pagination-single__button--prev[href]:hover, .c-pagination-single__button--next[href]:hover {
  color: #999;
}
.c-pagination-single__button--prev[href]:hover path, .c-pagination-single__button--next[href]:hover path {
  stroke: #999;
}
.c-pagination-single__button--prev:not([href]), .c-pagination-single__button--next:not([href]) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===================================================
	記事本文の共通WP出力DOM調整（お知らせ・コラム等）
==================================================== */
.l-post-content {
  font-weight: 500;
  font-size: 0.9375rem;
}
.l-post-content > *:not(:last-child) {
  margin-bottom: 2em;
}
.l-post-content .wp-block-image {
  margin-right: -6.4%;
  margin-left: -6.4%;
}
.l-post-content .wp-block-image .aligncenter {
  text-align: center;
}
.l-post-content .wp-element-caption {
  font-size: 86.6666666667%;
}
.l-post-content .wp-element-caption {
  font-size: 86.6666666667%;
}
.l-post-content .wp-block-list {
  border: 1px solid black;
  border-radius: 1.3333333333em;
  padding: 2em 2.1em;
}
.l-post-content .wp-block-list li:not(:first-child) {
  margin-top: 0.5em;
}
.l-post-content .wp-block-list li::before {
  position: absolute;
  top: 0;
}
.l-post-content ul.wp-block-list li {
  position: relative;
  padding-left: 1em;
}
.l-post-content ul.wp-block-list li::before {
  content: "・";
  right: calc(100% - 1em);
}
.l-post-content ol.wp-block-list {
  counter-reset: number;
}
.l-post-content ol.wp-block-list li {
  counter-increment: number;
  position: relative;
  padding-left: 1.5em;
}
.l-post-content ol.wp-block-list li::before {
  content: counter(number) ".";
  right: calc(100% - 1.5em);
}
.l-post-content .wp-block-quote {
  margin-block: 0 2em;
  margin-inline: 0;
  padding-left: 5.4666666667em;
  position: relative;
}
.l-post-content .wp-block-quote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 0;
  font: 400 7.6em/0.75 "Zen Maru Gothic", sans-serif;
  color: #e8e8e8;
}

/* ===================================================
	テスト
==================================================== */
/* ===================================================
	MV
==================================================== */
.mv {
  height: 100vh;
  height: 100svh;
}
.mv__media {
  height: 100%;
}
.mv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/* ===================================================
	アプローチ
==================================================== */
.top-approach {
  padding: 112px 0 0;
  position: relative;
  overflow: hidden;
}
.top-approach__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - ((100% - 1248px) / 2 + 765px));
  height: 1000px;
  background-color: black;
}
.top-approach__inner {
  display: grid;
  grid-template-columns: 1fr 610px;
  position: relative;
}
.top-approach__decoration1-wrapper {
  position: absolute;
  top: 258px;
  right: calc(50% + 100px);
}
.top-approach__decoration2-wrapper {
  position: absolute;
  top: 974px;
  right: calc(50% - 180px);
}
.top-approach__decoration2-message {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 7.5rem;
  fill: white;
  letter-spacing: -0.07em;
}
.top-approach__cover {
  line-height: 1;
  color: white;
}
.top-approach__logo {
  margin-right: 0.2em;
}
.top-approach__cover-sub {
  font-weight: 300;
  font-size: 3.75rem;
  opacity: 0.75;
}
.top-approach__cover-main {
  font-weight: 300;
  font-size: 5.625rem;
  letter-spacing: -0.03em;
  color: #5b5b5b;
  opacity: 0.75;
}
.top-approach__body {
  font-family: "Roboto", sans-serif;
  position: relative;
}
.top-approach__body-mark {
  position: absolute;
  top: 3.2em;
  right: calc(100% + 1.5rem);
  width: 2rem;
  aspect-ratio: 32/8;
  background-color: var(--base-color-orange);
  clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.top-approach__heading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
}
.top-approach__heading-main {
  font-weight: 500;
  font-size: 2.5rem;
}
.top-approach__description {
  margin-top: 3em;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.9;
}
.top-approach__description-item {
  display: inline-block;
}
.top-approach__diagram-wrapper {
  margin-top: 1.2rem;
}
.top-approach__diagram {
  width: 100%;
}
.top-approach__diagram-text {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  fill: black;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.top-approach__diagram-number {
  font-style: italic;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  fill: #d4ca01;
  opacity: 0;
}
@keyframes diagramNumberFadeIn {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  24% {
    opacity: 0.3;
  }
  36% {
    opacity: 0.3;
  }
  36% {
    opacity: 0.8;
  }
  48% {
    opacity: 0.8;
  }
  48% {
    opacity: 0.2;
  }
  60% {
    opacity: 0.2;
  }
  60% {
    opacity: 0.6;
  }
  72% {
    opacity: 0.6;
  }
  72% {
    opacity: 0.3;
  }
  84% {
    opacity: 0.3;
  }
  84% {
    opacity: 0.8;
  }
  96% {
    opacity: 0.8;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.top-approach__diagram-group-center {
  transform: scale(0);
  transition: transform 500ms cubic-bezier(0, 0.5, 0, 1);
  transform-origin: 50% 50%;
}
.top-approach__diagram-group-center.is-show {
  transform: scale(1);
}
.top-approach__diagram-group-circle {
  opacity: 0;
  transition: opacity 200ms;
}
.top-approach__diagram-group-circle.is-show {
  opacity: 1;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-number, .top-approach__diagram-group-circle.is-show .top-approach__diagram-number {
  animation-name: diagramNumberFadeIn;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-number {
  animation-delay: 1000ms;
}
.top-approach__diagram-group-circle.is-show .top-approach__diagram-number {
  animation-delay: 500ms;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-text, .top-approach__diagram-group-circle.is-show .top-approach__diagram-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition-property: clip-path;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-text {
  transition-delay: 1700ms;
}
.top-approach__diagram-group-circle.is-show .top-approach__diagram-text {
  transition-delay: 900ms;
}
.top-approach__diagram-pointer {
  transform: scale(0);
  transform-origin: center center;
}
.top-approach__diagram-centerline {
  opacity: 0;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-pointer {
  transform: scale(1);
  transition: transform 500ms 400ms ease-in-out;
}
.top-approach__diagram-group-center.is-show .top-approach__diagram-centerline {
  opacity: 1;
  transition: opacity 300ms 700ms;
}
/* ===================================================
	フローセクション
==================================================== */
.top-flow {
  margin: 80px 0;
  position: relative;
}
.top-flow__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.top-flow__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-flow__bg-panel {
  height: 710px;
  width: calc(50% + 489px);
  border-radius: 9999px 0 0 9999px;
  background-color: white;
}
.top-flow__slides {
  position: relative;
  height: 100%;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 64px 0;
}
.top-flow__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}
.top-flow__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.top-flow__spacer {
  height: 300vh;
}
.top-flow__slide-inner {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  width: 100%;
}
.top-flow__slide-header {
  flex: 0 0 148px;
}
.top-flow__slide-number {
  font-style: italic;
  font-weight: 400;
  font-size: 12.5rem;
  line-height: 1;
}
.top-flow__slide-body {
  flex: 1 1 auto;
  padding-left: 158px;
}
.top-flow__slide-lead {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--base-color-orange);
}
.top-flow__slide-title {
  margin-top: 0.3em;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
  position: relative;
}
.top-flow__slide-title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  right: calc(100% + 0.5em);
  width: 0.8em;
  aspect-ratio: 32/8;
  background-color: black;
  clip-path: polygon(0.05em 0, 100% 0, 100% 100%, 0 100%);
}
.top-flow__slide-text {
  margin-top: 1.5em;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
}
.top-flow__slide-link-wrapper {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.625rem;
}
.top-flow__slide-line {
  margin: 0;
  border-style: solid;
  border-color: black;
  border-width: 1px 0 0;
  flex-grow: 1;
}
.top-flow__slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  width: 154px;
  height: 56px;
  background-color: black;
  color: white;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0.5em 100%, 0 calc(100% - 0.75em));
  transition: background-color 300ms;
}
.top-flow__slide-link:hover {
  background-color: var(--base-color-black-hover);
}
.top-flow__slide-diagram {
  flex-shrink: 0;
  position: relative;
  margin-left: 40px;
  width: 388px;
  align-self: stretch;
}
.top-flow__slide-diagram-panel {
  position: absolute;
  inset: -24px auto auto 0;
  width: 442px;
  aspect-ratio: 442/583;
  border-radius: 50px;
  background-color: var(--base-color-bg);
  box-shadow: inset 0 0 0 4px white;
}
.top-flow__slide-diagram svg {
  width: 100%;
  height: 100%;
}
html.is-scroll-locked,
html.is-scroll-locked body {
  height: 100%;
  overflow: hidden;
}

/* ===================================================
	テスト
==================================================== */
/* ===================================================
	会社情報／代表挨拶ページ：代表の写真セクション
==================================================== */
.message-visual-wrapper {
  margin: 150px 0 0;
}
.message-visual-container {
  position: relative;
}
.message-visual-image-wrapper {
  width: 572px;
  position: relative;
}
.message-visual-image img {
  width: 100%;
}
.message-visual-image-grad {
  position: absolute;
  z-index: 1;
  transform: translateY(-55%);
  width: 58.041958042%;
  height: auto;
  aspect-ratio: 332/60;
  background-image: linear-gradient(90deg, #ffda55 0%, transparent 100%);
  opacity: 0.4;
}
.message-visual-image-bg {
  width: 90.2097902098%;
  height: auto;
  aspect-ratio: 516/70;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  background-image: linear-gradient(90deg, #000097 0%, #000031 100%);
}
.message-visual-text-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.message-visual-description {
  font: 700 4rem/1.8 "Zen Old Mincho", serif;
}
.message-visual-sign {
  margin-top: 35px;
}

@media screen and (max-width: 1339px) {
  .message-visual-image-wrapper {
    width: 60%;
  }
  .message-visual-description {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .message-visual-wrapper {
    margin: 60px 0 0;
  }
  .message-visual-text-wrapper {
    padding-top: 14.9732620321%;
    padding-right: 3%;
    top: 0;
    transform: none;
  }
  .message-visual-image-wrapper {
    width: 74.5989304813%;
  }
  .message-visual-description {
    font-size: min(1.75rem, (100vw - 40px) * 17.5 / 374);
  }
  .message-visual-sign {
    width: 55%;
    margin-top: 10%;
    margin-left: auto;
  }
}
/* ===================================================
	会社情報／代表挨拶ページ：メッセージ本文
==================================================== */
.message-content-section {
  margin: 60px 0 92px;
}
.message-content-name {
  margin-top: 2em;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.7;
}
.message-content-name .position {
  font-weight: 400;
  font-size: 72.7272727273%;
  line-height: 1.5;
}

/* ===================================================
	会社情報／代表挨拶ページ：社長メッセージ
==================================================== */
.message-message-section {
  margin: 60px 0 180px;
}
.message-message-content {
  margin-top: 60px;
}
.message-message-youtube-iframe-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
}
.message-message-youtube-iframe-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.message-message-content p {
  margin-top: 60px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .message-message-section {
    margin: 60px 0 80px;
  }
  .message-message-content {
    margin-top: 40px;
  }
}
/* ===================================================
	会社情報／理念・組織ページ：信頼され～～仕事をします
==================================================== */
.philosophy-message-section {
  margin: 154px 0 0;
  overflow: hidden;
}
.philosophy-message-title, .philosophy-message-description {
  position: relative;
  z-index: 2;
}
.philosophy-message-title {
  font: 700 9rem/1.3 "Zen Old Mincho", serif;
}
.philosophy-message-description {
  margin-top: 1em;
  font: 400 2rem/1.6 "Roboto", sans-serif;
}
.philosophy-message-image-wrapper {
  margin-top: -110px;
  margin-right: -80px;
  position: relative;
}
.philosophy-message-image {
  text-align: right;
  position: relative;
  z-index: 1;
}
.philosophy-message-image img {
  width: 66.9230769231%;
}
.philosophy-message-image-grad {
  position: absolute;
  z-index: 2;
  left: -60px;
  width: 874px;
  height: auto;
  aspect-ratio: 874/112;
  transform: translateY(-85%);
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.5;
}
.philosophy-message-image-bg {
  margin-top: -40px;
  margin-left: auto;
  width: 95%;
  aspect-ratio: 912/212;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
  background-image: linear-gradient(90deg, var(--base-color-blue) 0%, #000031 100%);
}

@media screen and (max-width: 1339px) {
  .philosophy-message-title {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 767px) {
  .philosophy-message-section {
    margin: 80px 0 0;
    overflow: initial;
  }
  .philosophy-message-image-wrapper {
    margin-top: 20px;
    margin-right: -20px;
  }
  .philosophy-message-image-bg {
    margin-top: -10%;
  }
  .philosophy-message-image img {
    width: 100%;
  }
  .philosophy-message-image-grad {
    left: -20px;
    width: calc(100% + 20px);
    transform: translateY(-50%);
  }
  .philosophy-message-title {
    font-size: min(3.5rem, 8.4541062802vw);
  }
  .philosophy-message-description {
    font-size: min(1.6rem, 3.8647342995vw);
  }
}
/* ===================================================
	会社情報／理念・組織ページ：Youtube埋め込み
==================================================== */
.philosophy-movie-section {
  margin: 108px 0 0;
}
.philosophy-movie-block {
  aspect-ratio: 16/9;
  position: relative;
}
.philosophy-movie-block iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===================================================
	会社情報／理念・組織ページ：３つの追求
==================================================== */
.philosophy-pursue-section {
  margin: 108px 0 0;
}
.philosophy-pursue-block-list {
  margin: 0 auto;
  max-width: 634px;
}
.philosophy-pursue-block:nth-of-type(n+2) {
  margin-top: 120px;
}
.philosophy-pursue-block:nth-of-type(even) .philosophy-pursue-block-title-wrap {
  order: -1;
}
.philosophy-pursue-block-box {
  display: flex;
  justify-content: space-between;
}
.philosophy-pursue-block-image-wrap {
  width: 385px;
}
.philosophy-pursue-block-title-wrap {
  width: 163px;
}
.philosophy-pursue-block-image {
  position: relative;
}
.philosophy-pursue-block-image-grad {
  position: absolute;
  bottom: 0;
  left: -43px;
  z-index: -1;
  width: 527px;
  height: auto;
  aspect-ratio: 527/68;
  transform: translateY(50%);
  background-image: linear-gradient(90deg, var(--base-color-blue) 0%, transparent 100%);
  opacity: 0.5;
}
.philosophy-pursue-block-title-brackets {
  position: relative;
  padding: 3em 1.2em 3em 2.2em;
  writing-mode: vertical-rl;
}
.philosophy-pursue-block-title-brackets::before, .philosophy-pursue-block-title-brackets::after {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 1/1;
  border-style: solid;
  border-color: black;
}
.philosophy-pursue-block-title-brackets::before {
  border-width: 3px 3px 0 0;
  top: 0;
  right: 0;
}
.philosophy-pursue-block-title-brackets::after {
  border-width: 0 0 3px 3px;
  left: 0;
  bottom: 0;
}
.philosophy-pursue-block-title {
  font: 900 5rem/1 "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
}
.philosophy-pursue-block-title .small {
  font: 700 1.9rem/1 "Roboto", sans-serif;
  letter-spacing: 0.4em;
}
.philosophy-pursue-block-description-wrap {
  margin-top: 74px;
}
.philosophy-pursue-block-description {
  font: 400 1.8rem/1.7 "Roboto", sans-serif;
}
.philosophy-pursue-block-image-wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 14px;
}

@media screen and (max-width: 1339px) {
  .philosophy-pursue-block-image-grad {
    width: 492px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy-pursue-block:nth-of-type(n+2) {
    margin-top: 80px;
  }
  .philosophy-pursue-block-box {
    gap: 0 5%;
  }
  .philosophy-pursue-block-title-brackets {
    padding: 2em 0.6em 2em 1em;
  }
  .philosophy-pursue-block-title-brackets::before, .philosophy-pursue-block-title-brackets::after {
    width: 17.5%;
  }
  .philosophy-pursue-block-title-wrap {
    width: auto;
  }
  .philosophy-pursue-block-title {
    font-size: 2.8rem;
  }
  .philosophy-pursue-block-title .small {
    font-size: 50%;
  }
  .philosophy-pursue-block-image-wrap {
    display: block;
    padding-top: 10%;
    padding-bottom: 0;
    width: auto;
  }
  .philosophy-pursue-block-image-grad {
    width: 110%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .philosophy-pursue-block-description {
    font-size: 1.4rem;
  }
  .philosophy-pursue-block-description-wrap {
    margin-top: 40px;
  }
}
/* ===================================================
	会社情報／理念・組織ページ：組織
==================================================== */
.philosophy-organization-section {
  margin: 140px 0 130px;
}
.philosophy-organization-content {
  margin-top: 60px;
}
.philosophy-organization-object-wrap {
  margin: 0 auto;
  max-width: 854px;
}

@media screen and (max-width: 767px) {
  .philosophy-organization-section {
    margin: 120px 0 60px;
  }
  .philosophy-organization-content {
    margin-top: 40px;
  }
}
/* ===================================================
	会社情報／サステナブルへの取り組みページ：冒頭文セクション
==================================================== */
.sustainability-content-section {
  margin: 100px 0 0;
  padding: 40px 0 500px 36px;
  position: relative;
}
.sustainability-content-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc((100% - 960px) / 2 + 106px);
  height: 303px;
  background-color: var(--base-color-blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 82px 100%);
}
.sustainability-content-title {
  position: relative;
  font: 900 6rem/1.3 "Zen Old Mincho", serif;
}
.sustainability-content-title::before {
  content: "“";
  position: absolute;
  left: -36px;
  top: -0.3em;
  z-index: -1;
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
  color: var(--base-color-blue);
  opacity: 0.08;
}
.sustainability-content-description {
  margin-top: 1.5em;
  font-size: 1.8rem;
  line-height: 2.5;
}

@media screen and (max-width: 1339px) {
  .sustainability-content-section {
    padding: 40px 0 360px 36px;
  }
  .sustainability-content-section::before {
    right: -40px;
    width: calc((100% - 720px) / 2 + 106px);
  }
}
@media screen and (max-width: 767px) {
  .sustainability-content-section {
    margin: 60px -20px 0;
    padding: 40px 20px 360px;
    background: top 100% center/auto 193.4782608696vw linear-gradient(0deg, white 0%, transparent 30%, white 100%) no-repeat, top 100% center/auto 193.2367149758vw url(./assets/img/bg-sustainability01.webp) no-repeat;
  }
  .sustainability-content-section::before {
    right: 0;
  }
  .sustainability-content-title {
    font-size: 2.8rem;
    text-indent: 0.6em;
  }
  .sustainability-content-title::before {
    font-size: 321.4285714286%;
  }
  .sustainability-content-description {
    margin-top: 1.5em;
    font-size: 1.5rem;
    line-height: 2;
  }
}
/* ===================================================
	会社情報／サステナブルへの取り組みページ：各種取り組み
==================================================== */
.sustainability-details-section {
  margin: 40px 0 0;
}
.sustainability-details-block:nth-of-type(n+2) {
  margin-top: 80px;
}
.sustainability-details-block-title-header {
  position: relative;
  z-index: 1;
}
.sustainability-details-block-title {
  display: flex;
  padding-left: 0.2em;
  font: 900 3.7rem/1.3 "Zen Old Mincho", serif;
}
.sustainability-details-block-title .number {
  font-weight: 700;
  font-size: 297.2972972973%;
  line-height: 1;
  color: var(--base-color-yellow);
  color: transparent;
  -webkit-text-stroke: 3px var(--base-color-yellow);
}
.sustainability-details-block-title .text {
  margin-left: 0.3em;
  padding-top: 0.5em;
}
.sustainability-details-block-body {
  margin-top: -86px;
  display: flex;
  align-items: flex-start;
}
.sustainability-details-block-image-wrapper {
  padding-top: 60px;
  width: calc(100% - 255px + 19px);
}
.sustainability-details-block-image img {
  width: 100%;
}
.sustainability-details-block-image-bg {
  margin-right: 45px;
  margin-left: auto;
  width: 71.4652956298%;
  height: auto;
  aspect-ratio: 556/54;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 25%);
  background-color: var(--base-color-blue);
}
.sustainability-details-block-logo-wrapper {
  margin-left: -19px;
  width: 255px;
}
.sustainability-details-block-logo-item {
  position: relative;
  border: 2px solid black;
  width: 100%;
  height: auto;
  aspect-ratio: 255/235;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sustainability-details-block-logo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sustainability-details-block-logo-item + .sustainability-details-block-logo-item {
  border-top: 0;
}
.sustainability-details-block-logo-item::before {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 1/1;
  background-color: white;
}
.sustainability-details-block-logo-item:first-child::before {
  right: auto;
  bottom: auto;
  top: -10px;
  left: 20px;
}
.sustainability-details-block-logo-item:last-child::before {
  right: 20px;
  bottom: -10px;
  top: auto;
  left: auto;
}
.sustainability-details-block-footer {
  margin-top: 18px;
  padding: 0 0 0 52px;
  max-width: 698px;
}
.sustainability-details-block-description {
  font: 400 1.6rem/2 "Roboto", sans-serif;
}

@media screen and (max-width: 1339px) {
  .sustainability-details-block-title {
    font-size: 3rem;
  }
  .sustainability-details-block-body {
    margin-top: -78px;
  }
  .sustainability-details-block-image-wrapper {
    width: calc(100% - 220px + 19px);
  }
  .sustainability-details-block-logo-wrapper {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .sustainability-details-section {
    margin: 0;
  }
  .sustainability-details-block:nth-of-type(n+2) {
    margin-top: 60px;
  }
  .sustainability-details-block-title {
    font-size: calc((100vw - 40px) * 22 / 374);
  }
  .sustainability-details-block-description {
    font-size: 1.4rem;
  }
  .sustainability-details-block-title .number {
    -webkit-text-stroke-width: 2px;
  }
  .sustainability-details-block-title .text {
    margin-left: 0.3em;
    padding-top: 0.5em;
  }
  .sustainability-details-block-image-wrapper {
    padding-top: 0;
    width: calc(78.8770053476% + 8px);
  }
  .sustainability-details-block-logo-wrapper {
    margin-left: -8px;
    padding-bottom: 12px;
    width: 21.3903743316%;
  }
  .sustainability-details-block-logo-item::before {
    width: 16px;
  }
  .sustainability-details-block-logo-item:first-child::before {
    top: -10px;
    left: 12px;
  }
  .sustainability-details-block-logo-item:last-child::before {
    right: 12px;
    bottom: -10px;
  }
  .sustainability-details-block-body {
    margin-top: -12px;
    align-items: flex-end;
  }
  .sustainability-details-block-footer {
    margin-top: 18px;
    padding: 0;
    max-width: none;
  }
}
/* ===================================================
	会社情報／サステナブルへの取り組みページ：各種取り組み
==================================================== */
.banner-recruit-link-section {
  margin: 160px 0 240px;
}
.banner-recruit-image-wrapper {
  position: relative;
  display: block;
}
.banner-recruit-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translateY(50%);
}

@media screen and (max-width: 1339px) {
  .banner-recruit-link-section {
    margin: 160px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .banner-recruit-link-section {
    margin: 80px 0 0;
  }
}
/* ===================================================
	会社情報／会社概要ページ：会社情報
==================================================== */
.about-info-section {
  margin: 80px 0 0;
}
.about-info-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2em;
  padding: 60px;
  position: relative;
}
.about-info-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-style: solid;
  border-width: 51px 51px 0 0;
  border-color: var(--base-color-blue) transparent;
}
.about-info-block dl {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
.about-info-block dl:not(:first-child) {
  margin-top: 1.5em;
}
.about-info-block dt {
  font-weight: 700;
}

@media screen and (max-width: 1339px) {
  .about-info-content {
    gap: 0 1.2em;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-info-content {
    display: block;
    padding: 40px 0 0 20px;
  }
  .about-info-content::before {
    border-width: 40px 40px 0 0;
  }
  .about-info-block dl {
    font-size: 1.4rem;
  }
}
/* ===================================================
	会社情報／会社概要ページ：中央写真セクション
==================================================== */
.about-photo-section {
  margin: 96px 0 0;
  overflow: hidden;
}
.about-photo-image-wrapper {
  margin-right: -80px;
}
.about-photo-image-grad {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 58.6538461538%;
  height: auto;
  aspect-ratio: 610/100;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.5;
}
.about-photo-image {
  margin-top: -50px;
}
.about-photo-image img {
  width: 100%;
}
.about-photo-image-bg {
  margin-left: auto;
  width: 87.6923076923%;
  height: auto;
  aspect-ratio: 912/98;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  background-color: var(--base-color-blue);
}

@media screen and (max-width: 767px) {
  .about-photo-section {
    margin: 96px 0 0;
    overflow: initial;
  }
  .about-photo-image-wrapper {
    margin-right: -20px;
  }
  .about-photo-image {
    margin-top: -4.8309178744vw;
  }
}
/* ===================================================
	会社情報／会社概要ページ：業績・財務
==================================================== */
.about-performance-section {
  margin: 172px 0 0;
}
.about-performance-content {
  margin-top: 54px;
}
.about-performance-cards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}
.about-performance-card {
  background: center center/cover no-repeat;
  aspect-ratio: 469/317;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6% 0 0;
}
.about-performance-card-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 30px 26px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em 0;
}
.about-performance-card-title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.about-performance-card-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.2em 1em;
}
.about-performance-card-attention {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
.about-performance-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-performance-card-main .number {
  font: 700 11rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
}
.about-performance-card-main .number span {
  opacity: 0;
}
.about-performance-card-main .text {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 1339px) {
  .about-performance-card {
    container-type: inline-size;
    padding: 2% 0 0;
  }
  .about-performance-card-header {
    padding: 3.5874439462cqi 2.3916292975cqi 0;
    gap: 2.9895366218cqi 0;
  }
  .about-performance-card-icon {
    width: 14.3497757848cqi;
  }
  .about-performance-card-title {
    font-size: 1.644245142cqi;
  }
  .about-performance-card-main .number {
    font-size: 26.9058295964cqi;
  }
  .about-performance-card-main .text {
    font-size: 6.576980568cqi;
  }
}
@media screen and (max-width: 767px) {
  .about-performance-section {
    margin: 80px 0 0;
  }
  .about-performance-content {
    margin-top: 20px;
  }
  .about-performance-cards-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-performance-card {
    container-type: inline-size;
    padding: 2% 0 0;
  }
  .about-performance-card-title {
    font-size: 2.0926756353cqi;
  }
}
/* ===================================================
	会社情報／会社概要ページ：売上構成比グラフ
==================================================== */
.about-sales-breakdown-section {
  margin: 20px 0 0;
  --color-item1: #0f065f;
  --color-item2: #0402ec;
  --color-item3: #5958fe;
  --color-item4: #9998ff;
  --color-item5: #d6d6ff;
}
.about-sales-breakdown-content {
  padding: 80px 50px 32px;
  background-color: #f3f3ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-sales-breakdown-content .item01 {
  background-color: var(--color-item1);
}
.about-sales-breakdown-content .item02 {
  background-color: var(--color-item2);
}
.about-sales-breakdown-content .item03 {
  background-color: var(--color-item3);
}
.about-sales-breakdown-content .item04 {
  background-color: var(--color-item4);
}
.about-sales-breakdown-content .item05 {
  background-color: var(--color-item5);
}
.about-sales-breakdown-legend {
  width: 126px;
}
.about-sales-breakdown-legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-sales-breakdown-legend-item:not(:first-child) {
  margin-top: 30px;
}
.about-sales-breakdown-legend-color {
  aspect-ratio: 1/1;
}
.about-sales-breakdown-legend-color.item01 {
  width: 56px;
}
.about-sales-breakdown-legend-color.item02 {
  width: 42px;
}
.about-sales-breakdown-legend-color.item03 {
  width: 30px;
}
.about-sales-breakdown-legend-color.item04 {
  width: 20px;
}
.about-sales-breakdown-legend-color.item05 {
  width: 12px;
}
.about-sales-breakdown-legend-name {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.about-sales-breakdown-graph {
  width: 688px;
  height: 688px;
  position: relative;
}
.about-sales-breakdown-graph svg {
  width: 100%;
  height: 100%;
}
.about-sales-breakdown-graph-circle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
}
.about-sales-breakdown-graph-description {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  color: white;
}
.about-sales-breakdown-graph-description .main {
  font-size: 211.1111111111%;
  color: var(--base-color-yellow);
}

@media screen and (max-width: 1339px) {
  .about-sales-breakdown-content {
    padding: 80px 50px 32px;
    display: block;
  }
  .about-sales-breakdown-graph {
    width: 100%;
    height: auto;
  }
  .about-sales-breakdown-legend {
    margin-top: 20px;
    width: auto;
  }
  .about-sales-breakdown-legend-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
  }
  .about-sales-breakdown-legend-color-wrap {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-sales-breakdown-legend-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-sales-breakdown-content {
    padding: 40px 20px 20px;
  }
  .about-sales-breakdown-legend-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
  .about-sales-breakdown-legend-item {
    width: calc(50% - 10px);
    flex-direction: row;
    align-items: center;
    gap: 0 12px;
  }
  .about-sales-breakdown-legend-color-wrap {
    width: 40px;
    height: auto;
  }
  .about-sales-breakdown-legend-color {
    width: 40px !important;
  }
  .about-sales-breakdown-legend-name {
    margin-top: 0;
    font-size: 1.8rem;
  }
  .about-sales-breakdown-graph-description {
    font-size: calc((100vw - 80px) * 14 / 334);
  }
  .about-sales-breakdown-graph-description .main {
    font-size: 180%;
  }
}
/* ===================================================
	会社情報／会社概要ページ：売上高推移・収益性の向上
==================================================== */
.about-revenue-section {
  margin: 16px 0 0;
}
.about-revenue-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  padding: 54px 50px 48px;
  background: center center/cover no-repeat;
}
.about-revenue-block {
  padding: 28px 32px 32px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.about-revenue-block-item:not(:first-child) {
  margin-top: 1em;
}
.about-revenue-block-title {
  font-size: 3.2rem;
  line-height: 1.6;
}
.about-revenue-block-content {
  margin-top: 2rem;
}
.about-revenue-block-item-name {
  font: 700 1.8rem/1 "Roboto", sans-serif;
}
.about-revenue-block-graph {
  width: 164px;
}
.about-revenue-block-graph svg {
  width: 100%;
  height: 100%;
}
.about-revenue-block-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-revenue-block-item-revenue {
  font: 700 2rem/1 "Roboto", sans-serif;
}
.about-revenue-block-item-revenue .number {
  font-weight: 500;
  font-size: 140%;
  color: var(--base-color-yellow);
}

@media screen and (max-width: 1339px) {
  .about-revenue-container {
    display: block;
  }
  .about-revenue-block:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-revenue-container {
    padding: 20px;
  }
  .about-revenue-block {
    padding: 20px;
  }
  .about-revenue-block-title {
    font-size: 2.4rem;
  }
  .about-revenue-block-item-revenue {
    font-size: min(1.6rem, (100vw - 120px) * 16 / 294);
  }
  .about-revenue-block-graph {
    width: 50%;
  }
}
/* ===================================================
	会社情報／会社概要ページ：最後のメッセージ
==================================================== */
.about-message-section {
  margin: 150px 0 172px;
}
.about-message-description {
  padding-left: 1em;
  font: 700 3.2rem/1.6 "Zen Old Mincho", serif;
  position: relative;
}
.about-message-description::before {
  content: "“";
  position: absolute;
  left: -0.1em;
  top: -0.4em;
  font-size: 14rem;
  line-height: 1;
  color: var(--base-color-blue);
  opacity: 0.08;
}

@media screen and (max-width: 1339px) {
  .about-message-section {
    margin: 150px 0 172px;
  }
  .about-message-description {
    font-size: 2.8rem;
  }
  .about-message-description::before {
    font-size: 11.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-message-section {
    margin: 120px 0 40px;
  }
  .about-message-description {
    font-size: 2.2rem;
  }
  .about-message-description::before {
    font-size: 409.0909090909%;
  }
}
/* ===================================================
	会社情報／会社沿革ページ
==================================================== */
.history-flow-section {
  margin: 80px 0 0;
  overflow: hidden;
}
.history-flow-content {
  margin-top: 40px;
}
.history-flow-block {
  padding-left: 238px;
}
.history-flow-block .block-width {
  max-width: 435px;
}
.history-flow-block-header {
  padding-top: 32px;
  position: relative;
}
.history-flow-block-header-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 393px;
  clip-path: path("M0 0 H752 V389 L0 177 H0");
  background-image: linear-gradient(66deg, var(--base-color-blue) 0%, var(--base-color-blue) 51%, transparent 86%);
}
.history-flow-block-year {
  position: relative;
  padding-bottom: 35px;
}
.history-flow-block-year::after {
  content: "";
  position: absolute;
  left: calc(50% - 6.5px);
  bottom: 0;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
}
.history-flow-block-title {
  font: 700 4rem/1.2 "Zen Old Mincho", serif;
  text-align: center;
  color: white;
}
.history-flow-block-title .year {
  font-size: 5.5rem;
  color: var(--base-color-yellow);
}
.history-flow-block-title .number {
  font-size: 163.6363636364%;
}
.history-flow-block-image {
  position: absolute;
  top: 70px;
  right: -80px;
  width: 278px;
}
.history-flow-block-image img {
  width: 100%;
}
.history-flow-block-body {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
}
.history-flow-block:last-of-type .history-flow-block-body::after {
  content: "";
  position: absolute;
  left: 210.5px;
  bottom: -6.5px;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--base-color-blue);
}
.history-flow-block-body:has(.history-flow-block-subevent:first-child) {
  padding-top: 120px;
}
.history-flow-block-body-line {
  position: absolute;
  right: calc(100% - 219px);
  top: 0;
  z-index: -1;
  width: 3px;
  height: 0;
  background-color: #bfbfff;
}
.history-flow-block-event {
  margin-top: 60px;
}
.history-flow-block-event:first-child, .history-flow-block-subevent:first-child {
  margin-top: 0;
}
.history-flow-block-event p {
  border: 3px solid #bfbfff;
  background-color: white;
  text-align: center;
  padding: 1.6em 1.2em;
  position: relative;
  font: 900 2.6rem/1.29 "Zen Old Mincho", serif;
  color: var(--base-color-blue);
}
.history-flow-block-event p::before, .history-flow-block-event p::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 24px;
  height: 5px;
  background-color: white;
}
.history-flow-block-event p::before {
  top: -4px;
  left: 0;
}
.history-flow-block-event p::after {
  bottom: -4px;
  right: 0;
}
.history-flow-block-subevent {
  position: relative;
  margin-top: 50px;
  margin-left: 218px;
  padding-left: 22px;
  max-width: 420px;
}
.history-flow-block .margin-large {
  margin-top: 80px;
}
.history-flow-block-subevent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--base-color-blue);
}
.history-flow-block-event-description {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
.history-flow-block-event + .history-flow-block-subevent {
  margin-top: 90px;
}
.history-flow-block-subevent-year {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translate(-100%, -50%);
  font: 700 3rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
}
.history-flow-block-subevent-year .number {
  font-size: 133.3333333333%;
}
.history-flow-footer {
  margin-top: 12px;
  position: relative;
}
.history-flow-footer-message-en {
  font: 900 13rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-blue);
  text-align: center;
  color: #f1f1f1;
  position: relative;
}
.history-flow-footer-message {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 2rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-blue);
  letter-spacing: 0.15em;
  text-align: center;
}
.history-flow-image-sub {
  position: absolute;
  z-index: 1;
}
.history-flow-image-sub.image01 {
  top: 250px;
  left: -171px;
}
.history-flow-image-sub.image02 {
  top: 250px;
  left: -171px;
}
.history-flow-image-sub.image03 {
  top: 220px;
  left: -235px;
}
.history-flow-image-sub.image04 {
  top: 640px;
  left: 583px;
}
.history-flow-image-sub.image05 {
  top: 80px;
  left: -171px;
}
.history-flow-image-sub.image06 {
  top: 500px;
  left: 583px;
}
.history-flow-image-sub.image07 {
  top: 890px;
  left: -235px;
}
.history-flow-image-sub.image08 {
  top: 1060px;
  left: 620px;
}
.history-flow-image-sub.image09 {
  top: 1880px;
  left: -171px;
}
.history-flow-image-sub.image10 {
  top: 2040px;
  left: 620px;
}
.history-flow-image-sub.image11 {
  top: 2350px;
  left: -235px;
}
.history-flow-image-sub.image12 {
  top: 2720px;
  left: 508px;
}
.history-flow-image-sub.image13 {
  top: 3160px;
  left: -235px;
}

@media screen and (max-width: 1339px) {
  .history-flow-section {
    overflow: initial;
  }
  .history-flow-block {
    padding-left: 0;
  }
  .history-flow-block-image {
    right: 0;
  }
  .history-flow-image-sub {
    display: none;
  }
  .history-flow-block .block-width {
    max-width: 345px;
  }
  .history-flow-block-body-line {
    right: auto;
    left: 171px;
  }
  .history-flow-block-event p {
    font-size: 2.4rem;
  }
  .history-flow-block-subevent {
    margin-left: 172.5px;
  }
  .history-flow-block:last-of-type .history-flow-block-body::after {
    left: 166px;
  }
}
@media screen and (max-width: 767px) {
  .history-flow-block-header {
    padding-top: 4%;
    padding-right: 40%;
  }
  .history-flow-block-header-bg {
    width: calc(100% + 20px);
    height: min(232px, (100vw - 20px) * 232 / 394);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
  }
  .history-flow-block-year {
    padding-bottom: 0;
    position: static;
  }
  .history-flow-block-image {
    top: max(-25px, (100vw - 40px) * -25 / 374);
    width: min(122px, 32.6203208556%);
  }
  .history-flow-block-year::after {
    left: calc(8.6% - 6.5px);
    bottom: min(9px, (100vw - 40px) * 9 / 374);
    width: min(13px, (100vw - 40px) * 13 / 374);
  }
  .history-flow-block:last-of-type .history-flow-block-body::after {
    left: 7%;
    bottom: max(-6.5px, (100vw - 40px) * -6.5 / 374);
    width: min(13px, (100vw - 40px) * 13 / 374);
  }
  .history-flow-block .block-width {
    max-width: none;
  }
  .history-flow-block-body:has(.history-flow-block-subevent:first-child) {
    padding-top: min(80px, (100vw - 40px) * 80 / 374);
  }
  .history-flow-block-title {
    font-size: min(2.5rem, (100vw - 40px) * 25 / 374);
  }
  .history-flow-block-title .year {
    font-size: 116.6666666667%;
  }
  .history-flow-block-title .number {
    font-size: 171.4285714286%;
  }
  .history-flow-block-body {
    margin-top: max(-18px, (100vw - 40px) * -16 / 374);
    padding-top: min(56px, (100vw - 40px) * 56 / 374);
  }
  .history-flow-block-body-line {
    left: 8.2%;
  }
  .history-flow-block-event, .history-flow-block-event + .history-flow-block-subevent {
    margin-top: min(32px, 8.5561497326%);
  }
  .history-flow-block .margin-large {
    margin-top: min(32px, 8.5561497326%);
  }
  .history-flow-block-event p {
    padding: 1em;
    font-size: min(1.8rem, (100vw - 40px) * 18 / 374);
  }
  .history-flow-block-event p br {
    display: none;
  }
  .history-flow-block-event p::before, .history-flow-block-event p::after {
    width: min(20px, (100vw - 40px) * 20 / 374);
  }
  .history-flow-block-subevent {
    margin-top: min(40px, 10.6951871658%);
    margin-left: 8.5%;
    padding-left: 1.5em;
    max-width: none;
  }
  .history-flow-block-subevent:has(.history-flow-block-subevent-year)::before {
    top: 1.2em;
  }
  .history-flow-block-subevent::before {
    width: min(13px, (100vw - 40px) * 13 / 374);
  }
  .history-flow-block-subevent-year {
    position: static;
    transform: none;
    font-size: min(2.2rem, (100vw - 40px) * 22 / 374);
  }
  .history-flow-block-event-description {
    font-size: min(1.5rem, (100vw - 40px) * 15 / 374);
  }
  .history-flow-block-subevent-year + .history-flow-block-event-description {
    margin-top: 0.2em;
  }
  .history-flow-footer {
    margin: 12px -20px 0;
    overflow: hidden;
  }
  .history-flow-footer-message-en {
    font-size: min(8.8rem, 21.2560386473vw);
    text-align: left;
  }
  .history-flow-footer-message {
    top: 37%;
    width: 100%;
    display: block;
    padding: 0 1em;
    font-size: min(1.8rem, 4.347826087vw);
    line-height: 1.6;
    text-align: left;
  }
}
/* ===================================================
	会社情報／理念・組織ページ：Youtube埋め込み
==================================================== */
/* ===================================================
	アバウトページ：
==================================================== */
.p-about-content__inner {
  display: grid;
  grid-template-columns: 52.489626556% 1fr;
}
.p-about-content__content {
  padding: 9.25rem 4.25rem 5rem 6rem;
  font-family: "Roboto", sans-serif;
  min-width: 0;
}
.p-about-content__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
}
.p-about-content__title::before {
  content: "";
  position: absolute;
  top: 0.5em;
  right: calc(100% + 0.875rem);
  width: 2rem;
  aspect-ratio: 32/8;
  background-color: var(--base-color-orange);
  clip-path: polygon(0.125rem 0, 100% 0, 100% 100%, 0 100%);
}
.p-about-content__title:has(.p-about-content__title-label)::before {
  top: 2.25em;
}
.p-about-content__title-label {
  font-weight: 500;
  font-size: 152.0833333333%;
}
.p-about-content__title-en {
  font: 300 2.5rem/1.5 "Noto Sans JP", sans-serif;
  color: var(--base-color-yellow);
  letter-spacing: -0.05em;
}
.p-about-content__hero {
  margin-top: 7.5rem;
}
.p-about-content__hero-description {
  margin-top: 4.5rem;
  font-size: 1.125rem;
  line-height: 1.9444444444;
}
.p-about-content__message {
  margin-top: 7.5rem;
}
.p-about-content__message-description {
  margin-top: 2.25rem;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.9;
}
.p-about-content__profile {
  margin-top: 7.5rem;
}
.p-about-content__profile-content {
  margin-top: 4rem;
}
.p-about-content__profile-list {
  display: grid;
  gap: 1.6666666667em 0;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
.p-about-content__profile-item {
  display: grid;
  grid-template-columns: 8.4375rem 1fr;
}
.p-about-content__profile-term {
  font-weight: 700;
}
.p-about-content__visual {
  position: relative;
}
.p-about-content__visual-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.p-about-content__visual-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.p-about-content__visual-image.is-active {
  opacity: 1;
}
.p-about-content__visual-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
/* ===================================================
	お問い合わせページ：ヒーロー
==================================================== */
.p-contact-hero {
  height: 100svh;
  position: relative;
}
.p-contact-hero__content {
  margin-right: auto;
  padding: 9.25rem 4.25rem 0 6rem;
  width: 50%;
  height: 100%;
  background-color: var(--base-color-bg);
}
.p-contact-hero__lead {
  margin-top: 7.5rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
}
.p-contact-hero__lead-label {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-contact-hero__lead-text {
  font-weight: 500;
  font-size: 2.28125rem;
  position: relative;
}
.p-contact-hero__lead-text::before {
  content: "";
  position: absolute;
  top: 0.35em;
  right: calc(100% + 1rem);
  width: 2rem;
  aspect-ratio: 32/8;
  background-color: var(--base-color-orange);
  clip-path: polygon(0.125rem 0, 100% 0, 100% 100%, 0 100%);
}
.p-contact-hero__description {
  margin-top: 4.5rem;
  color: var(--base-color-black);
  font-size-adjust: 1.125rem;
}
.p-contact-hero__note {
  margin-top: 1.5em;
  color: var(--base-color-black);
  font-size: 0.875rem;
}
.p-contact-hero__visual {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-contact-hero__visual-inner {
  width: 50%;
  height: 100%;
  margin-left: auto;
  overflow: hidden;
  background-color: var(--base-color-orange);
  position: relative;
}
.p-contact-hero__map-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-32%, -49.6%);
  width: 1840px;
  aspect-ratio: 1/1;
  perspective: 3000px;
  mix-blend-mode: screen;
}
.p-contact-hero__map {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  will-change: transform;
  transform-origin: 32% 49.6%;
}
.p-contact-hero__arrows-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -90%);
}
.p-contact-hero__arrows {
  position: relative;
  width: 231px;
  aspect-ratio: 231/222;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  will-change: transform;
  transform: translateZ(200px);
}
.p-contact-hero__arrow {
  position: absolute;
  aspect-ratio: 54/58;
  background-image: linear-gradient(0deg, white 0%, white 42%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0;
}
.p-contact-hero__visual-card {
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  z-index: 1;
}
@keyframes contact_hero_arrow_opacity {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes contact_hero_arrow_updown_1 {
  0% {
    top: -2.5%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: -2.5%;
  }
}
@keyframes contact_hero_arrow_updown_2 {
  0% {
    top: 13.3%;
  }
  35% {
    top: 15.3%;
  }
  65% {
    top: 15.3%;
  }
  100% {
    top: 13.3%;
  }
}
@keyframes contact_hero_arrow_updown_3 {
  0% {
    top: 58%;
  }
  35% {
    top: 59.9099099099%;
  }
  65% {
    top: 59.9099099099%;
  }
  100% {
    top: 58%;
  }
}
@keyframes contact_hero_arrow_updown_4 {
  0% {
    top: 29%;
  }
  35% {
    top: 31.5315315315%;
  }
  65% {
    top: 31.5315315315%;
  }
  100% {
    top: 29%;
  }
}
.p-contact-hero__arrow--1 {
  left: 0;
  top: 0;
  width: 23.3766233766%;
  animation: contact_hero_arrow_opacity 8s 0s infinite, contact_hero_arrow_updown_1 6s ease-in-out infinite;
  transform: translateZ(-60px);
}
.p-contact-hero__arrow--2 {
  top: 15.3153153153%;
  left: 45.4545454545%;
  width: 11.2554112554%;
  animation: contact_hero_arrow_opacity 7s -2s infinite, contact_hero_arrow_updown_2 8s -5s ease-in-out infinite;
  transform: translateZ(-100px);
}
.p-contact-hero__arrow--3 {
  top: 59.9099099099%;
  left: 3.0303030303%;
  width: 8.2251082251%;
  animation: contact_hero_arrow_opacity 5s -3s infinite, contact_hero_arrow_updown_3 9s -3s ease-in-out infinite;
  transform: translateZ(-120px);
}
.p-contact-hero__arrow--4 {
  top: 31.5315315315%;
  left: 80.0865800866%;
  width: 19.9134199134%;
  animation: contact_hero_arrow_opacity 12s -3s infinite, contact_hero_arrow_updown_4 12s -3s ease-in-out infinite;
  transform: translateZ(-80px);
}
.p-contact-hero__arrow--5 {
  top: 40.990990991%;
  left: 17.7489177489%;
  width: 54.9783549784%;
  opacity: 1;
  animation: none;
  transform: translateZ(10px);
}
/* ===================================================
	お問い合わせページ：フォームセクション
==================================================== */
.p-contact-form {
  padding: 5.5rem 0 6.25rem;
  background-color: white;
}
.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-form .wpcf7-list-item label {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-contact-form__list {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.p-contact-form__item {
  display: grid;
  grid-template-columns: 166px 1fr;
}
.p-contact-form__item:not(:first-child) {
  margin-top: 2rem;
}
.p-contact-form__question {
  padding-top: 1.5em;
  font: 500 0.875rem/1 "Roboto", sans-serif;
}
.p-contact-form__question:has(.p-contact-form__required) {
  padding-top: 1.1em;
}
.p-contact-form__item--checkbox .p-contact-form__question {
  padding-top: 0.6em;
}
.p-contact-form__required {
  color: red;
  font-size: 0.75em;
  vertical-align: super;
}
.p-contact-form__required-note {
  margin-bottom: 1.5em;
  font: 500 0.875rem/1 "Roboto", sans-serif;
  text-align: right;
}
.p-contact-form__check-list {
  display: grid;
  gap: 0.9375rem;
  grid-template-columns: 1fr;
}
.p-contact-form__privacy-note {
  text-indent: 3.9rem;
}
.p-contact-form__privacy-anchor {
  text-decoration: underline;
}
.p-contact-form__privacy-anchor:hover {
  text-decoration: none;
}
.p-contact-form__submit {
  margin-top: 3.5em;
}
/* ===================================================
	お問い合わせ完了ページ
==================================================== */
.form-thanks-section {
  margin: 0 0 440px;
}
.form-thanks-main {
  font: 700 2.6rem/1.4 "Zen Old Mincho", serif;
}
.form-thanks-description {
  margin-top: 3em;
  letter-spacing: 0.08em;
}
.form-thanks-attention {
  margin-top: 2em;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
.form-thanks-attention a {
  text-decoration: underline;
}
.form-thanks-attention a:hover {
  text-decoration: none;
}
.form-thanks-link {
  margin-top: 2.6em;
}

@media screen and (max-width: 1339px) {
  .form-thanks-section {
    margin: 0 0 240px;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .form-thanks-attention a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .form-thanks-section {
    margin: 0 0 120px;
  }
  .form-thanks-main {
    font-size: 2rem;
  }
}
/* ===================================================
	お問い合わせページ：
==================================================== */
/* ===================================================
	お問い合わせページ：
==================================================== */
/* ===================================================
	お知らせ：アーカイブ一覧ページ
==================================================== */
.news-archive {
  margin: 4.25rem 0 5.75rem;
}
.news-archive__inner {
  max-width: 985px;
  margin-left: auto;
  margin-right: auto;
}
/* ===================================================
	お知らせ：ループアーカイブアイテム
==================================================== */
.c-news-archive__item:not(:first-child) {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #c9c9c9;
}
.c-news-archive__link {
  display: block;
  transition: opacity 300ms;
}
.c-news-archive__link:hover {
  opacity: 0.5;
}
.c-news-archive__date {
  font-size: 0.875rem;
}
.c-news-archive__title {
  font-size: inherit;
  font-weight: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* ===================================================
	お知らせ：詳細ページ（ヘッダー）
==================================================== */
.p-news-single-header {
  margin-top: 1.5rem;
}
.p-news-single-header__title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5416666667;
}
.p-news-single-header__tag {
  margin-top: 1em;
  display: flex;
  gap: 0 0.205rem;
}
.p-news-single-header__tag-icon {
  flex: 0 0 auto;
}
.p-news-single-header__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1.8666666667em;
  font: 500 0.9375rem/1.2 "Zen Maru Gothic", sans-serif;
  overflow: hidden;
}
.p-news-single-header__tag-item:not(:first-child) {
  position: relative;
}
.p-news-single-header__tag-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.9333333333em;
  top: 0.2em;
  width: 2px;
  height: 1em;
  background-color: #dbdbdb;
  border-radius: 2px;
}
.p-news-single-header__tag-link:hover {
  text-decoration: underline;
}
.p-news-single-header__date {
  margin-top: 1em;
  font: 900 0.875rem/1 "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 1339px) {
  .post-body {
    margin: 80px 0 0;
    padding: 0 40px 80px;
  }
  .post-footer {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .post-info {
    font-size: 1.4rem;
  }
  .post-title {
    font-size: 2.2rem;
  }
  .post-body {
    margin: 40px 0 0;
    padding: 0 20px 80px;
  }
  .post-body .toc_list {
    border: 3px solid black;
    padding: 0.75em 1em;
    font-size: 1.8rem;
  }
  .post-body > h2 {
    font-size: 2.2rem;
  }
  .post-body .wp-block-image {
    margin-right: -40px;
    margin-left: -40px;
  }
  .post-body .wp-block-quote {
    padding-left: 44px;
  }
  .post-body .wp-block-quote::before {
    font-size: 9rem;
  }
  .post-footer {
    margin-bottom: 0;
  }
  .post-container {
    padding: 0;
  }
  .single-column .post-body > h2 {
    font-size: 2.1rem;
  }
  .single-column .post-body > h3 {
    font-size: 1.8rem;
  }
}
/* ===================================================
	お知らせ：詳細ページ（本文周り）
==================================================== */
.p-news-single-body {
  margin: 2em 0;
  padding: 32px 0 112px;
  background-color: white;
}

/* ===================================================
	テスト
==================================================== */
/* ===================================================
	よくある質問ページ：カテゴリーリスト
==================================================== */
.p-faq-categories {
  margin: 3.625rem auto 0;
  max-width: 1188px;
}
.p-faq-categories__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 4px;
  font: 600 1.125rem/1 "Roboto", sans-serif;
  color: white;
}
.p-faq-categories__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  background-color: var(--base-color-yellow);
  transition: background-color 300ms;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 0.9375rem));
}
.p-faq-categories__item:hover {
  background-color: var(--base-color-yellow-hover);
}

/* ===================================================
	よくある質問ページ：質問リスト
==================================================== */
.p-faq-content {
  margin: 6.25rem 0 4.75rem;
}
.p-faq-content__inner {
  margin: 0 auto;
  max-width: 980px;
}
.p-faq-content__category:not(:first-child) {
  margin-top: 4.5rem;
}
.p-faq-content__category-title {
  position: relative;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}
.p-faq-content__category-title::before {
  content: "";
  position: absolute;
  right: calc(100% + 0.9545454545em);
  top: 0.65em;
  width: 1.4545454545em;
  aspect-ratio: 32/8;
  background-color: var(--base-color-orange);
  clip-path: polygon(0.125rem 0, 100% 0, 100% 100%, 0 100%);
}
.p-faq-content__list {
  margin-top: 1.5em;
  font-size: 1.125rem;
  line-height: 1.9444444444;
}
.p-faq-content__item {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 2.5rem;
}
.p-faq-content__item:not(:first-child) {
  margin-top: 1em;
  padding-top: 1em;
}
.p-faq-content__question {
  font-weight: 700;
}
.p-faq-content__toggle {
  font-weight: inherit;
  font-size: inherit;
  position: relative;
  padding-left: 1.25em;
  display: flex;
  justify-content: space-between;
  gap: 0 1em;
  width: 100%;
  text-align: left;
}
.p-faq-content__toggle::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--base-color-orange);
}
.p-faq-content__toggle.is-transitioning {
  pointer-events: none;
}
.p-faq-content__toggle-icon {
  width: 1.875rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
}
.p-faq-content__toggle-icon svg {
  width: 100%;
  height: 100%;
}
.p-faq-content__toggle-icon rect {
  transition: fill 300ms;
}
.p-faq-content__toggle-icon-vertical {
  transition: stroke 300ms;
}
.active .p-faq-content__toggle-icon rect {
  fill: var(--base-color-yellow);
}
.active .p-faq-content__toggle-icon:hover rect {
  fill: var(--base-color-yellow-hover);
}
.active .p-faq-content__toggle-icon .p-faq-content__toggle-icon-vertical {
  stroke: transparent;
}
.p-faq-content__answer {
  display: none;
  margin-top: 2em;
  padding: 1.3333333333em 1.6666666667em 1.3333333333em 4.2222222222em;
  background-color: white;
  font-size: inherit;
  position: relative;
}
.p-faq-content__answer::before {
  content: "A";
  position: absolute;
  top: 1.3333333333em;
  left: 2em;
  font-weight: 700;
  color: var(--base-color-yellow);
}
.p-faq-content__answer a {
  text-decoration: underline;
}
.p-faq-content__answer a:hover {
  text-decoration: none;
}

/* ===================================================
	テスト
==================================================== */
/* ===================================================
	法律ページ：本文（個人情報保護基本方針など）
==================================================== */
.p-legal-content {
  margin: 3.6em 0 6em;
}
.p-legal-body {
  margin: 0 auto;
  font-weight: inherit;
  font-size: 0.9375rem;
  line-height: 1.9333333333;
}
.p-legal-body > *:not(:last-child, h2, h3, h4) {
  margin-bottom: 1.9333333333em;
}
.p-legal-body h2, .p-legal-body h3, .p-legal-body h4 {
  font-size: inherit;
}
.p-legal-body ul li, .p-legal-body ol li {
  padding-left: 1.25em;
  position: relative;
}
.p-legal-body ul li::before, .p-legal-body ol li::before {
  position: absolute;
  left: 0.25em;
  top: 0;
}
.p-legal-body ul li::before {
  content: "・";
}
.p-legal-body ol {
  counter-reset: legal-ol-counter;
}
.p-legal-body ol li {
  counter-increment: legal-ol-counter;
}
.p-legal-body ol li::before {
  content: counter(legal-ol-counter) ".";
}

@media screen and (max-width: 1339px) {
  .p-legal-body {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-legal-body {
    font-size: unset;
  }
  .p-legal-body h2 {
    font-size: 1.8rem;
  }
}
/* ===================================================
	404
==================================================== */
.notfound-section {
  margin: 0 0 330px;
}
.notfound-title {
  font-weight: 700;
  font-size: 6.8rem;
}
.notfound-description {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}
.notfound-link {
  margin-top: 52px;
}

@media screen and (max-width: 1339px) {
  .notfound-section {
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .notfound-section {
    margin: 0 0 60px;
  }
  .notfound-title {
    font-size: 3.2rem;
  }
  .notfound-description {
    font-size: 1.6rem;
  }
}
/* ===================================================
	Google reCAPTCHAバッジの位置調整
==================================================== */
.grecaptcha-badge {
  transform: translateX(-56px);
}

/* ===================================================
	テスト
==================================================== */