@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以下はスマホサイズで切り替える
	・（mix-width:1447px）
	・（max-width:1339px）
	・（max-width:767px）
**
==================================================== */
.bp-sp_i, .bp-sp_ib, .bp-sp_b, .bp-tb_i, .bp-tb_ib, .bp-tb_b {
  display: none;
}

@media screen and (max-width: 1339px) {
  .bp-tb_i {
    display: inline;
  }
  .bp-tb_ib {
    display: inline-block;
  }
  .bp-tb_b {
    display: block;
  }
}
@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設定
==================================================== */
html {
  overflow-y: scroll;
}

#top-bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

: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;
  --base-container-width: 1200px;
  --base-container-width-bp1: 640px;
}

body {
  font: 500 1rem/1.9333333333 "Noto Sans JP", sans-serif;
  color: #000;
  scroll-behavior: auto;
  background-color: var(--base-color-bg);
}
body:has(.c-page-hero__bg) {
  position: relative;
  overflow-x: clip;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 3.6231884058vw;
  }
}
/* 『フォーム部品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 input[type=number],
  form input[type=password],
  form textarea {
    padding: 0.75em !important;
    font-size: max(3.8647342995vw, 16px) !important;
  }
  form select {
    font-size: 1.6rem;
    padding: 0.5em 2em 0.5em 0.5em;
    background-position-x: calc(100% - 10px);
  }
  form input[type=checkbox] {
    width: 7.729468599vw;
  }
  form input[type=checkbox]:focus {
    border-color: #f2f0f0;
  }
  form {
    /* 送信ボタン */
  }
  form input[type=submit],
  form button {
    padding: 1em 3em;
    font-size: 3.6231884058vw;
  }
}
/* ===================================================
	アニメーション用クラス
==================================================== */
[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: 78.75rem;
  margin-inline: auto;
}
.l-container--wide {
  padding-inline: 6rem;
}
.l-container--post {
  margin-inline: auto;
  max-width: 54.6875rem;
}
.l-container--form {
  margin-inline: auto;
  max-width: 51.25rem;
}

@media screen and (max-width: 1339px) {
  .l-container--wide {
    padding-inline: 2rem;
  }
  .l-container--post {
    max-width: 36.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-container--wide, .l-container--post {
    padding-inline: 4.8309178744vw;
    max-width: none;
  }
}
/* ===================================================
	ヘッダー:PC
==================================================== */
.g-header-pc {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: white;
}
.g-header-pc__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 3.5rem;
  line-height: 1;
}
.g-header-pc__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 1px 0 46px;
  font-size: 0;
}
.g-header-pc__button {
  display: block;
  padding: 10px;
  font-size: inherit;
  transition: opacity 300ms;
}
.g-header-pc__button:hover {
  opacity: 0.5;
}
.g-header-pc__button-inner {
  display: inline-block;
  width: 24px;
  aspect-ratio: 1/1;
  position: relative;
}
.g-header-pc__button-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transition: opacity 300ms;
}
.g-header-pc__button-line:first-child {
  top: 16.6666666667%;
  transition: top 300ms, transform 300ms;
}
.g-header-pc__button-line:nth-child(2) {
  top: calc(50% - 1px);
  transition: opacity 300ms, visibility 0ms 0ms;
}
.g-header-pc__button-line:last-child {
  bottom: 16.6666666667%;
  transition: bottom 300ms, transform 300ms;
}
.g-header-pc__button[aria-expanded=true] .g-header-pc__button-line:first-child {
  top: calc(50% - 1px);
  transform: rotate(225deg);
}
.g-header-pc__button[aria-expanded=true] .g-header-pc__button-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 0ms 300ms;
}
.g-header-pc__button[aria-expanded=true] .g-header-pc__button-line:last-child {
  bottom: calc(50% - 1px);
  transform: rotate(-225deg);
}
.g-header-pc__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.g-header-pc__social-link {
  display: inline-block;
  padding: 6px;
  transition: opacity 300ms;
}
.g-header-pc__social-link:hover {
  opacity: 0.5;
}
.g-header-pc__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-pc__contact:hover {
  background-color: #666;
}
.g-header-pc__contact::before, .g-header-pc__contact::after {
  content: "";
  position: absolute;
  top: 0;
}
.g-header-pc__contact::before {
  right: 0;
  border-style: solid;
  border-width: 10px 0 0 15px;
  border-color: var(--base-color-orange) transparent;
}
.g-header-pc__contact::after {
  left: 0;
  border-style: solid;
  border-width: 10px 15px 0 0;
  border-color: white transparent;
}

@media screen and (max-width: 767px) {
  .g-header-pc {
    display: none;
  }
}
/* ===================================================
	ヘッダー:SP
==================================================== */
.g-header-sp {
  display: none;
}
.g-header-sp__logo, .g-header-sp__button {
  position: fixed;
}
.g-header-sp__logo {
  top: 4.8309178744vw;
  left: 3.8647342995vw;
  display: inline-block;
  padding: 0.9661835749vw;
  z-index: 95;
}
.g-header-sp__logo svg {
  display: block;
  width: 14.7342995169vw;
  height: auto;
  aspect-ratio: 61/12;
}
.g-header-sp__button {
  right: 2.4154589372vw;
  top: 7.4879227053vw;
  z-index: 100;
  padding: 2.4154589372vw;
  box-sizing: content-box;
  transform: translateY(-50%);
  display: block;
}
.g-header-sp__button-inner {
  width: 12.077294686vw;
  aspect-ratio: 50/11;
  position: relative;
  display: inline-block;
}
.g-header-sp__button-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  display: block;
}
.is-logo-white .g-header-sp__button-line {
  background-color: white;
}
.g-header-sp__button-line:first-child {
  top: 0%;
  transition: top 300ms, transform 300ms, background-color 300ms;
}
.g-header-sp__button-line:last-child {
  bottom: 0%;
  transition: top 300ms, transform 300ms, background-color 300ms;
}
.g-header-sp__button[aria-expanded=true] .g-header-sp__button-line:first-child, .g-header-sp__button[aria-expanded=true] .g-header-sp__button-line:last-child {
  background-color: black;
}
.g-header-sp__button[aria-expanded=true] .g-header-sp__button-line:first-child {
  top: calc(50% - 1px);
  transform: rotate(192deg);
}
.g-header-sp__button[aria-expanded=true] .g-header-sp__button-line:last-child {
  bottom: calc(50% - 1px);
  transform: rotate(-192deg);
}
.g-header-sp .logo-main {
  fill: var(--base-color-black);
}
.g-header-sp .logo-accent {
  fill: var(--base-color-orange);
}
.g-header-sp.is-logo-transition .logo-main,
.g-header-sp.is-logo-transition .logo-accent {
  transition: fill 0.3s ease;
}
.g-header-sp.is-logo-white .logo-main,
.g-header-sp.is-logo-white .logo-accent {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  .g-header-sp {
    display: block;
  }
}
/* ===================================================
	グローバルメニュー
==================================================== */
.g-nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 500ms;
}
.g-nav[aria-hidden=false] {
  transform: none;
}
.g-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 500ms, visibility 0ms 500ms;
}
.g-nav__overlay[aria-hidden=false] {
  opacity: 0.85;
  visibility: visible;
  pointer-events: all;
  transition: opacity 500ms, visibility 0ms 0ms;
}
.g-nav__panel {
  background-color: white;
  border-right: 57px solid var(--base-color-bg);
  padding: 0 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.g-nav__body {
  display: flex;
  align-items: flex-start;
  gap: 0 47px;
}
.g-nav__col {
  flex: 1;
}
.g-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
.g-nav__item {
  position: relative;
  z-index: 0;
  padding: 0.7em 0 0 0.5em;
  flex: 50% 0 0;
}
.g-nav__item::before, .g-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 2.125rem;
  aspect-ratio: 34/36;
  background-image: linear-gradient(0deg, transparent 0%, #fcfcfc 58%, var(--transition-color) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: opacity 300ms;
}
.g-nav__item::before {
  --transition-color: #bcbaba;
}
.g-nav__item::after {
  --transition-color: #ee771d;
}
.g-nav__item.is-active::before, .g-nav__item:not(.is-active)::after {
  opacity: 0;
}
.g-nav__item.is-active::after, .g-nav__item:not(.is-active, :has(.g-nav__item-link:not([href]))):has(.g-nav__item-link:hover)::after, .g-nav__item:not(.is-active)::before {
  opacity: 1;
}
.g-nav__item-link {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.g-nav__item.is-active .g-nav__item-link {
  pointer-events: none;
}
.g-nav__item-en {
  font-size: 1.625rem;
}
.g-nav__item-ja {
  font-size: 0.6875rem;
}
.g-nav__submenu {
  margin-top: 0.6em;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 1em;
  font-weight: 700;
  font-size: 0.875rem;
}
.g-nav__submenu-item {
  width: -moz-max-content;
  width: max-content;
}
.g-nav__submenu-link[href] {
  transition: opacity 300ms;
}
.g-nav__submenu-link[href]:hover {
  opacity: 0.6;
}
@media screen and (hover: none) and (pointer: coarse) {
  .g-nav__submenu-link[href] {
    transition: none;
  }
  .g-nav__submenu-link[href]:hover {
    opacity: 1;
  }
  .g-nav__item::before, .g-nav__item::after {
    transition: none;
  }
  .g-nav__item:not(:has(.g-nav__item-link:not([href]))):has(.g-nav__item-link:hover)::after {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .g-nav {
    inset: 0;
  }
  .g-nav__panel {
    border-right: 0;
    padding: 3.8647342995vw 4.8309178744vw;
    width: 100%;
    display: block;
    overflow: auto;
  }
  .g-nav__body {
    margin-top: 10.8695652174vw;
    margin-bottom: 19.3236714976vw;
    gap: 0 4.8309178744vw;
  }
  .g-nav__menu {
    gap: 7.2463768116vw 0;
  }
  .g-nav__item::before, .g-nav__item::after {
    width: 5.5555555556vw;
  }
  .g-nav__item-en {
    font-size: 4.347826087vw;
  }
  .g-nav__item-ja {
    font-size: 2.1739130435vw;
  }
  .g-nav__submenu {
    margin-top: 0.6em;
    grid-template-columns: 1fr;
    gap: 0 1em;
    font-size: 2.6570048309vw;
  }
  .g-nav__submenu-item {
    width: -moz-max-content;
    width: max-content;
  }
}
/* ===================================================
	フッター
==================================================== */
.g-footer {
  padding: 56px 0 40px;
  background-color: white;
}
.g-footer__content {
  display: flex;
  justify-content: space-between;
}
.g-footer__social {
  margin-left: -0.375rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0;
}
.g-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1/1;
  transition: opacity 300ms;
}
.g-footer__social-link img {
  width: calc(100% * var(--icon-width) / 48);
}
.g-footer__social-link:hover {
  opacity: 0.5;
}
.g-footer__lead {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font: 400 1.25rem/1 "Roboto", sans-serif;
  color: #949494;
}
.g-footer__logo-link {
  margin-top: 0.6em;
  display: inline-block;
  transition: opacity 300ms;
  font-size: 0;
}
.g-footer__logo-link img {
  width: 100%;
}
.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;
}

@media screen and (hover: none) and (pointer: coarse) {
  .g-footer__social-link, .g-footer__menu-item a, .g-footer__logo-link {
    transition: none;
  }
  .g-footer__social-link:hover, .g-footer__menu-item a:hover, .g-footer__logo-link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1339px) {
  .g-footer__inner {
    padding-inline: 2.5rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .g-footer {
    padding: 10.8695652174vw 0 19.3236714976vw;
  }
  .g-footer__inner {
    padding-inline: 4.8309178744vw;
  }
  .g-footer__content {
    flex-direction: column-reverse;
    gap: 14.4927536232vw 0;
  }
  .g-footer__nav {
    width: auto;
  }
  .g-footer__menu {
    grid-template-columns: 50% 50%;
    grid-template-rows: initial;
    gap: 1.2em 0;
    font-size: 3.1400966184vw;
  }
  .g-footer__social {
    gap: 3.8647342995vw;
  }
  .g-footer__social-link {
    width: 8.5024154589vw;
  }
  .g-footer__lead {
    margin-top: 4.6376811594vw;
    font-size: 3.8647342995vw;
  }
  .g-footer__logo-link {
    margin-top: 2.8985507246vw;
    width: 34.5410628019vw;
  }
  .g-footer__address {
    margin-top: 2.5em;
    font-size: 2.4154589372vw;
  }
  .g-footer__copyrights {
    margin-top: 1em;
    font-size: 2.4154589372vw;
  }
}
/* ===================================================
	SP用画面追従ソーシャルナビ
==================================================== */
.floating-sp-nav {
  display: none;
  position: fixed;
  inset: auto 4.8309178744vw 4.8309178744vw;
  z-index: 100;
}
.floating-sp-nav__inner {
  display: grid;
  grid-template-columns: 1fr 25.845410628vw;
  gap: 0.7246376812vw;
}
.floating-sp-nav__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7246376812vw;
}
.floating-sp-nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  aspect-ratio: 1/1;
}
.floating-sp-nav__social-link svg {
  width: 6.2801932367vw;
  height: 6.2801932367vw;
  transition: opacity 300ms;
}
.floating-sp-nav__social-link:hover svg {
  opacity: 0.5;
}
.floating-sp-nav__contact {
  color: white;
  display: flex;
  align-items: center;
  padding-left: 7.4879227053vw;
  position: relative;
  font: 500 3.6231884058vw/1 "Roboto", sans-serif;
}
.floating-sp-nav__contact-bg {
  background-color: black;
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(2.5024154589vw 0, 100% 0, 100% 100%, 2.5024154589vw 100%, 0 calc(100% - 3.4106280193vw), 0 3.4106280193vw);
}
.floating-sp-nav__contact::before, .floating-sp-nav__contact::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: -2;
  width: auto;
  height: 50%;
  aspect-ratio: 1/1;
}
.floating-sp-nav__contact::before {
  top: 0;
  background-color: var(--base-color-orange);
}
.floating-sp-nav__contact::after {
  bottom: 0;
  background-color: white;
}

@media screen and (hover: none) and (pointer: coarse) {
  .floating-sp-nav__social-link svg {
    transition: none;
  }
  .floating-sp-nav__social-link:hover svg {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .floating-sp-nav {
    display: block;
  }
}
/* ===================================================
	下層ページヘッダー
==================================================== */
.c-page-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 90;
  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: 1.25rem;
  margin-left: -0.3125rem;
}
.c-page-header__logo-link {
  padding: 0.3125rem;
  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;
}

@media screen and (hover: none) and (pointer: coarse) {
  .c-page-header__logo-link {
    transition: none;
  }
  .c-page-header__logo-link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-page-header {
    display: none;
  }
  .c-page-header__tagline {
    font-size: 1.690821256vw;
  }
  .c-page-header__logo-link img {
    width: 13.9130434783vw;
  }
  .c-page-header__logo-wrapper {
    margin-top: 0.25em;
  }
}
/* ===================================================
	下層ページヒーロー
==================================================== */
.c-page-hero {
  padding-top: 9.25rem;
  font-family: "Roboto", sans-serif;
  color: var(--base-color-black);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}
.c-page-hero__bg {
  position: absolute;
  left: 52.9045643154%;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transform: skewX(-16deg);
  transform-origin: top left;
  background-color: var(--base-color-orange);
}
.page-team .c-page-hero__bg {
  height: 100vh;
  height: 100svh;
}
.c-page-hero__inner {
  padding-inline: 6rem;
}
.c-page-hero__court-frame {
  position: absolute;
  z-index: -1;
  inset: 0;
  padding-right: 3.4375rem;
}
.c-page-hero__court {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-page-hero__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5.875rem;
  gap: 0 2.25rem;
}
.c-page-hero__title {
  padding-top: 2em;
}
.c-page-hero__title-label {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.c-page-hero__title-lead {
  font-size: 2.28125rem;
  line-height: 1.5;
}
.c-page-hero__title-lead--bold {
  font-weight: 700;
}
.c-page-hero__title-main {
  font-size: 2.28125rem;
  line-height: 1.2;
}
.c-page-hero__title-main--number {
  font-size: 3.7493150685em;
  font-style: italic;
  font-weight: 400;
  vertical-align: middle;
  position: relative;
  top: -0.15em;
}
.c-page-hero__title-main--middle {
  font-size: 1.4997260274em;
}
.c-page-hero__title-main--large {
  font-size: 1.9178082192em;
}
.c-page-hero__description {
  color: white;
  font-size: 1.125rem;
  line-height: 1.9;
}
.c-page-hero__description p:not(:first-child) {
  margin-top: 1.9em;
}

#hero-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1339px) {
  .c-page-hero {
    padding-right: 3.5rem;
  }
  .c-page-hero__inner {
    padding-inline: 2rem;
  }
  .c-page-hero__content {
    display: block;
    margin-top: 3.75rem;
  }
  .c-page-hero__description {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-hero {
    padding: 19.3236714976vw 4.8309178744vw 19.3236714976vw 7.2463768116vw;
    min-height: auto;
  }
  .c-page-hero__diagonal {
    aspect-ratio: 2/8;
    height: 100%;
    width: auto;
  }
  .c-page-hero__inner {
    padding-inline: 0;
  }
  .c-page-hero__content {
    margin-top: 9.6618357488vw;
    margin-left: -2.4154589372vw;
  }
  .c-page-hero__title {
    padding-top: 0;
  }
  .c-page-hero__title-label {
    font-size: 4.347826087vw;
  }
  .c-page-hero__title-lead {
    font-size: 5.7971014493vw;
  }
  .c-page-hero__title-main {
    font-size: 6.7632850242vw;
  }
  .c-page-hero__description {
    margin-top: 9.6618357488vw;
    font-size: 3.6231884058vw;
  }
  .c-page-hero__court-frame {
    padding-right: 0;
  }
}
/* ===================================================
	下層ページヒーロー：ページ背景
==================================================== */
/* ===================================================
	CTAエリア：Contact
==================================================== */
.c-cta-contact {
  padding: 7.5rem 0 5rem;
}
.c-cta-contact__panel {
  padding: 3rem 0 6.25rem;
  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);
}

@media screen and (hover: none) and (pointer: coarse) {
  .c-cta-contact__btn:hover {
    background-color: var(--base-color-yellow);
  }
}
@media screen and (max-width: 1339px) {
  .c-cta-contact__panel {
    padding: 3rem 7.1rem 6.25rem 3.6rem;
  }
  .c-cta-contact__decoration {
    left: calc(50% - 1.75rem);
  }
  .c-cta-contact__title {
    font-size: 7rem;
  }
  .c-cta-contact__lead {
    font-size: 2rem;
  }
  .c-cta-contact__text {
    font-size: 1.2rem;
  }
  .c-cta-contact__btn {
    left: calc(50% - 1.75rem);
  }
}
@media screen and (max-width: 767px) {
  .c-cta-contact {
    padding-block: 14.4927536232vw 8.4541062802vw;
  }
  .c-cta-contact__decoration {
    top: -10.1449275362vw;
    width: 29.7101449275vw;
    left: 50%;
  }
  .c-cta-contact__panel {
    padding: 11.5942028986vw 4.8309178744vw 17.3913043478vw;
  }
  .c-cta-contact__title {
    font-size: 19.3236714976vw;
  }
  .c-cta-contact__lead {
    margin-top: 0.8333333333em;
    font-size: 5.7971014493vw;
  }
  .c-cta-contact__text {
    margin-top: 2.5em;
    font-size: 3.8647342995vw;
    line-height: 1.75;
    text-align: left;
  }
  .c-cta-contact__text br {
    display: none;
  }
  .c-cta-contact__btn {
    left: 50%;
    width: 54.5893719807vw;
    font-size: 3.8647342995vw;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1.9323671498vw 100%, 0 calc(100% - 2.8985507246vw));
  }
}
/* ===================================================
	CTAエリア：Recruit
==================================================== */
.c-cta-recruit {
  background: var(--base-color-orange) center center/cover no-repeat;
  position: relative;
}
.c-cta-recruit__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.c-cta-recruit__bg img {
  position: absolute;
  top: 51%;
  left: calc(50% - 290px);
  mix-blend-mode: screen;
  max-width: none;
}
.c-cta-recruit__triangles-frame {
  position: absolute;
  top: 20%;
  left: calc(50% - 50px);
  width: 500px;
  aspect-ratio: 1/1;
}
.c-cta-recruit__panel {
  margin-right: auto;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-cta-recruit__inner {
  margin: 0 auto;
  padding: 6.25rem 0 7.5rem;
  max-width: 72.5rem;
  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;
}

@media screen and (max-width: 1339px) {
  .c-cta-recruit {
    margin-right: 3.5rem;
  }
  .c-cta-recruit__bg img {
    top: 60%;
    width: 1200px;
  }
  .c-cta-recruit__inner {
    padding: 5rem 4rem 15rem;
  }
  .c-cta-recruit__panel {
    width: auto;
  }
  .c-cta-recruit__title {
    font-size: 6.4rem;
  }
  .c-cta-recruit__lead {
    font-size: 2rem;
  }
  .c-cta-recruit__description {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta-recruit {
    margin-right: 0;
  }
  .c-cta-recruit__inner {
    padding: 9.6618357488vw 4.8309178744vw 57.9710144928vw;
  }
  .c-cta-recruit__bg img {
    top: 70%;
    left: -16%;
    width: 193.2367149758vw;
  }
  .c-cta-recruit__triangles-frame {
    top: 55%;
    left: 15%;
    width: 57.9710144928vw;
  }
  .c-cta-recruit__title {
    font-size: 14.9758454106vw;
  }
  .c-cta-recruit__lead {
    font-size: 5.7971014493vw;
  }
  .c-cta-recruit__description {
    font-size: 3.8647342995vw;
  }
  .c-cta-recruit__footer {
    margin-top: 9.6618357488vw;
    gap: 0 3.8647342995vw;
  }
  .c-cta-recruit__link {
    padding: 1em 2em 1em calc(2em + 2.4154589372vw);
    font-size: 3.8647342995vw;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.4154589372vw 100%, 0 calc(100% - 4.347826087vw));
  }
}
/* ===================================================
	フッター・ニュース一覧
==================================================== */
.foot-news {
  padding: 28px 0 40px;
  background-color: white;
  margin-block: 2px;
}
.foot-news__content {
  position: relative;
  display: flex;
}
.foot-news__content::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: 3rem;
  aspect-ratio: 48/51;
  background: linear-gradient(to bottom, rgb(238, 119, 29) 0%, rgba(238, 119, 29, 0.25) 42%, rgba(238, 119, 29, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.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-link svg {
  aspect-ratio: 25/12;
  height: auto;
}
.foot-news__more-text {
  font: 500 1rem/1 "Roboto", sans-serif;
}

@media screen and (hover: none) and (pointer: coarse) {
  .foot-news__archive-link:hover {
    text-decoration: initial;
  }
  .foot-news__more-link {
    transition: none;
  }
  .foot-news__more-link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1339px) {
  .foot-news__inner {
    padding-inline: 2.5rem 5rem;
  }
  .foot-news__content {
    display: block;
  }
  .foot-news__head {
    width: auto;
  }
  .foot-news__archives {
    margin-top: 1em;
    width: auto;
  }
  .foot-news__more {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .foot-news {
    padding-block: 15.4589371981vw 11.5942028986vw;
  }
  .foot-news__inner {
    padding-inline: 8.6956521739vw 4.8309178744vw;
  }
  .foot-news__content::before {
    top: -3.8647342995vw;
    width: 9.4202898551vw;
  }
  .foot-news__title {
    font-size: 4.347826087vw;
  }
  .foot-news__archive {
    display: block;
  }
  .foot-news__archive-time {
    width: auto;
    font-size: 3.1400966184vw;
  }
  .foot-news__archive-title {
    max-width: none;
    width: auto;
    overflow: initial;
    white-space: initial;
    text-overflow: initial;
    line-height: 1.1538461538;
    font-size: 3.1400966184vw;
  }
  .foot-news__more-link {
    margin-top: 7.729468599vw;
    margin-left: 0;
    margin-right: auto;
  }
  .foot-news__more-link svg {
    width: 6.038647343vw;
  }
  .foot-news__more-text {
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	セクション共通パーツ
==================================================== */
.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: 1339px) {
  .c-page-title {
    padding: 9.3125rem 2rem 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-title {
    padding: 19.3236714976vw 4.8309178744vw 0 7.2463768116vw;
  }
  .c-page-title__title {
    font-size: 2em;
    gap: 0.25em 0;
  }
  .c-page-title__en {
    font-size: 7.729468599vw;
    line-height: 1.25;
  }
  .c-page-title__ja {
    font-size: 3.3816425121vw;
  }
  .c-page-title__en::before {
    width: 7.729468599vw;
  }
}
/* ===================================================
	ページネーション（記事一覧用）
==================================================== */
.c-pagination-archive {
  padding-block: 2.5rem;
  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;
}

@media screen and (hover: none) and (pointer: coarse) {
  .c-pagination-archive .page-numbers[href] {
    transition: none;
  }
  .c-pagination-archive .page-numbers[href]:hover {
    background-color: black;
  }
}
@media screen and (max-width: 1339px) {
  .c-pagination-archive {
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination-archive {
    padding-block: 5.7971014493vw;
    padding-right: 0;
  }
  .c-pagination-archive .nav-links {
    gap: 0 1em;
  }
  .c-pagination-archive .page-numbers {
    font-size: 3.8647342995vw;
    width: 2.2222222222em;
  }
}
/* ===================================================
	ページネーション（記事詳細用）
==================================================== */
.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;
}

@media screen and (max-width: 1339px) {
  .c-pagination-single {
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination-single {
    margin-top: 14.4927536232vw;
    padding-right: 0;
  }
  .c-pagination-single__inner {
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	記事本文の共通WP出力DOM調整（お知らせ・コラム等）
==================================================== */
.l-post-content {
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
}
.l-post-content > *:not(:last-child) {
  margin-bottom: 2em;
}
.l-post-content h2.wp-block-heading {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 1.5rem;
  border-left: 4px solid var(--base-color-orange);
  padding-left: 0.5em;
  line-height: 1.25;
}
.l-post-content h3.wp-block-heading {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--base-color-orange);
}
.l-post-content .wp-block-image {
  margin-inline: -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;
}

@media screen and (max-width: 1339px) {
  .l-post-content .wp-block-image {
    margin-inline: -6.4%;
  }
}
@media screen and (max-width: 767px) {
  .l-post-content {
    font-size: 3.3816425121vw;
    line-height: 1.75;
  }
  .l-post-content h2.wp-block-heading {
    font-size: 4.8309178744vw;
    border-left-width: 0.9661835749vw;
  }
  .l-post-content h3.wp-block-heading {
    font-size: 4.347826087vw;
  }
  .l-post-content .wp-block-image {
    margin-inline: -4.8309178744vw;
  }
  .l-post-content .wp-block-list {
    border-radius: 4.8309178744vw;
    padding: 1.5em 4.8309178744vw;
  }
  .l-post-content .wp-block-quote {
    padding-left: 4em;
  }
  .l-post-content .wp-block-quote::before {
    font-size: 7em;
  }
}
/* ===================================================
	目次（WPプラグイン『Easy Table of Contents』）
==================================================== */
.ez-toc-container-direction {
  margin-bottom: 3em !important;
}
.ez-toc-title-container {
  margin-bottom: 0.5em;
}
.ez-toc-link:hover {
  text-decoration: underline;
}
.ez-toc-title {
  font-weight: 700;
  font-size: 0.8125rem;
}
.ez-toc-container-direction nav {
  padding: 2em 2.5em;
  background-color: white;
  border: 1px solid #dbdbdb;
  font-weight: 500;
  line-height: 1.5;
}
.ez-toc-heading-level-2 {
  font-weight: 700;
  font-size: 1.125rem;
}
.ez-toc-heading-level-2:not(:first-child) {
  margin-top: 1.5em;
}
.ez-toc-heading-level-3 {
  padding-left: 1em;
  font-weight: 500;
  font-size: 0.875rem;
}
.ez-toc-list-level-3 {
  margin-top: 0.75em;
}
.ez-toc-heading-level-3:nth-child(n+2) {
  margin-top: 0.75em;
}

@media screen and (hover: none) and (pointer: coarse) {
  .ez-toc-link:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .ez-toc-container-direction nav {
    padding: 3.8647342995vw 4.8309178744vw;
  }
  .ez-toc-heading-level-2 {
    font-size: 3.8647342995vw;
  }
  .ez-toc-heading-level-3 {
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	アニメーション
==================================================== */
.c-anime-triangles {
  width: 100%;
  height: 100%;
  position: relative;
}
.c-anime-triangles .triangle {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
  animation: rise linear forwards;
}
@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(var(--rise));
    opacity: 0;
  }
}

/* ===================================================
	テスト
==================================================== */
/* ===================================================
	MV
==================================================== */
.mv {
  overflow: hidden;
  padding-right: 3.5rem;
  font-size: 0;
  line-height: 1;
}
.mv__media {
  height: 100%;
  position: relative;
}
.mv__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease-out;
  overflow: hidden;
}
.mv__stage.is-loaded {
  opacity: 1;
}
.mv__hero {
  aspect-ratio: 16/9;
  width: min(100vw, 177.7777777778vh);
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
.mv__hero svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv {
    padding-right: 0;
  }
}
/* ===================================================
	アプローチ
==================================================== */
.top-approach {
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
}
.top-approach__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - ((100% - 78rem) / 2 + 47.8125rem));
  height: 63.625rem;
  background-color: black;
}
.top-approach__bg canvas {
  width: 100% !important;
  height: 100% !important;
}
.top-approach__inner {
  display: grid;
  grid-template-columns: 1fr 38.125rem;
  position: relative;
}
.top-approach__cover {
  line-height: 1;
  color: white;
}
.top-approach__shoulder {
  margin-top: 8em;
  font: 300 italic 7.5rem/0.8333333333 "Roboto", sans-serif;
  letter-spacing: -0.07em;
  color: white;
}
.top-approach__shoulder--sp {
  display: none;
}
.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%;
  height: auto;
}
.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;
}
@media screen and (max-width: 1339px) {
  .top-approach {
    padding-top: 5rem;
    padding-right: 3.5rem;
  }
  .top-approach__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% + 12.5rem);
    height: 37.5rem;
  }
  .top-approach__shoulder {
    margin-top: 1em;
  }
  .top-approach__shoulder--pc {
    display: none;
  }
  .top-approach__shoulder--sp {
    display: block;
  }
  .top-approach__inner {
    grid-template-columns: 1fr;
    max-width: 36.25rem;
    margin-inline: auto;
  }
  .top-approach__header {
    width: 38.75rem;
  }
  .top-approach__body {
    margin: 26rem 5rem 0 auto;
    width: 38.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-approach {
    padding-top: 14.4927536232vw;
    padding-right: 0;
  }
  .top-approach__bg {
    width: 85.9903381643%;
    height: auto;
    aspect-ratio: 356/504;
  }
  .top-approach__inner {
    padding: 0 4.8309178744vw;
  }
  .top-approach__logo {
    width: 42.5628019324vw;
  }
  .top-approach__cover {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
  .top-approach__cover-sub {
    font-size: 7.729468599vw;
  }
  .top-approach__cover-main {
    font-size: 12.5603864734vw;
  }
  .top-approach__header {
    width: auto;
  }
  .top-approach__body {
    margin: 98.0676328502vw 0 0;
    padding-left: 7.2463768116vw;
    width: auto;
  }
  .top-approach__shoulder {
    margin-top: 11.1111111111vw;
    margin-left: -7.2463768116vw;
    font-size: 16.4251207729vw;
  }
  .top-approach__shoulder p {
    display: block;
    margin-inline: auto;
    width: -moz-max-content;
    width: max-content;
  }
  .top-approach__body-mark {
    top: 2.7em;
    right: auto;
    left: 0;
    width: 3.6231884058vw;
  }
  .top-approach__heading {
    font-size: 4.347826087vw;
    line-height: 1.6;
  }
  .top-approach__heading-main {
    font-size: 7.2463768116vw;
    line-height: 1.2;
  }
  .top-approach__description {
    margin-top: 3em;
    font-size: 3.1400966184vw;
  }
  .top-approach__diagram-wrapper {
    margin-top: 1.5em;
    margin-left: -7.2463768116vw;
    padding: 0 3.3816425121vw;
  }
  .top-approach__diagram-group-center .top-approach__diagram-number {
    transform: translateY(0.2em);
  }
  .top-approach__diagram-number {
    font-size: 72px;
  }
  .top-approach__diagram-text {
    font-size: 28px;
  }
}
/* ===================================================
	プロセススライド
==================================================== */
.top-process {
  margin: 5rem 0;
  position: relative;
}
.top-process__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-process__bg-panel {
  height: 44.375rem;
  width: calc(50% + 30.5625rem);
  border-radius: 9999px 0 0 9999px;
  background-color: white;
}
.top-process__slides {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}
.top-process__slide {
  transition: opacity 350ms ease, transform 350ms ease;
}
.top-process.is-snap-enabled .top-process__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.top-process.is-snap-enabled .top-process__slides {
  height: 100%;
}
.top-process.is-snap-enabled .top-process__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 64px 0;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
}
.top-process.is-snap-enabled .top-process__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.top-process__slide-inner {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  width: 100%;
}
.top-process__slide-header {
  flex: 0 0 148px;
}
.top-process__slide-number {
  font-style: italic;
  font-weight: 400;
  font-size: 12.5rem;
  line-height: 1;
}
.top-process__slide-body {
  flex: 1 1 auto;
  padding-left: 158px;
}
.top-process__slide-lead {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--base-color-orange);
}
.top-process__slide-title {
  margin-top: 0.3em;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
  position: relative;
}
.top-process__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-process__slide-text {
  margin-top: 1.5em;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
}
.top-process__slide-link-wrapper {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.625rem;
}
.top-process__slide-line {
  margin: 0;
  border-style: solid;
  border-color: black;
  border-width: 1px 0 0;
  flex-grow: 1;
}
.top-process__slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  width: 9.625rem;
  height: 3.5rem;
  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-process__slide-link:hover {
  background-color: var(--base-color-black-hover);
}
.top-process__slide-diagram {
  flex-shrink: 0;
  position: relative;
  margin-right: -3.4375rem;
  margin-left: 2.5rem;
  width: 27.625rem;
  align-self: stretch;
}
.top-process__slide-diagram-panel {
  position: absolute;
  inset: -24px auto auto 0;
  width: 27.625rem;
  aspect-ratio: 442/583;
  border-radius: 3.125rem;
  border: 4px solid white;
  overflow: hidden;
  background-color: white;
}
.top-process__slide-diagram svg {
  position: absolute;
  inset: 0;
}
html.is-scroll-locked,
html.is-scroll-locked body {
  height: 100%;
  overflow: hidden;
}

@media screen and (hover: none) and (pointer: coarse) {
  .top-process__slide-link {
    transition: none;
  }
  .top-process__slide-link:hover {
    background-color: black;
  }
}
@media screen and (max-width: 1339px) {
  .top-process {
    margin: 18.115942029vw 0 28.9855072464vw;
    padding-right: 3.5rem;
  }
  .top-process__inner {
    margin-inline: auto;
    max-width: 36.25rem;
  }
  .top-process__bg {
    display: none;
  }
  .top-process__slides {
    padding-left: 2.5rem;
    padding-block: 0;
    gap: 3.75rem;
  }
  .top-process__slide-inner {
    display: block;
    position: relative;
    width: auto;
  }
  .top-process__slide-inner::before {
    content: "";
    position: absolute;
    left: -6.5rem;
    top: 2rem;
    z-index: -1;
    width: calc(100% + (100vw - 3.5rem - 2.5rem + 13rem - 100%) / 2);
    height: 500px;
    border-radius: 9999px 0 0 9999px;
    background-color: white;
  }
  .top-process__slide-number {
    font-size: 7.5rem;
  }
  .top-process__slide-lead {
    font-size: 1.375rem;
  }
  .top-process__slide-title {
    font-size: 2rem;
  }
  .top-process__slide-text {
    font-size: 1.125rem;
  }
  .top-process__slide-body {
    margin-top: 1rem;
    padding-left: 0;
  }
  .top-process__slide-diagram {
    position: static;
    margin: 2rem auto 0;
  }
  .top-process__slide-diagram-panel {
    top: 0;
    position: relative;
    border-radius: 50px;
    border: 4px solid white;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-process {
    padding-right: 0;
  }
  .top-process__slides {
    padding-left: 4.8309178744vw;
    gap: 5rem;
  }
  .top-process__slide-header, .top-process__slide-body {
    padding-left: 16.9082125604vw;
    padding-right: 4.8309178744vw;
  }
  .top-process__slide-inner::before {
    left: 0;
    right: 0;
    top: 2rem;
    width: 100%;
    height: auto;
    aspect-ratio: 394/485;
  }
  .top-process__slide-number {
    font-size: 31.4009661836vw;
  }
  .top-process__slide-lead {
    font-size: 4.347826087vw;
  }
  .top-process__slide-title {
    font-size: 7.2463768116vw;
  }
  .top-process__slide-title::before {
    top: 0.5em;
    left: -0.7333333333em;
    width: 3.9782608696vw;
    aspect-ratio: 16.5/3.3;
  }
  .top-process__slide-text {
    font-size: 3.1400966184vw;
    line-height: 1.6923076923;
  }
  .top-process__slide-diagram {
    margin: 2rem 9.6618357488vw 0 4.8309178744vw;
    width: auto;
  }
  .top-process__slide-diagram svg {
    width: 100%;
    height: 100%;
  }
  .top-process__slide-link-wrapper {
    margin-top: 1em;
    gap: 8.0917874396vw;
  }
  .top-process__slide-link {
    font-size: 3.3816425121vw;
    width: 27.7777777778vw;
    height: 11.7874396135vw;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	会社情報／代表挨拶ページ：代表の写真セクション
==================================================== */
.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__sp-image {
  display: none;
}
.p-about-content__sp-image img {
  width: 100%;
}
.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-about-content__message-description {
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 1339px) {
  .p-about-content__inner {
    display: block;
  }
  .p-about-content__content {
    padding: 9.25rem 5.5rem 0 3rem;
  }
  .p-about-content__visual {
    display: none;
  }
  .p-about-content__sp-image {
    margin-block: 5rem;
    margin-inline-start: -3rem;
    margin-inline-end: -2rem;
    display: block;
  }
  .p-about-content__sp-image:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about-content__content {
    padding: 19.3236714976vw 4.8309178744vw 0 7.2463768116vw;
  }
  .p-about-content__title {
    font-size: 4.8309178744vw;
  }
  .p-about-content__title::before {
    top: 0.6em;
    right: calc(100% + 0.4em);
    width: 0.75em;
    aspect-ratio: 15/3;
  }
  .p-about-content__title-label {
    font-size: 130%;
  }
  .p-about-content__sp-image {
    margin-block: 9.6618357488vw;
    margin-inline-start: -7.2463768116vw;
    margin-inline-end: -4.8309178744vw;
  }
  .p-about-content__hero, .p-about-content__message, .p-about-content__profile {
    margin-top: 9.6618357488vw;
  }
  .p-about-content__hero-description, .p-about-content__message-description, .p-about-content__profile-description {
    margin-top: 7.729468599vw;
    font-size: 3.6231884058vw;
  }
  .p-about-content__profile-content {
    margin-top: 7.729468599vw;
  }
  .p-about-content__profile-list {
    display: block;
  }
  .p-about-content__profile-item {
    display: block;
  }
  .p-about-content__profile-item:not(:first-child) {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #ccc;
  }
  .p-about-content__profile-term {
    font-size: 3.8647342995vw;
  }
  .p-about-content__profile-description {
    margin-top: 0.5em;
  }
}
/* ===================================================
	サービスページ：スキルセットの図
==================================================== */
.p-service-skil-set__inner {
  margin-inline: auto;
  max-width: 1240px;
}
.p-service-skil-set__diagram {
  position: relative;
}
.p-service-skil-set__panel {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  place-items: center;
}
.p-service-skil-set__title {
  position: absolute;
  left: 0;
  top: 0.75em;
  font: italic 6.25rem/1 "Roboto", sans-serif;
  text-decoration: underline;
  text-decoration-color: var(--base-color-orange);
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.12em;
}

@media screen and (max-width: 1339px) {
  .p-service-skil-set {
    margin-top: 3.75rem;
    padding-right: 3.5rem;
  }
  .p-service-skil-set__inner {
    max-width: var(--base-container-width-bp1);
  }
  .p-service-skil-set__diagram {
    padding-top: 1rem;
  }
  .p-service-skil-set__title {
    top: 0;
    font-size: 4rem;
  }
  .p-service-skil-set__panel {
    padding: 1.25rem;
  }
  .p-service-skil-set__panel svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-service-skil-set {
    margin-top: 14.4927536232vw;
    padding-right: 0;
  }
  .p-service-skil-set__inner {
    padding-inline: 4.8309178744vw;
    max-width: none;
  }
  .p-service-skil-set__title {
    font-size: 11.5942028986vw;
  }
  .p-service-skil-set__panel {
    padding: 4.8309178744vw;
  }
}
/* ===================================================
	サービスページ：スライド
==================================================== */
.p-service-content {
  margin: 80px 0;
  position: relative;
}
.p-service-content__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.p-service-content__bg {
  position: absolute;
  inset: 0;
}
.p-service-content__slides {
  position: relative;
  height: 100%;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 64px 0;
  max-width: 1160px;
  margin-inline: auto;
}
.p-service-content__slide {
  position: absolute;
  inset: 0;
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}
.p-service-content__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.p-service-content__spacer {
  height: 300vh;
}
.p-service-content__slide-inner {
  position: relative;
  z-index: 0;
  padding: 6rem 0 0 6.25rem;
}
.p-service-content__slide-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 25.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 6px solid transparent;
  background: linear-gradient(158deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 72%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.p-service-content__slide-title-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  line-height: 1;
}
.p-service-content__slide-title {
  margin-top: 0.25em;
  font-weight: 300;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: black;
}
.p-service-content__slide-title-en {
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  color: var(--base-color-yellow);
}
.p-service-content__slide-number {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.07em;
  font-size: 6.25rem;
}
.p-service-content__slide-body {
  margin: 2.875rem 0 0;
  display: grid;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  grid-template-columns: 1fr 34.375rem;
}
.p-service-content__slide-description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2.2222222222;
}
.p-service-content__slide-cards {
  padding-top: 0.7em;
  display: flex;
  flex-direction: column;
  gap: 1.4375rem 0;
}
.p-service-content__slide-card {
  padding: 0.75em 1em 0.75em 2.75em;
  background-color: #fff;
  color: #000;
  position: relative;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-service-content__slide-card p {
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-service-content__slide-card::before {
  content: "";
  position: absolute;
  left: -0.5625rem;
  top: 1.2em;
  width: 2rem;
  aspect-ratio: 32/8;
  background-color: #000;
  clip-path: polygon(0.125rem 0, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 1339px) {
  .p-service-content {
    padding-right: 3.5rem;
  }
  .p-service-content__inner {
    margin-inline: auto;
    max-width: var(--base-container-width-bp1);
  }
  .p-service-content__slide-inner {
    padding: 3.75rem 0 0 3.75rem;
  }
  .p-service-content__slide-title-en {
    font-size: 2rem;
  }
  .p-service-content__slide-number {
    font-size: 5.125rem;
  }
  .p-service-content__slide-title {
    font-size: 2.25rem;
  }
  .p-service-content__slide-body {
    margin: 2.875rem 0 0;
    display: block;
  }
  .p-service-content__slide-circle {
    width: 20rem;
  }
  .p-service-content__slide-description {
    font-size: 1rem;
  }
  .p-service-content__slide-card {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-content {
    padding-right: 0;
  }
  .p-service-content__inner {
    margin-inline: 4.8309178744vw;
    max-width: none;
  }
  .p-service-content__slide-inner {
    padding: 9.6618357488vw 0 0 2.4154589372vw;
  }
  .p-service-content__slide-circle {
    width: 48.309178744vw;
    border-width: 0.9661835749vw;
  }
  .p-service-content__slide-header {
    padding-left: 1em;
  }
  .p-service-content__slide-title-wrapper {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
  .p-service-content__slide-title-en {
    font-size: 6.7632850242vw;
  }
  .p-service-content__slide-number {
    font-size: 14.9758454106vw;
  }
  .p-service-content__slide-title {
    font-size: 5.7971014493vw;
  }
  .p-service-content__slide-description {
    font-size: 3.3816425121vw;
  }
  .p-service-content__slide-card {
    font-size: 3.3816425121vw;
  }
}
.team-page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* ===================================================
	ダイアグラム
==================================================== */
.team-diagram {
  margin-top: -13.75rem;
}
.team-diagram__panel {
  background-color: white;
  padding-block: 11.25rem;
  border-radius: 0 2.8125rem 2.8125rem 0;
  width: calc(50% + 5.625rem);
}
.team-diagram__panel svg {
  display: block;
  margin-inline: auto 7.8125rem;
}

@media screen and (max-width: 1339px) {
  .team-diagram {
    padding-right: 3.5rem;
    margin-top: -10rem;
  }
  .team-diagram__panel {
    margin-inline: auto;
    padding: 2.5rem;
    border-radius: 2.8125rem;
    width: 90%;
  }
  .team-diagram__panel svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .team-diagram {
    padding-right: 0;
    margin-top: -14.4927536232vw;
  }
  .team-diagram__panel {
    margin-inline: 4.8309178744vw;
    padding: 9.6618357488vw 4.8309178744vw;
    width: auto;
  }
  .team-diagram__panel svg {
    width: 100%;
  }
}
/* ===================================================
	社員リスト
==================================================== */
.team-member {
  margin-block: -38.125rem 7.5rem;
}
.team-member__inner {
  margin-inline: auto;
  max-width: 1240px;
}
.team-member__list {
  display: grid;
  gap: 6.25rem;
  width: 54.2741935484%;
  margin-left: auto;
}
.team-member__position {
  font: 700 0.75rem/1 "Roboto", sans-serif;
}
.team-member__name {
  font: 500 1.125rem/2.5 "Roboto", sans-serif;
}
.team-member__description {
  margin-top: 0.5em;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 1339px) {
  .team-member {
    margin-top: 5rem;
    padding-right: 3.5rem;
  }
  .team-member__inner {
    margin-inline: auto;
    max-width: var(--base-container-width-bp1);
  }
}
@media screen and (max-width: 767px) {
  .team-member {
    margin-block: 14.4927536232vw;
    padding-right: 0;
  }
  .team-member__inner {
    margin-inline: 4.8309178744vw;
    max-width: none;
  }
  .team-member__list {
    gap: 9.6618357488vw;
    width: 80vw;
  }
  .team-member__position {
    font-size: 2.8985507246vw;
  }
  .team-member__name {
    font-size: 4.347826087vw;
  }
  .team-member__description {
    font-size: 3.6231884058vw;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	お問い合わせページ：ヒーロー
==================================================== */
.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: 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__triangles-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.p-contact-hero__triangles {
  width: 460px;
  aspect-ratio: 1/1;
}
.p-contact-hero__visual-card {
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 1339px) {
  .p-contact-hero {
    height: auto;
  }
  .p-contact-hero__content {
    margin-right: 0;
    padding: 9.25rem 7.75rem 3rem 3rem;
    width: auto;
    height: auto;
  }
  .p-contact-hero__lead {
    margin-top: 5rem;
  }
  .p-contact-hero__visual {
    position: static;
    aspect-ratio: 16/9;
    padding-right: 3.5rem;
  }
  .p-contact-hero__visual-inner {
    width: auto;
    height: 100%;
  }
  .p-contact-hero__visual-card {
    position: static;
    display: none;
  }
  .p-contact-hero__triangles {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-hero__content {
    padding: 19.3236714976vw 7.2463768116vw 7.2463768116vw;
  }
  .p-contact-hero__visual {
    padding-right: 0;
  }
  .p-contact-hero__lead {
    margin-top: 14.4927536232vw;
    padding-left: 1em;
  }
  .p-contact-hero__lead-label {
    font-size: 4.347826087vw;
  }
  .p-contact-hero__lead-text {
    font-size: 5.7971014493vw;
  }
  .p-contact-hero__lead-text::before {
    top: 0.45em;
    right: calc(100% + 0.5em);
    width: 1em;
    clip-path: polygon(0.125rem 0, 100% 0, 100% 100%, 0 100%);
  }
  .p-contact-hero__description {
    margin-top: 9.6618357488vw;
    font-size: 3.6231884058vw;
  }
  .p-contact-hero__note {
    margin-top: 1.5em;
    font-size: 3.3816425121vw;
  }
  .p-contact-hero__map {
    width: 100%;
    height: 100%;
    transform-origin: 32% 49.6%;
  }
  .p-contact-hero__map-frame {
    width: 193.2367149758vw;
  }
  .p-contact-hero__triangles {
    width: 57.9710144928vw;
  }
}
/* ===================================================
	お問い合わせページ：フォームセクション
==================================================== */
.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;
}

@media screen and (hover: none) and (pointer: coarse) {
  .p-contact-form__privacy-anchor:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1339px) {
  .p-contact-form {
    padding: 5.5rem 7.75rem 6.25rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 9.6618357488vw 4.8309178744vw;
  }
  .p-contact-form__item {
    grid-template-columns: 1fr;
    gap: 2.8985507246vw 0;
  }
  .p-contact-form__item:not(:first-child) {
    margin-top: 4.8309178744vw;
  }
  .p-contact-form__question {
    font-size: 3.6231884058vw;
  }
  .p-contact-form__question, .p-contact-form__question:has(.p-contact-form__required) {
    padding-top: 0;
  }
  .p-contact-form .wpcf7-list-item label {
    gap: 1em;
    font-size: 3.6231884058vw;
  }
  .p-contact-form__privacy-note {
    font-size: 3.1400966184vw;
    text-indent: 3.65em;
  }
  .p-contact-form__submit {
    margin-top: 9.6618357488vw;
  }
}
/* ===================================================
	お問い合わせ完了ページ
==================================================== */
.c-contact-done {
  padding: 150px 0 220px;
}
.c-contact-done__inner {
  margin-inline: auto;
  max-width: 720px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--base-color-black);
}
.c-contact-done__heading {
  font-weight: 500;
  font-size: 2.1875rem;
}
.c-contact-done__description {
  margin-top: 2em;
  font-size: 1.125rem;
}
.c-contact-done__attention {
  margin-top: 2.5em;
  font-size: 0.875rem;
}
.c-contact-done__link {
  margin-top: 3em;
  text-align: center;
}
.c-contact-done__link-button {
  display: inline-block;
  padding: 1em 2em;
  background-color: black;
  color: white;
  font-size: 1.125rem;
  line-height: 1;
  transition: background-color 300ms;
}
.c-contact-done__link-button:hover {
  background-color: var(--base-color-black-hover);
}

@media screen and (hover: none) and (pointer: coarse) {
  .c-contact-done__link-button {
    transition: none;
  }
  .c-contact-done__link-button:hover {
    background-color: black;
  }
}
@media screen and (max-width: 1339px) {
  .c-contact-done__inner {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-done {
    padding: 19.3236714976vw 0;
  }
  .c-contact-done__inner {
    padding-inline: 4.8309178744vw;
    max-width: none;
  }
  .c-contact-done__heading {
    text-align: center;
    font-size: 5.7971014493vw;
  }
  .c-contact-done__description {
    font-size: 3.8647342995vw;
  }
  .c-contact-done__attention {
    font-size: 3.3816425121vw;
  }
  .c-contact-done__link {
    margin-top: 9.6618357488vw;
  }
  .c-contact-done__link-button {
    font-size: 3.8647342995vw;
  }
}
/* ===================================================
	お問い合わせページ：
==================================================== */
/* ===================================================
	お知らせ：アーカイブ一覧ページ
==================================================== */
.news-archive {
  margin: 4.25rem 0 5.75rem;
}
.news-archive__inner {
  margin-inline: auto;
  max-width: 985px;
}
.news-archive__tag {
  background-color: white;
  padding: 1em 2em;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}
.news-archive__tag a:hover {
  text-decoration: underline;
}
.news-archive__tag-result {
  margin-block: 2em;
  color: var(--base-color-orange);
}

@media screen and (max-width: 1339px) {
  .news-archive {
    padding-right: 3.5rem;
  }
  .news-archive__inner {
    max-width: var(--base-container-width-bp1);
  }
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding-right: 0;
    margin: 9.6618357488vw 0;
  }
  .news-archive__inner {
    padding-inline: 4.8309178744vw;
    max-width: none;
  }
  .news-archive__tag {
    padding: 0.5em 1.2em;
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	お知らせ：ループアーカイブアイテム
==================================================== */
.c-news-archive__item {
  padding-block: 1.5em;
}
.c-news-archive__item:first-child {
  padding-top: 0;
}
.c-news-archive__item:last-child {
  padding-bottom: 0;
}
.c-news-archive__item:not(:first-child) {
  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: 1rem;
  font-weight: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (hover: none) and (pointer: coarse) {
  .c-news-archive__link {
    transition: none;
  }
  .c-news-archive__link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-news-archive__item {
    padding-block: 1em;
  }
  .c-news-archive__date {
    font-size: 3.3816425121vw;
  }
  .c-news-archive__title {
    font-size: 3.8647342995vw;
    overflow: initial;
    white-space: initial;
    text-overflow: initial;
    line-height: 1.5;
  }
}
/* ===================================================
	記事詳細ページ（ヘッダー）
==================================================== */
.c-single-header {
  margin-top: 1.5rem;
}
.c-single-header__title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5416666667;
}
.c-single-header__tag {
  margin-top: 1em;
  display: flex;
  gap: 0 0.205rem;
}
.c-single-header__tag-icon {
  flex: 0 0 auto;
}
.c-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;
}
.c-single-header__tag-item:not(:first-child) {
  position: relative;
}
.c-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;
}
.c-single-header__tag-link:hover {
  text-decoration: underline;
}
.c-single-header__info {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 0 1.5em;
  font: 900 0.875rem/1 "Zen Maru Gothic", sans-serif;
}
.c-single-header__info time {
  letter-spacing: 0.1em;
}
.c-single-header__categories {
  display: flex;
  gap: 0.5em 0.5em;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.3333333333em;
}
.c-single-header__category {
  padding-inline: 0.5em;
  background-color: black;
  color: white;
  transition: background-color 300ms;
}
.c-single-header__category:hover {
  background-color: var(--base-color-black-hover);
}
@media screen and (hover: none) and (pointer: coarse) {
  .c-single-header__tag-link:hover {
    text-decoration: none;
  }
  .c-single-header__category {
    transition: none;
  }
  .c-single-header__category:hover {
    background-color: black;
  }
}
@media screen and (max-width: 1339px) {
  .c-single-header__title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-single-header__title {
    font-size: 4.347826087vw;
  }
  .c-single-header__tag-icon {
    flex-basis: 3.1400966184vw;
  }
  .c-single-header__tag {
    gap: 0 0.5em;
  }
  .c-single-header__tag-list {
    font-size: 2.8985507246vw;
  }
  .c-single-header__info {
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	記事詳細ページ（本文周り）
==================================================== */
.c-single-body {
  margin: 2em 0;
  padding: 32px 0 112px;
  background-color: white;
}

@media screen and (max-width: 767px) {
  .c-single-body {
    margin: 2em 0;
    padding: 7.729468599vw 0 19.3236714976vw;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	課題ケース一覧ページ：カテゴリーリスト
==================================================== */
.p-case-categories__list {
  margin: 3.625rem auto 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 4px;
  font: 600 1.125rem/1 "Roboto", sans-serif;
  color: white;
}
.p-case-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-case-categories__item:hover {
  background-color: var(--base-color-yellow-hover);
}
.p-case-categories__item.current {
  background-color: black;
  pointer-events: none;
}

@media screen and (hover: none) and (pointer: coarse) {
  .p-case-categories__item {
    transition: none;
  }
  .p-case-categories__item:hover {
    background-color: var(--base-color-yellow);
  }
}
@media screen and (max-width: 1339px) {
  .p-case-categories {
    padding-right: 3.5rem;
  }
  .p-case-categories__list {
    max-width: var(--base-container-width-bp1);
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case-categories {
    margin: 9.6618357488vw 0 0;
    padding-right: 0;
  }
  .p-case-categories__list {
    padding-inline: 4.8309178744vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    font-size: 3.6231884058vw;
    line-height: 1.2;
  }
  .p-case-categories__item {
    padding: 0 1em;
    height: auto;
    min-height: 10.6280193237vw;
    text-align: center;
  }
}
/* ===================================================
	課題ケース一覧ページ：記事リストセクション
==================================================== */
.case-archive {
  margin-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.case-archive__inner {
  margin-inline: auto;
  max-width: 976px;
}

@media screen and (max-width: 1339px) {
  .case-archive {
    padding-right: 3.5rem;
  }
  .case-archive__inner {
    max-width: var(--base-container-width-bp1);
  }
}
@media screen and (max-width: 767px) {
  .case-archive {
    margin-top: 14.4927536232vw;
    padding-right: 0;
    padding-bottom: 9.6618357488vw;
  }
  .case-archive__inner {
    padding-inline: 4.8309178744vw;
  }
}
/* ===================================================
	課題ケース：ループ箇所
==================================================== */
.c-case-archive__item {
  padding-block: 2.5rem;
}
.c-case-archive__item:first-child {
  padding-top: 0;
}
.c-case-archive__item:last-child {
  padding-bottom: 0;
}
.c-case-archive__item:not(:first-child) {
  border-top: 1px solid #c9c9c9;
}
.c-case-archive__link {
  display: grid;
  grid-template-columns: 1fr 14.0625rem;
  gap: 0 0.8125rem;
  transition: opacity 300ms;
}
.c-case-archive__link:hover {
  opacity: 0.5;
}
.c-case-archive__info {
  display: flex;
  gap: 0 2em;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
}
.c-case-archive__categories {
  position: relative;
}
.c-case-archive__categories::before {
  content: "｜";
  position: absolute;
  top: 0;
  left: -1.5em;
}
.c-case-archive__title {
  margin-top: 0.25em;
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 1.48;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-case-archive__thumbnail-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 225/135;
  overflow: hidden;
}
.c-case-archive__thumbnail-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (hover: none) and (pointer: coarse) {
  .c-case-archive__link {
    transition: none;
  }
  .c-case-archive__link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1339px) {
  .c-case-archive__title {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-case-archive__item {
    padding-block: 1.5em;
  }
  .c-case-archive__link {
    grid-template-columns: 1fr 28.9855072464vw;
    gap: 0 0.8125rem;
  }
  .c-case-archive__info {
    gap: 0 1em;
    font-size: 2.8985507246vw;
  }
  .c-case-archive__categories::before {
    left: -1em;
  }
  .c-case-archive__title {
    margin-top: 0.2em;
    font-size: 4.347826087vw;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
/* ===================================================
	よくある質問ページ：カテゴリーリスト
==================================================== */
.p-faq-categories {
  margin: 3.625rem auto 0;
  max-width: 1200px;
}
.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);
}

@media screen and (hover: none) and (pointer: coarse) {
  .p-faq-categories__item {
    transition: none;
  }
  .p-faq-categories__item:hover {
    background-color: var(--base-color-yellow);
  }
}
@media screen and (max-width: 1339px) {
  .p-faq-categories {
    padding-right: 3.5rem;
  }
  .p-faq-categories__list {
    margin-inline: auto;
    max-width: var(--base-container-width-bp1);
    grid-template-columns: repeat(3, 1fr);
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-categories {
    margin: 9.6618357488vw 0 0;
    padding-right: 0;
  }
  .p-faq-categories__list {
    padding-inline: 4.8309178744vw;
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    font-size: 3.6231884058vw;
    line-height: 1.2;
  }
  .p-faq-categories__item {
    padding: 0 1em;
    height: auto;
    min-height: 10.6280193237vw;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1.9323671498vw 100%, 0 calc(100% - 3.3816425121vw));
  }
}
/* ===================================================
	よくある質問ページ：質問リスト
==================================================== */
.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;
  align-items: flex-start;
  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;
}

@media screen and (max-width: 1339px) {
  .p-faq-content {
    padding-right: 3.5rem;
  }
  .p-faq-content__inner {
    max-width: var(--base-container-width-bp1);
  }
  .p-faq-content__category {
    padding-left: 3.2em;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-content {
    margin: 14.4927536232vw 0 4.75rem;
    padding-right: 0;
  }
  .p-faq-content__inner {
    padding-inline: 4.8309178744vw;
    max-width: none;
  }
  .p-faq-content__category {
    position: relative;
    padding-left: 7.729468599vw;
  }
  .p-faq-content__category:not(:first-child) {
    margin-top: 9.6618357488vw;
  }
  .p-faq-content__category-title {
    position: static;
    font-size: 4.5893719807vw;
  }
  .p-faq-content__category-title::before {
    right: auto;
    left: 0;
    top: 0.55em;
    width: 1.25em;
    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: 1em;
    margin-left: -7.729468599vw;
    font-size: 4.347826087vw;
  }
  .p-faq-content__item {
    padding-bottom: 1em;
  }
  .p-faq-content__toggle-icon {
    margin-top: 0.2em;
    width: 4.8309178744vw;
  }
  .p-faq-content__toggle {
    font-size: 3.8647342995vw;
    padding-left: 2em;
    gap: 0 0.25em;
  }
  .p-faq-content__toggle::before {
    left: 0.65em;
  }
  .p-faq-content__answer {
    margin-top: 1em;
    padding: 1em 1em 1em 2em;
    font-size: 3.8647342995vw;
    line-height: 1.5;
  }
  .p-faq-content__answer::before {
    top: 1em;
    left: 0.75em;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	法律ページ：本文（個人情報保護基本方針など）
==================================================== */
.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: 3.3816425121vw;
  }
  .p-legal-body h2 {
    font-size: 1.4em;
    line-height: 1.5;
  }
}
/* ===================================================
	404
==================================================== */
.not-found {
  padding: 18.125rem 0 6.25rem;
}
.not-found__inner {
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--base-color-black);
}
.not-found__message {
  margin-top: 1em;
  font-size: 2.1875rem;
}
.not-found__description {
  margin-top: 0.5em;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .not-found {
    padding: 28.9855072464vw 0 19.3236714976vw;
  }
  .not-found__inner {
    max-width: none;
    padding-inline: 4.8309178744vw;
  }
  .not-found__image {
    margin-inline: auto;
    max-width: 80%;
  }
  .not-found__message {
    font-size: 5.7971014493vw;
  }
  .not-found__description {
    font-size: 3.3816425121vw;
  }
}
/* ===================================================
	Google reCAPTCHAバッジの位置調整
==================================================== */
.grecaptcha-badge {
  transform: translateX(-56px);
}

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