@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:hover {
  opacity: .7;
  text-decoration: none;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

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

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #3f51aa;
  border-bottom: .25em solid #3f51aa;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

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

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

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

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3f51aa;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #3f51aa;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #3f51aa;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-advantage {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.l-contact {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-corporate {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-equipment {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-faq {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-fixed-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 30;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
}

.l-fixed-bar.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-footer {
  position: relative;
  z-index: 10;
}

.l-frp {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
}

.l-maintenance {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-pvc {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-recruit {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-sitemap {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.l-top-advantage {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.l-top-recruit {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.l-top-works {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.l-works {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.c-lower-heading {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4ba371;
  padding: 12px 20px;
  padding: .75rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-lower-heading::before {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-clip-path: polygon(25% 20%, 45% 20%, 65% 50%, 45% 80%, 25% 80%, 45% 50%);
  clip-path: polygon(25% 20%, 45% 20%, 65% 50%, 45% 80%, 25% 80%, 45% 50%);
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-page-nav {
  margin-inline: auto;
  gap: clamp(1px, 2vw, 10px);
  gap: clamp(.0625rem, 2vw, .625rem);
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #eee;
  max-width: 900px;
  max-width: 56.25rem;
}

.c-page-nav .wp-block-button {
  margin: 0;
  line-height: 1;
}

.c-page-nav .wp-block-button .wp-block-button__link {
  padding-block: 16px;
  padding-block: 1rem;
  padding-inline: clamp(0px, 2.4vw, 12px);
  padding-inline: clamp(0rem, 2.4vw, .75rem);
  gap: clamp(2px, 1.6vw, 6px);
  gap: clamp(.125rem, 1.6vw, .375rem);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  border: none;
  border-radius: 0;
  background: none;
  height: auto;
  color: #000;
  font-size: clamp(8px, 2.6vw, 13px);
  font-size: clamp(.5rem, 2.6vw, .8125rem);
  font-weight: 400;
  white-space: nowrap;
}

.c-page-nav .wp-block-button .wp-block-button__link::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #3f51aa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 1l4 4-4 4' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: .625rem;
  width: clamp(10px, 4.2666666667vw, 16px);
  width: clamp(.625rem, 4.2666666667vw, 1rem);
  height: clamp(10px, 4.2666666667vw, 16px);
  height: clamp(.625rem, 4.2666666667vw, 1rem);
  content: '';
}

.c-page-nav .wp-block-button .wp-block-button__link:hover {
  opacity: .7;
}

.c-works-card {
  display: block;
}

.c-works-card__img {
  overflow: hidden;
}

.c-works-card__img img {
  aspect-ratio: 400/250;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-works-card__body {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 10px;
  margin-top: .625rem;
}

.c-works-card__cat {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 999px;
  padding: 5px 15px;
  padding: .3125rem .9375rem;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.c-works-card__cat--pvc {
  background-color: #847564;
}

.c-works-card__cat--frp {
  background-color: #e94545;
}

.c-works-card__cat--maintenance {
  background-color: #c6b739;
}

.c-works-card__title {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-404 {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-404__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  text-align: center;
}

.p-404__title {
  color: #000;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-404__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 2;
}

.p-404__btn-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-404__btn {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 2px solid #3f51aa;
  border-radius: .3125rem;
  background-color: #3f51aa;
  padding: 14px 40px;
  padding: .875rem 2.5rem;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
}

.p-404__btn:hover {
  background-color: #fff;
  color: #3f51aa;
}

.p-404Page .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-advantage {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-advantage__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-advantage-head + p,
.p-advantage-head + .wp-block-paragraph {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-advantage p + .wp-block-columns,
.p-advantage .wp-block-paragraph + .wp-block-columns {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-advantage .wp-block-columns {
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-advantage .wp-block-columns + .p-advantage-head {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-advantage-head {
  text-align: center;
}

.p-advantage-head__eyebrow {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-advantage-head__label {
  color: #3f51aa;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.p-advantage-head__num {
  color: #3f51aa;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-advantage-head__title {
  margin-top: 8px;
  margin-top: .5rem;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-advantage-head__title span {
  display: inline-block;
}

.p-advantage .wp-block-paragraph,
.p-advantage p {
  color: #000;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-advantage .wp-block-column img {
  aspect-ratio: 440/284;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-contact {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-contact__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-contact__inner > * + .c-lower-heading {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact__inner > .wpcf7 + .c-lower-heading {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-form {
  margin: 0 auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  max-width: 980px;
  max-width: 61.25rem;
}

.p-form__list {
  margin: 0;
  padding: 0;
}

.p-form__item {
  border-top: 1px solid #e7e0db;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-form__item-head {
  margin: 0;
  padding: 0;
}

.p-form__item-head p {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.p-form__label {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
}

.p-form__label.is-required::before {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1.25rem;
  background-color: #bd2e2e;
  padding: 4px 12px;
  padding: .25rem .75rem;
  min-height: 30px;
  min-height: 1.875rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 1;
  content: '必須';
}

.p-form__item-body {
  margin: 0;
  margin-top: 8px;
  margin-top: .5rem;
  padding: 0;
}

.p-form__item-body p {
  margin: 0;
}

.p-form__input {
  border: 1px solid #e7e0db;
  border-radius: .3125rem;
  background-color: #fff;
  padding: 10px 12px;
  padding: .625rem .75rem;
  width: 100%;
  font-size: 15px;
  font-size: .9375rem;
}

.p-form__input::-webkit-input-placeholder {
  color: #999;
}

.p-form__input::-moz-placeholder {
  color: #999;
}

.p-form__input::-ms-input-placeholder {
  color: #999;
}

.p-form__input::placeholder {
  color: #999;
}

.p-form__item-body--half p {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-form__textarea {
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
}

.p-form__item:nth-child(5) {
  border-top: none;
  padding-top: 0;
}

.p-form__address {
  gap: 8px;
  gap: .5rem;
  display: grid;
}

.p-form__address-item p {
  gap: 8px;
  gap: .5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__address-label {
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
}

.p-form__footer {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

.p-form__footer p {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.p-form__footer .wpcf7-spinner {
  display: none;
}

.p-form__submit,
.p-form__reset {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #3f51aa;
  border-radius: .3125rem;
  background-color: #3f51aa;
  padding: 14px 40px;
  padding: .875rem 2.5rem;
  width: auto;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-form__submit:hover,
.p-form__reset:hover {
  border: 2px solid #3f51aa;
  background-color: #fff;
  color: #3f51aa;
}

.p-contact__inner > .c-lower-heading + h3.wp-block-heading {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact__inner h3.wp-block-heading {
  color: #999;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.p-contact__inner h3.wp-block-heading + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact__inner > p {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-contact__inner > p + h3.wp-block-heading {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-corporate {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-corporate__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-corporate__inner > * + .c-lower-heading {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 8px;
  padding: .75rem .5rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td:first-child {
  width: 80px;
  width: 5rem;
  color: #3f51aa;
  font-weight: 500;
  white-space: nowrap;
}

.p-corporate .wp-block-columns {
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-corporate .wp-block-column > .wp-block-list:first-child,
.p-corporate .wp-block-column > ul:first-child {
  margin-top: 0;
}

.p-corporate .wp-block-column img {
  aspect-ratio: 620/380;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-corporate .wp-block-column iframe {
  aspect-ratio: 620/380;
  display: block;
  width: 100%;
}

.p-corporate figcaption {
  margin-top: 10px;
  margin-top: .625rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  text-align: left;
}

.p-corporate h3.wp-block-heading,
.p-corporate h3 {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #3f51aa;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-corporate .wp-block-paragraph,
.p-corporate p {
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-corporate .wp-block-list {
  padding-left: 0;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2;
  list-style: none;
}

.p-corporate .wp-block-list li::before {
  vertical-align: middle;
  margin-right: 8px;
  margin-right: .5rem;
  color: #3f51aa;
  font-size: 8px;
  font-size: .5rem;
  content: '●';
}

.p-corporate figcaption {
  margin-top: 8px;
  margin-top: .5rem;
  color: #000;
  font-size: 13px;
  font-size: .8125rem;
}

.p-corporatePage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-cta {
  display: none;
}

.p-cta__sub {
  color: #3f51aa;
  font-size: clamp(28px, 1.5625vw, 30px);
  font-size: clamp(1.75rem, 1.5625vw, 1.875rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}

.p-cta__title {
  color: #3f51aa;
  font-size: clamp(64px, 3.6458333333vw, 70px);
  font-size: clamp(4rem, 3.6458333333vw, 4.375rem);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.p-cta__right {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-cta__tel-wrap {
  gap: 28px;
  gap: 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-cta__tel {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.p-cta__tel-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-cta__tel-number {
  color: #000;
  font-size: clamp(24px, 2.1875vw, 42px);
  font-size: clamp(1.5rem, 2.1875vw, 2.625rem);
  font-weight: 500;
  letter-spacing: .05em;
  white-space: nowrap;
}

.p-cta__btn {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  border: 2px solid #37947f;
  background-color: #37947f;
  padding: 36px 40px;
  padding: 2.25rem 2.5rem;
  color: #fff;
  font-size: clamp(18px, 1.5625vw, 30px);
  font-size: clamp(1.125rem, 1.5625vw, 1.875rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
}

.p-cta__btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #37947f;
}

.p-cta__btn:hover .p-cta__btn-icon {
  -webkit-filter: invert(51%) sepia(37%) saturate(540%) hue-rotate(121deg) brightness(87%) contrast(94%);
  filter: invert(51%) sepia(37%) saturate(540%) hue-rotate(121deg) brightness(87%) contrast(94%);
}

.p-cta__btn-icon {
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

.p-cta__btn-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 42px;
  width: 2.625rem;
  height: 34px;
  height: 2.125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 19px 17.5px;
  padding: 1.1875rem 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #fff;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #fff;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #3f51aa;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #fff;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 0;
  padding-left: 0;
  width: 100%;
}

.p-drawer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 0;
}

.p-drawer__nav-link {
  display: block;
  position: relative;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding: 20px 48px;
  padding: 1.25rem 3rem;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.p-drawer__nav-link:hover {
  opacity: 1;
}

.p-drawer__nav-link--has-sub {
  cursor: pointer;
}

.p-drawer__nav-link--has-sub::after {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-75%) rotate(45deg);
  transform: translateY(-75%) rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.p-drawer__nav-link--has-sub.is-opened::after {
  -webkit-transform: translateY(-25%) rotate(-135deg);
  transform: translateY(-25%) rotate(-135deg);
}

.p-drawer__accordion-list {
  display: none;
  margin: 0;
  background-color: #fff;
  padding: 0;
  list-style: none;
}

.p-drawer__accordion-item + .p-drawer__accordion-item {
  border-top: 1px solid rgba(63, 81, 170, .1);
}

.p-drawer__accordion-link {
  display: block;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  padding: 18px 48px;
  padding: 1.125rem 3rem;
  color: #3f51aa;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.p-drawer__accordion-link:hover {
  opacity: 1;
}

.p-equipment {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-equipment__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-equipment__inner > * + .c-lower-heading {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-equipment .wp-block-columns {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 4px;
  padding: .625rem .25rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.44;
}

.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th:nth-child(2),
.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td:nth-child(2) {
  width: 50px;
  width: 3.125rem;
  text-align: right;
  white-space: nowrap;
}

.p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead tr th {
  border-bottom: 1px solid #3f51aa;
  background-color: transparent;
}

.p-equipment .wp-block-gallery.wp-block-gallery {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-equipment .wp-block-gallery figure.wp-block-image {
  -webkit-box-flex: 0 !important;
  -webkit-flex: none !important;
  -ms-flex: none !important;
  flex: none !important;
  width: 100% !important;
}

.p-equipment .wp-block-gallery figure.wp-block-image img {
  aspect-ratio: 400/250 !important;
  width: 100% !important;
  height: auto !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.p-equipment .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before {
  display: none;
}

.p-equipment .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption {
  scrollbar-gutter: auto;
  position: static;
  margin: 0;
  margin-top: 8px;
  margin-top: .5rem;
  background: none;
  padding: 0;
  max-height: none;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  text-shadow: none;
}

.p-faq {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-faq__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-faq__list {
  margin: 0;
}

.p-faq__item + .p-faq__item {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-faq__question {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: #3f51aa;
  padding: 16px 16px;
  padding: 1rem 1rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-faq__question-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  width: .875rem;
  height: 17px;
  height: 1.0625rem;
}

.p-faq__question-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-faq__arrow {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
}

.p-faq__item.is-open .p-faq__arrow {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.p-faq__answer {
  -webkit-transition: height .4s ease;
  transition: height .4s ease;
  margin: 0;
  background-color: #dfe0e5;
  height: 0;
  overflow: hidden;
}

.p-faq__answer-inner {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px;
  padding: 1rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-faq__answer-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 8px;
  margin-top: .5rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.p-faq__answer-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
}

.p-faqPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-fixed-bar__item {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  border-right: 1px solid rgba(255, 255, 255, .6);
  background-color: #5467c5;
  padding: 16px 10px;
  padding: 1rem .625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-fixed-bar__item:last-child {
  border-right: none;
}

.p-fixed-bar__item:hover {
  opacity: .7;
}

.p-fixed-bar__icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-fixed-bar__item--tel .p-fixed-bar__icon {
  width: 18px;
  width: 1.125rem;
  height: 22px;
  height: 1.375rem;
}

.p-fixed-bar__item--contact .p-fixed-bar__icon {
  width: 29px;
  width: 1.8125rem;
  height: 24px;
  height: 1.5rem;
}

.p-fixed-bar__text {
  white-space: nowrap;
}

.p-footer {
  background-color: #f5f5f5;
  padding: 40px 0 24px;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.p-footer__inner {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px 80px;
  padding: 0 1.25rem 5rem;
}

.p-footer__logo a {
  display: inline-block;
}

.p-footer__logo img {
  width: 100%;
  max-width: 280px;
  max-width: 17.5rem;
  height: auto;
}

.p-footer__address {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .05em;
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-footer__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-footer__nav-item a,
.p-footer__nav-item a:visited,
.p-footer__nav-item span {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  color: #3f51aa;
  text-decoration: none;
}

.p-footer__nav-item a:hover {
  opacity: .7;
  text-decoration: none;
}

.p-footer__nav-item::after {
  margin: 0 10px;
  margin: 0 .625rem;
  color: #3f51aa;
  content: '/';
}

.p-footer__nav-break {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  height: 0;
}

.p-footer__nav-item:last-child::after {
  display: none;
}

.p-footer__copyright {
  margin-top: 13px;
  margin-top: .8125rem;
  color: #999;
  font-size: 10px;
  font-size: .625rem;
  letter-spacing: .05em;
}

.p-frp {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-frp__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-frp .wp-block-paragraph,
.p-frp p {
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-frp .wp-block-image {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-frp .wp-block-media-text__media img {
  aspect-ratio: 620/400;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-frp .wp-block-columns {
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-frp .wp-block-column img {
  aspect-ratio: 400/250;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-frp h3.wp-block-heading,
.p-frp h3 {
  color: #3f51aa;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.p-frp__inner > * + .c-lower-heading,
.p-frp__works {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-frp__works-list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-frpPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-fv {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  width: 100%;
  height: 92vw;
  max-height: 460px;
  max-height: 28.75rem;
}

.p-fv__img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__content {
  position: absolute;
  right: 0;
  bottom: 20px;
  bottom: 1.25rem;
  left: 0;
  padding: 0 20px;
  padding: 0 1.25rem;
  text-align: center;
}

.p-fv__main {
  color: #fff;
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(40px, 14vw, 70px);
  font-size: clamp(2.5rem, 14vw, 4.375rem);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}

.p-fv__sub {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}

.p-header {
  background-color: #3f51aa;
  height: 60px;
  height: 3.75rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 18px;
  padding-left: 1.125rem;
  height: inherit;
}

.p-header__logo {
  width: 100%;
  max-width: 184px;
  max-width: 11.5rem;
  height: inherit;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
  position: relative;
  margin-left: auto;
  height: inherit;
}

.p-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__nav-item,
.p-header__nav-modal-wrap {
  height: inherit;
}

.p-header__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__nav-item > a,
.p-header__nav-modal-wrap > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 clamp(8px, .78125vw, 15px);
  padding: 0 clamp(.5rem, .78125vw, .9375rem);
  height: inherit;
  color: #fff;
  font-size: clamp(12px, .78125vw, 15px);
  font-size: clamp(.75rem, .78125vw, .9375rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  white-space: nowrap;
}

.p-header__nav-item > a::after,
.p-header__nav-modal-wrap > a::after {
  position: absolute;
  top: calc(50% + 1em);
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background-color: #fff;
  width: 100%;
  height: 1px;
  content: '';
}

.p-header__nav-item > a:hover,
.p-header__nav-modal-wrap > a:hover {
  opacity: 1;
}

.p-header__nav-item > a:hover::after,
.p-header__nav-modal-wrap > a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.p-header__nav-modal {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-6px);
  transform: translateX(-50%) translateY(-6px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .2s, visibility .2s, -webkit-transform .2s;
  transition: opacity .2s, visibility .2s, -webkit-transform .2s;
  transition: opacity .2s, transform .2s, visibility .2s;
  transition: opacity .2s, transform .2s, visibility .2s, -webkit-transform .2s;
  margin: 0;
  border: 1px solid #3f51aa;
  background-color: #3f51aa;
  list-style: none;
  white-space: nowrap;
}

.p-header__nav-modal-wrap:hover .p-header__nav-modal {
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
}

.p-header__nav-modal-item a,
.p-header__nav-modal-item a:visited {
  display: block;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding: 12px 24px;
  padding: .75rem 1.5rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
}

.p-header__nav-modal-item a:hover {
  opacity: 1;
  border-bottom-color: rgba(63, 81, 170, .15);
  background-color: #fff;
  color: #3f51aa;
}

.p-header__nav-modal-item:last-child a {
  border-bottom: none;
}

.p-header__right {
  display: none;
}

.p-header__tel {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 clamp(16px, 2.0833333333vw, 40px);
  padding: 0 clamp(1rem, 2.0833333333vw, 2.5rem);
  height: inherit;
  text-decoration: none;
}

.p-header__tel-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: clamp(16px, 1.1458333333vw, 22px);
  width: clamp(1rem, 1.1458333333vw, 1.375rem);
  height: clamp(22px, 1.5625vw, 30px);
  height: clamp(1.375rem, 1.5625vw, 1.875rem);
}

.p-header__tel-icon img {
  width: 100%;
}

.p-header__tel-number {
  color: #fff;
  font-size: clamp(20px, 1.4583333333vw, 28px);
  font-size: clamp(1.25rem, 1.4583333333vw, 1.75rem);
  font-weight: 500;
  white-space: nowrap;
}

.p-header__contact-btn {
  gap: clamp(8px, .6770833333vw, 13px);
  gap: clamp(.5rem, .6770833333vw, .8125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  border: 2px solid #37947f;
  background-color: #37947f;
  padding: 0 clamp(12px, 1.5625vw, 15px);
  padding: 0 clamp(.75rem, 1.5625vw, .9375rem);
  color: #fff;
  font-size: clamp(12px, 1.0416666667vw, 20px);
  font-size: clamp(.75rem, 1.0416666667vw, 1.25rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.p-header__contact-btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #37947f;
}

.p-header__contact-btn:hover img {
  -webkit-filter: invert(51%) sepia(37%) saturate(540%) hue-rotate(121deg) brightness(87%) contrast(94%);
  filter: invert(51%) sepia(37%) saturate(540%) hue-rotate(121deg) brightness(87%) contrast(94%);
}

.p-header__contact-btn img {
  -webkit-transition: -webkit-filter .2s;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
  width: clamp(28px, 2.0833333333vw, 40px);
  width: clamp(1.75rem, 2.0833333333vw, 2.5rem);
  height: clamp(24px, 1.7708333333vw, 34px);
  height: clamp(1.5rem, 1.7708333333vw, 2.125rem);
}

.p-header__menu-btn {
  padding-inline: 22px;
  padding-inline: 1.375rem;
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 5px;
  padding-top: .3125rem;
  color: #fff;
}

.p-header__menu-icon {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30px;
  width: 1.875rem;
}

.p-header__menu-icon span {
  display: block;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  background-color: #fff;
  width: 100%;
  height: 2px;
}

.p-header__menu-btn.is-opened .p-header__menu-icon span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.p-header__menu-btn.is-opened .p-header__menu-icon span:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}

.p-header__menu-text {
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-header__menu-btn.is-opened .p-header__menu-text {
  font-size: 0;
}

.p-header__menu-btn.is-opened .p-header__menu-text::after {
  font-size: 10px;
  font-size: .625rem;
  content: 'CLOSE';
}

.p-header__nav-modal-wrap {
  position: relative;
}

.p-lower-fv {
  background-color: #dce8f0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 160px;
  height: 10rem;
  overflow: visible;
}

.p-lower-fv__inner {
  padding-inline: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-lower-fv__breadcrumb {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #333;
  font-size: 10px;
  font-size: .625rem;
}

.p-lower-fv__title {
  color: #3f51aa;
  font-size: clamp(40px, 12vw, 60px);
  font-size: clamp(2.5rem, 12vw, 3.75rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.p-lower-fv__subtitle {
  margin-top: 10px;
  margin-top: .625rem;
  color: #000;
  font-size: clamp(18px, 6vw, 30px);
  font-size: clamp(1.125rem, 6vw, 1.875rem);
  font-weight: 700;
  white-space: nowrap;
}

.p-maintenance {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-maintenance__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-maintenance .wp-block-paragraph,
.p-maintenance p {
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-maintenance .wp-block-image {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-maintenance .wp-block-media-text__media img {
  aspect-ratio: 620/400;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-maintenance .wp-block-columns {
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-maintenance .wp-block-column img {
  aspect-ratio: 400/250;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-maintenance h3.wp-block-heading,
.p-maintenance h3 {
  color: #3f51aa;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.p-maintenance__inner > * + .c-lower-heading,
.p-maintenance__works {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-maintenance__works-list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-maintenancePage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-pvc {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-pvc__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-pvc .wp-block-paragraph,
.p-pvc p {
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-pvc .wp-block-image {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-pvc .wp-block-media-text__media img {
  aspect-ratio: 620/400;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pvc .wp-block-columns {
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pvc .wp-block-column img {
  aspect-ratio: 400/250;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pvc h3.wp-block-heading,
.p-pvc h3 {
  color: #3f51aa;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.p-pvc__inner > * + .c-lower-heading,
.p-pvc__works {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-pvc__works-list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-recruit {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-recruit__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-recruit__inner > * + .c-lower-heading {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-recruit__inner > .c-page-nav + .c-lower-heading {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-recruit__person-catch {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #000;
  font-size: clamp(15px, 4vw, 20px);
  font-size: clamp(.9375rem, 4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-recruit__person-text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.8;
}

.p-recruit__gallery,
.p-recruit__gallery-sub {
  gap: 8px;
  gap: .5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-recruit__gallery .wp-block-image,
.p-recruit__gallery-sub .wp-block-image {
  margin: 0;
}

.p-recruit__gallery,
.p-recruit__gallery-sub {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}

.p-recruit__gallery + .p-recruit__gallery-sub {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-recruit__gallery img {
  aspect-ratio: 600/450;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.is-pos-right img {
  -o-object-position: 0% center;
  object-position: 0% center;
}

.p-recruit__gallery-sub img {
  aspect-ratio: 290/240;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-recruit__interview-card {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-recruit__interview-main {
  display: block;
}

.p-recruit__interview-body {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-recruit__interview-img {
  aspect-ratio: 520/580;
  margin-inline: auto;
  background-color: #eee;
  width: 60%;
}

.p-recruit__interview-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-recruit__interview-name-row {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-recruit__interview-meta {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.p-recruit__interview-name {
  color: #3f51aa;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-recruit__interview-name-en {
  display: inline-block;
  border-radius: .25rem;
  background-color: #4ba371;
  padding: 4px 12px;
  padding: .25rem .75rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  line-height: 1;
}

.p-recruit__interview-meta {
  gap: 4px;
  gap: .25rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .625rem;
  background-color: #eaebf1;
  padding: 8px 14px;
  padding: .5rem .875rem;
  color: #000;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.p-recruit__interview-quote {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
  margin-top: .875rem;
  border-radius: .625rem;
  background-color: #f5f5f5;
  padding: 12px 20px;
  padding: .75rem 1.25rem;
  color: #3f51aa;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-recruit__interview-quote::before {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url('/wp-content/uploads/recruit-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  content: '';
}

.p-recruit__interview-text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-recruit__interview-sub {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-recruit__interview-sub-title {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .625rem;
  background-color: #f5f5f5;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  color: #3f51aa;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-recruit__interview-sub-title::before {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url('/wp-content/uploads/recruit-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.p-recruit__interview-sub-text {
  margin-top: 16px;
  margin-top: 1rem;
  color: #000;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-recruit__interview-card + .p-recruit__interview-card {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  vertical-align: top;
  border-top: none !important;
  border-right: none !important;
  border-bottom: 1px solid #ccc !important;
  border-left: none !important;
  padding: 10px 8px !important;
  padding: .625rem .5rem !important;
  color: #000 !important;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td:first-child {
  border-bottom: 1px solid #0a9078 !important;
  width: 30% !important;
}

.p-recruitPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-service__list {
  margin: 0;
  padding: 0;
}

.p-service__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  height: 200px;
  height: 12.5rem;
  text-decoration: none;
}

.p-service__link::before {
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, .35);
  content: '';
}

.p-service__item--pvc .p-service__link {
  background-position: left center;
}

.p-service__item--frp .p-service__link {
  background-position: center center;
}

.p-service__item--maintenance .p-service__link {
  background-position: center top;
}

.p-service__content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
  text-align: center;
}

.p-service__en {
  color: #fff;
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-service__title {
  color: #fff;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-service__btn {
  padding-block: 12px;
  padding-block: .75rem;
  display: block;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  margin: 16px auto 0;
  margin: 1rem auto 0;
  border: 1px solid #fff;
  background: #fff;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #3f51aa;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  text-align: center;
}

.p-service__link:hover .p-service__btn {
  background: transparent;
  color: #fff;
}

.p-service__link:hover {
  opacity: 1;
}

.p-sitemap {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-sitemap__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-sitemap__list {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0;
  list-style: none;
}

.p-sitemap__list > li + li {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-sitemap__item {
  display: block;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

a.p-sitemap__item:hover {
  opacity: .7;
}

.p-sitemap__sublist {
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  list-style: none;
}

.p-sitemap__sublist > li + li {
  margin-top: 4px;
  margin-top: .25rem;
}

.p-sitemap__sublist > li::before {
  margin-right: 8px;
  margin-right: .5rem;
  color: #4ba371;
  font-size: 8px;
  font-size: .5rem;
  content: '●';
}

.p-sitemap__sublist > li > a {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.p-sitemap__sublist > li > a:visited {
  color: #000;
}

.p-sitemap__sublist > li > a:hover {
  opacity: .7;
}

.p-sitemapPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-thanks {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-thanks__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-thanks__inner p {
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 2;
}

.p-thanks__inner p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-thanksPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-top-advantage__inner {
  padding-inline: 30px;
  padding-inline: 1.875rem;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-top-advantage__text {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.p-top-advantage__btn-wrapper {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-top-advantage__btn {
  padding-block: 14px;
  padding-block: .875rem;
  display: block;
  background: #283780;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
}

.p-top-recruit {
  position: relative;
  background-color: #37947f;
  height: 300px;
  height: 18.75rem;
  overflow: hidden;
}

.p-top-recruit__imgs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.p-top-recruit__img {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.p-top-recruit__img:first-child {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(60%, black), to(transparent));
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  width: 36%;
  overflow: hidden;
}

.p-top-recruit__img:last-child {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(60%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(60%, black), to(transparent));
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  width: 36%;
}

.p-top-recruit__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-recruit__img:first-child img {
  -webkit-transform: scale(1.7);
  transform: scale(1.7);
  -webkit-transform-origin: left 72%;
  transform-origin: left 72%;
  -o-object-position: 0 center;
  object-position: 0 center;
}

.p-top-recruit__img:last-child img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: left 72%;
  transform-origin: left 72%;
  -o-object-position: 100% center;
  object-position: 100% center;
}

.p-top-recruit__content {
  padding-block: 80px;
  padding-block: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  text-align: center;
  white-space: nowrap;
}

.p-top-recruit__content:hover {
  opacity: .8;
}

.p-top-recruit__sub {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .38em;
  line-height: 1;
}

.p-top-recruit__main {
  margin-top: 18px;
  margin-top: 1.125rem;
  color: #fff;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-top-recruit__read-more {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-decoration: none;
}

.p-top-works__inner {
  padding-inline: 40px;
  padding-inline: 2.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-top-works__head-sub,
.p-top-works__head-main {
  color: #3f51aa;
  font-weight: 500;
  text-align: center;
}

.p-top-works__head-sub {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .05em;
}

.p-top-works__head-main {
  font-size: clamp(40px, 12vw, 60px);
  font-size: clamp(2.5rem, 12vw, 3.75rem);
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}

.p-top-works__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-works {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-works__inner {
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-works__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-worksPage .l-cta {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-hidden {
  display: none !important;
}

.u-hidden--sp {
  display: none !important;
}

.u-overflowHidden {
  scrollbar-gutter: auto !important;
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.5094339623vw;
    font-size: calc(var(--vw-unitless) / 1060 * 100%);
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-advantage {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-contact {
    margin-top: 170px;
    margin-top: 10.625rem;
  }

  .l-corporate {
    margin-top: 170px;
    margin-top: 10.625rem;
  }

  .l-equipment {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-faq {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-frp {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-maintenance {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-pvc {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-recruit {
    margin-top: 170px;
    margin-top: 10.625rem;
  }

  .l-sitemap {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .l-top-advantage {
    margin-top: 66px;
    margin-top: 4.125rem;
  }

  .l-top-recruit {
    margin-top: 108px;
    margin-top: 6.75rem;
  }

  .l-top-works {
    margin-top: max(0px, 120px - 6vw);
    margin-top: max(0px, 7.5rem - 6vw);
  }

  .l-works {
    margin-top: 240px;
    margin-top: 15rem;
  }

  .c-lower-heading {
    padding: 20px 24px;
    padding: 1.25rem 1.5rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-lower-heading::before {
    width: 60px;
    width: 3.75rem;
    height: 60px;
    height: 3.75rem;
  }

  .c-page-nav {
    gap: 30px;
    gap: 1.875rem;
  }

  .c-page-nav .wp-block-button .wp-block-button__link {
    padding-block: 30px;
    padding-block: 1.875rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
  }

  .c-page-nav .wp-block-button .wp-block-button__link {
    gap: 13px;
    gap: .8125rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-page-nav .wp-block-button .wp-block-button__link::before {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .c-works-card__body {
    gap: 12px;
    gap: .75rem;
    margin-top: 16px;
    margin-top: 1rem;
  }

  .c-works-card__cat {
    padding: 4px 14px;
    padding: .25rem .875rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .c-works-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-404 {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-404__inner {
    padding-inline: 30px;
    max-width: 800px;
    max-width: 50rem;
  }

  .p-404__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-404__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-404__btn-wrap {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-404__btn {
    padding: 16px 60px;
    padding: 1rem 3.75rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-404Page .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-advantage {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-advantage__inner {
    padding-inline: 30px;
    max-width: 1310px;
    max-width: 81.875rem;
  }

  .p-advantage-head + p,
  .p-advantage-head + .wp-block-paragraph {
    margin-top: 52px;
    margin-top: 3.25rem;
  }

  .p-advantage p + .wp-block-columns,
  .p-advantage .wp-block-paragraph + .wp-block-columns {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-advantage .wp-block-columns + .p-advantage-head {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-advantage-head {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: left;
  }

  .p-advantage-head__eyebrow {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-advantage-head__label {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-advantage-head__num {
    font-size: 116px;
    font-size: 7.25rem;
  }

  .p-advantage-head__title {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 0;
    padding-bottom: 8px;
    padding-bottom: .5rem;
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-advantage .wp-block-paragraph,
  .p-advantage p {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-contact {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-contact__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-contact__inner > * + .c-lower-heading {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-contact__inner > .wpcf7 + .c-lower-heading {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-form {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-form__item {
    gap: 28px;
    gap: 1.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 32px 0;
    padding: 2rem 0;
  }

  .p-form__item-head {
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-top: 8px;
    padding-top: .5rem;
    width: 260px;
    width: 16.25rem;
  }

  .p-form__item-head p {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .p-form__label {
    display: inline;
  }

  .p-form__label.is-required::before {
    position: absolute;
    top: 8px;
    top: .5rem;
    left: 15px;
    left: .9375rem;
    padding: 6px 20px;
    padding: .375rem 1.25rem;
    min-height: 35px;
    min-height: 2.1875rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1;
  }

  .p-form__item-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }

  .p-form__input {
    padding: 10px 16px;
    padding: .625rem 1rem;
    max-width: 460px;
    max-width: 28.75rem;
  }

  .p-form__input::-webkit-input-placeholder {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-form__input::-moz-placeholder {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-form__input::-ms-input-placeholder {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-form__input::placeholder {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-form__item-body--half p {
    grid-template-columns: 13.75rem 13.75rem;
  }

  .p-form__item-body--half .p-form__input {
    max-width: none;
  }

  .p-form__item-body--short .p-form__input {
    max-width: 220px;
    max-width: 13.75rem;
  }

  .p-form__item-body--medium .p-form__input {
    max-width: 300px;
    max-width: 18.75rem;
  }

  .p-form__textarea {
    max-width: 600px;
    max-width: 37.5rem;
    min-height: 200px;
    min-height: 12.5rem;
  }

  .p-form__address {
    gap: 10px;
    gap: .625rem;
  }

  .p-form__address-item p {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: auto 1fr;
  }

  .p-form__address {
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-form__address .p-form__input {
    max-width: 400px;
    max-width: 25rem;
  }

  .p-form__footer {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .p-form__submit,
  .p-form__reset {
    padding: 16px 60px;
    padding: 1rem 3.75rem;
  }

  .p-contact__inner > .c-lower-heading + h3.wp-block-heading {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-contact__inner h3.wp-block-heading {
    margin-inline: auto;
    max-width: 940px;
    max-width: 58.75rem;
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .p-contact__inner h3.wp-block-heading + p {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-contact__inner > p {
    margin-inline: auto;
    max-width: 940px;
    max-width: 58.75rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-contact__inner > p + h3.wp-block-heading {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-corporate {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-corporate__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-corporate__inner > * + .c-lower-heading {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: 18px 35px;
    padding: 1.125rem 2.1875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .p-corporate .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td:first-child {
    width: 140px;
    width: 8.75rem;
  }

  .p-corporate .wp-block-columns {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-corporate figcaption {
    margin-top: 14px;
    margin-top: .875rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-corporate h3.wp-block-heading,
  .p-corporate h3 {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-corporate .wp-block-paragraph,
  .p-corporate p {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-corporate .wp-block-list {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-corporate .wp-block-list li::before {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-corporate figcaption {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-corporatePage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-drawer__content {
    width: 65vw;
    max-width: 480px;
    max-width: 30rem;
  }

  .p-equipment {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-equipment__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-equipment__inner > * + .c-lower-heading {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-equipment .wp-block-columns {
    gap: 90px;
    gap: 5.625rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .p-equipment .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: 10px 16px;
    padding: .625rem 1rem;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-equipment .wp-block-gallery.wp-block-gallery {
    row-gap: 20px;
    row-gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-equipment .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-equipment .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-faq {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-faq__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-faq__item + .p-faq__item {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-faq__question {
    gap: 32px;
    gap: 2rem;
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-faq__question-icon {
    width: 27px;
    width: 1.6875rem;
    height: 32px;
    height: 2rem;
  }

  .p-faq__arrow {
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
  }

  .p-faq__answer-inner {
    gap: 32px;
    gap: 2rem;
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-faq__answer-icon {
    margin-top: 10px;
    margin-top: .625rem;
    width: 25px;
    width: 1.5625rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-faq__answer-text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-faqPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-frp {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-frp__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-frp .wp-block-paragraph,
  .p-frp p {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-frp .wp-block-image {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-frp .wp-block-media-text {
    grid-template-columns: 1fr 27.5rem;
  }

  .p-frp .wp-block-columns {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-frp h3.wp-block-heading,
  .p-frp h3 {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-frp__inner > * + .c-lower-heading,
  .p-frp__works {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-frp__works-list {
    gap: 32px;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-frpPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-fv {
    height: 44.2708333333vw;
    max-height: 850px;
    max-height: 53.125rem;
  }

  .p-fv__content {
    top: 64%;
    right: auto;
    bottom: auto;
    left: 60px;
    left: 3.75rem;
    text-align: left;
  }

  .p-fv__main {
    font-size: clamp(70px, 9.375vw, 180px);
    font-size: clamp(4.375rem, 9.375vw, 11.25rem);
  }

  .p-fv__sub {
    font-size: clamp(20px, 2.6041666667vw, 50px);
    font-size: clamp(1.25rem, 2.6041666667vw, 3.125rem);
  }

  .p-lower-fv {
    height: 16.6666666667vw;
  }

  .p-lower-fv__inner {
    padding-inline: 0;
    padding-top: 6.25vw;
  }

  .p-lower-fv__breadcrumb {
    margin-top: 3.125vw;
    font-size: .6770833333vw;
  }

  .p-lower-fv__title {
    font-size: 9.375vw;
  }

  .p-lower-fv__subtitle {
    margin-top: .7291666667vw;
    font-size: 2.6041666667vw;
    font-weight: 500;
    letter-spacing: .1em;
  }

  .p-maintenance {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-maintenance__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-maintenance .wp-block-paragraph,
  .p-maintenance p {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-maintenance .wp-block-image {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-maintenance .wp-block-media-text {
    grid-template-columns: 1fr 27.5rem;
  }

  .p-maintenance .wp-block-columns {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-maintenance h3.wp-block-heading,
  .p-maintenance h3 {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-maintenance__inner > * + .c-lower-heading,
  .p-maintenance__works {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-maintenance__works-list {
    gap: 32px;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-maintenancePage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-pvc {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-pvc__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-pvc .wp-block-paragraph,
  .p-pvc p {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-pvc .wp-block-image {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-pvc .wp-block-media-text {
    grid-template-columns: 1fr 27.5rem;
  }

  .p-pvc .wp-block-columns {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-pvc h3.wp-block-heading,
  .p-pvc h3 {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-pvc__inner > * + .c-lower-heading,
  .p-pvc__works {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-pvc__works-list {
    gap: 32px;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-recruit {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-recruit__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-recruit__inner > * + .c-lower-heading {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-recruit__inner > .c-page-nav + .c-lower-heading {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-recruit__person-catch {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: clamp(45px, 2.8645833333vw, 55px);
    font-size: clamp(2.8125rem, 2.8645833333vw, 3.4375rem);
  }

  .p-recruit__person-text {
    margin-inline: auto;
    max-width: 915px;
    max-width: 57.1875rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-recruit__gallery,
  .p-recruit__gallery-sub {
    gap: 20px;
    gap: 1.25rem;
    margin-inline: 30px;
    margin-inline: 1.875rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-recruit__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-recruit__gallery-sub {
    grid-template-columns: repeat(4, 1fr);
  }

  .p-recruit__gallery + .p-recruit__gallery-sub {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-recruit__interview-card {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-recruit__interview-main {
    display: grid;
    grid-template-columns: 40% 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }

  .p-recruit__interview-body {
    margin-top: 0;
  }

  .p-recruit__interview-card--reverse .p-recruit__interview-main {
    direction: rtl;
  }

  .p-recruit__interview-card--reverse .p-recruit__interview-main > * {
    direction: ltr;
  }

  .p-recruit__interview-img {
    margin-inline: 0;
    width: auto;
  }

  .p-recruit__interview-name-row {
    gap: 13px;
    gap: .8125rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-recruit__interview-meta {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: none;
  }

  .p-recruit__interview-name {
    font-size: 37px;
    font-size: 2.3125rem;
  }

  .p-recruit__interview-name-en {
    border-radius: .625rem;
    padding: 13px 28px;
    padding: .8125rem 1.75rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-recruit__interview-meta {
    margin-left: clamp(13px, 2.4479166667vw, 47px);
    margin-left: clamp(.8125rem, 2.4479166667vw, 2.9375rem);
    padding: 17px 32px;
    padding: 1.0625rem 2rem;
    font-size: 15px;
    font-size: .9375rem;
    word-spacing: 18px;
    word-spacing: 1.125rem;
  }

  .p-recruit__interview-quote {
    gap: 15px;
    gap: .9375rem;
    margin-top: 10px;
    margin-top: .625rem;
    padding: 14px 30px;
    padding: .875rem 1.875rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-recruit__interview-quote::before {
    width: 30px;
    width: 1.875rem;
    height: 30px;
    height: 1.875rem;
  }

  .p-recruit__interview-text {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-recruit__interview-sub {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-recruit__interview-sub-title {
    gap: 15px;
    gap: .9375rem;
    padding: 14px 30px;
    padding: .875rem 1.875rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-recruit__interview-sub-title::before {
    width: 26px;
    width: 1.625rem;
    height: 26px;
    height: 1.625rem;
  }

  .p-recruit__interview-sub-text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 2.1333333333;
  }

  .p-recruit__interview-card + .p-recruit__interview-card {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: 15px 40px !important;
    padding: .9375rem 2.5rem !important;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td:first-child {
    width: 300px !important;
    width: 18.75rem !important;
    white-space: nowrap;
  }

  .p-recruitPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-service__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-service__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-service__link {
    height: clamp(240px, 23.4375vw, 450px);
    height: clamp(15rem, 23.4375vw, 28.125rem);
  }

  .p-service__content {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-service__en {
    font-size: clamp(16px, 1.4583333333vw, 28px);
    font-size: clamp(1rem, 1.4583333333vw, 1.75rem);
  }

  .p-service__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: clamp(32px, 2.6041666667vw, 50px);
    font-size: clamp(2rem, 2.6041666667vw, 3.125rem);
  }

  .p-service__btn {
    padding-block: 24px;
    padding-block: 1.5rem;
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: clamp(15px, 1.0416666667vw, 20px);
    font-size: clamp(.9375rem, 1.0416666667vw, 1.25rem);
  }

  .p-sitemap {
    padding-bottom: 360px;
    padding-bottom: 22.5rem;
  }

  .p-sitemap__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-sitemap__list {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-sitemap__list > li + li {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-sitemap__item {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-sitemap__sublist {
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-left: 70px;
    padding-left: 4.375rem;
  }

  .p-sitemap__sublist > li + li {
    margin-top: 6px;
    margin-top: .375rem;
  }

  .p-sitemap__sublist > li::before {
    font-size: 10px;
    font-size: .625rem;
  }

  .p-sitemap__sublist > li > a {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-sitemapPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-thanks {
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-thanks__inner {
    padding-inline: 30px;
    max-width: 720px;
    max-width: 45rem;
  }

  .p-thanks__inner p {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-thanks__inner p + p {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-thanksPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-top-advantage__inner {
    padding-inline: 30px;
    max-width: 1310px;
    max-width: 81.875rem;
  }

  .p-top-advantage__text {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-top-advantage__btn-wrapper {
    margin-top: 42px;
    margin-top: 2.625rem;
    margin-right: calc(50% - 50vw);
  }

  .p-top-advantage__btn {
    padding-block: 40px;
    padding-block: 2.5rem;
    margin-left: auto;
    padding-left: 57px;
    padding-left: 3.5625rem;
    width: 900px;
    width: 56.25rem;
    font-size: 28px;
    font-size: 1.75rem;
    text-align: left;
  }

  .p-top-recruit {
    height: clamp(260px, 15.625vw, 300px);
    height: clamp(16.25rem, 15.625vw, 18.75rem);
  }

  .p-top-recruit__img:first-child {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, black), to(transparent));
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    width: 36.403125%;
  }

  .p-top-recruit__img:last-child {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(80%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
    mask-image: -webkit-gradient(linear, right top, left top, color-stop(80%, black), to(transparent));
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    width: 35.7291666667%;
  }

  .p-top-recruit__img:first-child img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -o-object-position: center center;
    object-position: center center;
  }

  .p-top-recruit__img:last-child img {
    -webkit-transform: none;
    transform: none;
    -o-object-position: initial;
    object-position: initial;
  }

  .p-top-recruit__content {
    padding-block: 40px;
    padding-block: 2.5rem;
  }

  .p-top-recruit__main {
    font-size: clamp(60px, 4.1666666667vw, 80px);
    font-size: clamp(3.75rem, 4.1666666667vw, 5rem);
  }

  .p-top-recruit__read-more {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-top-works__inner {
    padding-inline: 30px;
    max-width: 1780px;
    max-width: 111.25rem;
  }

  .p-top-works__head-sub,
  .p-top-works__head-main {
    text-align: left;
  }

  .p-top-works__head-sub {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1;
  }

  .p-top-works__head-main {
    font-size: clamp(60px, 7.3958333333vw, 142px);
    font-size: clamp(3.75rem, 7.3958333333vw, 8.875rem);
  }

  .p-top-works__list {
    gap: 30px;
    gap: 1.875rem;
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-top-works__list .u-hidden--sp {
    display: revert !important;
  }

  .p-works {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-works__inner {
    padding-inline: 30px;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-works__list {
    row-gap: 40px;
    row-gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }

  .p-worksPage .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 1024px) {

  .l-fixed-bar {
    display: none;
  }

  .p-cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    width: 100%;
    height: 328px;
    height: 20.5rem;
  }

  .p-cta__inner {
    gap: clamp(100px, 7.2916666667vw, 140px);
    gap: clamp(6.25rem, 7.2916666667vw, 8.75rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 60px;
    padding: 0 3.75rem;
    width: 100%;
    max-width: 1410px;
    max-width: 88.125rem;
  }

  .p-drawer__bg {
    display: none;
  }

  .p-drawer__content {
    display: none;
  }

  .p-footer {
    background-color: transparent;
    padding: 50px 0 30px;
    padding: 3.125rem 0 1.875rem;
  }

  .p-footer__inner {
    gap: 20px;
    gap: 1.25rem;
    padding: 0 40px 0;
    padding: 0 2.5rem 0;
  }

  .p-footer__logo img {
    max-width: 466px;
    max-width: 29.125rem;
  }

  .p-footer__nav-item {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-footer__nav-break {
    display: none;
  }

  .p-fv {
    padding-top: clamp(80px, 6.25vw, 120px);
    padding-top: clamp(5rem, 6.25vw, 7.5rem);
  }

  .p-header {
    height: clamp(80px, 6.25vw, 120px);
    height: clamp(5rem, 6.25vw, 7.5rem);
  }

  .p-header__inner {
    padding-left: clamp(20px, 3.125vw, 60px);
    padding-left: clamp(1.25rem, 3.125vw, 3.75rem);
  }

  .p-header__logo {
    max-width: clamp(220px, 19.2708333333vw, 370px);
    max-width: clamp(13.75rem, 19.2708333333vw, 23.125rem);
  }

  .p-header__nav {
    display: block;
  }

  .p-header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: inherit;
  }

  .p-header__menu-btn {
    display: none;
  }

  .p-top-works__list {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }

  .u-hidden--tab {
    display: revert !important;
  }

  .u-hidden--sp {
    display: revert !important;
  }
}

@media (min-width: 1060px) {

  html {
    font-size: 100%;
  }
}

@media only screen and (min-width: 1220px) {

  .p-recruit__interview-card {
    display: grid;
    grid-template-columns: 32.5rem minmax(0, 43.75rem);
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
  }

  .p-recruit__interview-main {
    display: contents;
  }

  .p-recruit__interview-img {
    grid-column: 1;
    grid-row: 1/span 2;
  }

  .p-recruit__interview-body {
    grid-column: 2;
    grid-row: 1;
  }

  .p-recruit__interview-card--reverse .p-recruit__interview-main {
    direction: ltr;
  }

  .p-recruit__interview-card--reverse {
    direction: rtl;
  }

  .p-recruit__interview-card--reverse > *,
  .p-recruit__interview-card--reverse .p-recruit__interview-img,
  .p-recruit__interview-card--reverse .p-recruit__interview-body,
  .p-recruit__interview-card--reverse .p-recruit__interview-sub {
    direction: ltr;
  }

  .p-recruit__interview-sub {
    gap: 40px;
    gap: 2.5rem;
    grid-column: 2;
    grid-row: 2;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}
/*# sourceMappingURL=map/style.css.map */