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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

/* ===================================================
	※※本サイトの採用フォントについて※※
	Google Fontより採用
	- 通常フォント：Noto Sans JP
	- 英字フォント：Bebas Neue
	- 数字フォント：Inter
==================================================== */
/* ===================================================
	※※本サイトの採用フォントについて※※
	Google Fontより採用
	- 通常フォント：Noto Sans JP
	- 英字フォント：Bebas Neue
	- 数字フォント：Inter
==================================================== */
/* ===================================================
	基本要素のCSS設定
==================================================== */
html {
  font-size: 62.5%;
}

:root {
  --base-color-yellow: #ffda55;
  --base-color-yellow-hover: #ffeba1;
  --base-color-blue: #000097;
  --site-color-bg: #fff;
}

body {
  font: 500 1.6rem/1.8125 "Noto Sans JP", sans-serif;
  color: #000;
  scroll-behavior: auto;
  background-color: var(--site-color-bg);
}
body.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}
body:not(.page-top) .main-contents {
  background: center bottom/1641px 293px url(./assets/img/page-bottom-bg.webp) no-repeat;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
/* 『フォーム部品CSS』
==================================================== */
/* テキスト */
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password],
textarea {
  padding: 1em;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
  vertical-align: bottom;
  border-bottom: 3px solid black;
  background-color: white;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
  border: 3px solid black;
}

select {
  padding: 1em;
  border-bottom: 3px solid black;
  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;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
select:focus-visible,
input[type=checkbox]:focus,
textarea:focus {
  border-color: #97c6ff;
  background-color: #fff;
}

/* 送信ボタン */
input[type=submit]:hover {
  opacity: 0.7;
}

input[type=checkbox] {
  border: 3px solid black;
  width: 42px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: white;
  position: relative;
}

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;
}

input[type=checkbox]:checked {
  background-color: black;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding: 0.5em;
    font-size: 1.6rem;
  }
  select {
    font-size: 1.6rem;
    padding: 0.5em;
  }
  input[type=checkbox]:focus {
    border-color: #f2f0f0;
  }
}
/* ===================================================
	アニメーション用クラス
==================================================== */
[data-animate=scroll-fadein] {
  opacity: 0;
  transition: opacity 500ms 300ms linear;
}
[data-animate=scroll-fadein].is-show {
  opacity: 1;
}

[data-animate=scroll-slide-up] {
  opacity: 0;
  transition: opacity 500ms 300ms linear, transform 500ms 300ms ease;
  transform: translateY(30px);
}
[data-animate=scroll-slide-up].is-show {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=scroll-grayscale] {
  filter: grayscale(100%) brightness(60%);
  transition: filter 500ms 300ms linear;
}
[data-animate=scroll-grayscale].is-show {
  filter: grayscale(0%) brightness(100%);
}

[data-animate=scroll-text-row-slide-up] span {
  opacity: 0;
  transition: opacity 800ms;
}
[data-animate=scroll-text-row-slide-up].is-show span {
  opacity: 1;
}

[data-animate=scroll-char-slide-up] {
  overflow: hidden;
}
[data-animate=scroll-char-slide-up] span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(0, 0, 0.05, 1);
}
[data-animate=scroll-char-slide-up].is-show span {
  transform: translateY(0);
}

/* ===================================================
	サイト全体包括要素
==================================================== */
body:not(.page-top) .main-contents {
  background: center bottom/1641px auto url(./assets/img/page-bottom-bg.webp) no-repeat, calc(50% - 580px) calc(100% - 52px)/350px 170px linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%) no-repeat;
}

@media screen and (max-width: 767px) {
  body:not(.page-top) .main-contents {
    background: 13% bottom/180% auto url(./assets/img/page-bottom-bg.webp) no-repeat, left 2% bottom 22px/189px 92px linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%) no-repeat;
  }
}
/* ===================================================
	コンテナ（サイトコンテンツ幅）
==================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.container-sub {
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width: 1339px) {
  .container {
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
/* ===================================================
	ヘッダー
==================================================== */
.global-header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
}

.global-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.4em;
}
.global-nav-logo {
  display: inline-block;
  padding: 5px 5px;
  transition: opacity 300ms;
}
.global-nav-logo:hover {
  opacity: 0.7;
}
.global-nav-navigation {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  height: 74px;
}
.global-nav-navigation ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.global-nav-navigation.front ul {
  color: black;
}
.global-nav-navigation.front ul li a {
  background-color: transparent;
}
.global-nav-navigation.front.transition ul {
  transition: background-color 500ms, color 500ms;
}
.global-nav-navigation.front.is-sticky ul {
  color: white;
}
.global-nav-navigation.front.is-sticky ul li a {
  background-color: var(--base-color-blue);
}
.global-nav-navigation li {
  height: 100%;
}
.global-nav-navigation li a {
  display: flex;
  align-items: center;
  padding: 0 1.6em;
  width: 100%;
  height: 100%;
  background-color: var(--base-color-blue);
  background-size: 204% 100%;
  background-position: 99% center;
  background-image: linear-gradient(90deg, black 0%, black 50%, transparent 50%, transparent 100%);
  transition: background-position 300ms, color 300ms;
}
.global-nav-navigation li a:has(.sanpaikun) {
  padding: 0.4em 0.6em;
}
.global-nav-navigation li a .sanpaikun {
  border: 1px solid white;
  padding: 0.4em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
}
.global-nav-navigation li a .sanpaikun .sub {
  font-size: 80%;
}
.global-nav-navigation li a:hover {
  background-position: 1% center;
}
.global-nav-navigation.front ul li a:hover {
  color: white;
}
.global-nav-navigation.front li .sanpaikun {
  border-color: black;
}
.global-nav-navigation.front.is-sticky li .sanpaikun {
  border-color: white;
}
.global-nav-navigation.front li a:has(.sanpaikun):hover .sanpaikun {
  border-color: white;
}
.global-nav-contact {
  height: 100%;
  display: flex;
}
.global-nav-contact-main {
  padding: 0 3.2em;
  background-color: black;
  display: flex;
  align-items: center;
  font-size: 93.75%;
  transition: background-color 300ms;
}
.global-nav-contact .link-button {
  width: 74px;
}
.global-nav-contact-arrow {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  transition: background-color 300ms;
  background-color: var(--base-color-yellow);
  color: black;
}
.global-nav-hamburger-button-wrapper {
  padding-top: 8px;
  display: none;
}
.global-nav-hamburger-button {
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, var(--base-color-yellow) 50%, black 50%, black 100%);
  background-size: 200% 100%;
  background-position: right center;
  cursor: pointer;
  transition: background-position 300ms;
}
.global-nav-hamburger-button path {
  transition: stroke 300ms;
}
.global-nav-hamburger-button.is-opened {
  background-image: linear-gradient(270deg, var(--base-color-yellow) 0%, var(--base-color-yellow) 50%, black 50%, black 100%);
}
.global-nav-hamburger-icon {
  aspect-ratio: 57/50;
  font-size: 0;
}
.global-nav-hamburger-button .group {
  transition: opacity 300ms;
}
.global-nav-hamburger-button .group-close {
  opacity: 0;
}
.global-nav-hamburger-button.is-opened .group-close {
  opacity: 1;
}
.global-nav-hamburger-button.is-opened .group-open {
  opacity: 0;
}
.global-nav-hamburger-button.is-opened {
  background-color: var(--base-color-yellow);
}
.global-nav-hamburger-button:hover {
  background-position: left center;
}
.global-nav-hamburger-button:hover .group-open path {
  stroke: black;
}
.global-nav-hamburger-button.is-opened:hover .group-close path {
  stroke: white;
}

@media screen and (max-width: 1339px) {
  .global-nav-container {
    padding: 8px 16px;
    align-items: flex-start;
  }
  .global-nav-navigation-wrapper {
    display: none;
  }
  .global-nav-hamburger-button-wrapper {
    display: block;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .global-nav-logo:hover {
    opacity: 1;
  }
  .global-nav-hamburger-button:hover {
    background-position: right center;
  }
  .global-nav-hamburger-button:hover .group-open path {
    stroke: white;
  }
  .global-nav-hamburger-button.is-opened:hover .group-close path {
    stroke: black;
  }
}
@media screen and (max-width: 767px) {
  .global-nav-logo img {
    width: auto;
    height: 39.5px;
  }
  .global-nav-hamburger-button-wrapper {
    padding-top: 0;
  }
  .global-nav-container {
    padding: 8px;
  }
}
/* ===================================================
	ヘッダー（SP版）
==================================================== */
.global-sp-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: -1000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: right 500ms 0ms, visibility 0ms 500ms, opacity 0ms 500ms, z-index 0ms 500ms;
  background-image: linear-gradient(270deg, black 0%, black 640px, transparent 640px, transparent 100%);
}
.global-sp-nav.is-opened {
  opacity: 1;
  right: 0;
  visibility: visible;
  overflow: auto;
  z-index: 101;
  transition: right 500ms;
}
.global-sp-nav-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
}
.global-sp-nav-bg.is-opened {
  z-index: -1;
}
.global-sp-nav-inner {
  margin-left: auto;
  width: 640px;
  color: white;
}
.global-sp-nav-container {
  padding: 40px 80px 40px 40px;
}
.global-sp-nav-hamburger-button-wrapper {
  opacity: 0;
  position: fixed;
  top: 16px;
  right: calc(16px + var(--scrollbar-offset));
  z-index: 1;
}
.global-sp-nav.is-opened .global-sp-nav-hamburger-button-wrapper {
  opacity: 1;
}
.global-sp-nav-menu-list {
  font-weight: 700;
  font-size: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.global-sp-nav-menu-list > li:has(.global-sp-nav-menu-list-sub), .global-sp-nav-menu-list > li:has(.sanpaikun) {
  grid-column: span 2;
}
.global-sp-nav-menu-list a:has(.sanpaikun) {
  font-size: 1.8rem;
  line-height: 1.5;
  display: inline-block;
  width: calc(50% - 4px);
}
.global-sp-nav-menu-list .sanpaikun {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4em 0;
  border: 3px solid white;
}
.global-sp-nav-menu-list .sanpaikun .sub {
  font-size: 80%;
}
.global-sp-nav-menu-list > li:not(:first-child) {
  margin-top: 2em;
}
.global-sp-nav-menu-list-sub {
  margin-top: 1em;
  display: grid;
  gap: 12px 8px;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 500;
}
.global-sp-nav-menu-list-sub > li > a {
  display: block;
  border: 3px solid white;
  padding: 0.2em 0.6em;
  position: relative;
}
.global-sp-nav-menu-list-sub > li > a::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0;
  width: 5px;
  height: calc(50% - 3px);
  background-color: black;
}
.global-sp-nav-menu-list a:has(.sanpaikun):hover, .global-sp-nav-menu-list-sub > li > a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.global-sp-nav-menu-list > li > a:not(:has(*)):hover {
  text-underline-offset: 0.3em;
  text-decoration: underline;
}

@media screen and (max-width: 1339px) {
  .global-sp-nav {
    display: block;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .global-sp-nav-menu-list a:has(.sanpaikun):hover, .global-sp-nav-menu-list-sub > li > a:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .global-sp-nav {
    background-image: linear-gradient(270deg, black 0%, black min(376px, 90.8212560386vw), transparent min(376px, 90.8212560386vw), transparent 100%);
  }
  .global-sp-nav-inner {
    width: min(376px, 90.8212560386vw);
  }
  .global-sp-nav-container {
    padding: 30px min(20px, 4.8309178744vw) 30px min(30px, 7.2463768116vw);
  }
  .global-sp-nav-menu-list {
    font-size: min(1.3rem, 3.1400966184vw);
  }
  .global-sp-nav-menu-list-sub {
    gap: min(17px, 4.1062801932vw) min(12px, 2.8985507246vw);
    font-size: 84.6153846154%;
  }
  .global-sp-nav-menu-list-sub > li > a {
    border-width: min(3px, 0.7246376812vw);
    padding: 0.2em 0.6em;
  }
  .global-sp-nav-menu-list .sanpaikun {
    font-size: 1.5rem;
  }
  .global-sp-nav-hamburger-button-wrapper {
    top: 8px;
    right: calc(8px + var(--scrollbar-offset));
  }
}
/* ===================================================
	フッター
==================================================== */
.global-footer {
  background-color: black;
}
.global-footer-banner-wrapper {
  padding: 90px 0 0;
}
.global-footer-banner-container {
  display: flex;
}
.global-footer-banner-block {
  width: 50%;
  position: relative;
}
.global-footer-banner-block img {
  width: 100%;
}
.global-footer-banner-text-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 55px 24px 0;
  width: 100%;
  height: 100%;
  color: white;
}
.global-footer-banner-title {
  font: 700 6rem/1 "Zen Old Mincho", serif;
}
.global-footer-banner-description {
  margin-top: 2em;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.9;
}
.global-footer-banner-link {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.global-footer-banner-link {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.global-footer-navigation-wrapper {
  margin: 112px 0 0;
  font-family: "Roboto", sans-serif;
  color: white;
}
.global-footer-navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5.8em;
  font-weight: 400;
  font-size: 2rem;
}
.global-footer-navigation-list li:not(:first-child) {
  position: relative;
}
.global-footer-navigation-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5.8rem;
  transform: translateY(-50%) rotate(45deg);
  width: 3px;
  height: 100%;
  background-color: white;
}
.global-footer-submenu {
  margin: 42px 0 0;
}
.global-footer-submenu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5em;
  font-size: 1.6rem;
}
.global-footer-navigation-list a, .global-footer-submenu-list a {
  text-underline-offset: 0.3em;
}
.global-footer-navigation-list a:hover, .global-footer-submenu-list a:hover {
  text-decoration: underline;
}
.global-footer-catch-cctmc {
  overflow: hidden;
}
.global-footer-catch-cctmc-inner {
  position: relative;
  height: 228px;
}
.global-footer-catch-cctmc-text {
  position: absolute;
  bottom: -0.07em;
  left: 50%;
  font: 700 12rem/1 "Zen Old Mincho", serif;
  color: #535353;
  transform: translateX(-50%);
  white-space: nowrap;
}
.global-footer-address-wrapper {
  background-color: white;
  padding: 30px 0;
  color: black;
}
.global-footer-address-container {
  display: flex;
  align-items: center;
}
.global-footer-address {
  display: flex;
  align-items: center;
  gap: 0 2em;
  margin-left: 2em;
  font: 400 1.4rem/1 "Roboto", sans-serif;
}
.global-footer-address-logo {
  display: inline-block;
  padding: 5px;
  transition: opacity 300ms;
}
.global-footer-address-logo:hover {
  opacity: 0.7;
}
.global-footer-copyrights {
  margin-left: auto;
  font: 400 1.4rem/1 "Roboto", sans-serif;
}
.global-footer-banner-wrapper .link-button {
  background-image: linear-gradient(90deg, black 0%, black 50%, white 50%, white 100%);
}
.global-footer-banner-wrapper .link-button .group-small {
  opacity: 0;
}
.global-footer-banner-wrapper [href]:hover .link-button .arrow-svg path, .global-footer-banner-wrapper .link-button[href]:hover .arrow-svg path {
  fill: white;
}

@media screen and (max-width: 1339px) {
  .global-footer-banner-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .global-footer-banner-block {
    width: auto;
  }
  .global-footer-navigation-list {
    gap: 0 3.2em;
  }
  .global-footer-navigation-list li:not(:first-child)::before {
    left: -3.2rem;
    width: 3px;
  }
  .global-footer-catch-cctmc-text {
    left: 0;
    transform: none;
    font-size: 8.4rem;
    white-space: initial;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .global-footer-address-logo:hover {
    opacity: 1;
  }
  .global-footer-navigation-list a:hover, .global-footer-submenu-list a:hover {
    text-decoration: none;
  }
  .global-footer-banner-wrapper [href]:hover .link-button .arrow-svg path, .global-footer-banner-wrapper .link-button[href]:hover .arrow-svg path {
    fill: black;
  }
}
@media screen and (max-width: 767px) {
  .global-footer .container {
    padding: 0 min(20px, 4.8309178744vw);
  }
  .global-footer-banner-container {
    gap: min(28px, 6.7632850242vw);
  }
  .global-footer-banner-wrapper {
    padding: min(30px, 7.2463768116vw) 0 0;
  }
  .global-footer-banner-wrapper .link-button {
    width: min(52px, 12.5603864734vw);
  }
  .global-footer-banner-wrapper .link-button .group-default {
    opacity: 0;
  }
  .global-footer-banner-wrapper .link-button .group-small {
    opacity: 1;
  }
  .global-footer-banner-text-wrap {
    padding-top: min(32px, 7.729468599vw);
    padding-right: min(125px, 30.193236715vw);
    padding-left: min(24px, 5.7971014493vw);
  }
  .global-footer-banner-title {
    font-size: min(3.2rem, 7.729468599vw);
  }
  .global-footer-banner-description {
    margin-top: 2em;
    font-size: min(1.3rem, 3.1400966184vw);
  }
  .global-footer-banner-description br {
    display: none;
  }
  .global-footer-navigation-wrapper {
    margin: 50px 0 0;
  }
  .global-footer-navigation-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
    font-size: 1.5rem;
    gap: 1em 3.2em;
  }
  .global-footer-navigation-list li:not(:first-child)::before {
    left: -2.5rem;
    width: 2px;
  }
  .global-footer-submenu {
    margin: 26px 0 0;
  }
  .global-footer-submenu-list {
    display: block;
    font-size: 1.3rem;
  }
  .global-footer-submenu-list li:not(:first-child) {
    margin-top: 0.5em;
  }
  .global-footer-catch-cctmc-inner {
    height: min(280px, 67.6328502415vw);
  }
  .global-footer-catch-cctmc-text {
    left: min(-20px, -4.8309178744vw);
    width: min(100% + 40px, 100% + 9.6618357488vw);
    transform: none;
    font-size: min(8.2rem, 19.806763285vw);
    white-space: initial;
  }
  .global-footer-address-container {
    flex-direction: column;
    gap: 30px 0;
  }
  .global-footer-address-wrapper {
    padding: 30px 0 75px;
  }
  .global-footer-address {
    margin-left: 0;
  }
  .global-footer-copyrights {
    margin-left: 0;
  }
}
/* ===================================================
	下層ページ全体コンテンツ
==================================================== */
.subpage-wrapper {
  padding: 148px 0 0 40px;
}
.page-sustainability .subpage-wrapper {
  background: top 780px center/auto 1186px linear-gradient(0deg, white 0%, transparent 30%, white 100%) no-repeat, top 780px center/auto 1186px url(./assets/img/bg-sustainability01.webp) no-repeat;
}
.subpage-container {
  display: grid;
  grid-template-columns: 268px 1fr;
}
.subpage-side {
  padding-bottom: 310px;
}
@media screen and (max-width: 1339px) {
  .subpage-wrapper {
    padding: 80px 40px 0;
  }
  .subpage-container {
    display: block;
  }
  .subpage-main {
    margin: 80px 0 0;
    padding-bottom: 160px;
  }
  .subpage-side {
    padding-bottom: 0;
  }
  .page-sustainability .subpage-wrapper {
    background: top 900px center/auto 1186px linear-gradient(0deg, white 0%, transparent 30%, white 100%) no-repeat, top 900px center/auto 1186px url(./assets/img/bg-sustainability01.webp) no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .subpage-wrapper {
    padding: 12px 20px 0;
  }
  .subpage-main {
    margin: 40px 0 0;
    padding-bottom: 80px;
  }
  .page-sustainability .subpage-wrapper {
    background: none;
  }
}
/* ===================================================
	下層ページトップ
==================================================== */
.subpage-top-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 950px;
}
.subpage-top-block-row {
  padding: 1em 2em;
  position: relative;
}
.subpage-top-title {
  font: 900 6rem/1.2 "Zen Old Mincho", serif;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.subpage-top-description {
  font-size: 2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.subpage-top-block-row-line {
  position: absolute;
  background-color: black;
}
.subpage-top-block-row:last-of-type::before {
  content: "";
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  z-index: 1;
  width: 28px;
  aspect-ratio: 1/1;
  background-color: white;
  transform: translate(-50%, -50%);
}
.subpage-top-block-row:first-of-type::before {
  content: none;
}
.subpage-top-block-row-line.left {
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
}
.subpage-top-block-row-line.bottom {
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
}
.subpage-top-block-row:last-of-type .subpage-top-block-row-line.right {
  right: 0;
  bottom: 0;
  width: 3px;
  height: 0;
}
.subpage-top-block-row:last-of-type .subpage-top-block-row-line.top {
  right: 15px;
  top: 0;
  width: 0;
  height: 3px;
}
.subpage-top-block-row:first-of-type .subpage-top-block-row-line.right {
  right: 0;
  bottom: 14px;
  width: 3px;
  height: 0;
}
.subpage-top-block-row:first-of-type .subpage-top-block-row-line.top {
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
}
.is-show .subpage-top-block-row-line.left {
  height: 100%;
  transition: height 100ms 400ms linear;
}
.is-show .subpage-top-block-row-line.bottom {
  width: 100%;
  transition: width 100ms 500ms linear;
}
.is-show .subpage-top-block-row:last-of-type .subpage-top-block-row-line.right {
  height: 100%;
  transition: height 40ms 600ms linear;
}
.is-show .subpage-top-block-row:last-of-type .subpage-top-block-row-line.top {
  width: calc(100% - 30px);
  transition: width 250ms 640ms ease-out;
}
.is-show .subpage-top-block-row:first-of-type .subpage-top-block-row-line.right {
  height: calc(100% - 14px);
  transition: height 200ms 0ms ease-in;
}
.is-show .subpage-top-block-row:first-of-type .subpage-top-block-row-line.top {
  width: 100%;
  transition: width 200ms 200ms ease-in;
}
.is-show .subpage-top-title {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 300ms 1000ms ease-out;
}
.is-show .subpage-top-description {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 400ms 1150ms ease-out;
}

@media screen and (max-width: 1339px) {
  .subpage-top-section {
    margin: 80px 0 0;
  }
  .subpage-top-block {
    width: auto;
    max-width: 950px;
  }
  .subpage-top-title {
    font-size: 4.8rem;
  }
  .subpage-top-description {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .subpage-top-section {
    margin: 40px 0 0;
  }
  .subpage-top-block-row {
    padding: 1em 1.2em;
  }
  .subpage-top-block-row:last-of-type::before {
    width: 18px;
  }
  .subpage-top-title {
    font-size: 2.4rem;
  }
  .subpage-top-description {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .subpage-top-description br {
    display: none;
  }
}
/* ===================================================
	下層ページ：サイドバー
==================================================== */
.sidebar-block {
  position: sticky;
  top: 120px;
  z-index: 1;
  height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sidebar-parent-page-wrapper {
  margin-bottom: 20px;
  writing-mode: vertical-rl;
  position: relative;
  min-width: 112px;
  display: flex;
  align-items: center;
}
.sidebar-parent-page-entitle {
  font: 900 14rem/1 "Zen Old Mincho", serif;
  white-space: nowrap;
  color: #c1c1c1;
  opacity: 0.15;
  position: absolute;
  left: calc(50% + 0.15em);
  top: -60px;
  z-index: -1;
  transform: translateX(-50%);
}
.sidebar-parent-page-entitle br {
  display: none;
}
.sidebar-parent-page-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
}
.sidebar-parent-page-description {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.sidebar-navigation-wrapper {
  margin-top: auto;
  padding-bottom: 28px;
  border-bottom: 3px solid black;
}
.sidebar-navigation-heading {
  font: 600 3rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
}
.sidebar-navigation {
  margin-top: 20px;
}
.sidebar-navigation-menu {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}
.sidebar-navigation-menu li {
  margin-top: 0.5em;
}
.sidebar-navigation-menu li:not(:first-child) {
  margin-top: 0.5em;
}
.sidebar-navigation-menu a {
  display: inline-block;
  padding-left: 2rem;
  position: relative;
  transition: opacity 300ms;
}
.sidebar-navigation-menu a:hover {
  opacity: 0.5;
}
.sidebar-navigation-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 13px;
  height: 100%;
  background: center center/13px 7.5px url(./assets/img/icon-arrow03.png) no-repeat;
}

@media screen and (max-width: 1339px) {
  .sidebar-parent-page-wrapper {
    margin-bottom: 0;
    writing-mode: initial;
    min-width: none;
    display: block;
  }
  .sidebar-parent-page-entitle {
    font-size: 9.2rem;
    white-space: nowrap;
    position: static;
    transform: none;
  }
  .sidebar-navigation-wrapper {
    margin-top: 0;
    display: none;
  }
  .sidebar-block {
    position: initial;
    height: auto;
    display: block;
  }
  .sidebar-parent-page-title {
    font-size: 2.8rem;
  }
  .sidebar-parent-page-description {
    margin-top: 1em;
    font-size: 1.8rem;
  }
  .sidebar-parent-page-title-block {
    margin-top: -1.5em;
  }
}
@media screen and (max-width: 767px) {
  .sidebar-parent-page-entitle {
    font-size: min(6rem, 14.4927536232vw);
  }
  .sidebar-parent-page-entitle br {
    display: inline;
  }
  .sidebar-parent-page-title-block {
    margin-top: -1em;
  }
  .sidebar-parent-page-title {
    font-size: 1.5rem;
  }
  .sidebar-parent-page-description {
    margin-top: 0.5em;
    font-size: 1.1rem;
  }
}
/* ===================================================
	下層ページ：サイドバー（スマホ版）
==================================================== */
.sidebar-sp-navigation {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
}
.sidebar-sp-navigation-wrapper {
  display: none;
}
.sidebar-sp-navigation-inner {
  background-color: var(--base-color-yellow);
}
.sidebar-sp-navigation-header {
  padding-right: 10px;
  display: grid;
  grid-template-columns: 36px 1fr;
  cursor: pointer;
  transition: background-position 300ms;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, black 0%, black 50%, transparent 5%, transparent 100%);
  background-position: 99% center;
}
.sidebar-sp-navigation-header.opened {
  padding-right: 24px;
}
.sidebar-sp-navigation-header:hover {
  background-position: left center;
}
.sidebar-sp-navigation-header-title {
  padding: 1em 0.5em;
  background-color: black;
  color: white;
  display: inline-block;
  font: 900 1.6rem/1 "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.sidebar-sp-navigation-header-parent-page-title {
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 0.5em;
  font-weight: 700;
  font-size: 1.8rem;
  transition: color 0ms 180ms;
}
.sidebar-sp-navigation-header-parent-page-title .arrow {
  width: 24px;
}
.sidebar-sp-navigation-header-parent-page-title .arrow svg {
  width: 100%;
  height: 100%;
}
.opened .sidebar-sp-navigation-header-parent-page-title .next {
  opacity: 0;
}
.sidebar-sp-navigation-header-parent-page-title .prev {
  opacity: 0;
}
.opened .sidebar-sp-navigation-header-parent-page-title .prev {
  opacity: 1;
}
.sidebar-sp-navigation-header-parent-page-title:hover {
  color: white;
  transition: color 0ms 50ms;
}
.sidebar-sp-navigation-header-parent-page-title:hover path {
  stroke: white;
  transition: stroke 0ms 200ms;
}
.sidebar-sp-navigation-content {
  padding: 20px 24px 28px 20px;
  display: none;
}
.sidebar-sp-navigation-content.opened {
  display: block;
}
.sidebar-sp-navigation-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 158px);
  gap: 11px 6px;
  font-size: 1.5rem;
}
.sidebar-sp-navigation-menu-list a {
  display: block;
  width: 100%;
  border: 3px solid black;
  padding: 0.2em 0.5em;
}
.sidebar-sp-navigation-menu-list a:hover {
  background-color: black;
  color: white;
}
@media screen and (max-width: 1339px) {
  .sidebar-sp-navigation-wrapper {
    display: block;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .sidebar-sp-navigation-header {
    cursor: initial;
    transition: none;
  }
  .sidebar-sp-navigation-header:hover {
    background-position: right center;
  }
  .sidebar-sp-navigation-menu-list a:hover {
    background-color: transparent;
    color: black;
  }
  .sidebar-sp-navigation-header-parent-page-title:hover {
    color: black;
    transition: none;
  }
  .sidebar-sp-navigation-header-parent-page-title:hover path {
    stroke: black;
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  .sidebar-sp-navigation-wrapper {
    display: block;
  }
  .sidebar-sp-navigation-header {
    grid-template-columns: 20px 1fr;
  }
  .sidebar-sp-navigation-header-title {
    font-size: 1rem;
  }
  .sidebar-sp-navigation-header-parent-page-title {
    font-size: 1.3rem;
  }
  .sidebar-sp-navigation-menu-list {
    font-size: 1.1rem;
  }
  .sidebar-sp-navigation-header-parent-page-title .arrow {
    width: 18px;
  }
}
/* ===================================================
	セクション共通パーツ
==================================================== */
.section-entitle, .section-title {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.section-entitle {
  font-weight: 600;
  font-size: 3rem;
  color: #e0b829;
}
.section-title {
  font-weight: 900;
  font-size: 5rem;
  color: black;
}

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

@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  button:hover .link-button, [href]:hover .link-button, .link-button[href]:hover {
    background-position: right center;
  }
  button:hover .link-button .arrow-svg path, [href]:hover .link-button .arrow-svg path, .link-button[href]:hover .arrow-svg path {
    fill: black;
  }
}
@media screen and (max-width: 767px) {
  .link-button {
    width: 72px;
  }
}
/* ===================================================
	パンくずリスト
==================================================== */
.breadcrumb-section {
  background-color: var(--bg-color);
  position: relative;
}
.breadcrumb-container {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 30px;
  box-sizing: content-box;
}
.breadcrumb-inner {
  padding: 94px 0 24px;
}
.breadcrumb-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  padding-right: 51px;
  transform: translateY(50%);
}
.breadcrumb-bottom-line {
  flex-grow: 1;
  flex-shrink: 1;
  background: center/contain url(./assets/img/knot-red-line.png) repeat-x;
}
.breadcrumb-bottom-knot {
  flex-grow: 0;
  flex-shrink: 0;
  width: 24px;
  height: 27px;
  background: center/contain url(./assets/img/knot-red-end.png) no-repeat;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  color: gray;
  gap: 0.5em 1.5em;
  height: 1.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.breadcrumb-item:last-child {
  flex-grow: 1;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.breadcrumb-item:not(:last-child) {
  position: relative;
}
.breadcrumb-item:not(:last-child)::before {
  content: ">";
  position: absolute;
  top: 0;
  right: -1.1em;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .breadcrumb-inner {
    padding: 58px 0 12px;
  }
  .breadcrumb-list {
    font-size: 0.8rem;
    gap: 0.5em 1.5em;
  }
  .breadcrumb-bottom {
    padding-right: 22px;
  }
  .breadcrumb-bottom-knot {
    width: 10px;
    height: 11px;
  }
}
/* ===================================================
	記事一覧のページネーション
==================================================== */
.pagination-post-archive:has(*) {
  margin: 90px 0 120px;
}
.pagination-post-archive .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.8em;
  text-align: center;
}
.pagination-post-archive .page-numbers {
  padding: 0.1em 0.4em;
  display: flex;
  align-items: center;
}
.pagination-post-archive .prev {
  margin-right: 1.5em;
}
.pagination-post-archive .next {
  margin-left: 1.5em;
}
.pagination-post-archive [href]:has(img) {
  transition: opacity 300ms;
}
.pagination-post-archive [href]:has(img):hover {
  opacity: 0.5;
}
.pagination-post-archive [href]:hover {
  text-decoration: underline;
}
.pagination-post-archive .current {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

@media screen and (max-width: 1339px) {
  .pagination-post-archive:has(*) {
    margin: 90px 0 0;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	MV
==================================================== */
.mv-inner {
  height: 100vh;
  position: relative;
  background-color: black;
  display: block;
}
.mv-video-block {
  height: 100%;
}
.mv-video-wrapper {
  height: 100%;
  overflow: hidden;
  clip-path: circle(0% at center);
}
.mv-video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv-text-block {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-message {
  font: 400 3.4rem/1 "Zen Old Mincho", serif;
  color: #fff;
  position: relative;
  opacity: 0;
  visibility: visible;
}
.video-loaded .mv-video-wrapper {
  animation: expand 3000ms 2000ms cubic-bezier(0.8, 0, 0.9, 0.1) forwards;
}
.video-loaded .mv-message {
  animation: mv-message 6000ms;
  visibility: hidden;
  transition: visibility 0ms 6000ms;
}
@keyframes expand {
  0% {
    clip-path: circle(0% at center);
  }
  100% {
    clip-path: circle(72% at center);
  }
}
@keyframes mv-message {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .mv-message {
    font-size: min(2.1rem, 5.0724637681vw);
  }
}
/* ===================================================
	FV直下ナビゲーション
==================================================== */
.front-page-navigation {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* ===================================================
	イントロ
==================================================== */
.front-intro-section {
  margin: -74px 0 0;
  position: relative;
}
.front-intro-bg-grad {
  position: absolute;
  top: 330px;
  left: 0;
  z-index: -3;
  height: 600px;
  width: calc(50% + 275px);
  background-image: linear-gradient(270deg, transparent 0%, transparent 23%, var(--base-color-yellow) 80%, var(--base-color-yellow) 100%);
}
.front-intro-bg-image {
  position: absolute;
  top: 420px;
  right: 0;
  z-index: -2;
  width: calc(50% + 197px);
  height: 800px;
  overflow: hidden;
}
.front-intro-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, white 0%, white 16%, transparent 44%);
}
.front-intro-bg-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-3deg) translate(-60.7%, -35.7%);
  max-width: none;
  min-width: 100%;
}
.front-intro-inner {
  margin: 0 auto;
  padding: 180px 0 220px;
  max-width: 1150px;
  position: relative;
}
.front-intro-message {
  display: block;
  margin-left: auto;
  margin-right: 100px;
  width: 682px;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
.front-intro-message br {
  display: none;
}
.front-intro-message .text01 {
  font-weight: 900;
  font-size: 7rem;
  display: inline-block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.front-intro-message .text02 {
  font-weight: 900;
  font-size: 2.4rem;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.front-intro-message .text03 {
  font-weight: 400;
  font-size: 14rem;
  letter-spacing: -0.2em;
  transform: translateY(-6%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.front-intro-message .text01 .small {
  margin-left: 0.1em;
  font-size: 80%;
}
.front-intro-message-box1 {
  position: relative;
  padding: 32px 0 32px 36px;
}
.front-intro-message-box2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 26px;
}
.front-intro-message-border {
  position: absolute;
  background-color: black;
}
.front-intro-message-border.top {
  top: 0;
  right: 0;
  width: 0%;
  height: 3px;
}
.front-intro-message-border.left {
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
}
.front-intro-message-border.bottom {
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
}
.front-intro-message-border.right {
  bottom: 0;
  right: 0;
  width: 3px;
  height: 0%;
}
.front-intro-message-border.center {
  top: 0;
  right: 20px;
  width: 0%;
  height: 3px;
}
.front-intro-message-box1 .arrow {
  position: absolute;
  top: 35%;
  right: -28px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.is-show .front-intro-message-border.top {
  width: 100%;
  transition: width 300ms cubic-bezier(0.7, 0, 0.8, 1);
}
.is-show .front-intro-message-border.left {
  height: 100%;
  transition: height 100ms 300ms linear;
}
.is-show .front-intro-message-border.bottom {
  width: 100%;
  transition: width 150ms 400ms linear;
}
.is-show .front-intro-message-border.right {
  height: calc(100% - 8px);
  transition: height 100ms 550ms linear;
}
.is-show .front-intro-message-border.center {
  width: calc(100% - 40px);
  transition: width 400ms 680ms cubic-bezier(0.4, 0, 0.8, 1);
}
.front-intro-message.is-show .text01 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 400ms 1200ms;
}
.front-intro-message.is-show .text02 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 100ms 1600ms linear;
}
.front-intro-message.is-show .text03 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 300ms 1700ms linear;
}
.is-show .front-intro-message-box1 .arrow {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 300ms 2000ms ease-in;
  animation: message_arrow_move 3000ms 2300ms infinite;
}
@keyframes message_arrow_move {
  0% {
    transform: translateX(0);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  25% {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    transform: translateX(10%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  75% {
    transform: translateX(10%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    transform: translateX(0);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
.front-intro-car {
  position: absolute;
  top: 350px;
  right: calc(50% - 120px);
  z-index: 2;
  opacity: 0;
  transform: translate(-10%, -5%);
}
.front-intro-banner-link {
  position: absolute;
  top: 560px;
  right: calc(50% - 505px);
  z-index: 2;
  transform: translate(-10%, -5%);
  transition: opacity 300ms;
  width: 302px;
}
.front-intro-banner-link:hover {
  opacity: 0.7;
}
.front-intro-banner-link img {
  width: 100%;
}
.front-intro-car.is-show {
  transition: transform 500ms, opacity 500ms;
  opacity: 1;
  transform: none;
}
.front-intro-title {
  position: absolute;
  top: 140px;
  right: -0.6em;
  font: 400 10rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
.front-intro-content {
  margin: 564px 0 0;
}
.front-intro-block {
  display: flex;
  align-items: flex-start;
  gap: 0 92px;
}
.front-intro-block-image-wrap {
  width: 401px;
  position: relative;
}
.front-intro-block-image img {
  width: 100%;
}
.front-intro-block-text-wrap {
  margin: -1.2em 0 0;
}
.front-intro-block-description {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.4;
  letter-spacing: 0.2em;
  color: #fff;
}
.front-intro-block-image-link {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}
.front-intro-bg-objects {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.front-intro-bg-object {
  position: absolute;
  top: 0;
  left: calc(50% - 996px);
  z-index: -1;
}
.front-intro-bg-object-under {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 720px;
  transform: skewY(7deg);
  background-color: #010197;
}

@media screen and (max-width: 1339px) {
  .front-intro-block {
    flex-direction: column-reverse;
    gap: 60px 0;
  }
  .front-intro-bg-grad {
    top: 600px;
    height: 600px;
    width: calc(50% + 275px);
  }
  .front-intro-inner {
    padding: 180px 0 80px;
    max-width: 680px;
  }
  .front-intro-content {
    margin: 424px 0 0;
  }
  .front-intro-bg-image {
    display: none;
  }
  .front-intro-title {
    right: 0;
    font-size: 9rem;
  }
  .front-intro-car {
    top: 600px;
    right: calc(50% - 120px);
    width: 520px;
  }
  .front-intro-banner-link {
    top: 900px;
    right: calc(50% - 255px);
    width: 230px;
  }
  .front-intro-message {
    margin: 0;
    width: 500px;
  }
  .front-intro-message br {
    display: inline;
  }
  .front-intro-block-image-wrap {
    width: 570px;
  }
  .front-intro-block-text-wrap {
    margin: 0;
  }
  .front-intro-bg-object-under {
    height: 1080px;
  }
}
@media screen and (max-width: 767px) {
  .front-intro-inner {
    padding: 120px 4.8309178744vw 80px;
    max-width: 680px;
    overflow: hidden;
  }
  .front-intro-block-description {
    font-size: min(1.8rem, 4.347826087vw);
    line-height: 2.3;
  }
  .front-intro-block-image-wrap {
    margin-right: 8.6956521739vw;
    width: auto;
  }
  .front-intro-block-image-link .link-button {
    width: 17.3913043478vw;
  }
  .front-intro-bg-grad {
    top: min(620px, 149.7584541063vw);
    height: min(340px, 82.1256038647vw);
    width: 100%;
  }
  .front-intro-banner-link {
    margin-right: 16.9082125604vw;
    margin-top: 10.8695652174vw;
    width: auto;
    position: static;
    display: block;
    transform: none;
  }
  .front-intro-car {
    position: relative;
    margin: 7.729468599vw 0 0;
    max-width: none;
    width: 101.9323671498vw;
    top: auto;
    right: auto;
    left: -20%;
  }
  .front-intro-title {
    top: 140px;
    right: 4.8309178744vw;
    font-size: 3rem;
  }
  .front-intro-message {
    margin-right: 16.9082125604vw;
    width: auto;
  }
  .front-intro-message-box1 {
    padding: 2.4154589372vw 0 2.4154589372vw 6.2801932367vw;
  }
  .front-intro-message .text01 {
    font-size: 12.077294686vw;
    line-height: 1.2;
  }
  .front-intro-message .text02 {
    font-size: 4.1062801932vw;
  }
  .front-intro-message .text03 {
    font-size: 21.4975845411vw;
    transform: translateY(-6%);
  }
  .front-intro-message .text01 .small {
    margin-left: 0.1em;
    font-size: 80%;
  }
  .front-intro-message-box1 .arrow {
    top: 22%;
    right: -6.2801932367vw;
    width: 21.4009661836vw;
  }
  .front-intro-content {
    margin-top: 6px;
  }
  .front-intro-bg-objects svg g {
    transform: translate(11.8%, 33.8164251208vw) scale(0.8);
  }
  .front-intro-bg-object-under {
    height: min(1080px, 260.8695652174vw);
  }
}
/* ===================================================
	サステナブルへの取り組み
==================================================== */
.front-sustainable-section {
  margin: 0 0 0;
}
.front-sustainable-section-bottom {
  margin-top: 80px;
  overflow: hidden;
}
.front-sustainable-description {
  margin-top: 2em;
  line-height: 2.2;
}
.front-sustainable-header-container {
  display: flex;
  justify-content: space-between;
}
.front-sustainable-header-image-block {
  width: 421px;
}
.front-sustainable-header-image {
  margin-top: -120px;
}
.front-sustainable-slider-wrapper {
  opacity: 0;
}
.front-sustainable-slider-wrapper.is-visible {
  transition: opacity 500ms;
  opacity: 1;
}
.front-sustainable-slider-item {
  position: relative;
}
.front-sustainable-slider-image {
  aspect-ratio: 626/369;
}
.front-sustainable-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-sustainable-slider-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 46px 50px;
  background-color: transparent;
  transition: background-color 300ms;
}
.front-sustainable-slider-text .title {
  font-weight: 400;
  font-size: 2.7rem;
  line-height: 1.4;
  color: #fff;
}
.front-sustainable-slider-text .arrow {
  position: absolute;
  right: 50px;
  bottom: 46px;
}
.front-sustainable-slider-text:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.front-sustainable-footer {
  margin-top: 24px;
}

@media screen and (max-width: 1339px) {
  .front-sustainable-section {
    margin: 120px 0 0;
  }
  .front-sustainable-header-image-block {
    display: none;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .front-sustainable-slider-text:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .front-sustainable-section {
    margin: 60px 0 0;
  }
  .front-sustainable-section-bottom {
    margin: 64px 0 0;
  }
  .front-sustainable-slider-text {
    padding: min(24px, 5.7971014493vw) min(26px, 6.2801932367vw);
  }
  .front-sustainable-slider-text .title {
    font-size: min(1.8rem, 4.347826087vw);
    line-height: 1.4;
  }
  .front-sustainable-slider-text .arrow {
    right: min(26px, 6.2801932367vw);
    bottom: min(28px, 6.7632850242vw);
    width: min(35px, 8.4541062802vw);
  }
}
/* ===================================================
	トムコの事業内容
==================================================== */
.front-service-section {
  margin: 112px 0 0;
  position: relative;
}
.front-service-section-bg {
  position: absolute;
  top: -180px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1461px;
  background: center center/1996px 1462px url(./assets/img/image-service-front-bg.webp) repeat-x;
}
.front-service-section-bg::after {
  content: "";
  display: block;
  height: 100%;
  background-image: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.54) 75%, transparent 100%);
}
.front-service-section-bg img {
  max-width: none;
  min-width: 1805px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-service-content {
  margin-top: 70px;
}
.front-service-block {
  display: flex;
  justify-content: space-between;
}
.front-service-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.front-service-image {
  position: relative;
  width: 1094px;
}
.front-service-text-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.front-service-text {
  width: 100%;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
.front-service-text br {
  display: none;
}

@media screen and (max-width: 1339px) {
  .front-service-block {
    flex-direction: column-reverse;
    gap: 40px 0;
  }
  .front-service-image {
    width: auto;
  }
  .front-service-text-wrap {
    display: block;
    padding: 42px;
  }
  .front-service-text {
    text-align: left;
  }
  .front-service-text br {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .front-service-content {
    margin-top: 40px;
  }
  .front-service-block {
    gap: 22px 0;
  }
  .front-service-text-wrap {
    padding: min(48px, 11.5942028986vw) min(32px, 7.729468599vw);
  }
  .front-service-text {
    font-size: min(1.8rem, 4.347826087vw);
    line-height: 1.5;
  }
}
/* ===================================================
	トムコヒストリー
==================================================== */
.front-history-section {
  margin: 268px 0 200px;
  overflow: hidden;
}
.front-history-description {
  margin-top: 60px;
  font-weight: 400;
  line-height: 2;
}
.front-history-content {
  margin-top: 100px;
}
.front-history-contents-field {
  position: relative;
  padding-top: 40px;
}
.front-history-contents-field-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  clip-path: path("M0 0 H752 V389 L0 177 H0");
  background-image: linear-gradient(66deg, var(--base-color-blue) 0%, var(--base-color-blue) 610px, transparent 1020px);
}
.front-history-main .main-width {
  width: 435px;
}
.front-history-main-block01 {
  text-align: center;
  font: 700 9rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.front-history-main-block01 .small {
  font-size: 61.1111111111%;
}
.front-history-main-block01 .text02 {
  margin-top: 0.25em;
  font-size: 4rem;
  color: white;
}
.front-history-main-block02 {
  border: 3px solid #bfbfff;
  padding: 1.6em 0;
  background-color: white;
  font: 900 2.6rem/1.29 "Zen Old Mincho", serif;
  color: var(--base-color-blue);
  text-align: center;
  position: relative;
}
.front-history-main-block02::before, .front-history-main-block02::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 5px;
  background-color: white;
}
.front-history-main-block02::before {
  left: 0;
  top: -3px;
}
.front-history-main-block02::after {
  right: 0;
  bottom: -3px;
}
.front-history-main-between01 {
  margin-top: 30px;
  height: 40px;
  position: relative;
}
.front-history-main-between01 .point {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
}
.front-history-main-between01 .line {
  position: absolute;
  left: calc(50% - 1.5px);
  top: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(1, 1, 253, 0.25);
}
.front-history-main-between02 {
  height: 200px;
  position: relative;
}
.front-history-main-between02 > .point {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--base-color-blue);
  transform: translate(-50%, 50%);
}
.front-history-main-between02 .line {
  position: absolute;
  left: calc(50% - 1.5px);
  z-index: -1;
  width: 3px;
  height: 100%;
  background-color: rgba(1, 1, 253, 0.25);
}
.front-history-main-complement {
  position: absolute;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
.front-history-main-complement.number01 {
  top: 33%;
  left: 50%;
  padding-left: 28px;
}
.front-history-main-complement.number02 {
  top: 67%;
  right: 50%;
  text-align: right;
  padding-right: 28px;
}
.front-history-main-complement .point {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--base-color-blue);
}
.front-history-main-complement.number01 .point {
  position: absolute;
  left: 0;
  transform: translate(-50%, -50%);
}
.front-history-main-complement.number02 .point {
  position: absolute;
  right: 0;
  transform: translate(50%, -50%);
}
.front-history-main-block03 {
  font: 700 9rem/1.5 "Zen Old Mincho", serif;
  text-align: center;
  color: var(--base-color-yellow);
}
.front-history-main-block03 .small {
  font-size: 61.1111111111%;
}
.front-history-main-message {
  font: 700 2.5rem/2 "Zen Old Mincho", serif;
  color: var(--base-color-blue);
  text-align: center;
  position: relative;
  letter-spacing: 0.15em;
}
.front-history-main-message .entitle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -55%);
  font-weight: 900;
  font-size: 20rem;
  line-height: 0.9;
  color: #f1f1f1;
  white-space: nowrap;
  letter-spacing: 0;
}
.front-history-main-message .entitle br {
  display: none;
}
.front-history-main-between03 {
  margin-top: 20px;
  height: 68px;
  position: relative;
}
.front-history-main-between03 .point {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--base-color-blue);
  transform: translate(-50%, -50%);
}
.front-history-main-between03 .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-image: linear-gradient(0deg, transparent 0%, rgba(1, 1, 253, 0.25) 100%);
}
.front-history-main-link {
  margin: 0 auto;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 300ms;
}
.front-history-main-link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8em;
  background-color: black;
  font: 700 3rem/1 "Zen Old Mincho", serif;
  color: white;
}
.front-history-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.front-history-image-box {
  position: absolute;
}
.front-history-image-box.image01 {
  width: 335px;
  top: 150px;
  right: 430px;
}
.front-history-image-box.image02 {
  width: 231px;
  top: 150px;
  right: 124px;
}
.front-history-image-box.image03 {
  width: 273px;
  top: 357px;
  right: 0;
}
.front-history-image-yellow {
  position: absolute;
  top: 569px;
  right: -61px;
  width: 382px;
  height: 98px;
  background-image: linear-gradient(-90deg, transparent 0%, var(--base-color-yellow) 100%);
  opacity: 0.4;
}
@media screen and (max-width: 1339px) {
  .front-history-main .main-width {
    width: 360px;
  }
  .front-history-image-box.image02, .front-history-image-box.image03 {
    display: none;
  }
  .front-history-image-box.image01 {
    width: 260px;
    top: -60px;
    right: -20px;
  }
  .front-history-image-yellow {
    display: none;
  }
  .front-history-main-between01 {
    margin-top: 0;
    padding-top: 40px;
  }
  .front-history-main-between01 .point {
    left: 20%;
    top: -16px;
  }
  .front-history-main-between01 .line {
    left: calc(20% - 1.5px);
    top: -8px;
    height: calc(100% + 8px);
  }
  .front-history-main-between02 .line {
    left: calc(20% - 1.5px);
  }
  .front-history-main-complement.number01 {
    top: 33%;
    left: 20%;
    padding-left: 28px;
  }
  .front-history-main-complement.number02 {
    right: auto;
    left: 20%;
    text-align: left;
    padding-right: 0;
    padding-left: 28px;
  }
  .front-history-main-complement.number02 .point {
    right: auto;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .front-history-main-complement.number01 br, .front-history-main-complement.number02 br {
    display: none;
  }
  .front-history-main-between02 > .point {
    left: 20%;
  }
  .front-history-main-link {
    margin: 0 auto 0 0;
  }
  .front-history-main-between03 .point {
    left: 20%;
  }
  .front-history-main-between03 .line {
    left: 20%;
  }
  .front-history-main-message {
    text-align: left;
    line-height: 1.6;
  }
  .front-history-main-message .entitle {
    left: 0;
    top: 50%;
    font-size: 12rem;
    transform: translate(0, -50%);
  }
  .front-history-main-message .entitle br {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .front-history-section {
    margin: 268px 0 68px;
  }
  .front-history-section .container {
    padding: 0 min(20px, 4.8309178744vw);
  }
  .front-history-main .main-width {
    width: auto;
  }
  .front-history-main-block01 {
    text-align: left;
    font-size: min(6rem, 14.4927536232vw);
    align-items: flex-start;
    padding-left: min(34px, 8.2125603865vw);
  }
  .front-history-main-block01 .text02 {
    margin-left: 1em;
    font-size: 50%;
  }
  .front-history-main-block03 {
    font-size: min(6rem, 14.4927536232vw);
    text-align: left;
  }
  .front-history-main-block03 .small {
    font-size: 58.3333333333%;
  }
  .front-history-image-box.image01 {
    right: 0;
    top: max(-30px, -7.2463768116vw);
    width: min(105px, 25.3623188406vw);
  }
  .front-history-main-message {
    font-size: min(1.8rem, 4.347826087vw);
    line-height: 1.6;
  }
  .front-history-description {
    margin-top: 40px;
  }
  .front-history-contents-field {
    padding-top: min(32px, 7.729468599vw);
  }
  .front-history-contents-field-bg {
    width: calc(100% + 4.8309178744vw);
    height: min(230px, 55.5555555556vw);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
  }
  .front-history-main-block02 {
    font-size: min(2rem, 4.8309178744vw);
  }
  .front-history-main-between01 {
    padding-top: 0;
    height: min(40px, 9.6618357488vw);
  }
  .front-history-main-between01 .point {
    top: max(-14px, -3.3816425121vw);
    left: min(34px, 8.2125603865vw);
    width: min(13px, 3.1400966184vw);
  }
  .front-history-main-between02 > .point, .front-history-main-between03 .point {
    left: min(34px, 8.2125603865vw);
    width: min(13px, 3.1400966184vw);
  }
  .front-history-main-complement .point {
    width: min(13px, 3.1400966184vw);
  }
  .front-history-main-between01 .line, .front-history-main-between02 .line, .front-history-main-between03 .line {
    left: min(32px, 7.729468599vw);
    transform: none;
  }
  .front-history-main-complement.number01, .front-history-main-complement.number02 {
    left: min(34px, 8.2125603865vw);
    padding-left: min(28px, 6.7632850242vw);
  }
  .front-history-main-block03, .front-history-main-message {
    padding-left: min(18px, 4.347826087vw);
  }
  .front-history-main-message .entitle {
    left: max(-20px, -4.8309178744vw);
    font-size: min(8.8rem, 21.2560386473vw);
  }
  .front-history-main-complement.number01 br {
    display: inline;
  }
  .front-history-main-complement {
    font-size: min(1.5rem, 3.6231884058vw);
  }
  .front-history-main .link-button {
    width: min(72px, 17.3913043478vw);
  }
  .front-history-main-link-text {
    font-size: min(3rem, 7.2463768116vw);
  }
  .front-history-main-between02 {
    height: min(200px, 48.309178744vw);
  }
  .front-history-main-between03 {
    margin-top: min(20px, 4.8309178744vw);
    height: min(68px, 16.4251207729vw);
  }
  .front-history-main-block02::before, .front-history-main-block02::after {
    width: min(20px, 4.8309178744vw);
  }
}
/* ===================================================
	人を大切に、未来を築くトムコで働く5つの価値。
==================================================== */
.front-value-section {
  background: center center/cover url(./assets/img/image-value-front-bg01.webp) no-repeat;
}
.front-value-section-top {
  padding: 50px 0 90px;
  overflow: hidden;
}
.front-value-title {
  font: 700 4.2rem/1 "Zen Old Mincho", serif;
  text-align: center;
  color: white;
}
.front-value-title .small {
  font-size: 80.9523809524%;
}
.front-value-title .number {
  font-size: 190.4761904762%;
}
.front-value-title .large {
  font-size: 142.8571428571%;
}
.front-value-content {
  margin-top: 50px;
}
.front-value-slider-wrapper {
  opacity: 0;
}
.front-value-slider-wrapper.is-visible {
  transition: opacity 500ms;
  opacity: 1;
}
.front-value-slider-item {
  font-family: "Zen Old Mincho", serif;
  color: white;
  height: 100%;
}
.front-value-slider-item-inner {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 0 3px 3px;
  border-color: white;
  padding: 2.2em 1.6em 1.2em;
  transition: background-color 300ms;
}
.front-value-slider-item:hover .front-value-slider-item-inner {
  background-color: rgba(255, 255, 255, 0.2);
}
.front-value-slider-item .number {
  display: flex;
  align-items: center;
  margin-bottom: -0.4em;
  padding: 0 0 0 0.5em;
  font-size: 6rem;
  line-height: 1;
}
.front-value-slider-item .number::after {
  content: "";
  margin-left: 0.5em;
  width: 100%;
  height: 3px;
  background-color: white;
  flex-shrink: 1;
  transform: translateY(0.1em);
}
.front-value-slider-text {
  font-size: 4rem;
  line-height: 1.375;
  min-height: 5.5em;
}
.front-value-section-bottom {
  overflow: hidden;
}
.front-value-link {
  display: flex;
  justify-content: center;
  margin-bottom: -42px;
  position: relative;
  z-index: 2;
}
.front-value-image-slider-list {
  transition-timing-function: linear;
}
.front-value-image-slider-item {
  width: 308px;
  height: auto;
  aspect-ratio: 308/231;
  overflow: hidden;
}
.front-value-image-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .front-value-slider-item:hover .front-value-slider-item-inner {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .front-value-section-top {
    padding: 60px 0 52px;
  }
  .front-value-content {
    margin-top: 40px;
  }
  .front-value-title {
    font-size: min(2.8rem, 6.7632850242vw);
    line-height: 1.5;
  }
  .front-value-title .small {
    font-size: 78.5714285714%;
  }
  .front-value-title .number {
    font-size: 178.5714285714%;
  }
  .front-value-title .large {
    font-size: 100%;
  }
  .front-value-slider-item .number {
    font-size: min(4rem, 9.6618357488vw);
  }
  .front-value-slider-text {
    font-size: min(2.5rem, 6.038647343vw);
    line-height: 1.36;
    min-height: 5.44em;
  }
  .front-value-link {
    padding: 0 20px;
    justify-content: flex-start;
  }
  .front-value-image-slider-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .front-value-image-slider-item {
    width: auto;
  }
}
/* ===================================================
	トムコについて
==================================================== */
.front-about-section {
  margin: 120px 0 0;
}
.front-about-content {
  margin-top: 10px;
}
.front-about-container {
  display: flex;
  justify-content: space-between;
}
.front-about-image-wrapper {
  width: 693px;
}
.front-about-image img {
  width: 100%;
}
.front-about-object-wrapper {
  padding-top: 58px;
}
.front-about-link {
  padding-top: 270px;
}
.front-about-object-block {
  width: 364px;
  padding: 10px 20px;
  position: relative;
  font: 900 7rem/1 "Zen Old Mincho", serif;
  display: block;
}
.front-about-object-block-link {
  display: inline-block;
  transition: opacity 300ms;
}
.front-about-object-block-link:hover {
  opacity: 0.5;
}
.front-about-object-block .border {
  position: absolute;
  background-color: black;
}
.front-about-object-block .top {
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
}
.front-about-object-block .left {
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
}
.front-about-object-block .bottom {
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
}
.front-about-object-block .right {
  bottom: 50%;
  right: 0;
  width: 3px;
  height: 0;
}
.front-about-object-block .since {
  font: 900 2.4rem/1 "Zen Old Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  position: absolute;
  top: 0;
  right: calc(100% + 20px);
}
.front-about-object-block .box01, .front-about-object-block .box02, .front-about-object-block .box03 {
  padding: 0.16em 0.2em;
  position: relative;
}
.front-about-object-block .text01, .front-about-object-block .text02, .front-about-object-block .text03 {
  display: inline-block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.front-about-object-block .center1, .front-about-object-block .center2 {
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
}
.front-about-object-block .arrow {
  position: absolute;
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.front-about-object .message {
  margin-top: 0.5em;
  font: 500 2rem/1 "Roboto", sans-serif;
  text-align: center;
}
.is-show .front-about-object-block .right {
  transition: height 300ms ease-in;
  height: 50%;
}
.is-show .front-about-object-block .top {
  transition: width 150ms 300ms linear;
  width: 100%;
}
.is-show .front-about-object-block .left {
  transition: height 100ms 450ms linear;
  height: 100%;
}
.is-show .front-about-object-block .bottom {
  transition: width 200ms 550ms ease-out;
  width: 100%;
}
.is-show .front-about-object-block .center1 {
  transition: width 200ms 800ms ease-out;
  width: 100%;
}
.is-show .front-about-object-block .center2 {
  transition: width 200ms 1000ms ease-out;
  width: 100%;
}
.is-show .front-about-object-block .text01 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 300ms 1200ms ease-in;
}
.is-show .front-about-object-block .text02 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 300ms 1400ms ease-in;
}
.is-show .front-about-object-block .text03 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 300ms 1600ms ease-in;
}
.is-show .front-about-object-block .arrow {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 300ms 2000ms ease-out;
  animation: about_block_moving 3000ms 2300ms infinite;
}
@keyframes about_block_moving {
  0% {
    transform: translateX(0) translateY(-50%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  25% {
    transform: translateX(0) translateY(-50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    transform: translateX(10%) translateY(-50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  75% {
    transform: translateX(10%) translateY(-50%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    transform: translateX(0) translateY(-50%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}

@media screen and (max-width: 1339px) {
  .front-about-link {
    display: none;
  }
  .front-about-container {
    flex-direction: column;
  }
  .front-about-object-wrapper {
    padding-left: 90px;
  }
  .front-about-image-wrapper {
    margin: 40px auto 0;
    width: 500px;
  }
  .front-about-object .message {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .front-about-section .container {
    padding: 0 min(20px, 4.8309178744vw);
  }
  .front-about-image-wrapper {
    margin: 40px auto 0;
    width: auto;
  }
  .front-about-object-wrapper {
    padding: 4.8309178744vw 6.5217391304vw 0 9.6618357488vw;
  }
  .front-about-object-block {
    width: auto;
    padding: 10px 3.8647342995vw;
    font-size: 14.4927536232vw;
  }
  .front-about-object-block .since {
    font-size: 5.5555555556vw;
    right: calc(100% + 4.8309178744vw);
  }
  .front-about-object .message {
    margin-top: 0.5em;
    font-size: 4.1062801932vw;
  }
  .front-about-object-block .arrow {
    width: min(150px, 36.231884058vw);
    right: min(-26px, -6.2801932367vw);
  }
}
/* ===================================================
	お知らせ
==================================================== */
.front-news-section {
  margin: 72px 0 0;
  padding: 0 0 174px;
}
.front-news-block {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.front-news-header {
  display: flex;
  flex-direction: column;
  position: relative;
}
.front-news-content {
  grid-row: span 2;
}
.front-news-footer {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 1339px) {
  .front-news-block {
    display: block;
  }
  .front-news-content {
    margin-top: 40px;
    width: auto;
  }
  .front-news-footer {
    margin-top: 40px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .front-news-section {
    margin: 92px 0 0;
    padding: 0 0 60px;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	会社情報／代表挨拶ページ：代表の写真セクション
==================================================== */
.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: 11rem;
  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: -28px;
  display: flex;
  align-items: flex-end;
}
.sustainability-details-block-image-wrapper {
  width: calc(100% - 204px + 21px);
}
.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: -21px;
  padding-bottom: 30px;
  width: 204px;
}
.sustainability-details-block-logo-item {
  position: relative;
  border: 2px solid black;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: 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 56px;
  max-width: 777px;
}
.sustainability-details-block-description {
  font: 400 1.6rem/2 "Roboto", sans-serif;
}

@media screen and (max-width: 1339px) {
  .sustainability-details-block-image-wrapper {
    width: calc(100% - 120px + 12px);
  }
  .sustainability-details-block-logo-wrapper {
    margin-left: -12px;
    padding-bottom: 20px;
    width: 120px;
  }
  .sustainability-details-block-logo-item img {
    width: 80%;
  }
  .sustainability-details-block-logo-item .ecoaction-certificate {
    width: 60%;
  }
}
@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: 2.2rem;
  }
  .sustainability-details-block-description {
    font-size: 1.4rem;
  }
  .sustainability-details-block-title .number {
    font-size: 6rem;
    -webkit-text-stroke-width: 2px;
  }
  .sustainability-details-block-title .text {
    margin-left: 0.3em;
    padding-top: 0.5em;
  }
  .sustainability-details-block-image-wrapper {
    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;
  }
  .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: 100%;
  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埋め込み
==================================================== */
/* ===================================================
	事業内容の紹介ページ：事業内容一覧冒頭
==================================================== */
.business-top-section {
  padding: 0 0 88px;
  overflow: hidden;
}
.business-top-title {
  font: 700 5.8rem/1.2 "Zen Old Mincho", serif;
}
.business-top-description {
  margin-top: 2em;
  font-size: 1.8rem;
  line-height: 1.8;
}
.business-top-container {
  display: flex;
  justify-content: space-between;
}
.business-top-text-wrapper {
  width: 580px;
}
.business-top-image-wrapper {
  padding-top: 134px;
  width: 281px;
  position: relative;
}
.business-top-image img {
  width: 100%;
}
.business-top-image-bg {
  position: absolute;
  left: 72px;
  bottom: -87px;
  z-index: -2;
  width: 568px;
  height: auto;
  aspect-ratio: 568/132;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
  background-color: var(--base-color-blue);
}
.business-top-image-grad {
  position: absolute;
  bottom: -107px;
  left: calc(100% - 105px);
  z-index: -1;
  width: 516px;
  height: auto;
  aspect-ratio: 516/66;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}

@media screen and (max-width: 1339px) {
  .business-top-section {
    margin: 80px 0 0;
    padding: 0 0 88px;
  }
  .business-top-container {
    display: block;
  }
  .business-top-text-wrapper {
    width: auto;
  }
  .business-top-image-wrapper {
    margin-top: 80px;
    padding-top: 0;
    width: auto;
  }
  .business-top-image {
    width: 80%;
  }
  .business-top-image-grad {
    left: calc(50% + 100px);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .business-top-section {
    margin: 40px 0;
    padding: 0;
    overflow: initial;
  }
  .business-top-title {
    font-size: 2.8rem;
  }
  .business-top-description {
    font-size: 1.5rem;
  }
  .business-top-image-wrapper {
    margin-top: 40px;
  }
  .business-top-image {
    position: relative;
    z-index: 1;
    width: auto;
  }
  .business-top-image-bg {
    position: static;
    width: auto;
    margin-top: -7%;
    margin-right: -20px;
  }
  .business-top-image-grad {
    position: relative;
    z-index: 2;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -7.5%;
    width: 70%;
    aspect-ratio: 516/100;
  }
}
/* ===================================================
	事業内容の紹介ページ：事業ページ一覧
==================================================== */
.business-lineup-section {
  margin: 140px 0 0;
}
.business-lineup-block-list {
  display: grid;
  gap: 145px 0;
}
.business-lineup-block {
  position: relative;
  padding-left: 126px;
}
.business-lineup-block-title-wrap {
  position: absolute;
  left: 0;
  top: -38px;
  z-index: 1;
  writing-mode: vertical-rl;
  border: 3px solid black;
  padding: 2em 3.2em 2em 2.8em;
}
.business-lineup-block-title-wrap::before {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  z-index: 1;
  width: 3px;
  height: 24px;
  background-color: white;
}
.business-lineup-block-title {
  font: 700 3.8rem/1 "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
}
.business-lineup-block-thumbnail, .business-lineup-block-thumbnail-special {
  position: relative;
  display: block;
}
.business-lineup-block-thumbnail-special {
  margin-top: 1.5em;
}
.business-lineup-block-thumbnail-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(40%);
}
.business-lineup-block-catch {
  margin-top: 29px;
  font: 900 3.7rem/1.2 "Zen Old Mincho", serif;
}
.business-lineup-block-catch:nth-child(n+2) {
  margin-top: 1.6em;
}
.business-lineup-block-description {
  margin-top: 27px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.business-lineup-block-thumbnail-special-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .business-lineup-block-list {
    gap: 80px 0;
  }
  .business-lineup-block {
    padding-top: 20px;
    padding-left: 0;
  }
  .business-lineup-block:nth-child(3) .business-lineup-block-catch {
    margin-top: 4em;
  }
  .business-lineup-block-title-wrap {
    top: 0;
    padding: 1.4em 2.7em 1.4em 1.7em;
    z-index: -1;
  }
  .business-lineup-block-title-wrap::before {
    content: none;
  }
  .business-lineup-block-title {
    font-size: 2.2rem;
  }
  .business-lineup-block-content {
    padding-left: 0;
  }
  .business-lineup-block-thumbnail {
    margin-left: auto;
    padding: 8px 0 0 8px;
    width: 81.9652406417%;
    background-color: white;
  }
  .business-lineup-block-catch {
    font-size: 2.2rem;
  }
  .business-lineup-block-description {
    font-size: unset;
  }
  .business-lineup-block-thumbnail-special-container {
    grid-template-columns: 1fr;
  }
  .business-lineup-block-thumbnail-special-container img {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .business-lineup-block:nth-child(3) .business-lineup-block-catch {
    margin-top: 5em;
  }
}
/* ===================================================
	事業内容の紹介ページ：特殊車両販売バナー
==================================================== */
.business-banner-special-section {
  margin: 160px 0;
}
.business-banner-special-link {
  display: block;
  position: relative;
}
.business-banner-special-link-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 1339px) {
  .business-banner-special-section {
    margin: 160px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .business-banner-special-section {
    margin: 120px 0 0;
  }
}
/* ===================================================
	事業内容の紹介ページ：事業内容詳細
==================================================== */
.business-details-section {
  margin: 0 0 120px;
  overflow: hidden;
}
.business-details-header {
  padding-top: 63px;
  padding-left: 210px;
  position: relative;
}
.business-details-header-title-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  writing-mode: vertical-rl;
  border: solid 3px black;
  margin-right: -48px;
  padding: 4em 7em 4em 5em;
}
.business-details-header-title-wrapper::before {
  right: 0;
  top: 0;
  width: 3px;
  height: 60px;
}
.business-details-header-title-wrapper::after {
  left: 0;
  bottom: 0;
  width: 13.4em;
  height: 3px;
}
.business-details-header-title {
  font: 700 7.4rem/1 "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.business-details-header-thumbnails-wrapper {
  margin-right: -80px;
  margin-bottom: 40px;
  padding: 20px 0 0 20px;
  background-color: white;
}
.business-details-header-thumbnails img {
  width: 100%;
}
.business-details-header-thumbnails {
  position: relative;
  z-index: 1;
}
.business-details-body {
  margin-left: 210px;
  padding-top: 20px;
  padding-left: 16px;
  background-color: white;
}
.business-details-header-thumbnails-grad {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  margin-left: 192px;
  width: 500px;
  height: auto;
  aspect-ratio: 500/89;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}
.business-details-header-thumbnails-bg {
  margin-top: -90px;
  margin-left: 258px;
  width: 568px;
  height: auto;
  aspect-ratio: 568/132;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  background-color: var(--base-color-blue);
}
.business-details-catch {
  font: 900 4.4rem/1.2 "Zen Old Mincho", serif;
}
.business-details-subcatch {
  margin-top: 1em;
  font: 900 3.7rem/1.2 "Zen Old Mincho", serif;
}
.business-details-description {
  margin-top: 1.5em;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.business-details-content {
  margin-top: 80px;
  background-color: var(--base-color-blue);
  padding: 90px 55px 90px 0;
  color: white;
  position: relative;
}
.business-details-content-heading {
  position: absolute;
  left: 0;
  top: -20px;
  background-color: var(--base-color-yellow);
  color: black;
  font: 900 2.3rem/1 "Zen Old Mincho", serif;
  letter-spacing: 0.02em;
  padding: 0.7em 1.1em;
}
.business-details-block {
  padding-left: 74px;
  position: relative;
}
.business-details-block:not(:first-child) {
  margin-top: 44px;
}
.business-details-block-title {
  font: 900 4.4rem/1.2 "Zen Old Mincho", serif;
}
.business-details-block-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 35px;
  height: 3px;
  background-color: white;
}
.business-details-major-list {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
}
.business-details-major-item {
  margin-left: -20px;
  border: 1px solid white;
  border-radius: 50%;
  width: 124px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}
.business-details-major-item.first {
  margin-left: 0;
  margin-right: 8px;
  background-color: white;
  color: var(--base-color-blue);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.05;
  color: var(--base-color-blue);
  width: 67px;
}
.business-details-block-description {
  margin-top: 1em;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
}
.business-details-block-flowbox {
  margin-top: 40px;
  padding: 30px 36px 36px;
  position: relative;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: white;
}
.business-details-block-flowbox::before, .business-details-block-flowbox::after {
  content: "";
  position: absolute;
  background-color: white;
}
.business-details-block-flowbox::before {
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% - 20px);
}
.business-details-block-flowbox::after {
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
}
.business-details-block-flowbox ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 25px;
}
.business-details-block-flowbox li {
  width: auto;
  position: relative;
}
.business-details-block-flowbox li .number {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--base-color-yellow);
}
.business-details-block-flowbox li .name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
.business-details-block-flowbox li .arrow {
  margin-top: -12px;
}
.business-details-block-flowbox li .arrow svg {
  width: 100%;
  height: 100%;
}
.business-details-block-table {
  margin-top: 32px;
}
.business-details-block-table-title {
  display: inline-block;
  padding: 0.65em 1em 0.8em;
  min-height: 0;
  position: relative;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: white;
}
.business-details-block-table-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: calc(100% - 16px);
  background-color: white;
}
.business-details-block-table-content {
  padding: 0 20px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: white;
  position: relative;
}
.business-details-block-table-content::before, .business-details-block-table-content::after {
  content: "";
  position: absolute;
  background-color: white;
}
.business-details-block-table-content::before {
  left: 0;
  bottom: 0;
  width: 1px;
  height: calc(100% - 16px);
}
.business-details-block-table-content::after {
  bottom: 0;
  left: 0;
  width: calc(100% - 16px);
  height: 1px;
}
.business-details-block-table-content dl {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 170px 1fr;
}
.business-details-block-table-content dt {
  display: flex;
  align-items: center;
  width: 170px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.3;
}
.business-details-block-table-content dd {
  border-left: 1px solid white;
  padding: 4px 10px 4px 28px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: calc(3em + 8px);
}
.business-details-block-table-content dl:nth-child(n+2) {
  border-top: 1px solid white;
}

@media screen and (max-width: 1339px) {
  .business-details-section {
    margin: 80px 0 120px;
  }
  .business-details-body {
    margin-left: 150px;
    margin-right: 0;
  }
  .business-details-header {
    padding-top: 40px;
    padding-left: 150px;
  }
  .business-details-header-title-wrapper {
    padding: 3em 4.2em 3em 3em;
  }
  .business-details-header-title {
    font-size: 6.4rem;
  }
  .business-details-header-thumbnails-grad {
    margin: -5% auto 0;
    width: 55%;
  }
  .business-details-header-thumbnails-bg {
    margin-top: -10%;
    margin-left: auto;
    width: 70%;
  }
  .business-details-catch {
    font-size: 3.8rem;
  }
  .business-details-block {
    padding-left: 60px;
  }
  .business-details-block-title {
    font-size: 3.2rem;
  }
  .business-details-content {
    padding: 80px 40px 80px 0;
  }
  .business-details-major-item {
    font-size: 1.5rem;
  }
  .business-details-block-flowbox {
    padding: 24px 20px 20px;
  }
  .business-details-block-flowbox ul {
    gap: 0 12px;
  }
  .business-details-block-flowbox li .name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .business-details-section {
    margin: 40px 0 120px;
    overflow: initial;
  }
  .business-details-header {
    margin-right: 0;
    padding-top: 24px;
    padding-left: 0;
    flex: 80px 0 0;
  }
  .business-details-header-title-wrapper {
    margin-right: 0;
    margin-bottom: 1px;
    padding: 1.4em 2.7em 1.4em 1.7em;
  }
  .business-details-header-title {
    font-size: 2.2rem;
  }
  .business-details-body {
    margin-top: 12px;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
  }
  .business-details-header-thumbnails-wrapper {
    padding-top: 8px;
    padding-left: 8px;
    margin: 0 -20px 40px auto;
    width: calc((100% - 20px) * 345 / 374);
  }
  .business-details-catch {
    font-size: 2.2rem;
  }
  .business-details-subcatch {
    font-size: 2.6rem;
  }
  .business-details-description {
    font-size: 1.4rem;
  }
  .business-details-content {
    margin-top: 60px;
    padding: 60px 24px 40px 0;
  }
  .business-details-block {
    padding-left: 24px;
  }
  .business-details-content-heading {
    font-size: 1.8rem;
  }
  .business-details-block-title {
    font-size: 2.4rem;
  }
  .business-details-block-title::before {
    width: 24px;
  }
  .business-details-block-description {
    margin-top: 2em;
    font-size: 1.4rem;
  }
  .business-details-major-list {
    flex-wrap: wrap;
    position: relative;
    margin: 40px auto 0;
    width: 69.9386503067%;
  }
  .business-details-major-item {
    width: 56.0964912281%;
    margin-left: 0;
    font-size: min(1.5rem, (100vw - 40px - 80px - 20px + 18px - 40px) * 15 / 252);
  }
  .business-details-major-item:not(:first-child):nth-child(odd) {
    margin-left: -6.1%;
  }
  .business-details-major-item:not(:first-child):nth-child(even) {
    margin-right: -6.1%;
  }
  .business-details-major-item.first {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
    width: 20.5521472393%;
    font-size: min(1.3rem, (100vw - 40px - 80px - 20px + 18px - 40px) * 13 / 252);
  }
  .business-details-major-item:nth-child(n+4) {
    margin-top: -10%;
  }
  .business-details-block-table-title {
    font-size: 1.8rem;
  }
  .business-details-block-table-content dl {
    display: block;
  }
  .business-details-block-table-content dt {
    display: block;
    padding: 0 0 8px;
    width: auto;
    font-size: 1.6rem;
  }
  .business-details-block-table-content dd {
    border-left: 0;
    border-top: 1px solid white;
    padding: 0.5em 0 0 1em;
    font-size: 1.5rem;
  }
  .business-details-block-table-content dl:nth-child(n+2) {
    border-top: 0;
  }
  .business-details-block-flowbox ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .business-details-block-flowbox li:not(:first-child) {
    margin-top: 0.5em;
  }
  .business-details-block-flowbox li .arrow svg {
    max-width: 154px;
    height: auto;
  }
}
/* ===================================================
	事業内容の紹介ページ：特殊車両ページ
==================================================== */
.special-vehicles-details-section {
  margin: 60px 0 0;
}
.special-vehicles-details-block {
  padding-top: 60px;
  background: top 0% left calc((100vw - 960px) / 2 + 230px)/892px 523px url(./assets/img/bg-special-vehicles-car.webp) no-repeat;
}
.special-vehicles-details-block:not(:first-child) {
  margin-top: 20px;
}
.special-vehicles-details-block-number {
  font: 700 11rem/1.2 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
}
.special-vehicles-details-block-title {
  font: 900 4.6rem/1 "Zen Old Mincho", serif;
  display: flex;
  align-items: flex-end;
  gap: 0 0.8em;
}
.special-vehicles-details-block-title br {
  display: none;
}
.special-vehicles-details-block-title .text {
  flex-shrink: 0;
}
.special-vehicles-details-block-title::after {
  content: "";
  display: block;
  margin-bottom: 0.45em;
  width: 100%;
  height: 3px;
  background-color: black;
}
.special-vehicles-details-block-body {
  position: relative;
  border-right: 3px solid black;
  margin-top: -1.4em;
  padding: calc(1.4em + 32px) 60px 60px 0;
  display: flex;
  align-items: center;
  gap: 0 65px;
}
.special-vehicles-details-block-body::before, .special-vehicles-details-block-body::after {
  content: "";
  position: absolute;
  background-color: black;
  left: 50px;
  bottom: 0;
  z-index: 1;
}
.special-vehicles-details-block-body::before {
  width: 3px;
  height: 50%;
}
.special-vehicles-details-block-body::after {
  right: 30px;
  height: 3px;
}
.special-vehicles-details-block-image {
  width: 425px;
  flex-shrink: 0;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}
.special-vehicles-details-block-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  height: 30px;
  background-color: white;
}
.special-vehicles-details-block-image img {
  width: 100%;
}
.special-vehicles-details-block-description {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.83;
}
.special-vehicles-details-option {
  margin-top: 44px;
}
.special-vehicles-details-option-item {
  display: grid;
  grid-template-columns: 309px 1fr;
  gap: 0 40px;
}
.special-vehicles-details-option-item:not(:first-child) {
  margin-top: 20px;
}
.special-vehicles-details-option-item-image img {
  width: 100%;
}
.special-vehicles-details-option-item-text {
  padding: 18px 0;
}
.special-vehicles-details-option-item-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
  position: relative;
}
.special-vehicles-details-option-item-title::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0.65em;
  width: 34.5px;
  height: 4px;
  background-color: var(--base-color-yellow);
}
.special-vehicles-details-option-item-description {
  margin-top: 0.6em;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 1339px) {
  .special-vehicles-details-block-number {
    font-size: 8rem;
  }
  .special-vehicles-details-block-title {
    font-size: 3.2rem;
  }
  .special-vehicles-details-block-body {
    margin-top: -1em;
    padding: calc(1.4em + 20px) 32px 32px 60px;
    display: block;
  }
  .special-vehicles-details-block-body::before, .special-vehicles-details-block-body::after {
    left: 28px;
  }
  .special-vehicles-details-block-image {
    margin-left: -60px;
    width: auto;
  }
  .special-vehicles-details-block-text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .special-vehicles-details-block {
    padding: 0;
    background: none;
  }
  .special-vehicles-details-block:not(:first-child) {
    margin-top: 40px;
  }
  .special-vehicles-details-block-number {
    font-size: 5.6rem;
  }
  .special-vehicles-details-block-description {
    font-size: 1.6rem;
  }
  .special-vehicles-details-block-body {
    margin-top: -1em;
    padding: calc(1.4em + 12px) 20px 20px 32px;
    display: block;
  }
  .special-vehicles-details-block-body::before, .special-vehicles-details-block-body::after {
    left: 12px;
  }
  .special-vehicles-details-block-image {
    margin-left: -32px;
    padding-bottom: 30px;
    background-color: white;
  }
  .special-vehicles-details-block-image::after {
    content: none;
  }
  .special-vehicles-details-block-text {
    margin-top: 0;
  }
  .special-vehicles-details-block-title {
    font-size: 2.4rem;
    line-height: 1.25;
  }
  .special-vehicles-details-block-title::after {
    margin-bottom: 0.5em;
  }
  .special-vehicles-details-block-title br {
    display: inline;
  }
  .special-vehicles-details-option-item {
    display: block;
  }
  .special-vehicles-details-option-item:not(:first-child) {
    margin-top: 3em;
  }
  .special-vehicles-details-option-item-title {
    margin-left: 1.6em;
    font-size: 1.8rem;
  }
  .special-vehicles-details-option-item-title::before {
    left: -1.6em;
    width: 1em;
    height: 3px;
  }
  .special-vehicles-details-option-item-text {
    margin-top: 1em;
    padding: 0;
  }
}
/* ===================================================
	事業内容の紹介ページ：関連記事
==================================================== */
.related-posts-section {
  margin: 120px 0;
}
.related-posts-content {
  margin-top: 36px;
}
.related-posts-archive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}
.related-posts-archive-item {
  position: relative;
}
.related-posts-archive-item img {
  width: 100%;
}
.related-posts-archive-item-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .related-posts-archive-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ===================================================
	事業内容の紹介ページ：事業内容一覧冒頭
==================================================== */
/* ===================================================
	お知らせ：ループアーカイブアイテム
==================================================== */
.news-archive-articles-section {
  margin: 0 0 120px;
}
.news-archive-list {
  display: flex;
  flex-direction: column;
}
.news-archive-item {
  border-top: 1px solid #dbdbdb;
  padding: 2.6em 0;
}
.news-archive-item:last-child {
  border-bottom: 1px solid #dbdbdb;
}
.news-archive-item-header {
  font-size: 1.6rem;
  display: flex;
  gap: 0 1.2em;
  line-height: 1;
}
.news-archive-item-header .category {
  position: relative;
  font-weight: 700;
}
.news-archive-item-header .category::before {
  content: "";
  position: absolute;
  left: -0.55em;
  top: 0;
  width: 1px;
  height: 1em;
  background-color: black;
}
.news-archive-item-title {
  margin-top: 0.2em;
  font: 900 2.6rem/1.5 "Zen Old Mincho", serif;
  text-decoration: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-archive-item-arrow {
  position: absolute;
  top: 50%;
  right: 0;
}
.news-archive-item-link .news-archive-item-arrow {
  transform: translateY(-50%);
}
.news-archive-item-link {
  display: block;
  position: relative;
  padding-right: 3em;
  transition: opacity 300ms;
}
.news-archive-item-link:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1339px) {
  .news-archive-articles-section {
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .news-archive-item {
    padding: 1.6em 0;
  }
  .news-archive-item-header {
    font-size: 1.4rem;
  }
  .news-archive-item-title {
    margin-top: 0.5em;
    font-size: 1.5rem;
  }
}
/* ===================================================
	お知らせ：詳細ページ
==================================================== */
.post-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 960px;
}
.post-info {
  font-size: 1.6rem;
  line-height: 1.8;
}
.post-info .category {
  font-weight: 700;
}
.post-info .category:hover {
  text-decoration: underline;
}
.post-title {
  margin: 0.3em 0 0;
  font: 900 3.6rem/1.4 "Zen Old Mincho", serif;
}
.post-body {
  margin: 90px 0 0;
  padding: 0 60px 90px;
  letter-spacing: 0.08em;
}
.post-body .toc_list {
  border: 3px solid black;
  padding: 1.5em 1.5em;
  font: 900 2.2rem/1.4 "Zen Old Mincho", serif;
}
.post-body .toc_list li:not(:first-child) {
  margin-top: 0.6em;
}
.post-body .toc_list .toc_number::after {
  content: ".";
}
.post-body .toc_list a:hover {
  text-decoration: underline;
}
.post-body .wp-block-heading {
  margin-bottom: 1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.post-body .wp-block-image {
  margin-right: -60px;
  margin-left: -60px;
}
.post-body .aligncenter {
  text-align: center;
}
.post-body .wp-block-image .wp-element-caption {
  font-size: 81.25%;
}
.post-body h2, .post-body h3 {
  padding-left: 0.6em;
  position: relative;
}
.post-body h2 {
  font-size: 2.4rem;
}
.post-body h3 {
  font-size: 1.8rem;
}
.post-body h2::before, .post-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  height: 1em;
  background-color: black;
}
.post-body h2::before {
  width: 3px;
}
.post-body h3::before {
  width: 2px;
}
.post-body > * {
  margin-bottom: 2em;
}
.post-body > *:last-child {
  margin-bottom: 0 !important;
}
.post-body .wp-block-list {
  border: 1px solid black;
  padding: 1.5em 1.4em;
}
.post-body .wp-block-list li {
  padding-left: 1em;
  position: relative;
}
.post-body .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.post-body .wp-block-quote {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-left: 74px;
  position: relative;
}
.post-body .wp-block-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.1em;
  font-weight: 400;
  font-size: 11.4rem;
  line-height: 1;
  opacity: 0.09;
}
.post-footer {
  margin-bottom: 150px;
}
.post-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-pagination-to-archive {
  margin: 0 2em;
  padding: 0 0.5em;
}
.post-pagination-to-archive:hover {
  text-decoration: underline;
}
.post-pagination-button {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.post-pagination-button .text {
  padding: 0 0.5em;
}
.post-pagination-button:not([href]) {
  opacity: 0;
  visibility: hidden;
}
.post-pagination-button[href] {
  transition: opacity 300ms;
}
.post-pagination-button[href]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1339px) {
  .post-body {
    margin: 80px 0 0;
    padding: 0 40px 80px;
  }
  .post-footer {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .post-info {
    font-size: 1.4rem;
  }
  .post-title {
    font-size: 2.2rem;
  }
  .post-body {
    margin: 40px 0 0;
    padding: 0 20px 80px;
  }
  .post-body .toc_list {
    border: 3px solid black;
    padding: 0.75em 1em;
    font-size: 1.8rem;
  }
  .post-body h2 {
    font-size: 2.2rem;
  }
  .post-body .wp-block-image {
    margin-right: -40px;
    margin-left: -40px;
  }
  .post-body .wp-block-quote {
    padding-left: 44px;
  }
  .post-body .wp-block-quote::before {
    font-size: 9rem;
  }
  .post-footer {
    margin-bottom: 0;
  }
  .post-container {
    padding: 0;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	採用情報ページ：社員インタビュー
==================================================== */
.recruit-staff-interview-section {
  margin: 140px 0 0;
}
.recruit-staff-interview-content {
  margin-top: 56px;
}
.recruit-staff-interview-banner {
  position: relative;
}
.recruit-staff-interview-banner img {
  width: 100%;
}
.recruit-staff-interview-link {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(40%);
}

@media screen and (max-width: 767px) {
  .recruit-staff-interview-section {
    margin: 80px 0 0;
  }
  .recruit-staff-interview-content {
    margin-top: 40px;
  }
}
/* ===================================================
	採用情報ページ：人を大切に、未来を築く、トムコで働く５つの価値。
==================================================== */
.recruit-fv-section {
  margin: 84px 0 60px;
}
.recruit-fv-container {
  display: flex;
  align-items: flex-end;
}
.recruit-fv-left, .recruit-fv-right {
  flex: 50%;
}
.recruit-fv-catch {
  width: 100%;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
}
.recruit-fv-catch-text {
  padding-top: 1.8em;
  font: 900 5rem/1.5 "Zen Old Mincho", serif;
  text-indent: -1.8em;
}
.recruit-fv-left-image-wrapper {
  width: 314px;
}
.recruit-fv-left-image-wrapper img {
  width: 100%;
}
.recruit-fv-right-image, .recruit-fv-right-image-wrapper, .recruit-fv-right-image-wrapper img {
  width: 100%;
}
.recruit-fv-message {
  margin-top: 56px;
}
.recruit-fv-message-text {
  font-size: 2.2rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .recruit-fv-section {
    margin: 60px 0;
  }
  .recruit-fv-container {
    display: block;
  }
  .recruit-fv-catch-text {
    font-size: min(3.2rem, (100vw - 40px) * 32 / 374);
    white-space: nowrap;
  }
  .recruit-fv-left {
    position: relative;
  }
  .recruit-fv-catch {
    align-items: flex-start;
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 1;
    width: auto;
    display: block;
  }
  .recruit-fv-right {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
  .recruit-fv-message {
    margin-top: 0;
  }
  .recruit-fv-message-text {
    font-size: min(1.5rem, (100vw - 40px) * 15 / 374);
  }
  .recruit-fv-left-image-wrapper, .recruit-fv-right-image-wrapper {
    width: 63.3689839572%;
  }
}
/* ===================================================
	採用情報ページ：スライド5枚
==================================================== */
.recruit-points-section {
  margin: 120px 0 168px;
  overflow: hidden;
}
.recruit-points-slider-wrapper {
  opacity: 0;
  transition: opacity 300ms;
}
.recruit-points-slider-wrapper.is-visible {
  opacity: 1;
}
.recruit-points-slider-item-number {
  position: relative;
  z-index: 1;
  padding-left: 48px;
  font: 900 9.1rem/1 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
}
.recruit-points-slider-item-number .point {
  writing-mode: vertical-rl;
  font-size: 29.6703296703%;
}
.recruit-points-slider-item-content {
  display: flex;
  flex-direction: column;
  margin-top: -3.9215686275%;
  padding: 60px 80px 40px 48px;
  background: center/cover no-repeat;
  color: white;
  position: relative;
  aspect-ratio: 765/471;
}
.recruit-points-slider-item-title {
  font: 900 4.1rem/1.3 "Zen Old Mincho", serif;
}
.recruit-points-slider-item-description {
  margin-top: auto;
  font: 400 1.8rem/1.7 "Roboto", sans-serif;
  min-height: 6.8em;
}
.recruit-points-slider-item::after {
  content: "";
  display: block;
  position: relative;
  z-index: -1;
  width: 68.8888888889%;
  height: auto;
  aspect-ratio: 527/68;
  margin-top: -3.9215686275%;
  margin-left: 9.1503267974%;
  background-image: linear-gradient(90deg, var(--base-color-blue) 0%, transparent 100%);
  opacity: 0.49;
}

@media screen and (max-width: 1339px) {
  .recruit-points-slider-item {
    container-type: inline-size;
    width: 85%;
  }
  .recruit-points-slider-item:not(:last-child) {
    margin-right: 5%;
  }
  .recruit-points-slider-item-number {
    padding-left: 0.7em;
    font-size: 11.6279069767cqi;
  }
  .recruit-points-slider-item-content {
    padding: 8.2079343365% 6.8399452804% 6.8399452804% 8.2079343365%;
  }
  .recruit-points-slider-item-title {
    font-size: 4.7879616963cqi;
  }
  .recruit-points-slider-item-description {
    font-size: 2.9069767442cqi;
  }
}
@media screen and (max-width: 767px) {
  .recruit-points-section {
    margin: 80px -20px;
    padding: 0 20px;
  }
  .recruit-points-slider-item-title {
    margin-bottom: 1em;
    font-size: 6.1559507524cqi;
    min-height: 3.9em;
  }
  .recruit-points-slider-item-content {
    aspect-ratio: 4/3;
  }
  .recruit-points-slider-item-description {
    font-size: 3.7619699042cqi;
    min-height: 8.5em;
  }
}
/* ===================================================
	採用情報ページ：数字が支えるトムコ
==================================================== */
.recruit-features-section {
  margin: 168px 0 0;
}
.recruit-features-content {
  margin-top: 52px;
  margin-right: -60px;
  container-type: inline-size;
}
.recruit-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: black;
  padding: 0.2941176471cqi;
  gap: 0.2941176471cqi;
}
.recruit-features-item {
  background-clip: content-box;
  background-color: white;
  position: relative;
  container-type: inline-size;
  aspect-ratio: calc(336 * var(--span-size) + 3 * var(--span-size) - 3)/336;
  --span-size: 1;
  --grid-item-width: calc(336 * var(--span-size) + 3);
}
.recruit-features-item.item01 {
  order: 1;
}
.recruit-features-item.item02 {
  order: 2;
}
.recruit-features-item.item03 {
  order: 3;
}
.recruit-features-item.item04 {
  order: 4;
}
.recruit-features-item.item05 {
  order: 5;
}
.recruit-features-item.item06 {
  order: 6;
}
.recruit-features-item.item07 {
  order: 7;
}
.recruit-features-item.item08 {
  order: 8;
}
.recruit-features-item.item09 {
  order: 9;
}
.recruit-features-item.item10 {
  order: 10;
}
.recruit-features-item.item11 {
  order: 11;
}
.recruit-features-item.item12 {
  order: 12;
}
.recruit-features-item.item13 {
  order: 13;
}
.recruit-features-item.item14 {
  order: 14;
}
.recruit-features-item.item15 {
  order: 15;
}
.recruit-features-item.item16 {
  order: 16;
}
.recruit-features-item.item17 {
  order: 17;
}
.recruit-features-item:not(:nth-child(3n+1)) {
  padding-left: 0;
}
.recruit-features-item:not(:nth-child(-n+3)) {
  padding-top: 0;
}
.recruit-features-item:not(:has(.image)) {
  position: relative;
}
.recruit-features-item .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-features-item-label {
  position: absolute;
  top: calc(-2000cqb / var(--grid-item-width));
  left: calc(1000cqb / var(--grid-item-width));
  z-index: 1;
  display: block;
  writing-mode: vertical-rl;
  background-color: var(--base-color-blue);
  padding: 0.4em 0;
  font-weight: 700;
  font-size: calc(2200cqb / var(--grid-item-width));
  letter-spacing: 0.1em;
  color: white;
}
.recruit-features-item-label::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  border-style: solid;
  border-width: calc(1800cqb / var(--grid-item-width)) 0 0 calc(950cqb / var(--grid-item-width));
  border-color: transparent #bc9e34;
}
.recruit-features-item-bg, .recruit-features-item-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.recruit-features-item-bg {
  z-index: 0;
}
.recruit-features-item-bg svg {
  width: 100%;
  height: 100%;
}
.recruit-features-item-content {
  padding: calc(2400cqi / var(--grid-item-width)) calc(2400cqi / var(--grid-item-width)) calc(3200cqi / var(--grid-item-width));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}
.recruit-features-item-number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  line-height: 1;
}
.recruit-features-item-description {
  font-weight: 400;
  line-height: 1.5;
  font-size: calc(1600cqi / var(--grid-item-width));
}
.recruit-features-item-attention {
  position: absolute;
  right: 1em;
  bottom: 0.75em;
  font-weight: 400;
  line-height: 1.5;
  font-size: calc(1300cqi / var(--grid-item-width));
  text-align: right;
  color: #333;
}
.recruit-features-item.item01 .recruit-features-item-number {
  margin: auto 0 1.2em;
  text-align: center;
  font-size: calc(7000cqi / var(--grid-item-width));
  letter-spacing: -0.05em;
}
.recruit-features-item.item01 .unit {
  font-size: 35.7142857143%;
}
.recruit-features-item.item02 .recruit-features-item-number {
  margin: auto 0 0.6em;
  padding-right: 1em;
  text-align: center;
  font-size: calc(7000cqi / var(--grid-item-width));
}
.recruit-features-item.item02 .unit {
  font-size: 35.7142857143%;
}
.recruit-features-item.item05 .recruit-features-item-number {
  margin: auto 0 0.35em;
  text-align: center;
  font-size: calc(11000cqi / var(--grid-item-width));
}
.recruit-features-item.item05 .unit {
  font-size: 22.7272727273%;
}
.recruit-features-item.item06 .recruit-features-item-number {
  margin: auto 0 0.35em;
  padding-right: 0.15em;
  text-align: right;
  font-size: calc(10000cqi / var(--grid-item-width));
}
.recruit-features-item.item06 .unit {
  font-size: 25%;
}
.recruit-features-item.item07 .recruit-features-item-number {
  margin: auto 0 0.5em;
  padding-right: 0.8em;
  text-align: right;
  font-size: calc(4700cqi / var(--grid-item-width));
}
.recruit-features-item.item07 .unit {
  font-size: 44.6808510638%;
}
.recruit-features-item.item09 .recruit-features-item-number {
  margin: auto 0 0.85em;
  text-align: center;
  font-size: calc(8000cqi / var(--grid-item-width));
}
.recruit-features-item.item09 .unit {
  font-size: 31.25%;
}
.recruit-features-item.item10 {
  grid-column: span 2;
}
.recruit-features-item.item10 .recruit-features-item-description {
  font-size: calc(1600cqi / var(--grid-item-width));
}
.recruit-features-item.item10 .unit {
  font-size: 31.25%;
}
.recruit-features-item.item11 .recruit-features-item-number {
  margin: auto 0 0.25em;
  font-size: calc(9000cqi / var(--grid-item-width));
  text-align: center;
}
.recruit-features-item.item11 .unit {
  font-size: 27.7777777778%;
}
.recruit-features-item.item12 .recruit-features-item-number {
  margin: auto 0 0.2em;
  padding-left: 0.1em;
  font-size: calc(11000cqi / var(--grid-item-width));
  text-align: center;
}
.recruit-features-item.item12 .unit {
  font-size: 22.7272727273%;
}
.recruit-features-item.item14 .recruit-features-item-number {
  margin: auto 0 0.23em;
  padding-right: 0.8em;
  font-size: calc(7000cqi / var(--grid-item-width));
  text-align: right;
}
.recruit-features-item.item14 .unit {
  font-size: 35.7142857143%;
}
.recruit-features-item.item16 .recruit-features-item-number {
  margin: auto 0 0.45em;
  font-size: calc(9000cqi / var(--grid-item-width));
  text-align: center;
}
.recruit-features-item.item16 .unit {
  font-size: 27.7777777778%;
}
.recruit-features-item.item17 .recruit-features-item-number {
  margin: auto 0 0.45em;
  padding-left: 0.4em;
  font-size: calc(12000cqi / var(--grid-item-width));
  text-align: center;
  letter-spacing: 0.1em;
}
.recruit-features-item.item17 .unit {
  font-size: 20.8333333333%;
}

@media screen and (max-width: 1410px) {
  .recruit-features-content {
    margin-right: -20px;
  }
}
@media screen and (max-width: 1339px) {
  .recruit-features-content {
    margin-right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-features-section {
    margin: 80px 0 0;
  }
  .recruit-features-content {
    margin-right: -20px;
  }
  .recruit-features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.2941176471cqi;
    gap: 0.2941176471cqi;
  }
  .recruit-features-item.item02 {
    order: 4;
  }
  .recruit-features-item.item03 {
    order: 2;
  }
  .recruit-features-item.item04 {
    order: 3;
  }
  .recruit-features-item.item09 {
    order: 10;
  }
  .recruit-features-item.item10 {
    order: 9;
  }
  .recruit-features-item.item14 {
    order: 15;
  }
  .recruit-features-item.item15 {
    order: 14;
  }
}
/* ===================================================
	採用情報ページ：代表メッセージ
==================================================== */
.recruit-message-section {
  margin: 132px 0 0;
}
.recruit-message-content {
  margin-top: 40px;
}
.recruit-message-description {
  font-size: 2.8rem;
  line-height: 1.8;
}
.recruit-message-youtube-block {
  margin-top: 40px;
}
.recruit-message-youtube-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
}
.recruit-message-youtube-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-message-section {
    margin: 80px 0 0;
  }
  .recruit-message-description {
    font-size: 2rem;
  }
}
/* ===================================================
	採用情報ページ：採用おしらせセクション
    - 採用情報
    - 社員インタビュー一覧、詳細
==================================================== */
.recruitment-news-section {
  margin: 100px 0 210px;
}
.recruitment-news-content {
  margin-top: 60px;
}
.recruitment-news-link {
  margin-top: 46px;
}

@media screen and (max-width: 1339px) {
  .recruitment-news-section {
    margin: 100px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-news-section {
    margin: 80px 0 0;
  }
  .recruitment-news-content {
    margin-top: 40px;
  }
}
/* ===================================================
	採用情報中途・新卒ページ共通：冒頭メッセージ
==================================================== */
.career-message-section {
  margin: 120px 0 172px;
  overflow: hidden;
}
.career-message-section.coming-soon {
  margin-bottom: 740px;
}
.career-message-content {
  margin-right: -80px;
}
.career-message-title {
  font: 700 8rem/1.3 "Zen Old Mincho", serif;
  position: relative;
  z-index: 1;
}
.career-message-entitle {
  margin-top: -0.55em;
  margin-bottom: 50px;
  font: 900 9rem/1.2 "Zen Old Mincho", serif;
  color: var(--base-color-yellow);
  white-space: nowrap;
}
.career-message-entitle br {
  display: none;
}
.career-message-container {
  display: grid;
  grid-template-columns: 1fr 485px;
  gap: 40px;
}
.career-message-image {
  position: relative;
  z-index: 1;
}
.career-message-image img {
  width: 100%;
}
.career-message-image-grad {
  position: relative;
  z-index: 2;
  margin: -7.6288659794% 0 -7.6288659794% 21.2371134021%;
  width: 137.7319587629%;
  height: auto;
  aspect-ratio: 668/74;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}
.career-message-image-bg {
  margin: -17.3195876289% 0 0 -7.0103092784%;
  width: 135.2577319588%;
  height: auto;
  aspect-ratio: 656/153;
  background-image: linear-gradient(90deg, #000097 0%, #000031 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
.career-message-description {
  font-size: 2.2rem;
  line-height: 1.9;
}
.career-message-footer {
  margin-top: 72px;
}

@media screen and (max-width: 1339px) {
  .career-message-section {
    margin: 80px calc(-1 * (100vw - var(--scrollbar-offset) - 100%) / 2) 160px;
  }
  .career-message-section .container-sub {
    max-width: 688px;
  }
  .career-message-section.coming-soon {
    margin-bottom: 320px;
  }
  .career-message-content {
    margin-right: 0;
  }
  .career-message-title {
    font-size: 6.4rem;
  }
  .career-message-entitle {
    font-size: 7rem;
  }
  .career-message-entitle br {
    display: inline;
  }
  .career-message-container {
    display: block;
  }
  .career-message-image-wrapper {
    margin-top: 60px;
    width: 80%;
  }
  .career-message-text-wrapper {
    padding-right: 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .career-message-section {
    margin: 60px 0 82px;
  }
  .career-message-section.coming-soon {
    margin-bottom: 220px;
  }
  .career-message-title {
    font-size: min(2.8rem, (100vw - 40px) * 28 / 374);
  }
  .career-message-entitle {
    font-size: min(3.6rem, (100vw - 40px) * 36 / 374);
  }
  .career-message-description {
    font-size: 1.5rem;
  }
  .career-message-image-wrapper {
    margin-top: 40px;
    width: 80%;
  }
  .career-message-footer {
    margin-top: 40px;
  }
}
/* ===================================================
	採用情報中途・新卒ページ共通：求める人材
==================================================== */
.career-ideal-candidate-section {
  margin: 172px 0 112px;
}
.career-ideal-candidate-content {
  margin-top: 50px;
}
.career-ideal-candidate-block {
  aspect-ratio: 957/393;
  background: center/cover no-repeat;
  color: white;
}
.career-ideal-candidate-block-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.career-ideal-candidate-block-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 29px;
  font: 900 2rem/1.5 "Zen Old Mincho", serif;
  letter-spacing: -0.05em;
}
.career-ideal-candidate-block-list li {
  writing-mode: vertical-rl;
  position: relative;
  padding: 1.6em 1em;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: white;
}
.career-ideal-candidate-block-list li::before, .career-ideal-candidate-block-list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: white;
  top: 0;
  right: 0;
}
.career-ideal-candidate-block-list li::before {
  width: calc(100% - 16px);
  height: 3px;
}
.career-ideal-candidate-block-list li::after {
  width: 3px;
  height: calc(100% - 16px);
}

@media screen and (max-width: 1339px) {
  .career-ideal-candidate-section {
    margin: 160px 0 100px;
  }
  .career-ideal-candidate-block-list {
    gap: 0 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .career-ideal-candidate-section {
    margin: 80px 0;
  }
  .career-ideal-candidate-content {
    margin-top: 40px;
  }
  .career-ideal-candidate-block {
    aspect-ratio: initial;
  }
  .career-ideal-candidate-block-inner {
    padding: 40px 0;
  }
  .career-ideal-candidate-block-list {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    font-size: 1.6rem;
  }
  .career-ideal-candidate-block-list li {
    writing-mode: initial;
    padding: 1em 1.6em;
    border-width: 0 0 3px 3px;
  }
}
/* ===================================================
	採用情報中途・新卒ページ共通：採用までの流れ
==================================================== */
.career-flow-section {
  margin: 128px 0 132px;
}
.career-flow-content {
  margin-top: 45px;
}
.career-flow-list-block {
  padding: 60px 60px 60px 32px;
  background-color: #f3f3ff;
}
.career-flow-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.career-flow-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  padding: 15px 0 15px 80px;
  min-height: 90px;
  position: relative;
}
.career-flow-item::before {
  content: attr(data-number);
  position: absolute;
  left: 45px;
  top: 42%;
  transform: translate(-50%, -50%);
  font: 700 9rem/1 "Zen Old Mincho", serif;
  color: #e0e0f7;
}
.career-flow-item:not(:first-child)::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 45px;
  transform: translateX(-50%);
  width: 3px;
  height: 50px;
  background-color: #e0e0f7;
}
.career-flow-item-header, .career-flow-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-flow-item:not(:first-child) .career-flow-item-header::before, .career-flow-item:not(:last-child) .career-flow-item-header::after {
  content: "";
  position: absolute;
  left: 45px;
  width: 10px;
  height: auto;
  aspect-ratio: 10/7.25;
  border-radius: 50%;
  background-color: #e0e0f7;
}
.career-flow-item-header::before {
  top: 0;
  transform: translate(-50%, -50%);
}
.career-flow-item-header::after {
  bottom: 0;
  transform: translate(-50%, 50%);
}
.career-flow-item-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
.career-flow-item-description {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}
.career-flow-item-attention {
  margin-top: 1em;
  font-weight: 400;
  font-size: 1.4rem;
}
.career-flow-footer {
  margin-top: 24px;
}
.career-flow-footer .career-recruitment-archive-link-button {
  grid-column: 2/3;
}

@media screen and (max-width: 1339px) {
  .career-flow-list-block {
    padding: 60px 32px;
  }
  .career-flow-item {
    display: block;
    min-height: auto;
    padding-left: 100px;
  }
  .career-flow-item-title {
    font-size: 2.4rem;
  }
  .career-flow-item-title br {
    display: none;
  }
  .career-flow-item-body {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .career-flow-section {
    margin: 80px 0;
  }
  .career-flow-content {
    margin-top: 28px;
  }
  .career-flow-list-block {
    padding: 12px 20px;
  }
  .career-flow-item {
    padding: 24px 0 24px 40px;
  }
  .career-flow-item::before {
    left: 12px;
    top: 36px;
    font-size: 5.4rem;
  }
  .career-flow-item-title {
    font-size: 1.8rem;
  }
}
/* ===================================================
	採用情報中途ページ：募集要項セクション
==================================================== */
.midcareer-contents-section {
  margin: 120px 0 0;
}
.midcareer-contents-footer {
  margin-top: 20px;
}

/* ===================================================
	採用情報中途・新卒ページ共通：募集要項
==================================================== */
.career-recruitment-section {
  margin: 132px 0 200px;
}
.career-recruitment-content {
  margin-top: 72px;
}
.career-recruitment-content-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.career-recruitment-content-item {
  position: relative;
}
.career-recruitment-content-header {
  margin-left: -12px;
  position: relative;
}
.career-recruitment-content-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-style: solid;
  border-width: 20px 0 0 15px;
  border-color: #666 transparent;
}
.career-recruitment-content-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: black;
  color: white;
}
.career-recruitment-content-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}
.career-recruitment-content-body {
  margin-top: -34px;
  padding-top: 34px;
  position: relative;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: black;
  background-color: white;
}
.career-recruitment-content-columns {
  display: grid;
  grid-template-columns: 340px 1fr;
}
.career-recruitment-content-body::before, .career-recruitment-content-body::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: black;
}
.career-recruitment-content-body::before {
  top: 0;
  left: 0;
  width: calc(100% - 28px);
  height: 3px;
}
.career-recruitment-content-body::after {
  top: 0;
  right: 0;
  width: 3px;
  height: calc(100% - 28px);
}
.career-recruitment-content-image {
  aspect-ratio: 339/205.2;
}
.career-recruitment-content-image:not(:has(img)) {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-recruitment-content-image:not(:has(img))::before {
  content: "サムネイル";
  color: white;
  font-size: 2.2rem;
}
.career-recruitment-content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.career-recruitment-content-text {
  padding: 12px 30px 24px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-recruitment-content-columns .career-recruitment-content-text {
  padding-top: 0;
  padding-bottom: 0;
}
.career-recruitment-content-excerpt-list {
  display: grid;
  grid-template-columns: 114px 1fr;
  padding: 1.5em 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.midcareer-contents-section .career-recruitment-content-excerpt-list {
  grid-template-columns: 144px 1fr;
}
.career-recruitment-content-columns .career-recruitment-content-excerpt-list {
  padding: 1em 0;
}
.career-recruitment-content-excerpt-list:not(:first-child) {
  border-top: 1px dashed black;
}
.career-recruitment-content-excerpt-title {
  font-weight: 700;
}
.career-recruitment-content-excerpt-description {
  font-weight: 400;
}
.career-recruitment-content-footer {
  margin-top: 24px;
}
.career-recruitment-content-link-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.career-recruitment-content-link-button {
  display: grid;
  grid-template-columns: 1fr 64px;
}
.career-recruitment-content-link-button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  font: 700 2.2rem/1.2 "Zen Old Mincho", serif;
}
.career-recruitment-content-link-button .link-button {
  width: 100%;
}

@media screen and (max-width: 1339px) {
  .career-recruitment-content-columns {
    grid-template-columns: 280px 1fr;
  }
  .career-recruitment-content-text {
    padding: 8px 20px 12px;
  }
  .midcareer-contents-section .career-recruitment-content-excerpt-list {
    grid-template-columns: 132px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .career-recruitment-section {
    margin: 80px 0 100px;
  }
  .career-recruitment-content {
    margin-top: 28px;
  }
  .career-recruitment-content-list {
    gap: 40px;
  }
  .career-recruitment-content-columns {
    grid-template-columns: 1fr;
  }
  .career-recruitment-content-link-container {
    gap: 8px;
  }
  .career-recruitment-content-link-button {
    grid-template-columns: 1fr 48px;
  }
  .career-recruitment-content-link-button-text {
    font-size: 1.4rem;
  }
  .career-recruitment-content-label {
    padding: 0.6em 0.8em;
  }
  .career-recruitment-content-header {
    margin-left: -8px;
  }
  .career-recruitment-content-header::before {
    border-width: 16px 0 0 12px;
  }
  .career-recruitment-content-title {
    font-size: 1.6rem;
  }
  .career-recruitment-content-body {
    margin-top: -24px;
    padding-top: 24px;
    grid-template-columns: 1fr;
    border-width: 3px;
  }
  .career-recruitment-content-body::before, .career-recruitment-content-body::after {
    content: none;
  }
  .career-recruitment-content-text {
    padding: 0 20px 12px;
    order: -1;
  }
  .career-recruitment-content-text {
    padding: 8px 20px 12px;
  }
  .career-recruitment-content-image:not(:has(img))::before {
    font-size: 1.6rem;
  }
  .career-recruitment-content-excerpt-list {
    padding: 1em 0;
    grid-template-columns: 1fr;
    gap: 0.25em;
    font-size: 1.5rem;
  }
  .midcareer-contents-section .career-recruitment-content-excerpt-list {
    grid-template-columns: 1fr;
  }
  .career-recruitment-content-excerpt-title br {
    display: none;
  }
  .career-recruitment-content-footer {
    margin-top: 8px;
  }
}
/* ===================================================
	採用情報中途・新卒ページ共通：募集要項記事一覧（中途採用）
==================================================== */
/* ===================================================
	採用情報中途・新卒ページ共通：募集要項記事一覧（新卒採用）
==================================================== */
.newgrad-recruitment-archive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.newgrad-recruitment-archive-header {
  margin-left: -12px;
  position: relative;
}
.newgrad-recruitment-archive-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-style: solid;
  border-width: 20px 0 0 15px;
  border-color: #666 transparent;
}
.newgrad-recruitment-archive-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: black;
  color: white;
}
.newgrad-recruitment-archive-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}
.newgrad-recruitment-archive-body {
  margin-top: -34px;
  padding: 64px 120px 36px 42px;
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: black;
  background-color: white;
  position: relative;
}
.newgrad-recruitment-archive-body::before, .newgrad-recruitment-archive-body::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: black;
}
.newgrad-recruitment-archive-body::before {
  top: 0;
  left: 0;
  width: calc(100% - 28px);
  height: 3px;
}
.newgrad-recruitment-archive-body::after {
  top: 0;
  right: 0;
  width: 3px;
  height: calc(100% - 28px);
}
.newgrad-recruitment-archive-excerpt-list {
  padding: 1.5em 0;
  display: grid;
  grid-template-columns: 144px 1fr;
  font-size: 1.6rem;
}
.newgrad-recruitment-archive-excerpt-list:first-child {
  padding-top: 0;
}
.newgrad-recruitment-archive-excerpt-list:last-child {
  padding-bottom: 0;
}
.newgrad-recruitment-archive-excerpt-list:not(:first-child) {
  border-top: 1px dashed black;
}
.newgrad-recruitment-archive-excerpt-title {
  font-weight: 700;
}
.newgrad-recruitment-archive-excerpt-description {
  font-weight: 400;
}
.newgrad-recruitment-archive-footer {
  margin-top: 24px;
}
.newgrad-recruitment-archive-footer .career-recruitment-archive-link-button {
  grid-column: 2/3;
}

@media screen and (max-width: 767px) {
  .newgrad-recruitment-archive-header {
    margin-left: -8px;
  }
  .newgrad-recruitment-archive-header::before {
    border-width: 16px 0 0 12px;
  }
  .newgrad-recruitment-archive-label {
    padding: 0.6em 0.8em;
  }
  .newgrad-recruitment-archive-title {
    font-size: 1.6rem;
  }
  .newgrad-recruitment-archive-body {
    margin-top: -24px;
    padding: 46px 20px 20px;
    border-width: 3px;
  }
  .newgrad-recruitment-archive-body::before, .newgrad-recruitment-archive-body::after {
    content: none;
  }
  .newgrad-recruitment-archive-excerpt-list {
    padding: 1em 0;
    font-size: 1.5rem;
    display: block;
  }
  .newgrad-recruitment-archive-footer {
    margin-top: 8px;
  }
}
/* ===================================================
	採用情報中途・新卒ページ共通：中途採用詳細ページ
==================================================== */
.midcareer-single-section {
  margin: 120px 0 108px;
}
.midcareer-single-title {
  font: 700 4.2rem/1.4 "Zen Old Mincho", serif;
}
.midcareer-single-label-wrapper {
  margin-top: 24px;
  margin-bottom: 40px;
}
.midcareer-single-label {
  position: relative;
  display: inline-block;
  margin-left: -10px;
  padding: 0.6em 1.2em;
  background-color: black;
  color: white;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}
.midcareer-single-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-style: solid;
  border-color: #666 transparent;
  border-width: 12px 0 0 10px;
}
.midcareer-single-container {
  display: grid;
  grid-template-columns: 1fr 415px;
  gap: 86px;
}
.midcareer-single-image {
  position: relative;
  z-index: 1;
}
.midcareer-single-image img {
  width: 100%;
}
.midcareer-single-image-grad {
  position: relative;
  z-index: 2;
  margin: -6.9879518072% 6.7469879518% 0 auto;
  width: 79.0361445783%;
  height: auto;
  aspect-ratio: 328/52;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}
.midcareer-single-image-bg {
  margin: -13.2530120482% 0 0 -8.9156626506%;
  width: 108.9156626506%;
  height: auto;
  aspect-ratio: 452/105;
  background-image: linear-gradient(90deg, #000097 0%, #000031 100%);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
}
.midcareer-single-description {
  font-size: 2.2rem;
  line-height: 1.9;
}
.midcareer-single-footer {
  margin-top: 72px;
}
.midcareer-single-body {
  max-width: 453px;
  line-height: 1.7;
}
.midcareer-single-body > *:not(:last-child) {
  margin-bottom: 1.7em;
}
.midcareer-single-body h2, .midcareer-single-body h3, .midcareer-single-body h4, .midcareer-single-body h5, .midcareer-single-body h6 {
  font-size: 1.8rem;
}

@media screen and (max-width: 1339px) {
  .midcareer-single-title {
    font-size: 3.2rem;
  }
  .midcareer-single-container {
    display: block;
  }
  .midcareer-single-image-wrapper {
    margin-top: 60px;
    margin-left: auto;
    width: 90%;
  }
  .midcareer-single-body {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .midcareer-single-section {
    margin: 60px 0;
  }
  .midcareer-single-image-wrapper {
    margin-top: 40px;
    width: auto;
  }
  .midcareer-single-image-bg {
    margin-left: 0;
    width: auto;
  }
  .midcareer-single-title {
    font-size: 2rem;
  }
  .midcareer-single-label {
    font-size: 1.8rem;
  }
  .midcareer-single-body h2, .midcareer-single-body h3, .midcareer-single-body h4, .midcareer-single-body h5, .midcareer-single-body h6 {
    font-size: 1.6rem;
  }
}
/* ===================================================
	社員インタビューページ：記事一覧セクション
==================================================== */
.staff-interview-archive-section {
  margin: 140px 0 100px;
}
.staff-interview-archive-item {
  display: flex;
  position: relative;
}
.staff-interview-archive-item:not(:first-child) {
  margin-top: 80px;
}
.staff-interview-archive-item-text-wrap {
  flex: auto;
}
.staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-image-wrap {
  order: -1;
}
.staff-interview-archive-item-image-wrap {
  flex: 486px 0 0;
  position: relative;
}
.staff-interview-archive-item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 486/556;
}
.staff-interview-archive-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.staff-interview-archive-item-image-bg {
  width: 93.0041152263%;
  height: auto;
  aspect-ratio: 452/74;
  margin-left: auto;
  background-color: var(--base-color-blue);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
.staff-interview-archive-item-image-grad {
  position: relative;
  z-index: 1;
  margin: -7.4074074074% auto;
  width: 63.7860082305%;
  height: auto;
  aspect-ratio: 310/72;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}
.staff-interview-archive-item-image-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.staff-interview-archive-item-text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
.staff-interview-archive-item-department {
  margin-bottom: 0.2em;
  font: 900 1.8rem/1.2 "Zen Old Mincho", serif;
}
.staff-interview-archive-item-title {
  font: 900 5rem/1.2 "Zen Old Mincho", serif;
  letter-spacing: -0.1em;
}
.staff-interview-archive-item-position {
  margin-top: 0.5em;
  font: 900 4rem/1.2 "Zen Old Mincho", serif;
}
.staff-interview-archive-item-name-en {
  position: absolute;
  right: 100%;
  top: 0;
  z-index: -1;
  font: 900 11rem/0.9 "Zen Old Mincho", serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--base-color-yellow);
  text-stroke: 1px var(--base-color-yellow);
  writing-mode: vertical-rl;
  letter-spacing: -0.04em;
}
.staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-image-wrap {
  position: initial;
}
.staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-name-en {
  right: 0;
}
.staff-interview-archive-item-excerpt {
  position: relative;
  margin-top: 0.5em;
  padding: 2em 1em 1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
.staff-interview-archive-item-excerpt::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  font: 400 11.4rem/1 "Zen Old Mincho", serif;
  opacity: 0.09;
}

@media screen and (max-width: 1339px) {
  .staff-interview-archive-item {
    flex-direction: column-reverse;
  }
  .staff-interview-archive-item:not(:first-child) {
    margin-top: 180px;
  }
  .staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-image-wrap {
    order: initial;
  }
  .staff-interview-archive-item-image-button {
    position: static;
    order: -1;
    text-align: right;
  }
  .staff-interview-archive-item-image-button .link-button {
    display: inline-block;
  }
  .staff-interview-archive-item-text-wrap {
    margin-top: 40px;
    margin-left: 30%;
    padding: 0;
  }
  .staff-interview-archive-item-image-wrap {
    margin-left: 30%;
  }
  .staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-image-wrap {
    position: relative;
  }
  .staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-name-en {
    right: 100%;
  }
}
@media screen and (max-width: 767px) {
  .staff-interview-archive-section {
    margin: 60px 0 100px;
  }
  .staff-interview-archive-item:not(:first-child) {
    margin-top: 60px;
  }
  .staff-interview-archive-item-text-wrap {
    margin-top: 20px;
    margin-left: 0;
  }
  .staff-interview-archive-item-department {
    text-align: right;
  }
  .staff-interview-archive-item-title {
    font-size: 3.6rem;
    text-align: right;
  }
  .staff-interview-archive-item-position {
    font-size: 2.4rem;
    text-align: right;
  }
  .staff-interview-archive-item-excerpt {
    font-size: 1.4rem;
  }
  .staff-interview-archive-item-excerpt::before {
    font-size: 8rem;
  }
  .staff-interview-archive-item-name-en {
    font-size: calc((100vw - 40px) * 58 / 374);
  }
  .staff-interview-archive-item-image-wrap {
    margin-top: 20px;
    margin-left: 30%;
    pointer-events: initial;
    flex-basis: auto;
  }
  .staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-image-wrap {
    position: relative;
  }
  .staff-interview-archive-item:nth-child(even) .staff-interview-archive-item-name-en {
    right: 100%;
  }
}
/* ===================================================
	社員インタビューページ：詳細ページ本文
==================================================== */
.post-staff-header {
  margin: 190px 0 0;
}
.post-staff-header-image-wrapper {
  position: relative;
}
.post-staff-header-image img {
  width: 100%;
  height: auto;
}
.post-staff-header-image-grad {
  position: relative;
  z-index: 1;
  margin: -4.8958333333% 10.4166666667% -5% auto;
  width: 43.125%;
  height: auto;
  aspect-ratio: 414/95;
  background-image: linear-gradient(90deg, var(--base-color-yellow) 0%, transparent 100%);
  opacity: 0.49;
}
.post-staff-header-image-bg {
  width: 62.9166666667%;
  height: auto;
  aspect-ratio: 604/83;
  margin-left: auto;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  background-color: var(--base-color-blue);
}
.post-staff-header-text-wrapper {
  position: relative;
  margin-top: 42px;
  padding-left: calc(100% - 604px);
  padding-right: 180px;
}
.post-staff-department {
  margin-bottom: 0.2em;
  font: 900 1.8rem/1.2 "Zen Old Mincho", serif;
}
.post-staff-title {
  font: 900 5rem/1.2 "Zen Old Mincho", serif;
  letter-spacing: -0.1em;
}
.post-staff-position {
  margin-top: 0.6em;
  font: 900 4rem/1.2 "Zen Old Mincho", serif;
}
.post-staff-name-en {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font: 900 11rem/0.9 "Zen Old Mincho", serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--base-color-yellow);
  text-stroke: 1px var(--base-color-yellow);
  writing-mode: vertical-rl;
  text-align: right;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.post-staff-excerpt {
  position: relative;
  margin-top: 0.5em;
  padding: 2em 1.6em 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
.post-staff-excerpt::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  font: 400 11.4rem/1 "Zen Old Mincho", serif;
  opacity: 0.09;
}
.post-staff-body {
  margin: 0 auto 100px;
  padding: 88px 80px 0;
}
.post-staff-body .wp-block-embed-youtube + #toc_container {
  margin-top: 88px;
}
.post-staff-body .wp-block-embed-youtube {
  margin-right: -80px;
  margin-left: -80px;
}
.post-staff-body .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.post-staff-body .wp-block-embed-youtube iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.post-staff-body .aligncenter {
  text-align: center;
}
.post-staff-body .wp-block-image .wp-element-caption {
  font-size: 81.25%;
}
.post-staff-body h2 {
  padding-left: 0.6em;
  font-size: 2.4rem;
  position: relative;
}
.post-staff-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  height: 1em;
  width: 3px;
  background-color: black;
}
.post-staff-body > * {
  margin-bottom: 2em;
}
.post-staff-body > *:last-child {
  margin-bottom: 0 !important;
}
.post-staff-body .toc_list {
  border: 3px solid black;
  padding: 0.4em 1.5em;
  font: 900 2.2rem/1.4 "Zen Old Mincho", serif;
  position: relative;
}
.post-staff-body .toc_list::before, .post-staff-body .toc_list::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: white;
  width: 34px;
  height: 3px;
}
.post-staff-body .toc_list::before {
  left: 0;
  top: -3px;
  height: 3px;
}
.post-staff-body .toc_list::after {
  right: -3px;
  bottom: -3px;
  height: auto;
  aspect-ratio: 1/1;
}
.post-staff-body .toc_list li {
  padding: 0.6em 0;
}
.post-staff-body .toc_list li:not(:first-child) {
  border-top: 1px dashed rgba(1, 1, 253, 0.25);
}
.post-staff-body .toc_list .toc_number::after {
  content: ".";
}
.post-staff-body .toc_list a:hover {
  text-decoration: underline;
}
.post-staff-body .wp-block-heading {
  margin-bottom: 1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.post-staff-body .wp-block-list {
  border: 1px solid black;
  padding: 1.5em 1.4em;
}
.post-staff-body .wp-block-list li {
  padding-left: 1em;
  position: relative;
}
.post-staff-body .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.post-staff-body .wp-block-quote {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-left: 74px;
  position: relative;
}
.post-staff-body .wp-block-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.1em;
  font-weight: 400;
  font-size: 11.4rem;
  line-height: 1;
  opacity: 0.09;
}

@media screen and (max-width: 1339px) {
  .post-staff-header {
    margin: 120px 0 0;
  }
  .post-staff-header-text-wrapper {
    margin-top: 42px;
    padding-left: 220px;
    padding-right: 0;
  }
  .post-staff-body {
    margin: 0 auto 100px;
    padding: 88px 60px 0;
  }
  .post-staff-body .wp-block-embed-youtube {
    margin-right: -60px;
    margin-left: -60px;
  }
}
@media screen and (max-width: 767px) {
  .post-staff-header-image-wrapper {
    margin: 0 -20px;
  }
  .post-staff-header-image-grad {
    margin: -4.8309178744% 0 -4.8309178744% auto;
    width: 60.38647343%;
    aspect-ratio: 250/40;
  }
  .post-staff-header-image-bg {
    width: 68%;
  }
  .post-staff-header {
    margin: 60px 0 0;
  }
  .post-staff-header-text-wrapper {
    margin-top: calc((100vw - 40px) * 42 / 374);
    padding-left: calc((100vw - 40px) * 110 / 374);
  }
  .post-staff-department {
    font-size: calc((100vw - 40px) * 16 / 374);
  }
  .post-staff-title {
    font-size: calc((100vw - 40px) * 36 / 374);
  }
  .post-staff-name-en {
    font-size: calc((100vw - 40px) * 58 / 374);
  }
  .post-staff-position {
    font-size: calc((100vw - 40px) * 24 / 374);
  }
  .post-staff-excerpt {
    font-size: calc((100vw - 40px) * 14 / 374);
  }
  .post-staff-excerpt::before {
    font-size: 500%;
  }
  .post-staff-body {
    margin: 0 auto 60px;
    padding: 40px 20px 0;
  }
  .post-staff-body .wp-block-embed-youtube + #toc_container {
    margin-top: 40px;
  }
  .post-staff-body .wp-block-embed-youtube {
    margin-right: -40px;
    margin-left: -40px;
  }
  .post-staff-body .toc_list {
    border: 3px solid black;
    padding: 0.75em 1em;
    font-size: 1.5rem;
  }
  .post-staff-body .toc_list::before, .post-staff-body .toc_list::after {
    width: 20px;
  }
  .post-staff-body h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .post-staff-body h2::before {
    top: 0.3em;
  }
  .post-staff-body .wp-block-image {
    margin-right: -40px;
    margin-left: -40px;
  }
  .post-staff-body .wp-block-quote {
    padding-left: 44px;
  }
  .post-staff-body .wp-block-quote::before {
    font-size: 9rem;
  }
}
/* ===================================================
	社員インタビューページ：トムコの1日
==================================================== */
.staff-day-flow-section {
  margin: 100px 0 0;
}
.staff-day-flow-content {
  margin-top: 48px;
}
.staff-day-flow-block {
  padding: 60px 72px;
  background: center center/cover no-repeat;
  color: white;
}
.staff-day-flow-list {
  overflow: hidden;
}
.staff-day-flow-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0 60px;
}
.staff-day-flow-item:not(:last-child) {
  position: relative;
  padding-bottom: 48px;
}
.staff-day-flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 1em;
  z-index: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
}
.staff-day-flow-item-time {
  font: 700 3rem/1.2 "Noto Serif JP", serif;
  text-align: right;
}
.staff-day-flow-item-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.7;
  color: var(--base-color-yellow);
}
.staff-day-flow-item-description {
  margin-top: 1.5em;
  line-height: 1.6;
}
.staff-day-flow-item-text {
  position: relative;
}
.staff-day-flow-item-text::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 0.8em;
  z-index: 1;
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
}
.staff-day-flow-item:first-child .staff-day-flow-item-text::before, .staff-day-flow-item:last-child .staff-day-flow-item-text::before {
  background-color: var(--base-color-yellow);
}
.staff-day-flow-comment-wrapper:has(.staff-day-flow-comment-image) {
  display: grid;
  grid-template-columns: 230px 1fr;
}
.staff-day-flow-comment-image {
  height: auto;
  aspect-ratio: 1/1;
}
.staff-day-flow-comment-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-day-flow-comment-text {
  padding: 60px 42px 42px 30px;
  background-color: #ecebf6;
}
.staff-day-flow-comment {
  padding-left: 26px;
  line-height: 1.8;
  position: relative;
}
.staff-day-flow-comment::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-weight: 400;
  font-size: 11.4rem;
  line-height: 1;
  opacity: 0.09;
}

@media screen and (max-width: 1339px) {
  .staff-day-flow-block {
    padding: 48px 48px;
  }
  .staff-day-flow-comment-text {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .staff-day-flow-section {
    margin: 60px 0 0;
  }
  .staff-day-flow-block {
    padding: 28px 20px 32px;
  }
  .staff-day-flow-item {
    grid-template-columns: 58px 1fr;
    gap: 0 40px;
  }
  .staff-day-flow-item:not(:last-child) {
    padding-bottom: 24px;
  }
  .staff-day-flow-item:not(:last-child)::before {
    left: 76px;
  }
  .staff-day-flow-item-text::before {
    top: 0.7em;
    left: -25px;
    width: 10px;
  }
  .staff-day-flow-item-time {
    font-size: 2rem;
  }
  .staff-day-flow-item-title {
    font-size: 1.6rem;
  }
  .staff-day-flow-item-description {
    margin-top: 1em;
    font-size: 1.3rem;
  }
  .staff-day-flow-comment-wrapper {
    background-color: #ecebf6;
  }
  .staff-day-flow-comment-wrapper:has(.staff-day-flow-comment-image) {
    display: block;
  }
  .staff-day-flow-comment-image {
    padding: 40px 40px 0;
  }
  .staff-day-flow-comment-text {
    padding: 32px 20px 24px;
  }
  .staff-day-flow-comment::before {
    font-size: 600%;
  }
}
/* ===================================================
	テスト
==================================================== */
/* ===================================================
	お問い合わせページ：採用ページへ
==================================================== */
.contact-recruit-description {
  font: 700 2.6rem/1.4 "Zen Old Mincho", serif;
}
.contact-recruit-link-button {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 3px solid black;
}
.contact-recruit-link-button .text {
  font: 700 1.9rem/1 "Zen Old Mincho", serif;
}
.contact-recruit-link-button .link-button {
  width: 54px;
}

@media screen and (max-width: 767px) {
  .contact-recruit-description {
    font-size: 2rem;
  }
  .contact-recruit-link {
    margin-top: 20px;
  }
  .contact-recruit-link-button {
    width: auto;
  }
}
/* ===================================================
	お問い合わせページ：WEBから（お電話で直接）お問い合わせ
==================================================== */
.contact-web-section {
  margin: 100px 0 0;
}
.contact-web-content {
  margin-top: 36px;
}
.contact-phone-section {
  margin: 110px 0 0;
}
.contact-phone-content {
  margin-top: 36px;
}
.contact-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.contact-card-item {
  border: 3px solid black;
  min-height: 162px;
  background-color: white;
  padding: 29px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact-card-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 24px;
  height: 3px;
  background-color: white;
}
.contact-card-item-title {
  margin-bottom: auto;
  font: 900 2.2rem/1.1 "Zen Old Mincho", serif;
}
.contact-card-item-locations-nationwide {
  margin-top: 2em;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--base-color-blue);
}
.contact-card-item-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contact-card-item-arrow .link-button {
  transform: rotate(90deg);
  width: 54px;
}
.contact-card-item-tel, .contact-card-item-fax {
  display: flex;
  align-items: center;
  gap: 0 0.4em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.contact-card-item-tel {
  margin-top: 0.75em;
  font-size: 2.6rem;
}
.contact-card-item-fax {
  margin-top: 0.4em;
  font-size: 2.2rem;
}

@media screen and (max-width: 1339px) {
  .contact-card-list {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card-item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-card-list {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card-item {
    padding: min(12px, (100vw - 40px) * 12 / 374);
    min-height: 140px;
  }
  .contact-card-item:has(.link-button) {
    padding-bottom: 50px;
  }
  .contact-card-item-title {
    font-size: min(1.8rem, (100vw - 40px) * 18 / 374);
  }
  .contact-card-item .link-button {
    width: 42px;
  }
  .contact-card-item::before {
    top: -5px;
    width: min(20px, (100vw - 40px) * 20 / 374);
    height: 5px;
  }
  .contact-card-item-locations-nationwide {
    margin-top: 1em;
    font-size: min(1.4rem, (100vw - 40px) * 14 / 374);
  }
  .contact-card-item-tel {
    font-size: min(1.8rem, (100vw - 40px) * 18 / 374);
  }
  .contact-card-item-fax {
    font-size: min(1.7rem, (100vw - 40px) * 17 / 374);
  }
  .contact-card-item-tel img, .contact-card-item-fax img {
    width: min(16px, (100vw - 40px) * 16 / 374);
  }
}
/* ===================================================
	お問い合わせページ：フォーム周辺
==================================================== */
.contact-form-section {
  margin: 120px 0 180px;
}
.contact-form-attention {
  text-align: right;
  color: red;
  font-weight: 500;
  font-size: 1.6rem;
}
.contact-form-item-list {
  display: grid;
  gap: 44px 40px;
  grid-template-columns: repeat(2, 1fr);
}
.contact-form-item-list .item1 {
  order: 1;
}
.contact-form-item-list .your-content {
  grid-column: span 2;
}
.contact-form-item-list .your-industry {
  grid-column: 1;
  grid-row: 1;
}
.contact-form-item-list .your-company {
  grid-column: 1;
  grid-row: 2;
}
.contact-form-item-list .your-position {
  grid-column: 2;
  grid-row: 2;
}
.contact-form-item-list .your-name {
  grid-column: 1;
  grid-row: 3;
}
.contact-form-item-list .your-email {
  grid-column: 1;
  grid-row: 4;
}
.contact-form-item-list .your-email-confirm {
  grid-column: 2;
  grid-row: 4;
}
.contact-form-item-list .your-tel {
  grid-column: 1;
  grid-row: 5;
}
.contact-form-item-list .your-content {
  grid-column: span 2;
  grid-row: 6;
}
.contact-form-item-list .your-preferred-time {
  grid-column: 1;
  grid-row: 7;
}
.contact-form-item-list .your-privacy-policy {
  grid-column: span 2;
  grid-row: 8;
}
.contact-form-item-list .submit {
  grid-column: span 2;
  grid-row: 9;
}
.contact-form-item label[for] {
  display: inline-block;
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
.contact-form-item label .required {
  font-weight: 900;
  font-size: 1.6rem;
  color: red;
}
.contact-form-item textarea {
  min-height: 318px;
}
.contact-form-item .wpcf7-list-item {
  margin: 0;
}
.contact-form-item-checkbox-wrap label {
  display: flex;
  align-items: center;
  gap: 0 0.75em;
}
.contact-form-item-privacy-policy-link {
  font-size: 1.6rem;
}
.contact-form-item-privacy-policy-link a {
  text-decoration: underline;
}
.contact-form-item-privacy-policy-link a:hover {
  text-decoration: none;
}
.contact-form-item-submit-button {
  display: flex;
}
.contact-form-item-submit-button-wrap {
  padding: 0.78em 1.95em;
  border: 3px solid black;
  background-color: white;
  color: inherit;
  font-weight: 500;
  font-family: inherit;
  font-size: 2.4rem;
  position: relative;
}
.contact-form-item-submit-button-wrap::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 0;
  width: 3px;
  height: 28px;
  background-color: white;
}
@media screen and (max-width: 1339px) {
  .contact-form-section {
    margin: 120px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-item-list {
    margin-top: 12px;
    display: block;
  }
  .contact-form-item:not(:first-child) {
    margin-top: 2em;
  }
  .contact-form-item label[for] {
    margin-bottom: 0.5em;
  }
  .contact-form-item-checkbox-wrap {
    margin-top: 1em;
  }
  .contact-form-item-submit-button-wrap {
    display: flex;
    align-items: center;
    padding: 0 2em;
    height: 72px;
    font-size: 1.8rem;
  }
  .contact-form-item.submit {
    margin-top: 4em;
  }
}
/* ===================================================
	お問い合わせ完了ページ
==================================================== */
.form-thanks-section {
  margin: 0 0 440px;
}
.form-thanks-main {
  font: 700 2.6rem/1.4 "Zen Old Mincho", serif;
}
.form-thanks-description {
  margin-top: 3em;
  letter-spacing: 0.08em;
}
.form-thanks-attention {
  margin-top: 2em;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
.form-thanks-attention a {
  text-decoration: underline;
}
.form-thanks-attention a:hover {
  text-decoration: none;
}
.form-thanks-link {
  margin-top: 2.6em;
}

@media screen and (max-width: 1339px) {
  .form-thanks-section {
    margin: 0 0 240px;
  }
}
@media screen and (max-width: 1339px) and (hover: none) and (pointer: coarse) {
  .form-thanks-attention a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .form-thanks-section {
    margin: 0 0 120px;
  }
  .form-thanks-main {
    font-size: 2rem;
  }
}
/* ===================================================
	お問い合わせページ：
==================================================== */
/* ===================================================
	お問い合わせページ：
==================================================== */
/* ===================================================
	法律ページ：本文（個人情報保護基本方針など）
==================================================== */
.legal-body {
  margin: 0 auto;
  padding-bottom: 170px;
  max-width: 768px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
}
.legal-body > *:not(:last-child) {
  margin-bottom: 1.6em;
}
.legal-body h2 {
  font-weight: 700;
  font-size: 2.2rem;
}
.legal-body h2:nth-child(n+2) {
  margin-top: 2.5em;
}
.legal-body ul li, .legal-body ol li {
  padding-left: 1.25em;
  position: relative;
}
.legal-body ul li::before, .legal-body ol li::before {
  position: absolute;
  left: 0.25em;
  top: 0;
}
.legal-body ul li::before {
  content: "・";
}
.legal-body ol {
  counter-reset: legal-ol-counter;
}
.legal-body ol li {
  counter-increment: legal-ol-counter;
}
.legal-body ol li::before {
  content: counter(legal-ol-counter) ".";
}
@media screen and (max-width: 1339px) {
  .legal-body {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .legal-body {
    font-size: unset;
  }
  .legal-body h2 {
    font-size: 1.8rem;
  }
}
/* ===================================================
	404
==================================================== */
.notfound-section {
  margin: 0 0 330px;
}
.notfound-title {
  font-weight: 700;
  font-size: 6.8rem;
}
.notfound-description {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}
.notfound-link {
  margin-top: 52px;
}

@media screen and (max-width: 1339px) {
  .notfound-section {
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .notfound-section {
    margin: 0 0 60px;
  }
  .notfound-title {
    font-size: 3.2rem;
  }
  .notfound-description {
    font-size: 1.6rem;
  }
}
/* ===================================================
	テスト
==================================================== */