@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: 0.2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック体", "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  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 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  color: inherit;
  text-decoration: none;
}

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

a[href="*"]:hover,
a[href="*"]:focus-visible {
  opacity: 0.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: #eee;
  padding: 0.25em 0.5em;
}

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

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

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

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

var {
  background-color: #eee;
  padding: 0.25em 0.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: 0.5s;
  animation-duration: 0.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: 62.5%;
}

button {
  color: #111;
}

/************************************************************************
* 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 0.3s;
  transition: color 0.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: 0.7647058824em;
  background-color: currentColor;
  width: 0.8529411765em;
  height: 0.7647058824em;
  font-weight: 900;
  content: "";
}

a:not([class]) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: underline;
}

a:not([class]):hover {
  opacity: 0.7;
}

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: 2.4rem;
}

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

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.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: 0.8rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1.6rem;
  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: 0.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: 0.5lh;
  left: 0.5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: 0.625em;
  height: 0.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: 0.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: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-right: 0.25em solid #47486e;
  border-bottom: 0.25em solid #47486e;
  width: 0.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: 0.4em 2.4em 0.4em 0.8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1.6rem;
}

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: 65px;
  --header-height: 6.5rem;
}

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

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

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

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

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.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: 3rem;
}

.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: #47486e;
}

/* 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: 3rem 2rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: 0.5em;
  color: #47486e;
  font-weight: 700;
}

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

#toc_container .toc_list li::before {
  display: none;
  color: #47486e;
}

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

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

.l-container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 600px;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top 0.3s ease 0s;
  transition: top 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
}

.l-section {
  padding: 80px 0 60px;
  padding: 8rem 0 6rem;
}

.l-section.l-section--bg {
  background-color: rgba(224, 236, 245, 0.2);
}

.l-section.l-section--blue {
  background-color: #47486e;
}

.l-section.l-section--brown {
  background-color: #944747;
}

.l-section.l-section--small {
  padding: 24px 0 32px;
  padding: 2.4rem 0 3.2rem;
}

.l-section.l-section--voice {
  padding-top: 40px;
  padding-top: 4rem;
}

.l-section.l-section--testimonial {
  padding-top: 40px;
  padding-top: 4rem;
}

.l-section.l-section--padding {
  padding-bottom: 0;
}

.l-section.l-section--recruitIntro {
  padding: 80px 0 0;
  padding: 8rem 0 0;
}

.l-section.l-section--pageService {
  padding: 40px 0 0;
  padding: 4rem 0 0;
}

.l-section.l-section--pageTransportation {
  padding: 40px 0 60px;
  padding: 4rem 0 6rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  border: 1px solid #707070;
  background-color: #fff;
  background-image: none;
  padding: 8px 24px 8px 12px;
  padding: 0.8rem 2.4rem 0.8rem 1.2rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-decoration: none;
}

.c-btn::before {
  display: block;
  position: absolute;
  top: 50%;
  right: -11px;
  right: -1.1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: mix-blend-mode 0.3s, -webkit-transform 0.3s;
  transition: mix-blend-mode 0.3s, -webkit-transform 0.3s;
  transition: mix-blend-mode 0.3s, transform 0.3s;
  transition: mix-blend-mode 0.3s, transform 0.3s, -webkit-transform 0.3s;
  background-color: #707070;
  width: 21px;
  width: 2.1rem;
  height: 1px;
  content: "";
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: "";
}

.c-btn.c-btn--shine:hover,
.c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #fff;
  background-color: #fff;
  color: #111;
}

.c-btn.c-btn--shine:hover::before,
.c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine 0.7s;
  animation: shine 0.7s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: "\f061";
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover,
.c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(50.9944751381, 51.7127071823, 79.0055248619);
  background-color: #47486e;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover,
.c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #47486e;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid currentColor;
  padding: 0.2em 0.3em;
  color: #47486e;
  text-decoration: none;
}

.c-beforeIconBtn:hover,
.c-beforeIconBtn:focus {
  background-color: #47486e;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: 0.5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: "\f019";
}

.c-btnPrimary {
  display: inline-block;
  display: block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, border-color, background-color;
  transition-property: color, border-color, background-color;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  background-color: #fff;
  padding: 16px 16px 16px 60px;
  padding: 1.6rem 1.6rem 1.6rem 6rem;
  color: #111;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.048em;
  line-height: 1.4285714286;
  text-align: center;
}

.c-btnPrimary::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  left: 1.6rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-position: top;
  mask-position: top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  width: 32px;
  width: 3.2rem;
  content: "";
}

.c-btnPrimary.c-btnPrimary--download::before {
  -webkit-mask-image: url(../img/common/icon_download.svg);
  mask-image: url(../img/common/icon_download.svg);
}

.c-btnPrimary.c-btnPrimary--contact::before {
  -webkit-mask-image: url(../img/common/icon_mail.svg);
  mask-image: url(../img/common/icon_mail.svg);
}

.c-btnPrimary.c-btnPrimary--phone::before {
  -webkit-mask-image: url(../img/common/icon_phone.svg);
  mask-image: url(../img/common/icon_phone.svg);
}

.c-btnPrimary.c-btnPrimary--glass::before {
  -webkit-mask-image: url(../img/common/icon_glass.svg);
  mask-image: url(../img/common/icon_glass.svg);
}

.c-btnPrimary.c-btnPrimary--colorGreen {
  border: 1px solid #479484;
  background-color: #479484;
  color: #fff;
}

.c-btnPrimary.c-btnPrimary--colorMaroon {
  border: 1px solid #944761;
  background-color: #944761;
  color: #fff;
}

.c-btnPrimary.c-btnPrimary--colorBrown {
  border: 1px solid #944747;
  background-color: #944747;
  color: #fff;
}

.c-btnPrimary.c-btnPrimary--colorBlue {
  border: 1px solid #47486e;
  background-color: #47486e;
  color: #fff;
}

.c-btnPrimary.c-btnPrimary--square {
  border-radius: 0;
}

.c-btnPrimary.c-btnPrimary--squareLarge {
  border-radius: 0;
  font-size: 19px;
  font-size: 1.9rem;
}

.c-btnPrimary.c-btnPrimary--vertical:hover,
.c-btnPrimary.c-btnPrimary--vertical:focus {
  background-color: #fff;
  color: #47486e;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 2rem;
  bottom: 20px;
  bottom: 2rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #65a7ce;
  width: 50px;
  width: 5rem;
  height: 50px;
  height: 5rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 2rem;
  height: 20px;
  height: 2rem;
  content: "";
}

.c-totop.is-active {
  visibility: visible;
  opacity: 0.7;
}

.c-totop.is-active:hover,
.c-totop.is-active:focus {
  opacity: 1;
}

.p-about {
  background-color: rgba(224, 236, 245, 0.2);
  padding-top: 48px;
  padding-top: 4.8rem;
}

.p-about__title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.p-about__titleSub {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  color: #eee;
  font-size: 32px;
  font-size: 3.2rem;
}

.p-about__titleMain {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-about__text {
  margin-top: 32px;
  margin-top: 3.2rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

.p-accessInfo__items {
  gap: 80px;
  gap: 8rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-accessInfo__item {
  gap: 24px;
  gap: 2.4rem;
  display: grid;
}

.p-accessInfo__map iframe {
  aspect-ratio: 720/560;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 3.2rem;
}

.p-article__body h2 {
  background-color: #111;
  padding: 0.3em 0.4em;
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
}

.p-article__body h3 {
  border-left: 5px solid #111;
  padding-left: 0.5em;
  font-size: 24px;
  font-size: 2.4rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 2rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.8rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #111;
  content: "ー";
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 20px;
  padding: 2rem;
}

.p-article__body table th {
  border-right: 1px solid #111;
  width: 130px;
  width: 13rem;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

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

.p-article__body .wp-block-spacer,
.p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: 1rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: 1.5rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: 1rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #47486e;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: 1rem;
}

.p-article__body a:not([class]) {
  color: #47486e;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: #111;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #eee;
  padding: 1em 4em;
}

.p-article__body blockquote::before,
.p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #707070;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: 0.5em;
  content: "\f10d";
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: 0.5em;
  bottom: 0;
  content: "\f10e";
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 2rem 1rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 3rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #47486e;
  width: 2em;
  height: 2em;
  color: #47486e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #47486e;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-base__items {
  gap: 40px;
  gap: 4rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-btnGroup {
  gap: 32px;
  gap: 3.2rem;
  display: grid;
}

.p-client__itemImage {
  margin-top: 40px;
  margin-top: 4rem;
}

.p-client__itemImage img {
  aspect-ratio: 358/102;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-company__items {
  gap: 40px;
  gap: 4rem;
  display: grid;
  margin-top: 30px;
  margin-top: 3rem;
  color: #fff;
}

.p-company__item {
  display: block;
  position: relative;
  overflow: hidden;
}

.p-company__item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.p-company__item::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  right: 8px;
  right: 0.8rem;
  bottom: 8px;
  bottom: 0.8rem;
  z-index: 2;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 41.0256410256%;
  width: 28px;
  width: 2.8rem;
  content: "";
}

.p-company__itemImage {
  width: 100%;
}

.p-company__itemImage img {
  aspect-ratio: 357/374;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.p-company__itemContent {
  gap: 24px;
  gap: 2.4rem;
  margin-inline: auto;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  -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-transform: translate(-50%, -1lh);
  transform: translate(-50%, -1lh);
  z-index: 2;
  width: 74.5098039216%;
  line-height: 1.4210526316;
}

.p-company__itemTitle {
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.0048em;
  text-align: center;
}

.p-company__itemDescription {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.0048em;
  line-height: 1.5;
}

.p-contact {
  color: #fff;
}

.p-contact__text {
  margin-top: 16px;
  margin-top: 1.6rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-contact__btns {
  margin-inline: auto;
  margin-top: 32px;
  margin-top: 3.2rem;
  max-width: 256px;
}

.p-contact__phone {
  margin-top: 40px;
  margin-top: 4rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-contact__phoneNumber {
  position: relative;
  margin-top: 16px;
  margin-top: 1.6rem;
  padding-left: 1.296875em;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.048em;
  line-height: 1.4285714286;
}

.p-contact__phoneNumber::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_phone.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.828125em;
  content: "";
}

.p-contact__phoneTime {
  margin-top: 16px;
  margin-top: 1.6rem;
}

.p-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 19;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-cta.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

.p-cta__item--pc {
  display: none;
}

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

.p-drawer__icon {
  aspect-ratio: 1;
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  border: 1px solid;
  width: 40px;
  width: 4rem;
  line-height: 1;
  text-align: center;
}

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: 9px;
  background: #111;
  width: 100%;
  height: 1px;
}

.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(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  width: 100%;
}

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

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

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

.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 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  margin-top: var(--header-height, 65px);
  margin-top: var(--header-height, 6.5rem);
  background: #eee;
  padding: 40px 0;
  padding: 4rem 0;
  width: 100%;
  height: calc(100vh - var(--header-height, 6.5rem));
  height: calc(100dvh - var(--header-height, 6.5rem));
  overflow: auto;
  color: #111;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.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: 16px;
  padding-left: 16px;
  width: 100%;
}

.p-drawer__navLink {
  display: block;
  position: relative;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 44px;
  padding-left: 4.4rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
}

.p-drawer__navLink span::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: calc(0.5lh + 0.4em);
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../img/common/icon_arrow_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 41.0256410256%;
  width: 28px;
  width: 2.8rem;
  content: "";
}

.p-drawer__submenu {
  padding-left: 44px;
  padding-left: 4.4rem;
}

.p-drawer__submenuLink {
  display: block;
  position: relative;
  padding-bottom: 0.6666666667em;
  padding-left: 1.1em;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
}

.p-drawer__submenuLink::before {
  aspect-ratio: 1;
  display: inline-block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #111;
  width: 0.5em;
  content: "";
}

.p-drawer__btnGroup {
  margin-top: 40px;
  margin-top: 4rem;
  max-width: 270px;
}

.p-faq__items {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-faq__item {
  border: 1px solid #707070;
}

.p-faq__itemQuestion,
.p-faq__itemAnswer {
  position: relative;
  padding: 16px 24px;
  padding: 1.6rem 2.4rem;
  width: 100%;
}

.p-faq__itemQuestion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  background-color: #944747;
  color: #fff;
}

.p-faq__itemAnswer {
  display: none;
  background-color: #fff;
}

.p-faq__itemQuestionIcon,
.p-faq__itemAnswerIcon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5em;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4375;
  text-align: left;
}

.p-faq__itemQuestionText,
.p-faq__itemAnswerText {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.9166666667;
  text-align: left;
}

.p-faq__itemQuestionText {
  padding-right: 40px;
  padding-right: 4rem;
  color: #fff;
}

.p-faq__itemQuestionButton {
  aspect-ratio: 1;
  position: absolute;
  top: 18px;
  top: 1.8rem;
  top: 50%;
  right: 24px;
  right: 2.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 24px;
  width: 2.4rem;
}

.p-faq__itemQuestionButton::before,
.p-faq__itemQuestionButton::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s;
  transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
  border-radius: 100vh;
  background: #fff;
  width: 100%;
  height: 1px;
  content: "";
}

.p-faq__itemQuestionButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__itemQuestion.is-opened .p-faq__itemQuestionButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

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

.p-features__title {
  text-align: center;
}

.p-features__subtitle {
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1.6rem;
  border-bottom: 1px solid #47486e;
  padding-bottom: 4px;
  padding-bottom: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
}

.p-features__items {
  gap: 40px;
  gap: 4rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-features__item {
  position: relative;
}

.p-features__itemWrap {
  margin-inline: auto;
  padding: 0;
}

.p-features__itemInner {
  display: grid;
}

.p-features__itemImage {
  margin-top: 16px;
  margin-top: 1.6rem;
}

.p-features__itemImage img {
  aspect-ratio: 358/238;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-features__itemContent {
  gap: 8px;
  gap: 0.8rem;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
  padding-bottom: 8px;
  padding-bottom: 0.8rem;
}

.p-features__itemNumber {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.2em;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
}

.p-features__itemTitle {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.4583333333;
}

.p-features__itemDescription {
  margin-top: 24px;
  margin-top: 2.4rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.p-flow__items {
  gap: 60px;
  gap: 6rem;
  margin-inline: auto;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 40px;
  margin-top: 4rem;
  max-width: 320px;
}

.p-flow__item {
  display: grid;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-flow__item:not(:last-child)::after {
  aspect-ratio: 1;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg) skew(5deg, 5deg);
  transform: translateX(-50%) rotate(135deg) skew(5deg, 5deg);
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  width: 24px;
  width: 2.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  content: "";
}

.p-flow__itemIcon {
  background-color: #eee;
}

.p-flow__itemIconInner {
  margin-inline: auto;
  padding: 42px 0;
  padding: 4.2rem 0;
  width: 72.5%;
}

.p-flow__itemIconInner img {
  aspect-ratio: 454/232;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-flow__itemTitle {
  background-color: rgba(17, 17, 17, 0.5);
  padding: 37px 10px;
  padding: 3.7rem 1rem;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.12em;
  line-height: 1.4375;
  text-align: center;
}

.p-flow__itemDescription {
  margin-top: 24px;
  margin-top: 2.4rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.p-footer {
  border-top: 1px solid #47486e;
  background-color: #fff;
}

.p-footer__inner {
  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;
}

.p-footer__content {
  margin-inline: auto;
  display: grid;
  padding: 24px 0;
  padding: 2.4rem 0;
  max-width: 600px;
}

.p-footer__logo {
  margin-inline: auto;
  width: 180px;
  width: 18rem;
}

.p-footer__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: 100%;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__main {
  gap: 40px 20px;
  gap: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.8fr 1.8fr;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-footer__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-area: 1/1/2/2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__company {
  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;
}

.p-footer__companyName {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.048em;
  line-height: 1.4285714286;
}

.p-footer__companyInfo {
  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;
  margin-top: 8px;
  margin-top: 0.8rem;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.048em;
  line-height: 1.3333333333;
}

.p-footer__socialList {
  gap: 16px;
  gap: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  margin-top: 1.6rem;
}

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

.p-footer__socialLink {
  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-footer__socialLink img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__nav {
  grid-area: 2/1/3/3;
}

.p-footer__navList {
  gap: 8px 24px;
  gap: 0.8rem 2.4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-footer__navItem {
  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;
  font-size: 12px;
  font-size: 1.2rem;
}

.p-footer__navItem--spHidden {
  display: none;
}

.p-footer__submenu {
  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;
  margin-left: 1em;
}

.p-footer__submenuItem {
  display: block;
}

.p-footer__submenuItem:not(:first-child) .p-footer__submenuLink {
  padding-top: 8px;
  padding-top: 0.8rem;
}

.p-footer__submenuLink {
  display: none;
}

.p-footer__map {
  grid-area: 1/2/2/3;
}

.p-footer__map iframe {
  aspect-ratio: 179/121;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__bottom {
  background-color: #47486e;
  padding: 4px 0;
  padding: 0.4rem 0;
}

.p-footer__copyright {
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-fv {
  aspect-ratio: 390/383;
  position: relative;
  background-image: url(../img/top/fv_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-fv::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.1);
  width: 100%;
  height: 100%;
  content: "";
}

.p-fv__title {
  position: absolute;
  right: 24px;
  right: 2.4rem;
  bottom: 24px;
  bottom: 2.4rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3px 7px 10px;
  padding: 0.3rem 0.7rem 1rem;
  width: 223px;
  width: 22.3rem;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4375;
}

.p-fv__title span {
  display: block;
}

.p-greeting__content {
  gap: 40px;
  gap: 4rem;
  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;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-greeting__portrait img {
  aspect-ratio: 480/560;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-greeting__text {
  line-height: 2;
}

.p-greeting__heading {
  border-bottom: 1px solid #707070;
  padding-bottom: 16px;
  padding-bottom: 1.6rem;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.048em;
  line-height: 1.4375;
}

.p-greeting__description {
  gap: 1em;
  display: grid;
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-greeting__signature {
  gap: 8px;
  gap: 0.8rem;
  display: grid;
  margin-top: 24px;
  margin-top: 2.4rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-greeting__companyName {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.048em;
  line-height: 1.3333333333;
}

.p-greeting__representativeSub {
  padding-right: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.048em;
  line-height: 1.3333333333;
}

.p-greeting__representative {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.048em;
}

.p-header {
  padding-top: 8px;
  padding-top: 0.8rem;
  padding-bottom: 8px;
  padding-bottom: 0.8rem;
  height: 65px;
  height: 6.5rem;
}

.p-header__inner {
  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-right: 6px;
  padding-right: 0.6rem;
  padding-left: 20px;
  padding-left: 2rem;
  height: 100%;
}

.p-header__logo {
  z-index: 41;
  width: 180px;
  width: 18rem;
}

.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: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__navItem.p-header__navItem--hasSubmenu {
  position: relative;
}

.p-header__navItem.p-header__navItem--hasSubmenu:hover > .p-header__submenu,
.p-header__navItem.p-header__navItem--hasSubmenu:focus-within > .p-header__submenu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-header__navLink span {
  display: inline;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  background-image: -webkit-gradient(linear, left top, right top, from(#111), to(#111));
  background-image: linear-gradient(90deg, #111, #111);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
}

.p-header__navLink:hover span,
.p-header__navLink.is-active span {
  background-size: 100% 1px;
}

.p-header__navItem.is-open .p-header__navLink span {
  background-size: 100% 1px;
}

.p-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  visibility: hidden;
  opacity: 0;
  z-index: 41;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.64);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.64);
  background-color: #fff;
  padding: 8px 6px;
  padding: 0.8rem 0.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
}

.p-header__submenuItem:not(:first-child) .p-header__submenuLink {
  border-top: 1px solid #707070;
  padding-top: 14px;
  padding-top: 1.4rem;
}

.p-header__submenuItem:not(:last-child) .p-header__submenuLink {
  padding-bottom: 4px;
  padding-bottom: 0.4rem;
}

.p-header__submenuLink {
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-header__submenuLink:hover,
.p-header__submenuLink:focus {
  color: #47486e;
}

.p-inquiry {
  color: #fff;
}

.p-inquiry__campaign {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.048em;
  line-height: 1.5;
  text-align: center;
}

.p-inquiry__campaignLimit {
  margin-top: 8px;
  margin-top: 0.8rem;
}

.p-inquiry__campaignAmount {
  margin-inline: auto;
  position: relative;
  padding: 24px 24px 0 24px;
  padding: 2.4rem 2.4rem 0 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.048em;
  line-height: 1.45;
}

.p-inquiry__campaignAmount::before,
.p-inquiry__campaignAmount::after {
  aspect-ratio: 60/69;
  display: block;
  position: absolute;
  background-image: url(../img/recruit/campaign_deco.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 2.4rem;
  content: "";
}

.p-inquiry__campaignAmount::before {
  top: 10px;
  top: 1rem;
  left: 0;
}

.p-inquiry__campaignAmount::after {
  top: 24px;
  top: 2.4rem;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.p-inquiry__campaignAmount__sub {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
}

.p-inquiry__campaignDetail {
  margin-top: 16px;
  margin-top: 1.6rem;
}

.p-inquiry__campaignText {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.p-inquiry__text {
  margin-top: 16px;
  margin-top: 1.6rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-inquiry__btns {
  margin-inline: auto;
  margin-top: 32px;
  margin-top: 3.2rem;
  max-width: 256px;
}

.p-inquiry__btns.p-inquiry__btns--campaign {
  margin-top: 40px;
  margin-top: 4rem;
}

.p-inquiry__phone {
  margin-top: 40px;
  margin-top: 4rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-inquiry__phoneNumber {
  position: relative;
  margin-top: 16px;
  margin-top: 1.6rem;
  padding-left: 1.296875em;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.048em;
  line-height: 1.4285714286;
}

.p-inquiry__phoneNumber::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_phone.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.828125em;
  content: "";
}

.p-inquiry__phoneTime {
  margin-top: 16px;
  margin-top: 1.6rem;
}

.p-jobInfo__description {
  margin-top: 24px;
  margin-top: 2.4rem;
  text-align: center;
}

.p-jobInfo__areaContent {
  margin-top: 24px;
  margin-top: 2.4rem;
  background-color: #eee;
  padding: 40px 0;
  padding: 4rem 0;
}

.p-jobInfo__areas {
  gap: 40px;
  gap: 4rem;
  display: grid;
}

.p-jobInfo__areaTitle {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.0048em;
  line-height: 1.75;
  text-align: center;
}

.p-jobInfo__areaItems {
  gap: 24px;
  gap: 2.4rem;
  display: grid;
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-jobInfo__areaItem {
  position: relative;
}

.p-jobInfo__areaItem a {
  display: block;
}

.p-jobInfo__areaItemImage {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-jobInfo__areaItemImage img {
  aspect-ratio: 320/195;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-jobInfo__areaItemImage::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
}

.p-jobInfo__areaItemName {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(17, 17, 17, 0.5);
  width: 100%;
  height: calc(1lh + 1.2rem);
  pointer-events: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.4em;
  line-height: 1.4375;
  text-align: center;
}

.p-locationCard {
  gap: 20px;
  gap: 2rem;
  display: grid;
}

.p-locationCard__itemImage img {
  aspect-ratio: 480/320;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-locationCard__itemContent {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
}

.p-locationCard__itemTitle {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.048em;
  line-height: 1.4583333333;
}

.p-locationCard__itemDescription--truck {
  margin-top: 8px;
  margin-top: 0.8rem;
}

.p-locationCard__itemContact {
  gap: 8px;
  gap: 0.8rem;
  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;
}

.p-locationCard__itemPostal {
  letter-spacing: 0.048em;
  line-height: 1.5;
}

.p-locationCard__itemMapLink {
  position: relative;
  padding-left: 1.75em;
}

.p-locationCard__itemMapLink::before {
  display: block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1.23em;
  content: "";
}

.p-locationCard__itemServices {
  gap: 8px;
  gap: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-top: 0.8rem;
}

.p-locationCard__itemCategories {
  gap: 10px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-locationCard__itemCategory {
  border-radius: 1.2rem;
  padding: 0 2.125em;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.p-locationCard__itemCategory.p-locationCard__itemCategory--head {
  background-color: #cb913a;
  color: #fff;
}

.p-locationCard__itemCategory.p-locationCard__itemCategory--transport {
  background-color: #47486e;
  color: #fff;
}

.p-locationCard__itemCategory.p-locationCard__itemCategory--warehouse {
  background-color: #479484;
  color: #fff;
}

.p-news__items {
  margin-top: 16px;
  margin-top: 1.6rem;
}

.p-news__item {
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #707070;
  padding: 16px 0 24px;
  padding: 1.6rem 0 2.4rem;
}

.p-news__item:first-child {
  border-top: 1px solid #707070;
}

.p-news__itemContent {
  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;
}

.p-news__itemDate {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 110px;
  width: 11rem;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.0048em;
  line-height: 2;
}

.p-news__itemTags {
  gap: 8px;
  gap: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-news__itemTag {
  display: inline-block;
  border-radius: 1.2rem;
  padding: 4px 16px;
  padding: 0.4rem 1.6rem;
  min-width: 70px;
  min-width: 7rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

.p-news__itemTag--blue {
  background-color: #e0ecf5;
}

.p-news__itemTag--red {
  background-color: #f5e0e4;
}

.p-ourDay__description {
  margin-top: 24px;
  margin-top: 2.4rem;
  text-align: center;
}

.p-ourDay__items {
  gap: 80px;
  gap: 8rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-ourDay__item {
  gap: 24px 40px;
  gap: 2.4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-ourDay__item--noImage .p-ourDay__itemContent {
  grid-area: 1/1/2/3;
}

.p-ourDay__item--noImage .p-ourDay__itemContent .p-ourDay__itemText {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-ourDay__itemClock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-area: 1/1/2/2;
  -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;
  padding-top: 8px;
  padding-top: 0.8rem;
}

.p-ourDay__itemClock img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-ourDay__itemText {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
}

.p-ourDay__itemTimeText {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.0048em;
  line-height: 1.4375;
}

.p-ourDay__itemContent {
  grid-area: 1/2/2/3;
}

.p-ourDay__itemTitle {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.0048em;
  line-height: 1.4444444444;
}

.p-ourDay__itemDescription {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.0048em;
  line-height: 2;
}

.p-ourDay__itemImage {
  grid-area: 2/1/3/3;
}

.p-ourDay__itemImage img {
  aspect-ratio: 640/320;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-ourTrucks__items {
  gap: 32px;
  gap: 3.2rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-overview__table {
  margin-top: 80px;
  margin-top: 8rem;
  border-top: 1px solid #707070;
  line-height: 2;
}

.p-overview__list {
  display: grid;
}

.p-overview__item {
  gap: 0.5em;
  display: grid;
  border-bottom: 1px solid #707070;
  padding: 16px 0.5em;
  padding: 1.6rem 0.5em;
}

.p-overview__term {
  font-weight: 700;
}

.p-overview__clientList {
  display: grid;
}

.p-pageFv {
  aspect-ratio: 3/2;
  position: relative;
  z-index: 1;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-pageFv::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(17, 17, 17, 0.3);
  width: 100%;
  height: 100%;
  content: "";
}

.p-pageFv::after {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 16px;
  height: 1.6rem;
}

.p-pageFv.p-pageFv--color {
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}

.p-pageFv.p-pageFv--color::after {
  content: "";
}

.p-pageFv.p-pageFv--service {
  background-image: url(../img/service/fv_sp.jpg);
}

.p-pageFv.p-pageFv--transportation {
  background-image: url(../img/transportation/fv_sp.jpg);
}

.p-pageFv.p-pageFv--transportation::after {
  background-color: #47486e;
}

.p-pageFv.p-pageFv--storage {
  background-image: url(../img/service/storage_fv_sp.jpg);
}

.p-pageFv.p-pageFv--consulting {
  background-image: url(../img/service/consulting_fv_sp.jpg);
}

.p-pageFv.p-pageFv--about {
  background-image: url(../img/about/fv_sp.jpg);
}

.p-pageFv.p-pageFv--recruit {
  background-image: url(../img/recruit/fv_sp.jpg);
}

.p-pageFv.p-pageFv--recruit::after {
  background-color: #944747;
}

.p-pageFv.p-pageFv--access {
  background-image: url(../img/access/fv_sp.jpg);
}

.p-pageFv.p-pageFv--contact {
  background-image: url(../img/inquiry/fv_sp.jpg);
}

.p-pageFv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4583333333;
  text-align: center;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #47486e;
  width: 2em;
  height: 2em;
  color: #47486e;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: 1rem;
}

.page-numbers.current {
  background-color: #47486e;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-reason__items {
  gap: 60px;
  gap: 6rem;
  display: grid;
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-reason__item {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
}

.p-reason__itemNumber {
  -webkit-text-stroke: 4px rgb(255, 255, 255);
  text-stroke: 4px rgb(255, 255, 255);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: transparent;
  font-size: 154px;
  font-size: 15.4rem;
  font-weight: 700;
  line-height: 1.1111111111;
}

.p-reason__itemImage {
  aspect-ratio: 358/375;
  position: relative;
}

.p-reason__itemImage img {
  aspect-ratio: 358/375;
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-reason__itemTitle {
  border-bottom: 1px solid #707070;
  padding-bottom: 16px;
  padding-bottom: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.p-reason__itemDescription {
  margin-top: 16px;
  margin-top: 1.6rem;
  line-height: 2;
}

.p-reason__itemBtn {
  margin-top: 16px;
  margin-top: 1.6rem;
  text-align: center;
}

.p-recruitIntro {
  text-align: center;
}

.p-recruitIntro__title {
  margin-inline: auto;
  border-bottom: 2px solid #47486e;
  border-bottom: 0.2rem solid #47486e;
  padding-bottom: 2px;
  padding-bottom: 0.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4375;
}

.p-recruitIntro__textWrapper {
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-recruitIntro__text {
  position: relative;
  width: 100%;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.0048em;
  line-height: 2.125;
}

.p-recruitIntro__text::before {
  left: 0;
}

.p-recruitIntro__text::after {
  right: 0;
}

.p-recruitIntro__accent {
  color: #944747;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}

.p-sectionTitle {
  --parent-font-size: 48px;
  --parent-font-size: 4.8rem;
  --parent-line-height: 70px;
  --parent-line-height: 7rem;
  position: relative;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.4583333333;
  text-align: center;
}

.p-sectionTitle__sub {
  z-index: 1;
  color: #eee;
  letter-spacing: 0.2em;
}

.p-sectionTitle__sub.p-sectionTitle__sub--upper {
  text-transform: uppercase;
}

.p-sectionTitle__sub.p-sectionTitle__sub--multiline {
  letter-spacing: 0.1em;
}

.p-sectionTitle__sub.p-sectionTitle__sub--opacity {
  opacity: 0.15;
}

.p-sectionTitle__sub.p-sectionTitle__sub--space {
  letter-spacing: 0.12em;
}

.p-sectionTitle__sub.p-sectionTitle__sub--minSpace {
  letter-spacing: 0.05em;
}

.p-sectionTitle__sub.p-sectionTitle__sub--minSpace span {
  display: inline-block;
}

.p-sectionTitle__sub.p-sectionTitle__sub--pcMinSpace {
  letter-spacing: 0.05em;
}

.p-sectionTitle__main {
  position: absolute;
  bottom: calc((var(--parent-line-height) - var(--parent-font-size)) / 2 - (1lh - 1em) / 2 + 0.2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
}

.p-service__items {
  gap: 56px;
  gap: 5.6rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-service__item {
  gap: 16px;
  gap: 1.6rem;
  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;
}

.p-service__itemImage img {
  aspect-ratio: 357/238;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service__itemContent {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
}

.p-service__itemTitle {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
}

.p-service__itemDescription {
  line-height: 2;
}

.p-serviceDetail__items {
  gap: 56px;
  gap: 5.6rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-serviceDetail__item {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-serviceDetail__item--xlarge {
  margin-inline: auto;
  max-width: 1280px;
}

.p-serviceDetail__itemImage {
  aspect-ratio: 560/368;
  position: relative;
}

.p-serviceDetail__itemImage img {
  width: 100%;
  height: 86.9565217391%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-serviceDetail__itemImage::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13.0434782609%;
  content: "";
}

.p-serviceDetail__itemImage--blue::after {
  background-color: #47486e;
}

.p-serviceDetail__itemImage--green::after {
  background-color: #479484;
}

.p-serviceDetail__itemImage--gold::after {
  background-color: #cb913a;
}

.p-serviceDetail__itemTitle {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4375;
}

.p-serviceDetail__itemSubtitle {
  margin-top: 16px;
  margin-top: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4583333333;
}

.p-serviceDetail__itemDescription {
  margin-top: 16px;
  margin-top: 1.6rem;
  border-top: 1px solid;
  padding-top: 16px;
  padding-top: 1.6rem;
  line-height: 2;
}

.p-serviceDetail__itemDescription--blue {
  border-color: #47486e;
}

.p-serviceDetail__itemDescription--green {
  border-color: #479484;
}

.p-serviceDetail__itemDescription--gold {
  border-color: #cb913a;
}

.p-serviceDetail__itemButton {
  margin-top: 24px;
  margin-top: 2.4rem;
  text-align: center;
}

.p-serviceIntro {
  text-align: center;
}

.p-serviceIntro__title {
  margin-inline: auto;
  position: relative;
  padding: 16px 16px 0 16px;
  padding: 1.6rem 1.6rem 0 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4583333333;
}

.p-serviceIntro__title::after {
  aspect-ratio: 32/26;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-mask-image: url(../img/recruit/campaign_deco.svg);
  mask-image: url(../img/recruit/campaign_deco.svg);
  -webkit-mask-position: top;
  mask-position: top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #707070;
  width: 24px;
  width: 2.4rem;
  content: "";
}

.p-serviceIntro__description {
  margin-top: 16px;
  margin-top: 1.6rem;
  font-weight: 500;
}

.p-serviceIntro__items {
  gap: 24px;
  gap: 2.4rem;
  display: grid;
  margin-top: 24px;
  margin-top: 2.4rem;
}

.p-serviceIntro__item {
  position: relative;
  overflow: hidden;
}

.p-serviceIntro__item a {
  display: block;
}

.p-serviceIntro__item::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(17, 17, 17, 0.5);
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
}

.p-serviceIntro__item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 16px;
  height: 1.6rem;
  pointer-events: none;
  content: "";
}

.p-serviceIntro__item:first-child::after {
  background-color: #47486e;
}

.p-serviceIntro__item:nth-child(2)::after {
  background-color: #479484;
}

.p-serviceIntro__item:nth-child(3)::after {
  background-color: #cb913a;
}

.p-serviceIntro__itemImage {
  position: relative;
}

.p-serviceIntro__itemImage img {
  aspect-ratio: 400/160;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-serviceIntro__itemContent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  text-align: center;
}

.p-serviceIntro__itemTitle {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.0048em;
  line-height: 1.4375;
}

.p-testimonial__items {
  gap: 60px;
  gap: 6rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-testimonial__item {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-testimonial__itemImage {
  margin-inline: auto;
  position: relative;
  width: 89.3854748603%;
}

.p-testimonial__itemImage img {
  aspect-ratio: 320/213;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-testimonial__itemMessage {
  gap: 4px;
  gap: 0.4rem;
  display: grid;
  position: absolute;
  bottom: 16px;
  bottom: 1.6rem;
  left: 16px;
  left: 1.6rem;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 1.3846153846;
}

.p-testimonial__itemMessage span {
  background-color: #fff;
  padding: 0 4px;
  padding: 0 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-testimonial__itemCompany {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.p-testimonial__itemTitle {
  margin-top: 4px;
  margin-top: 0.4rem;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.3125;
}

.p-testimonial__itemText {
  margin-top: 16px;
  margin-top: 1.6rem;
  border-top: 1px solid #707070;
  padding-top: 16px;
  padding-top: 1.6rem;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1.7142857143;
}

.p-workStyle__items {
  gap: 40px;
  gap: 4rem;
  display: grid;
  margin-top: 40px;
  margin-top: 4rem;
}

.p-workStyle__item {
  gap: 20px;
  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;
}

.p-workStyle__itemImage img {
  aspect-ratio: 640/478;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-workStyle__itemContent {
  gap: 16px;
  gap: 1.6rem;
  display: grid;
}

.p-workStyle__itemTitle {
  border-bottom: 1px solid #707070;
  padding-bottom: 16px;
  padding-bottom: 1.6rem;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4375;
}

.p-workStyle__itemDescription {
  line-height: 2;
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlyMdp {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

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

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

@media screen and (min-width: 576px) {
  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }

  html {
    font-size: 0.9433962264vw;
  }

  :root {
    --header-height: 70px;
    --header-height: 7rem;
  }

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

  #toc_container {
    padding: 30px 60px;
    padding: 3rem 6rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1120px;
  }

  .l-container.l-container--small {
    max-width: 1020px;
  }

  .l-container.l-container--narrow {
    max-width: 1060px;
  }

  .l-container.l-container--medium {
    max-width: 1210px;
  }

  .l-container.l-container--wide {
    max-width: 1340px;
  }

  .l-container.l-container--large {
    max-width: 1500px;
  }

  .l-container.l-container--xlarge {
    max-width: 1660px;
  }

  .l-container.l-container--xxlarge {
    max-width: 1980px;
  }

  .l-header.is-fixed {
    top: 32px;
    top: 3.2rem;
  }

  .l-header {
    position: fixed;
    top: 32px;
    top: 3.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 2rem;
    width: 91.6666666667%;
  }

  .l-header.is-fixed {
    -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
    box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
  }

  .l-section {
    padding: 160px 0;
    padding: 16rem 0;
  }

  .l-section.l-section--small {
    padding: 40px 0 136px;
    padding: 4rem 0 13.6rem;
  }

  .l-section.l-section--voice {
    padding-top: 160px;
    padding-top: 16rem;
  }

  .l-section.l-section--testimonial {
    padding-top: 160px;
    padding-top: 16rem;
  }

  .l-section.l-section--recruitIntro {
    padding: 120px 0 0;
    padding: 12rem 0 0;
  }

  .l-section.l-section--pageService {
    padding: 60px 0 0;
    padding: 6rem 0 0;
  }

  .l-section.l-section--pageTransportation {
    padding: 60px 0 160px;
    padding: 6rem 0 16rem;
  }

  .c-btn::before {
    right: -18px;
    right: -1.8rem;
    width: 32px;
    width: 3.2rem;
  }

  .c-btn {
    padding: 17px 76px;
    padding: 1.7rem 7.6rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .c-btn:hover,
  .c-btn:focus-visible {
    outline: none;
    background-color: #707070;
    color: #fff;
  }

  .c-btn:hover::before,
  .c-btn:focus-visible::before {
    -webkit-transform: translateY(-50%) translateX(0.8rem);
    transform: translateY(-50%) translateX(0.8rem);
    mix-blend-mode: difference;
    background-color: white;
  }

  .c-btnPrimary {
    padding: 36px 24px 36px 100px;
    padding: 3.6rem 2.4rem 3.6rem 10rem;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }

  .c-btnPrimary:hover,
  .c-btnPrimary:focus {
    border: 1px solid currentColor;
    background-color: transparent;
    color: #fff;
  }

  .c-btnPrimary::before {
    left: 32px;
    left: 3.2rem;
    width: 52px;
    width: 5.2rem;
  }

  .c-btnPrimary.c-btnPrimary--vertical {
    border: 1px solid #707070;
    padding: 110px 28px 28px 28px;
    padding: 11rem 2.8rem 2.8rem 2.8rem;
    letter-spacing: 0.4em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .c-btnPrimary.c-btnPrimary--vertical::before {
    top: 32px;
    top: 3.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-about {
    padding-top: 80px;
    padding-top: 8rem;
  }

  .p-about__titleSub {
    top: inherit;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    font-size: 72px;
    font-size: 7.2rem;
  }

  .p-about__titleMain {
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.4583333333;
  }

  .p-about__text {
    margin-top: 64px;
    margin-top: 6.4rem;
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-accessInfo__items {
    gap: 160px;
    gap: 16rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-accessInfo__item {
    gap: 80px;
    gap: 8rem;
    grid-template-columns: 4.8fr 7.2fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 2rem 3rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 15.3rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-base__items {
    gap: 120px 160px;
    gap: 12rem 16rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-btnGroup {
    gap: 49px;
    gap: 4.9rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-client__itemImage img {
    aspect-ratio: 1640/95;
  }

  .p-client__itemImage {
    margin-top: 80px;
    margin-top: 8rem;
  }

  .p-company__items {
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    margin-top: 8rem;
  }

  .p-company__item:hover .p-company__itemImage img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-company__item::after {
    right: 16px;
    right: 1.6rem;
    bottom: 16px;
    bottom: 1.6rem;
    width: 40px;
    width: 4rem;
  }

  .p-company__itemImage img {
    aspect-ratio: 480/560;
  }

  .p-company__itemContent {
    gap: 32px;
    gap: 3.2rem;
    -webkit-transform: translate(-50%, -3lh);
    transform: translate(-50%, -3lh);
    width: 83.3333333333%;
  }

  .p-company__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-contact__text {
    margin-top: 80px;
    margin-top: 8rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-contact__btns {
    max-width: 100%;
  }

  .p-contact__phone {
    margin-top: 80px;
    margin-top: 8rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-contact__phoneNumber {
    margin-top: 40px;
    margin-top: 4rem;
    font-size: 64px;
    font-size: 6.4rem;
  }

  .p-contact__phoneTime {
    margin-top: 4px;
    margin-top: 0.4rem;
  }

  .p-cta {
    right: 0;
    bottom: 60px;
    bottom: 6rem;
    left: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .p-cta__items {
    gap: 28px;
    gap: 2.8rem;
    grid-template-columns: 1fr;
  }

  .p-cta__item--sp {
    display: none;
  }

  .p-cta__item--pc {
    display: block;
  }

  .p-faq__items {
    gap: 40px;
    gap: 4rem;
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-faq__itemQuestion,
  .p-faq__itemAnswer {
    padding: 40px;
    padding: 4rem;
  }

  .p-faq__itemQuestionIcon,
  .p-faq__itemAnswerIcon {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-faq__itemQuestionText,
  .p-faq__itemAnswerText {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-faq__itemQuestionText {
    padding-right: 100px;
    padding-right: 10rem;
  }

  .p-faq__itemQuestionButton {
    top: 50%;
    right: 50px;
    right: 5rem;
    width: 60px;
    width: 6rem;
  }

  .p-features__inner.l-container {
    padding: 0;
  }

  .p-features__subtitle {
    margin-top: 72px;
    margin-top: 7.2rem;
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-features__items {
    gap: 0;
    margin-top: 72px;
    margin-top: 7.2rem;
  }

  .p-features__item:nth-child(odd) .p-features__itemInner {
    margin-left: auto;
  }

  .p-features__item:nth-child(odd) .p-features__itemImage::after {
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(rgba(255, 255, 255, 0.95)),
      color-stop(50%, rgba(255, 255, 255, 0.95)),
      color-stop(90%, rgba(255, 255, 255, 0.2)),
      to(rgba(255, 255, 255, 0.75))
    );
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0.75) 100%);
  }

  .p-features__itemWrap {
    padding: 32px 30px 72px 30px;
    padding: 3.2rem 30px 7.2rem 30px;
  }

  .p-features__itemInner {
    width: 62.5%;
  }

  .p-features__itemImage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-features__itemImage::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0.95)),
      color-stop(50%, rgba(255, 255, 255, 0.95)),
      color-stop(90%, rgba(255, 255, 255, 0.2)),
      to(rgba(255, 255, 255, 0.75))
    );
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0.75) 100%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: "";
  }

  .p-features__itemImage img {
    aspect-ratio: 1920/480;
    z-index: 1;
  }

  .p-features__itemContent {
    position: relative;
    z-index: 2;
    padding-bottom: 16px;
    padding-bottom: 1.6rem;
  }

  .p-features__itemNumber {
    font-size: 80px;
    font-size: 8rem;
  }

  .p-features__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-features__itemDescription {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    margin-top: 1.6rem;
    line-height: 2;
  }

  .p-flow__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-fv {
    aspect-ratio: 1920/908;
    background-image: url(../img/top/fv.jpg);
  }

  .p-fv__title {
    gap: 30px;
    gap: 3rem;
    display: grid;
    right: initial;
    left: 8.3333333333%;
    background: transparent;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 68px;
    font-size: 6.8rem;
    line-height: 1.25;
    line-height: 1.0833333333;
  }

  .p-fv__title span {
    background-color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-greeting__content {
    gap: 80px;
    gap: 8rem;
    display: grid;
    grid-template-columns: 4.8fr 8fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 112px;
    margin-top: 11.2rem;
  }

  .p-greeting__heading {
    padding-bottom: 24px;
    padding-bottom: 2.4rem;
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-greeting__signature {
    margin-top: 56px;
    margin-top: 5.6rem;
  }

  .p-greeting__companyName {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-greeting__representativeSub {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-greeting__representative {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-header {
    height: 70px;
    height: 7rem;
  }

  .p-header__inner {
    padding-right: 20px;
    padding-right: 2rem;
    padding-left: 10px;
    padding-left: 1rem;
  }

  .p-header__logo {
    width: 180px;
    width: 18rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    height: 100%;
  }

  .p-header__navList {
    gap: 24px;
    gap: 2.4rem;
    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: 100%;
  }

  .p-header__navItem {
    position: relative;
    height: 100%;
  }

  .p-header__navLink {
    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: 100%;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .p-header__drawer {
    display: none;
  }

  .p-inquiry__campaign {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-inquiry__campaignLimit {
    margin-top: 16px;
    margin-top: 1.6rem;
  }

  .p-inquiry__campaignAmount {
    padding: 56px 0 0 0;
    padding: 5.6rem 0 0 0;
    width: 100%;
    font-size: 120px;
    font-size: 12rem;
  }

  .p-inquiry__campaignAmount::before,
  .p-inquiry__campaignAmount::after {
    width: 60px;
    width: 6rem;
  }

  .p-inquiry__campaignAmount::before {
    top: 20px;
    top: 2rem;
  }

  .p-inquiry__campaignAmount::after {
    top: 56px;
    top: 5.6rem;
    right: 10px;
    right: 1rem;
  }

  .p-inquiry__campaignAmount__sub {
    font-size: 80px;
    font-size: 8rem;
  }

  .p-inquiry__campaignDetail {
    margin-top: 56px;
    margin-top: 5.6rem;
  }

  .p-inquiry__campaignText {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-inquiry__text {
    margin-top: 80px;
    margin-top: 8rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-inquiry__text.p-inquiry__text--campaign {
    margin-top: 56px;
    margin-top: 5.6rem;
  }

  .p-inquiry__btns {
    max-width: 100%;
  }

  .p-inquiry__btns.p-inquiry__btns--campaign {
    margin-top: 104px;
    margin-top: 10.4rem;
  }

  .p-inquiry__phone {
    margin-top: 80px;
    margin-top: 8rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-inquiry__phoneNumber {
    margin-top: 40px;
    margin-top: 4rem;
    font-size: 64px;
    font-size: 6.4rem;
  }

  .p-inquiry__phoneTime {
    margin-top: 4px;
    margin-top: 0.4rem;
  }

  .p-jobInfo__description {
    margin-top: 40px;
    margin-top: 4rem;
  }

  .p-jobInfo__areaContent {
    margin-top: 36px;
    margin-top: 3.6rem;
    padding: 80px 0 120px;
    padding: 8rem 0 12rem;
  }

  .p-jobInfo__areas {
    gap: 120px;
    gap: 12rem;
  }

  .p-jobInfo__areaTitle {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-jobInfo__areaItems {
    gap: 64px 80px;
    gap: 6.4rem 8rem;
    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;
    margin-top: 72px;
    margin-top: 7.2rem;
  }

  .p-jobInfo__areaItem {
    width: calc((100% - 16rem) / 3);
  }

  .p-jobInfo__areaItem a:hover .p-jobInfo__areaItemImage img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-jobInfo__areaItemName {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-locationCard {
    gap: 24px;
    gap: 2.4rem;
  }

  .p-locationCard__itemContent {
    gap: 20px;
    gap: 2rem;
  }

  .p-locationCard__itemTitle {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-news__items {
    margin-top: 80px;
    margin-top: 8rem;
  }

  .p-news__item {
    gap: 8px;
    gap: 0.8rem;
    padding-right: 24px;
    padding-right: 2.4rem;
  }

  .p-news__itemDate {
    width: 130px;
    width: 13rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .p-news__itemTags {
    gap: 12px;
    gap: 1.2rem;
  }

  .p-news__itemTag {
    min-width: 104px;
    min-width: 10.4rem;
  }

  .p-ourDay__description {
    margin-top: 40px;
    margin-top: 4rem;
  }

  .p-ourDay__items {
    gap: 120px;
    gap: 12rem;
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-ourDay__item {
    gap: 40px 80px;
    gap: 4rem 8rem;
  }

  .p-ourDay__itemClock {
    padding-top: 16px;
    padding-top: 1.6rem;
  }

  .p-ourDay__itemTimeText {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-ourDay__itemContent {
    padding-left: 14px;
    padding-left: 1.4rem;
  }

  .p-ourDay__itemTitle {
    font-size: 36px;
    font-size: 3.6rem;
  }

  .p-ourDay__itemDescription {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-ourTrucks__items {
    gap: 120px 160px;
    gap: 12rem 16rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-overview__table {
    margin-top: 112px;
    margin-top: 11.2rem;
  }

  .p-overview__item {
    gap: 0;
    grid-template-columns: 3.06fr 6.55fr;
    padding: 20px 0.5em;
    padding: 2rem 0.5em;
  }

  .p-pageFv {
    aspect-ratio: 1920/560;
  }

  .p-pageFv::after {
    height: 32px;
    height: 3.2rem;
  }

  .p-pageFv.p-pageFv--color {
    margin-bottom: 32px;
    margin-bottom: 3.2rem;
  }

  .p-pageFv.p-pageFv--service {
    background-image: url(../img/service/fv.jpg);
  }

  .p-pageFv.p-pageFv--transportation {
    background-image: url(../img/transportation/fv.jpg);
  }

  .p-pageFv.p-pageFv--storage {
    background-image: url(../img/service/storage_fv.jpg);
  }

  .p-pageFv.p-pageFv--consulting {
    background-image: url(../img/service/consulting_fv.jpg);
  }

  .p-pageFv.p-pageFv--about {
    background-image: url(../img/about/fv.jpg);
  }

  .p-pageFv.p-pageFv--recruit {
    background-image: url(../img/recruit/fv.jpg);
  }

  .p-pageFv.p-pageFv--access {
    background-image: url(../img/access/fv.jpg);
  }

  .p-pageFv.p-pageFv--contact {
    background-image: url(../img/inquiry/fv.jpg);
  }

  .p-pageFv__title {
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    font-size: 48px;
    font-size: 4.8rem;
  }

  .p-reason__items {
    gap: 120px;
    gap: 12rem;
    margin-top: 69px;
    margin-top: 6.9rem;
  }

  .p-reason__item {
    gap: 63px;
    gap: 6.3rem;
    grid-template-columns: 4.78fr 5.61fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1120px;
  }

  .p-reason__item:nth-child(even) {
    grid-template-columns: 5.61fr 4.78fr;
    margin-left: auto;
  }

  .p-reason__item:nth-child(even) .p-reason__itemImage {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-reason__itemNumber {
    right: 42px;
    right: 4.2rem;
    font-size: 200px;
    font-size: 20rem;
    line-height: 1.2987012987;
  }

  .p-reason__itemImage img {
    aspect-ratio: 1;
    width: calc(100% - 1.8rem);
    height: calc(100% - 1.8rem);
  }

  .p-reason__itemImage {
    aspect-ratio: 1;
  }

  .p-reason__itemImage::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    border: 1px solid #eee;
    background-color: #fff;
    width: calc(100% - 1.8rem);
    height: calc(100% - 1.8rem);
    content: "";
  }

  .p-reason__itemTitle {
    padding-bottom: 24px;
    padding-bottom: 2.4rem;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.4375;
  }

  .p-reason__itemDescription {
    margin-top: 40px;
    margin-top: 4rem;
  }

  .p-reason__itemBtn {
    margin-top: 60px;
    margin-top: 6rem;
    padding-right: 26px;
    padding-right: 2.6rem;
    text-align: right;
  }

  .p-recruitIntro__title {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-recruitIntro__textWrapper {
    margin-top: 84px;
    margin-top: 8.4rem;
  }

  .p-recruitIntro__text {
    padding-bottom: 24px;
    padding-bottom: 2.4rem;
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-recruitIntro__text::before,
  .p-recruitIntro__text::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(22.5deg);
    transform: translateY(-50%) rotate(22.5deg);
    background-color: #944747;
    width: 1px;
    height: 141.4%;
    content: "";
  }

  .p-recruitIntro__accent {
    font-size: 40px;
    font-size: 4rem;
  }

  .p-sectionTitle {
    --parent-font-size: 120px;
    --parent-font-size: 12rem;
    --parent-line-height: 158px;
    --parent-line-height: 15.8rem;
    font-size: 120px;
    font-size: 12rem;
    line-height: 1.3166666667;
  }

  .p-sectionTitle__sub {
    letter-spacing: 0.12em;
  }

  .p-sectionTitle__sub.p-sectionTitle__sub--multiline {
    line-height: inherit;
  }

  .p-sectionTitle__sub.p-sectionTitle__sub--minSpace {
    letter-spacing: 0.12em;
  }

  .p-sectionTitle__sub.p-sectionTitle__sub--pcMinSpace {
    letter-spacing: 0.05em;
  }

  .p-sectionTitle__main {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-sectionTitle__main.p-sectionTitle__main--multiline {
    top: inherit;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-service__items {
    gap: 120px 80px;
    gap: 12rem 8rem;
    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;
    margin-top: 120px;
    margin-top: 12rem;
  }

  .p-service__item {
    gap: 20px;
    gap: 2rem;
    width: calc(50% - 4rem);
  }

  .p-service__itemContent {
    gap: 20px;
    gap: 2rem;
  }

  .p-service__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-serviceDetail__items {
    gap: 160px;
    gap: 16rem;
    margin-top: 72px;
    margin-top: 7.2rem;
  }

  .p-serviceDetail__item {
    gap: 80px;
    gap: 8rem;
    grid-template-columns: 5.6fr 6.4fr;
  }

  .p-serviceDetail__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }

  .p-serviceDetail__itemSubtitle {
    font-size: 20px;
    font-size: 2rem;
  }

  .p-serviceDetail__itemDescription {
    margin-top: 20px;
    margin-top: 2rem;
    padding-top: 20px;
    padding-top: 2rem;
  }

  .p-serviceDetail__itemButton {
    margin-top: 40px;
    margin-top: 4rem;
    padding-right: 24px;
    padding-right: 2.4rem;
    text-align: right;
  }

  .p-serviceIntro__title {
    padding: 20px 28px 0 28px;
    padding: 2rem 2.8rem 0 2.8rem;
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-serviceIntro__title::after {
    width: 32px;
    width: 3.2rem;
  }

  .p-serviceIntro__description {
    margin-top: 24px;
    margin-top: 2.4rem;
  }

  .p-serviceIntro__items {
    gap: 24px;
    gap: 2.4rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    margin-top: 5.4rem;
  }

  .p-serviceIntro__item a:hover .p-serviceIntro__itemImage img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-testimonial__items {
    gap: 120px;
    gap: 12rem;
    margin-top: 80px;
    margin-top: 8rem;
  }

  .p-testimonial__item {
    gap: 40px;
    gap: 4rem;
    grid-template-columns: minmax(44rem, 4.8fr) 6.4fr;
  }

  .p-testimonial__itemImage {
    width: 100%;
  }

  .p-testimonial__itemImage img {
    aspect-ratio: 480/320;
  }

  .p-testimonial__itemMessage {
    gap: 6px;
    gap: 0.6rem;
    bottom: 24px;
    bottom: 2.4rem;
    left: 24px;
    left: 2.4rem;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }

  .p-testimonial__itemCompany {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-testimonial__itemTitle {
    margin-top: 8px;
    margin-top: 0.8rem;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }

  .p-testimonial__itemText {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
  }

  .p-workStyle__items {
    gap: 200px;
    gap: 20rem;
    margin-top: 80px;
    margin-top: 8rem;
  }

  .p-workStyle__item {
    gap: 80px;
    gap: 8rem;
    display: grid;
    grid-template-columns: 6.4fr 5.6fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-workStyle__itemContent {
    padding-top: 32px;
    padding-top: 3.2rem;
  }

  .p-workStyle__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .p-footer__content {
    margin-inline: 0;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 40px 0 120px;
    padding: 4rem 0 12rem;
    max-width: 100%;
  }

  .p-footer__logo {
    margin-inline: 0;
    width: 280px;
    width: 28rem;
  }

  .p-footer__main {
    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: 16px;
    margin-top: 1.6rem;
  }

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

  .p-footer__companyName {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .p-footer__companyInfo {
    margin-top: 16px;
    margin-top: 1.6rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
  }

  .p-footer__socialList {
    gap: 24px;
    gap: 2.4rem;
    margin-top: 40px;
    margin-top: 4rem;
  }

  .p-footer__socialLink:hover {
    opacity: 0.7;
  }

  .p-footer__nav {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
  }

  .p-footer__navList {
    display: block;
    -webkit-column-fill: balance;
    -moz-column-fill: balance;
    column-fill: balance;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 60%;
    -moz-column-width: 60%;
    column-width: 60%;
    width: 100%;
    min-width: 440px;
  }

  .p-footer__navItem {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.048em;
    line-height: 2;
  }

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

  .p-footer__navLink {
    padding: 12px 8px;
    padding: 1.2rem 0.8rem;
    font-weight: 700;
  }

  .p-footer__navLink span {
    display: inline;
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
    background-image: -webkit-gradient(linear, left top, right top, from(#111), to(#111));
    background-image: linear-gradient(90deg, #111, #111);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 5px;
    padding-bottom: 0.5rem;
  }

  .p-footer__navLink:hover span {
    background-size: 100% 1px;
  }

  .p-footer__submenuLink {
    display: block;
    padding-bottom: 8px;
    padding-bottom: 0.8rem;
    text-align: left;
  }

  .p-footer__submenuLink span {
    display: inline;
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
    background-image: -webkit-gradient(linear, left top, right top, from(#111), to(#111));
    background-image: linear-gradient(90deg, #111, #111);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 5px;
    padding-bottom: 0.5rem;
  }

  .p-footer__submenuLink:hover span {
    background-size: 100% 1px;
  }

  .p-footer__submenuLink::before {
    aspect-ratio: 1/1;
    display: inline-block;
    width: 1em;
    content: "・";
  }

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

  .p-footer__map iframe {
    aspect-ratio: 480/324;
  }

  .p-footer__bottom {
    padding: 8px 0;
    padding: 0.8rem 0;
  }

  .p-footer__copyright {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .p-ourDay__item {
    grid-template-columns: 2fr 2.7fr 6.4fr;
  }

  .p-ourDay__item--noImage .p-ourDay__itemContent {
    grid-area: 1/2/2/3;
  }

  .p-ourDay__item--noImage .p-ourDay__itemContent .p-ourDay__itemText {
    width: 100%;
  }

  .p-ourDay__itemClock {
    grid-area: auto;
  }

  .p-ourDay__itemContent {
    grid-area: auto;
  }

  .p-ourDay__itemImage {
    grid-area: auto;
  }

  .u-onlyPc {
    display: block;
  }

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

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .u-onlyMdp {
    display: block;
  }
}

@media (min-width: 1060px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .p-company__itemContent {
    -webkit-transform: translate(-50%, -1lh);
    transform: translate(-50%, -1lh);
  }

  .p-features__itemInner {
    width: 43.828125%;
  }

  .p-flow__items {
    gap: 40px;
    gap: 4rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 160px;
    margin-top: 16rem;
    max-width: 100%;
  }

  .p-flow__item:not(:last-child)::after {
    aspect-ratio: 1;
    top: 80px;
    top: 8rem;
    left: calc(100% + 0.2rem);
    -webkit-transform: rotate(45deg) skew(5deg, 5deg);
    transform: rotate(45deg) skew(5deg, 5deg);
  }

  .p-header__logo {
    width: 240px;
    width: 24rem;
  }

  .p-header__navList {
    gap: 64px;
    gap: 6.4rem;
  }

  .p-serviceIntro__items {
    gap: 80px;
    gap: 8rem;
  }

  .p-serviceIntro__item::after {
    height: 32px;
    height: 3.2rem;
  }

  .p-serviceIntro__itemTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1400px) {
  .p-about__titleSub {
    font-size: 80px;
    font-size: 8rem;
  }

  .p-flow__items {
    gap: 80px;
    gap: 8rem;
  }

  .p-flow__item:not(:last-child)::after {
    left: calc(100% + 0.8rem);
    width: 44px;
    width: 4.4rem;
  }

  .p-fv__title {
    bottom: 17.6211453744%;
    left: 8.3333333333%;
    font-size: 90px;
    font-size: 9rem;
    line-height: 1.0555555556;
  }

  .p-header__inner {
    padding-right: 115px;
    padding-right: 11.5rem;
    padding-left: 80px;
    padding-left: 8rem;
  }

  .p-recruitIntro__text::before,
  .p-recruitIntro__text::after {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }

  .p-recruitIntro__text::before {
    top: auto;
    bottom: 0;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  .p-recruitIntro__text::after {
    top: 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  .p-testimonial__item {
    gap: 80px;
    gap: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .u-onlySp {
    display: block;
  }

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

@media (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}
