@charset "UTF-8";
/*
 * 基本設計について
 * このプロジェクトは、基本的にPCファーストで設計されています。
 * 詳細は、_global/_breakpoints.scssを参照してください。
 */
/*
 * リセットCSSについて
 * ブラウザのデフォルトスタイルをリセットします。
 */
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*
 * フォントについて
 * フォントの定義を行います。
 */
/*
 * 変数について
 * プロジェクト全体で使用される変数を定義します。
 */
:root {
  --font-size__base: 16;
  --font-family__base: "Noto Sans JP", sans-serif;
  --font-family__inter: "Inter", sans-serif;
  --font-family__work: "Work Sans", sans-serif;
  --font-family__nunito: "Nunito Sans", sans-serif;
  --max-width__base: 1920;
  --width__contents: 1431;
  --space-inline__base: 25;
  --space__section--base: 60;
  --width__breakpoint: calc(var(--width__contents) + (var(--space-inline__base) * 2));
  --js-height__header: 113px;
  --js-height__header-sp: 74px;
  --color__text: #222;
  --color__black: #000;
  --color__white: #fff;
  --color__white-2: #e3e6ea;
  --color__white-bg: #f2f4f6;
  --color__gray: #e6e6e6;
  --color__gray-2: #f2f4f5;
  --color__gray-3: #999;
  --color__blue: #417dd5;
  --color__blue-2: #50bfec;
  --color__green: #3bb68a;
  --color__green-2: #80d4d4;
  --color__green-3: #109fb9;
  --color__dark-green: #2b4949;
  --color__dark-green-2: #152323;
  --color__dark-green-3: #2c5d65;
  --color__dark-green-4: #192420;
  --color__green-4: #32d0c6;
  --color__red: #f83837;
  --color__red-2: #f86737;
  --color__main: #667eea;
  --color__main-light: #f0f4ff;
  --color__sub: #ffab00;
  --color__sub-light: #ffd740;
  --color__accent: #f093fb;
  --color__accent-light: #fef7ff;
  --color__red-liner-gradient: linear-gradient(
    -75deg,
    var(--color__red-2) 0%,
    var(--color__red) 100%
  );
  --color__blue-liner-gradient: linear-gradient(
    -75deg,
    var(--color__blue-2) 0%,
    var(--color__blue) 100%
  );
  --color__green-liner-gradient: linear-gradient(
    -75deg,
    var(--color__green) 0%,
    var(--color__blue-2) 100%
  );
  --color__green-2-liner-gradient: linear-gradient(
    135deg,
    var(--color__green) 0%,
    var(--color__green-2) 100%
  );
  --color__green-3-liner-gradient: linear-gradient(
    135deg,
    var(--color__green-3) 0%,
    var(--color__green-4) 100%
  );
  --color__dark-green-liner-gradient: linear-gradient(
    -75deg,
    var(--color__dark-green) 0%,
    var(--color__dark-green-2) 100%
  );
  --color__white-liner-gradient: linear-gradient(
    to bottom,
    var(--color__white-2) 0%,
    var(--color__white) 100%
  );
  --color__error: #e53e3e;
  --color__error-light: #fed7d7;
  --color__warning: #dd6b20;
  --color__warning-light: #feebc8;
  --color__success: #38a169;
  --color__success-light: #c6f6d5;
  --color__gray-900: #1a222c;
  --color__gray-600: #090a0c;
  --color__gray-300: #b9bcbf;
  --color__gray-200: #e3e3e3;
  --color__gray-100: #f5f5f5;
  --color__red-f83837: #f83837;
  --color__dark-152323: #152323;
  --color__dark-222222: #222;
  --color__line: #06c755;
  --color__x: #000;
  --color__instagram: #ff0069;
  --color__facebook: #0866ff;
  --color__youtube: #f03;
  --opacity__hover: 0.7;
  --duration__base: 0.3s;
  --radius__base: 26;
}

/*
 * ベースについて
 * 全体の基本的なスタイルを定義します。
 * フォント、色、共通の要素などの基本設定が含まれています。
 */
html {
  --_font-size: var(--font-size__base);
  --_width: var(--width__breakpoint);
  scroll-padding-top: calc(var(--wp-admin--admin-bar--height, 0) + var(--js-height__header, 0));
  font-size: calc(var(--_font-size) * 1px);
}

body {
  font-family: var(--font-family__base);
  color: var(--color__text);
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

img,
svg {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--color__main);
  outline-offset: 2px;
}

#wpadminbar {
  position: fixed !important;
}

/*
 * スクリプトについて
 * JavaScriptと連携するスタイルを定義します。
 * JSで追加されるクラスやアニメーション関連のスタイルが含まれています。
 * クラス名は、js-accordionのように命名します。
 */
.swiper-slide--case {
  aspect-ratio: 400/270;
  width: calc(400 * 1rem / var(--font-size__base));
}

.swiper-horizontal > .swiper-scrollbar.swiper-scrollbar--case,
.swiper-scrollbar.swiper-scrollbar-horizontal.swiper-scrollbar--case {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(3 * 1rem / var(--font-size__base));
  background-color: var(--color__white-2);
  z-index: 1;
}

.swiper-button-next.swiper-button-next--case {
  position: absolute;
  top: calc(-118 * 1rem / var(--font-size__base));
  right: calc(90 * 1rem / var(--font-size__base));
  width: calc(100 * 1rem / var(--font-size__base));
  height: calc(100 * 1rem / var(--font-size__base));
}
.swiper-button-next.swiper-button-next--case::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/common/icon-arrow-right.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-button-prev.swiper-button-prev--case {
  position: absolute;
  top: calc(-118 * 1rem / var(--font-size__base));
  right: calc(240 * 1rem / var(--font-size__base));
  left: unset;
  width: calc(100 * 1rem / var(--font-size__base));
  height: calc(100 * 1rem / var(--font-size__base));
}
.swiper-button-prev.swiper-button-prev--case::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/common/icon-arrow-left.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-scrollbar-drag {
  background-color: var(--color__green-2);
}

.swiper-slide--flow {
  aspect-ratio: 368/492;
  width: calc(368 * 1rem / var(--font-size__base));
}

.swiper-horizontal > .swiper-scrollbar.swiper-scrollbar--flow,
.swiper-scrollbar.swiper-scrollbar-horizontal.swiper-scrollbar--flow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(3 * 1rem / var(--font-size__base));
  background-color: var(--color__white-2);
  z-index: 1;
}

.swiper--history {
  position: relative;
  padding-top: calc(46 * 1rem / var(--font-size__base));
}
.swiper--history::before {
  content: "";
  position: absolute;
  top: calc(4 * 1rem / var(--font-size__base));
  left: 0;
  background-color: var(--color__white-2);
  width: 100%;
  height: calc(3 * 1rem / var(--font-size__base));
  z-index: 1;
}

.swiper-slide--history {
  position: relative;
  aspect-ratio: 336/306;
  width: calc(336 * 1rem / var(--font-size__base));
}
.swiper-slide--history::before {
  content: "";
  position: absolute;
  top: calc(-42 * 1rem / var(--font-size__base));
  left: calc(14 * 1rem / var(--font-size__base));
  background-color: var(--color__blue-2);
  width: calc(1 * 1rem / var(--font-size__base));
  height: calc(43 * 1rem / var(--font-size__base));
  z-index: 1;
}
.swiper-slide--history::after {
  content: "";
  position: absolute;
  top: calc(-46 * 1rem / var(--font-size__base));
  left: calc(8 * 1rem / var(--font-size__base));
  background-color: var(--color__blue-2);
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(12 * 1rem / var(--font-size__base));
  border-radius: 50%;
  z-index: 1;
}

.swiper-button-next.swiper-button-next--history {
  position: absolute;
  top: calc(-176 * 1rem / var(--font-size__base));
  right: unset;
  left: calc(1331 * 1rem / var(--font-size__base));
  width: calc(100 * 1rem / var(--font-size__base));
  height: calc(100 * 1rem / var(--font-size__base));
}
.swiper-button-next.swiper-button-next--history::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/common/icon-arrow-right.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-button-prev.swiper-button-prev--history {
  position: absolute;
  top: calc(-176 * 1rem / var(--font-size__base));
  right: unset;
  left: calc(1185 * 1rem / var(--font-size__base));
  width: calc(100 * 1rem / var(--font-size__base));
  height: calc(100 * 1rem / var(--font-size__base));
}
.swiper-button-prev.swiper-button-prev--history::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/common/icon-arrow-left.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-scrollbar.swiper-scrollbar--history {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(3 * 1rem / var(--font-size__base));
  background-color: var(--color__white-2);
  z-index: 1;
}

.swiper-scrollbar-drag.swiper-scrollbar-drag--history {
  background-color: var(--color__green-2);
}

.swiper-slide--business-flow {
  padding-top: calc(30 * 1rem / var(--font-size__base));
  aspect-ratio: 300/188;
  width: calc(300 * 1rem / var(--font-size__base));
}

.swiper--our-service {
  padding-top: calc(48 * 1rem / var(--font-size__base));
  margin-left: calc(-32 * 1rem / var(--font-size__base));
}

.swiper-slide--our-service {
  aspect-ratio: 400/468;
  width: calc(400 * 1rem / var(--font-size__base));
}

.swiper-scrollbar.swiper-scrollbar--our-service .swiper-scrollbar-drag {
  background-color: var(--color__red);
}

.swiper--business-visual-message {
  position: absolute;
  top: calc(-130 * 1rem / var(--font-size__base));
  transform: rotate(-30deg);
  width: 120%;
  z-index: 0;
  overflow: visible;
}

.swiper-wrapper--business-visual-message {
  transition-timing-function: linear;
  flex-wrap: wrap;
}

.swiper-slide--business-visual-message {
  width: calc(303 * 1rem / var(--font-size__base));
  height: auto;
  flex-shrink: 0;
}

html {
  scrollbar-gutter: stable;
}

html:has(.js-overlay__trigger[aria-expanded=true]) {
  overflow-y: hidden;
}

.js-accordion__panel {
  display: grid;
  grid-template-rows: 0fr; /* 初期状態で高さを0に */
  transition: grid-template-rows var(--duration__base); /* スムーズなアニメーション */
}

.js-accordion__panel > div {
  overflow: hidden; /* 子要素がはみ出ないように */
}

.js-accordion__panel:not([hidden]) {
  grid-template-rows: 1fr; /* 開いた状態では高さを自動調整 */
}

/*
 * レイアウトについて
 * ページの構造を形成するレイアウト要素を定義します。
 * インナー、その他汎用的なレイアウトなどが含まれています。
 * クラス名は、l-innerのように命名します。
 */
.l-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  max-width: calc(1920 * 1rem / var(--font-size__base));
  margin-inline: auto;
  min-height: 100dvh;
}

.l-page__footer {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.l-page__footer--contact {
  margin-top: 0;
}

.l-inner {
  --_max-width: var(--width__contents, 1431);
  --_padding-inline: var(--space-inline__base, 25);
  --_padding-right: var(--_padding-inline);
  --_padding-left: var(--_padding-inline);
  --_padding-inline__total: calc(var(--_padding-right) + var(--_padding-left));
  max-width: calc(var(--_max-width) * 1px + var(--_padding-inline__total) * 1rem / var(--font-size__base));
  margin-inline: auto;
  padding-right: calc(var(--_padding-right) * 1rem / var(--font-size__base));
  padding-left: calc(var(--_padding-left) * 1rem / var(--font-size__base));
}

.l-inner--fluid {
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base) + var(--_padding-inline__total) * 1rem / var(--font-size__base));
}

.l-inner--release-left .l-inner__content {
  margin-left: calc(50% - var(--js-width__viewport) / 2);
  padding-left: calc(var(--js-width__viewport) / 2 - 50%);
}

.l-inner--release-right .l-inner__content {
  margin-right: calc(50% - var(--js-width__viewport) / 2);
  padding-right: calc(var(--js-width__viewport) / 2 - 50%);
}

.l-grid {
  --_max-width: 1200;
  --_min-width__column: 300;
  --_column-gap: 40;
  --_row-gap: 30;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(var(--_min-width__column) * 1px), 1fr));
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
       column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(var(--_row-gap) / var(--_max-width) * 100vw, var(--_row-gap) * 1px);
}

.l-container--sidebar {
  display: grid;
  grid-template-columns: 1fr calc(300 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
}

.l-4-columns {
  --_width__total: 1073;
  --_width__col1: 33;
  --_width__col2: 223;
  --_width__col3: 226;
  --_width__col4: 291;
  --_width__col_total: calc(
    var(--_width__col1) + var(--_width__col2) + var(--_width__col3) + var(--_width__col4)
  );
  display: grid;
  grid-template-columns: calc(var(--_width__col1) / var(--_width__total) * 100%) calc(var(--_width__col2) / var(--_width__total) * 100%) calc(var(--_width__col3) / var(--_width__total) * 100%) calc(var(--_width__col4) / var(--_width__total) * 100%);
  align-items: start;
  -moz-column-gap: calc((var(--_width__total) - var(--_width__col_total)) / 3 / var(--_width__total) * 100%);
       column-gap: calc((var(--_width__total) - var(--_width__col_total)) / 3 / var(--_width__total) * 100%);
}

.l-2-columns {
  --_width__left: 700;
  --_width__right: 450;
  --_column-gap: 50;
  --_width__total: calc(
    var(--_width__left) + var(--_column-gap) + var(--_width__right)
  );
  display: grid;
  grid-template-columns: calc(var(--_width__left) / var(--_width__total) * 100%) calc(var(--_width__right) / var(--_width__total) * 100%);
  -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
       column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
}

.l-2-columns--release-left {
  margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns--release-right {
  margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns--reverse {
  grid-template-columns: calc(var(--_width__right) / var(--_width__total) * 100%) calc(var(--_width__left) / var(--_width__total) * 100%);
}

.l-2-columns--reverse > *:last-child {
  order: -1;
}

.l-2-columns--release-left.l-2-columns--reverse {
  margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  margin-left: auto;
}

.l-2-columns--release-right.l-2-columns--reverse {
  margin-right: auto;
  margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
}

.l-2-columns-pc {
  --_width__left: 700;
  --_width__right: 450;
  --_column-gap: 50;
  --_width__total: calc(
    var(--_width__left) + var(--_column-gap) + var(--_width__right)
  );
}

/*
 * モジュールについて
 * 再利用可能なUIモジュールを定義します。
 * ボタン、フォーム、モーダルなどのモジュールが含まれています。
 * クラス名は、m-buttonのように命名します。
 */
.m-title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
}

.m-thanks {
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}

.m-thanks__wrapper {
  display: grid;
  justify-items: center;
  row-gap: calc(32 * 1rem / var(--font-size__base));
}

.m-thanks__title {
  font-size: calc(32 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-thanks__text {
  font-size: calc(22 * 1rem / var(--font-size__base));
  text-align: center;
}

.m-thanks__button {
  margin-top: calc(40 * 1rem / var(--font-size__base));
}

.m-text-bg {
  display: grid;
}
.m-text-bg img {
  aspect-ratio: 1920/218;
}

.m-sub-mv {
  position: relative;
  padding-top: calc(293 * 1rem / var(--font-size__base));
}
.m-sub-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__white-liner-gradient);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.m-sub-mv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../../assets/images/common/sub-mv_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(921 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 921/549;
  z-index: -1;
}

.m-sub-mv--business {
  padding-top: calc(200 * 1rem / var(--font-size__base));
}
.m-sub-mv--business::after {
  right: calc(13 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/sub-mv_bg_business.webp");
  aspect-ratio: 622/307;
  width: calc(622 * 1rem / var(--font-size__base));
}

.m-single-business-case {
  position: relative;
  overflow-x: clip;
}

.m-single-business-case__wrapper {
  position: relative;
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}
.m-single-business-case__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-single-business-case__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: calc(50 * 1rem / var(--font-size__base));
       column-gap: calc(50 * 1rem / var(--font-size__base));
  max-width: calc(1180 * 1rem / var(--font-size__base));
  margin-inline: auto;
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-single-business-case__card {
  display: grid;
  row-gap: calc(21 * 1rem / var(--font-size__base));
}

.m-single-business-case__card-image {
  display: grid;
}
.m-single-business-case__card-image img {
  aspect-ratio: 360/270;
  -o-object-fit: initial;
     object-fit: initial;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-single-business-case__card-text {
  letter-spacing: 0.08em;
}

.m-section-header {
  display: grid;
  row-gap: calc(8 * 1rem / var(--font-size__base));
}

.m-section-header--center {
  justify-items: center;
}

.m-section-header__subtitle {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.m-section-header__title {
  font-family: var(--font-family__nunito);
  font-size: calc(96 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.m-section-header__title--medium {
  font-size: calc(110 * 1rem / var(--font-size__base));
}

.m-section-header__title--operation-maintenance {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(5 * 1rem / var(--font-size__base));
       column-gap: calc(5 * 1rem / var(--font-size__base));
}

.m-section-header__title--contents {
  font-size: calc(71 * 1rem / var(--font-size__base));
}

.m-section-header__title--contact {
  font-size: calc(71 * 1rem / var(--font-size__base));
}

.m-section-header__title--center {
  text-align: center;
}

.m-section-header__title-image {
  display: grid;
}
.m-section-header__title-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.m-section-header__title-image--recruit img {
  aspect-ratio: 363/121;
  width: calc(363 * 1rem / var(--font-size__base));
}
.m-section-header__title-image--contact img {
  aspect-ratio: 396/121;
  width: calc(396 * 1rem / var(--font-size__base));
}

.m-schedule {
  background-color: #fff;
  padding-top: calc(8 * 1rem / var(--font-size__base));
  padding-bottom: calc(22 * 1rem / var(--font-size__base));
  padding-inline: calc(19 * 1rem / var(--font-size__base));
}

.m-schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-family__mincho);
}

.m-schedule__table tr {
  border-bottom: 1px solid #dbd7cc;
}

.m-schedule__table th,
.m-schedule__table td {
  padding-block: calc(14 * 1rem / var(--font-size__base));
  padding-inline: calc(16 * 1rem / var(--font-size__base));
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.m-schedule__table th {
  background-color: var(--color-bg-light);
  color: var(--color-text-sub);
  font-weight: 500;
}

.m-schedule__table tbody td {
  padding-block: calc(20 * 1rem / var(--font-size__base));
}

.m-schedule__time {
  font-weight: 500;
}

.m-schedule__open {
  font-family: var(--font-family__noto-sans);
  color: var(--color__main);
  font-weight: 700;
}

.m-schedule__closed {
  font-family: var(--font-family__noto-sans);
  color: #dbd7cc;
}

.m-schedule__note {
  font-size: calc(14 * 1rem / var(--font-size__base));
  padding-top: calc(20 * 1rem / var(--font-size__base));
}
.m-recruit-voices {
  padding-top: calc(150 * 1rem / var(--font-size__base));
}

.m-recruit-voices__wrapper {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.m-recruit-voices__list {
  display: grid;
  row-gap: calc(150 * 1rem / var(--font-size__base));
}

.m-recruit-voices__item {
  --_width__left: 437;
  --_width__right: 849;
  --_column-gap: 100;
  align-items: start;
  max-width: calc(1386 * 1rem / var(--font-size__base));
}
.m-recruit-voices__item:nth-child(even) {
  margin-left: auto;
}

.m-recruit-voices__item-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: calc(42 * 1rem / var(--font-size__base));
  border-bottom: calc(2 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-recruit-voices__item-name {
  font-size: calc(24 * 1rem / var(--font-size__base));
  color: var(--color__gray-3);
  letter-spacing: 0.1em;
  padding-bottom: calc(6 * 1rem / var(--font-size__base));
}

.m-recruit-voices__item-body {
  display: grid;
  row-gap: calc(48 * 1rem / var(--font-size__base));
  margin-top: calc(64 * 1rem / var(--font-size__base));
}

.m-recruit-voices__qa {
  display: grid;
  grid-template-columns: calc(32 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(26 * 1rem / var(--font-size__base));
       column-gap: calc(26 * 1rem / var(--font-size__base));
}

.m-recruit-voices__qa-icon {
  font-size: calc(32 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.m-recruit-voices__qa-body {
  display: grid;
  row-gap: calc(26 * 1rem / var(--font-size__base));
}

.m-recruit-voices__qa-question {
  font-size: calc(28 * 1rem / var(--font-size__base));
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.m-recruit-voices__qa-answer {
  letter-spacing: 0.08em;
}

.m-recruit-teamwork {
  padding-top: calc(191 * 1rem / var(--font-size__base));
  overflow-x: clip;
}

.m-recruit-teamwork__title {
  font-size: calc(60 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  background: var(--color__green-2-liner-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.m-recruit-teamwork__description-wrapper {
  margin-top: calc(80 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__description {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-recruit-teamwork__subtitle-wraper {
  position: -webkit-sticky;
  position: sticky;
  top: calc(230 * 1rem / var(--font-size__base));
  padding-block: calc(70 * 1rem / var(--font-size__base));
  margin-top: calc(230 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__subtitle-bg-text {
  position: absolute;
  inset: 0;
  font-size: calc(160 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 600;
  color: rgb(from var(--color__white) r g b/0.7);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  z-index: -1;
}

.m-recruit-teamwork__subtitle {
  font-size: calc(40 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--color__green-liner-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.m-recruit-teamwork__image-wrapper {
  position: relative;
  padding-bottom: calc(1138 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image {
  display: grid;
  position: absolute;
}
.m-recruit-teamwork__image img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}

.m-recruit-teamwork__image--01 {
  top: calc(-282 * 1rem / var(--font-size__base));
  left: calc(20 * 1rem / var(--font-size__base));
}
.m-recruit-teamwork__image--01 img {
  width: calc(468 * 1rem / var(--font-size__base));
  aspect-ratio: 468/510;
}

.m-recruit-teamwork__image--02 {
  top: calc(172 * 1rem / var(--font-size__base));
  right: clamp(50rem, 8rem + 66vw, 86.25rem);
}
.m-recruit-teamwork__image--02 img {
  aspect-ratio: 406/455;
  width: calc(406 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image--03 {
  top: calc(336 * 1rem / var(--font-size__base));
  right: clamp(34.75rem, 8.107rem + 41.63vw, 58.063rem);
}
.m-recruit-teamwork__image--03 img {
  aspect-ratio: 282/311;
  width: calc(282 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image--04 {
  top: calc(740 * 1rem / var(--font-size__base));
  right: clamp(36.875rem, 9.583rem + 56.86vw, 77.813rem);
}
.m-recruit-teamwork__image--04 img {
  aspect-ratio: 306/334;
  width: calc(306 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image--05 {
  top: calc(-530 * 1rem / var(--font-size__base));
  right: calc(clamp(0rem, -1.583rem + 3.3vw, 2.375rem) * -1);
}
.m-recruit-teamwork__image--05 img {
  aspect-ratio: 350/381;
  width: calc(350 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image--06 {
  top: calc(-86 * 1rem / var(--font-size__base));
  left: clamp(28.125rem, 5.042rem + 48.09vw, 62.75rem);
}
.m-recruit-teamwork__image--06 img {
  aspect-ratio: 553/619;
  width: calc(553 * 1rem / var(--font-size__base));
}

.m-recruit-teamwork__image--07 {
  top: calc(656 * 1rem / var(--font-size__base));
  right: calc(clamp(0rem, -1.5rem + 3.13vw, 2.25rem) * -1);
}
.m-recruit-teamwork__image--07 img {
  aspect-ratio: 350/381;
  width: calc(350 * 1rem / var(--font-size__base));
}

.m-recruit-table {
  position: relative;
  padding: calc(70 * 1rem / var(--font-size__base)) calc(80 * 1rem / var(--font-size__base));
}
.m-recruit-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: calc(40 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-recruit-table__row {
  --_width__left: 229;
  --_width__right: 743;
  --_column-gap: 0;
  padding: calc(24 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}
.m-recruit-table__row:first-child {
  border-top: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-recruit-table__label {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.05em;
}

.m-recruit-table__value {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 500;
  letter-spacing: 0.05em;
}

.m-recruit-table__sub-table {
  display: grid;
  row-gap: calc(2 * 1rem / var(--font-size__base));
}

.m-recruit-table__sub-row {
  --_width__left: 180;
  --_width__right: 561;
  --_column-gap: 2;
}

.m-recruit-table__sub-label,
.m-recruit-table__sub-value {
  padding-inline: calc(16 * 1rem / var(--font-size__base));
  padding-block: calc(14 * 1rem / var(--font-size__base));
  background-color: var(--color__gray-2);
}
.m-recruit-table__sub-label:first-child,
.m-recruit-table__sub-value:first-child {
  border-top-left-radius: calc(8 * 1rem / var(--font-size__base));
  border-top-right-radius: calc(8 * 1rem / var(--font-size__base));
}
.m-recruit-table__sub-label:last-child,
.m-recruit-table__sub-value:last-child {
  border-bottom-left-radius: calc(8 * 1rem / var(--font-size__base));
  border-bottom-right-radius: calc(8 * 1rem / var(--font-size__base));
}

.m-recruit-table__sub-label {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__blue);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.m-recruit-table__sub-value {
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.m-recruit-requirements {
  position: relative;
  padding-block: calc(200 * 1rem / var(--font-size__base));
}
.m-recruit-requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-recruit-requirements__wrapper {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-recruit-requirements__content {
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-recruit-requirements__tabs-wrapper {
  display: grid;
  justify-items: center;
}

.m-recruit-requirements__tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  width: 100%;
  max-width: calc(600 * 1rem / var(--font-size__base));
  padding: calc(10 * 1rem / var(--font-size__base));
  border-radius: 9999px;
  background-color: rgb(from var(--color__white) r g b/0.5);
  border: calc(2 * 1rem / var(--font-size__base)) solid var(--color__white);
}

.m-recruit-requirements__tab {
  display: grid;
  align-items: center;
  padding-block: calc(16 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  width: calc(168 * 1rem / var(--font-size__base));
}

.m-recruit-requirements__tab.active {
  grid-template-columns: auto calc(37 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(24 * 1rem / var(--font-size__base));
       column-gap: calc(24 * 1rem / var(--font-size__base));
  color: var(--color__white);
  width: auto;
  border-radius: 9999px;
  background: var(--color__green-3-liner-gradient);
  padding-block: calc(14 * 1rem / var(--font-size__base));
  padding-left: calc(48 * 1rem / var(--font-size__base));
  padding-right: calc(18 * 1rem / var(--font-size__base));
}
.m-recruit-requirements__tab.active .m-recruit-requirements__tab-icon {
  display: grid;
}

.m-recruit-requirements__tab-icon {
  display: none;
}

.m-recruit-jobs {
  position: relative;
  padding-top: calc(200 * 1rem / var(--font-size__base));
  padding-bottom: calc(150 * 1rem / var(--font-size__base));
}
.m-recruit-jobs::before {
  content: "";
  position: absolute;
  top: 31.95%;
  right: 0;
  background-image: url("../../assets/images/common/recruit-jobs_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(690 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 690/1188;
  z-index: -1;
}

.m-recruit-jobs__wrapper {
  display: grid;
  row-gap: calc(60 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-recruit-jobs-block {
  --_width__left: 800;
  --_width__right: 650;
  --_column-gap: 100;
  align-items: center;
}

.m-recruit-jobs-block__figure {
  display: grid;
}
.m-recruit-jobs-block__figure img {
  aspect-ratio: 800/600;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-recruit-jobs-block__description {
  letter-spacing: 0.08em;
  margin-top: calc(26 * 1rem / var(--font-size__base));
}

.m-recruit-jobs-block__icons {
  display: flex;
  align-items: center;
  margin-top: calc(42 * 1rem / var(--font-size__base));
}

.m-recruit-jobs__icon {
  display: grid;
}
.m-recruit-jobs__icon img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(179 * 1rem / var(--font-size__base));
  box-shadow: 0 0 calc(20 * 1rem / var(--font-size__base)) rgb(from var(--color__black) r g b/0.1);
  border-radius: 50%;
}

.m-privacy {
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(381 * 1rem / var(--font-size__base));
}

.m-privacy__wrapper {
  display: grid;
  row-gap: calc(40 * 1rem / var(--font-size__base));
}

.m-privacy__title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color__text);
}

.m-privacy__content h3 {
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color__text);
  margin-top: calc(40 * 1rem / var(--font-size__base));
}
.m-privacy__content h3 + p {
  margin-top: calc(16 * 1rem / var(--font-size__base));
}
.m-privacy__content p {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--color__text);
}
.m-privacy__content p + p {
  margin-top: calc(16 * 1rem / var(--font-size__base));
}
.m-privacy__content ul {
  margin-top: calc(16 * 1rem / var(--font-size__base));
  padding-left: calc(20 * 1rem / var(--font-size__base));
}
.m-privacy__content ul + p {
  margin-top: calc(16 * 1rem / var(--font-size__base));
}
.m-privacy__content li {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--color__text);
  list-style-type: disc;
}
.m-privacy__content li + li {
  margin-top: calc(8 * 1rem / var(--font-size__base));
}

.m-phone {
  display: grid;
  grid-template-columns: calc(37 * 1rem / var(--font-size__base)) -webkit-max-content;
  grid-template-columns: calc(37 * 1rem / var(--font-size__base)) max-content;
  align-items: start;
  gap: calc(18 * 1rem / var(--font-size__base));
}

.m-phone__icon {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: calc(37 * 1rem / var(--font-size__base));
}
.m-phone__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__red-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  transition: opacity var(--duration__base);
  z-index: -1;
}

.m-phone__info {
  display: grid;
  row-gap: calc(4 * 1rem / var(--font-size__base));
}

.m-phone__number {
  font-family: var(--font-family__nunito);
  font-size: calc(38 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__red);
  line-height: 1.1;
  letter-spacing: 0;
}

.m-phone__time {
  font-size: calc(13 * 1rem / var(--font-size__base));
  color: rgb(from var(--color__text) r g b/0.7);
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.m-partners-merit-card {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  align-items: start;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-partners-merit-card__image {
  display: grid;
}
.m-partners-merit-card__image img {
  aspect-ratio: 566/377;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-partners-merit-card__body {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-partners-merit-card__title {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-partners-merit-card__title-number {
  font-size: calc(48 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__blue);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.m-partners-merit-card__title-text {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__blue);
  letter-spacing: 0.1em;
}

.m-partners-merit-card__text {
  letter-spacing: 0.08em;
}

/* ページネーション全体 */
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: calc(28 * 1rem / var(--font-size__base));
       column-gap: calc(28 * 1rem / var(--font-size__base));
}

.page-numbers li {
  display: grid;
}

/* 各ページ番号（通常） */
.page-numbers li a {
  position: relative;
  display: inline-flex;
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__black);
  line-height: 1.6;
  letter-spacing: 0;
}
.page-numbers li a:focus-visible {
  opacity: 0.7;
}

/* 現在のページ番号 */
.page-numbers li span.current {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  color: var(--color__red-2);
  letter-spacing: 0;
}

/* 前へ・次へ */
.page-numbers li a.prev,
.page-numbers li a.next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-numbers.dots {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__black);
  line-height: 1.6;
  letter-spacing: 0;
}

.m-page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding-top: calc(48 * 1rem / var(--font-size__base));
}

.m-page-nav__link {
  display: flex;
  align-items: center;
  gap: calc(13 * 1rem / var(--font-size__base));
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.m-page-nav__link.next {
  justify-content: flex-end;
}

.m-page-nav__link.center {
  justify-content: center;
}

.m-page-nav__item {
  list-style: none;
}

.m-page-nav__item.is-prev {
  grid-column: 1;
}

.m-page-nav__item.is-center {
  grid-column: 2;
  margin-top: calc(4 * 1rem / var(--font-size__base));
}

.m-page-nav__item.is-next {
  grid-column: 3;
}
.m-page-nav__arrow {
  display: inline-block;
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(16 * 1rem / var(--font-size__base));
  background-color: var(--color__text);
}

.m-page-nav__arrow--prev {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.m-page-nav__arrow--next {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.m-outer-bg {
  display: grid;
  justify-self: end;
  position: -webkit-sticky;
  position: sticky;
  top: calc(140 * 1rem / var(--font-size__base));
  right: 0;
  z-index: -10;
}
.m-outer-bg::before {
  content: "";
  position: absolute;
  top: calc(-32 * 1rem / var(--font-size__base));
  right: calc(-118 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/outer-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(847 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 847/848;
  z-index: -10;
}

.m-outer-bg--alliance {
  top: calc(-68 * 1rem / var(--font-size__base));
}
.m-outer-bg--alliance::before {
  top: calc(200 * 1rem / var(--font-size__base));
}

.m-outer-bg--archive-business {
  top: calc(-200 * 1rem / var(--font-size__base));
}
.m-outer-bg--archive-business::before {
  top: calc(344 * 1rem / var(--font-size__base));
}

.m-outer-bg--single-business {
  top: calc(-350 * 1rem / var(--font-size__base));
}
.m-outer-bg--single-business::before {
  top: calc(500 * 1rem / var(--font-size__base));
}

.m-our-service {
  padding-block: calc(144 * 1rem / var(--font-size__base));
  overflow-x: clip;
}

.m-our-service__slider {
  position: relative;
  padding-bottom: calc(24 * 1rem / var(--font-size__base));
  margin-right: calc(50% - 50vw);
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-our-service-card {
  position: relative;
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
  padding-inline: calc(32 * 1rem / var(--font-size__base));
}

.m-our-service-card__number {
  position: absolute;
  top: calc(-35 * 1rem / var(--font-size__base));
  left: calc(4 * 1rem / var(--font-size__base));
  display: grid;
  align-items: center;
  justify-items: center;
  width: calc(70 * 1rem / var(--font-size__base));
  height: calc(70 * 1rem / var(--font-size__base));
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0;
  z-index: 1;
}
.m-our-service-card__number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__red-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-our-service-card__image {
  display: grid;
}
.m-our-service-card__image img {
  aspect-ratio: 336/252;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-our-service-card__body {
  display: grid;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-our-service-card__image__title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.m-our-service-card__image__text {
  letter-spacing: 0.08em;
}

.m-operation-maintenance__header {
  --_width__left: 510;
  --_width__right: 640;
  --_column-gap: 30;
  align-items: start;
  margin-top: calc(64 * 1rem / var(--font-size__base));
}

.m-operation-maintenance__header-text-wrapper {
  display: grid;
  row-gap: calc(12 * 1rem / var(--font-size__base));
}

.m-operation-maintenance__header-subtitle {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  background-image: var(--color__green-liner-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.m-operation-maintenance__wrapper {
  display: grid;
  row-gap: calc(64 * 1rem / var(--font-size__base));
  max-width: calc(980 * 1rem / var(--font-size__base));
  margin-inline: auto;
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-operation-maintenance-card {
  --_width__left: 400;
  --_width__right: 500;
  --_column-gap: 80;
  align-items: center;
}

.m-operation-maintenance-card__image {
  display: grid;
}
.m-operation-maintenance-card__image img {
  aspect-ratio: 400/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-operation-maintenance-card__image--01 img {
  aspect-ratio: 400/225;
}

.m-operation-maintenance-card__body {
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-operation-maintenance-card__title {
  display: grid;
  grid-template-columns: calc(60 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
  align-items: center;
}

.m-operation-maintenance-card__title-number {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0;
  width: calc(60 * 1rem / var(--font-size__base));
  height: calc(60 * 1rem / var(--font-size__base));
}
.m-operation-maintenance-card__title-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color__blue-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-operation-maintenance-card__title-text {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-operation-maintenance-card__text {
  letter-spacing: 0.08em;
}

.m-news-single {
  padding-top: calc(246 * 1rem / var(--font-size__base));
  padding-bottom: calc(334 * 1rem / var(--font-size__base));
}

.m-news-single__header {
  display: grid;
  gap: calc(10 * 1rem / var(--font-size__base));
}

.m-news-single__date {
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

.m-news-single__title {
  font-size: calc(27 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding-bottom: calc(16 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__text);
}

.m-news-single__contents {
  margin-top: calc(58 * 1rem / var(--font-size__base));
}

.m-news-single__thumbnail {
  display: grid;
  padding-left: calc(18 * 1rem / var(--font-size__base));
  padding-right: calc(14 * 1rem / var(--font-size__base));
  margin-top: calc(32 * 1rem / var(--font-size__base));
}
.m-news-single__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1147/636;
  border-radius: calc(27 * 1rem / var(--font-size__base));
}

.m-news-single__body {
  margin-top: calc(65 * 1rem / var(--font-size__base));
}
.m-news-single__body h2 {
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.6;
  letter-spacing: 0;
  padding: calc(14 * 1rem / var(--font-size__base)) calc(22 * 1rem / var(--font-size__base));
  border-radius: calc(5 * 1rem / var(--font-size__base));
  background-color: var(--color__green);
}
.m-news-single__body > h2 ~ p {
  margin-top: calc(12 * 1rem / var(--font-size__base));
}
.m-news-single__body h3 {
  position: relative;
  font-size: calc(17 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding-inline: calc(6 * 1rem / var(--font-size__base));
  padding-bottom: calc(16 * 1rem / var(--font-size__base));
  margin-top: calc(112 * 1rem / var(--font-size__base));
}
.m-news-single__body h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: calc(1 * 1rem / var(--font-size__base));
  background-color: var(--color__black);
}
.m-news-single__body > h3 ~ p {
  padding-inline: calc(16 * 1rem / var(--font-size__base));
  margin-top: calc(24 * 1rem / var(--font-size__base));
}
.m-news-single__body h4 {
  font-size: calc(17 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding-inline: calc(6 * 1rem / var(--font-size__base));
  margin-top: calc(112 * 1rem / var(--font-size__base));
}
.m-news-single__body > h4 ~ p {
  padding-inline: calc(12 * 1rem / var(--font-size__base));
  margin-top: calc(34 * 1rem / var(--font-size__base));
}
.m-news-single__body p {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  padding-inline: calc(12 * 1rem / var(--font-size__base));
}
.m-news-single__body p + p {
  margin-top: calc(20 * 1rem / var(--font-size__base));
}

.m-news-single__pagination {
  display: flex;
  justify-content: center;
  border-top: calc(1 * 1rem / var(--font-size__base)) solid var(--color__black);
  margin-top: calc(126 * 1rem / var(--font-size__base));
}

.m-news-card {
  display: grid;
  row-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-news-card__thumbnail {
  display: grid;
}
.m-news-card__thumbnail img {
  aspect-ratio: 443/306;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-news-card__date {
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__green);
  line-height: 1.6;
  letter-spacing: 0;
}

.m-news-card__title {
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

.m-news-archive {
  padding-top: calc(104 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}

.m-news-archive__wrapper {
  margin-top: calc(42 * 1rem / var(--font-size__base));
}

.m-news-archive__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: calc(51 * 1rem / var(--font-size__base));
       column-gap: calc(51 * 1rem / var(--font-size__base));
  row-gap: calc(100 * 1rem / var(--font-size__base));
}

.m-news-archive__page-numbers {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-news-archive__arrow {
  display: inline-block;
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(16 * 1rem / var(--font-size__base));
  background-color: var(--color__red-2);
}

.m-news-archive__arrow--prev {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.m-news-archive__arrow--next {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.m-mv {
  position: relative;
  min-height: calc(800 * 1rem / var(--font-size__base));
  padding-top: calc(var(--js-height__header) + 59 * 1rem / var(--font-size__base));
  overflow-x: clip;
}
.m-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #e3e6ea 0%, var(--color__white) 100%);
  z-index: -1;
}

.m-mv__image {
  display: grid;
  place-items: center;
}
.m-mv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1155/495;
}

.m-mv__wrapper {
  display: grid;
  row-gap: calc(7 * 1rem / var(--font-size__base));
  padding-right: calc(15 * 1rem / var(--font-size__base));
}

.m-mv__subtitle {
  font-size: calc(33 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-mv__text-wrapper {
  position: relative;
  padding-top: calc(82 * 1rem / var(--font-size__base));
  padding-bottom: calc(34 * 1rem / var(--font-size__base));
  margin-top: calc(108 * 1rem / var(--font-size__base));
}

.m-mv__text {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-mv__text-bg {
  position: absolute;
  top: calc(12 * 1rem / var(--font-size__base));
  left: 0;
  z-index: -1;
}

.m-mv__scroll-button {
  position: absolute;
  bottom: calc(-120 * 1rem / var(--font-size__base));
  left: min(8%, 150px);
  display: grid;
  z-index: 10;
}
.m-mv__scroll-button img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  width: calc(219 * 1rem / var(--font-size__base));
}

.m-modal {
  --_duration: 0.3s;
  position: fixed;
  z-index: 1000;
  inset: 0;
  transition: visibility var(--_duration);
  visibility: hidden;
}

.m-modal__backdrop {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-modal__inner {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-modal__content {
  overflow-y: auto;
  scrollbar-gutter: stable;
  max-height: 80vh;
  background-color: #fff;
  padding-block: calc(50 * 1rem / var(--font-size__base));
  padding-inline: calc(30 * 1rem / var(--font-size__base));
}

/* 開いた時 */
.m-modal.is-visible .m-modal__backdrop {
  opacity: 1;
  visibility: visible;
}

.m-modal.is-visible .m-modal__inner {
  opacity: 1;
  visibility: visible;
}

.m-modal.m-modal--fade-up .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(-50%, calc(-50% + 30px));
}

.m-modal.m-modal--fade-up.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-down .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(-50%, calc(-50% - 30px));
}

.m-modal.m-modal--fade-down.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-left .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(calc(-50% + 30px), -50%);
}

.m-modal.m-modal--fade-left.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-modal.m-modal--fade-right .m-modal__inner {
  transition: transform var(--_duration), opacity var(--_duration), visibility var(--_duration);
  transform: translate(calc(-50% - 30px), -50%);
}

.m-modal.m-modal--fade-right.is-visible .m-modal__inner {
  transform: translate(-50%, -50%);
}

.m-merit__wrapper {
  display: grid;
  row-gap: calc(32 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-merit-card {
  position: relative;
  --_width__left: 500;
  --_width__right: 500;
  --_column-gap: 48;
  align-items: center;
  padding-block: calc(64 * 1rem / var(--font-size__base));
  padding-left: calc(64 * 1rem / var(--font-size__base));
  padding-right: calc(68 * 1rem / var(--font-size__base));
}
.m-merit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__green-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-merit-card__image {
  display: grid;
}
.m-merit-card__image img {
  aspect-ratio: 500/333;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-merit-card__body {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-merit-card__title {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.1em;
}

.m-merit-card__text {
  color: var(--color__white);
  letter-spacing: 0.08em;
}

.m-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
}

.m-icon--mail-header {
  width: calc(32 * 1rem / var(--font-size__base));
}

.m-icon--mail-cta {
  width: calc(47 * 1rem / var(--font-size__base));
}

.m-icon--mail {
  width: calc(16 * 1rem / var(--font-size__base));
}

.m-icon--phone {
  position: relative;
  width: calc(16 * 1rem / var(--font-size__base));
}

.m-icon--arrow-right-circle {
  width: calc(37 * 1rem / var(--font-size__base));
}

.m-icon--arrow-right-circle-black {
  width: calc(34 * 1rem / var(--font-size__base));
}

.m-icon-link {
  display: grid;
  place-items: center;
  transition: color var(--duration__base);
}
.m-icon-link--line:focus-visible {
  color: var(--color__line);
}
.m-icon-link--x:focus-visible {
  color: var(--color__x);
}
.m-icon-link--instagram:focus-visible {
  color: var(--color__instagram);
}
.m-icon-link--facebook:focus-visible {
  color: var(--color__facebook);
}
.m-icon-link--youtube:focus-visible {
  color: var(--color__youtube);
}

.m-icon-button {
  --_color__main-default: var(--color__red);
  --_color__sub-default: var(--color__white);
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_width__icon: 37;
  --_duration: var(--duration__base);
  display: grid;
  grid-template-columns: -webkit-max-content calc(var(--_width__icon) * 1rem / var(--font-size__base));
  grid-template-columns: max-content calc(var(--_width__icon) * 1rem / var(--font-size__base));
  -moz-column-gap: calc(24 * 1rem / var(--font-size__base));
       column-gap: calc(24 * 1rem / var(--font-size__base));
  align-items: center;
  justify-content: center;
  max-width: calc(249 * 1rem / var(--font-size__base));
  width: 100%;
  color: var(--_color__sub);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  background: var(--color__dark-green-liner-gradient);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  transition: color var(--_duration), border-color var(--_duration), filter var(--_duration);
  touch-action: manipulation;
  padding-block: calc(14 * 1rem / var(--font-size__base));
  padding-right: calc(18 * 1rem / var(--font-size__base));
  padding-left: calc(48 * 1rem / var(--font-size__base));
}
.m-icon-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color__red-liner-gradient);
  border-radius: 9999px;
  transition: opacity var(--_duration);
  z-index: -1;
}
.m-icon-button:focus-visible {
  filter: unset;
}
.m-icon-button:focus-visible::before {
  opacity: 0;
}

.m-icon-button--reverse {
  grid-template-columns: calc(var(--_width__icon) * 1rem / var(--font-size__base)) auto;
}

.m-icon-button--invert {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  border-color: var(--_color__sub);
}

.m-icon-button--sub {
  --_color__main-default: var(--color__sub);
  --_color__sub-default: white;
}

.m-icon-button--header {
  --_width__icon: 32;
  grid-template-columns: calc(var(--_width__icon) * 1rem / var(--font-size__base)) auto;
  font-family: var(--font-family__nunito);
  letter-spacing: 0;
  -moz-column-gap: calc(12 * 1rem / var(--font-size__base));
       column-gap: calc(12 * 1rem / var(--font-size__base));
  padding-block: calc(7 * 1rem / var(--font-size__base));
  padding-left: calc(9 * 1rem / var(--font-size__base));
  padding-right: calc(24 * 1rem / var(--font-size__base));
  max-width: calc(180 * 1rem / var(--font-size__base));
  z-index: 100;
}

.m-icon-button--cta {
  align-items: center;
  justify-items: center;
  grid-template-columns: auto;
  grid-template-rows: calc(47 * 1rem / var(--font-size__base)) auto;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: calc(149 * 1rem / var(--font-size__base));
  padding-top: calc(24 * 1rem / var(--font-size__base));
  padding-bottom: calc(28 * 1rem / var(--font-size__base));
  padding-inline: 0;
}

.m-icon-button--cta--corporate {
  --_color__main-default: var(--color__blue);
}
.m-icon-button--cta--corporate::before {
  background: var(--color__blue-liner-gradient);
}

.m-icon-button--contact {
  justify-content: start;
  -moz-column-gap: calc(69 * 1rem / var(--font-size__base));
       column-gap: calc(69 * 1rem / var(--font-size__base));
  max-width: calc(321 * 1rem / var(--font-size__base));
  padding-left: calc(18 * 1rem / var(--font-size__base));
}

.m-icon-button--recruit::before {
  background: var(--color__green-liner-gradient);
}

.m-icon-button--alliance {
  max-width: calc(388 * 1rem / var(--font-size__base));
}

.m-icon-button--alliance-flow {
  max-width: calc(302 * 1rem / var(--font-size__base));
}

.m-home-strength {
  position: relative;
}

.m-home-strength__container {
  position: relative;
  padding-block: calc(200 * 1rem / var(--font-size__base));
}
.m-home-strength__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-home-strength__wrapper {
  max-width: calc(1180 * 1rem / var(--font-size__base));
  margin-inline: auto;
}

.m-home-strength__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  -moz-column-gap: calc(136 * 1rem / var(--font-size__base));
       column-gap: calc(136 * 1rem / var(--font-size__base));
}

.m-home-strength__text {
  color: var(--color__black);
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding-top: calc(34 * 1rem / var(--font-size__base));
}

.m-home-strength__contents {
  display: grid;
  row-gap: calc(28 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-home-strength__item {
  position: relative;
  display: grid;
  grid-template-columns: calc(121 * 1rem / var(--font-size__base)) 1fr;
  align-items: start;
  -moz-column-gap: calc(146 * 1rem / var(--font-size__base));
       column-gap: calc(146 * 1rem / var(--font-size__base));
  padding-top: calc(62 * 1rem / var(--font-size__base));
  padding-bottom: calc(66 * 1rem / var(--font-size__base));
  padding-inline: calc(80 * 1rem / var(--font-size__base));
}
.m-home-strength__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-home-strength__item--02,
.m-home-strength__item--03 {
  -moz-column-gap: calc(150 * 1rem / var(--font-size__base));
       column-gap: calc(150 * 1rem / var(--font-size__base));
}

.m-home-strength__item-number {
  position: relative;
  font-size: calc(18 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.1;
  letter-spacing: 0;
  padding: calc(4 * 1rem / var(--font-size__base)) calc(10 * 1rem / var(--font-size__base));
  margin-top: calc(8 * 1rem / var(--font-size__base));
}
.m-home-strength__item-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__blue);
  width: 100%;
  height: 100%;
  border-radius: calc(3 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-home-strength__item-number--02::before {
  background-color: var(--color__green);
}

.m-home-strength__item-number--03::before {
  background-color: var(--color__red);
}

.m-home-strength__item-contents {
  --_width__left: 430;
  --_width__right: 200;
  --_column-gap: 122;
  align-items: center;
}

.m-home-strength__item-body {
  display: grid;
  row-gap: calc(12 * 1rem / var(--font-size__base));
}

.m-home-strength__item-title {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-home-strength__item-text {
  letter-spacing: 0.08em;
  margin-top: calc(8 * 1rem / var(--font-size__base));
}

.m-home-strength__item-image {
  display: grid;
}

.m-home-recruit {
  padding-top: calc(200 * 1rem / var(--font-size__base));
}

.m-home-recruit__contents {
  position: relative;
  padding-top: calc(289 * 1rem / var(--font-size__base));
  padding-left: calc(180 * 1rem / var(--font-size__base));
  padding-bottom: calc(288 * 1rem / var(--font-size__base));
  overflow: hidden;
  border-radius: calc(78 * 1rem / var(--font-size__base));
}
.m-home-recruit__contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/common/recruit_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  transition: background-image var(--duration__base), transform var(--duration__base);
  border-radius: calc(78 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-home-recruit__contents:focus-visible::before {
  background-image: url("../../assets/images/common/recruit_bg_hover.webp");
}

.m-home-recruit__title {
  display: flex;
  flex-direction: column;
  gap: calc(8 * 1rem / var(--font-size__base));
}

.m-home-recruit__title-jp {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--color__white);
}

.m-home-recruit__title-en {
  font-family: "Nunito Sans", sans-serif;
  font-size: calc(110 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color__white);
}

.m-home-recruit__description {
  color: var(--color__white);
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-home-recruit__button {
  display: grid;
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-home-news-post {
  position: absolute;
  bottom: calc(-54 * 1rem / var(--font-size__base));
  right: 0;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
  padding: calc(32 * 1rem / var(--font-size__base));
  z-index: 1;
}
.m-home-news-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-top-left-radius: calc(24 * 1rem / var(--font-size__base));
  border-bottom-left-radius: calc(24 * 1rem / var(--font-size__base));
  box-shadow: 0 0 calc(30 * 1rem / var(--font-size__base)) 0 rgb(from var(--color__black) r g b/0.1);
  z-index: -1;
}

.m-home-news-post__date {
  color: var(--color__green);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.m-home-news-post__title {
  color: var(--color__black);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.m-home-case {
  padding: calc(200 * 1rem / var(--font-size__base)) 0 calc(250 * 1rem / var(--font-size__base));
}

.m-home-case__wrapper {
  display: grid;
  align-items: center;
  gap: calc(120 * 1rem / var(--font-size__base));
}

.m-home-business {
  padding-bottom: calc(206 * 1rem / var(--font-size__base));
}

.m-home-business__wrapper {
  padding-left: calc(6 * 1rem / var(--font-size__base));
}

.m-home-business__contents {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-home-business__button {
  display: grid;
  justify-items: center;
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-home-about {
  position: relative;
  overflow-x: clip;
}

.m-home-about__container {
  padding-right: clamp(0rem, -7.5rem + 8.33vw, 2.5rem);
}

.m-home-about__wrapper {
  position: relative;
  padding-top: calc(200 * 1rem / var(--font-size__base));
}
.m-home-about__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 89%;
  border-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-home-about__title {
  font-size: calc(60 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  background: var(--color__green-liner-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.m-home-about__contents {
  display: grid;
  justify-items: center;
  row-gap: calc(106 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-home-about__description {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-home-about__image-wrapper {
  display: grid;
  justify-items: center;
  margin-top: calc(186 * 1rem / var(--font-size__base));
}

.m-home-about__image-container {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.m-home-about__image {
  display: inline-grid;
  justify-items: center;
}
.m-home-about__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.m-home-about__image--left {
  position: absolute;
  top: -33.8%;
  left: -114%;
}
.m-home-about__image--left img {
  aspect-ratio: 671/752;
  width: clamp(16.75rem, -0.042rem + 34.98vw, 41.938rem);
}

.m-home-about__image--center img {
  aspect-ratio: 666/473;
  width: clamp(16.75rem, 0.167rem + 34.55vw, 41.625rem);
}

.m-home-about__image--right {
  position: absolute;
  top: -64.4%;
  right: -114%;
}
.m-home-about__image--right img {
  aspect-ratio: 671/752;
  width: clamp(16.75rem, -0.042rem + 34.98vw, 41.938rem);
}

.m-heading-group {
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-heading-group--page {
  row-gap: calc(23 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en--page {
  font-size: calc(88 * 1rem / var(--font-size__base));
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.m-heading-group__title-en-image {
  display: grid;
}
.m-heading-group__title-en-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.m-heading-group__title-en-image--alliance img {
  aspect-ratio: 946/293;
  width: calc(946 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en-image--company img {
  aspect-ratio: 563/156;
  width: calc(563 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en-image--contact img {
  aspect-ratio: 461/156;
  width: calc(461 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en-image--news img {
  aspect-ratio: 327/156;
  width: calc(327 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en-image--recruit img {
  aspect-ratio: 416/156;
  width: calc(416 * 1rem / var(--font-size__base));
}

.m-heading-group__title-en-image--business img {
  aspect-ratio: 774/156;
  width: calc(774 * 1rem / var(--font-size__base));
}

.m-heading-group__title-ja {
  font-size: calc(24 * 1rem / var(--font-size__base));
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.m-header {
  --_z-index--header-items: 100;
  --_z-index--header-drawer: 99;
  position: fixed;
  z-index: var(--_z-index--header-items);
  top: var(--wp-admin--admin-bar--height, 0);
  width: 100%;
  max-width: calc(1920 * 1rem / var(--font-size__base));
  padding-block: calc(28 * 1rem / var(--font-size__base));
}

.m-header__inner {
  display: grid;
  grid-template-columns: calc(182 * 1rem / var(--font-size__base)) 1fr calc(195 * 1rem / var(--font-size__base));
  align-items: center;
  justify-items: center;
}

.m-header__logo {
  position: relative;
  z-index: var(--_z-index--header-items);
}

.m-header__menu {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: calc(30 * 1rem / var(--font-size__base));
       column-gap: calc(30 * 1rem / var(--font-size__base));
}

.m-header__links {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(40 * 1rem / var(--font-size__base));
       column-gap: calc(40 * 1rem / var(--font-size__base));
  padding-left: calc(56 * 1rem / var(--font-size__base));
}

.m-header__links li {
  position: relative;
  height: 100%;
}

.m-header__link {
  display: grid;
  letter-spacing: 0.05em;
  align-items: center;
  transition: color var(--duration__base);
  padding-block: calc(8 * 1rem / var(--font-size__base));
}

.m-header__link[aria-current=page] {
  border-bottom: 2px solid var(--color__blue);
}

.m-header__buttons {
  display: grid;
  grid-template-columns: -webkit-max-content calc(50 * 1rem / var(--font-size__base));
  grid-template-columns: max-content calc(50 * 1rem / var(--font-size__base));
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-header__buttons li {
  min-width: calc(200 * 1rem / var(--font-size__base));
}
.m-header-sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--color__dark-green);
  padding: calc(24 * 1rem / var(--font-size__base));
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration__base), visibility var(--duration__base);
}

.m-header__links li:hover .m-header-sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.m-header-sub-menu__column {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-header-sub-menu__title {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-bottom: calc(9 * 1rem / var(--font-size__base));
  border-bottom: 1px solid var(--color__white);
}

.m-header-sub-menu__list {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-header-sub-menu__item {
  position: relative;
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding-left: calc(11 * 1rem / var(--font-size__base));
}
.m-header-sub-menu__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(4 * 1rem / var(--font-size__base));
  height: calc(4 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}

.m-header-sub-menu__link {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: rgb(from var(--color__white) r g b/0.8);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.m-hamburger {
  --_width--hamburger: 48;
  --_height--hamburger: 48;
  --_color--hamburger-line: var(--color__text);
  --_spacing--hamburger-line: 4;
  --_width--hamburger-line: 14;
  --_height--hamburger-line: 1;
  --_duration: var(--duration__base);
  position: relative;
  width: calc(var(--_width--hamburger) * 1rem / var(--font-size__base));
  height: calc(var(--_height--hamburger) * 1rem / var(--font-size__base));
  background: var(--color__dark-green-liner-gradient);
  border-radius: 50%;
  z-index: 100;
}
.m-hamburger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color__white);
  border-radius: 9999px;
  transition: opacity var(--_duration);
  z-index: -1;
}
.m-hamburger:focus-visible::before {
  opacity: 0;
}
.m-hamburger:focus-visible .m-hamburger__line {
  background-color: var(--color__white);
}

.m-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  transition: top var(--_duration), rotate var(--_duration), opacity var(--_duration), background-color var(--_duration);
  width: calc(var(--_width--hamburger-line) * 1rem / var(--font-size__base));
  height: calc(var(--_height--hamburger-line) * 1rem / var(--font-size__base));
  background-color: var(--_color--hamburger-line, currentColor);
  border-radius: calc(8 * 1rem / var(--font-size__base));
}

.m-hamburger__line:nth-of-type(1) {
  top: calc(50% - var(--_spacing--hamburger-line) * 1rem / var(--font-size__base));
}

.m-hamburger__line:nth-of-type(3) {
  top: calc(50% + var(--_spacing--hamburger-line) * 1rem / var(--font-size__base));
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(1) {
  top: 50%;
  rotate: 45deg;
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.m-hamburger[aria-expanded=true] .m-hamburger__line:nth-of-type(3) {
  top: 50%;
  rotate: -45deg;
}

.m-form-table__item {
  --_width__left: 300;
  --_width__right: 856;
  --_column-gap: 24;
  align-items: start;
  padding-block: calc(23 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-form-table__item--first {
  border-top: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-form-table__item--desired-date {
  padding-top: calc(34 * 1rem / var(--font-size__base));
}

.m-form-table__item--desired-time {
  padding-top: calc(34 * 1rem / var(--font-size__base));
}

.m-form-table__item--textarea {
  align-items: flex-start;
  padding-top: calc(30 * 1rem / var(--font-size__base));
}

.m-form-table__label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: calc(12 * 1rem / var(--font-size__base));
       column-gap: calc(12 * 1rem / var(--font-size__base));
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: calc(24 * 1rem / var(--font-size__base));
}

.m-form-table__label--textarea {
  align-items: flex-start;
}

.m-form-table__label-required {
  font-size: calc(12 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0.05em;
  padding: calc(4 * 1rem / var(--font-size__base)) calc(7 * 1rem / var(--font-size__base));
  background-color: var(--color__red);
  border-radius: calc(2 * 1rem / var(--font-size__base));
}

.m-form-table__input {
  padding-right: calc(24 * 1rem / var(--font-size__base));
}

.m-form-table__input--postal {
  display: grid;
  grid-template-columns: -webkit-max-content calc(118 * 1rem / var(--font-size__base));
  grid-template-columns: max-content calc(118 * 1rem / var(--font-size__base));
  align-items: center;
  -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
       column-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-form-table__radio {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content max-content;
  -moz-column-gap: calc(20 * 1rem / var(--font-size__base));
       column-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-form-table__radio--first {
  -moz-column-gap: 0;
       column-gap: 0;
}

.wpcf7-select,
.wpcf7-text,
.wpcf7-textarea {
  border: calc(1 * 1rem / var(--font-size__base)) solid var(--color__gray-2);
  border-radius: calc(2 * 1rem / var(--font-size__base));
  background-color: var(--color__gray-2);
  font-size: calc(15 * 1rem / var(--font-size__base));
  letter-spacing: 0.05em;
  padding-block: calc(16 * 1rem / var(--font-size__base));
  padding-inline: calc(20 * 1rem / var(--font-size__base));
}

.wpcf7-date {
  color: var(--color__black);
  padding: calc(14 * 1rem / var(--font-size__base)) calc(26 * 1rem / var(--font-size__base));
  border: calc(1 * 1rem / var(--font-size__base)) solid var(--color__gray-4);
  border-radius: calc(5 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  line-height: 1.25;
  letter-spacing: 0;
  width: 100%;
  max-width: calc(368 * 1rem / var(--font-size__base));
}

.m-form-table__date {
  position: relative;
  display: inline-block;
}

.m-form-table__date input {
  -webkit-padding-end: calc(44 * 1rem / var(--font-size__base));
          padding-inline-end: calc(44 * 1rem / var(--font-size__base));
  width: 100%;
  max-width: calc(368 * 1rem / var(--font-size__base));
}

.m-form-table__date input::-moz-placeholder {
  color: rgb(from var(--color__text) r g b/0.3);
}

.m-form-table__date input::placeholder {
  color: rgb(from var(--color__text) r g b/0.3);
}

.m-form-table__date .m-icon--calendar {
  position: absolute;
  inset-inline-end: calc(14 * 1rem / var(--font-size__base));
  top: 50%;
  right: calc(24 * 1rem / var(--font-size__base));
  left: unset;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color__main);
  width: calc(14 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
}

.wpcf7-select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.724976L5.54 5.27498L10.08 0.724976' stroke='%23A59C5F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right calc(16 * 1rem / var(--font-size__base)) center;
  background-repeat: no-repeat;
  background-size: calc(9 * 1rem / var(--font-size__base)) calc(4.5 * 1rem / var(--font-size__base));
}

.wpcf7-text {
  width: 100%;
}

.m-form-table__postal-prefix {
  display: inline-block;
  font-size: calc(15 * 1rem / var(--font-size__base));
  color: rgb(from var(--color__text) r g b/0.3);
  letter-spacing: 0.05em;
}

.wpcf7-textarea {
  width: 100%;
  height: calc(150 * 1rem / var(--font-size__base));
  resize: vertical;
}

.wpcf7-text::-moz-placeholder, .wpcf7-textarea::-moz-placeholder {
  color: rgb(from var(--color__text) r g b/0.3);
}

.wpcf7-select option:first-child,
.wpcf7-select[name=your-inquiry]:has(option:checked[value=""]),
.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
  color: rgb(from var(--color__text) r g b/0.3);
}

.m-form-table__acceptance {
  display: grid;
  align-items: center;
  justify-items: center;
  margin-top: calc(58 * 1rem / var(--font-size__base));
}

.wpcf7-acceptance {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-family: var(--font-family__inter);
  color: var(--color__dark-bg);
  line-height: 1.35;
  letter-spacing: 0;
  cursor: pointer;
}

.m-form-table__acceptance input[type=checkbox] {
  width: calc(15 * 1rem / var(--font-size__base));
  height: calc(15 * 1rem / var(--font-size__base));
  border: calc(2 * 1rem / var(--font-size__base)) solid var(--color__white-2);
  border-radius: calc(2 * 1rem / var(--font-size__base));
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.m-form-table__acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: calc(-4 * 1rem / var(--font-size__base));
  left: calc(4 * 1rem / var(--font-size__base));
  transform: rotate(225deg);
  width: calc(6 * 1rem / var(--font-size__base));
  height: calc(14 * 1rem / var(--font-size__base));
  border-left: calc(2 * 1rem / var(--font-size__base)) solid var(--color__green);
  border-top: calc(2 * 1rem / var(--font-size__base)) solid var(--color__green);
}

.m-form-table__acceptance-line {
  color: var(--color__green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding-left: calc(11 * 1rem / var(--font-size__base));
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  display: none;
}

.m-form-table__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(24 * 1rem / var(--font-size__base));
}

.m-form-table__submit {
  position: relative;
  max-width: calc(196 * 1rem / var(--font-size__base));
  width: 100%;
}
.m-form-table__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(20 * 1rem / var(--font-size__base));
  width: calc(37 * 1rem / var(--font-size__base));
  height: calc(37 * 1rem / var(--font-size__base));
  background-image: url("data:image/svg+xml,%3Csvg width='37' height='37' viewBox='0 0 37 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='37' height='37' rx='18.5' fill='%23fff' fill-opacity='0.15'/%3E%3Cpath d='M11.6172 18.5L23.252 18.5' stroke='%23fff' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M20.5234 14.957L24.0645 18.498L20.5234 22.0391' stroke='%23fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.m-form-table__submit > p {
  position: relative;
  border-radius: calc(infinity * 1px);
  background-color: var(--color__accent);
  cursor: pointer;
  transition: background-color var(--duration__base);
}
.m-form-table__submit > p:focus-visible::after {
  background: #f5e88a;
  box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
}

.m-form-table__submit > p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(35 * 1rem / var(--font-size__base));
  transform: translateY(-50%);
  display: block;
  width: calc(32 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: rgb(from var(--color__white) r g b/0.8);
  border-radius: 50%;
}

.m-form-table__submit > p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(47 * 1rem / var(--font-size__base));
  translate: 0 -50%;
  display: block;
  width: calc(8 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: #f5e88a;
  border-radius: 50%;
}

.m-form-table__submit > p:has(input[disabled]) {
  opacity: 0.5;
}

.m-form-table__submit > p:has(input[disabled])::before {
  cursor: not-allowed;
}

.m-form-table__submit > p:has(input[disabled])::after {
  cursor: not-allowed;
}

.wpcf7-submit {
  width: 100%;
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0.1em;
  background: var(--color__red-liner-gradient);
  border-radius: 9999px;
  padding-left: calc(48 * 1rem / var(--font-size__base));
  padding-block: calc(24 * 1rem / var(--font-size__base));
  transition: opacity var(--duration__base);
}
.wpcf7-submit:focus-visible {
  opacity: var(--opacity__hover);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: calc(8 * 1rem / var(--font-size__base));
}

.wpcf7-response-output {
  font-family: var(--font-family__base);
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: calc(12 * 1rem / var(--font-size__base));
       column-gap: calc(12 * 1rem / var(--font-size__base));
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-radio input[type=radio] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  padding-left: calc(21 * 1rem / var(--font-size__base));
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  translate: 0 -50%;
  display: block;
  inline-size: calc(18 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: var(--color__white);
  border: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
  border-radius: 50%;
  transition: border-color var(--duration__base);
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  inset-inline-start: calc(4 * 1rem / var(--font-size__base));
  top: 50%;
  translate: 0 -50%;
  display: block;
  inline-size: calc(10 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  background-color: var(--color__red);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--duration__base);
}

.wpcf7-form-control.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  border: calc(1 * 1rem / var(--font-size__base)) solid var(--color__red);
}

.wpcf7-form-control.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.m-form-privacy {
  display: grid;
  justify-items: center;
  margin-top: calc(60 * 1rem / var(--font-size__base));
}

.m-form-privacy__inner {
  display: grid;
  row-gap: calc(18 * 1rem / var(--font-size__base));
  margin-left: calc(46 * 1rem / var(--font-size__base));
}

.m-form-privacy__item {
  display: grid;
  row-gap: calc(8 * 1rem / var(--font-size__base));
}

.m-form-privacy__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.m-form-privacy__text {
  font-size: calc(15 * 1rem / var(--font-size__base));
  color: rgb(from var(--color__text) r g b/0.7);
  letter-spacing: 0.05em;
}

.m-form-privacy__link {
  color: var(--color__black-3);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: -webkit-text-decoration var(--duration__base);
  transition: text-decoration var(--duration__base);
  transition: text-decoration var(--duration__base), -webkit-text-decoration var(--duration__base);
}
.m-form-privacy__link:focus-visible {
  text-decoration: none;
}

.m-footer {
  position: relative;
  overflow-x: clip;
}

.m-footer__text-bg {
  position: absolute;
  top: calc(-176 * 1rem / var(--font-size__base));
  left: 0;
  z-index: 0;
}

.m-footer__subtitle-text {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.m-footer__map {
  display: grid;
  row-gap: calc(67 * 1rem / var(--font-size__base));
}

.m-footer__map-list {
  --_width__left: 354;
  --_width__right: 536;
  --_column-gap: 16;
}

.m-footer__map-group {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-footer__map-item {
  background-color: var(--color__white);
  border-radius: calc(10 * 1rem / var(--font-size__base));
  padding: calc(24 * 1rem / var(--font-size__base)) calc(23 * 1rem / var(--font-size__base));
}

.m-footer__map-item-title {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.m-footer__map-item-info {
  display: grid;
  row-gap: calc(4 * 1rem / var(--font-size__base));
  margin-top: calc(13 * 1rem / var(--font-size__base));
}

.m-footer__map-item-address {
  font-size: calc(15 * 1rem / var(--font-size__base));
  letter-spacing: 0.08em;
  color: rgb(from var(--color__text) r g b/0.7);
}

.m-footer__map-item-contact {
  font-size: calc(15 * 1rem / var(--font-size__base));
  letter-spacing: 0.08em;
  color: rgb(from var(--color__text) r g b/0.7);
}

.m-footer__map-item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: calc(20 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  border: none;
  border-radius: calc(8 * 1rem / var(--font-size__base));
  cursor: pointer;
  text-align: left;
}
.m-footer__map-item-button:has(+ .js-accordion__panel:not([hidden])) {
  padding-bottom: calc(12 * 1rem / var(--font-size__base));
}
.m-footer__map-item-button:has(+ .js-accordion__panel:not([hidden])) .m-footer__map-item-icon::after {
  rotate: 0deg;
}

.m-footer__map-item-icon {
  position: relative;
  flex-shrink: 0;
  width: calc(32 * 1rem / var(--font-size__base));
  height: calc(32 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}
.m-footer__map-item-icon::before, .m-footer__map-item-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(12 * 1rem / var(--font-size__base));
  height: calc(2 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  border-radius: 99px;
  translate: -50% -50%;
  transition: rotate var(--duration__base);
}
.m-footer__map-item-icon::after {
  rotate: -90deg;
}

.m-footer-menu__inner {
  display: flex;
  justify-content: space-between;
}

.m-footer-menu__section {
  display: flex;
  flex-direction: column;
}

.m-footer-menu__title {
  font-size: calc(20 * 1rem / var(--font-size__base));
  font-weight: 700;
}

.m-footer-menu__list {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
  row-gap: calc(16 * 1rem / var(--font-size__base));
  padding-top: calc(24 * 1rem / var(--font-size__base));
}

.m-footer-menu__item {
  position: relative;
  padding-left: 1.5em;
}

.m-footer-menu__item::before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color__main);
}

.m-footer-menu__link {
  transition: color var(--duration__base);
}

.m-footer-contact {
  position: relative;
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(150 * 1rem / var(--font-size__base));
  z-index: 1;
}
.m-footer-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white-2);
  width: 100%;
  height: 110%;
  border-radius: calc(100 * 1rem / var(--font-size__base)) calc(100 * 1rem / var(--font-size__base)) 0 0;
  z-index: -1;
}
.m-footer-contact.is-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(-320 * 1rem / var(--font-size__base));
}

.m-footer-contact__wrapper {
  --_width__left: 416;
  --_width__right: 906;
  --_column-gap: 198;
  align-items: start;
}

.m-footer-contact__text-wrapper {
  margin-top: calc(64 * 1rem / var(--font-size__base));
}

.m-footer-contact__text {
  color: var(--color__black);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.m-footer-contact__buttons {
  display: grid;
  gap: calc(24 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-footer-contact__button {
  background: linear-gradient(135deg, var(--color__red-f83837) 0%, #f86737 100%);
  border-color: transparent;
  max-width: calc(321.18 * 1rem / var(--font-size__base));
  padding: calc(16 * 1rem / var(--font-size__base)) calc(18 * 1rem / var(--font-size__base)) calc(16 * 1rem / var(--font-size__base)) calc(48 * 1rem / var(--font-size__base));
}
.m-footer-contact__button:focus-visible {
  background: var(--color__white);
  color: var(--color__red-f83837);
}

.m-footer-bottom {
  position: relative;
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
  overflow-x: clip;
  z-index: 1;
}
.m-footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__dark-green-2);
  width: 100%;
  height: 100%;
  border-top-right-radius: calc(100 * 1rem / var(--font-size__base));
  border-top-left-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-footer-bottom__wrapper {
  --_width__left: 182;
  --_width__right: 1073;
  --_column-gap: 200;
  padding-left: calc(65 * 1rem / var(--font-size__base));
}

.m-footer-bottom__logo {
  display: grid;
  margin-top: calc(20 * 1rem / var(--font-size__base));
}

.m-footer-bottom__logo-image {
  display: grid;
}
.m-footer-bottom__logo-image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 182/57;
  width: calc(182 * 1rem / var(--font-size__base));
}

.m-footer-bottom__bg {
  display: grid;
  position: absolute;
  top: calc(91 * 1rem / var(--font-size__base));
  left: calc(-40 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-footer-bottom__bg img {
  aspect-ratio: 1/1;
  width: calc(725 * 1rem / var(--font-size__base));
  -o-object-fit: cover;
     object-fit: cover;
}

.m-footer-bottom__menu {
  position: relative;
  display: grid;
  row-gap: calc(64 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: clamp(2.5rem, 5.21vw, 6.25rem);
       column-gap: clamp(2.5rem, 5.21vw, 6.25rem);
}

.m-footer-bottom__nav-list {
  display: grid;
  row-gap: calc(44 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav-item {
  display: grid;
  row-gap: calc(32 * 1rem / var(--font-size__base));
}
.m-footer-bottom__nav-item:has(.js-accordion__panel:not([hidden])) .m-footer-bottom__nav-button-icon::after {
  rotate: 0deg;
}

.m-footer-bottom__nav-item--bottom {
  row-gap: calc(24 * 1rem / var(--font-size__base));
  margin-top: calc(148 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav-link {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color__white);
}

.m-footer-bottom__nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.m-footer-bottom__nav-button-text {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--color__white);
}

.m-footer-bottom__nav-button-icon {
  position: relative;
  flex-shrink: 0;
  width: calc(19 * 1rem / var(--font-size__base));
  height: calc(19 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}
.m-footer-bottom__nav-button-icon::before, .m-footer-bottom__nav-button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(8 * 1rem / var(--font-size__base));
  height: calc(1 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  border-radius: 99px;
  translate: -50% -50%;
  transition: rotate var(--duration__base);
}
.m-footer-bottom__nav-button-icon::after {
  rotate: -90deg;
}

.m-footer-bottom__nav-sublist {
  display: grid;
  row-gap: calc(32 * 1rem / var(--font-size__base));
  padding-left: calc(24 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav-subitem {
  display: grid;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav-subtitle {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-bottom: calc(7 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-footer-bottom__nav-submenu {
  display: grid;
  row-gap: calc(8 * 1rem / var(--font-size__base));
}

.m-footer-bottom__nav-submenu-item {
  position: relative;
  padding-left: calc(14 * 1rem / var(--font-size__base));
}
.m-footer-bottom__nav-submenu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(4 * 1rem / var(--font-size__base));
  height: calc(4 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}

.m-footer-bottom__nav-submenu-link {
  font-size: calc(14 * 1rem / var(--font-size__base));
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: rgb(from var(--color__white) r g b/0.8);
}

.m-footer-bottom__nav-link-privacy {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.m-footer-bottom__copyright {
  font-size: calc(12 * 1rem / var(--font-size__base));
  font-weight: 400;
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.m-flow-card {
  position: relative;
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
  padding-top: calc(48 * 1rem / var(--font-size__base));
  padding-left: calc(32 * 1rem / var(--font-size__base));
}

.m-flow-card__number {
  position: absolute;
  top: calc(20 * 1rem / var(--font-size__base));
  left: calc(4 * 1rem / var(--font-size__base));
  display: grid;
  align-items: center;
  justify-items: center;
  width: calc(70 * 1rem / var(--font-size__base));
  height: calc(70 * 1rem / var(--font-size__base));
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0;
  z-index: 1;
}
.m-flow-card__number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__green-2-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-flow-card__image {
  display: grid;
}
.m-flow-card__image img {
  aspect-ratio: 336/252;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-flow-card__body {
  display: grid;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-flow-card__image__title {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.m-flow-card__image__text {
  letter-spacing: 0.08em;
}

.m-faq {
  position: relative;
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}
.m-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(from var(--color__white) r g b/0.01);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(calc(40 * 1rem / var(--font-size__base)));
          backdrop-filter: blur(calc(40 * 1rem / var(--font-size__base)));
  z-index: -1;
}

.m-faq--home {
  padding-top: calc(200 * 1rem / var(--font-size__base));
}

.m-faq__wrapper {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-faq__list {
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
}

.m-drawer {
  --_duration: var(--duration__base);
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  max-width: calc(1920 * 1rem / var(--font-size__base));
  margin-inline: auto;
  transition: visibility var(--_duration);
  visibility: hidden;
  margin-top: var(--wp-admin--admin-bar--height, 0);
  z-index: var(--_z-index--header-drawer, 99);
}

.m-drawer__backdrop {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
}

.m-drawer__content {
  --_width__left: 619;
  --_width__right: 1301;
  --_column-gap: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(from var(--color__white) r g b/0.5);
  -webkit-backdrop-filter: blur(calc(40 * 1rem / var(--font-size__base)));
          backdrop-filter: blur(calc(40 * 1rem / var(--font-size__base)));
  padding-top: calc(var(--js-height__header, 0px) + var(--_padding-block) * 1rem / var(--font-size__base));
  padding-bottom: calc(var(--_padding-block) * 1rem / var(--font-size__base));
  transition: opacity var(--_duration), visibility var(--_duration);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 2;
}

.m-drawer__image-wrapper {
  position: relative;
  padding-top: calc(135 * 1rem / var(--font-size__base));
  padding-left: calc(40 * 1rem / var(--font-size__base));
}

.m-drawer__image {
  display: grid;
}
.m-drawer__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 537/748;
  width: calc(537 * 1rem / var(--font-size__base));
  max-width: 100%;
}

.m-drawer__nav-wrapper {
  position: relative;
  padding-block: calc(249 * 1rem / var(--font-size__base));
}
.m-drawer__nav-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__dark-green);
  width: 100%;
  height: 100%;
  border-top-left-radius: calc(50 * 1rem / var(--font-size__base));
  border-bottom-left-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-drawer__nav {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: calc(100 * 1rem / var(--font-size__base));
       column-gap: calc(100 * 1rem / var(--font-size__base));
}

.m-drawer__items {
  display: grid;
  row-gap: calc(48 * 1rem / var(--font-size__base));
}

.m-drawer__items--small {
  row-gap: calc(17 * 1rem / var(--font-size__base));
  margin-top: calc(152 * 1rem / var(--font-size__base));
}

.m-drawer__link {
  display: grid;
  row-gap: calc(5 * 1rem / var(--font-size__base));
}

.m-drawer__link-en {
  font-size: calc(58 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.1;
  letter-spacing: 0;
}

.m-drawer__link-ja {
  font-size: calc(15 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.m-drawer__link-small {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.m-drawer__business {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
  margin-top: calc(28 * 1rem / var(--font-size__base));
}

.m-drawer__business-column {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-drawer__business-title {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-bottom: calc(9 * 1rem / var(--font-size__base));
  border-bottom: 1px solid var(--color__white);
}

.m-drawer__business-list {
  display: grid;
  row-gap: calc(14 * 1rem / var(--font-size__base));
}

.m-drawer__business-item {
  position: relative;
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__white);
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding-left: calc(11 * 1rem / var(--font-size__base));
}
.m-drawer__business-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(4 * 1rem / var(--font-size__base));
  height: calc(4 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}

.m-drawer__business-link {
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: rgb(from var(--color__white) r g b/0.8);
  line-height: 1.3;
  letter-spacing: 0.1em;
}

/* 開いた時 */
.m-drawer.is-visible .m-drawer__backdrop {
  opacity: 1;
  visibility: visible;
}

.m-drawer.is-visible .m-drawer__content {
  opacity: 1;
  visibility: visible;
}

.m-corporate-overview {
  position: relative;
}
.m-corporate-overview::after {
  content: "";
  position: absolute;
  bottom: calc(-714 * 1rem / var(--font-size__base));
  left: calc(-1096 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/corporate-overview_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(1766 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1766/1767;
  z-index: -10;
}

.m-corporate-overview__wrapper {
  position: relative;
  padding-block: calc(150 * 1rem / var(--font-size__base));
}
.m-corporate-overview__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-corporate-overview__contents {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-contents-header {
  display: grid;
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-contents-header__subtitle {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-family: var(--font-family_nunito);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.m-contents-header__subtitle-number {
  font-size: calc(32 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.m-contents-header__title {
  font-size: calc(42 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.m-contact-lead__wrapper {
  position: relative;
  display: grid;
  justify-items: center;
  row-gap: calc(15 * 1rem / var(--font-size__base));
  padding-top: calc(60 * 1rem / var(--font-size__base));
  padding-bottom: calc(84 * 1rem / var(--font-size__base));
}
.m-contact-lead__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-contact-lead__wrapper::after {
  content: "";
  position: absolute;
  top: calc(35 * 1rem / var(--font-size__base));
  left: calc(-27 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/contact-lead_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(1303 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1303/365;
  z-index: -1;
}

.m-contact-lead__text {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-contact-form {
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}

.m-contact-form__wrapper {
  margin-top: calc(80 * 1rem / var(--font-size__base));
}

.m-contact-form__tables {
  max-width: calc(1180 * 1rem / var(--font-size__base));
  margin-inline: auto;
}

.m-company-top-message__wrapper {
  position: relative;
  padding-block: calc(150 * 1rem / var(--font-size__base));
  box-shadow: 0 calc(39 * 1rem / var(--font-size__base)) calc(87 * 1rem / var(--font-size__base)) rgb(from var(--color__black) r g b/0.1);
  border-radius: calc(50 * 1rem / var(--font-size__base));
}
.m-company-top-message__wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/common/company-top-message_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(680 * 1rem / var(--font-size__base));
  border-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-company-top-message__text-wrapper {
  display: grid;
  row-gap: calc(48 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-company-top-message__text {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-company-top-message__image {
  display: grid;
  justify-items: center;
  margin-top: calc(100 * 1rem / var(--font-size__base));
}
.m-company-top-message__image img {
  aspect-ratio: 240/41;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(240 * 1rem / var(--font-size__base));
}

.m-company-top-message__icon-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.m-company-top-message__icon-left img {
  aspect-ratio: 268/426;
  width: calc(268 * 1rem / var(--font-size__base));
}

.m-company-top-message__icon-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.m-company-top-message__icon-right img {
  aspect-ratio: 284/426;
  width: calc(284 * 1rem / var(--font-size__base));
}

.m-company-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(50 * 1rem / var(--font-size__base));
       column-gap: calc(50 * 1rem / var(--font-size__base));
  padding-block: calc(70 * 1rem / var(--font-size__base));
  padding-inline: calc(80 * 1rem / var(--font-size__base));
  max-width: calc(1180 * 1rem / var(--font-size__base));
  margin-inline: auto;
}
.m-company-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: calc(40 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-company-info__list {
  display: grid;
  row-gap: 0;
}

.m-company-info__item {
  --_width__left: 150;
  --_width__right: 287;
  --_column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
  padding: calc(24 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-company-info__item:first-child {
  border-top: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-company-info__label {
  font-size: calc(15 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.05em;
}

.m-company-info__value {
  font-size: calc(15 * 1rem / var(--font-size__base));
  letter-spacing: 0.05em;
}

.m-company-info__link {
  color: var(--color__green);
  text-decoration: underline;
}

.m-company-history {
  overflow-x: clip;
}

.m-company-history__wrapper {
  position: relative;
  padding-bottom: calc(45 * 1rem / var(--font-size__base));
  margin-top: calc(96 * 1rem / var(--font-size__base));
  margin-right: calc(50% - 50vw);
}

.m-company-history__item {
  position: relative;
  row-gap: calc(20 * 1rem / var(--font-size__base));
  height: inherit;
  padding: calc(32 * 1rem / var(--font-size__base));
}
.m-company-history__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__green-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-company-history__item-title {
  font-size: calc(32 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.05em;
}

.m-company-history__item-description-wrapper {
  display: grid;
  row-gap: calc(10 * 1rem / var(--font-size__base));
  margin-top: calc(20 * 1rem / var(--font-size__base));
}

.m-company-history__item-description {
  display: grid;
  grid-template-columns: calc(40 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
       column-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-company-history__item-month {
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.08em;
}

.m-company-history__item-text-wrapper {
  display: grid;
  row-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-company-history__item-text {
  font-size: calc(15 * 1rem / var(--font-size__base));
  color: var(--color__white);
  letter-spacing: 0.05em;
}

.m-client {
  display: grid;
  row-gap: calc(34 * 1rem / var(--font-size__base));
}

.m-client--page {
  row-gap: calc(48 * 1rem / var(--font-size__base));
}

.m-client__row-wrapper {
  position: relative;
  display: grid;
  row-gap: calc(48 * 1rem / var(--font-size__base));
  padding: calc(80 * 1rem / var(--font-size__base));
}
.m-client__row-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(from var(--color__gray-2) r g b/0.8);
  width: 100%;
  height: 100%;
  border-radius: calc(30 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-client__header {
  display: grid;
  row-gap: calc(2 * 1rem / var(--font-size__base));
}

.m-client__header-subtitle {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.m-client__header-title {
  font-size: calc(75 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.m-client__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: calc(34 * 1rem / var(--font-size__base));
       column-gap: calc(34 * 1rem / var(--font-size__base));
}

.m-client__item {
  display: flex;
  flex-direction: column;
  background-color: rgb(from var(--color__white) r g b/0.9);
  border-radius: calc(20 * 1rem / var(--font-size__base));
  padding: calc(63 * 1rem / var(--font-size__base)) calc(34 * 1rem / var(--font-size__base)) calc(63 * 1rem / var(--font-size__base)) calc(56 * 1rem / var(--font-size__base));
  box-shadow: 0 calc(0 * 1rem / var(--font-size__base)) calc(60 * 1rem / var(--font-size__base)) rgb(from var(--color__black) r g b/0.1);
  border-left: calc(10 * 1rem / var(--font-size__base)) solid var(--color__blue);
}

.m-client__item--blue {
  border-left-color: var(--color__blue);
}

.m-client__item--green {
  border-left-color: var(--color__green);
}

.m-client__item--large {
  flex: 1;
}

.m-client__item-content {
  display: flex;
  flex-direction: column;
  gap: calc(21 * 1rem / var(--font-size__base));
  height: 100%;
}

.m-client__item-header {
  display: flex;
  flex-direction: column;
  gap: calc(7 * 1rem / var(--font-size__base));
}

.m-client__item-subtitle {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color__blue);
}

.m-client__item--green .m-client__item-subtitle {
  color: var(--color__green);
}

.m-client__item-title {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-client__item-text {
  flex: 1;
}

.m-client__item-description {
  font-size: calc(16 * 1rem / var(--font-size__base));
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
}

.m-client__item-button {
  display: flex;
  justify-content: end;
}

.m-case-client {
  --_width__left: 422;
  --_width__right: 961;
  --_column-gap: 48;
}

.m-case-client-header {
  position: relative;
  padding-top: calc(85 * 1rem / var(--font-size__base));
}
.m-case-client-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(15 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-case-client-header--blue::before {
  background: var(--color__blue-liner-gradient);
}

.m-case-client-header--green::before {
  background: var(--color__green-2-liner-gradient);
}

.m-case-client-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: calc(2 * 1rem / var(--font-size__base));
}

.m-case-client-title-en {
  font-family: var(--font-family__nunito);
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color__white);
}

.m-case-client-title-jp {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--color__white);
  margin-top: calc(2 * 1rem / var(--font-size__base));
}

.m-case-client-subtitle {
  font-size: calc(96 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 600;
  color: var(--color__white);
  line-height: 1.1;
  letter-spacing: 0;
}

.m-case-client-description {
  color: var(--color__white);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-case-client-list {
  display: grid;
  row-gap: calc(32 * 1rem / var(--font-size__base));
}

.m-case-client-item {
  --_width__left: 300;
  --_width__right: 637;
  --_column-gap: 24;
  align-items: center;
  padding-bottom: calc(31 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-case-client-item-image {
  display: grid;
}
.m-case-client-item-image img {
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(10 * 1rem / var(--font-size__base));
}

.m-case-client-item-text {
  display: grid;
  row-gap: calc(13 * 1rem / var(--font-size__base));
}

.m-case-client-item-company {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color__blue);
}

.m-case-client-item-company--green {
  color: var(--color__green);
}

.m-case-client-item-product {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-case-client-item-info {
  display: grid;
  row-gap: calc(3 * 1rem / var(--font-size__base));
}

.m-case-client-item-location {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-case-client-item-detail {
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: rgb(from var(--color__text) r g b/0.7);
}

.m-button {
  --_color__main-default: var(--color__main);
  --_color__sub-default: var(--color__white);
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_duration: var(--duration__base);
  display: grid;
  place-items: center;
  max-width: calc(250 * 1rem / var(--font-size__base));
  width: 100%;
  color: var(--_color__sub);
  font-size: calc(16 * 1rem / var(--font-size__base));
  background-color: var(--_color__main);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__main);
  border-radius: 9999px;
  filter: drop-shadow(0 calc(3 * 1rem / var(--font-size__base)) calc(6 * 1rem / var(--font-size__base)) rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  transition: color var(--_duration), background-color var(--_duration), border-color var(--_duration), filter var(--_duration);
  touch-action: manipulation;
  padding-block: calc(10 * 1rem / var(--font-size__base));
  padding-inline: calc(10 * 1rem / var(--font-size__base));
}
.m-button:focus-visible {
  color: var(--_color__main);
  background-color: var(--_color__sub);
  filter: unset;
}

.m-button--invert {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  border-color: var(--_color__sub);
}

.m-button--sub {
  --_color__main-default: var(--color__sub);
  --_color__sub-default: var(--color__white);
}

.m-business-visual-message__inner {
  position: relative;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  overflow: hidden;
}

.m-business-visual-message__wrapper {
  padding-top: calc(470 * 1rem / var(--font-size__base));
}
.m-business-visual-message__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color__dark-green-4);
  width: 100%;
  height: 100%;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-business-visual-message__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__green-liner-gradient);
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.m-business-visual-message__title-wrapper {
  position: relative;
  display: grid;
  justify-items: end;
  padding-block: calc(96 * 1rem / var(--font-size__base));
  padding-right: calc(208 * 1rem / var(--font-size__base));
}

.m-business-visual-message__title {
  font-size: calc(50 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.08em;
}

.m-business-visual-message__title-bg {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(4.375rem, 1.042rem + 6.94vw, 9.375rem);
  font-family: var(--font-family__nunito);
  font-weight: 600;
  color: rgb(from var(--color__white) r g b/0.15);
  line-height: 1.1;
  letter-spacing: -0.03em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.m-business-visual-message__image {
  display: grid;
}
.m-business-visual-message__image img {
  width: calc(303 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-business-flow__wrapper {
  position: relative;
  padding-block: calc(150 * 1rem / var(--font-size__base));
  padding-left: calc(126 * 1rem / var(--font-size__base));
}
.m-business-flow__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-business-flow__header {
  display: grid;
  grid-template-columns: calc(230 * 1rem / var(--font-size__base)) 1fr;
  align-items: end;
  -moz-column-gap: calc(167 * 1rem / var(--font-size__base));
       column-gap: calc(167 * 1rem / var(--font-size__base));
}

.m-business-flow__header-text {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-bottom: calc(18 * 1rem / var(--font-size__base));
}

.m-business-flow__slider {
  position: relative;
  padding-bottom: calc(48 * 1rem / var(--font-size__base));
  margin-top: calc(66 * 1rem / var(--font-size__base));
}

.m-business-flow-card {
  position: relative;
  padding-top: calc(48 * 1rem / var(--font-size__base));
  padding-bottom: calc(32 * 1rem / var(--font-size__base));
  padding-inline: calc(24 * 1rem / var(--font-size__base));
}
.m-business-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-business-flow-card__number {
  position: absolute;
  top: calc(-30 * 1rem / var(--font-size__base));
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  align-items: center;
  justify-items: center;
  width: calc(60 * 1rem / var(--font-size__base));
  height: calc(60 * 1rem / var(--font-size__base));
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  letter-spacing: 0;
  z-index: 1;
}
.m-business-flow-card__number::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color__green-2-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-business-flow-card__text {
  font-size: calc(26 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.m-business-client {
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(50 * 1rem / var(--font-size__base));
}

.m-business-client__header {
  display: grid;
  grid-template-columns: calc(395 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(167 * 1rem / var(--font-size__base));
       column-gap: calc(167 * 1rem / var(--font-size__base));
}

.m-business-client__header-text {
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding-top: calc(36 * 1rem / var(--font-size__base));
}

.m-business-client__wrapper {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-business-case__wrapper {
  display: grid;
  align-items: center;
  gap: calc(120 * 1rem / var(--font-size__base));
}

.m-business-area__wrapper {
  position: relative;
  padding-top: calc(135 * 1rem / var(--font-size__base));
  padding-bottom: calc(635 * 1rem / var(--font-size__base));
}

.m-business-area__header {
  display: grid;
  grid-template-columns: calc(213 * 1rem / var(--font-size__base)) 1fr;
  align-items: start;
  -moz-column-gap: calc(80 * 1rem / var(--font-size__base));
       column-gap: calc(80 * 1rem / var(--font-size__base));
}

.m-business-area__header-content {
  padding-top: calc(40 * 1rem / var(--font-size__base));
}

.m-business-area__subtitle {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.m-business-area__list-wrapper {
  display: grid;
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-business-area__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  -moz-column-gap: calc(32 * 1rem / var(--font-size__base));
       column-gap: calc(32 * 1rem / var(--font-size__base));
  row-gap: calc(6 * 1rem / var(--font-size__base));
  max-width: calc(481 * 1rem / var(--font-size__base));
  padding: calc(48 * 1rem / var(--font-size__base));
}
.m-business-area__list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-business-area__item {
  position: relative;
  font-size: calc(16 * 1rem / var(--font-size__base));
  letter-spacing: 0.08em;
  padding-left: calc(17 * 1rem / var(--font-size__base));
}
.m-business-area__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color__red-liner-gradient);
  width: calc(7 * 1rem / var(--font-size__base));
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.m-business-area__image {
  display: grid;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.m-business-area__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1431/1060;
  width: calc(1431 * 1rem / var(--font-size__base));
}

.m-business-archive {
  padding-top: calc(106 * 1rem / var(--font-size__base));
}

.m-business-archive__top-contents {
  --_width__left: 780;
  --_width__right: 621;
  --_column-gap: 30;
  position: relative;
  align-items: start;
}

.m-business-archive__top-contents-title {
  font-size: calc(50 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  background-image: var(--color__green-liner-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.m-business-archive__top-contents-body {
  margin-top: calc(80 * 1rem / var(--font-size__base));
}

.m-business-archive__top-contents-subtitle {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__green);
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.m-business-archive__top-contents-text-wrapper {
  display: grid;
  row-gap: calc(12 * 1rem / var(--font-size__base));
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-business-archive__top-contents-text {
  letter-spacing: 0.08em;
}

.m-business-archive__top-contents-image {
  display: grid;
}
.m-business-archive__top-contents-image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 773/626;
  width: clamp(330px, 34.667px + 38.455vw, 773px);
}

.m-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: calc(21 * 1rem / var(--font-size__base));
       column-gap: calc(21 * 1rem / var(--font-size__base));
  row-gap: calc(16 * 1rem / var(--font-size__base));
}

.m-breadcrumbs__item {
  position: relative;
  font-size: calc(14 * 1rem / var(--font-size__base));
  color: var(--color__gray-3);
  line-height: 1;
  letter-spacing: 0.03em;
}
.m-breadcrumbs__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-12 * 1rem / var(--font-size__base));
  width: calc(6 * 1rem / var(--font-size__base));
  height: calc(6 * 1rem / var(--font-size__base));
  transform: translateY(-50%) rotate(45deg);
  border: 0;
  border-top: solid calc(1 * 1rem / var(--font-size__base)) var(--color__gray-3);
  border-right: solid calc(1 * 1rem / var(--font-size__base)) var(--color__gray-3);
}
.m-breadcrumbs__item:last-child::before {
  display: none;
}

.m-breadcrumbs__current {
  color: var(--color__text);
}

.m-alliance {
  position: relative;
  overflow-x: clip;
}

.m-alliance__wrapper {
  position: relative;
  padding-block: calc(200 * 1rem / var(--font-size__base));
}
.m-alliance__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color__gray-2);
  border-radius: calc(50 * 1rem / var(--font-size__base));
  z-index: -1;
}
.m-alliance__wrapper::after {
  content: "";
  position: absolute;
  top: calc(574 * 1rem / var(--font-size__base));
  left: calc(-150 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/alliance-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(1726 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1726/859;
  z-index: -1;
}

.m-alliance__wrapper--page::after {
  top: calc(272 * 1rem / var(--font-size__base));
}

.m-alliance__message {
  margin-top: calc(210 * 1rem / var(--font-size__base));
}

.m-alliance__message--page {
  margin: 0;
}

.m-alliance__message-container {
  position: relative;
  display: grid;
  row-gap: calc(100 * 1rem / var(--font-size__base));
  justify-items: center;
}

.m-alliance__message-wrapper {
  position: relative;
}

.m-alliance__message-text {
  display: grid;
  row-gap: calc(26 * 1rem / var(--font-size__base));
}

.m-alliance__message-main {
  font-size: calc(46 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.m-alliance__message-sub {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color__red);
}

.m-alliance__message-image-wrapper--page .m-alliance__message-image--right {
  top: calc(-108 * 1rem / var(--font-size__base));
}
.m-alliance__message-image-wrapper--page .m-alliance__message-image--left {
  bottom: calc(-698 * 1rem / var(--font-size__base));
}

.m-alliance__message-image {
  display: grid;
  position: absolute;
  z-index: -1;
}
.m-alliance__message-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.m-alliance__message-image--right {
  top: calc(-122 * 1rem / var(--font-size__base));
  right: calc(clamp(11.875rem, -3rem + 28vw, 33rem) * -1);
}
.m-alliance__message-image--right img {
  aspect-ratio: 353/384;
  width: calc(353 * 1rem / var(--font-size__base));
}

.m-alliance__message-image--left {
  position: absolute;
  bottom: calc(-912 * 1rem / var(--font-size__base));
  left: calc(clamp(11.375rem, -3.6rem + 27vw, 33.875rem) * -1);
}
.m-alliance__message-image--left img {
  aspect-ratio: 475/518;
  width: calc(475 * 1rem / var(--font-size__base));
}

.m-alliance__message-content {
  display: grid;
  row-gap: calc(10 * 1rem / var(--font-size__base));
}

.m-alliance__message-section {
  display: grid;
  row-gap: calc(24 * 1rem / var(--font-size__base));
}

.m-alliance__message-description {
  letter-spacing: 0.08em;
}

.m-alliance__collaboration {
  margin-top: calc(200 * 1rem / var(--font-size__base));
}

.m-alliance__collaboration-container {
  position: relative;
  max-width: calc(1098 * 1rem / var(--font-size__base));
  margin-left: auto;
}

.m-alliance__collaboration-slider {
  position: relative;
  padding-bottom: calc(46 * 1rem / var(--font-size__base));
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-alliance__collaboration-item {
  position: relative;
  height: inherit;
  padding: calc(48 * 1rem / var(--font-size__base));
}
.m-alliance__collaboration-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  border-radius: calc(20 * 1rem / var(--font-size__base));
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-alliance__collaboration-item-header {
  display: grid;
  row-gap: calc(7 * 1rem / var(--font-size__base));
}

.m-alliance__collaboration-item-title {
  font-size: calc(14 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color__green);
}

.m-alliance__collaboration-item-subtitle {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-alliance__collaboration-item-text {
  letter-spacing: 0.08em;
  color: rgb(from var(--color__text) r g b/0.7);
  margin-top: calc(20 * 1rem / var(--font-size__base));
}

.m-alliance__button {
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-alliance-proposal__wrapper {
  position: relative;
  padding-block: calc(150 * 1rem / var(--font-size__base));
}
.m-alliance-proposal__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(from var(--color__dark-green-3) r g b/0.9);
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-alliance-proposal__wrapper-inner {
  max-width: calc(1032 * 1rem / var(--font-size__base));
  margin-inline: auto;
}

.m-alliance-proposal__item-wrapper {
  display: grid;
  row-gap: calc(20 * 1rem / var(--font-size__base));
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.m-alliance-proposal__item {
  position: relative;
  display: grid;
  grid-template-columns: calc(88 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(48 * 1rem / var(--font-size__base));
       column-gap: calc(48 * 1rem / var(--font-size__base));
  align-items: center;
  padding-top: calc(42 * 1rem / var(--font-size__base));
  padding-bottom: calc(32 * 1rem / var(--font-size__base));
  padding-inline: calc(48 * 1rem / var(--font-size__base));
}
.m-alliance-proposal__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color__white);
  border-radius: calc(15 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-alliance-proposal__item-image {
  display: grid;
}
.m-alliance-proposal__item-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-alliance-proposal__item-content {
  display: grid;
  row-gap: calc(18 * 1rem / var(--font-size__base));
}

.m-alliance-proposal__item-title {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-alliance-proposal__item-text {
  letter-spacing: 0.08em;
}

.m-alliance-proposal-block {
  --_width__left: 397;
  --_width__right: 570;
  --_column-gap: 65;
  align-items: start;
}

.m-alliance-proposal-block__figure {
  display: grid;
  position: relative;
}
.m-alliance-proposal-block__figure img {
  position: absolute;
  top: calc(-60 * 1rem / var(--font-size__base));
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 690/591;
  width: calc(690 * 1rem / var(--font-size__base));
}

.m-alliance-proposal-block__text-wrapper {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-alliance-proposal-block__text {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.08em;
}

.m-alliance-partners-merit__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(48 * 1rem / var(--font-size__base));
  margin-top: calc(104 * 1rem / var(--font-size__base));
}

.m-alliance-model__header {
  display: grid;
  grid-template-columns: calc(366 * 1rem / var(--font-size__base)) 1fr;
  align-items: end;
  -moz-column-gap: calc(167 * 1rem / var(--font-size__base));
       column-gap: calc(167 * 1rem / var(--font-size__base));
}

.m-alliance-model__header-text {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: calc(12 * 1rem / var(--font-size__base));
}

.m-alliance-model__wrapper {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-alliance-model-block {
  --_width__left: 486;
  --_width__right: 822;
  --_column-gap: 123;
  align-items: start;
}

.m-alliance-model-block__figure {
  display: grid;
}
.m-alliance-model-block__figure img {
  aspect-ratio: 486/486;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-alliance-model-block__contents {
  display: grid;
  row-gap: calc(24 * 1rem / var(--font-size__base));
}

.m-alliance-model-block__item {
  display: grid;
  grid-template-columns: calc(28 * 1rem / var(--font-size__base)) 1fr;
  -moz-column-gap: calc(48 * 1rem / var(--font-size__base));
       column-gap: calc(48 * 1rem / var(--font-size__base));
  padding-bottom: calc(31 * 1rem / var(--font-size__base));
  border-bottom: calc(1 * 1rem / var(--font-size__base)) solid var(--color__white-2);
}

.m-alliance-model-block__number {
  font-size: calc(26 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  padding-top: calc(12 * 1rem / var(--font-size__base));
}

.m-alliance-model-block__content {
  display: grid;
  row-gap: calc(18 * 1rem / var(--font-size__base));
  padding-top: calc(10 * 1rem / var(--font-size__base));
}

.m-alliance-model-block__title {
  font-size: calc(25 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-alliance-model-block__text {
  letter-spacing: 0.08em;
}

.m-alliance-flow__wrapper {
  position: relative;
  padding-block: calc(150 * 1rem / var(--font-size__base));
  padding-left: calc(91 * 1rem / var(--font-size__base));
}
.m-alliance-flow__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__gray-2);
  width: 100%;
  height: 100%;
  border-radius: calc(100 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-alliance-flow__header {
  display: grid;
  grid-template-columns: calc(221 * 1rem / var(--font-size__base)) 1fr;
  align-items: end;
  -moz-column-gap: calc(167 * 1rem / var(--font-size__base));
       column-gap: calc(167 * 1rem / var(--font-size__base));
  padding-left: calc(35 * 1rem / var(--font-size__base));
}

.m-alliance-flow__header-text {
  color: var(--color__black);
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding-bottom: calc(18 * 1rem / var(--font-size__base));
}

.m-alliance-flow__slider {
  position: relative;
  margin-top: calc(32 * 1rem / var(--font-size__base));
}

.m-alliance-flow__button {
  padding-left: calc(67 * 1rem / var(--font-size__base));
  margin-top: calc(48 * 1rem / var(--font-size__base));
}

.m-alliance-background__wrapper {
  display: grid;
  row-gap: calc(48 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.m-alliance-background-block {
  --_width__left: 414;
  --_width__right: 590;
  --_column-gap: 48;
  position: relative;
  align-items: start;
  padding: calc(64 * 1rem / var(--font-size__base));
}
.m-alliance-background-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__green-2-liner-gradient);
  width: 100%;
  height: 100%;
  border-radius: calc(20 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-alliance-background-block__content {
  display: grid;
  row-gap: calc(32 * 1rem / var(--font-size__base));
  padding-top: calc(15 * 1rem / var(--font-size__base));
}

.m-alliance-background-block__title {
  font-size: calc(28 * 1rem / var(--font-size__base));
  font-weight: 700;
  color: var(--color__white);
  letter-spacing: 0.1em;
}

.m-alliance-background-block__text {
  color: var(--color__white);
  letter-spacing: 0.08em;
}

.m-alliance-background-block__figure {
  display: grid;
}
.m-alliance-background-block__figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 590/300;
  border-radius: calc(20 * 1rem / var(--font-size__base));
}

.m-accordion {
  --_duration: var(--duration__base);
}

.m-accordion__button {
  position: relative;
  display: grid;
  grid-template-columns: calc(50 * 1rem / var(--font-size__base)) 1fr calc(40 * 1rem / var(--font-size__base));
  align-items: center;
  -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
       column-gap: calc(16 * 1rem / var(--font-size__base));
  width: 100%;
  padding: calc(32 * 1rem / var(--font-size__base));
  background-color: var(--color__gray-f2f4f5);
  border-radius: calc(16 * 1rem / var(--font-size__base));
  border: none;
}
.m-accordion__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color__gray-2);
  border-radius: calc(16 * 1rem / var(--font-size__base));
  z-index: -1;
}

.m-accordion__button-title {
  font-size: calc(50 * 1rem / var(--font-size__base));
  font-family: var(--font-family__nunito);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.m-accordion__button-text {
  font-size: calc(22 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
}

.m-accordion__button-icon {
  position: relative;
  width: calc(40 * 1rem / var(--font-size__base));
  height: calc(40 * 1rem / var(--font-size__base));
  background: var(--color__green-liner-gradient);
  border-radius: 50%;
}

.m-accordion__button-icon::before,
.m-accordion__button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(16 * 1rem / var(--font-size__base));
  height: calc(2 * 1rem / var(--font-size__base));
  background-color: var(--color__white);
  border-radius: 99px;
  translate: -50% -50%;
}

.m-accordion__button-icon::after {
  transition: rotate var(--_duration);
  rotate: -90deg;
}

.m-accordion__panel-content {
  display: grid;
  grid-template-columns: calc(41 * 1rem / var(--font-size__base)) 1fr;
  align-items: center;
  -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
       column-gap: calc(16 * 1rem / var(--font-size__base));
  row-gap: calc(16 * 1rem / var(--font-size__base));
  padding: calc(32 * 1rem / var(--font-size__base));
}

.m-accordion__panel-title {
  font-family: var(--font-family__nunito);
  font-size: calc(40 * 1rem / var(--font-size__base));
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color__blue);
}

.m-accordion__panel-text {
  letter-spacing: 0.08em;
}

.m-accordion__button:has(+ .js-accordion__panel:not([hidden])) .m-accordion__button-icon {
  background: var(--color__green-liner-gradient);
}

.m-accordion__button:has(+ .js-accordion__panel:not([hidden])) .m-accordion__button-icon::after {
  rotate: 0deg;
}

.m-404 {
  padding-top: calc(150 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}

.m-404__wrapper {
  display: grid;
  justify-items: center;
  row-gap: calc(32 * 1rem / var(--font-size__base));
}

.m-404__title {
  font-family: var(--font-family__nunito);
  font-size: calc(120 * 1rem / var(--font-size__base));
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.m-404__text {
  font-size: calc(24 * 1rem / var(--font-size__base));
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}

.m-404__button {
  display: grid;
  justify-items: center;
  margin-top: calc(80 * 1rem / var(--font-size__base));
}

/*
 * ページについて
 * 各ページ固有のスタイルを定義します。
 * ページごとのユニークなスタイルや、ページ固有のコンポーネントが含まれています。
 * クラス名は、p-home-blockのように命名します。
 */
.p-single-business__breadcrumb {
  margin-top: calc(169 * 1rem / var(--font-size__base));
}

.p-single-business__outer {
  position: -webkit-sticky;
  position: sticky;
  overflow-x: clip;
}

.p-single-business__outer-bg {
  position: relative;
}
.p-single-business__outer-bg::before {
  content: "";
  position: absolute;
  bottom: calc(952 * 1rem / var(--font-size__base));
  left: calc(-1096 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/operation-maintenance-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(1767 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1766/1767;
  z-index: -1;
}

.p-single-business__merit {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-single-business__operation-maintenance {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-single-business__visual-message {
  padding-block: calc(200 * 1rem / var(--font-size__base));
}

.p-recruit__outer {
  position: relative;
  overflow-x: clip;
}
.p-recruit__outer::before {
  content: "";
  position: absolute;
  top: calc(-164 * 1rem / var(--font-size__base));
  left: calc(-104 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/recruit_outer_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  width: calc(1811 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1811/2957;
  z-index: -10;
}

.p-recruit__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

.p-recruit__faq {
  position: relative;
  overflow-x: clip;
}

.p-recruit__faq-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-recruit__faq-bg::before {
  content: "";
  position: absolute;
  top: calc(-244 * 1rem / var(--font-size__base));
  left: calc(-632 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/recruit_faq_bg_left.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(1223 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 1223/1213;
  z-index: -10;
}
.p-recruit__faq-bg::after {
  content: "";
  position: absolute;
  bottom: calc(-150 * 1rem / var(--font-size__base));
  right: calc(-260 * 1rem / var(--font-size__base));
  background-image: url("../../assets/images/common/recruit_faq_bg_right.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(875 * 1rem / var(--font-size__base));
  height: auto;
  aspect-ratio: 875/867;
  z-index: -10;
}

.p-privacy__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

.p-news__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

.p-home__mv {
  margin-top: 0;
}

.p-home__outer {
  position: -webkit-sticky;
  position: sticky;
  padding-top: calc(200 * 1rem / var(--font-size__base));
  margin-top: calc(100 * 1rem / var(--font-size__base));
  overflow-x: clip;
}

.p-contact__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

.p-contact__lead {
  margin-top: calc(100 * 1rem / var(--font-size__base));
}

.p-company__breadcrumb {
  margin-top: calc(267 * 1rem / var(--font-size__base));
}

.p-company__top-message {
  margin-top: calc(106 * 1rem / var(--font-size__base));
}

.p-company__corporate-overview {
  margin-top: calc(154 * 1rem / var(--font-size__base));
}

.p-company__history {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-business__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

.p-business__outer {
  position: -webkit-sticky;
  position: sticky;
  overflow-x: clip;
}

.p-business__flow {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-business__case {
  margin-top: calc(147 * 1rem / var(--font-size__base));
}

.p-business__alliance {
  margin-top: calc(153 * 1rem / var(--font-size__base));
  padding-bottom: calc(200 * 1rem / var(--font-size__base));
}

.p-alliance__message {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-alliance__breadcrumb {
  margin-top: calc(188 * 1rem / var(--font-size__base));
}

.p-alliance__background {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-alliance__outer {
  position: -webkit-sticky;
  position: sticky;
  margin-top: calc(150 * 1rem / var(--font-size__base));
  overflow-x: clip;
}

.p-alliance__proposal {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-alliance__model {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-alliance__flow {
  margin-top: calc(150 * 1rem / var(--font-size__base));
}

.p-404__breadcrumb {
  margin-top: calc(266 * 1rem / var(--font-size__base));
}

/*
 * ユーティリティについて
 * 再利用可能なユーティリティクラスを定義します。
 * ユーティリティクラスは、コンポーネントやページのスタイルを簡潔に記述するために使用されます。
 * クラス名は、u-brのように命名します。
 */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* PCでのみ表示 */
/* スマホでのみ表示 */
.u-hover--opacity {
  transition: opacity var(--duration__base);
}
.u-hover--opacity:focus-visible {
  opacity: var(--opacity__hover);
}

.u-hover--drop-shadow {
  transition: filter var(--duration__base);
}
.u-hover--drop-shadow:focus-visible {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}

.u-hover--color-main {
  transition: color var(--duration__base);
}
.u-hover--color-main:focus-visible {
  color: var(--color__blue);
}

.u-hover--underline-1px {
  position: relative;
}
.u-hover--underline-1px:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.u-hover--underline-1px::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentcolor;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration__base);
}

.u-hover--underline-2px {
  position: relative;
}
.u-hover--underline-2px:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.u-hover--underline-2px::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: currentcolor;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration__base);
}

.u-font-weight--100 {
  font-weight: 100;
}

.u-font-weight--200 {
  font-weight: 200;
}

.u-font-weight--300 {
  font-weight: 300;
}

.u-font-weight--400 {
  font-weight: 400;
}

.u-font-weight--500 {
  font-weight: 500;
}

.u-font-weight--600 {
  font-weight: 600;
}

.u-font-weight--700 {
  font-weight: 700;
}

.u-font-weight--800 {
  font-weight: 800;
}

.u-font-weight--900 {
  font-weight: 900;
}

.u-color--blue {
  color: var(--color__blue);
}

.u-color--red {
  color: var(--color__red);
}

.u-color--green {
  color: var(--color__green);
}

.u-color--white {
  color: var(--color__white);
}

.u-br {
  display: inline-block;
}

.u-bg--main {
  background-color: var(--color__main);
}

.u-bg--main-light {
  background-color: var(--color__main-light);
}

@media (min-width: 768px){
  .swiper-slide--history-wide {
    aspect-ratio: 400/306;
    width: calc(400 * 1rem / var(--font-size__base));
  }
  .l-inner--800 {
    --_max-width: 800;
  }
  .l-inner--1000 {
    --_max-width: 1000;
  }
  .l-inner--1170 {
    --_max-width: 1170;
  }
  .l-inner--1180 {
    --_max-width: 1180;
  }
  .l-inner--1400 {
    --_max-width: 1400;
  }
  .l-inner--1431 {
    --_max-width: 1431;
  }
  .l-inner--1476 {
    --_max-width: 1476;
  }
  .l-inner--1520 {
    --_max-width: 1520;
  }
  .l-inner--1592 {
    --_max-width: 1592;
  }
  .l-inner--1595 {
    --_max-width: 1595;
  }
  .l-inner--1600 {
    --_max-width: 1600;
  }
  .l-inner--1840 {
    --_max-width: 1840;
  }
  .l-3-columns {
    --_width__left: 400;
    --_width__center: 400;
    --_width__right: 840;
    --_column-gap: 40;
    --_width__columns: calc(
      var(--_width__left) + var(--_width__center) + var(--_width__right)
    );
    --_width__gaps: calc(var(--_column-gap) * 2);
    --_width__total: calc(var(--_width__columns) + var(--_width__gaps));
    display: grid;
    grid-template-columns: calc(var(--_width__left) / var(--_width__total) * 100%) calc(var(--_width__center) / var(--_width__total) * 100%) calc(var(--_width__right) / var(--_width__total) * 100%);
    -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
         column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
  }
  .l-2-columns-pc {
    display: grid;
    grid-template-columns: calc(var(--_width__left) / var(--_width__total) * 100%) calc(var(--_width__right) / var(--_width__total) * 100%);
    -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
         column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
  }
  .l-2-columns-pc--release-left {
    margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .l-2-columns-pc--release-right {
    margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .l-2-columns-pc--reverse {
    grid-template-columns: calc(var(--_width__right) / var(--_width__total) * 100%) calc(var(--_width__left) / var(--_width__total) * 100%);
  }
  .l-2-columns-pc--reverse > *:last-child {
    order: -1;
  }
  .l-2-columns-pc--release-left.l-2-columns-pc--reverse {
    margin-right: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
    margin-left: auto;
  }
  .l-2-columns-pc--release-right.l-2-columns-pc--reverse {
    margin-right: auto;
    margin-left: max(50% - var(--js-width__viewport) / 2, 50% - var(--max-width__base) * 1px / 2);
  }
  .m-sub-mv--alliance {
    padding-top: calc(234 * 1rem / var(--font-size__base));
  }
  .m-section-header__subtitle--contents {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-section-header__subtitle--contact {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-section-header__subtitle--large {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-section-header__title--large {
    font-size: calc(120 * 1rem / var(--font-size__base));
  }
  .m-section-header__title--small {
    font-size: calc(70 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item-button {
    display: none;
  }
  .m-footer-bottom__nav-button {
    display: none;
  }
  .m-footer-bottom__nav-sublist-wrapper {
    display: block;
    grid-template-rows: 1fr;
    margin-top: 0;
  }
  .m-footer-bottom__nav-sublist-wrapper[hidden] {
    grid-template-rows: 0fr;
  }
  .m-client__row--second {
    grid-template-columns: repeat(3, 1fr);
  }
  .m-case-client-item:first-child {
    --_width__left: 700;
    --_width__right: 229;
    --_column-gap: 32;
  }
  .m-case-client-item-image--large img {
    aspect-ratio: 700/525;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .m-case-client-item-text--large {
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-company--large {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-product--large {
    font-size: calc(26 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-info--large {
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-location--large {
    font-size: calc(26 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-detail--large {
    font-size: calc(19 * 1rem / var(--font-size__base));
  }
  .m-alliance__inner {
    max-width: calc(1180 * 1rem / var(--font-size__base));
    margin-inline: auto;
  }
  .m-alliance__container {
    max-width: calc(741 * 1rem / var(--font-size__base));
    margin-inline: auto;
  }
  .u-only--sp {
    display: none;
  }
}

@media (max-width: 1481px){
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
}

@media (max-width: 767px){
  :root {
    --width__breakpoint: 390;
    --space-inline__base: 20;
    --max-width__base: 600;
    --space__section--base: 30;
    --radius__base: 13;
  }
  html {
    font-size: calc(var(--_font-size) * 1px);
  }
  .swiper-slide--case {
    aspect-ratio: 250/241;
    width: calc(250 * 1rem / var(--font-size__base));
  }
  .swiper-button-next.swiper-button-next--case {
    top: calc(-40 * 1rem / var(--font-size__base));
    right: calc(20 * 1rem / var(--font-size__base));
    width: calc(50 * 1rem / var(--font-size__base));
    height: calc(50 * 1rem / var(--font-size__base));
  }
  .swiper-button-prev.swiper-button-prev--case {
    top: calc(-40 * 1rem / var(--font-size__base));
    right: calc(120 * 1rem / var(--font-size__base));
    width: calc(50 * 1rem / var(--font-size__base));
    height: calc(50 * 1rem / var(--font-size__base));
  }
  .swiper-slide--flow {
    width: 100%;
  }
  .swiper-slide--history {
    width: calc(320 * 1rem / var(--font-size__base));
  }
  .swiper-button-next.swiper-button-next--history {
    top: calc(-86 * 1rem / var(--font-size__base));
    right: calc(20 * 1rem / var(--font-size__base));
    left: unset;
    width: calc(50 * 1rem / var(--font-size__base));
    height: calc(50 * 1rem / var(--font-size__base));
  }
  .swiper-button-prev.swiper-button-prev--history {
    top: calc(-86 * 1rem / var(--font-size__base));
    right: calc(120 * 1rem / var(--font-size__base));
    left: unset;
    width: calc(50 * 1rem / var(--font-size__base));
    height: calc(50 * 1rem / var(--font-size__base));
  }
  .swiper-slide--business-flow {
    width: 100%;
  }
  .swiper--our-service {
    margin-left: 0;
  }
  .swiper-slide--our-service {
    width: 100%;
  }
  .swiper--business-visual-message {
    top: calc(-32 * 1rem / var(--font-size__base));
    width: 110%;
  }
  .swiper-slide--business-visual-message {
    width: calc(129 * 1rem / var(--font-size__base));
  }
  .l-page__footer {
    margin-top: calc(65 * 1rem / var(--font-size__base));
  }
  .l-inner {
    --_max-width: var(--max-width__base, 600);
  }
  .l-container--sidebar {
    grid-template-columns: unset;
    row-gap: calc(32 * 1rem / var(--font-size__base));
  }
  .l-4-columns {
    grid-template-columns: auto;
    row-gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-thanks {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(96 * 1rem / var(--font-size__base));
  }
  .m-thanks__wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-thanks__title {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-thanks__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-thanks__button {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-text-bg img {
    aspect-ratio: 1282/92;
    width: calc(1282 * 1rem / var(--font-size__base));
  }
  .m-sub-mv {
    padding-top: calc(207 * 1rem / var(--font-size__base));
  }
  .m-sub-mv--business {
    padding-top: calc(156 * 1rem / var(--font-size__base));
  }
  .m-single-business-case__wrapper {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(96 * 1rem / var(--font-size__base));
    padding-inline: calc(16 * 1rem / var(--font-size__base));
  }
  .m-single-business-case__wrapper::before {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-single-business-case__contents {
    grid-template-columns: auto;
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-section-header--recruit {
    justify-items: center;
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-section-header__subtitle {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-section-header__title {
    font-size: calc(50 * 1rem / var(--font-size__base));
  }
  .m-section-header__title--medium {
    font-size: calc(40 * 1rem / var(--font-size__base));
  }
  .m-section-header__title--operation-maintenance {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .m-section-header__title--contents {
    font-size: calc(40 * 1rem / var(--font-size__base));
  }
  .m-section-header__title--contact {
    font-size: calc(40 * 1rem / var(--font-size__base));
  }
  .m-section-header__title-image--recruit img {
    aspect-ratio: 165/55;
    width: calc(165 * 1rem / var(--font-size__base));
  }
  .m-section-header__title-image--contact {
    justify-items: center;
  }
  .m-section-header__title-image--contact img {
    aspect-ratio: 144/44;
    width: calc(144 * 1rem / var(--font-size__base));
  }
  .m-section-header--map {
    justify-items: center;
  }
  .m-schedule {
    padding-inline: calc(14 * 1rem / var(--font-size__base));
  }
  .m-schedule__table th,
  .m-schedule__table td {
    padding-block: calc(12 * 1rem / var(--font-size__base));
    padding-inline: calc(7 * 1rem / var(--font-size__base));
  }
  .m-schedule__table th {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-schedule__table td {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-schedule__note {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices {
    padding-top: calc(72 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__wrapper {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__list {
    row-gap: calc(72 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__item {
    display: grid;
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__item-header {
    padding-bottom: calc(24 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__item-name {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__item-body {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__qa {
    grid-template-columns: auto;
    row-gap: calc(8 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__qa-icon {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-recruit-voices__qa-question {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork {
    padding-top: calc(70 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__title {
    font-size: calc(26 * 1rem / var(--font-size__base));
    text-align: center;
  }
  .m-recruit-teamwork__description-wrapper {
    margin-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__description {
    font-size: calc(18 * 1rem / var(--font-size__base));
    letter-spacing: 0.05em;
    text-align: left;
  }
  .m-recruit-teamwork__subtitle-wraper {
    position: relative;
    top: unset;
    padding-block: calc(64 * 1rem / var(--font-size__base));
    margin-top: calc(130 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__subtitle-bg-text {
    font-size: calc(70 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__subtitle {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image-wrapper {
    padding-bottom: calc(418 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--01 {
    top: calc(-132 * 1rem / var(--font-size__base));
    left: clamp(-7.125rem, -14rem + 28vw, 0rem);
  }
  .m-recruit-teamwork__image--01 img {
    width: calc(178 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--02 {
    top: calc(210 * 1rem / var(--font-size__base));
    left: clamp(-8.125rem, -15.898rem + 33.16vw, 0rem);
    right: unset;
  }
  .m-recruit-teamwork__image--02 img {
    width: calc(155 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--03 {
    top: calc(78 * 1rem / var(--font-size__base));
    left: clamp(1.125rem, -3rem + 14vw, 5rem);
    right: unset;
  }
  .m-recruit-teamwork__image--03 img {
    width: calc(110 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--04 {
    top: calc(288 * 1rem / var(--font-size__base));
    left: clamp(6.875rem, 2.092rem + 20.41vw, 11.875rem);
    right: unset;
  }
  .m-recruit-teamwork__image--04 img {
    width: calc(114 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--05 {
    top: calc(-230 * 1rem / var(--font-size__base));
    right: clamp(-5.375rem, -10.517rem + 21.94vw, 0rem);
  }
  .m-recruit-teamwork__image--05 img {
    width: calc(132 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--06 {
    top: calc(-22 * 1rem / var(--font-size__base));
    right: clamp(-5.5rem, -10.761rem + 22.45vw, 0rem);
    left: unset;
  }
  .m-recruit-teamwork__image--06 img {
    width: calc(216 * 1rem / var(--font-size__base));
  }
  .m-recruit-teamwork__image--07 {
    top: calc(224 * 1rem / var(--font-size__base));
    right: clamp(-5.375rem, -10.517rem + 21.94vw, 0rem);
  }
  .m-recruit-teamwork__image--07 img {
    width: calc(134 * 1rem / var(--font-size__base));
  }
  .m-recruit-table {
    padding: calc(40 * 1rem / var(--font-size__base)) calc(20 * 1rem / var(--font-size__base));
  }
  .m-recruit-table::before {
    border-radius: calc(20 * 1rem / var(--font-size__base));
  }
  .m-recruit-table__row {
    display: grid;
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding: calc(16 * 1rem / var(--font-size__base)) 0;
  }
  .m-recruit-table__label {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-recruit-table__value {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-recruit-requirements {
    padding-block: calc(96 * 1rem / var(--font-size__base));
  }
  .m-recruit-requirements__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-recruit-requirements__tabs {
    grid-template-columns: auto;
    border-radius: calc(20 * 1rem / var(--font-size__base));
  }
  .m-recruit-requirements__tab {
    width: 100%;
  }
  .m-recruit-jobs {
    padding-top: calc(96 * 1rem / var(--font-size__base));
    padding-bottom: calc(72 * 1rem / var(--font-size__base));
  }
  .m-recruit-jobs__wrapper {
    row-gap: calc(32 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-recruit-jobs-block {
    display: grid;
    grid-template-columns: auto;
    row-gap: calc(32 * 1rem / var(--font-size__base));
  }
  .m-recruit-jobs-block__description {
    letter-spacing: 0.05em;
    margin-top: calc(14 * 1rem / var(--font-size__base));
  }
  .m-recruit-jobs-block__icons {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-recruit-jobs__icon img {
    width: 100%;
  }
  .m-privacy {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(172 * 1rem / var(--font-size__base));
  }
  .m-privacy__title {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-privacy__content h3 {
    font-size: calc(16 * 1rem / var(--font-size__base));
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-privacy__content h3 + p {
    margin-top: calc(12 * 1rem / var(--font-size__base));
  }
  .m-privacy__content p {
    font-size: calc(14 * 1rem / var(--font-size__base));
    line-height: 1.7;
  }
  .m-privacy__content p + p {
    margin-top: calc(12 * 1rem / var(--font-size__base));
  }
  .m-privacy__content ul {
    margin-top: calc(12 * 1rem / var(--font-size__base));
    padding-left: calc(18 * 1rem / var(--font-size__base));
  }
  .m-privacy__content ul + p {
    margin-top: calc(12 * 1rem / var(--font-size__base));
  }
  .m-privacy__content li {
    font-size: calc(14 * 1rem / var(--font-size__base));
    line-height: 1.7;
  }
  .m-privacy__content li + li {
    margin-top: calc(6 * 1rem / var(--font-size__base));
  }
  .m-phone__number {
    font-size: calc(37 * 1rem / var(--font-size__base));
  }
  .m-partners-merit-card {
    row-gap: calc(8 * 1rem / var(--font-size__base));
  }
  .m-partners-merit-card__image img {
    border-radius: calc(12 * 1rem / var(--font-size__base));
  }
  .m-partners-merit-card__body {
    row-gap: calc(8 * 1rem / var(--font-size__base));
  }
  .m-partners-merit-card__title-number {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-partners-merit-card__title-text {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .page-numbers li a {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-page-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: calc(32 * 1rem / var(--font-size__base));
    max-width: calc(300 * 1rem / var(--font-size__base));
  }
  .m-page-nav__item.is-prev,
  .m-page-nav__item.is-center,
  .m-page-nav__item.is-next {
    grid-column: auto;
  }
  .m-outer-bg {
    display: none;
  }
  .m-our-service {
    padding-block: calc(72 * 1rem / var(--font-size__base));
  }
  .m-our-service__slider {
    margin-right: unset;
  }
  .m-our-service-card {
    padding-inline: calc(16 * 1rem / var(--font-size__base));
  }
  .m-our-service-card__number {
    left: 0;
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-our-service-card__image__title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-operation-maintenance__header {
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-operation-maintenance__header-text-wrapper {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-operation-maintenance__header-subtitle {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-operation-maintenance__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-operation-maintenance-card {
    display: grid;
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-news-single {
    padding-top: calc(80 * 1rem / var(--font-size__base));
    padding-bottom: calc(107 * 1rem / var(--font-size__base));
  }
  .m-news-single__date {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-news-single__title {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-news-single__contents {
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-news-single__thumbnail {
    padding-inline: 0;
    margin-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-news-single__body {
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-news-single__body h2 {
    padding: calc(12 * 1rem / var(--font-size__base));
  }
  .m-news-single__body h3 {
    padding-inline: 0;
    margin-top: calc(64 * 1rem / var(--font-size__base));
  }
  .m-news-single__body > h3 ~ p {
    padding-inline: 0;
  }
  .m-news-single__body h4 {
    padding-inline: 0;
    margin-top: calc(64 * 1rem / var(--font-size__base));
  }
  .m-news-single__body > h4 ~ p {
    padding-inline: 0;
  }
  .m-news-single__body p {
    padding-inline: 0;
  }
  .m-news-archive {
    padding-top: calc(48 * 1rem / var(--font-size__base));
    padding-bottom: calc(107 * 1rem / var(--font-size__base));
  }
  .m-news-archive__contents {
    grid-template-columns: auto;
    row-gap: calc(48 * 1rem / var(--font-size__base));
  }
  .m-news-archive__page-numbers {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-mv {
    min-height: calc(400 * 1rem / var(--font-size__base));
    padding-top: calc(151 * 1rem / var(--font-size__base));
    padding-bottom: calc(135 * 1rem / var(--font-size__base));
  }
  .m-mv__image img {
    aspect-ratio: 293/252;
    width: calc(293 * 1rem / var(--font-size__base));
  }
  .m-mv__wrapper {
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding-right: 0;
  }
  .m-mv__subtitle {
    font-size: calc(18 * 1rem / var(--font-size__base));
    line-height: 1.7;
  }
  .m-mv__text-wrapper {
    padding-block: calc(22 * 1rem / var(--font-size__base));
    margin-top: calc(35 * 1rem / var(--font-size__base));
  }
  .m-mv__text {
    font-size: calc(14 * 1rem / var(--font-size__base));
    line-height: 1.7;
  }
  .m-mv__text-bg {
    top: 0;
  }
  .m-mv__scroll-button {
    left: unset;
    right: calc(20 * 1rem / var(--font-size__base));
    bottom: calc(-86 * 1rem / var(--font-size__base));
  }
  .m-mv__scroll-button img {
    width: calc(100 * 1rem / var(--font-size__base));
  }
  .m-merit__wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-merit-card {
    display: grid;
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding: calc(20 * 1rem / var(--font-size__base));
  }
  .m-merit-card__title {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-icon--mail-cta {
    width: calc(32 * 1rem / var(--font-size__base));
  }
  .m-icon-button {
    --_width__icon: 33;
    font-size: calc(14 * 1rem / var(--font-size__base));
    line-height: 1;
    letter-spacing: 0.05em;
    max-width: calc(217 * 1rem / var(--font-size__base));
  }
  .m-icon-button--header {
    --_width__icon: 16;
    grid-template-columns: auto;
    padding-block: 0;
    padding-left: 0;
    padding-right: 0;
    width: calc(48 * 1rem / var(--font-size__base));
    height: calc(48 * 1rem / var(--font-size__base));
  }
  .m-icon-button--cta {
    --_width__icon: 32;
    grid-template-columns: calc(var(--_width__icon) * 1rem / var(--font-size__base)) auto;
    grid-template-rows: auto;
    -moz-column-gap: calc(10 * 1rem / var(--font-size__base));
         column-gap: calc(10 * 1rem / var(--font-size__base));
    border-radius: 9999px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
    padding-block: calc(8 * 1rem / var(--font-size__base));
    padding-left: calc(9 * 1rem / var(--font-size__base));
    padding-right: calc(20 * 1rem / var(--font-size__base));
  }
  .m-icon-button--contact {
    --_width__icon: 37;
    -moz-column-gap: calc(83 * 1rem / var(--font-size__base));
         column-gap: calc(83 * 1rem / var(--font-size__base));
    font-size: calc(16 * 1rem / var(--font-size__base));
    letter-spacing: 0.1em;
    max-width: calc(350 * 1rem / var(--font-size__base));
    padding-left: calc(10 * 1rem / var(--font-size__base));
  }
  .m-icon-button--recruit {
    font-size: calc(16 * 1rem / var(--font-size__base));
    line-height: 1;
    max-width: calc(249 * 1rem / var(--font-size__base));
  }
  .m-icon-button--alliance {
    font-size: calc(16 * 1rem / var(--font-size__base));
    line-height: 1.2;
    text-align: center;
    max-width: calc(300 * 1rem / var(--font-size__base));
    padding-left: calc(48 * 1rem / var(--font-size__base));
    padding-right: calc(18 * 1rem / var(--font-size__base));
  }
  .m-icon-button--alliance-flow {
    max-width: calc(300 * 1rem / var(--font-size__base));
  }
  .m-home-strength::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color__gray-2);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .m-home-strength__container {
    padding-block: calc(96 * 1rem / var(--font-size__base));
  }
  .m-home-strength__container::before {
    display: none;
  }
  .m-home-strength__header {
    grid-template-columns: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .m-home-strength__text {
    padding-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-home-strength__contents {
    gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-home-strength__item {
    grid-template-columns: auto;
    justify-items: start;
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding: calc(24 * 1rem / var(--font-size__base));
    border-radius: calc(10 * 1rem / var(--font-size__base));
  }
  .m-home-strength__item-number {
    font-size: calc(16 * 1rem / var(--font-size__base));
    margin-top: 0;
  }
  .m-home-strength__item-title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-home-strength__item-text {
    font-size: calc(14 * 1rem / var(--font-size__base));
    margin-top: 0;
  }
  .m-home-strength__item-image {
    justify-items: center;
  }
  .m-home-strength__item-image img {
    width: calc(200 * 1rem / var(--font-size__base));
  }
  .m-home-recruit {
    padding-top: calc(100 * 1rem / var(--font-size__base));
  }
  .m-home-recruit__contents {
    padding-top: calc(150 * 1rem / var(--font-size__base));
    padding-bottom: calc(54 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-home-recruit__contents::before {
    aspect-ratio: 350/500;
    background-image: url("../../assets/images/common/recruit_bg_sp.webp");
  }
  .m-home-recruit__title-jp {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-home-recruit__title-en {
    font-size: calc(60 * 1rem / var(--font-size__base));
  }
  .m-home-recruit__description {
    text-align: center;
    margin-top: calc(22 * 1rem / var(--font-size__base));
  }
  .m-home-recruit__button {
    justify-items: center;
    margin-top: calc(112 * 1rem / var(--font-size__base));
  }
  .m-home-news-post {
    bottom: calc(-32 * 1rem / var(--font-size__base));
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
         column-gap: calc(16 * 1rem / var(--font-size__base));
    width: 89.5%;
    padding: calc(18 * 1rem / var(--font-size__base));
  }
  .m-home-news-post::before {
    border-radius: calc(12 * 1rem / var(--font-size__base));
  }
  .m-home-news-post__date {
    font-size: calc(15 * 1rem / var(--font-size__base));
  }
  .m-home-news-post__title {
    font-size: calc(15 * 1rem / var(--font-size__base));
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .m-home-case {
    padding: calc(100 * 1rem / var(--font-size__base)) 0 calc(120 * 1rem / var(--font-size__base));
  }
  .m-home-case__wrapper {
    gap: calc(60 * 1rem / var(--font-size__base));
  }
  .m-home-business {
    padding-bottom: calc(96 * 1rem / var(--font-size__base));
  }
  .m-home-business__contents {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-home-business__button {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-home-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color__gray-2);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .m-home-about__container {
    padding-right: 0;
  }
  .m-home-about__wrapper {
    padding-top: calc(150 * 1rem / var(--font-size__base));
    padding-bottom: calc(251 * 1rem / var(--font-size__base));
  }
  .m-home-about__wrapper::before {
    display: none;
  }
  .m-home-about__title {
    font-size: calc(26 * 1rem / var(--font-size__base));
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: left;
  }
  .m-home-about__contents {
    justify-items: start;
    row-gap: calc(74 * 1rem / var(--font-size__base));
    margin-top: calc(70 * 1rem / var(--font-size__base));
  }
  .m-home-about__description {
    font-size: calc(16 * 1rem / var(--font-size__base));
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: left;
  }
  .m-home-about__image-wrapper {
    margin-top: calc(80 * 1rem / var(--font-size__base));
  }
  .m-home-about__image-container {
    width: 100%;
  }
  .m-home-about__image--left {
    position: unset;
  }
  .m-home-about__image--center img {
    width: calc(337 * 1rem / var(--font-size__base));
    aspect-ratio: 337/239;
  }
  .m-home-about__image--right {
    position: unset;
  }
  .m-home-about__image--right img {
    width: calc(342 * 1rem / var(--font-size__base));
    aspect-ratio: 342/383;
  }
  .m-heading-group {
    row-gap: calc(5 * 1rem / var(--font-size__base));
  }
  .m-heading-group--page {
    row-gap: calc(7 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en--page {
    font-size: calc(33 * 1rem / var(--font-size__base));
    line-height: 1.2;
  }
  .m-heading-group__title-en-image img {
    width: 100%;
  }
  .m-heading-group__title-en-image--alliance img {
    width: calc(320 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en-image--company img {
    width: calc(282 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en-image--contact img {
    width: calc(230 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en-image--news img {
    width: calc(163 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en-image--recruit img {
    width: calc(208 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-en-image--business img {
    width: calc(320 * 1rem / var(--font-size__base));
  }
  .m-heading-group__title-ja {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-header {
    padding-top: calc(23 * 1rem / var(--font-size__base));
    padding-bottom: calc(3 * 1rem / var(--font-size__base));
  }
  .m-header__inner {
    grid-template-columns: calc(100 * 1rem / var(--font-size__base)) 1fr;
    max-width: 100%;
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-header__buttons {
    justify-self: end;
    -moz-column-gap: calc(5 * 1rem / var(--font-size__base));
         column-gap: calc(5 * 1rem / var(--font-size__base));
  }
  .m-header__hamburger {
    z-index: var(--_z-index--header-items);
    justify-self: end;
  }
  .m-form-table__item {
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding-block: calc(16 * 1rem / var(--font-size__base));
  }
  .m-form-table__item--no-label .m-form-table__label {
    display: none;
  }
  .m-form-table__label {
    padding-left: 0;
  }
  .m-form-table__input {
    padding-right: 0;
  }
  .m-form-table__acceptance {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-form-privacy {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-form-privacy__inner {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-left: 0;
  }
  .m-footer__text-bg {
    top: calc(-65 * 1rem / var(--font-size__base));
  }
  .m-footer__subtitle-text {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-footer__map {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(70 * 1rem / var(--font-size__base));
  }
  .m-footer__map-group {
    row-gap: calc(10 * 1rem / var(--font-size__base));
  }
  .m-footer__map-group--second {
    margin-top: calc(10 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item {
    padding: 0;
    border-radius: calc(8 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item-info {
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--duration__base);
    padding-inline: calc(20 * 1rem / var(--font-size__base));
    margin-top: 0;
  }
  .m-footer__map-item-info:not([hidden]) {
    grid-template-rows: 1fr;
    padding-bottom: calc(20 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item-info > div {
    display: grid;
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item-icon {
    width: calc(19 * 1rem / var(--font-size__base));
    height: calc(19 * 1rem / var(--font-size__base));
  }
  .m-footer__map-item-icon::before, .m-footer__map-item-icon::after {
    width: calc(8 * 1rem / var(--font-size__base));
    height: calc(1 * 1rem / var(--font-size__base));
  }
  .m-footer-contact {
    padding-top: calc(84 * 1rem / var(--font-size__base));
    padding-bottom: calc(85 * 1rem / var(--font-size__base));
  }
  .m-footer-contact::before {
    border-radius: calc(50 * 1rem / var(--font-size__base)) calc(50 * 1rem / var(--font-size__base)) 0 0;
  }
  .m-footer-contact.is-sticky {
    top: unset;
    bottom: 0;
    overflow: unset;
  }
  .m-footer-contact__text-wrapper {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-footer-contact__text {
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .m-footer-contact__buttons {
    justify-items: center;
    row-gap: calc(18 * 1rem / var(--font-size__base));
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-footer-contact__button {
    max-width: 100%;
    padding: calc(14 * 1rem / var(--font-size__base)) calc(16 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom {
    padding-top: calc(85 * 1rem / var(--font-size__base));
    padding-bottom: calc(120 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom::before {
    border-top-right-radius: calc(50 * 1rem / var(--font-size__base));
    border-top-left-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__wrapper {
    padding-left: calc(50 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__logo {
    margin-top: 0;
  }
  .m-footer-bottom__logo-image img {
    aspect-ratio: 140/44;
    width: calc(140 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__bg img {
    width: calc(324 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav {
    flex-direction: column;
    row-gap: calc(20 * 1rem / var(--font-size__base));
    margin-top: calc(70 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav-list {
    row-gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav-item {
    row-gap: 0;
  }
  .m-footer-bottom__nav-item--bottom {
    row-gap: calc(7 * 1rem / var(--font-size__base));
    margin-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav-link {
    line-height: 1.3;
  }
  .m-footer-bottom__nav-sublist {
    row-gap: calc(18 * 1rem / var(--font-size__base));
    padding-top: calc(18 * 1rem / var(--font-size__base));
    padding-left: 0;
  }
  .m-footer-bottom__nav-subitem {
    row-gap: calc(6 * 1rem / var(--font-size__base));
    padding-left: calc(24 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav-subtitle {
    padding-bottom: calc(6 * 1rem / var(--font-size__base));
  }
  .m-footer-bottom__nav-submenu {
    row-gap: 0;
  }
  .m-footer-bottom__nav-link-privacy {
    font-size: calc(12 * 1rem / var(--font-size__base));
    letter-spacing: 0.1em;
  }
  .m-flow-card {
    padding-top: calc(24 * 1rem / var(--font-size__base));
    padding-left: calc(16 * 1rem / var(--font-size__base));
  }
  .m-flow-card__number {
    top: 0;
    left: 0;
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-flow-card__image__title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-faq {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(107 * 1rem / var(--font-size__base));
  }
  .m-faq--home {
    padding-top: calc(96 * 1rem / var(--font-size__base));
  }
  .m-faq__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-drawer__content {
    background-color: var(--color__white);
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
  .m-drawer__image-wrapper {
    padding: 0;
  }
  .m-drawer__image {
    position: absolute;
    top: calc(65 * 1rem / var(--font-size__base));
    left: calc(42 * 1rem / var(--font-size__base));
  }
  .m-drawer__image img {
    aspect-ratio: 329/188;
    width: calc(329 * 1rem / var(--font-size__base));
  }
  .m-drawer__nav-wrapper {
    padding-top: calc(100 * 1rem / var(--font-size__base));
    padding-bottom: calc(50 * 1rem / var(--font-size__base));
    margin-top: calc(146 * 1rem / var(--font-size__base));
  }
  .m-drawer__nav-inner {
    padding-inline: calc(69 * 1rem / var(--font-size__base));
  }
  .m-drawer__nav {
    flex-direction: column;
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-drawer__items {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    padding-left: calc(21 * 1rem / var(--font-size__base));
  }
  .m-drawer__items--small {
    row-gap: calc(9 * 1rem / var(--font-size__base));
    padding-left: 0;
    margin-top: calc(80 * 1rem / var(--font-size__base));
  }
  .m-drawer__link {
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-drawer__link-en {
    font-size: calc(27 * 1rem / var(--font-size__base));
  }
  .m-drawer__link-ja {
    font-size: calc(12 * 1rem / var(--font-size__base));
    letter-spacing: 0.05em;
  }
  .m-drawer__link-small {
    font-size: calc(12 * 1rem / var(--font-size__base));
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .m-corporate-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color__gray-2);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .m-corporate-overview::after {
    width: 100%;
  }
  .m-corporate-overview__wrapper {
    padding-block: calc(72 * 1rem / var(--font-size__base));
  }
  .m-corporate-overview__wrapper::before {
    display: none;
  }
  .m-corporate-overview__contents {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-contents-header {
    row-gap: calc(10 * 1rem / var(--font-size__base));
  }
  .m-contents-header__subtitle {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-contents-header__title {
    font-size: calc(19 * 1rem / var(--font-size__base));
  }
  .m-contact-lead__wrapper {
    padding: calc(40 * 1rem / var(--font-size__base)) calc(20 * 1rem / var(--font-size__base));
  }
  .m-contact-lead__wrapper::after {
    width: 100%;
  }
  .m-contact-lead__text {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-contact-form {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(96 * 1rem / var(--font-size__base));
  }
  .m-contact-form__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-company-top-message__wrapper {
    padding-block: calc(72 * 1rem / var(--font-size__base));
  }
  .m-company-top-message__text-wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-company-top-message__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
    letter-spacing: 0.08em;
  }
  .m-company-top-message__image {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-company-top-message__icon-left img {
    width: calc(134 * 1rem / var(--font-size__base));
  }
  .m-company-top-message__icon-right img {
    width: calc(142 * 1rem / var(--font-size__base));
  }
  .m-company-info {
    grid-template-columns: auto;
    padding-block: calc(40 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-company-info__item {
    padding-block: calc(16 * 1rem / var(--font-size__base));
  }
  .m-company-info__label {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-company-info__value {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-company-history__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-company-history__item {
    padding: calc(16 * 1rem / var(--font-size__base));
  }
  .m-company-history__item-title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-client {
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-client--page {
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-client__row-wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    padding: calc(40 * 1rem / var(--font-size__base)) calc(20 * 1rem / var(--font-size__base));
  }
  .m-client__header-title {
    font-size: calc(32 * 1rem / var(--font-size__base));
  }
  .m-client__row {
    grid-template-columns: auto;
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-client__item {
    padding: calc(32 * 1rem / var(--font-size__base)) calc(24 * 1rem / var(--font-size__base));
    border-radius: calc(10 * 1rem / var(--font-size__base));
    border-left-width: calc(8 * 1rem / var(--font-size__base));
  }
  .m-client__item-content {
    gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-client__item-header {
    gap: calc(6 * 1rem / var(--font-size__base));
  }
  .m-client__item-subtitle {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-client__item-title {
    font-size: calc(22 * 1rem / var(--font-size__base));
  }
  .m-client__item-description {
    font-size: calc(14 * 1rem / var(--font-size__base));
  }
  .m-case-client-header {
    padding-top: calc(24 * 1rem / var(--font-size__base));
    padding-bottom: calc(20 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-case-client-title {
    row-gap: calc(4 * 1rem / var(--font-size__base));
  }
  .m-case-client-title-en {
    font-size: calc(15 * 1rem / var(--font-size__base));
    letter-spacing: 0;
  }
  .m-case-client-title-jp {
    font-size: calc(12 * 1rem / var(--font-size__base));
    margin-top: 0;
  }
  .m-case-client-subtitle {
    font-size: calc(50 * 1rem / var(--font-size__base));
    font-weight: 500;
  }
  .m-case-client-description {
    margin-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-case-client-list {
    row-gap: calc(18 * 1rem / var(--font-size__base));
    margin-top: calc(42 * 1rem / var(--font-size__base));
  }
  .m-case-client-item {
    --_width__left: 120;
    --_width__right: 220;
    --_column-gap: 10;
    padding-bottom: calc(17 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-image img {
    aspect-ratio: 120/90;
    border-radius: calc(8 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-text {
    row-gap: calc(9 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-company {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-product {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-info {
    row-gap: calc(2 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-location {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-case-client-item-detail {
    font-size: calc(12 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__inner {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__wrapper {
    padding-top: calc(302 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__wrapper::before {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__title-wrapper {
    padding-top: calc(102 * 1rem / var(--font-size__base));
    padding-right: calc(12 * 1rem / var(--font-size__base));
    padding-bottom: calc(30 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__title {
    font-size: calc(22 * 1rem / var(--font-size__base));
    letter-spacing: 0.02em;
  }
  .m-business-visual-message__title-bg {
    font-size: calc(60 * 1rem / var(--font-size__base));
  }
  .m-business-visual-message__image img {
    width: calc(129 * 1rem / var(--font-size__base));
  }
  .m-business-flow__wrapper {
    padding-block: calc(72 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-business-flow__wrapper::before {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-business-flow__header {
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-business-flow__header-text {
    font-size: calc(18 * 1rem / var(--font-size__base));
  }
  .m-business-flow__slider {
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-business-flow-card__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-business-client {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(24 * 1rem / var(--font-size__base));
  }
  .m-business-client__header {
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-business-client__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-business-case__wrapper {
    gap: calc(60 * 1rem / var(--font-size__base));
  }
  .m-business-area__wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .m-business-area__header {
    grid-template-columns: auto;
    row-gap: calc(230 * 1rem / var(--font-size__base));
  }
  .m-business-area__header-content {
    padding-top: 0;
  }
  .m-business-area__subtitle {
    font-size: calc(18 * 1rem / var(--font-size__base));
    text-align: center;
  }
  .m-business-area__list-wrapper {
    justify-items: center;
    margin-top: calc(20 * 1rem / var(--font-size__base));
  }
  .m-business-area__list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: calc(24 * 1rem / var(--font-size__base));
         column-gap: calc(24 * 1rem / var(--font-size__base));
    width: 100%;
    padding: calc(20 * 1rem / var(--font-size__base));
  }
  .m-business-area__image {
    top: calc(36 * 1rem / var(--font-size__base));
  }
  .m-business-area__image img {
    width: calc(350 * 1rem / var(--font-size__base));
  }
  .m-business-archive {
    padding-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-business-archive__top-contents {
    display: grid;
  }
  .m-business-archive__top-contents-content {
    display: contents;
  }
  .m-business-archive__top-contents-title {
    font-size: calc(22 * 1rem / var(--font-size__base));
    letter-spacing: 0.06em;
    order: 1;
  }
  .m-business-archive__top-contents-body {
    order: 3;
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-business-archive__top-contents-text-wrapper {
    margin-top: calc(18 * 1rem / var(--font-size__base));
  }
  .m-business-archive__top-contents-text {
    letter-spacing: 0.05em;
  }
  .m-business-archive__top-contents-image {
    order: 2;
    margin-top: calc(32 * 1rem / var(--font-size__base));
  }
  .m-business-archive__top-contents-image img {
    width: 100%;
  }
  .m-alliance__wrapper {
    padding-top: calc(150 * 1rem / var(--font-size__base));
    padding-bottom: calc(100 * 1rem / var(--font-size__base));
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance__wrapper::after {
    top: calc(-28 * 1rem / var(--font-size__base));
    left: calc(38 * 1rem / var(--font-size__base));
    width: calc(329 * 1rem / var(--font-size__base));
    aspect-ratio: 329/188;
    background-image: url("../../assets/images/common/alliance-bg_sp.webp");
  }
  .m-alliance__message {
    margin-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-container {
    row-gap: calc(54 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-wrapper {
    display: grid;
    row-gap: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-text {
    row-gap: calc(18 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-main {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-sub {
    font-size: calc(18 * 1rem / var(--font-size__base));
    letter-spacing: 0.05em;
  }
  .m-alliance__message-image-wrapper--page .m-alliance__message-image--right {
    top: calc(244 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-image--right {
    top: calc(252 * 1rem / var(--font-size__base));
    right: unset;
    left: calc(154 * 1rem / var(--font-size__base));
    z-index: 0;
  }
  .m-alliance__message-image--right img {
    aspect-ratio: 156/170;
    width: calc(156 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-image--left {
    position: unset;
  }
  .m-alliance__message-image--left img {
    aspect-ratio: 210/229;
    width: calc(210 * 1rem / var(--font-size__base));
  }
  .m-alliance__message-description {
    letter-spacing: 0.07em;
  }
  .m-alliance__collaboration {
    margin-top: calc(50 * 1rem / var(--font-size__base));
  }
  .m-alliance__collaboration-slider {
    padding-bottom: calc(27 * 1rem / var(--font-size__base));
    margin-top: calc(30 * 1rem / var(--font-size__base));
  }
  .m-alliance__collaboration-item {
    padding: calc(24 * 1rem / var(--font-size__base));
  }
  .m-alliance__collaboration-item-header {
    row-gap: calc(11 * 1rem / var(--font-size__base));
  }
  .m-alliance__collaboration-item-subtitle {
    font-size: calc(20 * 1rem / var(--font-size__base));
    line-height: 1.3;
    letter-spacing: 0.08em;
  }
  .m-alliance__button {
    margin-top: calc(28 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__wrapper {
    padding-block: calc(72 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__wrapper::before {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__wrapper-inner {
    max-width: 100%;
    padding-inline: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__item-wrapper {
    margin-top: calc(64 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__item {
    grid-template-columns: auto;
    row-gap: calc(24 * 1rem / var(--font-size__base));
    padding: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal__item-image img {
    width: calc(88 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal-block__figure {
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal-block__figure img {
    position: unset;
    width: 100%;
  }
  .m-alliance-proposal-block__text-wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-alliance-proposal-block__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-alliance-partners-merit__wrapper {
    grid-template-columns: auto;
    gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-alliance-model__header {
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-alliance-model__header-text {
    font-size: calc(16 * 1rem / var(--font-size__base));
    padding-bottom: 0;
  }
  .m-alliance-model__wrapper {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-alliance-model-block__item {
    flex-direction: column;
    -moz-column-gap: calc(16 * 1rem / var(--font-size__base));
         column-gap: calc(16 * 1rem / var(--font-size__base));
  }
  .m-alliance-model-block__number {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-alliance-model-block__title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance-flow__wrapper {
    padding: calc(72 * 1rem / var(--font-size__base)) calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance-flow__wrapper::before {
    border-radius: calc(50 * 1rem / var(--font-size__base));
  }
  .m-alliance-flow__header {
    grid-template-columns: auto;
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding-left: 0;
  }
  .m-alliance-flow__slider {
    margin-top: calc(16 * 1rem / var(--font-size__base));
  }
  .m-alliance-flow__button {
    padding-left: 0;
    margin-top: calc(40 * 1rem / var(--font-size__base));
  }
  .m-alliance-background__wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .m-alliance-background-block {
    padding: calc(32 * 1rem / var(--font-size__base));
  }
  .m-alliance-background-block__content {
    row-gap: calc(16 * 1rem / var(--font-size__base));
    padding-top: calc(8 * 1rem / var(--font-size__base));
  }
  .m-alliance-background-block__title {
    font-size: calc(20 * 1rem / var(--font-size__base));
  }
  .m-alliance-background-block__figure {
    margin-top: calc(24 * 1rem / var(--font-size__base));
  }
  .m-accordion__button {
    grid-template-columns: calc(24 * 1rem / var(--font-size__base)) 1fr calc(32 * 1rem / var(--font-size__base));
    -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
         column-gap: calc(8 * 1rem / var(--font-size__base));
    padding: calc(16 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-title {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-text {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-icon {
    width: calc(32 * 1rem / var(--font-size__base));
    height: calc(32 * 1rem / var(--font-size__base));
  }
  .m-accordion__button-icon::before,
  .m-accordion__button-icon::after {
    width: calc(12 * 1rem / var(--font-size__base));
  }
  .m-accordion__panel-content {
    grid-template-columns: calc(24 * 1rem / var(--font-size__base)) 1fr;
    -moz-column-gap: calc(8 * 1rem / var(--font-size__base));
         column-gap: calc(8 * 1rem / var(--font-size__base));
    padding: calc(16 * 1rem / var(--font-size__base));
  }
  .m-accordion__panel-title {
    font-size: calc(24 * 1rem / var(--font-size__base));
  }
  .m-404 {
    padding-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(107 * 1rem / var(--font-size__base));
  }
  .m-404__wrapper {
    row-gap: calc(24 * 1rem / var(--font-size__base));
  }
  .m-404__title {
    font-size: calc(64 * 1rem / var(--font-size__base));
  }
  .m-404__text {
    font-size: calc(16 * 1rem / var(--font-size__base));
  }
  .m-404__button {
    margin-top: calc(64 * 1rem / var(--font-size__base));
  }
  .p-single-business__breadcrumb {
    margin-top: calc(173 * 1rem / var(--font-size__base));
  }
  .p-single-business__outer {
    position: unset;
  }
  .p-single-business__merit {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-single-business__operation-maintenance {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-single-business__visual-message {
    padding-block: calc(107 * 1rem / var(--font-size__base));
  }
  .p-recruit__outer::before {
    top: calc(102 * 1rem / var(--font-size__base));
    left: calc(-20 * 1rem / var(--font-size__base));
    background-image: url("../../assets/images/common/recruit_outer_bg_sp.webp");
    aspect-ratio: 740/2109;
    width: calc(740 * 1rem / var(--font-size__base));
  }
  .p-recruit__breadcrumb {
    margin-top: calc(183 * 1rem / var(--font-size__base));
  }
  .p-privacy__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-news__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-home__outer {
    position: unset;
    padding-top: calc(96 * 1rem / var(--font-size__base));
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .p-contact__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-contact__lead {
    margin-top: calc(48 * 1rem / var(--font-size__base));
  }
  .p-company__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-company__top-message {
    margin-top: calc(56 * 1rem / var(--font-size__base));
  }
  .p-company__corporate-overview {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-company__history {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-business__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-business__outer {
    position: unset;
  }
  .p-business__flow {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-business__case {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-business__alliance {
    margin-top: calc(72 * 1rem / var(--font-size__base));
    padding-bottom: calc(107 * 1rem / var(--font-size__base));
  }
  .p-alliance__message {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-alliance__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .p-alliance__background {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-alliance__outer {
    position: unset;
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-alliance__proposal {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-alliance__model {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-alliance__flow {
    margin-top: calc(72 * 1rem / var(--font-size__base));
  }
  .p-404__breadcrumb {
    margin-top: calc(182 * 1rem / var(--font-size__base));
  }
  .u-only--pc {
    display: none;
  }
}

@media (max-width: 390px){
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
}

@media (any-hover: hover){
  .page-numbers li a:hover {
    opacity: 0.7;
  }
  .m-icon-link--line:hover {
    color: var(--color__line);
  }
  .m-icon-link--x:hover {
    color: var(--color__x);
  }
  .m-icon-link--instagram:hover {
    color: var(--color__instagram);
  }
  .m-icon-link--facebook:hover {
    color: var(--color__facebook);
  }
  .m-icon-link--youtube:hover {
    color: var(--color__youtube);
  }
  .m-icon-button:hover {
    filter: unset;
  }
  .m-icon-button:hover::before {
    opacity: 0;
  }
  .m-home-recruit__contents:hover::before {
    background-image: url("../../assets/images/common/recruit_bg_hover.webp");
  }
  .m-hamburger:hover::before {
    opacity: 0;
  }
  .m-hamburger:hover .m-hamburger__line {
    background-color: var(--color__white);
  }
  .m-form-table__submit > p:hover::after {
    background: #f5e88a;
    box-shadow: 0 0 12px rgba(245, 232, 138, 0.8);
  }
  .wpcf7-submit:hover {
    opacity: var(--opacity__hover);
  }
  .m-form-privacy__link:hover {
    text-decoration: none;
  }
  .m-footer-contact__button:hover {
    background: var(--color__white);
    color: var(--color__red-f83837);
  }
  .m-button:hover {
    color: var(--_color__main);
    background-color: var(--_color__sub);
    filter: unset;
  }
  .u-hover--opacity:hover {
    opacity: var(--opacity__hover);
  }
  .u-hover--drop-shadow:hover {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transform: translateZ(0);
  }
  .u-hover--color-main:hover {
    color: var(--color__blue);
  }
  .u-hover--underline-1px:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .u-hover--underline-2px:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/*# sourceMappingURL=style.css.map */
