@charset "UTF-8";
/*
* flocss: https://github.com/hiloki/flocss
*/
/* ==========================================================================
   Foundation
   ========================================================================== */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

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

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* Base
   ----------------------------------------------------------------- */
/* ==========================================================================
   Global
   ========================================================================== */
/* ==========================================================================
   Global
   ========================================================================== */
/* Mixin
   ----------------------------------------------------------------- */
/**
 * ビューポートに基づいて可変サイズを計算する関数
 * @param {number} $min - 最小サイズ（px）
 * @param {number} $max - 最大サイズ（px）
 * @param {number} $width - 基準となるビューポート幅（デフォルト: 1400px）
 * @param {string} $unit - 単位（デフォルト: vw）コンテナクエリのときはcqwを指定
 * @return {string} clamp関数を使用した可変サイズ
 */
html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, メイリオ, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  text-align: left;
  background: #fff;
}
body::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  visibility: hidden;
  content: "";
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body.is-fixed {
  overflow: hidden;
}
body.is-fixed::after {
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

/* Noto Sans使用時 IEはメイリオに変更 */
/* stylelint-disable-next-line selector-type-no-unknown, selector-pseudo-class-no-unknown */
_:input-placeholder,
:root body {
  font-family: Meiryo, "メイリオ", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

a {
  color: #222;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

ul,
li {
  list-style-type: none;
}

::-moz-selection {
  color: #222;
  text-shadow: none;
  background-color: #ccd9d4; /* Required when declaring ::selection */
}

::selection {
  color: #222;
  text-shadow: none;
  background-color: #ccd9d4; /* Required when declaring ::selection */
}

.legacy-ie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  background: #eee;
}

.legacy-ie a {
  text-decoration: none;
}

.noscript {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 100px 0;
  text-align: center;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* Base
   ----------------------------------------------------------------- */
/* Layout
   ----------------------------------------------------------------- */
.l-main {
  padding-top: 16px;
  padding-bottom: clamp(32px, 54 / 1400 * 100vw, 54px);
}
.l-main--green {
  position: relative;
}
.l-main--green::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(32px, 54 / 1400 * 100vw, 54px);
  content: "";
  background-color: #e1e8e6;
}

.l-page-header {
  padding: 0 4%;
}
.l-page-header__inner {
  position: relative;
  height: clamp(180px, 335 / 1400 * 100vw, 335px);
  padding: clamp(24px, 80 / 1400 * 100vw, 80px) clamp(24px, 90 / 1400 * 100vw, 90px);
  background-color: #f1f4f3;
  border-radius: 8px;
}
.l-page-header__title .en-title {
  font-family: "Figtree", sans-serif;
  font-size: clamp(32px, 72 / 1400 * 100vw, 72px);
  font-weight: 600;
  line-height: 1.2;
  color: #00973d;
  letter-spacing: 0.05em;
}
.l-page-header__title .ja-title {
  margin-top: clamp(4px, 16 / 1400 * 100vw, 16px);
  font-size: clamp(18px, 24 / 1400 * 100vw, 24px);
}
.l-page-header__breadcrumb {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 16px);
  height: clamp(26px, 80 / 1400 * 100vw, 80px);
  background-color: #fff;
  border-radius: 8px 0 0;
}
.l-page-header__breadcrumb .corner {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.l-page-header__breadcrumb .corner::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 200%;
  height: 200%;
  overflow: hidden;
  content: "";
  background: #f1f4f3;
  border-radius: 50%;
  -webkit-box-shadow: 8px 8px 0 0 #fff;
          box-shadow: 8px 8px 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-page-header__breadcrumb .corner--01 {
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.l-page-header__breadcrumb .corner--02 {
  bottom: 0;
  left: 0;
}

.l-page {
  padding-top: clamp(56px, 80 / 1400 * 100vw, 80px);
}
.l-page__container {
  background: #fff;
}
.l-page__main {
  margin-top: 40px;
}

/* Base
   ----------------------------------------------------------------- */
/* Header
   ----------------------------------------------------------------- */
.l-header {
  position: relative;
  width: 100%;
  margin-top: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-header.is-open .l-header__nav {
  display: block;
  visibility: visible;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 1;
}
.l-header.is-open .l-header__nav ul {
  opacity: 1;
}
.l-header.is-open .l-header__menu {
  background-color: #fff;
}
.l-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 48px;
  padding: 0 4%;
  margin: 0 auto;
}
.l-header__logo {
  width: 200px;
  line-height: 1;
}
.l-header__logo img {
  width: 100%;
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.l-header__menu {
  position: fixed;
  top: 16px;
  right: 4%;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f1f4f3;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.l-header--home {
  position: absolute;
}
.l-header--home .l-header__menu {
  top: 28px;
  right: calc(4% + 16px);
  background-color: #fff;
}
.l-header--home .p-global-nav {
  background-color: #fff;
}

/* Base
   ----------------------------------------------------------------- */
/* Footer
   ----------------------------------------------------------------- */
.l-footer {
  position: relative;
  padding-top: clamp(8px, 26 / 1400 * 100vw, 26px);
  background-color: #222;
}
.l-footer::before {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(32px, 54 / 1400 * 100vw, 54px);
  content: "";
  background-color: #222;
  border-top-left-radius: 100vh;
  border-top-right-radius: 100vh;
}
.l-footer__totop {
  position: absolute;
  top: calc(clamp(80px, 122 / 1400 * 100vw, 122px) * -1);
  right: 2%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #00973d;
  border-radius: 8px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.l-footer__totop svg {
  width: 12px;
  height: 12px;
}
.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 0 2%;
}
.l-footer__info {
  color: #fff;
}
.l-footer__logo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
}
.l-footer__logo img {
  width: 100%;
  max-width: 324px;
  height: auto;
}
.l-footer__company {
  margin-top: 1.5em;
  font-size: 16px;
  font-weight: 300;
}
.l-footer__address {
  margin-top: 1.5em;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}
.l-footer__address .tel-link {
  color: #fff;
}
.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  margin: 32px -4% 0;
  color: #fff;
  border-top: 1px solid #b3b3b6;
}
.l-footer__bottom a {
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.l-footer__bottom .bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__copyright {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
}

/* ==========================================================================
   Object
   ========================================================================== */
/* Base
   ----------------------------------------------------------------- */
/* Project
   ----------------------------------------------------------------- */
/* Base
   ----------------------------------------------------------------- */
.p-global-nav {
  width: 92%;
  padding: 2% 4% 8%;
  margin: 16px auto;
  background-color: #fff;
  border-radius: 8px;
  -webkit-transition: height 0.2s linear;
  transition: height 0.2s linear;
}
.p-global-nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
}
.p-global-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4%;
  margin-top: 24px;
}
.p-global-nav__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  height: 56px;
  margin: 0 auto;
}
.p-global-nav__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 32px;
  overflow: hidden;
  font-size: clamp(14px, 16 / 1400 * 100vw, 16px);
  color: #fff;
  background-color: #3b2477;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-global-nav__button a span {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 4px;
}
.p-global-nav .nav-item {
  position: relative;
  width: 100%;
}
.p-global-nav .nav-item__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 16px 0 8px;
  border-bottom: 1px solid #00973d;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-global-nav .nav-item__label::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
}
.p-global-nav .nav-item__label .label-en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(10px, 14 / 768 * 100vw, 14px);
  font-weight: 500;
  color: #00973d;
}
.p-global-nav .nav-item__label .label-ja {
  font-size: clamp(14px, 18 / 768 * 100vw, 18px);
  color: #222;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-global-nav .nav-item__subnav {
  display: none;
  padding: 8px 0;
}
.p-global-nav .nav-item:has(.nav-item__subnav) {
  cursor: pointer;
}
.p-global-nav .nav-item:has(.nav-item__subnav).is-open .nav-item__label::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label {
  position: relative;
}
.p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before, .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
  position: absolute;
  top: calc(50% + 8px);
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before {
  width: 16px;
  height: 1px;
  background-color: #00973d;
}
.p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
  right: 7px;
  width: 1px;
  height: 16px;
  background-color: #00973d;
}
.p-global-nav .nav-item.is-animating {
  pointer-events: none;
}
.p-global-nav .nav-item:last-child .nav-item__label {
  border-bottom: none;
}
.p-global-nav .subnav-item img {
  display: none;
  border-radius: 8px;
}
.p-global-nav .subnav-item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
  color: #b3b3b6;
}
.p-global-nav .subnav-item > a::after {
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
}

/* Base
   ----------------------------------------------------------------- */
.p-footer-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4%;
  margin-top: 24px;
}
.p-footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.p-footer-nav .nav-item {
  position: relative;
  width: 100%;
}
.p-footer-nav .nav-item__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 24px 0 8px;
  font-size: clamp(14px, 16 / 768 * 100vw, 16px);
  color: #fff;
  border-bottom: 1px solid #b3b3b6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-footer-nav .nav-item__label::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
}
.p-footer-nav .nav-item__subnav {
  display: none;
  padding: 8px 0;
}
.p-footer-nav .nav-item:has(.nav-item__subnav) {
  cursor: pointer;
}
.p-footer-nav .nav-item:has(.nav-item__subnav).is-open .nav-item__label::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label {
  position: relative;
}
.p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before, .p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
  position: absolute;
  top: calc(50% + 8px);
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before {
  width: 16px;
  height: 1px;
  background-color: #00973d;
}
.p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
  right: 7px;
  width: 1px;
  height: 16px;
  background-color: #00973d;
}
.p-footer-nav .subnav-item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
  color: #b3b3b6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-footer-nav .subnav-item > a::after {
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
}

/* Base
   ----------------------------------------------------------------- */
.p-form {
  /**
  * error message
  */
}
.p-form .error {
  display: block;
  margin-top: 0.5em;
  font-size: 85%;
  color: #b70000;
}

.p-form__group {
  padding: 12px 0;
}

.p-form__row {
  padding: 14px 0;
}
.p-form__row > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-form__row > dt > label {
  font-size: 13px;
  font-weight: 500;
}
.p-form__row > dt > label > small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #657786;
}
.p-form__row > dt > .tag {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  padding: 0 6px;
  font-size: 10px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #00973d;
  border-radius: 2px;
}
.p-form__row > dd {
  margin-top: 6px;
}

.p-form-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}
.p-form-controls .p-form-control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 8px;
}
.p-form-controls .p-form-control + .p-form-control {
  margin-top: 0;
}

.p-form-control {
  position: relative;
}
.p-form-control + .p-form-control {
  margin-top: 10px;
}
.p-form-control input[type=text],
.p-form-control input[type=number],
.p-form-control input[type=email],
.p-form-control input[type=tel] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  vertical-align: middle;
  background-color: #f1f4f3;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
}
.p-form-control input[type=text]::-webkit-input-placeholder, .p-form-control input[type=number]::-webkit-input-placeholder, .p-form-control input[type=email]::-webkit-input-placeholder, .p-form-control input[type=tel]::-webkit-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control input[type=text]::-moz-placeholder, .p-form-control input[type=number]::-moz-placeholder, .p-form-control input[type=email]::-moz-placeholder, .p-form-control input[type=tel]::-moz-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control input[type=text]:-ms-input-placeholder, .p-form-control input[type=number]:-ms-input-placeholder, .p-form-control input[type=email]:-ms-input-placeholder, .p-form-control input[type=tel]:-ms-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control input[type=text]::-ms-input-placeholder, .p-form-control input[type=number]::-ms-input-placeholder, .p-form-control input[type=email]::-ms-input-placeholder, .p-form-control input[type=tel]::-ms-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control input[type=text]::placeholder,
.p-form-control input[type=number]::placeholder,
.p-form-control input[type=email]::placeholder,
.p-form-control input[type=tel]::placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control input[type=text]:focus,
.p-form-control input[type=number]:focus,
.p-form-control input[type=email]:focus,
.p-form-control input[type=tel]:focus {
  border-color: #00973d;
  outline: 0;
}
.p-form-control textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  vertical-align: middle;
  background-color: #f1f4f3;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
}
.p-form-control textarea::-webkit-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control textarea::-moz-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control textarea:-ms-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control textarea::-ms-input-placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control textarea::placeholder {
  color: rgba(101, 119, 134, 0.4);
}
.p-form-control textarea:focus {
  border-color: #00973d;
  outline: 0;
}
.p-form-control > p {
  margin-top: 4px;
  color: #657786;
}
.p-form-control--zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-form-control--zip .c-input {
  position: relative;
  min-width: 120px;
}
.p-form-control--zip .c-input + .c-input {
  margin-left: 20px;
}
.p-form-control--zip .c-input + .c-input::before {
  position: absolute;
  top: calc(50% + 12px);
  left: -13px;
  line-height: 0;
  content: "-";
}

.p-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: clamp(16px, 24 / 1400 * 100vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: clamp(24px, 40 / 1400 * 100vw, 40px);
  margin-top: clamp(32px, 64 / 1400 * 100vw, 64px);
  text-align: center;
  border-top: 1px solid #ccd9d4;
}
.p-form__actions .submit-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(240px, 320 / 1400 * 100vw, 320px);
  height: clamp(56px, 64 / 1400 * 100vw, 64px);
  color: #fff;
  background-color: #00973d;
  border: 1px solid transparent;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-form__actions .submit-button:has(input[disabled]) {
  pointer-events: none;
  opacity: 0.4;
}
.p-form__actions .submit-button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("../img/icon/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__actions .submit-button input {
  width: 100%;
  max-width: 320px;
  height: clamp(56px, 64 / 1400 * 100vw, 64px);
  padding: 0 clamp(24px, 48 / 768 * 100vw, 48px);
  margin: 0;
  text-align: left;
}
.p-form__actions .submit-button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__actions .back-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(240px, 320 / 1400 * 100vw, 320px);
  height: clamp(56px, 64 / 1400 * 100vw, 64px);
  color: #00973d;
  background-color: #f1f4f3;
  border: 1px solid transparent;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-form__actions .back-button:has(input[disabled]) {
  pointer-events: none;
}
.p-form__actions .back-button::after {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("../img/icon/arrow_primary.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.p-form__actions .back-button input {
  width: 100%;
  max-width: 320px;
  height: clamp(56px, 64 / 1400 * 100vw, 64px);
  padding: 0 clamp(24px, 48 / 768 * 100vw, 48px) 0 clamp(48px, 96 / 768 * 100vw, 96px);
  margin: 0;
  text-align: left;
}
.p-form__actions .back-button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
}

.wpcf7-form.submitting .submit-button::after {
  display: none;
}

.wpcf7-list-item:first-child {
  margin-left: 0;
}

/* Base
   ----------------------------------------------------------------- */
.p-editor-content h1 {
  position: relative;
  padding: 0.8em 0;
  margin: 2em 0 1em;
  font-size: 24px;
  font-weight: 400;
  color: #00973d;
  border-bottom: 1px solid #ccd9d4;
}
.p-editor-content h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content h2 {
  position: relative;
  padding: 0.8em 0;
  margin: 2em 0 1em;
  font-size: 22px;
  font-weight: 400;
  color: #00973d;
  border-bottom: 1px solid #ccd9d4;
}
.p-editor-content h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content h3 {
  position: relative;
  padding: 0.8em 0;
  margin: 2em 0 1em;
  font-size: 20px;
  font-weight: 400;
}
.p-editor-content h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content h4 {
  position: relative;
  padding-bottom: 4px;
  padding-left: 32px;
  margin: 2em 0 1em;
  font-size: 18px;
  font-weight: 400;
}
.p-editor-content h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content h5 {
  position: relative;
  padding-bottom: 4px;
  padding-left: 32px;
  margin: 2em 0 1em;
  font-size: 16px;
  font-weight: 400;
  color: #00973d;
}
.p-editor-content h5::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content h6 {
  position: relative;
  padding-bottom: 4px;
  padding-left: 32px;
  margin: 2em 0 1em;
  font-size: 16px;
  font-weight: 400;
}
.p-editor-content h6::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.p-editor-content p {
  margin-bottom: 0.5em;
  line-height: 1.85;
  letter-spacing: normal;
}
.p-editor-content p + p {
  margin-top: 0.5em;
}
.p-editor-content a {
  color: #00973d;
  word-wrap: break-word;
}
.p-editor-content img {
  height: auto;
  margin-bottom: 1em;
}
.p-editor-content .aligncenter {
  display: block;
  margin: 20px auto;
  text-align: center;
}
.p-editor-content ul,
.p-editor-content ol {
  line-height: 1.85;
}
.p-editor-content ul {
  margin: 2em 0 1em;
  list-style: none;
}
.p-editor-content ul > li {
  position: relative;
  padding-left: 1.2em;
}
.p-editor-content ul > li::before {
  position: absolute;
  top: calc(0.925em - 4px);
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #00973d;
  border-radius: 4px;
}
.p-editor-content ul > li:nth-child(n+2) {
  margin-top: 0.25em;
}
.p-editor-content ul ol,
.p-editor-content ul ul {
  margin: 1em 0;
}
.p-editor-content ol {
  margin: 2em 0 1em;
  counter-reset: number 0;
}
.p-editor-content ol > li {
  position: relative;
  padding-left: 1.2em;
}
.p-editor-content ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Figtree", sans-serif;
  font-weight: bold;
  color: #00973d;
  content: counter(number) ".";
  counter-increment: number 1;
}
.p-editor-content ol > li:nth-child(n+2) {
  margin-top: 0.25em;
}
.p-editor-content ol ol,
.p-editor-content ol ul {
  margin: 1em 0;
}
.p-editor-content blockquote {
  padding: 1.5em;
  margin: 2em 0;
  color: #7c8b85;
  background: #f1f4f3;
  border-radius: 8px;
}
.p-editor-content blockquote p {
  margin-bottom: 0;
  letter-spacing: 0;
}
.p-editor-content hr {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.2em auto;
  border: 0;
  border-top: 1px solid #ccc;
}
.p-editor-content table {
  margin: 15px 0;
}
.p-editor-content table th {
  background-color: #f8fff0;
}
.p-editor-content table th,
.p-editor-content table td {
  padding: 5px 10px;
  word-break: break-all;
  vertical-align: top;
  border: solid 1px #ddd;
}
.p-editor-content iframe {
  max-width: 100%;
}

/* Base
   ----------------------------------------------------------------- */
.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(32px, 64 / 1400 * 100vw, 64px);
}
.p-pagination__prev, .p-pagination__next {
  width: 56px;
  height: 56px;
  border: 1px solid #00973d;
  border-radius: 100vh;
}
.p-pagination__prev::after, .p-pagination__next::after {
  width: 16px;
  height: 16px;
}
.p-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  padding: 0 24px;
}
.p-pagination__list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-pagination__item {
  display: none;
}
.p-pagination__item:has(.prev), .p-pagination__item:has(.next) {
  display: block;
}
.p-pagination__item:has(.next) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-pagination__item .page-numbers.dots {
  pointer-events: none;
  background-color: transparent;
}
.p-pagination__item .page-numbers.prev, .p-pagination__item .page-numbers.next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  background-color: transparent;
  border: 1px solid #00973d;
  border-radius: 100vh;
}
.p-pagination__item.is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.p-pagination__ellipses {
  display: none;
}
.p-pagination__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 102px;
  height: 56px;
  padding: 0 16px;
  font-size: 14px;
  color: #00973d;
  background-color: #f1f4f3;
  border-radius: 100vh;
}

/* Base
   ----------------------------------------------------------------- */
.p-news-item {
  container-type: inline-size;
}
.p-news-item__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: clamp(24px, 36 / 992 * 100cqw, 36px) 0;
}
.p-news-item__inner--nopost {
  pointer-events: none;
}
.p-news-item__inner--nopost .p-news-item__icon {
  display: none;
}
.p-news-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-news-item__date {
  position: relative;
  padding-right: clamp(16px, 30 / 992 * 100cqw, 30px);
  font-family: "Figtree", sans-serif;
  line-height: 1.1;
  color: #00973d;
  letter-spacing: 0.05em;
}
.p-news-item__date::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 28px;
  content: "";
  background-color: #ccd9d4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-news-item__date .item-year {
  font-size: clamp(12px, 16 / 992 * 100cqw, 16px);
}
.p-news-item__date .item-day {
  font-size: clamp(16px, 24 / 992 * 100cqw, 24px);
}
.p-news-item__category {
  padding: 0 clamp(16px, 46 / 992 * 100cqw, 46px);
}
.p-news-item__category span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: clamp(108px, 180 / 992 * 100cqw, 180px);
  height: clamp(27px, 48 / 992 * 100cqw, 48px);
  padding: 4px 16px;
  font-size: clamp(12px, 14 / 992 * 100cqw, 14px);
  letter-spacing: 0.05em;
  background-color: #f1f4f3;
  border-radius: 100vh;
}
.p-news-item__title {
  padding-right: clamp(48px, 88 / 992 * 100cqw, 88px);
  margin-top: 16px;
  font-size: clamp(14px, 16 / 992 * 100cqw, 16px);
  font-weight: 400;
}
.p-news-item__icon {
  position: absolute;
  top: 50%;
  right: clamp(0px, 20 / 992 * 100cqw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(32px, 48 / 992 * 100cqw, 48px);
  height: clamp(32px, 48 / 992 * 100cqw, 48px);
  border: 1px solid #00973d;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-news-item__icon svg {
  width: clamp(9px, 14 / 992 * 100cqw, 14px);
  height: clamp(10px, 15 / 992 * 100cqw, 15px);
}

/* Base
   ----------------------------------------------------------------- */
.p-page-nav {
  padding: 24px;
  background-color: #f1f4f3;
  border-radius: clamp(8px, 24 / 1400 * 100vw, 24px);
}
.p-page-nav__heading {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  color: #00973d;
}
.p-page-nav__list {
  margin-top: 8px;
}
.p-page-nav__list > li {
  border-bottom: 1px solid #ccd9d4;
}
.p-page-nav__list > li:last-child {
  border-bottom: none;
}
.p-page-nav__list .nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px 16px 0;
}
.p-page-nav__list .nav-item::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-bottom: 1px solid #00973d;
  border-left: 1px solid #00973d;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-page-nav__list .nav-item__num {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  color: #00973d;
}
.p-page-nav__list .nav-item__title {
  font-size: 16px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.p-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* stylelint-disable-next-line scss/no-global-function-names */
  max-width: 1560px;
  padding-right: 4vw;
  padding-left: 4vw;
  margin: 0 auto;
}

.p-container--lg {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* stylelint-disable-next-line scss/no-global-function-names */
  max-width: 1360px;
  padding-right: 4vw;
  padding-left: 4vw;
  margin: 0 auto;
}

.p-container--md {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* stylelint-disable-next-line scss/no-global-function-names */
  max-width: 1080px;
  padding-right: 4vw;
  padding-left: 4vw;
  margin: 0 auto;
}

.p-container--sm {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* stylelint-disable-next-line scss/no-global-function-names */
  max-width: 880px;
  padding-right: 4vw;
  padding-left: 4vw;
  margin: 0 auto;
}

.p-section-title01 {
  padding-bottom: clamp(16px, 24 / 1400 * 100vw, 24px);
  border-bottom: 1px solid #ccd9d4;
}
.p-section-title01__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 992 * 100vw, 16px);
  color: #00973d;
}
.p-section-title01__ja {
  font-size: clamp(20px, 24 / 992 * 100vw, 24px);
  font-weight: 400;
}

.p-section-title02__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(32px, 56 / 1400 * 100vw, 56px);
  font-weight: 400;
  color: #00973d;
  letter-spacing: 0.05em;
}
.p-section-title02__ja {
  font-size: clamp(24px, 40 / 1400 * 100vw, 40px);
  font-weight: 400;
}

.p-breadcrumb {
  padding: 0 clamp(16px, 32 / 1400 * 100vw, 32px);
  overflow: auto;
  font-size: clamp(12px, 16 / 1400 * 100vw, 16px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-breadcrumb::-webkit-scrollbar {
  display: none;
}
.p-breadcrumb > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-breadcrumb > span > * {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-breadcrumb > span > * + *::before {
  position: absolute;
  top: 50%;
  left: -20.5px;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #00973d;
  border-radius: 100vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-breadcrumb a {
  color: #b3b3b6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-breadcrumb .breadcrumb_last {
  color: #00973d;
}

.p-anchor-links > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px clamp(32px, 64 / 1400 * 100vw, 64px);
}
.p-anchor-links > ul > li {
  position: relative;
}
.p-anchor-links > ul > li::after {
  position: absolute;
  top: 0;
  right: calc(clamp(16px, 32 / 1400 * 100vw, 32px) * -1);
  width: 1px;
  height: 100%;
  content: "";
  border-left: 1px dashed #ccd9d4;
}
.p-anchor-links > ul > li:last-of-type::after {
  display: none;
}
.p-anchor-links > ul .anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(8px, 16 / 1400 * 100vw, 16px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-anchor-links > ul .anchor-link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(24px, 32 / 1400 * 100vw, 32px);
  height: clamp(24px, 32 / 1400 * 100vw, 32px);
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-anchor-links > ul .anchor-link__icon svg {
  width: clamp(7px, 14 / 1400 * 100vw, 14px);
  height: clamp(7px, 14 / 1400 * 100vw, 14px);
}

.p-project-link {
  padding: clamp(72px, 128 / 1400 * 100vw, 128px) 0 clamp(40px, 74 / 1400 * 100vw, 74px);
  background-color: #e1e8e6;
}
.p-project-link__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 32 / 1400 * 100vw, 32px);
}
.p-project-link__list > li {
  container-type: inline-size;
}
.p-project-link .link-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 32 / 600 * 100cqw, 32px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(16px, 32 / 600 * 100cqw, 32px);
  background-color: #fff;
  border-radius: clamp(8px, 16 / 600 * 100cqw, 16px);
}
.p-project-link .link-card.is-current {
  pointer-events: none;
  background-color: #00973d;
}
.p-project-link .link-card.is-current .link-card__title {
  color: #fff;
}
.p-project-link .link-card.is-current .link-card__icon {
  background-color: #00973d;
}
.p-project-link .link-card.is-current .link-card__icon svg {
  display: none;
}
.p-project-link .link-card.is-current .link-card__icon::after {
  width: 12px;
  height: 12px;
  content: "";
  background-color: #fff;
  border-radius: 6px;
}
.p-project-link .link-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(80px, 136 / 600 * 100cqw, 136px);
  height: clamp(80px, 136 / 600 * 100cqw, 136px);
  overflow: hidden;
  border-radius: 8px;
}
.p-project-link .link-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-project-link .link-card__title {
  padding-right: clamp(56px, 80 / 600 * 100cqw, 80px);
  font-size: clamp(14px, 24 / 600 * 100cqw, 24px);
  font-weight: 400;
  line-height: 1.5;
}
.p-project-link .link-card__title span {
  display: inline-block;
}
.p-project-link .link-card__icon {
  position: absolute;
  top: 50%;
  right: clamp(16px, 32 / 600 * 100cqw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(40px, 48 / 600 * 100cqw, 48px);
  height: clamp(40px, 48 / 600 * 100cqw, 48px);
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-project-link .link-card__icon svg {
  width: clamp(9px, 14 / 600 * 100cqw, 14px);
  height: clamp(10px, 15 / 600 * 100cqw, 15px);
}

.p-technique-link {
  padding: clamp(72px, 128 / 1400 * 100vw, 128px) 0 clamp(40px, 74 / 1400 * 100vw, 74px);
  background-color: #e1e8e6;
}
.p-technique-link__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 32 / 1400 * 100vw, 32px);
}
.p-technique-link__list > li {
  container-type: inline-size;
}
.p-technique-link .link-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 32 / 600 * 100cqw, 32px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: clamp(16px, 32 / 600 * 100cqw, 32px);
  background-color: #fff;
  border-radius: clamp(8px, 16 / 600 * 100cqw, 16px);
}
.p-technique-link .link-card.is-current {
  pointer-events: none;
  background-color: #00973d;
}
.p-technique-link .link-card.is-current .link-card__title {
  color: #fff;
}
.p-technique-link .link-card.is-current .link-card__num {
  color: #fff;
}
.p-technique-link .link-card.is-current .link-card__icon {
  background-color: #00973d;
}
.p-technique-link .link-card.is-current .link-card__icon svg {
  display: none;
}
.p-technique-link .link-card.is-current .link-card__icon::after {
  width: 8px;
  height: 8px;
  content: "";
  background-color: #fff;
  border-radius: 4px;
}
.p-technique-link .link-card__num {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #00973d;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-technique-link .link-card__title {
  padding-right: clamp(56px, 80 / 600 * 100cqw, 80px);
  font-size: clamp(14px, 24 / 600 * 100cqw, 24px);
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-technique-link .link-card__title span {
  display: inline-block;
}
.p-technique-link .link-card__icon {
  position: absolute;
  top: 50%;
  right: clamp(16px, 32 / 600 * 100cqw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-technique-link .link-card__icon svg {
  width: clamp(9px, 14 / 600 * 100cqw, 14px);
  height: clamp(10px, 15 / 600 * 100cqw, 15px);
}

/* Base
   ----------------------------------------------------------------- */
/* Component
   ----------------------------------------------------------------- */
/* Base
   ----------------------------------------------------------------- */
.c-button {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: clamp(240px, 320 / 768 * 100vw, 320px);
  height: 64px;
  padding: 0 clamp(24px, 32 / 768 * 100vw, 32px);
  color: #fff;
  background: #00973d;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.c-button__icon {
  line-height: 1;
}
.c-button--transparent {
  padding-right: clamp(15px, 22 / 768 * 100vw, 22px);
  color: #222;
  background: transparent;
}
.c-button--transparent .c-button__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(32px, 48 / 1400 * 100vw, 48px);
  height: clamp(32px, 48 / 1400 * 100vw, 48px);
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.c-button--transparent .c-button__icon svg path {
  fill: #00973d;
}

.c-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Base
   ----------------------------------------------------------------- */
.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 40 / 1400 * 100vw, 40px);
}

/**
 * BEMの規則に則ってクラスを定義しています。
 */
.c-grid__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-menu-icon {
  position: relative;
  z-index: 300;
  display: block;
  cursor: pointer;
}
.c-menu-icon__wrap {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
}
.c-menu-icon__wrap > span {
  position: absolute;
  left: calc(50% - 10px);
  width: 20px;
  height: 1px;
  background-color: #00973d;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.c-menu-icon__wrap > span:nth-child(1) {
  top: 14px;
}
.c-menu-icon__wrap > span:nth-child(2) {
  top: 20px;
}
.c-menu-icon__wrap > span:nth-child(3) {
  top: 26px;
}
.c-menu-icon.is-open .c-menu-icon__wrap > span {
  background-color: #00973d;
}
.c-menu-icon.is-open .c-menu-icon__wrap > span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
}
.c-menu-icon.is-open .c-menu-icon__wrap > span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-menu-icon.is-open .c-menu-icon__wrap > span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(30deg);
          transform: translateY(-6px) rotate(30deg);
}

.c-input label {
  display: inline-block;
  padding-bottom: 8px;
  font-size: 12px;
  line-height: 1;
  color: #657786;
}

.c-select {
  position: relative;
}
.c-select::before {
  position: absolute;
  top: calc(50% - 3px);
  right: 12px;
  z-index: 2;
  width: 6px;
  height: 6px;
  content: "";
  border-top: solid 1px #00973d;
  border-right: solid 1px #00973d;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.mw_wp_form_confirm .c-select::before {
  display: none;
}
.c-select select {
  position: relative;
  width: 100%;
  padding: 12px;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f1f4f3;
  border-radius: 4px;
}
.c-select select::-ms-expand {
  display: none;
}
.c-select select:focus {
  outline: 0;
  -webkit-box-shadow: rgba(0, 151, 61, 0.5) 0 0 5px 2px;
          box-shadow: rgba(0, 151, 61, 0.5) 0 0 5px 2px;
}

.c-radio,
.mwform-radio-field label {
  display: block;
  padding: 8px 0;
}
.c-radio input[type=radio],
.mwform-radio-field label input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-radio input[type=radio] + .text,
.c-radio input[type=radio] + .mwform-radio-field-text,
.mwform-radio-field label input[type=radio] + .text,
.mwform-radio-field label input[type=radio] + .mwform-radio-field-text {
  position: relative;
  cursor: pointer;
}
.c-radio input[type=radio] + .text::before,
.c-radio input[type=radio] + .mwform-radio-field-text::before,
.mwform-radio-field label input[type=radio] + .text::before,
.mwform-radio-field label input[type=radio] + .mwform-radio-field-text::before {
  position: relative;
  top: calc(50% - 12px);
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  content: "";
  background: #f1f4f3;
  border: 1px solid #f1f4f3;
  border-radius: 100%;
}
.c-radio input[type=radio]:focus + .text::before,
.c-radio input[type=radio]:focus + .mwform-radio-field-text::before,
.mwform-radio-field label input[type=radio]:focus + .text::before,
.mwform-radio-field label input[type=radio]:focus + .mwform-radio-field-text::before {
  border-color: #f1f4f3;
  outline: none;
}
.c-radio input[type=radio]:disabled + .text::before,
.c-radio input[type=radio]:disabled + .mwform-radio-field-text::before,
.mwform-radio-field label input[type=radio]:disabled + .text::before,
.mwform-radio-field label input[type=radio]:disabled + .mwform-radio-field-text::before {
  background: #657786;
  border-color: #657786;
}
.c-radio input[type=radio]:checked + .text::after,
.c-radio input[type=radio]:checked + .mwform-radio-field-text::after,
.mwform-radio-field label input[type=radio]:checked + .text::after,
.mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 12px;
  height: 12px;
  content: "";
  background-color: #222;
  border-radius: 50%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}

.c-heading {
  position: relative;
  padding-bottom: 16px;
  font-size: clamp(18px, 24 / 1400 * 100vw, 24px);
  font-weight: 400;
}
.c-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}

.c-figure img {
  width: 100%;
  border-radius: clamp(8px, 16 / 1400 * 100vw, 16px);
}
.c-figure figcaption {
  margin-top: 0.5em;
}

.c-arrow-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1.5em;
  color: #00973d;
}
.c-arrow-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Base
   ----------------------------------------------------------------- */
/* Utility
   ----------------------------------------------------------------- */

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

.u-radius-top {
  position: relative;
}
.u-radius-top::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(32px, 54 / 1400 * 100vw, 54px);
  content: "";
  background-color: #fff;
  border-top-left-radius: 100vh;
  border-top-right-radius: 100vh;
}

.u-radius-bottom {
  position: relative;
}
.u-radius-bottom::before {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(32px, 54 / 1400 * 100vw, 54px);
  content: "";
  background-color: #fff;
  border-bottom-right-radius: 100vh;
  border-bottom-left-radius: 100vh;
}

.u-box {
  padding: 1em;
  background-color: #f1f4f3;
  border-radius: 8px;
}

.u-mt-half {
  margin-top: 0.5em;
}

.u-mt-1 {
  margin-top: 1em;
}

.u-mt-2 {
  margin-top: 2em;
}

.u-mb-1 {
  margin-bottom: 1em;
}

.u-mb-2 {
  margin-bottom: 2em;
}

.u-mb-3 {
  margin-bottom: 3em;
}

.u-ml-1 {
  margin-left: 1em;
}

.u-ml-2 {
  margin-left: 2em;
}

.u-ml-3 {
  margin-left: 3em;
}

.u-ml-4 {
  margin-left: 4em;
}

.u-mr-1 {
  margin-right: 1em;
}

.u-mr-2 {
  margin-right: 2em;
}

.u-mr-3 {
  margin-right: 3em;
}

/* ==========================================================================
   Pages
   ========================================================================== */
/* Base
   ----------------------------------------------------------------- */
.page-front .mainview {
  padding: 16px 4%;
}
.page-front .mainview__container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 796px;
  overflow: hidden;
  background: #f1f4f3;
  border-radius: 24px;
}
.page-front .mainview .mainview-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 537px;
  overflow: hidden;
}
.page-front .mainview .mainview-scene__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 736/537;
  background: url("../img/front/mainview/bg.jpg") no-repeat center center/cover;
  -webkit-transform: translateX(-41%);
          transform: translateX(-41%);
}
.page-front .mainview .mainview-scene .roadroller {
  position: absolute;
  width: 8.1222826087%;
  height: 9.6052141527%;
}
.page-front .mainview .mainview-scene .car {
  position: absolute;
  width: 17.6630434783%;
  height: 16.573556797%;
}
.page-front .mainview .mainview-scene .people {
  position: absolute;
  top: 60.3538175047%;
  left: 63.722826087%;
  width: 5.7078804348%;
  height: 7.104283054%;
}
.page-front .mainview .mainview-scene .layer01 {
  position: absolute;
  top: 54.7653631285%;
  left: 37.1222826087%;
  width: 27.4932065217%;
  height: 26.8230912477%;
}
.page-front .mainview .mainview-scene .crane {
  position: absolute;
  top: 70.1731843575%;
  left: 63.0421195652%;
  width: 17.2635869565%;
  height: 34.0353817505%;
}
.page-front .mainview .mainview-scene .crane__base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-front .mainview .mainview-scene .crane__hook {
  position: absolute;
  top: 43.3331509548%;
  left: -9.2869510467%;
  width: 37.6042814418%;
  height: 43.3331509548%;
}
.page-front .mainview__company {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 230px;
  height: 58px;
  background: #fff;
  border-radius: 0 0 24px;
}
.page-front .mainview__company .company-logo img {
  width: 200px;
}
.page-front .mainview__company .corner {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.page-front .mainview__company .corner::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 200%;
  height: 200%;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 8px 8px 0 0 #fff;
          box-shadow: 8px 8px 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-front .mainview__company .corner--01 {
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%) rotate(180deg);
          transform: translateX(100%) rotate(180deg);
}
.page-front .mainview__company .corner--02 {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%) rotate(180deg);
          transform: translateY(100%) rotate(180deg);
}
.page-front .mainview .mainview-title {
  margin-top: 40px;
  text-align: center;
}
.page-front .mainview .mainview-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(40px, 80 / 1920 * 100vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.page-front .mainview .mainview-title__en .line01 {
  color: #00973d;
}
.page-front .mainview .mainview-title__en .line02 {
  color: #3b2477;
}
.page-front .mainview .mainview-title__ja {
  margin-top: 1em;
  font-size: clamp(18px, 36 / 1920 * 100vw, 36px);
  letter-spacing: 0.05em;
}
.page-front .mainview__scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 24px 0 0;
}
.page-front .mainview__scroll svg {
  width: 64px;
  height: auto;
}
.page-front .mainview__scroll svg .stop01 {
  -webkit-animation: stop1 3s ease-in-out infinite alternate;
          animation: stop1 3s ease-in-out infinite alternate;
}
.page-front .mainview__scroll svg .stop02 {
  -webkit-animation: stop2 3s ease-in-out infinite alternate;
          animation: stop2 3s ease-in-out infinite alternate;
}
@-webkit-keyframes stop1 {
  /* 紫から緑へ */
  0% {
    stop-color: #00973d;
  }
  100% {
    stop-color: #3b2477;
  }
}
@keyframes stop1 {
  /* 紫から緑へ */
  0% {
    stop-color: #00973d;
  }
  100% {
    stop-color: #3b2477;
  }
}
@-webkit-keyframes stop2 {
  /* 緑から紫へ */
  0% {
    stop-color: #3b2477;
  }
  100% {
    stop-color: #00973d;
  }
}
@keyframes stop2 {
  /* 緑から紫へ */
  0% {
    stop-color: #3b2477;
  }
  100% {
    stop-color: #00973d;
  }
}
.page-front .mainview__scroll .corner {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.page-front .mainview__scroll .corner::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 200%;
  height: 200%;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 8px 8px 0 0 #fff;
          box-shadow: 8px 8px 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-front .mainview__scroll .corner--01 {
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.page-front .mainview__scroll .corner--02 {
  bottom: 0;
  left: 0;
}
.page-front .about {
  padding-top: 56px;
  background: url("../img/front/about_bg_sp.jpg") no-repeat top 200px right;
  background-size: 375px auto;
}
.page-front .about .about-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(32px, 56 / 1400 * 100vw, 56px);
  line-height: 1.1;
  color: #00973d;
  letter-spacing: 0.05em;
}
.page-front .about .about-title__ja {
  margin-top: 0.5em;
  font-size: clamp(24px, 40 / 1400 * 100vw, 40px);
  font-weight: 400;
}
.page-front .about__desc {
  margin-top: 2em;
  line-height: 2.2;
}
.page-front .about__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 56px auto 0;
}
.page-front .about .about-card {
  container-type: inline-size;
  height: 100%;
}
.page-front .about .about-card__inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(32px, 40 / 456 * 100cqw, 40px) clamp(24px, 36 / 456 * 100cqw, 36px) clamp(24px, 40 / 456 * 100cqw, 40px);
  background: #f1f4f3;
  border-radius: clamp(16px, 24 / 456 * 100cqw, 24px);
}
.page-front .about .about-card__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 384/226;
  overflow: hidden;
}
.page-front .about .about-card__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 384/226;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.page-front .about .about-card__title {
  margin-top: 1em;
  font-size: clamp(18px, 28 / 456 * 100cqw, 28px);
  font-weight: 400;
}
.page-front .about .about-card__num {
  display: block;
  margin-right: 1em;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  color: #00973d;
  vertical-align: middle;
}
@container (min-width: 340px) {
  .page-front .about .about-card__num {
    display: inline-block;
  }
}
@container (min-width: 380px) {
  .page-front .about .about-card__num {
    display: block;
  }
}
.page-front .about .about-card__desc {
  position: relative;
  padding-right: 20%;
  margin-top: clamp(8px, 16 / 456 * 100cqw, 16px);
  line-height: 1.6;
}
.page-front .about .about-card__desc::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../img/icon/arrow_primary.svg") no-repeat center center/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-front .product {
  padding: clamp(80px, 140 / 1400 * 100vw, 140px) 0;
}
.page-front .product__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
.page-front .product__image {
  max-width: 500px;
  margin: 0 auto;
}
.page-front .product__info {
  -ms-flex-item-align: center;
      align-self: center;
}
.page-front .product .product-title {
  padding-bottom: clamp(16px, 28 / 1920 * 100vw, 28px);
  border-bottom: 1px solid #ccd9d4;
}
.page-front .product .product-title__ja {
  font-size: 20px;
  font-weight: 400;
}
.page-front .product .product-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 1920 * 100vw, 16px);
  color: #00973d;
}
.page-front .product__copy {
  margin-top: 1em;
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
}
.page-front .product__desc {
  margin-top: 1em;
  line-height: 2.2;
}
.page-front .product__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(24px, 56 / 1400 * 100vw, 56px);
}
.page-front .base {
  position: relative;
  padding: clamp(130px, 200 / 1400 * 100vw, 200px) 0;
  background-color: #f1f4f3;
}
.page-front .base__bg {
  position: absolute;
  width: 100%;
  height: auto;
}
.page-front .base__bg--01 {
  top: 0;
  right: 0;
}
.page-front .base__bg--02 {
  bottom: 0;
  left: 0;
}
.page-front .base__list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 24 / 768 * 100vw, 24px);
  max-width: 500px;
  margin: 0 auto;
}
.page-front .base .base-card {
  container-type: inline-size;
  height: 100%;
}
.page-front .base .base-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: clamp(32px, 40 / 456 * 100cqw, 40px) clamp(24px, 36 / 456 * 100cqw, 36px) clamp(24px, 40 / 456 * 100cqw, 40px);
  background: #fff;
  border-radius: clamp(16px, 24 / 456 * 100cqw, 24px);
}
.page-front .base .base-card__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 598/263;
  overflow: hidden;
}
.page-front .base .base-card__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 598/263;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.page-front .base .base-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0.5em;
  margin-top: 1em;
  font-size: clamp(18px, 28 / 456 * 100cqw, 28px);
  font-weight: 400;
  border-bottom: 1px solid #ccd9d4;
}
@container (min-width: 340px) {
  .page-front .base .base-card__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-front .base .base-card__title .en-title {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 500 * 100cqw, 16px);
  color: #00973d;
  letter-spacing: 0.05em;
}
.page-front .base .base-card__title .ja-title {
  font-size: clamp(20px, 24 / 500 * 100cqw, 24px);
  font-weight: 400;
}
.page-front .base .base-card__desc {
  position: relative;
  margin-top: clamp(8px, 16 / 500 * 100cqw, 16px);
  margin-bottom: 1em;
  line-height: 1.6;
}
.page-front .base .base-card__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: auto;
  font-size: 16px;
}
.page-front .base .base-card__action .action-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(32px, 48 / 500 * 100cqw, 48px);
  height: clamp(32px, 48 / 500 * 100cqw, 48px);
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-front .base .base-card__action .action-icon svg {
  width: clamp(9px, 14 / 500 * 100cqw, 14px);
  height: clamp(10px, 15 / 500 * 100cqw, 15px);
}
.page-front .recruit {
  padding: clamp(16px, 120 / 1400 * 100vw, 120px) 0;
}
.page-front .recruit__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 32 / 1400 * 100vw, 32px);
  padding: clamp(24px, 32 / 1400 * 100vw, 32px);
  background-color: #f1f4f3;
  border-radius: clamp(16px, 26 / 1400 * 100vw, 26px);
}
.page-front .recruit__image img {
  width: 100%;
  height: auto;
}
.page-front .recruit__info {
  -ms-flex-item-align: center;
      align-self: center;
}
.page-front .recruit .recruit-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 992 * 100vw, 16px);
  color: #00973d;
}
.page-front .recruit .recruit-title__ja {
  font-size: clamp(20px, 24 / 992 * 100vw, 24px);
  font-weight: 400;
}
.page-front .recruit__desc {
  margin-top: 1em;
  font-size: clamp(16px, 18 / 992 * 100vw, 18px);
  line-height: 2.2;
}
.page-front .recruit__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(16px, 60 / 1920 * 100vw, 60px);
}
.page-front .news {
  padding: 40px 0 clamp(100px, 160 / 1400 * 100vw, 160px);
}
.page-front .news .news-title {
  padding-bottom: clamp(16px, 24 / 1400 * 100vw, 24px);
  border-bottom: 1px solid #ccd9d4;
}
.page-front .news .news-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 992 * 100vw, 16px);
  color: #00973d;
}
.page-front .news .news-title__ja {
  font-size: clamp(20px, 24 / 992 * 100vw, 24px);
  font-weight: 400;
}
.page-front .news__list > li {
  border-bottom: 1px solid #ccd9d4;
}
.page-front .news__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(24px, 36 / 1400 * 100vw, 36px);
}

/* Base
   ----------------------------------------------------------------- */
.page-message .message-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  max-width: 500px;
  padding: clamp(32px, 48 / 1400 * 100vw, 48px) 0;
  margin: 0 auto;
}
.page-message .message-header__image {
  padding: 0 4%;
  margin: 0 auto;
}
.page-message .message-header__image img {
  border-radius: 8px;
}
.page-message .message-header__body {
  position: relative;
  -webkit-transform: translateY(-17%);
          transform: translateY(-17%);
}
.page-message .message-header__title {
  font-family: "Figtree", sans-serif;
  font-size: clamp(40px, 64 / 540 * 100vw, 64px);
  line-height: 1.2;
  color: #00973d;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-message .message-header__title span {
  display: block;
  margin-left: clamp(40px, 100 / 540 * 100vw, 100px);
}
.page-message .message-header__info .company-name {
  font-weight: 600;
}
.page-message .message-header__info .representative-name {
  font-weight: 600;
}
.page-message .message-header__info .representative-name span {
  padding-left: 0.5em;
  font-size: clamp(20px, 24 / 540 * 100vw, 24px);
}
.page-message .message-content {
  max-width: 800px;
  padding-bottom: clamp(32px, 108 / 1400 * 100vw, 108px);
  margin: 0 auto;
}
.page-message .message-content p {
  font-size: clamp(16px, 18 / 540 * 100vw, 18px);
  line-height: 2.2;
}
.page-message .message-content p + p {
  margin-top: 2em;
}
.page-message .company-link {
  padding: clamp(72px, 128 / 1400 * 100vw, 128px) 0 clamp(40px, 88 / 1400 * 100vw, 88px);
  background-color: #e1e8e6;
}
.page-message .company-link__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 32 / 1400 * 100vw, 32px);
}
.page-message .company-link__list > li {
  container-type: inline-size;
}
.page-message .company-link .link-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 32 / 600 * 100cqw, 32px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(16px, 32 / 600 * 100cqw, 32px);
  background-color: #fff;
  border-radius: clamp(8px, 16 / 600 * 100cqw, 16px);
}
.page-message .company-link .link-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(80px, 136 / 600 * 100cqw, 136px);
  height: clamp(80px, 136 / 600 * 100cqw, 136px);
  overflow: hidden;
  border-radius: 8px;
}
.page-message .company-link .link-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-message .company-link .link-card__title {
  padding-right: clamp(56px, 80 / 600 * 100cqw, 80px);
  font-size: clamp(14px, 24 / 600 * 100cqw, 24px);
  font-weight: 400;
  line-height: 1.5;
}
.page-message .company-link .link-card__title span {
  display: inline-block;
}
.page-message .company-link .link-card__icon {
  position: absolute;
  top: 50%;
  right: clamp(16px, 32 / 600 * 100cqw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(40px, 48 / 600 * 100cqw, 48px);
  height: clamp(40px, 48 / 600 * 100cqw, 48px);
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-message .company-link .link-card__icon svg {
  width: clamp(9px, 14 / 600 * 100cqw, 14px);
  height: clamp(10px, 15 / 600 * 100cqw, 15px);
}

/* Base
   ----------------------------------------------------------------- */
.page-profile .googlemap-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00973d;
  vertical-align: text-bottom;
}
.page-profile .googlemap-link::before {
  width: 13px;
  height: 18px;
  content: "";
  background: url("../../assets/img/icon/pin_primary.svg") no-repeat center center/contain;
}
.page-profile .overview {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0;
}
.page-profile .overview-table {
  width: 100%;
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
  border-bottom: 1px solid #ccd9d4;
}
.page-profile .overview-table tr {
  border-top: 1px solid #ccd9d4;
}
.page-profile .overview-table th,
.page-profile .overview-table td {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.page-profile .overview-table th {
  width: clamp(110px, 232 / 1400 * 100vw, 232px);
  font-weight: 400;
  vertical-align: top;
}
.page-profile .overview-table td {
  position: relative;
  padding-left: clamp(16px, 40 / 1400 * 100vw, 40px);
  line-height: 1.6;
}
.page-profile .overview-table td::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: calc(100% - 3em);
  content: "";
  background-color: #ccd9d4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-profile .overview-table__place + .overview-table__place {
  margin-top: 1em;
}
.page-profile .office {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0;
}
.page-profile .office-table {
  width: 100%;
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
  border-bottom: 1px solid #ccd9d4;
}
.page-profile .office-table__list {
  border-top: 1px dashed #ccd9d4;
}
.page-profile .office-table__row {
  border-top: 1px solid #ccd9d4;
}
.page-profile .office-table__branch {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 24px 24px 24px 0;
}
.page-profile .office-table__branch .branch-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(18px, 22 / 768 * 100vw, 22px);
  font-weight: 400;
}
.page-profile .office-table__branch .branch-name::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #00973d;
}
.page-profile .office-table__branch .branch-info {
  margin-top: 1em;
  font-size: clamp(14px, 16 / 400 * 100cqw, 16px);
}
.page-profile .office-table__branch .branch-info__address {
  padding-right: 1em;
}
.page-profile .office-table__branch--grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-profile .office-table__office {
  margin-left: 16%;
}
.page-profile .office-table__office .office-item {
  container-type: inline-size;
  padding: 16px 0;
  border-top: 1px dashed #ccd9d4;
}
.page-profile .office-table__office .office-item:first-child {
  border-top: none;
}
.page-profile .office-table__office .office-item__name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(16px, 18 / 400 * 100cqw, 18px);
}
.page-profile .office-table__office .office-item__name::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid #00973d;
}
.page-profile .office-table__office .office-item__info {
  margin-top: 1em;
}
.page-profile .office-table__office .office-item__address {
  padding-right: 1em;
}
.page-profile .group-company {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0 clamp(112px, 174 / 1400 * 100vw, 174px);
}
.page-profile .group-company__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
}
.page-profile .group-company__list > li {
  container-type: inline-size;
}
.page-profile .group-company__list > li:first-child .company-item {
  border-top: 1px solid #ccd9d4;
}
.page-profile .group-company .company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #ccd9d4;
}
@container (min-width: 500px) {
  .page-profile .group-company .company-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding: 24px 16px;
  }
}
@container (min-width: 600px) {
  .page-profile .group-company .company-item {
    padding: 24px 32px;
  }
}
.page-profile .group-company .company-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-profile .group-company .company-item__name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(18px, 22 / 600 * 100cqw, 22px);
  font-weight: 400;
}
.page-profile .group-company .company-item__name::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #00973d;
}
.page-profile .group-company .company-item__info {
  margin-top: 1em;
}
.page-profile .group-company .company-item__detail {
  margin-top: 1em;
}
.page-profile .group-company .company-item__detail dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 0.5em;
  font-weight: 400;
  background-color: #f1f4f3;
  border-radius: 4px;
}
.page-profile .group-company .company-item__detail dd {
  margin-top: 0.5em;
}
.page-profile .group-company .company-item__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5em;
  font-size: clamp(14px, 16 / 400 * 100cqw, 16px);
  font-weight: 400;
  color: #00973d;
}
.page-profile .group-company .company-item__link::after {
  width: 14px;
  height: 14px;
  content: "";
  background: url("../../assets/img/icon/arrow_primary.svg") no-repeat center center/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-profile .group-company .company-item__image {
  margin-top: auto;
  text-align: center;
}
@container (min-width: 500px) {
  .page-profile .group-company .company-item__image {
    width: clamp(120px, 280 / 684 * 100cqw, 280px);
    margin: 0;
  }
}
.page-profile .group-company .company-item__image img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
}

/* Base
   ----------------------------------------------------------------- */
.page-philosophy .philosophy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  counter-reset: number 0;
}
.page-philosophy .philosophy-list > li {
  padding: 24px clamp(24px, 40 / 1400 * 100vw, 40px);
  background-color: #f1f4f3;
  border-radius: 16px;
}
.page-philosophy .philosophy-list > li .philosophy-list__item {
  position: relative;
  padding-left: clamp(33px, 38 / 1400 * 100vw, 38px);
  font-size: clamp(16px, 24 / 1400 * 100vw, 24px);
  line-height: 1.4;
}
.page-philosophy .philosophy-list > li .philosophy-list__item::before {
  position: absolute;
  top: -0.15em;
  left: 0;
  width: 100%;
  font-family: "Figtree", sans-serif;
  font-size: clamp(24px, 32 / 1400 * 100vw, 32px);
  color: #00973d;
  content: counter(number) ". ";
  counter-increment: number 1;
}
.page-philosophy .management {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0;
}
.page-philosophy .management__copy {
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
  border-top: 1px solid #ccd9d4;
}
.page-philosophy .management__copy .copy-text {
  margin-top: clamp(32px, 58 / 1400 * 100vw, 58px);
  font-size: clamp(24px, 40 / 1400 * 100vw, 40px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.page-philosophy .management__copy .copy-text__ruby {
  position: relative;
  display: inline-block;
  padding: 0 0.5em 0.1em;
  margin: 0 0.25em;
  line-height: 1.5;
  color: #fff;
  background-color: #00973d;
  border-radius: clamp(6px, 15 / 1400 * 100vw, 15px);
}
.page-philosophy .management__copy .copy-text__ruby::after {
  position: absolute;
  bottom: 102%;
  left: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 16 / 1400 * 100vw, 16px);
  color: #00973d;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-philosophy .management__copy .copy-text__ruby--01::after {
  content: "コンストラクション";
}
.page-philosophy .management__copy .copy-text__ruby--02::after {
  content: "クリエイティブ";
}
.page-philosophy .management__list {
  margin-top: clamp(24px, 80 / 1400 * 100vw, 80px);
}
.page-philosophy .quality {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0;
}
.page-philosophy .quality__list {
  padding-top: clamp(24px, 40 / 1400 * 100vw, 40px);
  margin-top: clamp(24px, 40 / 1400 * 100vw, 40px);
  border-top: 1px solid #ccd9d4;
}
.page-philosophy .environment {
  padding: clamp(40px, 60 / 1400 * 100vw, 60px) 0 clamp(128px, 174 / 1400 * 100vw, 174px);
}
.page-philosophy .environment__copy {
  padding-top: clamp(24px, 40 / 1400 * 100vw, 40px);
  margin-top: clamp(24px, 40 / 1400 * 100vw, 40px);
  font-size: clamp(18px, 32 / 1400 * 100vw, 32px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  border-top: 1px solid #ccd9d4;
}
.page-philosophy .environment__list {
  margin-top: clamp(24px, 40 / 1400 * 100vw, 40px);
}

/* Base
   ----------------------------------------------------------------- */
.page-history .history-table {
  padding-bottom: clamp(56px, 120 / 1400 * 100vw, 120px);
}
.page-history .history-table__item {
  display: grid;
  grid-template-columns: clamp(73px, 230 / 1400 * 100vw, 230px) 1fr;
  gap: 0 clamp(8px, 24 / 1400 * 100vw, 24px);
}
.page-history .history-table__item dt {
  padding: clamp(16px, 24 / 1400 * 100vw, 24px) 0;
  font-size: clamp(16px, 20 / 1400 * 100vw, 20px);
  border-top: 1px solid #00973d;
}
.page-history .history-table__item dd {
  padding: clamp(16px, 24 / 1400 * 100vw, 24px) clamp(8px, 40 / 1400 * 100vw, 40px);
  font-size: clamp(14px, 16 / 1400 * 100vw, 16px);
  line-height: 1.6;
  border-top: 1px solid #ccd9d4;
}
.page-history .history-table__item:last-child dt {
  border-bottom: 1px solid #00973d;
}
.page-history .history-table__item:last-child dd {
  border-bottom: 1px solid #ccd9d4;
}

/* Base
   ----------------------------------------------------------------- */
.page-eco__content {
  padding-bottom: clamp(60px, 120 / 1400 * 100vw, 120px);
}
.page-eco .eco-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(24px, 80 / 1400 * 100vw, 80px);
  max-width: 500px;
  margin: 0 auto;
}
.page-eco .eco-block + .eco-block {
  margin-top: clamp(56px, 120 / 1400 * 100vw, 120px);
}
.page-eco .eco-block__title {
  width: 100%;
  padding-bottom: clamp(16px, 24 / 1400 * 100vw, 24px);
  margin-bottom: 24px;
  border-bottom: 1px solid #ccd9d4;
}
.page-eco .eco-block__title .en-title {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 1400 * 100vw, 16px);
  color: #00973d;
}
.page-eco .eco-block__title .ja-title {
  font-size: 20px;
  font-weight: 400;
}
.page-eco .eco-block__copy {
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
}
.page-eco .eco-block__desc {
  margin-top: 20px;
  line-height: 2;
}
.page-eco .eco-block__image p {
  margin-top: 8px;
}
.page-eco .eco-block--02 .eco-block__image img {
  border-radius: clamp(16px, 24 / 1400 * 100vw, 24px);
}
.page-eco .eco-block--03 {
  gap: 0;
}
.page-eco .eco-block--03 .eco-block__desc {
  margin-top: 0;
}
.page-eco .eco-block--03 .eco-block__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 40 / 1400 * 100vw, 40px);
  width: 100%;
  margin-top: 24px;
}
.page-eco .eco-block--03 .eco-block__image {
  width: 100%;
}
.page-eco .eco-block--03 .eco-block__image img {
  border-radius: clamp(16px, 24 / 1400 * 100vw, 24px);
}

/* Base
   ----------------------------------------------------------------- */
.page-road .road-copy {
  margin: 1em 0 0.5em;
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
  font-weight: 400;
}
.page-road .road-desc {
  margin-top: 1em;
  line-height: 1.6;
}
.page-road .road-block {
  margin-top: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-road .road-block--03 {
  padding-bottom: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-road .road-images {
  margin-top: clamp(32px, 64 / 1400 * 100vw, 64px);
}

/* Base
   ----------------------------------------------------------------- */
.page-sports .sports-copy {
  margin: 1em 0 0.5em;
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
  font-weight: 400;
}
.page-sports .sports-desc {
  margin-top: 1em;
  line-height: 1.6;
}
.page-sports .sports-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(16px, 24 / 1400 * 100vw, 24px);
}
.page-sports .sports-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(8px, 16 / 1400 * 100vw, 16px) 16px;
  background-color: #f1f4f3;
  border-radius: 8px;
}
.page-sports .sports-card {
  container-type: inline-size;
  height: 100%;
}
.page-sports .sports-card__inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(32px, 40 / 456 * 100cqw, 40px) clamp(24px, 36 / 456 * 100cqw, 36px) clamp(24px, 40 / 456 * 100cqw, 40px);
  background: #f1f4f3;
  border-radius: clamp(16px, 24 / 456 * 100cqw, 24px);
}
.page-sports .sports-card__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 384/226;
  overflow: hidden;
}
.page-sports .sports-card__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 384/226;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.page-sports .sports-card__title {
  margin-top: 1em;
  font-size: clamp(18px, 24 / 456 * 100cqw, 24px);
  font-weight: 400;
}
.page-sports .sports-card__desc {
  position: relative;
  margin-top: clamp(8px, 16 / 456 * 100cqw, 16px);
  line-height: 1.6;
}
.page-sports .sports-block {
  margin-top: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-sports .sports-block--03 {
  padding-bottom: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-sports .sports-cases {
  margin-top: clamp(8px, 32 / 1400 * 100vw, 32px);
}

/* Base
   ----------------------------------------------------------------- */
.page-architecture .construction .construction-copy {
  margin-top: clamp(32px, 48 / 1400 * 100vw, 48px);
  margin-bottom: clamp(24px, 54 / 1400 * 100vw, 54px);
}
.page-architecture .construction .construction-copy__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(32px, 56 / 1400 * 100vw, 56px);
  font-weight: 400;
  color: #00973d;
  letter-spacing: 0.05em;
}
.page-architecture .construction .construction-copy__ja {
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
  font-weight: 400;
}
.page-architecture .construction__desc {
  margin-top: 1em;
  line-height: 1.6;
}
.page-architecture .construction__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 40 / 1400 * 100vw, 40px);
  margin-top: clamp(56px, 88 / 1400 * 100vw, 88px);
}
.page-architecture .construction__list .construction-card {
  container-type: inline-size;
  height: 100%;
}
.page-architecture .construction__list .construction-card img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 24 / 500 * 100cqw, 24px);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.page-architecture .construction__list .construction-card__title {
  position: relative;
  padding-bottom: clamp(8px, 16 / 500 * 100cqw, 16px);
  margin-top: 1em;
  font-size: clamp(18px, 24 / 500 * 100cqw, 24px);
  font-weight: 400;
}
.page-architecture .construction__list .construction-card__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.page-architecture .construction__list .construction-card__desc {
  position: relative;
  margin-top: clamp(8px, 16 / 500 * 100cqw, 16px);
  line-height: 1.6;
}
.page-architecture .example {
  padding-top: clamp(56px, 88 / 1400 * 100vw, 88px);
}
.page-architecture .example__heading {
  position: relative;
  padding-left: 40px;
  margin-top: 32px;
  font-size: clamp(20px, 24 / 1400 * 100vw, 24px);
  font-weight: 400;
  color: #00973d;
}
.page-architecture .example__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.page-architecture .example__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 32 / 1400 * 100vw, 32px);
  margin-top: clamp(24px, 32 / 1400 * 100vw, 32px);
}
.page-architecture .example__list + .example__heading {
  margin-top: 56px;
}
.page-architecture .example .c-figure {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* Base
   ----------------------------------------------------------------- */
.page-technique {
  padding-bottom: clamp(128px, 160 / 1400 * 100vw, 160px);
}
.page-technique .tech-block {
  margin: 0 auto;
  margin-top: clamp(56px, 80 / 1400 * 100vw, 80px);
  container-type: inline-size;
}
.page-technique .tech-block:first-child {
  margin-top: 0;
}
.page-technique .tech-block__title .block-num {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 14 / 1400 * 100vw, 14px);
  color: #00973d;
}
.page-technique .tech-block__title .block-title {
  padding-bottom: 0.5em;
  font-size: clamp(20px, 32 / 1000 * 100cqw, 32px);
  font-weight: 400;
  border-bottom: 1px solid #ccd9d4;
}
.page-technique .tech-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 24 / 1000 * 100cqw, 24px);
  margin-top: clamp(32px, 40 / 1000 * 100cqw, 40px);
}
@container (min-width: 700px) {
  .page-technique .tech-block__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page-technique .tech-block__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@container (min-width: 700px) {
  .page-technique .tech-block__image {
    width: clamp(280px, 496 / 1000 * 100cqw, 496px);
  }
}
.page-technique .tech-block__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.page-technique .tech-block__body p {
  line-height: 1.6;
}
.page-technique .tech-block__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(32px, 48 / 1000 * 100cqw, 48px);
  padding-right: clamp(48px, 64 / 1000 * 100cqw, 64px);
  margin-top: 1em;
  font-size: clamp(14px, 16 / 1000 * 100cqw, 16px);
}
.page-technique .tech-block__link::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(32px, 48 / 1000 * 100cqw, 48px);
  height: clamp(32px, 48 / 1000 * 100cqw, 48px);
  content: "";
  background-color: #f1f4f3;
  background-image: url("../img/icon/arrow_primary.svg");
  background-position: center;
  background-size: clamp(10px, 14 / 1000 * 100cqw, 14px);
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-technique .tech-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 24px;
  margin-top: 32px;
}
@container (min-width: 500px) {
  .page-technique .tech-block__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-technique .tech-block__list .link-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: clamp(56px, 64 / 1000 * 100cqw, 64px);
  padding: 0.5em clamp(24px, 32 / 1000 * 100cqw, 32px);
  border: 1px solid #ccd9d4;
  border-radius: 8px;
}
.page-technique .tech-block__list .link-item::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  content: "";
  background-color: #f1f4f3;
  background-image: url("../img/icon/arrow_primary.svg");
  background-position: center;
  background-size: 10px;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* Base
   ----------------------------------------------------------------- */
.page-technique-child__container {
  padding-bottom: clamp(32px, 80 / 1400 * 100vw, 80px);
}
.page-technique-child__desc {
  padding-bottom: 2em;
  line-height: 2;
  border-bottom: 1px solid #ccd9d4;
}
.page-technique-child__nav {
  margin-top: clamp(32px, 56 / 1400 * 100vw, 56px);
}
.page-technique-child .tech-section {
  padding: clamp(28px, 40 / 1400 * 100vw, 40px) 0;
}
.page-technique-child .tech-section:first-of-type {
  margin-top: clamp(64px, 80 / 1400 * 100vw, 80px);
}
.page-technique-child .tech-section .sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 12 / 680 * 100cqw, 12px);
}
.page-technique-child .tech-section__title {
  padding-bottom: 0.5em;
  font-size: clamp(20px, 32 / 1400 * 100vw, 32px);
  font-weight: 400;
  border-bottom: 1px solid #ccd9d4;
}
.page-technique-child .tech-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 40 / 1400 * 100vw, 40px);
  margin-top: clamp(24px, 40 / 1400 * 100vw, 40px);
}
.page-technique-child .tech-section__body dl {
  margin-top: 1em;
  line-height: 1.6;
}
.page-technique-child .tech-section__body dl .data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.page-technique-child .tech-section__body dl .data-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #00973d;
}
.page-technique-child .tech-section__body dl .data-item + .data-item {
  margin-top: 0.2em;
}
.page-technique-child .tech-section__desc {
  line-height: 2;
}
.page-technique-child .tech-section__desc a {
  text-decoration: underline;
}
.page-technique-child .tech-section__copy {
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 24 / 1400 * 100vw, 24px);
  font-weight: 400;
}
.page-technique-child .tech-section__copy::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.page-technique-child .tech-section__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: 16px;
  font-weight: 400;
  color: #00973d;
}
.page-technique-child .tech-section__heading::before {
  width: 32px;
  height: 1px;
  content: "";
  background-color: #00973d;
}
.page-technique-child .tech-section__hr {
  width: 100%;
  height: 1px;
  margin: 1.5em 0;
  border-bottom: 1px dotted #ccd9d4;
}
.page-technique-child .tech-section__subheading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: 400;
}
.page-technique-child .tech-section__subheading::before {
  width: 8px;
  height: 8px;
  content: "";
  background-color: #00973d;
}
.page-technique-child .tech-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px clamp(24px, 40 / 1400 * 100vw, 40px);
}
.page-technique-child .tech-section__features > li {
  container-type: inline-size;
}
.page-technique-child .tech-section__features .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 24px;
  background-color: #f1f4f3;
  border-radius: 16px;
}
@container (min-width: 540px) {
  .page-technique-child .tech-section__features .feature-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 32px;
  }
}
.page-technique-child .tech-section__features .feature-item__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
}
.page-technique-child .tech-section__features .feature-item__title::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  content: "";
  background: url("../img/icon/check-circle.svg") no-repeat center center/contain;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
.page-technique-child .tech-section__features .feature-item__title:has(+ .feature-item__desc) {
  font-size: clamp(16px, 22 / 680 * 100cqw, 22px);
}
.page-technique-child .tech-section__features .feature-item__desc {
  margin-top: 8px;
  font-size: clamp(14px, 16 / 680 * 100cqw, 16px);
  line-height: 1.6;
}
@container (min-width: 540px) {
  .page-technique-child .tech-section__features .feature-item__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(180px, 280 / 680 * 100cqw, 280px);
  }
}
.page-technique-child .tech-section__features .feature-item__image img {
  width: 100%;
}
.page-technique-child .tech-section__table {
  overflow: hidden;
  border: 1px solid #ccd9d4;
  border-radius: 8px;
}
.page-technique-child .tech-section__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.page-technique-child .tech-section__table thead th {
  padding: 1em;
  font-size: clamp(16px, 22 / 1400 * 100vw, 22px);
  font-weight: 400;
  text-align: center;
  background-color: #e1e8e6;
  border-bottom: 1px solid #ccd9d4;
}
.page-technique-child .tech-section__table thead th:first-of-type {
  border-right: 1px solid #ccd9d4;
}
.page-technique-child .tech-section__table tbody th,
.page-technique-child .tech-section__table tbody td {
  padding: clamp(16px, 24 / 1400 * 100vw, 24px);
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #ccd9d4;
}
.page-technique-child .tech-section__table tbody th {
  background-color: #f1f4f3;
  border-right: 1px solid #ccd9d4;
}
.page-technique-child .tech-section__table tbody tr:last-of-type th,
.page-technique-child .tech-section__table tbody tr:last-of-type td {
  border-bottom: none;
}
.page-technique-child .tech-section__list li {
  position: relative;
  padding-left: 1.2em;
}
.page-technique-child .tech-section__list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #00973d;
  border-radius: 4px;
}
.page-technique-child .tech-section__list li:nth-child(n+2) {
  margin-top: 0.25em;
}
.page-technique-child .tech-section .sports-image {
  display: block;
  width: 100%;
  max-width: 131px;
  height: auto;
  margin: 1em auto;
}

/* Base
   ----------------------------------------------------------------- */
.page-lab__container {
  padding-bottom: clamp(64px, 80 / 1400 * 100vw, 80px);
}
.page-lab__copy {
  margin: 1em 0;
  font-size: clamp(24px, 36 / 1400 * 100vw, 36px);
  font-weight: 400;
  line-height: 1.6;
}
.page-lab__desc {
  line-height: 1.6;
}

/* Base
   ----------------------------------------------------------------- */
.page-faq {
  padding-bottom: clamp(128px, 160 / 1400 * 100vw, 160px);
}
.page-faq .faq-section {
  margin: 0 auto;
  margin-top: clamp(56px, 80 / 1400 * 100vw, 80px);
  container-type: inline-size;
}
.page-faq .faq-section__title .section-num {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 14 / 1400 * 100vw, 14px);
  color: #00973d;
}
.page-faq .faq-section__title .section-title {
  padding-bottom: 0.5em;
  font-size: clamp(20px, 32 / 1000 * 100cqw, 32px);
  font-weight: 400;
  border-bottom: 1px solid #ccd9d4;
}
.page-faq .faq-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 24 / 1000 * 100cqw, 24px);
  margin-top: clamp(32px, 40 / 1000 * 100cqw, 40px);
}
@container (min-width: 700px) {
  .page-faq .faq-section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page-faq .faq-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
.page-faq .faq-section .faq-item {
  background-color: #f1f4f3;
  border-radius: 8px;
}
.page-faq .faq-section .faq-item__title {
  position: relative;
  padding: clamp(24px, 32 / 1400 * 100vw, 32px) clamp(24px, 40 / 1400 * 100vw, 40px);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.page-faq .faq-section .faq-item__title::before, .page-faq .faq-section .faq-item__title::after {
  position: absolute;
  top: 50%;
  right: clamp(24px, 40 / 1400 * 100vw, 40px);
  width: 16px;
  height: 1px;
  content: "";
  background-color: #00973d;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.page-faq .faq-section .faq-item__title::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-faq .faq-section .faq-item__title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.page-faq .faq-section .faq-item__title.is-open::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.page-faq .faq-section .faq-item__content {
  position: relative;
  display: none;
  padding: clamp(24px, 32 / 1400 * 100vw, 32px) clamp(24px, 40 / 1400 * 100vw, 40px);
}
.page-faq .faq-section .faq-item__content::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - clamp(48px, 80 / 1400 * 100vw, 80px));
  height: 1px;
  content: "";
  border-top: 1px solid #ccd9d4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-faq .faq-section .faq-item__text {
  position: relative;
  padding-left: 2em;
}
.page-faq .faq-section .faq-item__text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #00973d;
  content: "A.";
}

/* Base
   ----------------------------------------------------------------- */
.page-sitemap {
  padding-bottom: clamp(64px, 120 / 1400 * 100vw, 120px);
}
.page-sitemap__section + .page-sitemap__section {
  margin-top: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-sitemap .sitemap-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 24px;
  margin-top: clamp(24px, 48 / 1400 * 100vw, 48px);
}
.page-sitemap .link-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 32 / 600 * 100cqw, 32px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 20px clamp(16px, 32 / 600 * 100cqw, 32px);
  background-color: #fff;
  border: 1px solid #ccd9d4;
  border-radius: clamp(8px, 16 / 600 * 100cqw, 16px);
}
.page-sitemap .link-card__title {
  padding-right: clamp(40px, 56 / 600 * 100cqw, 56px);
  font-size: clamp(14px, 16 / 600 * 100cqw, 16px);
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-sitemap .link-card__title span {
  display: inline-block;
}
.page-sitemap .link-card__icon {
  position: absolute;
  top: 50%;
  right: clamp(16px, 32 / 600 * 100cqw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-sitemap .link-card__icon svg {
  width: clamp(9px, 14 / 600 * 100cqw, 14px);
  height: clamp(10px, 15 / 600 * 100cqw, 15px);
}

/* Base
   ----------------------------------------------------------------- */
.page-contact {
  padding-bottom: clamp(64px, 120 / 1400 * 100vw, 120px);
}
.page-contact__desc {
  text-align: center;
}
.page-contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 96 / 1400 * 100vw, 96px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(40px, 80 / 1400 * 100vw, 80px) auto 0;
}
.page-contact__step .step-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8em 0;
}
.page-contact__step .step-item__num {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #00973d;
}
.page-contact__step .step-item__title {
  font-size: clamp(12px, 16 / 1400 * 100vw, 16px);
  color: #7c8b85;
  text-align: center;
}
.page-contact__step .step-item.is-current {
  border-bottom: 2px solid #00973d;
}
.page-contact__step .step-item.is-current .step-item__title {
  color: #222;
}
.page-contact__step .step-item + .step-item::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(12px, 48 / 1400 * 100vw, 48px) * -1);
  width: clamp(12px, 48 / 1400 * 100vw, 48px);
  height: 1px;
  content: "";
  background-color: #ccd9d4;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-contact__content {
  margin-top: clamp(20px, 40 / 1400 * 100vw, 40px);
}
.page-contact__complete .complete-title {
  font-size: clamp(24px, 32 / 1400 * 100vw, 32px);
  font-weight: 400;
  color: #00973d;
}
.page-contact__complete .complete-desc {
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
  font-size: 16px;
  line-height: 1.6;
}

/* Base
   ----------------------------------------------------------------- */
.page-request {
  padding-bottom: clamp(64px, 160 / 1400 * 100vw, 160px);
}
.page-request__desc {
  text-align: center;
}
.page-request__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 96 / 1400 * 100vw, 96px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(40px, 80 / 1400 * 100vw, 80px) auto 0;
}
.page-request__step .step-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8em 0;
}
.page-request__step .step-item__num {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #00973d;
}
.page-request__step .step-item__title {
  font-size: clamp(12px, 16 / 1400 * 100vw, 16px);
  color: #7c8b85;
  text-align: center;
}
.page-request__step .step-item.is-current {
  border-bottom: 2px solid #00973d;
}
.page-request__step .step-item.is-current .step-item__title {
  color: #222;
}
.page-request__step .step-item + .step-item::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(12px, 48 / 1400 * 100vw, 48px) * -1);
  width: clamp(12px, 48 / 1400 * 100vw, 48px);
  height: 1px;
  content: "";
  background-color: #ccd9d4;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-request__container {
  margin-top: clamp(40px, 80 / 1400 * 100vw, 80px);
}
.page-request__guide .guide-img {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.page-request__guide .guide-info {
  padding: 1em 2em;
  margin-top: clamp(16px, 32 / 1400 * 100vw, 32px);
  background-color: #f1f4f3;
  border-radius: 8px;
}
.page-request__guide .guide-info__heading {
  font-size: 18px;
  font-weight: 400;
  color: #00973d;
}
.page-request__guide .guide-info__list {
  margin-top: 1em;
}
.page-request__guide .guide-info__list > li {
  position: relative;
  padding-left: 1.2em;
}
.page-request__guide .guide-info__list > li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #00973d;
  border-radius: 4px;
}
.page-request__guide .guide-info__list > li:nth-child(n+2) {
  margin-top: 0.25em;
}
.page-request__complete .complete-title {
  font-size: clamp(24px, 32 / 1400 * 100vw, 32px);
  font-weight: 400;
  color: #00973d;
}
.page-request__complete .complete-desc {
  margin-top: clamp(32px, 40 / 1400 * 100vw, 40px);
  font-size: 16px;
  line-height: 1.6;
}
.page-request__complete .complete-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(32px, 120 / 1400 * 100vw, 120px);
}
.page-request__complete .complete-link__desc {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccd9d4;
}
.page-request__complete .complete-link .form-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(32px, 48 / 1000 * 100cqw, 48px);
  padding-right: clamp(48px, 64 / 1000 * 100cqw, 64px);
  font-size: clamp(14px, 16 / 1000 * 100cqw, 16px);
}
.page-request__complete .complete-link .form-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(32px, 48 / 1000 * 100cqw, 48px);
  height: clamp(32px, 48 / 1000 * 100cqw, 48px);
  content: "";
  background-color: #f1f4f3;
  background-image: url("../img/icon/arrow_primary.svg");
  background-position: center;
  background-size: clamp(10px, 14 / 1000 * 100cqw, 14px);
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Base
   ----------------------------------------------------------------- */
.single {
  padding-bottom: clamp(96px, 172 / 1400 * 100vw, 172px);
}
.single .article__header .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(8px, 24 / 1400 * 100vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .article__header .header-info__date {
  font-family: "Figtree", sans-serif;
  color: #00973d;
}
.single .article__header .header-info__date span {
  padding-left: 0.5em;
  font-size: clamp(20px, 24 / 1400 * 100vw, 24px);
}
.single .article__header .header-info__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .article__header .header-info__category > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4em 1.5em;
  font-size: 12px;
  background-color: #f1f4f3;
  border-radius: 100vh;
}
.single .article__title {
  padding: clamp(16px, 32 / 1400 * 100vw, 32px) 0;
  margin-bottom: 40px;
  font-size: clamp(24px, 32 / 1400 * 100vw, 32px);
  font-weight: 400;
  border-bottom: 1px solid #ccd9d4;
}
.single .article__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 56px;
}
.single .article__sns .sns-label {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #00973d;
}
.single .article__sns .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .article__sns .sns-list li {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.single .article__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #ccd9d4;
}
.single .article .article__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}

/* Base
   ----------------------------------------------------------------- */
.archive-column .archive-column__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 16px;
}
.archive-column .archive-column__item + .archive-column__item {
  margin-top: 16px;
}
.archive-column .column-nopost {
  margin-top: 40px;
}
.archive-column .column-nopost .column-nopost__title {
  font-size: 20px;
  text-align: center;
}
.archive-column .column-nopost .column-nopost__action {
  margin-top: 40px;
}

/* Base
   ----------------------------------------------------------------- */
.archive {
  padding-bottom: clamp(80px, 120 / 1400 * 100vw, 120px);
}
.archive__list {
  margin-top: clamp(32px, 48 / 1400 * 100vw, 48px);
  border-top: 1px solid #ccd9d4;
}
.archive__list > li {
  border-bottom: 1px solid #ccd9d4;
}
.archive .archive-categories__heading {
  font-family: "Figtree", sans-serif;
  font-size: clamp(12px, 16 / 992 * 100vw, 16px);
  font-weight: 400;
  color: #00973d;
}
.archive .archive-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(8px, 16 / 992 * 100vw, 16px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(16px, 24 / 992 * 100vw, 24px);
}
.archive .archive-categories__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(8px, 13 / 992 * 100vw, 13px) 24px;
  font-size: 14px;
  background-color: #f1f4f3;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.archive .archive-categories__link.is-current {
  color: #fff;
  background-color: #00973d;
}

/* Base
   ----------------------------------------------------------------- */
.page-privacy {
  padding-bottom: clamp(64px, 120 / 1400 * 100vw, 120px);
}

/* Base
   ----------------------------------------------------------------- */
.page-notfound {
  padding-bottom: clamp(64px, 120 / 1400 * 100vw, 120px);
}
.page-notfound__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(24px, 40 / 1400 * 100vw, 40px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-notfound__heading {
  font-size: clamp(24px, 32 / 1400 * 100vw, 32px);
  font-weight: 400;
  text-align: center;
}
.page-notfound__desc {
  margin-top: clamp(24px, 48 / 1400 * 100vw, 48px);
}
.page-notfound__image {
  position: relative;
}
.page-notfound__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 24 / 1400 * 100vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(24px, 48 / 1400 * 100vw, 48px);
}

/* ==========================================================================
   Sample 複製時は削除
   ========================================================================== */
/* Base
   ----------------------------------------------------------------- */
.page-sample .sample__block + .sample__block {
  margin-top: 48px;
}
.page-sample .sample__title {
  padding: 8px 12px;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.4;
  color: #00973d;
  background-color: #f1f4f3;
  border-radius: 4px;
}
.page-sample .sample__template + .sample__template {
  margin-top: 40px;
}

/* ======================================================
   下記　自由追加
   ====================================================== */
/* ニュース　リスト */
.sample-newslist__template01 .p-newslist {
  border-top: solid 1px #b3b3b6;
}
.sample-newslist__template01 .p-newslist .p-newslist__item {
  border-bottom: solid 1px #b3b3b6;
}
.sample-newslist__template01 .p-newslist .p-newslist__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 36px 16px 0;
}
.sample-newslist__template01 .p-newslist .p-newslist__item a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 8px;
  content: "";
  background-color: #657786;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sample-newslist__template01 .p-newslist .p-newslist__item .p-newslist__date {
  width: 120px;
  font-size: 16px;
}
.sample-newslist__template01 .p-newslist .p-newslist__item .p-newslist__title {
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
}
.sample-newslist__template01 .p-newslist .c-category {
  max-width: calc(100% - 120px);
}
.sample-newslist__template01 .c-category .c-category__item {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #00973d;
  border: solid 1px #00973d;
  border-radius: 5px;
}

.sample-newslist__template02 .p-newslist {
  border-top: solid 1px #b3b3b6;
}
.sample-newslist__template02 .p-newslist .p-newslist__item {
  width: 100%;
  border-bottom: solid 1px #b3b3b6;
}
.sample-newslist__template02 .p-newslist .p-newslist__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 36px 16px 0;
}
.sample-newslist__template02 .p-newslist .p-newslist__item a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 8px;
  content: "";
  background-color: #657786;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__date {
  width: 100%;
  margin-bottom: 8px;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #00973d;
}
.sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__content {
  width: 100%;
}
.sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__content .p-newslist__title {
  margin-top: 4px;
  font-size: 14px;
}
.sample-newslist__template02 .c-category li {
  margin: 0 4px 8px 0;
}
.sample-newslist__template02 .c-category .c-category__item {
  display: inline-block;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #00973d;
  background-color: #fff;
  border: solid 1px #00973d;
  border-radius: 30px;
}
.sample-newslist__template02 .c-category .c-category__item::before {
  content: "#";
}

.sample-newslist__template03 .p-newslist {
  border-top: solid 1px #b3b3b6;
}
.sample-newslist__template03 .p-newslist .p-newslist__item {
  border-bottom: solid 1px #b3b3b6;
}
.sample-newslist__template03 .p-newslist .p-newslist__item a {
  position: relative;
  display: block;
  padding: 20px 24px 20px 0;
}
.sample-newslist__template03 .p-newslist .p-newslist__item a::before {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  border: solid 1px #b3b3b6;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sample-newslist__template03 .p-newslist .p-newslist__item a::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 7px;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: solid 1px #00973d;
  border-right: solid 1px #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sample-newslist__template03 .p-newslist .p-newslist__item .p-newslist__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sample-newslist__template03 .p-newslist .p-newslist__item .p-newslist__date {
  padding: 2px 0;
  margin-right: 12px;
  font-size: 12px;
  color: #657786;
}
.sample-newslist__template03 .p-newslist .p-newslist__item .p-newslist__title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: normal;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-newslist__template03 .c-category li {
  margin: 0 4px 8px 0;
}
.sample-newslist__template03 .c-category .c-category__item {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #00973d;
  border: solid 1px #00973d;
  border-radius: 5px;
}

/* ボタン　リスト */
.sample-button {
  width: 300px;
  max-width: 100%;
  height: 50px;
}

.sample-buttonlist__template01 .sample-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  color: #00973d;
}
.sample-buttonlist__template01 .sample-button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #00973d;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}
.sample-buttonlist__template01 .sample-button__arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 24px;
  overflow: hidden;
  border: 1px solid #00973d;
  border-radius: 28px;
}
.sample-buttonlist__template01 .sample-button__arrow::before {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 0;
  content: "";
  background-color: #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template01 .sample-button__arrow .arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 1px;
  background: #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template01 .sample-button__arrow .arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 4px;
  height: 4px;
  margin: auto;
  content: "";
  border-top: 1px solid #00973d;
  border-right: 1px solid #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sample-buttonlist__template02 .sample-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template02 .sample-button::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: #00973d;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sample-buttonlist__template03 .sample-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 160px;
  padding: 16px;
  overflow: hidden;
  color: #00973d;
  border: 1px solid #00973d;
}
.sample-buttonlist__template03 .sample-button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  margin: auto;
  content: "";
  background: #f1f4f3;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template03 .sample-button__text {
  z-index: 1;
}
.sample-buttonlist__template03 .sample-button__subtext {
  z-index: 1;
  margin-top: 24px;
  opacity: 1;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.sample-buttonlist__template04 .sample-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00973d;
}
.sample-buttonlist__template04 .sample-button__arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  border: 2px solid #00973d;
  border-radius: 50%;
}
.sample-buttonlist__template04 .sample-button__arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  width: 200%;
  height: 200%;
  margin: auto;
  content: "";
  background-color: #00973d;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template04 .sample-button__arrow .arrow {
  position: relative;
  display: block;
  width: 12px;
  height: 2px;
  background: #fff;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template04 .sample-button__arrow .arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.sample-buttonlist__template05 .sample-button {
  position: relative;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 16px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #00973d;
}
.sample-buttonlist__template05 .sample-button::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  content: "";
  background-color: #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template05 .sample-button .sample-button__text {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template05 .sample-button .sample-button__arrow {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-buttonlist__template05 .sample-button .sample-button__arrow span {
  position: relative;
  display: block;
  width: 16px;
  height: 4px;
  overflow: hidden;
}
.sample-buttonlist__template05 .sample-button .sample-button__arrow span::before, .sample-buttonlist__template05 .sample-button .sample-button__arrow span::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  content: "";
  background-color: #00973d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.sample-buttonlist__template05 .sample-button .sample-button__arrow span::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* FAQ　リスト */
.sample-faqlist__template01 .p-faqlist {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
}
.sample-faqlist__template01 .p-faqlist > li {
  margin: 8px 0;
}
.sample-faqlist__template01 .p-faqlist > li > section {
  border: 1px solid #657786;
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title {
  position: relative;
  padding: 16px 56px 16px 16px;
  font-size: 1rem;
  font-weight: normal;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title::before, .sample-faqlist__template01 .p-faqlist .p-faqlist__title::after {
  position: absolute;
  width: 16px;
  height: 2px;
  content: "";
  background-color: #222;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title::before {
  top: calc(50% - 1px);
  right: 16px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title::after {
  top: calc(50% - 1px);
  right: 16px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title.is-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__title.is-close::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.sample-faqlist__template01 .p-faqlist .p-faqlist__content {
  display: none;
  padding: 8px 16px;
  margin: 0 16px 16px;
  background: #f1f4f3;
}

.sample-faqlist__template02 .p-faqlist {
  margin-top: 24px;
}
.sample-faqlist__template02 .p-faqlist > li + li {
  margin-top: 18px;
}
.sample-faqlist__template02 .p-faqlist__title {
  position: relative;
  padding: 16px 0 16px 1.5em;
  border-bottom: 1px solid #657786;
}
.sample-faqlist__template02 .p-faqlist__title::before {
  position: absolute;
  top: calc(16px - 0.1em);
  left: 0;
  font-size: 18px;
  color: #00973d;
  content: "Q.";
}
.sample-faqlist__template02 .p-faqlist__title > h3 {
  font-size: 16px;
  font-weight: normal;
}
.sample-faqlist__template02 .p-faqlist__content {
  margin-top: 16px;
}

/* タブ　リスト */
.sample-tablist__template01 .p-tab__button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sample-tablist__template01 .p-tab__button > li {
  display: grid;
  place-items: center;
  height: 56px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #ccd9d4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sample-tablist__template01 .p-tab__button > li.is-active {
  color: #222;
  cursor: initial;
  background-color: #f1f4f3;
}
.sample-tablist__template01 .p-tab__content > div {
  position: relative;
  z-index: 2;
  display: none;
  height: 100px;
  padding: 30px;
  background-color: #f1f4f3;
}
.sample-tablist__template01 .p-tab__content > div.is-show {
  display: block;
}

.sample-tablist__template02 .p-tab__button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #b3b3b6;
}
.sample-tablist__template02 .p-tab__button > li {
  padding-bottom: 16px;
  color: #657786;
  text-align: center;
  cursor: pointer;
}
.sample-tablist__template02 .p-tab__button > li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #00973d;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-tablist__template02 .p-tab__button > li.is-active {
  position: relative;
  margin-bottom: -2px;
  color: #00973d;
  cursor: initial;
}
.sample-tablist__template02 .p-tab__button > li.is-active::after {
  opacity: 1;
}
.sample-tablist__template02 .p-tab__content {
  margin-top: 24px;
}
.sample-tablist__template02 .p-tab__content > div {
  position: relative;
  z-index: 2;
  display: none;
  height: 100px;
  padding: 30px;
  background-color: #f1f4f3;
}
.sample-tablist__template02 .p-tab__content > div.is-show {
  display: block;
}

/* フィルター　リスト */
.sample-filterlist__template01 .category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sample-filterlist__template01 .category__list li {
  display: grid;
  place-items: center;
  height: 50px;
  color: #00973d;
  cursor: pointer;
  background-color: #f1f4f3;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-filterlist__template01 .category__list li.a {
  color: #f03748;
}
.sample-filterlist__template01 .category__list li.b {
  color: #f7ac00;
}
.sample-filterlist__template01 .category__list li.c {
  color: #22b295;
}
.sample-filterlist__template01 .category__list li.d {
  color: #2cb1e7;
}
.sample-filterlist__template01 .category__list li.e {
  color: #13202f;
}
.sample-filterlist__template01 .category__list li:hover {
  opacity: 0.6;
}
.sample-filterlist__template01 .item {
  margin-top: 24px;
}
.sample-filterlist__template01 .item__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sample-filterlist__template01 .item__list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  place-items: center;
  height: 50px;
  color: #00973d;
  background: #b3b3b6;
}
.sample-filterlist__template01 .item__list li.a {
  color: #f03748;
}
.sample-filterlist__template01 .item__list li.b {
  color: #f7ac00;
}
.sample-filterlist__template01 .item__list li.c {
  color: #22b295;
}
.sample-filterlist__template01 .item__list li.d {
  color: #2cb1e7;
}
.sample-filterlist__template01 .item__list li.e {
  color: #13202f;
}

/* モーダル　リスト */
.sample-modallist__template01 .title-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.sample-modallist__template01 .title-content .title-item {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  color: #fff;
  cursor: pointer;
  background: #ccd9d4;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-modallist__template01 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 32px 40px;
  background-color: rgba(34, 34, 34, 0.8);
}
.sample-modallist__template01 .modal-item {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  background: #fff;
}
.sample-modallist__template01 .modal-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sample-modallist__template01 .modal-inner {
  position: relative;
}
.sample-modallist__template01 .modal-close-button {
  position: absolute;
  top: -44px;
  right: -44px;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.sample-modallist__template01 .modal-close-button .close-line {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2px;
  line-height: 1;
  color: #fff;
  vertical-align: middle;
  background: currentcolor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sample-modallist__template01 .modal-close-button .close-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* ドロップダウン　リスト */
.sample-dropdownlist__template01 .nav__block {
  padding: 0 40px;
  opacity: 0;
}
.sample-dropdownlist__template01 .nav-item {
  position: relative;
  padding: 8px 0;
  list-style: none;
  cursor: pointer;
}
.sample-dropdownlist__template01 .nav-item a,
.sample-dropdownlist__template01 .nav-item span {
  display: inline-block;
}
.sample-dropdownlist__template01 .nav-parent > span {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sample-dropdownlist__template01 .nav-child__head {
  margin-top: 16px;
  font-size: 14px;
  font-weight: normal;
  color: #657786;
}
.sample-dropdownlist__template01 .nav-child__head::before {
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 8px;
  vertical-align: super;
  content: "";
  background-color: #657786;
}
.sample-dropdownlist__template01 .nav-child__inner li {
  padding: 8px 0;
}

.sample-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sample-container .test {
  container-type: inline-size;
  width: 100%;
}
.sample-container .sample-container__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
.sample-container .sample-container__main li {
  container-type: inline-size;
}
.sample-container .sample-container__sideber {
  width: 100%;
  margin-top: 40px;
}
.sample-container .sample-container__sideber ul {
  border-top: solid 1px #657786;
}
.sample-container .sample-container__sideber ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: solid 1px #657786;
}
.sample-container .sample-container__sideber ul li .thumbnail {
  width: 110px;
  height: 80px;
}
.sample-container .sample-container__sideber ul li .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sample-container__card {
  display: block;
}
.sample-container__card .textbody {
  margin-top: 10px;
}

@container (min-width: 320px) {
  .sample-container__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .sample-container__card .thumbnail {
    width: 140px;
    height: 110px;
  }
  .sample-container__card .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sample-container__card .textbody {
    margin-top: 0;
  }
}
/* ==========================================================================
   Plugin
   ========================================================================== */
@media screen and (min-width: 375px) {
  .page-contact__step .step-item__title br {
    display: none;
  }
  .page-request__step .step-item__title br {
    display: none;
  }
}
@media screen and (min-width: 425px) {
  .u-hide-up-xs {
    display: none !important;
  }
}
@media screen and (min-width: 464px) {
  .page-front .mainview .mainview-scene__inner {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
@media screen and (min-width: 554px) {
  .l-page-header {
    padding: 0 30px;
  }
  .l-header__inner {
    padding: 0 30px;
  }
  .l-footer__logo {
    margin: 0;
  }
  .l-footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 32px 0 0;
  }
  .l-footer__bottom .bottom-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-technique-link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 24 / 1400 * 100vw, 24px);
  }
  .u-hide-up-sm {
    display: none !important;
  }
  .page-front .about {
    background-position: top right;
  }
  .page-front .product .product-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-profile .group-company__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }
  .page-profile .group-company__list > li:nth-child(2) .company-item {
    border-top: 1px solid #ccd9d4;
  }
  .page-architecture .example__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-sitemap .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-contact__step .step-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-contact__complete .complete-title {
    text-align: center;
  }
  .page-contact__complete .complete-desc {
    text-align: center;
  }
  .page-request__step .step-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-request__complete .complete-title {
    text-align: center;
  }
  .page-request__complete .complete-desc {
    text-align: center;
  }
  .sample-filterlist__template01 .category__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .sample-filterlist__template01 .item__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .sample-container .sample-container__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 560px) {
  .page-front .mainview .mainview-scene__inner {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
}
@media screen and (min-width: 630px) {
  .page-front .mainview .mainview-scene__inner {
    width: 130%;
    height: auto;
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 0;
  }
  .l-footer__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .l-footer__nav {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50%;
    margin-top: -24px;
  }
  .l-footer__logo img {
    width: 240px;
  }
  .l-footer__bottom {
    padding: 40px 0;
    margin: 40px 0 0;
  }
  .l-footer__bottom .bottom-nav {
    gap: 3em;
  }
  .l-footer__copyright {
    font-size: 14px;
  }
  .p-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2em;
  }
  .p-footer-nav__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin-top: 0;
  }
  .p-footer-nav .nav-item {
    position: static;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
  }
  .p-footer-nav .nav-item__label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 0;
    border-bottom: none;
  }
  .p-footer-nav .nav-item__label::before {
    width: 32px;
    height: 1px;
    content: "";
    background-color: #fff;
  }
  .p-footer-nav .nav-item__label::after {
    display: none;
  }
  .p-footer-nav .nav-item__subnav {
    display: block;
    padding: 0;
    margin-bottom: 16px;
  }
  .p-footer-nav .nav-item:has(.nav-item__subnav) {
    cursor: default;
  }
  .p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before {
    position: static;
    width: 32px;
    height: 1px;
    content: "";
    background-color: #fff;
  }
  .p-footer-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
    display: none;
  }
  .p-footer-nav .subnav-item > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 16px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 4px 0;
  }
  .p-footer-nav .subnav-item > a::after {
    display: none;
  }
  .p-form__group {
    padding: 20px 0;
  }
  .p-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 0;
  }
  .p-form__row--top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-form__row--top > dt {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 17px;
  }
  .p-form__row--labeled {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-form__row--labeled > dt {
    padding-top: 42px;
  }
  .p-form__row > dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32%;
    min-width: 240px;
    padding-right: 20px;
  }
  .p-form__row > dt > .tag {
    height: 22px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 22px;
  }
  .p-form__row > dd {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
  .p-form-controls {
    margin: 0 -12px;
  }
  .p-form-controls .p-form-control {
    padding: 0 12px;
  }
  .p-form-control + .p-form-control {
    margin-top: 16px;
  }
  .p-form-control input[type=text],
  .p-form-control input[type=number],
  .p-form-control input[type=email],
  .p-form-control input[type=tel] {
    padding: 16px;
  }
  .p-form-control textarea {
    padding: 18px 16px;
  }
  .p-form-control--zip .c-input {
    min-width: 140px;
  }
  .p-form-control--zip .c-input + .c-input {
    margin-left: 22px;
  }
  .p-form-radios--horizontal,
  .mwform-radio-field--horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -12px;
  }
  .p-form__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 48px;
  }
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
  .p-editor-content h1 {
    font-size: 28px;
  }
  .p-editor-content h2 {
    font-size: 24px;
  }
  .p-editor-content h3 {
    font-size: 22px;
  }
  .p-editor-content h4 {
    font-size: 20px;
  }
  .p-editor-content h5 {
    font-size: 18px;
  }
  .p-editor-content h6 {
    font-size: 18px;
  }
  .p-editor-content img {
    margin-bottom: 1.5em;
  }
  .p-editor-content .alignright {
    float: right;
    margin-left: 15px;
  }
  .p-editor-content .alignleft {
    float: left;
    margin-right: 15px;
  }
  .p-editor-content table {
    margin: 25px 0;
  }
  .p-pagination__list {
    gap: 20px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
  .p-pagination__list > ul {
    gap: 8px;
  }
  .p-pagination__item {
    display: block;
  }
  .p-pagination__item:has(.next) {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-pagination__item .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 16px;
    color: #00973d;
    background-color: #f1f4f3;
    border-radius: 100vh;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .p-pagination__item .page-numbers.current {
    color: #fff;
    background-color: #00973d;
  }
  .p-pagination__item.is-current {
    color: var(--c-white);
    background-color: #00973d;
  }
  .p-pagination__ellipses {
    display: block;
  }
  .p-pagination__total {
    display: none;
  }
  .p-news-item__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-news-item__date {
    padding: 0 clamp(16px, 30 / 992 * 100cqw, 30px);
  }
  .p-news-item__title {
    margin-top: 0;
  }
  .p-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .p-container--lg {
    padding-right: 40px;
    padding-left: 40px;
  }
  .p-container--md {
    padding-right: 40px;
    padding-left: 40px;
  }
  .p-container--sm {
    padding-right: 40px;
    padding-left: 40px;
  }
  .p-section-title01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-project-link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 24 / 1400 * 100vw, 24px);
  }
  .p-technique-link__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-button-wrapper .c-button {
    margin: 0 8px;
  }
  .c-grid {
    grid-template-columns: 1fr 1fr;
  }
  .c-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 32 / 1400 * 100vw, 32px);
  }
  .c-grid--cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid--cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-input label {
    font-size: 14px;
  }
  .c-select {
    max-width: 220px;
  }
  .c-select::before {
    right: 24px;
  }
  .c-select select {
    padding: 16px;
  }
  .c-radio,
  .mwform-radio-field label {
    padding: 12px;
    font-size: 16px;
  }
  .u-hide-up-md {
    display: none !important;
  }
  .page-front .mainview__container {
    height: auto;
    aspect-ratio: 1760/920;
  }
  .page-front .mainview .mainview-scene {
    right: 0;
    left: initial;
    height: 100%;
    aspect-ratio: 1760/920;
  }
  .page-front .mainview .mainview-scene__inner {
    right: 0;
    left: initial;
    width: auto;
    height: 100%;
    -webkit-transform: translateX(18%) scale(1.4);
            transform: translateX(18%) scale(1.4);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
  }
  .page-front .mainview .mainview-title {
    position: absolute;
    top: 50%;
    left: 5%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-front .mainview__scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 40px;
  }
  .page-front .about {
    background: url("../img/front/about_bg_pc.jpg") no-repeat top right;
    background-size: 70% auto;
  }
  .page-front .about__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
  .page-front .product__container {
    grid-template-columns: clamp(360px, 862 / 1920 * 100vw, 862px) 1fr;
    gap: clamp(40px, 90 / 1400 * 100vw, 90px);
  }
  .page-front .product__image {
    max-width: 100%;
    margin: 0;
  }
  .page-front .base__bg {
    width: clamp(375px, 710 / 1400 * 100vw, 710px);
  }
  .page-front .base__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .page-front .recruit__container {
    grid-template-columns: 1fr 340px;
    gap: clamp(24px, 32 / 1400 * 100vw, 32px);
  }
  .page-front .recruit__image {
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-front .recruit__info {
    margin: 0 auto;
  }
  .page-front .news .news-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-front .news__action {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page-message .message-header {
    display: grid;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    grid-template-columns: 1fr clamp(300px, 420 / 1000 * 100vw, 420px);
    gap: clamp(32px, 58 / 1400 * 100vw, 58px);
    max-width: 100%;
  }
  .page-message .message-header__image {
    padding: 0;
  }
  .page-message .message-header__body {
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .page-message .message-header__content {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-message .message-header__title {
    font-size: clamp(64px, 100 / 1300 * 100vw, 100px);
  }
  .page-message .message-header__title span {
    margin-left: clamp(120px, 180 / 1400 * 100vw, 180px);
  }
  .page-message .message-header__info {
    margin-top: clamp(16px, 24 / 1400 * 100vw, 24px);
    text-align: right;
  }
  .page-message .company-link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 32 / 1400 * 100vw, 32px) clamp(16px, 40 / 1400 * 100vw, 40px);
  }
  .page-profile .office-table__list {
    border-top: none;
  }
  .page-profile .office-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-profile .office-table__branch {
    width: clamp(300px, 400 / 992 * 100vw, 400px);
  }
  .page-profile .office-table__office {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 48px;
    margin-left: 0;
    border-left: 1px solid #ccd9d4;
  }
  .page-profile .office-table__office .office-item {
    padding: 24px 0;
  }
  .page-history .history-table__item dt br {
    display: none;
  }
  .page-eco .eco-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
  }
  .page-eco .eco-block__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-eco .eco-block__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(300px, 680 / 1920 * 100vw, 680px);
  }
  .page-eco .eco-block--02 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-eco .eco-block--03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-eco .eco-block--03 .eco-block__images {
    grid-template-columns: 1fr 1fr;
  }
  .page-architecture .construction__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 72 / 1400 * 100vw, 72px) clamp(24px, 40 / 1400 * 100vw, 40px);
  }
  .page-technique-child .tech-section__content {
    grid-template-columns: 1fr 1fr;
  }
  .page-technique-child .tech-section__content--01 {
    grid-template-columns: 1fr;
  }
  .page-technique-child .tech-section__features {
    grid-template-columns: 1fr 1fr;
  }
  .page-technique-child .tech-section .sports-image {
    margin: 1em 0;
  }
  .single .article__sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .archive-column .archive-column__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 24px -16px 0;
  }
  .archive-column .archive-column__item {
    width: 33.3333333333%;
    padding: 24px 16px;
  }
  .archive-column .archive-column__item + .archive-column__item {
    margin-top: 0;
  }
  .sample-newslist__template01 .c-category .c-category__item {
    padding: 2px 16px;
    font-size: 14px;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a {
    padding: 28px 56px 28px 0;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a::before {
    width: 24px;
    height: 24px;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a::after {
    top: calc(50% - 4px);
    right: 10px;
    width: 7px;
    height: 7px;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item .p-newslist__date {
    margin-right: 16px;
    font-size: 14px;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item .p-newslist__title {
    margin-top: 12px;
    font-size: 16px;
  }
  .sample-newslist__template03 .c-category .c-category__item {
    padding: 2px 16px;
    font-size: 14px;
  }
  .sample-container .sample-container__main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (hover) and (min-width: 768px) {
  .c-button:hover {
    color: #00973d;
    background: #f1f4f3;
  }
  .c-button:hover .c-button__icon svg path {
    fill: #00973d;
  }
}
@media screen and (min-width: 992px) {
  .l-main {
    padding-top: 48px;
  }
  .l-page-header__inner {
    border-radius: 24px;
  }
  .l-page-header__breadcrumb {
    max-width: 60%;
    border-radius: 24px 0 0;
  }
  .l-page-header__breadcrumb .corner {
    width: 24px;
    height: 24px;
  }
  .l-page-header__breadcrumb .corner::before {
    -webkit-box-shadow: 24px 24px 0 0 #fff;
            box-shadow: 24px 24px 0 0 #fff;
  }
  .l-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(36px, 72 / 1920 * 100vw, 72px);
  }
  .l-page__nav {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 312px;
  }
  .l-page__main {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
  .l-header {
    margin-top: 32px;
  }
  .l-header.is-scroll .l-header__nav {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .l-header.is-scroll.is-show .l-header__nav {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .l-header__inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 58px;
  }
  .l-header__nav {
    top: 32px;
    right: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 58px;
    margin-left: auto;
    visibility: visible;
    background: none;
    opacity: 1;
  }
  .l-header__menu {
    display: none;
  }
  .l-header--home .l-header__nav {
    top: 52px;
    right: 52px;
  }
  .l-header--home .subnav-item > a::after {
    background-color: #f1f4f3 !important;
  }
  .l-footer__nav {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 55%;
  }
  .p-global-nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    margin: 0;
    background-color: #f1f4f3;
    border-radius: 24px;
  }
  .p-global-nav__logo {
    display: none;
  }
  .p-global-nav__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin-top: 0;
  }
  .p-global-nav__button {
    width: 100px;
    height: 38px;
  }
  .p-global-nav__button a {
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 16px;
  }
  .p-global-nav__button a svg {
    display: none;
  }
  .p-global-nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(24px, 32 / 1400 * 100vw, 32px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 clamp(16px, 28 / 1400 * 100vw, 28px);
    margin-top: 0;
  }
  .p-global-nav .nav-item {
    position: static;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
  }
  .p-global-nav .nav-item__label {
    padding: 0;
    border-bottom: none;
  }
  .p-global-nav .nav-item__label::after {
    display: none;
  }
  .p-global-nav .nav-item__label .label-en {
    display: none;
  }
  .p-global-nav .nav-item__label .label-ja {
    font-size: clamp(13px, 16 / 1400 * 100vw, 16px);
  }
  .p-global-nav .nav-item__subnav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 40px 8px;
    border-top: 1px solid #ccd9d4;
  }
  .p-global-nav .nav-item__subnav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
  .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label {
    padding-right: 13px;
  }
  .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before, .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
    top: 50%;
    width: 9px;
    height: 9px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::before {
    width: 9px;
    height: 1px;
  }
  .p-global-nav .nav-item:has(.nav-item__subnav) .nav-item__label::after {
    right: 4px;
    width: 1px;
    height: 9px;
  }
  .p-global-nav .subnav-item img {
    display: block;
    width: clamp(56px, 72 / 1400 * 100vw, 72px);
    height: clamp(56px, 72 / 1400 * 100vw, 72px);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-global-nav .subnav-item:nth-child(n+3) {
    border-top: 1px solid #ccd9d4;
  }
  .p-global-nav .subnav-item > a {
    gap: 16px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 24px 0;
    color: #222;
  }
  .p-global-nav .subnav-item > a::after {
    width: 32px;
    height: 32px;
    margin-left: auto;
    background-color: #fff;
    background-size: 10px 10px;
    border-radius: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .p-form__row > dt {
    width: 26%;
  }
  .p-form__row > dt > label {
    font-size: 14px;
  }
  .p-form__row > dt > label > small {
    font-size: 13px;
  }
  .p-editor-content a:hover {
    text-decoration: underline;
  }
  .p-page-nav {
    position: sticky;
    top: 32px;
  }
  .p-technique-link__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-menu-icon {
    display: none;
  }
  .u-hide-up-lg {
    display: none !important;
  }
  .page-front .mainview {
    padding: 40px 40px 0;
  }
  .page-front .mainview__company {
    width: clamp(200px, 310 / 1400 * 100vw, 310px);
    height: 70px;
  }
  .page-front .mainview__company .company-logo img {
    width: 90%;
  }
  .page-front .mainview__company .corner {
    width: 24px;
    height: 24px;
  }
  .page-front .mainview__company .corner::before {
    -webkit-box-shadow: 24px 24px 0 0 #fff;
            box-shadow: 24px 24px 0 0 #fff;
  }
  .page-front .mainview__scroll {
    width: 157px;
    height: 62px;
  }
  .page-front .mainview__scroll svg {
    width: 93px;
  }
  .page-front .mainview__scroll .corner {
    width: 24px;
    height: 24px;
  }
  .page-front .mainview__scroll .corner::before {
    -webkit-box-shadow: 24px 24px 0 0 #fff;
            box-shadow: 24px 24px 0 0 #fff;
  }
  .page-front .about {
    padding-top: clamp(180px, 240 / 1400 * 100vw, 240px);
  }
  .page-front .recruit__container {
    grid-template-columns: 1fr clamp(368px, 800 / 1920 * 100vw, 800px);
  }
  .page-profile .office-table__branch {
    padding: 24px 32px;
  }
  .page-history .history-table__item dt {
    padding-left: clamp(16px, 32 / 1400 * 100vw, 32px);
  }
  .page-architecture .example__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-sitemap .sitemap-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-request__guide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(300px, 600 / 1920 * 100vw, 600px);
  }
  .page-request__complete .complete-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-request__complete .complete-link__desc {
    padding: 0.5em 1em 0.5em 0;
    padding-right: 1em;
    margin-right: 1em;
    margin-bottom: 0;
    border-right: 1px solid #ccd9d4;
    border-bottom: none;
  }
  .single .article .article__back {
    margin-top: 80px;
  }
  .archive-column .column-nopost {
    margin-top: 80px;
  }
  .archive-column .column-nopost .column-nopost__title {
    font-size: 28px;
  }
  .archive-column .column-nopost .column-nopost__action {
    margin-top: 80px;
  }
  .archive .archive-categories__link {
    min-width: 180px;
  }
  .page-notfound__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-notfound__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(500px, 640 / 1400 * 100vw, 640px);
  }
  .page-notfound__heading {
    text-align: left;
  }
  .page-notfound__image {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .page-notfound__action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-notfound__action .c-button--transparent {
    padding-right: 0;
  }
  .page-sample .sample__block + .sample__block {
    margin-top: 80px;
  }
  .page-sample .sample__title {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .sample-newslist__template01 .p-newslist .p-newslist__item a {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 16px;
    padding: 24px 100px 24px 24px;
  }
  .sample-newslist__template01 .p-newslist .p-newslist__item a::before {
    right: 24px;
    width: 32px;
    height: 12px;
  }
  .sample-newslist__template01 .p-newslist .p-newslist__item .p-newslist__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    margin-top: 0;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item a {
    padding: 24px 100px 24px 24px;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item a::before {
    right: 24px;
    width: 32px;
    height: 12px;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__date {
    width: 136px;
    margin-bottom: 0;
    font-size: 14px;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__content {
    width: calc(100% - 136px);
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item .p-newslist__content .p-newslist__title {
    font-size: 20px;
  }
  .sample-newslist__template02 .c-category .c-category__item {
    padding: 4px 12px;
    font-size: 14px;
  }
  .sample-buttonlist__template03 .sample-button__subtext {
    opacity: 0;
  }
  .sample-buttonlist__template04 .sample-button__arrow::before {
    width: 0;
    height: 0;
  }
  .sample-buttonlist__template04 .sample-button__arrow .arrow {
    opacity: 0;
  }
  .sample-faqlist__template02 .p-faqlist > li + li {
    margin-top: 24px;
  }
  .sample-faqlist__template02 .p-faqlist__title {
    padding-left: 2em;
  }
  .sample-faqlist__template02 .p-faqlist__title > h3 {
    font-size: 18px;
  }
  .sample-dropdownlist__template01 .nav__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    opacity: 1;
  }
  .sample-dropdownlist__template01 .nav-item {
    padding: 0 16px;
    letter-spacing: inherit;
  }
  .sample-dropdownlist__template01 .nav-item:nth-last-child(1 of .nav-item) {
    padding-right: 0;
  }
  .sample-dropdownlist__template01 .nav-parent > span::after {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    content: "";
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .sample-dropdownlist__template01 .nav-child {
    position: absolute;
    top: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    width: 480px;
    padding: 24px;
    overflow: hidden;
    visibility: hidden;
    background-color: #f1f4f3;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .sample-dropdownlist__template01 .nav-child__head {
    margin-top: 0;
  }
  .sample-dropdownlist__template01 .nav-child__head::before {
    content: none;
  }
  .sample-dropdownlist__template01 .nav-child__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 72px;
  }
  .sample-dropdownlist__template01 .nav-child__inner li {
    padding: 0;
  }
  .sample-container .sample-container__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sample-container .sample-container__main {
    width: calc(100% - 320px);
    padding-right: 40px;
  }
  .sample-container .sample-container__sideber {
    width: 320px;
    margin-top: 0;
  }
}
@media screen and (hover) and (min-width: 992px) {
  .p-global-nav .subnav-item:hover > a::after {
    background-color: #00973d !important;
    background-image: url("../img/icon/arrow_white.svg");
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
  .l-header__logo {
    width: 310px;
  }
  .l-footer__totop {
    width: 48px;
    height: 48px;
  }
  .l-footer__totop svg {
    width: 16px;
    height: 16px;
  }
  .l-footer__logo img {
    width: 100%;
  }
  .p-global-nav__button {
    width: 140px;
  }
  .p-global-nav__button a svg {
    position: absolute;
    top: calc(50% - 8px);
    left: -50%;
    display: block;
    width: 16px;
    height: 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .p-form__row > dt {
    padding-right: 30px;
  }
  .p-page-nav {
    top: 72px;
  }
  .p-container {
    padding-right: 80px;
    padding-left: 80px;
  }
  .p-container--lg {
    padding-right: 80px;
    padding-left: 80px;
  }
  .p-container--md {
    padding-right: 80px;
    padding-left: 80px;
  }
  .p-container--sm {
    padding-right: 80px;
    padding-left: 80px;
  }
  .p-project-link__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 24 / 1400 * 100vw, 24px);
  }
  .u-hide-up-xl {
    display: none !important;
  }
  .page-front .about__list {
    margin-top: 64px;
  }
  .page-message .message-header__title {
    -webkit-transform: translateX(-1.5em);
            transform: translateX(-1.5em);
  }
}
@media screen and (hover) and (min-width: 1200px) {
  .p-global-nav__button a:hover span {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  .p-global-nav__button a:hover svg {
    left: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .l-page-header {
    padding: 0 80px;
  }
  .l-header {
    margin-top: 72px;
  }
  .l-header__inner {
    height: 72px;
    padding: 0 80px;
  }
  .l-header__nav {
    top: 72px;
    right: 80px;
    height: 72px;
  }
  .l-header--home .l-header__nav {
    top: 52px;
    right: 104px;
  }
  .l-footer__nav {
    width: 40%;
  }
  .p-global-nav__button {
    width: 180px;
    height: 52px;
  }
  .p-global-nav .subnav-item > a {
    font-size: 16px;
  }
  .p-footer-nav .subnav-item > a {
    font-size: 16px;
  }
  .page-front .mainview {
    padding: 40px 80px 0;
  }
  .page-front .mainview__company {
    width: 310px;
    height: 96px;
  }
  .page-sitemap .sitemap-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (hover) and (min-width: 1400px) {
  .p-global-nav__button a:hover span {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  .p-global-nav__button a:hover svg {
    left: 50px;
  }
}
@media (hover) {
  .l-footer__totop:hover {
    background-color: #00973d;
  }
  .l-footer__totop:hover svg path {
    fill: #fff;
  }
  .l-footer__address .tel-link {
    pointer-events: none;
  }
  .l-footer__bottom a:hover {
    color: #00973d;
  }
  .p-global-nav__button a:hover {
    background-color: #222;
  }
  .p-footer-nav .nav-item a.nav-item__label:hover {
    color: #00973d;
  }
  .p-footer-nav .subnav-item > a:hover {
    color: #00973d;
  }
  .p-form__actions .submit-button:hover {
    color: #00973d;
    background: #f1f4f3;
    border-color: #00973d;
  }
  .p-form__actions .submit-button:hover::after {
    background-image: url("../img/icon/arrow_primary.svg");
  }
  .p-form__actions .back-button:hover {
    border-color: #00973d;
  }
  .p-form__actions .back-button:hover::after {
    background-image: url("../img/icon/arrow_primary.svg");
  }
  .p-pagination__item .page-numbers:hover {
    color: #fff;
    background-color: #00973d;
    opacity: 1;
  }
  .p-pagination__item .page-numbers:hover .page-numbers {
    color: #fff;
  }
  .p-pagination__item .page-numbers.prev:hover, .p-pagination__item .page-numbers.next:hover {
    background-color: #00973d;
  }
  .p-pagination__item .page-numbers.prev:hover svg path, .p-pagination__item .page-numbers.next:hover svg path {
    fill: #fff;
  }
  .p-news-item__inner:hover .p-news-item__icon {
    background-color: #00973d;
  }
  .p-news-item__inner:hover .p-news-item__icon svg path {
    fill: #fff;
  }
  .p-page-nav__list .nav-item:hover .nav-item__title {
    color: #00973d;
  }
  .p-breadcrumb a:hover {
    color: #00973d;
  }
  .p-anchor-links > ul .anchor-link:hover .anchor-link__icon {
    background-color: #00973d;
  }
  .p-anchor-links > ul .anchor-link:hover .anchor-link__icon svg path {
    fill: #fff;
  }
  .p-project-link .link-card:hover {
    background-color: #00973d;
  }
  .p-project-link .link-card:hover .link-card__title {
    color: #fff;
  }
  .p-project-link .link-card:hover .link-card__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-project-link .link-card:hover .link-card__icon {
    background-color: #00973d;
  }
  .p-project-link .link-card:hover .link-card__icon svg {
    display: none;
  }
  .p-project-link .link-card:hover .link-card__icon::after {
    width: 12px;
    height: 12px;
    content: "";
    background-color: #fff;
    border-radius: 6px;
  }
  .p-technique-link .link-card:hover {
    background-color: #00973d;
  }
  .p-technique-link .link-card:hover .link-card__title {
    color: #fff;
  }
  .p-technique-link .link-card:hover .link-card__num {
    color: #fff;
  }
  .p-technique-link .link-card:hover .link-card__icon {
    background-color: #00973d;
  }
  .p-technique-link .link-card:hover .link-card__icon svg {
    display: none;
  }
  .p-technique-link .link-card:hover .link-card__icon::after {
    width: 8px;
    height: 8px;
    content: "";
    background-color: #fff;
    border-radius: 4px;
  }
  .c-button--transparent:hover {
    background-color: transparent;
  }
  .c-button--transparent:hover .c-button__icon {
    background-color: #00973d;
  }
  .c-button--transparent:hover .c-button__icon svg path {
    fill: #fff;
  }
  .c-arrow-link:hover {
    text-decoration: underline;
  }
  .c-arrow-link:hover::after {
    -webkit-transform: translateY(-50%) translateX(4px);
            transform: translateY(-50%) translateX(4px);
  }
  .u-tel-link {
    pointer-events: none;
  }
  .page-front .about .about-card__inner:hover .about-card__thumbnail img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-front .about .about-card__inner:hover .about-card__desc::after {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .page-front .base .base-card__inner:hover .base-card__thumbnail img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-front .base .base-card__inner:hover .base-card__action .action-icon {
    background-color: #00973d;
  }
  .page-front .base .base-card__inner:hover .base-card__action .action-icon svg path {
    fill: #fff;
  }
  .page-front .recruit__action .c-button:hover {
    background-color: #fff;
  }
  .page-message .company-link .link-card:hover .link-card__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-message .company-link .link-card:hover .link-card__icon {
    background-color: #00973d;
  }
  .page-message .company-link .link-card:hover .link-card__icon svg path {
    fill: #fff;
  }
  .page-profile .googlemap-link:hover {
    text-decoration: underline;
  }
  .page-profile .group-company .company-item__link:hover::after {
    -webkit-transform: translateX(0.5em);
            transform: translateX(0.5em);
  }
  .page-technique .tech-block__link:hover {
    color: #00973d;
  }
  .page-technique .tech-block__link:hover::after {
    background-color: #00973d;
    background-image: url("../img/icon/arrow_white.svg");
  }
  .page-technique .tech-block__list .link-item:hover {
    color: #00973d;
  }
  .page-technique .tech-block__list .link-item:hover::after {
    background-color: #00973d;
    background-image: url("../img/icon/arrow_white.svg");
  }
  .page-sitemap .link-card:hover {
    background-color: #00973d;
  }
  .page-sitemap .link-card:hover .link-card__title {
    color: #fff;
  }
  .page-sitemap .link-card:hover .link-card__icon {
    background-color: #00973d;
  }
  .page-sitemap .link-card:hover .link-card__icon svg {
    display: none;
  }
  .page-sitemap .link-card:hover .link-card__icon::after {
    width: 8px;
    height: 8px;
    content: "";
    background-color: #fff;
    border-radius: 4px;
  }
  .page-request__complete .complete-link .form-link:hover {
    color: #00973d;
  }
  .page-request__complete .complete-link .form-link:hover::after {
    background-color: #00973d;
    background-image: url("../img/icon/arrow_white.svg");
  }
  .single .article__sns .sns-list li:hover {
    opacity: 0.8;
  }
  .archive .archive-categories__link:hover {
    color: #fff;
    background-color: #00973d;
  }
  .sample-buttonlist__template01 .sample-button:hover {
    opacity: 1;
  }
  .sample-buttonlist__template01 .sample-button:hover::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  .sample-buttonlist__template01 .sample-button:hover .sample-button__arrow::before {
    height: 100%;
  }
  .sample-buttonlist__template01 .sample-button:hover .arrow {
    background: #fff;
  }
  .sample-buttonlist__template01 .sample-button:hover .arrow::before {
    border-color: #fff;
  }
  .sample-buttonlist__template02 .sample-button:hover {
    color: #00973d;
    opacity: 1;
  }
  .sample-buttonlist__template02 .sample-button:hover::before {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .sample-buttonlist__template03 .sample-button:hover {
    opacity: 1;
  }
  .sample-buttonlist__template03 .sample-button:hover::before {
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    width: 200%;
    padding: 200% 0 0;
  }
  .sample-buttonlist__template03 .sample-button:hover .sample-button__subtext {
    opacity: 1;
  }
  .sample-buttonlist__template04 .sample-button:hover {
    opacity: 1;
  }
  .sample-buttonlist__template04 .sample-button:hover .sample-button__arrow::before {
    width: 200%;
    height: 200%;
  }
  .sample-buttonlist__template04 .sample-button:hover .arrow {
    opacity: 1;
  }
  .sample-buttonlist__template05 .sample-button:hover {
    opacity: 1;
  }
  .sample-buttonlist__template05 .sample-button:hover::before {
    width: 100%;
  }
  .sample-buttonlist__template05 .sample-button:hover .sample-button__text {
    color: #fff;
  }
  .sample-buttonlist__template05 .sample-button:hover .sample-button__arrow {
    border: 1px solid #fff;
  }
  .sample-buttonlist__template05 .sample-button:hover .sample-button__arrow span::before {
    background-color: #fff;
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .sample-buttonlist__template05 .sample-button:hover .sample-button__arrow span::after {
    background-color: #fff;
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .sample-dropdownlist__template01 .nav-parent:hover .nav-child {
    visibility: visible;
    opacity: 1;
  }
}
@media (hover: hover) {
  .p-global-nav .nav-item:hover .nav-item__label .label-ja {
    color: #00973d;
  }
  .sample-newslist__template01 .p-newslist .p-newslist__item a:hover {
    background-color: #f1f4f3;
  }
  .sample-newslist__template01 .p-newslist .p-newslist__item a:hover::before {
    right: 12px;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item a:hover {
    background-color: #f1f4f3;
  }
  .sample-newslist__template02 .p-newslist .p-newslist__item a:hover::before {
    right: 12px;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a:hover::before {
    background-color: #00973d;
    border-color: #00973d;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a:hover::after {
    border-color: #fff;
  }
  .sample-newslist__template03 .p-newslist .p-newslist__item a:hover .title {
    color: #00973d;
  }
}
