@charset "UTF-8";



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

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

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

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

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

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

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

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

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

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

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

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

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

cite {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 1;
  }

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

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #1C1C1C;
}

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

body.is-modal-open {
  overflow: hidden;
}

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

footer {
  margin-top: auto;
}

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

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

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

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

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

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

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

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

summary {

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

summary::-webkit-details-marker {

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

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

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

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

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

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

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

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

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

:root {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-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: #283c86;
}

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

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

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

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

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

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

#toc_container .toc_list li {
  color: #1C1C1C;
}

#toc_container .toc_list li::before {
  display: none;
  color: #283c86;
}

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

#toc_container .toc_list a {
  color: #1C1C1C;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  padding: 14px 0 10px;
  padding: .875rem 0 .625rem;
  width: 100%;
}

.l-header.is-fixed {
  padding: 10px 0;
  padding: .625rem 0;
}

.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-inner--s {
  margin: 0 auto;
  padding: 0 35px;
  padding: 0 2.1875rem;
  width: 100%;
}

.l-inner--interview {
  padding-inline: 40px;
  padding-inline: 2.5rem;
}

.l-inner--lower {
  margin: 0 auto;
  margin-top: -60px;
  margin-top: -3.75rem;
  padding: 0 20px;
  width: 100%;
}

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

.l-section {
  margin-top: 75px;
  margin-top: 4.6875rem;
}

.l-section:not(:first-of-type) {
  margin-top: 135px;
  margin-top: 8.4375rem;
}

.l-section--contact {
  margin-top: 110px;
  margin-top: 6.875rem;
}

.l-section--contact:not(:first-of-type) {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.l-section--contact-thanks {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

.c-animated-message {
  position: absolute;
  top: 138.6666666667vw;
  left: 20px;
  left: 1.25rem;
  z-index: 10;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 90.6666666667vw;
}

.c-animated-message__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 35vh;
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 200;
  line-height: 1;
}

.c-animated-message2 {
  position: absolute;
  top: 340px;
  left: calc(50% - 34.375rem);
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  font-weight: 200;
  line-height: 1;
}

.c-banner:first-child {
  width: 100%;
  max-width: 201px;
  max-width: 12.5625rem;
}

.c-banner:first-child img {
  aspect-ratio: 201/62;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-banner:last-child {
  width: 100%;
  max-width: 234px;
  max-width: 14.625rem;
}

.c-banner:last-child img {
  aspect-ratio: 234/60;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  gap: 5px;
  gap: .3125rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  border: 1px solid #283c86;
  border-radius: 2.5rem;
  background-image: none;
  padding: 1em 40px;
  padding: 1em 2.5rem;
  width: 300px;
  width: 18.75rem;
  height: 80px;
  height: 5rem;
  overflow: hidden;
  color: #283c86;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  background: #283c86;
  width: 100%;
  height: 100%;
  content: '';
}

.c-btn__text {
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  color: #283c86;
  text-align: left;
}

.c-btn__icon {
  display: inline-block;
  z-index: 1;
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  width: 13px;
  width: .8125rem;
  height: 15px;
  height: .9375rem;
}

.c-btn__icon--l {
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
}

/* ホバーで矢印白に */
.c-btn:has(input[type=button]:disabled) {
  pointer-events: none;
}

.c-btn:has(input[type=button]:disabled) ::before {
  background-color: transparent;
}

.c-btn--contact {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2.1875rem;
  padding: 0;
  max-width: 220px;
  max-width: 13.75rem;
  height: 70px;
  height: 4.375rem;
}

.c-btn--drawer-contact {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-btn--pdf {
  border-radius: 1.25rem;
  padding: 0 15px 0 20px;
  padding: 0 .9375rem 0 1.25rem;
  width: 100%;
  max-width: 90px;
  max-width: 5.625rem;
  height: 40px;
  height: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 300;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn--cta {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.c-btn--cta::before {
  background: #fff;
}

.c-btn--cta .c-btn__text {
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  color: #fff;
}

.c-btn--cta .c-btn__icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.c-btn__icon--link {
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
}

.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, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .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: #283c86;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .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: .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: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(28.275862069, 42.4137931034, 94.724137931);
  background-color: #283c86;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

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

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #283c86;
  color: #fff;
}

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

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

.c-lower-head {
  margin-top: 170px;
  margin-top: 10.625rem;
  line-height: 1;
}

.c-lower-head__sub-title {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 200;
  text-transform: capitalize;
}

.c-lower-head__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.c-lower-head__title::before {
  display: inline-block;
  margin-right: 10px;
  margin-right: .625rem;
  background-color: #1C1C1C;
  width: 36px;
  width: 2.25rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.c-lower-lead {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

.c-lower-lead--s {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.c-lower-nav {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 105px;
  margin-top: 6.5625rem;
}

.c-lower-nav__item a {
  gap: 11px;
  gap: .6875rem;
  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;
  color: #283c86;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.c-lower-nav__item a::after {
  display: inline-block;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  margin-left: 8px;
  margin-left: .5rem;
  background: url('../../assets/img/common/icon_arrow-bottom@2x.png') no-repeat center top/contain;
  width: 15px;
  width: .9375rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.c-lower-title {
  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;
}

.c-lower-title__sub-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 200;
  text-transform: capitalize;
}

.c-lower-title__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2px;
  margin-top: .125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.c-lower-title__title--contact {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .05em;
}

.c-lower-title__title::before {
  display: inline-block;
  margin-right: 8px;
  margin-right: .5rem;
  background-color: #1C1C1C;
  width: 36px;
  width: 2.25rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.c-lower-title__title--contact::before {
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 32px;
  width: 2rem;
}

.c-section-title {
  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;
}

.c-section-title__ja {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.c-section-title__en {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  text-transform: capitalize;
}

.c-section-title__en::after {
  margin-inline: 15px;
  margin-inline: .9375rem;
  display: inline-block;
  margin-bottom: 7px;
  margin-bottom: .4375rem;
  background-color: currentColor;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  content: '';
}

.c-section-title--white {
  color: #fff;
}

.c-section-title--blue {
  color: #283c86;
}

.c-service-test {
  background-color: #283c86;
  padding: 50px;
  padding: 3.125rem;
}

.c-service-card {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 0 1.25rem #f2f2ef;
  box-shadow: 0 0 1.25rem #f2f2ef;
  border-radius: .9375rem;
  background-color: #fff;
  padding: 20px 15px;
  padding: 1.25rem .9375rem;
  width: 174px;
  width: 10.875rem;
  text-align: center;
}

.c-service-card:nth-child(odd) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.c-service-card__icon {
  aspect-ratio: 1/1;
  width: 90px;
  width: 5.625rem;
}

.c-service-card__label {
  border-radius: .625rem;
  background-color: #f2f2ef;
  padding: 4px 8px;
  padding: .25rem .5rem;
  min-width: 136px;
  min-width: 8.5rem;
  color: #606060;
  font-size: 12px;
  font-size: .75rem;
}

.c-service-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.c-staff-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: -1;
}

.p-interview .c-staff-card {
  z-index: 1;
  padding-right: 50px;
  padding-right: 3.125rem;
  width: 50%;
}

.c-staff-card__job {
  color: #1d976c;
  font-size: 14px;
  font-size: .875rem;
}

.p-interview .c-staff-card__job {
  font-size: 16px;
  font-size: 1rem;
}

.c-staff-card__info {
  aspect-ratio: 1/1;
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  width: 180px;
  width: 11.25rem;
}

.p-interview .c-staff-card__info {
  gap: 0;
  margin-top: 50px;
  margin-top: 3.125rem;
  background-color: transparent;
  font-size: 16px;
  font-size: 1rem;
}

.c-staff-card__info--interview {
  aspect-ratio: 1/.5;
}

.c-staff-card__info::before {
  position: absolute;
  top: -10px;
  top: -.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #1d976c;
  width: 1px;
  width: .0625rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-interview .c-staff-card__info::before {
  top: -40px;
  top: -2.5rem;
  height: 36px;
  height: 2.25rem;
  font-size: 24px;
  font-size: 1.5rem;
}

.c-staff-card__name {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-interview .c-staff-card__name {
  font-size: 24px;
  font-size: 1.5rem;
}

.c-staff-card__name-en {
  color: #1d976c;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 200;
}

.p-interview .c-staff-card__name-en {
  font-size: 16px;
  font-size: 1rem;
}

.c-staff-card__years {
  font-size: 14px;
  font-size: .875rem;
}

.p-interview .c-staff-card__years {
  margin-top: 15px;
  margin-top: .9375rem;
}

.c-staff-card__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
  margin-top: .9375rem;
  border: 1px solid #283c86;
  border-radius: 1.25rem;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  width: 140px;
  width: 8.75rem;
  height: 40px;
  height: 2.5rem;
  color: #283c86;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  text-transform: capitalize;
}

.c-staff-card__btn::after {
  color: currentColor;
  font-size: 16px;
  font-size: 1rem;
  content: '+';
}

.c-staff-sub-slider {
  margin-inline: calc(50% - 50cqi);
  position: relative;
  z-index: 2;
  margin-top: -10px;
  margin-top: -.625rem;
  width: 100vw;
}

.c-staff-sub-slider::after {
  position: absolute;
  bottom: -10.6666666667vw;
  left: 0;
  z-index: 1;
  background: url('../../assets/img/bg_staff_sp02.png') no-repeat center top/cover;
  width: 100%;
  height: 21.3333333333vw;
  content: '';
}

.c-staff-sub-slider__inner {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 70% 90%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 70% 90%, 0 100%, 0 0);
  overflow: hidden;
}

.c-staff-sub-slider__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-staff-sub-slider__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 20vw;
}

@-webkit-keyframes scroll-left {

  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); /* 要調整 */
  }
}

@keyframes scroll-left {

  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); /* 要調整 */
  }
}

.c-staff-sub-slider__slide:last-child {
  margin-right: 0;
}

.c-stats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: -1;
}

.p-interview .c-stats {
  z-index: 1;
  padding-right: 50px;
  padding-right: 3.125rem;
  width: 50%;
}

.c-stats__head {
  color: #1d976c;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-stats__info-wrap {
  aspect-ratio: 1/1;
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  padding: 30px;
  padding: 1.875rem;
  width: 170px;
  width: 10.625rem;
  height: 170px;
  height: 10.625rem;
}

.c-stats__info-wrap::before {
  position: absolute;
  top: -10px;
  top: -.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #1d976c;
  width: 1px;
  width: .0625rem;
  height: 36px;
  height: 2.25rem;
  content: '';
}

.c-stats__info {
  color: #1d976c;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.c-stats__info--flex {
  gap: 5px;
  gap: .3125rem;
  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;
  line-height: 1;
}

.c-stats__info--mt {
  margin-top: 10px;
  margin-top: .625rem;
}

.c-stats__info-larger {
  font-family: 'Outfit', sans-serif;
  font-size: 62px;
  font-size: 3.875rem;
  font-weight: 300;
}

.c-stats__info-mb {
  margin-bottom: 10px;
  margin-bottom: .625rem;
}

.c-stats__info-small {
  display: block;
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.5384615385;
}

.c-totop {
  display: grid;
  position: fixed;
  right: 16px;
  right: 1rem;
  bottom: 20px;
  bottom: 1.25rem;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  border-radius: 50%;
  background-color: #f2f2ef;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

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

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

.c-totop__icon {
  width: 100%;
  max-width: 15px;
  max-width: .9375rem;
  height: 100%;
}

.c-totop img {
  aspect-ratio: 23/21;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-404__btn {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  text-align: center;
}

.error404 .c-lower-head__title {
  line-height: 1.5;
}

.p-about__message-header {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

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

.p-about__message-image {
  margin-inline: -20px;
  margin-inline: -1.25rem;
}

.p-about__message-content {
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 37px;
  margin-top: 2.3125rem;
  letter-spacing: .02em;
}

.p-about__message-text-wrap {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-about__message-text {
  margin-top: 27px;
  margin-top: 1.6875rem;
  line-height: 1.625;
}

.p-about__message-signature {
  margin-top: 35px;
  margin-top: 2.1875rem;
  text-align: right;
}

.p-about__message-signature span {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-about__info {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

.p-about__info-body {
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__info-body::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(.5);
  transform: scaleY(.5);
  background: -webkit-gradient(linear, left top, right top, from(#7ae381), color-stop(40%, #148f6e), color-stop(40%, #ddd), to(#ddd));
  background: linear-gradient(to right, #7ae381 0%, #148f6e 40%, #ddd 40%, #ddd 100%);
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-about__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-about__info-list {
  display: grid;
  grid-template-columns: 1fr;
}

.p-about__info-label {
  position: relative;
  padding: 20px 25px 0;
  padding: 1.25rem 1.5625rem 0;
  font-weight: 700;
}

.p-about__info-data {
  position: relative;
  padding: 0 25px 20px 40px;
  padding: 0 1.5625rem 1.25rem 2.5rem;
  line-height: 1.6;
}

.p-about__info-data::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleY(.5);
  transform: scaleY(.5);
  background: -webkit-gradient(linear, left top, right top, from(#7ae381), color-stop(40%, #148f6e), color-stop(40%, #ddd), to(#ddd));
  background: linear-gradient(to right, #7ae381 0%, #148f6e 40%, #ddd 40%, #ddd 100%);
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-about__info-map {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-top: .625rem;
  color: #283c86;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  text-decoration: underline;
}

.p-about__info-map::after {
  display: inline-block;
  margin-left: 8px;
  margin-left: .5rem;
  background: url('../../assets/img/common/icon_link-blue@2x.png') no-repeat center center/contain;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-about__results {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

.p-about #results {
  scroll-margin-top: 5rem;
}

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

.p-about__results-content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-about__results-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.625;
}

.p-about__results-stats {
  margin-inline: -35px;
  margin-inline: -2.1875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__results-stats-wrap {
  gap: 2.6666666667vw;
  margin-inline: auto;
  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;
  width: 100%;
  max-width: 350px;
  max-width: 21.875rem;
}

.p-about__results-right {
  margin-inline: -15px;
  margin-inline: -.9375rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-about__results-image {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

.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: 1.875rem;
  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: 2rem;
}

.p-article__body h2 {
  background-color: #1C1C1C;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #1C1C1C;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

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

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

.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: #1C1C1C;
  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 #1C1C1C;
  border-bottom: 1px solid #1C1C1C;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #1C1C1C;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  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: .625rem;
}

.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: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  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: #283c86;
  font-weight: 700;
}

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #1C1C1C;
  font-size: 14px;
  font-size: .875rem;
  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: #F8F8F8;
  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: #8d8d8d;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

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

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .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: 1.25rem .625rem;
}

.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: .875rem;
  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: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #283c86;
  width: 2em;
  height: 2em;
  color: #283c86;
  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: #283c86;
  color: #fff;
}

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

.p-compliance__body {
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 105px;
  margin-top: 6.5625rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-compliance__text {
  line-height: 1.625;
}

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

.p-compliance__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  border-bottom: .0625rem solid #ddd;
  padding: 28px 20px;
  padding: 1.75rem 1.25rem;
  line-height: 1.6;
}

.p-compliance__item:first-child {
  border-top: 1px solid #ddd;
  border-top: .0625rem solid #ddd;
}

.p-compliance__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-compliance__link::after {
  margin-left: 5px;
  margin-left: .3125rem;
  background: url('../../assets/img/common/icon_link-blue.svg') no-repeat center top/contain;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

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

.p-contact__content {
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact__info-tel {
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #e6e6e0;
  padding: 20px 20px 25px;
  padding: 1.25rem 1.25rem 1.5625rem;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
}

.p-contact__info-tel-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 300;
}

.p-contact__info-tel-label {
  font-size: 16px;
  font-size: 1rem;
}

.p-contact__info-tel-time {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 13px;
  font-size: .8125rem;
  letter-spacing: initial;
}

.p-contact__form-lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.75;
}

.p-contact__form-notice {
  margin-top: 10px;
  margin-top: .625rem;
  color: #8d8d8d;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.6153846154;
}

.p-contact__form-link-wrap {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 110px;
  margin-top: 6.875rem;
}

.p-contact__form-link {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #283c86;
  font-weight: 500;
}

.p-contact__form-link span {
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-contact__thanks-body {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

.p-contact__thanks-sub-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
}

.p-contact__thanks-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  line-height: 1.625;
}

.p-contact__thanks-btn {
  margin-top: 75px;
  margin-top: 4.6875rem;
  text-align: center;
}

.p-cta {
  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-cta__item-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}

.p-cta__item {
  padding-block: 55px 50px;
  padding-block: 3.4375rem 3.125rem;
  width: 100%;
  color: #fff;
}

.p-cta__item--recruit {
  background: url('../../assets/img/bg_top-recruit_sp.jpg') no-repeat center center/cover;
}

.p-cta__item--contact {
  background: url('../../assets/img/bg_top-contact_sp.jpg') no-repeat center center/cover;
}

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

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

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  background: #1C1C1C;
  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(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.p-drawer__item {
  border-bottom: 1px solid #ddd;
  padding: 25px 10px;
  padding: 1.5625rem .625rem;
}

.p-drawer__item:first-child {
  border-top: 1px solid #ddd;
}

.p-drawer__item--has-child .p-drawer__link::after {
  display: none;
}

.p-drawer__item a {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-drawer__link {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-drawer__link::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url('../../assets/img/common/icon_arrow-right--hover.png') no-repeat center center/contain;
  width: 13px;
  width: .8125rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.p-drawer__link--recruit::after {
  background: url('../../assets/img/common/icon_link-blue@2x.png') no-repeat center center/contain;
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
}

.p-drawer__sub-menu {
  gap: 15px 30px;
  gap: .9375rem 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
}

.p-drawer__sub-menu 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-drawer__sub-menu a::before {
  display: block;
  margin-right: 10px;
  margin-right: .625rem;
  background: url('../../assets/img/common/icon_arrow-right_s@2x.png') no-repeat center center/contain;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-drawer__btns {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-drawer__banners {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-drawer__banner {
  width: 100%;
}

.p-footer {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  text-align: center;
}

.p-footer__inner {
  margin: auto;
  padding: 0 15px;
  padding: 0 .9375rem;
  width: 100%;
  max-width: 630px;
  max-width: 39.375rem;
}

.p-footer__wrap {
  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__left {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__address,
.p-footer__tel {
  color: #606060;
  font-size: 14px;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7142857143;
}

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

.p-footer__translate-text-wrap {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-footer__translate-text {
  font-size: 14px;
  font-size: .875rem;
}

.p-footer__translate-langs {
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  color: #8d8d8d;
  font-size: 13px;
  font-size: .8125rem;
}

.p-footer__logo {
  margin-inline: auto;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}

.p-footer__logo img,
.p-footer__logo svg {
  aspect-ratio: 321/70;
  width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__right {
  display: none;
}

.p-footer__menu {
  gap: 55px;
  gap: 3.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
}

.p-footer__menu-column {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__menu-block {
  font-size: 14px;
  font-size: .875rem;
}

.p-footer__menu-title {
  margin-bottom: 10px;
  margin-bottom: .625rem;
  font-weight: 500;
}

.p-footer__menu-title--link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer__menu-title a {
  color: #1C1C1C;
  text-decoration: none;
}

.p-footer__menu-title--link img:first-child {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__menu-title--link img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__menu-items {
  margin: 0;
  margin-top: 15px;
  margin-top: .9375rem;
  padding: 0;
  list-style: none;
}

.p-footer__menu-item {
  margin-bottom: 6px;
  margin-bottom: .375rem;
}

.p-footer__menu-item 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;
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #8d8d8d;
  line-height: 1.6;
  text-decoration: none;
}

.p-footer__icon-link {
  position: relative;
  margin-left: 5px;
  margin-left: .3125rem;
  width: 15px;
  width: .9375rem;
  height: 15px;
  height: .9375rem;
}

.p-footer__icon-link img:first-child {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__icon-link img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__copyright {
  display: block;
  margin-top: 140px;
  margin-top: 8.75rem;
  color: #8d8d8d;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1;
}

.p-form input:not([type=submit]),
.p-form textarea {
  border: none;
  padding: 17px 20px 19px;
  padding: 1.0625rem 1.25rem 1.1875rem;
}

.p-form__input::-webkit-input-placeholder,
.p-form__textarea::-webkit-input-placeholder {
  opacity: 1; /* 一部ブラウザで薄すぎるのを防ぐため */
  color: #bbb;
}

.p-form__input::-moz-placeholder,
.p-form__textarea::-moz-placeholder {
  opacity: 1; /* 一部ブラウザで薄すぎるのを防ぐため */
  color: #bbb;
}

.p-form__input::-ms-input-placeholder,
.p-form__textarea::-ms-input-placeholder {
  opacity: 1; /* 一部ブラウザで薄すぎるのを防ぐため */
  color: #bbb;
}

.p-form__input::placeholder,
.p-form__textarea::placeholder {
  opacity: 1; /* 一部ブラウザで薄すぎるのを防ぐため */
  color: #bbb;
}

.p-form__item--two-column {
  display: grid;
  grid-template-columns: 1fr;
}

.p-form__confirm-area {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-form__confirm-area .p-form__item {
  gap: 5px;
  gap: .3125rem;
  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-form__confirm-area .p-form__item + .p-form__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-form__item-head {
  font-weight: 500;
}

.p-form__label {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-bottom: 10px;
  margin-bottom: .625rem;
}

.p-form__confirm-area .p-form__label {
  margin-top: 0;
  margin-bottom: 0;
  width: 140px;
  width: 8.75rem;
}

.p-form__item:first-of-type .p-form__label {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-form__confirm-area .p-form__item:first-child .p-form__label {
  margin-top: 0;
}

.p-form__label.is-required::after {
  background-color: #1d976c;
  padding: 2px 5px;
  padding: .125rem .3125rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  content: '必須';
}

.p-form__item-body {
  position: relative;
}

.p-form__confirm-area .p-form__item-body {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-form__postal-wrap {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-form__postal {
  gap: 10px;
  gap: .625rem;
  position: relative;
  width: 100%;
  max-width: 180px;
  max-width: 11.25rem;
}

.p-form .p-form__postal input {
  padding-left: 40px;
  padding-left: 2.5rem;
}

.p-form__zip {
  position: absolute;
  top: 50%;
  left: 15px;
  left: .9375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  font-size: 16px;
  font-size: 1rem;
}

.p-form__note {
  position: absolute;
  right: 0;
  bottom: -20px;
  bottom: -1.25rem;
  pointer-events: none;
  color: #bbb;
  font-size: 13px;
  font-size: .8125rem;
}

.p-form__zip-btn {
  border: 1px solid rgba(28, 28, 28, .2);
  border-radius: 1.75rem;
  padding: 15px 20px 16px;
  padding: .9375rem 1.25rem 1rem;
  width: 110px;
  width: 6.875rem;
}

.p-form select {
  border-radius: .3125rem;
  background-color: transparent;
  padding: 16px 20px 18px;
  padding: 1rem 1.25rem 1.125rem;
  width: 100%;
}

/* 矢印を表示 */
.p-form__select-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.p-form__select-wrapper::after {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 14px solid #1C1C1C;
  border-top: .875rem solid #1C1C1C;
  border-right: 8px solid transparent;
  border-right: .5rem solid transparent;
  border-left: 8px solid transparent;
  border-left: .5rem solid transparent;
  pointer-events: none;
  content: '';
}

.p-form__privacy {
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: center;
}

.p-form__checkbox-text a {
  color: #283c86;
  text-decoration: underline;
}

.p-form__checkbox-label {
  gap: .5em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox-label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  opacity: 1;
  border-radius: .1875rem;
  background-color: #fff;
  padding: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-form__checkbox-label input[type=checkbox]::before {
  display: block;
  position: absolute;
  top: 3px;
  top: .1875rem;
  left: 7px;
  left: .4375rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  border: solid #1C1C1C;
  border-width: 0 2px 2px 0;
  width: 8px;
  width: .5rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.p-form__checkbox-label input[type=checkbox]:checked::before {
  opacity: 1;
}

.p-form__btns {
  gap: 40px;
  gap: 2.5rem;
  margin-inline: auto;
  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: 70px;
  margin-top: 4.375rem;
}

.p-form__btn {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-form button[type=submit]:disabled,
.p-form input[type=submit]:disabled,
.p-form input[type=button]:disabled {
  border-color: transparent;
  background-color: transparent;
  color: #283c86;
}

.p-form button[type=submit],
.p-form input[type=submit],
.p-form input[type=button] {
  border-color: transparent;
  background-color: transparent;
  padding: 0;
  width: 100%;
  height: inherit;
  color: #283c86;
  text-align: left;
}

.p-form .c-btn:hover button[type=submit],
.p-form .c-btn:hover input[type=submit],
.p-form .c-btn:hover input[type=button] {
  position: relative;
  z-index: 1;
  color: #fff;
}

.p-form .c-btn::after {
  display: inline-block;
  margin-left: 10px;
  margin-left: .625rem;
  background-image: url('../../assets/img/common/icon_arrow-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  width: .8125rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.p-form .c-btn:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.p-form__submit--back {
  gap: 15px;
  gap: .9375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #283c86;
}

.p-form__submit--back::before {
  background-image: url('../../assets/img/common/icon_arrow-left.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  width: .8125rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.p-form .wpcf7 form .wpcf7-response-output {
  display: none; /* 初期状態では非表示 */
}

/************************************************************************
* p-fv
************************************************************************/
.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;
}

.p-header__logo {
  z-index: 41;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  max-width: 170px;
  max-width: 10.625rem;
}

.p-header__logo img,
.p-header__logo svg {
  aspect-ratio: 321/70;
  width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__item--has-child.is-open .p-header__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-header__item--recruit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__item--recruit::after {
  margin-top: 2px;
  margin-top: .125rem;
  margin-left: 5px;
  margin-left: .3125rem;
  background: url('../../assets/img/common/icon_link-black@2x.png') no-repeat center top/contain;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

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

.p-header__dropdown li > a {
  font-weight: 400 !important;
}

.p-header__right {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.p-header__translate {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #283c86;
  border-radius: 50%;
  background-color: #283c86;
  width: 34px;
  width: 2.125rem;
}

.p-header__translate-btn {
  display: grid;
  place-items: center;
  padding: 5px;
  padding: .3125rem;
}

.p-header__translate-btn img {
  aspect-ratio: 40/20;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__contact {
  display: none;
}

.p-interview__profile {
  margin-inline: calc(50% - 50cqi);
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-interview__header {
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 80% 83%, 55% 87%, 28% 89%, 0 84%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 80% 83%, 55% 87%, 28% 89%, 0 84%);
}

.p-interview__profile-image {
  margin-inline: -30px;
  margin-inline: -1.875rem;
  position: relative;
  width: 100%;
  max-width: 326px;
  max-width: 20.375rem;
}

.p-interview__profile-image img {
  aspect-ratio: 200/280;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}

.p-interview__body {
  position: relative;
  padding-top: 15px;
  padding-top: .9375rem;
}

.p-interview__body::before {
  position: absolute;
  top: -24vw;
  left: 0;
  z-index: 1;
  background: url('../../assets/img/bg_interview.png') no-repeat center center/contain;
  width: 100%;
  height: 21.3333333333vw;
  content: '';
}

.p-interview__number {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
}

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

.p-interview__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.p-interview__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.625;
}

.p-interview__image {
  margin-block: 40px;
  margin-block: 2.5rem;
  margin-inline: -40px;
  margin-inline: -2.5rem;
}

.p-interview__image + .p-interview__block {
  margin-top: 0;
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  padding-top: 10px;
  padding-top: .625rem;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.p-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.p-modal .modal__overlay {
  inset: 0;
  position: fixed;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 151, 108, .7)), to(rgba(167, 246, 112, .7)));
  background: linear-gradient(to bottom, rgba(29, 151, 108, .7), rgba(167, 246, 112, .7));
  pointer-events: auto;
}

.p-modal.is-open .modal__overlay {
  opacity: 1;
}

.p-modal .swiper {
  translate: 0 -40px;
}

.p-modal .modal__container {
  position: relative;
  z-index: 2;
  margin: 5vh auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70vw, #fff), color-stop(70vw, #f2f2ef), to(#f2f2ef));
  background: linear-gradient(to bottom, #fff 70vw, #f2f2ef 70vw, #f2f2ef 100%);
  background-color: #fff;
  width: 90%;
}

.p-modal .modal__close {
  position: absolute;
  top: 5px;
  top: .3125rem;
  right: 15px;
  right: .9375rem;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 200;
}

.p-modal .modal__close:focus {
  outline: none;
}

.p-modal .modal__close:hover {
  color: #283c86;
}

.p-modal__interview-nav {
  padding-inline: 10px;
  padding-inline: .625rem;
  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-modal__interview-nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  background-color: #f2f2ef;
  width: 50%;
}

.p-modal__interview-nav-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-modal .swiper-button-prev,
.p-modal .swiper-button-next {
  display: none;
}

.p-modal__interview-nav-item--prev {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-modal__interview-nav-item--prev::after {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 1px;
  width: .0625rem;
  height: 60px;
  height: 3.75rem;
  content: '';
}

.p-modal__interview-nav-item--next {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-modal__interview-nav-item--next .p-modal__interview-nav-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-modal__interview-nav-item--prev .p-modal__interview-nav-inner::before,
.p-modal__interview-nav-item--next .p-modal__interview-nav-inner::before {
  display: block;
  margin-top: 15px;
  margin-top: .9375rem;
  width: 13px;
  width: .8125rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.p-modal__interview-nav-item--prev .p-modal__interview-nav-inner::before {
  margin-right: 10px;
  margin-right: .625rem;
  background-image: url('../../assets/img/common/icon_arrow-left.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.p-modal__interview-nav-item--prev:hover .p-modal__interview-nav-inner::before {
  background-image: url('../../assets/img/common/icon_arrow-left--hover.png');
}

.p-modal__interview-nav-item--next .p-modal__interview-nav-inner::before {
  margin-left: 10px;
  margin-left: .625rem;
  background-image: url('../../assets/img/common/icon_arrow-right.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.p-modal__interview-nav-item--next:hover .p-modal__interview-nav-inner::before {
  background-image: url('../../assets/img/common/icon_arrow-right--hover.png');
}

.p-modal__interview-nav-image {
  width: 80px;
  width: 5rem;
}

.p-modal__interview-nav-image img {
  aspect-ratio: 1/1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-modal__interview-nav-number {
  color: #1C1C1C;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 200;
}

.p-modal__interview-nav-job {
  margin-top: 7px;
  margin-top: .4375rem;
  background-color: #f2f2ef;
  color: #1d976c;
  font-size: 14px;
  font-size: .875rem;
}

.p-modal__interview-nav-name {
  margin-top: 3px;
  margin-top: .1875rem;
  background-color: #f2f2ef;
  font-size: 13px;
  font-size: .8125rem;
}

.p-page,
.p-top,
.error404 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: #f2f2ef;
  width: 100%;
  content: '';
}

.p-page,
.error404 {
  background: #f2f2ef url('../../assets/img/common/bg_lower-head_sp.png') no-repeat center top/cover;
}

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

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

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

.page-numbers.current {
  background-color: #283c86;
  color: #fff;
}

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

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

.p-service__item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-service__item-sub-title {
  background: -webkit-gradient(linear, left bottom, left top, from(#75e08b), to(#138f75));
  background: linear-gradient(to top, #75e08b 0%, #138f75 100%);
  background-clip: text;
  color: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 200;
  text-transform: capitalize;
}

.p-service__item-title {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}

.p-service__item-description {
  margin-top: 15px;
  margin-top: .9375rem;
  line-height: 1.75;
}

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

.p-service__item-lists {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  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__list {
  gap: 20px;
  gap: 1.25rem;
  padding-block: 32px;
  padding-block: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-service__list + .p-service__list {
  border-top: 1px solid #ddd;
}

.p-service__list-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 110px;
  max-width: 6.875rem;
}

.p-service__list-icon img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.p-service__list-number {
  background: -webkit-gradient(linear, left bottom, left top, from(#75e08b), to(#138f75));
  background: linear-gradient(to top, #75e08b 0%, #138f75 100%);
  background-clip: text;
  color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  text-align: center;
  text-transform: capitalize;
}

.p-service__list-head {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.p-service__list-head span {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-service__list-detail {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.p-staff-card {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100vw - 40px);
}

.p-staff-card__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-staff-card__image-toggles {
  position: relative;
  width: 100%;
  height: auto;
}

.p-staff-card__image-default {
  aspect-ratio: 165/400;
  opacity: 1;
  z-index: 0;
  width: 100%;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__image-toggles {
  display: block;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__image-toggles img {
  aspect-ratio: 400/480;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__image-default {
  display: none;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__image-toggle-a {
  opacity: 1;
  z-index: 2;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__image-toggle-b {
  opacity: 0;
  z-index: 2;
}

/* ホバー時：アニメーション交互適用 */
.p-top__staff-slide.swiper-slide-active .p-staff-card:hover .p-staff-card__image-toggle-a {
  -webkit-animation: togglea 1s steps(2, jump-none) infinite;
  animation: toggleA 1s steps(2, jump-none) infinite;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card:hover .p-staff-card__image-toggle-b {
  -webkit-animation: toggleb 1s steps(2, jump-none) infinite;
  animation: toggleB 1s steps(2, jump-none) infinite;
}

/* 交互アニメーション定義 */
@-webkit-keyframes toggleA {

  0%, 49.9% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}
@keyframes toggleA {

  0%, 49.9% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes toggleB {

  0%, 49.9% {
    opacity: 0;
  }

  50%, 100% {
    opacity: 1;
  }
}
@keyframes toggleB {

  0%, 49.9% {
    opacity: 0;
  }

  50%, 100% {
    opacity: 1;
  }
}

.p-staff-card__body {
  margin-top: 10px;
  margin-top: .625rem;
  margin-left: -50px;
  margin-left: -3.125rem;
  text-align: center;
}

.p-top-service__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.p-top-service__label {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 200;
  text-transform: capitalize;
}

.p-top-service__title {
  aspect-ratio: 280/312;
  margin-block: 8px;
  margin-block: .5rem;
  display: grid;
  place-content: center;
  background: url('../../assets/img/bg_top-service-item.png') no-repeat center center/contain;
  width: 100%;
  max-width: 280px;
  max-width: 17.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-top-service__desc {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-top__mv {
  position: relative;
}

.p-top__mv::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background: url('../../assets/img/img_top-mv_sp@2x.png') no-repeat center top/cover;
  width: 100%;
  height: 304vw;
  content: '';
}

.p-top__mv-text-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 8.8vw;
  margin-left: 20px;
  margin-left: 1.25rem;
  background-color: #fff;
  padding-right: 25px;
  padding-right: 1.5625rem;
  height: 10.9333333333vw;
}

.p-top__mv-text-box::before {
  position: absolute;
  top: 0;
  left: -100vw;
  background-color: #fff;
  width: 100vw;
  height: 100%;
  content: '';
}

.p-top__mv-text {
  font-size: 4.2666666667vw;
  letter-spacing: .15em;
}

.p-top__about {
  margin-top: 186.6666666667vw;
}

.p-top__about-wrap {
  gap: 60px;
  gap: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-top__about-image {
  margin-inline: auto;
  width: 100%;
  max-width: 64.8vw;
}

.p-top__about-image img {
  aspect-ratio: 521/642;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-top__about-heading {
  margin-top: 45px;
  margin-top: 2.8125rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3928571429;
}

.p-top__about-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.75;
}

.p-top__about-btn-wrap {
  text-align: center;
}

.p-top__about-btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-top__service {
  position: relative;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 55px;
  padding-top: 3.4375rem;
}

.p-top__service::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url('../../assets/img/bg_top-service_sp.jpg') no-repeat center top/cover;
  width: 100%;
  height: 87%;
  content: '';
}

.p-top__service-inner {
  padding-inline: 40px;
  padding-inline: 2.5rem;
}

.p-top__service-list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-top-service__slider {
  padding-block: 20px;
  padding-block: 1.25rem;
  margin-top: 15px;
  margin-top: .9375rem;
  margin-bottom: -130px;
  margin-bottom: -8.125rem;
}

.p-top__service-btn {
  margin-top: 130px;
  margin-top: 8.125rem;
  text-align: center;
}

.p-top__staff {
  container-type: inline-size;
  position: relative;
  margin-top: 115px;
  margin-top: 7.1875rem;
  background-color: #fff;
}

.p-top__staff::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 78% 96%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 78% 96%, 0 100%, 0 0);
  background-color: #f2f2ef;
  width: 100%;
  height: 100%;
  content: '';
}

.p-top__staff::after {
  position: absolute;
  bottom: -180px;
  bottom: -11.25rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200px;
  height: 12.5rem;
  pointer-events: none;
  content: '';
}

.p-top__staff-inner {
  padding-inline: 40px;
  padding-inline: 2.5rem;
  position: relative;
}

.p-top__staff-swiper .swiper-wrapper {
  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;
}

.p-top__staff-swiper .swiper-slide {
  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;
  width: 100%;
}

.p-top__staff-slide {
  pointer-events: none;
}

.p-top__staff-slide.swiper-slide-active {
  pointer-events: auto;
}

.p-top__staff-slide .p-staff-card__body {
  display: none;
}

.p-top__staff-slide.swiper-slide-active .p-staff-card__body {
  display: block;
}

.p-top__staff-wrap {
  position: absolute;
  top: 50%;
  z-index: 10;
  pointer-events: none;
}

.p-top__staff-swiper-buttons {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top__staff-sp {
  margin-inline: calc(50% - 50cqi);
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-top__staff-sp::after {
  position: absolute;
  bottom: -5.3333333333vw;
  left: 0;
  z-index: 1;
  background: url('../../assets/img/bg_staff_sp01.png') no-repeat center top/cover;
  width: 100%;
  height: 16vw;
  content: '';
}

.p-top__staff-sp .swiper {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  -webkit-clip-path: polygon(100% 0, 100% 95%, 55% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 95%, 55% 100%, 0 100%, 0 0);
}

.p-top__staff-sp-prev-button,
.p-top__staff-sp-next-button,
.p-top__staff-prev-button,
.p-top__staff-next-button {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  pointer-events: auto;
}

.p-top__staff-sp-prev-button,
.p-top__staff-sp-next-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.p-top__staff-sp-next-button {
  right: 20px;
  right: 1.25rem;
}

/* 前へ次への矢印カスタマイズ */
.p-top__staff-sp-prev-button::after,
.p-top__staff-sp-next-button::after,
.p-top__staff-prev-button::after,
.p-top__staff-next-button::after {
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

.p-top__staff-sp-prev-button::after,
.p-top__staff-prev-button::after {
  background-image: url(../../assets/img/icon_staff-arrow-left.png);
}

.p-top__staff-sp-next-button::after,
.p-top__staff-next-button::after {
  background-image: url(../../assets/img/icon_staff-arrow-right.png);
}

.p-top__staff-sp .p-staff-card__image img {
  aspect-ratio: 200/300;
  width: 53.3333333333vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}

.p-top__record {
  background-color: #fff;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-top__record-wrap {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-top__record-content {
  width: 100%;
}

.p-top__record-text {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.p-top__record-btn {
  display: none;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top__record-image {
  margin-inline: auto;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}

.p-top__record-image img {
  aspect-ratio: 430/495;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

html.translated-ltr .p-header__translate {
  display: none;
}

html.translated-ltr .p-drawer__translate {
  display: none;
}

html.translated-ltr .p-footer__translate {
  display: none;
}

html.translated-ltr .c-animated-message__inner {
  top: 35vh;
}

html.translated-ltr .p-top__mv-text-box {
  padding-block: 10px;
  padding-block: .625rem;
}

html.translated-ltr .p-top__about-heading br {
  display: none !important;
}

html.translated-ltr .p-top-service__title {
  display: inline;
  line-height: 1.5;
}

html.translated-ltr .c-staff-card__job {
  font-size: 10px;
  font-size: .625rem;
}

html.translated-ltr .c-staff-card__name {
  font-size: 16px;
  font-size: 1rem;
}

html.translated-ltr .c-staff-card__name-en {
  font-size: 12px;
  font-size: .75rem;
}

html.translated-ltr .c-staff-card__years {
  font-size: 10px;
  font-size: .625rem;
}

html.translated-ltr .c-stats__info {
  font-size: 14px;
  font-size: .875rem;
}

html.translated-ltr .c-stats__info-larger {
  font-size: 38px;
  font-size: 2.375rem;
}

html.translated-ltr .c-stats__info-large {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

html.translated-ltr .c-stats__info-small {
  font-size: 10px;
  font-size: .625rem;
  line-height: 1.2;
}

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

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

.u-onlyTab {
  display: none;
}

.u-overTab {
  display: none;
}

.u-onlySp {
  display: none;
}

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

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

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

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

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

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

  .p-modal .modal__container {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(72vw, #fff), color-stop(72vw, #f2f2ef), to(#f2f2ef));
    background: linear-gradient(to bottom, #fff 72vw, #f2f2ef 72vw, #f2f2ef 100%);
  }
}

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

  .p-modal .modal__container {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75vw, #fff), color-stop(75vw, #f2f2ef), to(#f2f2ef));
    background: linear-gradient(to bottom, #fff 75vw, #f2f2ef 75vw, #f2f2ef 100%);
  }
}

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

  .p-modal .modal__container {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(21.875rem, #fff), color-stop(21.875rem, #f2f2ef), to(#f2f2ef));
    background: linear-gradient(to bottom, #fff 21.875rem, #f2f2ef 21.875rem, #f2f2ef 100%);
  }
}

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

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

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

  html {
    font-size: 1.4545454545vw;
  }

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

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

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

  .l-header {
    padding: 32px 0 18px;
    padding: 2rem 0 1.125rem;
  }

  .l-header.is-fixed .p-header__logo {
    -webkit-transform: scale(.8);
    transform: scale(.8);
  }

  .l-header.is-fixed .c-btn--contact {
    border-radius: 1.875rem;
    max-width: 200px;
    max-width: 12.5rem;
    height: 60px;
    height: 3.75rem;
  }

  .l-inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1160px;
  }

  .l-inner--s {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1160px;
  }

  .l-inner--interview {
    max-width: calc(44.6875rem + 60px);
  }

  .l-inner--lower {
    margin-top: -120px;
    margin-top: -7.5rem;
    padding-right: 30px;
    padding-left: 30px;
    max-width: calc(59.375rem + 60px);
  }

  .l-inner.l-inner--narrow {
    max-width: 940px;
  }

  .l-inner.l-inner--wide {
    max-width: 1380px;
  }

  .l-section {
    margin-top: 175px;
    margin-top: 10.9375rem;
  }

  .l-section:not(:first-of-type) {
    margin-top: 220px;
    margin-top: 13.75rem;
  }

  .l-section--contact {
    margin-top: -12px;
    margin-top: -.75rem;
  }

  .l-section--contact:not(:first-of-type) {
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

  .l-section--contact-thanks {
    margin-top: -10px;
    margin-top: -.625rem;
  }

  .c-animated-message {
    position: absolute;
    top: 0;
    left: calc(50% - 34.375rem);
    height: 1080px;
    height: 67.5rem;
  }

  .c-animated-message__inner {
    top: 340px;
    font-size: 120px;
    font-size: 7.5rem;
  }

  .c-btn--pdf {
    max-width: 120px;
    max-width: 7.5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-lower-head {
    margin-top: 340px;
    margin-top: 21.25rem;
    height: 360px;
    height: 22.5rem;
  }

  .c-lower-head__sub-title {
    font-size: 90px;
    font-size: 5.625rem;
  }

  .c-lower-head__title {
    margin-left: 5px;
    margin-left: .3125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-lower-head__title::before {
    margin-right: 20px;
    margin-right: 1.25rem;
  }

  .c-lower-lead {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3928571429;
  }

  .c-lower-lead--s {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3928571429;
  }

  .c-lower-nav {
    gap: 120px;
    gap: 7.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0;
  }

  .c-lower-nav__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-lower-title {
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-lower-title__sub-title {
    font-size: 48px;
    font-size: 3rem;
  }

  .c-lower-title__title {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-lower-title__title--contact {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-lower-title__title::before {
    margin-right: 16px;
    margin-right: 1rem;
  }

  .c-lower-title__title--contact::before {
    width: 40px;
    width: 2.5rem;
  }

  .c-section-title__ja {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-section-title__en {
    font-size: 48px;
    font-size: 3rem;
  }

  .c-section-title__en::after {
    margin-inline: 20px;
    margin-inline: 1.25rem;
    width: 36px;
    width: 2.25rem;
  }

  .c-service-card {
    gap: 20px;
    gap: 1.25rem;
    border-radius: 1.25rem;
    padding: 30px 20px;
    padding: 1.875rem 1.25rem;
    width: 234px;
    width: 14.625rem;
  }

  .c-service-card__icon {
    width: 120px;
    width: 7.5rem;
  }

  .c-service-card__label {
    border-radius: .8125rem;
    min-width: 184px;
    min-width: 11.5rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .c-service-card__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-interview .c-staff-card {
    margin-top: 10px;
    margin-top: .625rem;
    padding-right: 0;
    width: initial;
  }

  .c-staff-card__job {
    font-size: 16px;
    font-size: 1rem;
  }

  .c-staff-card__info {
    width: 205px;
    width: 12.8125rem;
  }

  .p-interview .c-staff-card__info {
    width: initial;
  }

  .c-staff-card__info::before {
    top: -15px;
    top: -.9375rem;
  }

  .c-staff-card__name {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-staff-card__name-en {
    font-size: 16px;
    font-size: 1rem;
  }

  .c-staff-card__btn {
    z-index: 2;
  }

  .p-interview .c-stats {
    margin-top: 10px;
    margin-top: .625rem;
    padding-right: 0;
    width: initial;
  }

  .c-stats__info-wrap {
    width: 190px;
    width: 11.875rem;
    height: 190px;
    height: 11.875rem;
  }

  .c-stats__info-wrap::before {
    top: -15px;
    top: -.9375rem;
  }

  .c-stats__info--mt {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .c-stats__info-small {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5714285714;
  }

  .c-totop {
    right: 100px;
    right: 6.25rem;
    bottom: 40px;
    bottom: 2.5rem;
    width: 80px;
    width: 5rem;
    height: 80px;
    height: 5rem;
  }

  .c-totop__icon {
    max-width: 23px;
    max-width: 1.4375rem;
  }

  .p-404__btn {
    margin-top: 80px;
    margin-top: 5rem;
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
  }

  .error404 .c-lower-head__title {
    line-height: 1;
  }

  .p-about__message-header {
    padding-inline: 0;
  }

  .p-about__message-body {
    margin-inline: auto;
    margin-top: 65px;
    margin-top: 4.0625rem;
    width: 100%;
    max-width: 720px;
    max-width: 45rem;
  }

  .p-about__message-image {
    margin-inline: 0;
  }

  .p-about__message-content {
    margin-inline: auto;
    padding-inline: 0;
    margin-top: 70px;
    margin-top: 4.375rem;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-about__message-text {
    margin-top: 30px;
    margin-top: 1.875rem;
    line-height: 1.75;
  }

  .p-about__message-signature {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-about__info {
    padding-inline: 0;
  }

  .p-about__info-body {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    width: 100%;
    max-width: 720px;
    max-width: 45rem;
  }

  .p-about__info-body::before {
    background: -webkit-gradient(linear, left top, right top, from(#7ae381), color-stop(25%, #148f6e), color-stop(25%, #ddd), to(#ddd));
    background: linear-gradient(to right, #7ae381 0%, #148f6e 25%, #ddd 25%, #ddd 100%);
  }

  .p-about__info-list {
    grid-template-columns: 11.25rem 1fr;
  }

  .p-about__info-label {
    padding: 28px 25px;
    padding: 1.75rem 1.5625rem;
  }

  .p-about__info-label::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background: -webkit-gradient(linear, left top, right top, from(#7ae381), to(#148f6e));
    background: linear-gradient(to right, #7ae381, #148f6e);
    width: 100%;
    height: 2px;
    height: .125rem;
    content: '';
  }

  .p-about__info-data {
    border-bottom: 1px solid #ddd;
    border-bottom: .0625rem solid #ddd;
    padding: 25px;
    padding: 1.5625rem;
  }

  .p-about__info-data::after {
    content: none;
  }

  .p-about-btn {
    margin-top: 80px;
    margin-top: 5rem;
    text-align: center;
  }

  .p-about__results {
    padding-inline: 0;
  }

  .p-about #results {
    scroll-margin-top: 7.5rem;
  }

  .p-about__results-body {
    gap: 5.5555555556vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-about__results-content {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-about__results-text {
    margin-top: 15px;
    margin-top: .9375rem;
    line-height: 1.75;
  }

  .p-about__results-stats {
    margin-inline: 0;
  }

  .p-about__results-stats-wrap {
    gap: 20px;
    gap: 1.25rem;
    max-width: 469px;
    max-width: 29.3125rem;
  }

  .p-about__results-right {
    margin-inline: 0;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 469px;
    max-width: 29.3125rem;
  }

  .p-about__results-image {
    max-width: 100%;
  }

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

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

  .p-article__body h2 {
    font-size: 48px;
    font-size: 3rem;
  }

  .p-article__body h3 {
    font-size: 32px;
    font-size: 2rem;
  }

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

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

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

  .p-compliance__body {
    margin-inline: auto;
    padding-inline: 0;
    margin-top: 0;
    padding-bottom: 165px;
    padding-bottom: 10.3125rem;
    width: 100%;
    max-width: 720px;
    max-width: 45rem;
  }

  .p-compliance__text {
    line-height: 1.75;
  }

  .p-compliance__list {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-compliance__item {
    padding: 28px;
    padding: 1.75rem;
  }

  .p-compliance__link:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

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

  .p-contact__content {
    padding-inline: 0;
    margin-inline: auto;
    margin-top: 120px;
    margin-top: 7.5rem;
    width: 100%;
    max-width: 720px;
    max-width: 45rem;
  }

  .p-contact__info-tel {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 30px 30px 40px;
    padding: 1.875rem 1.875rem 2.5rem;
    letter-spacing: .2em;
  }

  .p-contact__info-tel-number {
    font-size: 52px;
    font-size: 3.25rem;
  }

  .p-contact__info-tel-label {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-contact__info-tel-time {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-contact__form-body {
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
    max-width: 37.5rem;
  }

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

  .p-contact__form-link-wrap {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }

  .p-contact__thanks {
    padding-inline: 115px;
    padding-inline: 7.1875rem;
  }

  .p-contact__thanks-sub-title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-contact__thanks-text {
    margin-top: 30px;
    margin-top: 1.875rem;
    line-height: 1.75;
  }

  .p-cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-cta__item-inner {
    margin-inline: initial;
    max-width: 520px;
    max-width: 32.5rem;
  }

  .p-cta__item--recruit .p-cta__item-inner {
    margin-left: auto;
  }

  .p-cta__item {
    padding: 70px 6.9444444444vw 80px;
    padding: 4.375rem 6.9444444444vw 5rem;
    width: 50%;
  }

  .p-cta__item--recruit {
    background: url('../../assets/img/bg_top-recruit_pc.jpg') no-repeat center center/cover;
  }

  .p-cta__item--contact {
    background: url('../../assets/img/bg_top-contact_pc.jpg') no-repeat center center/cover;
  }

  .p-cta__text {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-footer {
    padding-top: 90px;
    padding-top: 5.625rem;
    text-align: left;
  }

  .p-footer__inner {
    padding: 0 25px;
    padding: 0 1.5625rem;
    max-width: calc(68.75rem + 60px);
  }

  .p-footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

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

  .p-footer__address {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-footer__logo {
    margin-inline: initial;
    max-width: 22.9285714286vw;
  }

  .p-footer__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    max-width: 445px;
    max-width: 27.8125rem;
  }

  .p-footer__banners {
    gap: 10px;
    gap: .625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-footer__copyright {
    margin-top: 140px;
    margin-top: 8.75rem;
    text-align: right;
  }

  .p-form__item--two-column {
    gap: 12px;
    gap: .75rem;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .p-form__confirm-area .p-form__list {
    padding-inline: 60px;
    padding-inline: 3.75rem;
  }

  .p-form__confirm-area .p-form__item {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-form__confirm-area .p-form__item + .p-form__item {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-form__label {
    margin-top: 38px;
    margin-top: 2.375rem;
  }

  .p-form__item:first-of-type .p-form__label {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-form__confirm-area .p-form__item-body {
    margin-left: 0;
  }

  .p-form__postal-wrap {
    margin-bottom: 10px;
    margin-bottom: .625rem;
  }

  .p-form__postal {
    max-width: 350px;
    max-width: 21.875rem;
  }

  .p-form__note {
    top: 50%;
    right: 15px;
    right: .9375rem;
    bottom: initial;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-form__zip-btn {
    width: 9.7222222222vw;
  }

  .p-form select {
    width: 29.1666666667vw;
  }

  .p-form__select-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-form__privacy {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-form__btns {
    gap: 100px;
    gap: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

  .p-form__submit--back {
    margin-inline: initial;
  }

  .p-header__inner {
    gap: 1.7361111111vw;
    width: 100%;
    max-width: calc(82.5rem + 3.75rem);
  }

  .p-header__logo {
    max-width: 22.9285714286vw;
  }

  .p-header__nav {
    display: block;
    margin-left: 2.0833333333vw;
  }

  .p-header__nav ul {
    gap: 3.1944444444vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li {
    position: relative;
    white-space: nowrap;
  }

  .p-header__nav li > a {
    display: block;
    font-weight: 500;
  }

  .p-header__nav li > a:hover {
    color: #283c86;
  }

  .p-header__item--has-child {
    position: relative;
  }

  .p-header__item--recruit:has(a:hover)::after {
    background: url('../../assets/img/common/icon_link-blue@2x.png') no-repeat center top/contain;
  }

  .p-header__dropdown {
    display: block;
    position: absolute;
    top: calc(100% + .9375rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    z-index: 30;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
    background: #fff;
    background-color: #F8F8F8;
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
    pointer-events: none;
    white-space: nowrap;
  }

  .p-header__item--has-child:hover .p-header__dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .p-header__dropdown a::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url('../../assets/img/common/icon_arrow-right_s@2x.png') no-repeat center center/contain;
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
    content: '';
  }

  .p-header__right {
    gap: 2.0833333333vw;
  }

  .p-header__translate {
    width: 50px;
    width: 3.125rem;
  }

  .p-header__translate-btn {
    padding: 10px;
    padding: .625rem;
  }

  .p-header__contact {
    display: block;
    margin-left: auto;
  }

  .p-header__drawer {
    display: none;
  }

  .p-interview__profile {
    gap: 40px;
    gap: 2.5rem;
    margin-inline: auto;
  }

  .p-interview__header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 85%, 55% 94%, 28% 100%, 0 84%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 85%, 55% 94%, 28% 100%, 0 84%);
  }

  .p-interview__profile-image {
    margin-inline: 0;
    max-width: 385px;
    max-width: 24.0625rem;
  }

  .p-interview__profile-image img {
    aspect-ratio: 326/316;
  }

  .p-interview__body {
    margin-top: 50px;
    margin-top: 3.125rem;
    padding: 32px;
    padding: 2rem;
  }

  .p-interview__body::before {
    top: -170px;
    top: -10.625rem;
    height: 164px;
    height: 10.25rem;
  }

  .p-interview__number {
    margin-inline: auto;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-interview__block {
    margin-inline: auto;
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-interview__subtitle {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-interview__text {
    line-height: 1.75;
  }

  .p-interview__image {
    margin-block: 75px;
    margin-block: 4.6875rem;
  }

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

  .p-modal .swiper {
    translate: 0 -50px;
  }

  .p-modal .modal__container {
    margin: 5vh auto;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(27vw, #fff), color-stop(27vw, #f2f2ef), to(#f2f2ef));
    background: linear-gradient(to bottom, #fff 27vw, #f2f2ef 27vw, #f2f2ef 100%);
    width: 100%;
    max-width: 950px;
    max-width: 59.375rem;
  }

  .p-modal .modal__close {
    top: 10px;
    top: .625rem;
    right: 20px;
    right: 1.25rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-modal__interview-nav {
    padding-inline: initial;
  }

  .p-modal__interview-nav-inner {
    padding-inline: 50px;
    padding-inline: 3.125rem;
  }

  .p-modal__interview-nav-item--prev::after {
    display: none;
  }

  .p-modal__interview-nav-item--prev .p-modal__interview-nav-inner::before,
  .p-modal__interview-nav-item--next .p-modal__interview-nav-inner::before {
    margin-top: 0;
    width: 21px;
    width: 1.3125rem;
    height: 23px;
    height: 1.4375rem;
  }

  .p-modal__interview-nav-item--prev .p-modal__interview-nav-inner::before {
    margin-right: 20px;
    margin-right: 1.25rem;
  }

  .p-modal__interview-nav-item--next .p-modal__interview-nav-inner::before {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-modal__interview-nav-image {
    width: 100%;
    max-width: 150px;
    max-width: 9.375rem;
  }

  .p-modal__interview-nav-image img {
    aspect-ratio: 150/150;
    -o-object-position: top left;
    object-position: top left;
  }

  .p-modal__interview-nav-number {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-modal__interview-nav-job {
    margin-top: 15px;
    margin-top: .9375rem;
    background-color: transparent;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-modal__interview-nav-name {
    background-color: transparent;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-page,
  .error404 {
    background: #f2f2ef url('../../assets/img/common/bg_lower-head_pc.png') no-repeat center top/cover;
  }

  .p-service__inner {
    padding-bottom: 215px;
    padding-bottom: 13.4375rem;
  }

  .p-service__item-inner {
    gap: 64px;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-service__item-left {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    top: 6.25rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 1;
    width: 23.4375vw;
  }

  .p-service__item-title {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-service__item-right {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .p-service__item-lists {
    padding-inline: 0;
  }

  .p-service__list {
    gap: 32px;
    gap: 2rem;
    padding-block: 55px;
    padding-block: 3.4375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-service__list-number {
    text-align: left;
  }

  .p-service__list-head {
    margin-top: 15px;
    margin-top: .9375rem;
    text-align: left;
  }

  .p-service__list-detail {
    padding-inline: 0;
  }

  .p-staff-card {
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }

  .p-staff-card__image-toggles {
    aspect-ratio: 400/480;
    display: none;
    cursor: pointer;
    width: 27.7777777778vw;
  }

  .p-staff-card__image-toggle {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
  }

  .p-staff-card__body {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-left: -15%;
  }

  .p-top__mv::before {
    background: url('../../assets/img/img_top-mv_pc@2x.png') no-repeat center top/2800px 1580px;
    background: url('../../assets/img/img_top-mv_pc@2x.png') no-repeat center top/175rem 98.75rem;
    height: 1580px;
    height: 98.75rem;
  }

  .p-top__mv-text-box {
    margin-top: 126px;
    margin-top: 7.875rem;
    margin-left: initial;
    height: 55px;
    height: 3.4375rem;
  }

  .p-top__mv-text {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-top__about {
    margin-top: 740px;
    margin-top: 46.25rem;
  }

  .p-top__about-inner {
    display: contents;
  }

  .p-top__about-wrap {
    margin-inline: auto;
    padding-inline: 30px;
    padding-inline: 1.875rem;
    gap: 85px;
    gap: 5.3125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 1300px;
    max-width: 81.25rem;
  }

  .p-top__about-image {
    max-width: 521px;
    max-width: 32.5625rem;
  }

  .p-top__about-heading {
    margin-top: 60px;
    margin-top: 3.75rem;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.46875;
  }

  .p-top__about-text {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-top__about-btn-wrap {
    text-align: left;
  }

  .p-top__service {
    margin-top: 155px;
    margin-top: 9.6875rem;
    padding-top: 70px;
    padding-top: 4.375rem;
  }

  .p-top__service::before {
    background: url('../../assets/img/bg_top-service_pc.jpg') no-repeat center top/cover;
    height: 78%;
  }

  .p-top__service-inner {
    max-width: calc(59.375rem + 60px);
  }

  .p-top__service-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-top-service__slider {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-top__service-btn {
    margin-top: 150px;
    margin-top: 9.375rem;
  }

  .p-top__staff {
    margin-top: 150px;
    margin-top: 9.375rem;
  }

  .p-top__staff::before {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 76% 90%, 45% 100%, 17% 97%, 0 85%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 76% 90%, 45% 100%, 17% 97%, 0 85%, 0 0);
  }

  .p-top__staff::after {
    background: url('../../assets/img/bg_staff_pc.png') no-repeat center top/100% 400px;
    background: url('../../assets/img/bg_staff_pc.png') no-repeat center top/100% 25rem;
    height: 400px;
    height: 25rem;
  }

  .p-top__staff-inner {
    max-width: calc(59.375rem + 60px);
  }

  .p-top__staff-swiper {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 76% 90%, 22% 100%, 0 97%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 76% 90%, 22% 100%, 0 97%);
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-right: calc(50% - 50cqi);
  }

  .p-top__staff-slide.swiper-slide-active {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    width: 40.2777777778vw !important;
  }

  .p-top__staff-wrap {
    margin-inline: calc(50% - 50vw);
    padding-inline: 30px;
    padding-inline: 1.875rem;
    width: calc(100vw - 4.375rem);
  }

  .p-top__staff-swiper-buttons {
    margin-inline: auto;
    padding-inline: 30px;
    padding-inline: 1.875rem;
    width: 100%;
    max-width: 1340px;
    max-width: 83.75rem;
  }

  .p-top__staff-sp-prev-button,
  .p-top__staff-sp-next-button,
  .p-top__staff-prev-button,
  .p-top__staff-next-button {
    width: 80px;
    width: 5rem;
    height: 80px;
    height: 5rem;
  }

  .p-top__staff-sp-prev-button::after,
  .p-top__staff-sp-next-button::after,
  .p-top__staff-prev-button::after,
  .p-top__staff-next-button::after {
    width: 80px;
    width: 5rem;
    height: 80px;
    height: 5rem;
  }

  .p-top__record {
    padding-top: 50px;
    padding-top: 3.125rem;
  }

  .p-top__record-wrap {
    gap: 20px;
    gap: 1.25rem;
    padding-inline: 75px;
    padding-inline: 4.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-top__record-content {
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
  }

  .p-top__record-text {
    margin-top: 65px;
    margin-top: 4.0625rem;
    width: 100%;
  }

  .p-top__record-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .p-top__record-image {
    max-width: 461px;
    max-width: 28.8125rem;
  }

  html.translated-ltr .c-animated-message__inner {
    top: 52.0833333333vw;
  }

  html.translated-ltr .p-top__mv-text-box {
    padding-block: initial;
    height: 55px;
    height: 3.4375rem;
  }

  html.translated-ltr .p-top__mv-text {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0;
  }

  html.translated-ltr .c-staff-card__job {
    font-size: 16px;
    font-size: 1rem;
  }

  html.translated-ltr .c-staff-card__name {
    font-size: 24px;
    font-size: 1.5rem;
  }

  html.translated-ltr .c-staff-card__name-en {
    font-size: 16px;
    font-size: 1rem;
  }

  html.translated-ltr .c-staff-card__years {
    font-size: 14px;
    font-size: .875rem;
  }

  .u-overTab {
    display: block;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

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

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

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

  .p-modal .modal__container {
    background: linear-gradient(to bottom, #fff 340px, #f2f2ef 340px, #f2f2ef 100%);
  }

  html.translated-ltr .c-animated-message__inner {
    top: 400px;
    top: 25rem;
  }

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1100px) {

  html {
    font-size: 16px;
  }
}

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

  .p-footer__logo {
    max-width: 321px;
    max-width: 20.0625rem;
  }

  .p-form select {
    width: 420px;
    width: 26.25rem;
  }

  .p-header__logo {
    max-width: 321px;
    max-width: 20.0625rem;
  }

  .p-header__nav {
    margin-left: 80px;
    margin-left: 5rem;
  }

  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
  }

  .p-service__item-left {
    width: 300px;
    width: 18.75rem;
  }

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

  .p-top__staff-swiper {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 76% 92%, 13% 100%, 0 99%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 76% 92%, 13% 100%, 0 99%);
  }

  html.translated-ltr .p-header__nav {
    margin-left: 40px;
    margin-left: 2.5rem;
  }
}

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

  .p-staff-card__image-toggles {
    width: 24vw;
  }

  .p-top__staff-slide.swiper-slide-active {
    width: 34vw !important;
  }
}

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

  .p-modal__interview-nav-text {
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 10px;
    margin-top: .625rem;
    width: 80%;
    text-align: left;
  }

  .p-modal__interview-nav-item--prev .p-modal__interview-nav-text {
    margin-left: 30px;
    margin-left: 1.875rem;
  }

  .p-modal__interview-nav-item--next .p-modal__interview-nav-text {
    margin-right: 30px;
    margin-right: 1.875rem;
    text-align: right;
  }

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-btn:hover::before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-btn:hover .c-btn__text {
    z-index: 1;
    color: #fff;
  }

  .c-btn:hover .p-footer__translate-langs {
    z-index: 1;
    color: #fff;
  }

  .c-btn:hover .c-btn__icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .c-btn--contact:hover span {
    z-index: 1;
    color: #fff;
  }

  .c-btn--pdf:hover span {
    z-index: 1;
    color: #fff;
  }

  .c-btn--cta:hover .c-btn__text {
    color: #283c86;
  }

  .c-btn--cta:hover .c-btn__icon {
    -webkit-filter: none;
    filter: none;
  }

  .c-lower-nav__item a:hover::after {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  .p-footer__menu-title a:hover {
    color: #283c86;
  }

  .p-footer__menu-title--link a:hover .p-footer__icon-link img:first-child {
    opacity: 0;
  }

  .p-footer__menu-title--link a:hover .p-footer__icon-link img:last-child {
    opacity: 1;
  }

  .p-footer__menu-item a:hover {
    color: #283c86;
  }

  .p-footer__menu-item a:hover .p-footer__icon-link img:first-child {
    opacity: 0;
  }

  .p-footer__menu-item a:hover .p-footer__icon-link img:last-child {
    opacity: 1;
  }

  .p-header__translate:has(a:hover) {
    background-color: transparent;
    color: #283c86;
  }

  .p-header__translate:hover .p-header__translate-btn img {
    content: url('../img/common/icon_translate-blue.png');
  }

  .p-modal__interview-nav-item:hover {
    background-color: #fff;
  }
}
/*# sourceMappingURL=map/style.css.map */