@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: #101010;
  font-family: 'Zen Kaku Gothic New', 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;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a: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: #f2f2f2;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #f2f2f2;
  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: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

/************************************************************************
* 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;
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  min-height: 100vh;
  min-height: 100dvh;
}

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

footer {
  margin-top: auto;
}

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

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: #101010;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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

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

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

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(84, 84, 84, .4);
  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 {
  max-height: 200px;
  resize: vertical;
}

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

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

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

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

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.4em;
  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 rgba(84, 84, 84, .4);
  border-radius: 50%;
  background: #fff;
  width: 1em;
  height: 1em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .3em;
  -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: .4em;
  height: .4em;
  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 rgba(84, 84, 84, .4);
  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: .32em solid #1a3d9b;
  border-bottom: .32em solid #1a3d9b;
  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;
  position: relative;
  border: 1px solid rgba(84, 84, 84, .4);
  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: #4E89D0;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

select::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  right: .3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #101010;
  width: 10px;
  width: .625rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

: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: #fff;
}

/* 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: #fff;
  font-weight: 700;
}

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

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

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

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

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

.l-breadcrumb {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.l-careerModel {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

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

.l-company {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

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

.l-entry {
  margin-top: 80px;
  margin-top: 5rem;
}

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

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

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

.l-interview {
  margin-top: 60px;
  margin-top: 3.75rem;
}

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

.l-job {
  margin-top: 80px;
  margin-top: 5rem;
}

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

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

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

.l-pageHead {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-pageInterviewDetail {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.l-pageInterviewMargin {
  margin-top: 60px;
  margin-top: 3.75rem;
}

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

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

.c-btn {
  position: relative;
  border-radius: 100vh;
  background-color: #1a3d9b;
  padding: 18px;
  padding: 1.125rem;
  min-width: min(240px, 85%);
  min-width: min(15rem, 85%);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4666666667;
  text-transform: uppercase;
}

.c-btn span {
  position: relative;
  z-index: 2;
}

.c-btn::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  background-image: url(../../assets/img/common/arrow-right.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 1.5rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.c-btn::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 100vh;
  background-color: #101010;
  width: 0;
  height: 100%;
  content: '';
}

.c-btn.c-btn--contact {
  width: 100%;
  min-width: initial;
  font-size: 14px;
  font-size: .875rem;
}

.c-btn.c-btn--contact::before {
  display: none;
}

.c-btn.c-btn--gray {
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #545454;
  background-color: #f2f2f2;
  color: #101010;
}

.c-btn.c-btn--en {
  font-family: 'Roboto', serif;
}

.c-btnShadow {
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 6px 6px 6px rgba(0, 0, 0, .05);
  box-shadow: 6px 6px 6px rgba(0, 0, 0, .05);
  border: 2px solid transparent;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  color: #101010;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.c-btnShadow::after {
  -webkit-mask-image: url(../../assets/img/common/arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  display: block;
  position: absolute;
  top: 50%;
  right: 37px;
  right: 2.3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mask-image: url(../../assets/img/common/arrow-right.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #1a3d9b;
  width: 24px;
  width: 1.5rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.c-imgLinkBtn {
  position: relative;
  overflow: clip;
  color: #fff;
}

.c-imgLinkBtn::after, .c-imgLinkBtn::before {
  display: block;
  position: absolute;
  content: '';
}

.c-imgLinkBtn::after {
  right: 18px;
  right: 1.125rem;
  bottom: 10px;
  bottom: .625rem;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url(../../assets/img/common/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.c-imgLinkBtn::before {
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: 0;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
  width: 100%;
  height: 100%;
}

.c-imgLinkBtn__texts {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.c-imgLinkBtn__ja {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.c-imgLinkBtn__ja.c-imgLinkBtn__ja--min {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-imgLinkBtn__en {
  display: block;
  margin-top: 5px;
  margin-top: .3125rem;
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.c-sectionTitle {
  position: relative;
}

.c-sectionTitle::after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #1c3391;
  width: 173px;
  width: 10.8125rem;
  height: 1px;
  content: '';
}

.c-sectionTitle.c-sectionTitle--right {
  margin-right: 50px;
  margin-right: 3.125rem;
  text-align: right;
}

.c-sectionTitle.c-sectionTitle--right::after {
  right: -190px;
  right: -11.875rem;
}

.c-sectionTitle.c-sectionTitle--left {
  margin-left: 50px;
  margin-left: 3.125rem;
  text-align: left;
}

.c-sectionTitle.c-sectionTitle--left::after {
  left: -190px;
  left: -11.875rem;
}

.c-sectionTitle__en {
  display: block;
  font-family: 'Roboto', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.c-sectionTitle__ja {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 50%;
  background-color: #1a3d9b;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  -webkit-mask-image: url(../../assets/img/common/arrow-top.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mask-image: url(../../assets/img/common/arrow-top.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

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

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

.p-404 {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-404__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}

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

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

.p-addition {
  position: relative;
}

.p-addition__title {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.p-addition__en {
  background-color: #1a3d9b;
  padding: 16px 0;
  padding: 1rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.p-addition__number {
  color: #cecee4;
  font-family: 'Oswald', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
}

.p-addition__addition {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 60px;
  left: 3.75rem;
  mix-blend-mode: multiply;
  margin-top: -34px;
  margin-top: -2.125rem;
  color: #cecee4;
  font-family: 'Oswald', serif;
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-addition__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-left: auto;
}

.p-addition__left {
  position: relative;
  z-index: 2;
}

.p-addition__message {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  margin-top: -100px;
  margin-top: -6.25rem;
}

.p-addition__message span {
  display: block;
  background-color: #101010;
  padding: 0 15px;
  padding: 0 .9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-addition__meta {
  margin-top: 10px;
  margin-top: .625rem;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  background-color: rgba(255, 255, 255, .7);
  padding: 10px 30px;
  padding: .625rem 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-addition__name {
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1428571429;
}

.p-addition__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7049180328;
}

.p-addition__position {
  border: 1px solid #101010;
  padding: 0 5px;
  padding: 0 .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-addition__img {
  aspect-ratio: 375/280;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  width: 90%;
}

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

.p-archive__head {
  color: #1a3d9b;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6279069767;
}

.p-archive__content {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-archiveItem__grid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-archiveItem__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-archiveItem__img {
  aspect-ratio: 1.5/1;
  width: 100%;
  overflow: clip;
}

.p-archiveItem__img img {
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  width: 100%;
  height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.p-archiveItem__message {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-archiveItem__btn.c-btn {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  min-width: 300px;
  min-width: 18.75rem;
  max-width: 300px;
  text-align: center;
}

.p-article {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-article__title {
  color: #1a3d9b;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6279069767;
}

.p-article__head {
  margin-top: 28px;
  margin-top: 1.75rem;
  color: #1a3d9b;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-article__message {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__subTitle {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-article__table {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}

.p-article__tbody {
  border-top: 1px solid rgba(84, 84, 84, .2);
}

.p-article__tableHead {
  display: block;
  background-color: #f2f2f2;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  width: 100%;
  font-weight: 700;
  text-align: left;
}

.p-article__tableHead, .p-article__description {
  border-top: 1px solid rgba(84, 84, 84, .2);
  border-right: none;
  border-left: none;
}

.p-article__description {
  display: block;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  width: 100%;
}

.p-archive__red {
  color: #f00;
}

.p-article__box {
  gap: 50px;
  gap: 3.125rem;
  display: grid;
  margin-top: 74px;
  margin-top: 4.625rem;
}

.p-article__boxItem {
  position: relative;
  border: 2px solid #199786;
  padding: 25px 25px 25px 35px;
  padding: 1.5625rem 1.5625rem 1.5625rem 2.1875rem;
}

.p-article__boxImg {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  left: -14px;
  left: -.875rem;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}

.p-article__boxTitle {
  position: absolute;
  top: -24px;
  top: -1.5rem;
  left: 50px;
  left: 3.125rem;
  background-color: #fff;
  padding: 0 10px;
  padding: 0 .625rem;
  color: #199786;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: min(22px, 5vw);
  font-size: min(1.375rem, 5vw);
  font-weight: 700;
}

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

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

.p-breadcrumb {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: .875rem;
}

.p-careerContents__title {
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6279069767;
  text-align: center;
}

.p-careerContents__flex {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-careerContents__img {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-careerContents__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-careerContents__text.p-careerContents__text--step {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-careerContents__blue {
  color: #1a3d9b;
  font-weight: 700;
}

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

.p-careerModel__title {
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6279069767;
}

.p-careerModel__img {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-careerModel__contents {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

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

.p-careerModel__step {
  background-color: #1a3d9b;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .05em;
}

.p-careerModel__message {
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .05em;
  line-height: 1.3846153846;
}

.p-careerModel__deco {
  margin-inline: auto;
  max-width: 30px;
  max-width: 1.875rem;
}

.p-careerModel__yellow {
  color: #EABF4B;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-careerSupport {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  overflow-x: clip;
}

.p-careerSupport__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-careerSupport__head {
  margin-inline: auto;
  max-width: 1000px;
}

.p-careerSupport__headInner {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-careerSupport__title {
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6571428571;
  text-align: center;
}

.p-careerSupport__title span {
  display: inline-block;
}

.p-careerSupport__imgs {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 80%;
}

.p-careerSupport__message {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #1a3d9b;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.p-careerSupport__center {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-careerSupport__centerMessage {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.p-careerSupport__centerMessage::before {
  margin-inline: calc(50% - 50vw);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #1a3d9b;
  width: 100vw;
  content: '';
}

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

.p-careerSupport__bottom {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-careerSupport__bottomMessage {
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  padding: 5px 0;
  padding: .3125rem 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.7142857143;
  text-align: center;
}

.p-careerSupport__bottomMessage::before {
  margin-inline: calc(50% - 50vw);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  width: 100vw;
  content: '';
}

.p-careerSupport__bottomMessage-point {
  display: none;
}

.p-careerSupport__yellow {
  color: #EABF4B;
  font-family: 'Roboto', serif;
}

.p-careerSupport__yellow-min {
  font-size: 14px;
  font-size: .875rem;
}

.p-careerSupport__bottomMessageFlexBlue {
  color: #1a3d9b;
}

.p-company {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  background-repeat: no-repeat;
  background-size: 100% 79%;
  overflow-x: clip;
}

.p-company__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-company__textImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 80%;
}

.p-company__links {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contents {
  display: grid;
  color: #fff;
}

.p-contents__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contents__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-contents__item:not(:first-of-type) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contents__subTitle {
  background-color: #fff;
  padding: 0 15px;
  padding: 0 .9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1389c7;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contents__subTitle.p-contents__subTitle--blue {
  color: #1c3391;
}

.p-contents__subTitle.p-contents__subTitle--spBlue {
  color: #1c3391;
}

.p-contents__mainTitle {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.1458333333;
}

.p-contents__message {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.875;
}

.p-contents__img {
  aspect-ratio: 502/402;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .6em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .6em;
  padding-bottom: .6em;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-drawer__navLink.p-drawer__navLink--entry {
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #101010;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  min-width: 12.5rem;
  color: #fff;
  font-family: 'Roboto', serif;
  font-size: 26px;
  font-size: 1.625rem;
  text-transform: uppercase;
}

.p-entry__contents {
  background-image: url(../../assets/img/top/entry_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 172px;
  padding-bottom: 10.75rem;
}

.p-entry__btn a {
  margin-inline: auto;
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 6px 6px 6px rgba(13, 48, 101, .16);
  box-shadow: 6px 6px 6px rgba(13, 48, 101, .16);
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  width: 85%;
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.p-entry__btn a:hover {
  opacity: 1;
  text-decoration: none;
}

.p-entry__btn a span {
  position: relative;
  z-index: 2;
}

.p-entry__btn a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #101010;
  width: 100%;
  height: 100%;
  content: '';
}

.p-footer {
  margin-inline: auto;
}

.p-footer__inner {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer__logos {
  gap: 0 20px;
  gap: 0 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.p-footer__logo {
  margin-left: 20px;
  margin-left: 1.25rem;
  width: 100%;
}

.p-footer__logo img {
  width: 60%;
  max-width: 200px;
  max-width: 12.5rem;
}

.p-footer__logoShigeta {
  margin-left: min(24%, 74px);
  margin-left: min(24%, 4.625rem);
  max-width: 120px;
  max-width: 7.5rem;
}

.p-footer__instagram {
  max-width: 31px;
  max-width: 1.9375rem;
}

.p-footer__address {
  grid-area: 2/1/3/2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
}

.p-footer__addressLine span {
  display: inline-block;
}

.p-footer__list {
  gap: 14px;
  gap: .875rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-footer__link a {
  color: #101010;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
}

.p-footer__link:last-child a::after {
  content: none;
}

.p-footer__copy {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #1c3391;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8571428571;
  text-align: center;
}

.p-gallery__inner {
  position: relative;
}

.p-gallery__swiper {
  position: relative;
  z-index: 1;
}

.p-gallery__title {
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.p-gallery__thumbnail {
  margin-top: 10px;
  margin-top: .625rem;
  width: 87%;
}

.p-gallery .swiper-button-prev,
.p-gallery .swiper-button-next {
  position: absolute;
  bottom: 7%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-gallery .swiper-button-prev {
  left: 0;
  border-bottom: 2px solid #1a3d9b;
  border-left: 2px solid #1a3d9b;
}

.p-gallery .swiper-button-next {
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-right: 2px solid #1a3d9b;
  border-bottom: 2px solid #1a3d9b;
}

.p-gallery .swiper-slide {
  cursor: pointer;
}

.p-gallery .swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: '';
}

.p-gallery__slide {
  position: relative;
}

.p-gallery__text {
  position: absolute;
  bottom: 10px;
  bottom: .625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999;
  width: 90%;
  color: #fff;
  font-weight: 900;
}

.p-gallery__place {
  font-size: 22px;
  font-size: 1.375rem;
}

.p-gallery__message {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-header {
  background-color: #fff;
  padding-left: 10px;
  padding-left: .625rem;
  height: 60px;
}

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

.p-header__logos {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-header__logo:first-child {
  width: 100px;
  width: 6.25rem;
}

.p-header__logo:last-child {
  width: 90px;
  width: 5.625rem;
}

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

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

.p-header__nav {
  display: none;
  height: inherit;
}

.p-header__navLink.p-header__navLink--entry {
  position: relative;
  background-color: #101010;
  padding: 0 40px;
  padding: 0 2.5rem;
  height: 100%;
  color: #fff;
  font-family: 'Roboto', serif;
  font-size: max(24px, 16px);
  font-size: max(1.5rem, 16px);
  font-weight: 500;
  text-transform: uppercase;
}

.p-header__navLink.p-header__navLink--entry span {
  position: relative;
  z-index: 2;
}

.p-header__navLink.p-header__navLink--entry::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #1a3d9b;
  width: 0;
  height: 100%;
  content: '';
}

.p-intention {
  background-image: url(../../assets/img/top/intentionBg_sp.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-interview {
  background-image: url(../../assets/img/common/fullswing.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-interview__title {
  margin-left: auto;
}

.p-interview__textImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 80%;
}

.p-interview__list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-interview__btn {
  margin-top: 68.3px;
  margin-top: 4.26875rem;
  text-align: center;
}

.p-interviewContents__item:nth-child(odd) {
  background: -webkit-gradient(linear, left top, right top, from(#e1f5fd), to(#e4e4f0));
  background: linear-gradient(to right, #e1f5fd, #e4e4f0);
}

.p-interviewContents__inner {
  gap: 10px;
  gap: .625rem;
  display: grid;
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-interviewContents__wrapper {
  display: contents;
}

.p-interviewContents__text {
  display: contents;
}

.p-interviewContents__head {
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.p-interviewContents__head span {
  font-weight: 700;
}

.p-interviewContents__message {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-interviewContents__messageBlue {
  color: #1a3d9b;
  font-weight: 700;
}

.p-interviewContents__img {
  aspect-ratio: 460/410;
  grid-area: 1/1/2/2;
}

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

.p-interviewFv {
  position: relative;
  background-image: url(../../assets/img/interview/fv.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  padding: 6.25rem 0;
}

.p-interviewFv__wrapper {
  position: absolute;
  top: 33%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-interviewFv__subTitle {
  background-color: #fff;
  padding: 2px 5px;
  padding: .125rem .3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.p-interviewFV__title {
  margin-top: 5px;
  margin-top: .3125rem;
  margin-left: 10px;
  margin-left: .625rem;
  color: #1a3d9b;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 255, 255, .9), 0 0 15px rgba(255, 255, 255, .8), 0 0 25px rgba(255, 255, 255, .7), 0 0 40px rgba(255, 255, 255, .5);
}

.p-interviewList {
  gap: 40px 62px;
  gap: 2.5rem 3.875rem;
  display: grid;
}

.p-interviewList__item {
  position: relative;
  overflow: clip;
}

.p-interviewList__item a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: 0;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
  width: 100%;
  height: 100%;
  content: '';
}

.p-interviewList__item img {
  aspect-ratio: 500/570;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.p-interviewList__item a {
  display: block;
  position: relative;
  background: transparent;
  height: inherit;
}

.p-interviewList__message {
  gap: 10px;
  gap: .625rem;
  display: grid;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-interviewList__message span {
  display: block;
  background-color: #101010;
  padding: 0 22px;
  padding: 0 1.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-interviewList__message span:last-child {
  margin-left: 10px;
  margin-left: .625rem;
}

.p-interviewList__meta {
  gap: 0 20px;
  gap: 0 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  margin-top: .5rem;
  margin-left: 5px;
  margin-left: .3125rem;
}

.p-interviewList__meta span:first-of-type {
  width: 100%;
}

.p-interviewList__name {
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.p-interviewList__category {
  border: 1px solid #101010;
  padding: 0 10px;
  padding: 0 .625rem;
  color: #101010;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-interviewList__description {
  color: #101010;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.p-job {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 60%;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  overflow-x: clip;
}

.p-job__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-job__textImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 80%;
}

.p-job__img {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-job__btn {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 47.4px;
  margin-top: 2.9625rem;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
}

.p-lastMessage {
  position: relative;
  background-image: url(../../assets/img/interview/background.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-lastMessage::after {
  aspect-ratio: 3840/554;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 17.5%);
  transform: translate(-50%, 17.5%);
  background-image: url(../../assets/img/common/fullswing.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 340px;
  max-width: 21.25rem;
  content: '';
}

.p-lastMessage::before {
  display: block;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 217px;
  width: 13.5625rem;
  height: 200px;
  height: 12.5rem;
  content: '';
}

.p-lastMessage.p-lastMessage--01::before {
  background-image: url(../../assets/img/interview/interview01BottomDeco.png);
}

.p-lastMessage.p-lastMessage--02::before {
  background-image: url(../../assets/img/interview/interview02BottomDeco.png);
}

.p-lastMessage.p-lastMessage--03::before {
  background-image: url(../../assets/img/interview/interview03BottomDeco.png);
}

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

.p-lastMessage__img {
  aspect-ratio: 460/261;
  width: 100%;
}

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

.p-lastMessage__head {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: -50px;
  margin-top: -3.125rem;
  margin-left: -10px;
  margin-left: -.625rem;
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.p-lastMessage__text {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-linkNav__links {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-mv {
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-mv__img {
  margin-inline: auto;
  width: 88%;
}

.p-mv__right {
  display: none;
  position: absolute;
}

.p-mv__copy {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

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

.p-numberContents__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.p-numberContents__list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-numberContents__item {
  background-color: #E6F2F4;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.p-numberContents__itemTitle {
  color: #1a3d9b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2424242424;
  text-align: center;
}

.p-numberContents__itemImg.p-numberContents__itemGenderImg {
  margin-inline: auto;
  aspect-ratio: 402/364;
  width: 80%;
}

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

.p-numberContents__itemText {
  color: #1a3d9b;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.875;
}

.p-numberContents__itemText.p-numberContents__itemGenderText {
  margin-top: 36.5px;
  margin-top: 2.28125rem;
}

.p-numberContents__itemImg.p-numberContents__itemAgeImg {
  aspect-ratio: 402/364;
  width: 100%;
}

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

.p-numberContents__itemText.p-numberContents__itemAgeText {
  margin-top: 36.5px;
  margin-top: 2.28125rem;
}

.p-numberContents__itemGraduationImg.p-numberContents__itemGraduationImg {
  aspect-ratio: 371/426;
  margin-inline: auto;
  margin-top: 10px;
  margin-top: .625rem;
  width: 70%;
}

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

.p-numberContents__item.p-numberContents__itemClub {
  position: relative;
}

.p-numberContents__itemClubImg {
  position: relative;
}

.p-numberContents__itemText.p-numberContents__itemClubText {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-numberContents__itemGrid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-numberContents__itemGrid::before {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../../assets/img/number/figure04.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  width: 5rem;
  height: 60px;
  height: 3.75rem;
  content: '';
}

.p-numberContents__itemList {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #1a3d9b;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6842105263;
}

.p-numberContents__itemBox {
  gap: 22px;
  gap: 1.375rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-numberContents__itemBoxLeft {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-numberContents__itemBoxItem {
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}

.p-numberContents__itemBoxTitle {
  color: #1a3d9b;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
  line-height: 1.48;
  text-align: center;
}

.p-numberContents__itemBoxImg {
  margin-inline: auto;
  width: 60%;
  max-width: 200px;
  max-width: 12.5rem;
}

.p-numberContents__itemBoxText {
  color: #1a3d9b;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.875;
}

.p-numberContents__itemBoxText.p-numberContents__itemBoxText--introduction {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-numberContents__itemBoxRight {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-numberContents__itemBoxImg.p-numberContents__itemBoxImg--introduction {
  margin-inline: auto;
  margin-top: 40.5px;
  margin-top: 2.53125rem;
  width: 42%;
}

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

.p-numberContents__itemBoxContents {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-numberContents__itemBoxText.p-numberContents__itemBoxText--fee {
  margin-top: 32px;
  margin-top: 2rem;
}

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

.p-numberFv {
  background-image: url(../../assets/img/number/fv.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 28.75rem 100%;
}

.p-numberFv__head {
  position: relative;
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
  text-align: center;
}

.p-numberFv__en {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -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;
  color: #1a3d9b;
  font-family: 'Roboto', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2954545455;
  text-transform: uppercase;
}

.p-numberFv__en span {
  margin-inline: auto;
  display: block;
  background-color: #fff;
  padding: 0 10px;
  padding: 0 .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-numberFv__title {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #1a3d9b;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-outline__message {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-outline__gallery {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-pageForm__address p {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-pageForm__check {
  margin-top: 10px;
  margin-top: .625rem;
  text-align: left;
}

.p-pageForm__check a {
  display: inline;
}

.p-pageForm__header {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
}

.p-pageForm__form {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  padding: 20px 20px 60px;
  padding: 1.25rem 1.25rem 3.75rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-pageForm__form .wpcf7-not-valid-tip {
  left: 0;
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-pageForm__description-notValid .wpcf7-not-valid-tip {
  display: none;
}

.p-pageForm__item {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-pageForm__item dt {
  font-weight: 500;
}

.p-pageForm__item dt span {
  margin-left: 10px;
  margin-left: .625rem;
  border-radius: 100vh;
  background-color: #1a3d9b;
  padding: 0 10px;
  padding: 0 .625rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
}

.p-pageForm__item dd {
  width: 100%;
}

.p-pageForm__item dd .wpcf7-list-item.first {
  margin-left: 0;
}

.p-pageForm__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-pageForm__confirm {
  display: none;
  margin-top: 40px;
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-pageForm__confirmTitle, .p-pageForm__confirmMessage {
  text-align: center;
}

.p-pageForm__confirmTitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-pageForm__confirmMessage {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-pageForm__confirmContents {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-pageForm__description-birth {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-pageForm__description-birth p {
  gap: 5px;
  gap: .3125rem;
  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-pageForm__description-birth, .p-pageForm__addressSelect {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-pageForm__description-birth .wpcf7-form-control-wrap, .p-pageForm__addressSelect .wpcf7-form-control-wrap {
  position: relative;
}

.p-pageForm__description-birth .wpcf7-form-control-wrap::after, .p-pageForm__addressSelect .wpcf7-form-control-wrap::after {
  display: block;
  position: absolute;
  top: 48%;
  right: 8px;
  right: .5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 1px solid #101010;
  border-left: 1px solid #101010;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  pointer-events: none;
  content: '';
}

.p-pageForm__description-flex p {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-pageForm__addressContainer {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-pageForm__description-postal.p-pageForm__description-postal p {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-pageForm__description-postal.p-pageForm__description-postal p :last-of-type .wpcf7-not-valid-tip {
  display: none;
}

.error .wpcf7-not-valid-tip {
  display: none;
}

.error .error-message {
  display: none;
  color: #dc3232;
  font-size: 14px;
  font-size: .875rem;
}

.error:has(.wpcf7-not-valid-tip) .error-message {
  display: block;
}

.p-pageForm__confirm-descriptionBirth p {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-pageForm__confirmBtn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

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

.p-pageInterviewDetail {
  overflow-x: clip;
}

.p-pageInterviewDetail__inner {
  padding-right: 0;
}

.p-pageInterviewDetail__top {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

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

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

.p-pageWorkContents__list {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pageWorkContents__item {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
}

.p-pageWorkContents__img {
  aspect-ratio: 334/298;
  -webkit-box-shadow: 1px 5px 20px rgba(0, 0, 0, .2);
  box-shadow: 1px 5px 20px rgba(0, 0, 0, .2);
  width: 100%;
  width: 100%;
}

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

.p-pageWorkContents__head {
  color: #1a3d9b;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6279069767;
}

.p-pageWorkContents__message {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-subFv {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  background-repeat: no-repeat;
  padding: 20px 0 60px;
  padding: 1.25rem 0 3.75rem;
  overflow-x: clip;
}

.p-subFv__img {
  aspect-ratio: 375/220;
  margin-inline: auto;
  position: relative;
}

.p-subFv__img img {
  -webkit-box-shadow: 1px 5px 20px rgba(0, 0, 0, .2);
  box-shadow: 1px 5px 20px rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.p-subFv__img.p-subFv__img--works {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-subFv__head {
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: -10px;
  left: -.625rem;
  z-index: 3;
  margin-top: -100px;
  margin-top: -6.25rem;
  width: 100%;
  letter-spacing: .05em;
}

.p-subFv__head span {
  margin-inline: auto;
  background-color: #1a3d9b;
  padding: 10px 10px;
  padding: .625rem .625rem;
  color: #fff;
  font-size: min(32px, 5.5vw);
  font-size: min(2rem, 5.5vw);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-subFv__head.p-subFv__head--works {
  gap: 10px;
  gap: .625rem;
  display: grid;
  bottom: -78px;
  bottom: -4.875rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-subFv__head.p-subFv__head--works span {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-subFv__message {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-subFv__message.p-subFv__message--work {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-subFv__breadcrumb {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-subFv02 {
  position: relative;
  height: 211px;
  height: 13.1875rem;
}

.p-subFv02 span {
  font-family: 'Zen Kaku Gothic New', serif;
}

.p-subFv02__titleWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-subFv02__title {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1a3d9b;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.p-subFv02__title span {
  margin-inline: auto;
  display: block;
  background-color: #fff;
  padding: 3px 10px;
  padding: .1875rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Roboto', serif;
}

.p-subFv02__subTitle {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #1a3d9b;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.p-subFv02__img {
  height: inherit;
}

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

.p-subFv02__title.p-subFv02__title--outline {
  font-size: 38px;
  font-size: 2.375rem;
}

.p-subFv02__title.p-subFv02__title--outline span {
  padding: 5px 10px 8px;
  padding: .3125rem .625rem .5rem;
}

.p-subFv02__subTitle.p-subFv02__subTitle--outline {
  text-shadow: 0 0 15px rgba(255, 255, 255, .9), 0 0 15px rgba(255, 255, 255, .8), 0 0 25px rgba(255, 255, 255, .7), 0 0 40px rgba(255, 255, 255, .5);
}

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

.p-thanks__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3333333333;
}

.p-thanks__message {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-topMessage {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 183, 228, .12)), to(rgba(29, 33, 126, .12)));
  background: linear-gradient(to right, rgba(0, 183, 228, .12), rgba(29, 33, 126, .12));
  padding: 60px 0 60px;
  padding: 3.75rem 0 3.75rem;
}

.p-topMessage__head {
  margin-inline: auto;
  max-width: 1104px;
  max-width: 69rem;
}

.p-topMessage__text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #1a3d9b;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.0909090909;
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

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

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

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

.u-overflowHidden {
  overflow: hidden;
}

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

  html {
    font-size: .9302325581vw;
  }

  input,
  textarea {
    font-size: 18px;
  }

  select {
    font-size: 18px;
  }

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

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

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

  .l-404 {
    margin-top: 200px;
    margin-top: 12.5rem;
  }

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

  .l-careerModel {
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

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

  .l-careerSupport {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .l-company {
    padding-top: 94px;
    padding-top: 5.875rem;
  }

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

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

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

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

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

  .l-container.l-container--bread {
    max-width: 1573.6px;
  }

  .l-entry {
    margin-top: 146px;
    margin-top: 9.125rem;
  }

  .l-footer {
    margin-top: 108px;
    margin-top: 6.75rem;
    margin-bottom: 80px;
    margin-bottom: 5rem;
  }

  .l-interview {
    margin-top: 146px;
    margin-top: 9.125rem;
  }

  .l-interviewContents {
    margin-top: 167px;
    margin-top: 10.4375rem;
  }

  .l-job {
    margin-top: 105px;
    margin-top: 6.5625rem;
  }

  .l-lastMessage {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-linkNav {
    margin-top: 151px;
    margin-top: 9.4375rem;
  }

  .l-pageForm {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .l-pageHead {
    margin-top: 134px;
    margin-top: 8.375rem;
  }

  .l-pageInterviewDetail {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-pageInterviewDetailBtn {
    margin-top: 172px;
    margin-top: 10.75rem;
  }

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

  .l-pageWorkContents {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-subPage {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .c-btn {
    padding: 23px;
    padding: 1.4375rem;
    min-width: max(240px, 370px);
    min-width: max(240px, 23.125rem);
    font-size: 20px;
  }

  .c-btn:hover {
    opacity: 1;
  }

  .c-btn:hover::after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
    width: 100%;
  }

  .c-btn::before {
    width: max(24px, 18px);
    width: max(1.5rem, 18px);
    height: max(13px, 10px);
    height: max(.8125rem, 10px);
  }

  .c-btn.c-btn--contact {
    font-size: 18px;
  }

  .c-btn.c-btn--gray:hover {
    color: #fff;
  }

  .c-btnShadow {
    padding: 38px 40px;
    padding: 2.375rem 2.5rem;
    font-size: max(24px, 18px);
    font-size: max(1.5rem, 18px);
  }

  .c-btnShadow:hover {
    opacity: 1;
    border-bottom: 2px solid #1a3d9b;
  }

  .c-imgLinkBtn::after {
    right: 24px;
    right: 1.5rem;
    bottom: 27px;
    bottom: 1.6875rem;
    border: 2px solid #fff;
    background-size: 1.5rem;
    width: 80px;
    width: 5rem;
    height: 80px;
    height: 5rem;
  }

  .c-imgLinkBtn:hover {
    opacity: 1;
  }

  .c-imgLinkBtn:hover::before {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }

  .c-imgLinkBtn:hover::after {
    border: 2px solid #1c3391;
    background-color: #1c3391;
  }

  .c-imgLinkBtn__ja {
    font-size: 34px;
    font-size: max(34px, 20px);
    font-size: max(2.125rem, 20px);
    white-space: nowrap;
  }

  .c-imgLinkBtn__ja.c-imgLinkBtn__ja--min {
    font-size: max(30px, 18px);
    font-size: max(1.875rem, 18px);
  }

  .c-imgLinkBtn__en {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: max(20px, 16px);
    font-size: max(1.25rem, 16px);
  }

  .c-sectionTitle::after {
    height: 2px;
    height: .125rem;
  }

  .c-sectionTitle {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .c-sectionTitle.c-sectionTitle--right::after {
    right: -200px;
    right: -12.5rem;
  }

  .c-sectionTitle.c-sectionTitle--right {
    margin-right: 100px;
    margin-right: 6.25rem;
  }

  .c-sectionTitle.c-sectionTitle--left::after {
    left: -200px;
    left: -12.5rem;
  }

  .c-sectionTitle.c-sectionTitle--left {
    margin-left: 0;
  }

  .c-sectionTitle__en {
    font-size: 78px;
    font-size: 4.875rem;
  }

  .c-sectionTitle__ja {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-404 {
    font-size: 18px;
  }

  .p-404__title {
    font-size: 24px;
  }

  .p-addition__title {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-addition__en {
    font-size: max(66px, 40px);
    font-size: max(4.125rem, 40px);
  }

  .p-addition__number {
    font-size: 160px;
    font-size: 10rem;
  }

  .p-addition__addition {
    top: 0;
    left: 0;
    font-size: 260px;
    font-size: 16.25rem;
  }

  .p-addition__contents {
    -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;
    width: 85%;
  }

  .p-addition__contents.p-addition__contents--03 {
    width: 88%;
  }

  .p-addition__left {
    margin-top: 254px;
    margin-top: 15.875rem;
    margin-right: -420px;
    margin-right: -26.25rem;
    width: 53.7%;
  }

  .p-addition__left.p-addition__left--03 {
    margin-right: -380px;
    margin-right: -23.75rem;
  }

  .p-addition__message {
    gap: 10px;
    gap: .625rem;
    margin: 0;
  }

  .p-addition__message span {
    font-size: 37px;
    font-size: 2.3125rem;
  }

  .p-addition__meta {
    margin-top: 58.2px;
    margin-top: 3.6375rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 19.4px 30px;
    padding: 1.2125rem 1.875rem;
    min-width: 160px;
  }

  .p-addition__name {
    font-size: max(45px, 40px);
    font-size: max(2.8125rem, 40px);
  }

  .p-addition__description {
    font-size: 19.2px;
    font-size: 1.2rem;
  }

  .p-addition__position {
    border: 1px solid #101010;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20.8px;
    font-size: 1.3rem;
  }

  .p-addition__img {
    margin-top: 180px;
    margin-top: 11.25rem;
    width: 84.2%;
  }

  .p-archive__head {
    font-size: max(43px, 32px);
    font-size: max(2.6875rem, 32px);
  }

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

  .p-archiveItem a:hover {
    opacity: 1;
  }

  .p-archiveItem a:hover .c-btn::after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
    width: 100%;
  }

  .p-archiveItem a:hover .p-archiveItem__img img {
    scale: 1.1;
  }

  .p-archiveItem__title {
    font-size: 32px;
  }

  .p-archiveItem__message {
    font-size: 18px;
  }

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

  .p-article {
    font-size: 18px;
  }

  .p-article__title {
    font-size: max(43px, 36px);
    font-size: max(2.6875rem, 36px);
  }

  .p-article__head {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 24px;
  }

  .p-article__message {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 18px;
  }

  .p-article__subTitle {
    margin-top: 80px;
    margin-top: 5rem;
    font-size: 20px;
  }

  .p-article__tbody {
    border-top: none;
    border-bottom: 1px solid rgba(84, 84, 84, .2);
  }

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

  .p-article__tableHead {
    padding: initial;
    width: 20%;
    text-align: center;
  }

  .p-article__tableHead, .p-article__description {
    border-top: 1px solid rgba(84, 84, 84, .2);
    border-bottom: none;
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
  }

  .p-article__description {
    width: 80%;
  }

  .p-article__box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 100px;
  }

  .p-article__boxItem {
    padding: 45px 25px 25px 35px;
  }

  .p-article__boxImg {
    top: -40px;
    left: -40px;
    left: -2.5rem;
    width: 80px;
    height: 80px;
  }

  .p-article__boxTitle {
    top: -24px;
    left: 65px;
    padding: 0 5px;
    font-size: 24px;
  }

  .p-article__boxDetail {
    font-size: 16px;
  }

  .p-article__btn {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-breadcrumb {
    gap: 20px;
    gap: 1.25rem;
    font-size: 16px;
  }

  .p-careerContents__title {
    grid-area: 1/2/2/3;
    font-size: 43px;
    font-size: 2.6875rem;
  }

  .p-careerContents__title.p-careerContents__title--first {
    margin-top: 10px;
    margin-top: .625rem;
    text-align: left;
  }

  .p-careerContents__flex {
    gap: 33px 74px;
    gap: 2.0625rem 4.625rem;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto 1fr;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-careerContents__img {
    grid-area: 1/1/3/2;
    margin-top: 0;
  }

  .p-careerContents__text {
    grid-area: 2/2/3/3;
    font-size: 16px;
  }

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

  .p-careerModel__title {
    font-size: max(43px, 28px);
    font-size: max(2.6875rem, 28px);
  }

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

  .p-careerModel__contents {
    gap: 24px;
    gap: 1.5rem;
    margin-top: 84px;
    margin-top: 5.25rem;
  }

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

  .p-careerModel__step {
    font-size: max(24px, 18px);
    font-size: max(1.5rem, 18px);
  }

  .p-careerModel__message {
    font-size: max(24px, 18px);
    font-size: max(1.5rem, 18px);
  }

  .p-careerModel__deco {
    margin-top: 10px;
    margin-top: .625rem;
    max-width: 52px;
    max-width: 3.25rem;
  }

  .p-careerModel__yellow {
    margin-right: 5px;
    margin-right: .3125rem;
    font-size: max(30px, 24px);
    font-size: max(1.875rem, 24px);
  }

  .p-careerSupport__inner {
    padding-top: 63px;
    padding-top: 3.9375rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-careerSupport__headInner {
    gap: 0;
    grid-template-columns: 4.47fr 3.9fr;
  }

  .p-careerSupport__title {
    font-size: 30px;
    text-align: left;
  }

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

  .p-careerSupport__message {
    margin-top: 70px;
    margin-top: 4.375rem;
    font-size: 38px;
  }

  .p-careerSupport__center {
    gap: 26px;
    gap: 1.625rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-careerSupport__centerMessage {
    padding-left: 167px;
    padding-left: 10.4375rem;
    font-size: max(34.5px, 20px);
    font-size: max(2.15625rem, 20px);
    text-align: left;
  }

  .p-careerSupport__centerMessageMin {
    font-size: max(21px, 16px);
    font-size: max(1.3125rem, 16px);
  }

  .p-careerSupport__bottom {
    gap: 18.6px;
    gap: 1.1625rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-careerSupport__bottomMessage {
    grid-template-columns: 200px 1fr;
    padding-left: 167px;
    padding-left: 10.4375rem;
    font-size: max(21px, 16px);
    font-size: max(1.3125rem, 16px);
    -moz-text-align-last: left;
    text-align-last: left;
  }

  .p-careerSupport__bottomMessageFlex {
    gap: 35px;
    gap: 2.1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-careerSupport__bottomMessage-point {
    display: inline;
  }

  .p-careerSupport__yellow {
    position: absolute;
    top: 50%;
    left: 25px;
    left: 1.5625rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

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

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

  .p-company__textImg {
    margin-inline: initial;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 728px;
    max-width: 45.5rem;
  }

  .p-company__links {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .p-contents__item {
    gap: 7%;
    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: 0;
  }

  .p-contents__item:not(:first-of-type) {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-contents__texts {
    width: 38%;
  }

  .p-contents__subTitle {
    font-size: 20px;
  }

  .p-contents__mainTitle {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 40px;
  }

  .p-contents__message {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 16px;
  }

  .p-contents__img {
    aspect-ratio: 317/283;
    margin-top: 0;
    width: 55%;
    height: 100%;
  }

  .p-entry__contents {
    background-image: url(../../assets/img/top/entry.jpg);
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 400px;
    padding-bottom: 25rem;
  }

  .p-entry__btn a {
    padding: 40px;
    padding: 2.5rem;
    font-size: max(60px, 40px);
    font-size: max(3.75rem, 40px);
  }

  .p-entry__btn a:hover {
    color: #fff;
  }

  .p-entry__btn a:hover::after {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    width: 100%;
  }

  .p-footer__inner {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-footer__logos {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-footer__logos a {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-footer__logo img {
    width: 100%;
  }

  .p-footer__logo {
    max-width: 272px;
    max-width: 17rem;
  }

  .p-footer__logoShigeta {
    margin-left: 0;
    max-width: 173px;
    max-width: 10.8125rem;
  }

  .p-footer__instagram {
    margin-left: 40px;
    margin-left: 2.5rem;
  }

  .p-footer__address {
    margin-inline: auto;
    grid-area: initial;
    font-size: 16px;
  }

  .p-footer__list {
    gap: 17px;
    gap: 1.0625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0;
  }

  .p-footer__link a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
  }

  .p-footer__link a:hover {
    text-decoration: none;
  }

  .p-footer__link a::after {
    display: block;
    margin-left: 14px;
    margin-left: .875rem;
    content: '／';
  }

  .p-footer__copy {
    margin-top: 0;
    font-size: 14px;
  }

  .p-gallery {
    margin-inline: auto;
    max-width: 900px;
    max-width: 56.25rem;
  }

  .p-gallery__title {
    font-size: 48px;
  }

  .p-gallery__thumbnail {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-gallery .swiper-button-prev,
  .p-gallery .swiper-button-next {
    bottom: 5%;
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-gallery__text {
    bottom: 60px;
    bottom: 3.75rem;
  }

  .p-gallery__place {
    font-size: max(34px, 26px);
    font-size: max(2.125rem, 26px);
  }

  .p-gallery__message {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(24px, 16px);
    font-size: max(1.5rem, 16px);
  }

  .p-header {
    padding-left: 20px;
    padding-left: 1.25rem;
    height: 100px;
  }

  .p-header__logos {
    gap: 25px;
    gap: 1.5625rem;
    -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-header__logo:first-child {
    width: 180px;
    width: 11.25rem;
  }

  .p-header__logo:last-child {
    width: 160px;
    width: 10rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: 14px;
    gap: .875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
  }

  .p-header__nav li {
    height: inherit;
  }

  .p-header__nav li > a {
    display: grid;
    -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;
    height: inherit;
    font-size: max(18px, 14px);
    font-size: max(1.125rem, 14px);
    font-weight: 500;
  }

  .p-header__navLink.p-header__navLink--entry:hover {
    opacity: 1;
  }

  .p-header__navLink.p-header__navLink--entry:hover::after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
    width: 100%;
  }

  .p-header__drawer {
    display: none;
  }

  .p-intention {
    background-image: url(../../assets/img/top/intentionBg.jpg);
    padding: 0 0 98px;
    padding: 0 0 6.125rem;
  }

  .p-interview__contents {
    margin-left: auto;
    width: 94.1%;
  }

  .p-interview__head {
    gap: 215px;
    gap: 13.4375rem;
    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-interview__title {
    margin: initial;
  }

  .p-interview__textImg {
    margin-inline: initial;
    max-width: 728px;
    max-width: 45.5rem;
  }

  .p-interviewContents__item:nth-child(odd) .p-interviewContents__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

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

  .p-interviewContents__wrapper {
    gap: 20px;
    gap: 1.25rem;
    margin-inline: auto;
    display: grid;
    max-width: 600px;
  }

  .p-interviewContents__head {
    font-size: max(38px, 28px);
    font-size: max(2.375rem, 28px);
  }

  .p-interviewContents__message {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 16px;
  }

  .p-interviewFv {
    min-height: 747px;
    min-height: 46.6875rem;
  }

  .p-interviewFv__wrapper {
    top: 38%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .p-interviewFv__subTitle {
    padding: 5px 20px 5px;
    padding: .3125rem 1.25rem .3125rem;
    font-size: max(66px, 42px);
    font-size: max(4.125rem, 42px);
    line-height: 1;
  }

  .p-interviewFV__title {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: max(25px, 18px);
    font-size: max(1.5625rem, 18px);
  }

  .p-interviewList {
    gap: 20px 40px;
    gap: 1.25rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-interviewList__item a:hover::before {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }

  .p-interviewList__item a:hover {
    opacity: 1;
    text-decoration: none;
  }

  .p-interviewList__message {
    top: 400px;
    top: 25rem;
    font-size: min(24px, 1.2vw);
    font-size: min(1.5rem, 1.2vw);
  }

  .p-interviewList__message span:last-child {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-interviewList__meta {
    gap: 5px 25px;
    gap: .3125rem 1.5625rem;
    margin-left: 0;
  }

  .p-interviewList__meta span:first-of-type {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-interviewList__name {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-interviewList__category {
    margin-left: 14px;
    margin-left: .875rem;
    padding: 0 20px;
    padding: 0 1.25rem;
    font-size: max(16px, 14px);
    font-size: max(1rem, 14px);
  }

  .p-interviewList__description {
    font-size: max(18px, 14px);
    font-size: max(1.125rem, 14px);
  }

  .p-job {
    padding-bottom: 132px;
    padding-bottom: 8.25rem;
  }

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

  .p-job__title {
    margin-right: 100px;
    margin-right: 6.25rem;
  }

  .p-job__textImg {
    margin-inline: initial;
    margin-top: 0;
    max-width: 728px;
    max-width: 45.5rem;
  }

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

  .p-job__btn {
    gap: 21px;
    gap: 1.3125rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-lastMessage::after {
    background-size: contain;
    max-width: 100%;
  }

  .p-lastMessage::before {
    right: 10px;
    right: .625rem;
    width: 668px;
    width: 41.75rem;
    height: 613px;
    height: 38.3125rem;
  }

  .p-lastMessage__inner {
    padding-bottom: 357px;
    padding-bottom: 22.3125rem;
  }

  .p-lastMessage__img {
    aspect-ratio: 999/568;
  }

  .p-lastMessage__head {
    margin-top: -116px;
    margin-top: -7.25rem;
    margin-left: -24px;
    margin-left: -1.5rem;
    font-size: max(43px, 32px);
    font-size: max(2.6875rem, 32px);
  }

  .p-lastMessage__text {
    width: 76%;
    font-size: 16px;
  }

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

  .p-mv {
    padding-bottom: 74px;
    padding-bottom: 4.625rem;
  }

  .p-mv__img {
    width: 90%;
  }

  .p-mv__right {
    gap: 25.5px;
    gap: 1.59375rem;
    display: grid;
    top: 17%;
    right: 1%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-mv__copy {
    font-size: 16px;
    line-height: 2;
  }

  .p-numberContents {
    margin-top: 65px;
    margin-top: 4.0625rem;
  }

  .p-numberContents__text {
    font-size: 18px;
  }

  .p-numberContents__list {
    gap: 56px;
    gap: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-numberContents__item {
    padding-top: 47px;
    padding-top: 2.9375rem;
    padding-bottom: 47px;
    padding-bottom: 2.9375rem;
  }

  .p-numberContents__item.p-numberContents__itemGender {
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-numberContents__itemTitle {
    font-size: 33px;
  }

  .p-numberContents__itemImg.p-numberContents__itemGenderImg {
    width: 100%;
  }

  .p-numberContents__itemText {
    font-size: 16px;
  }

  .p-numberContents__itemText.p-numberContents__itemGenderText {
    margin-top: 36.5px;
    margin-top: 2.28125rem;
  }

  .p-numberContents__item.p-numberContents__itemAge {
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-numberContents__itemText.p-numberContents__itemAgeText {
    margin-top: 36.5px;
    margin-top: 2.28125rem;
  }

  .p-numberContents__item.p-numberContents__itemGraduation {
    grid-area: 2/1/3/3;
    padding-right: 70px;
    padding-right: 4.375rem;
    padding-left: 70px;
    padding-left: 4.375rem;
  }

  .p-numberContents__itemGraduationImg.p-numberContents__itemGraduationImg {
    margin-top: -76px;
    margin-top: -4.75rem;
    width: 91%;
  }

  .p-numberContents__item.p-numberContents__itemClub {
    grid-area: 3/1/4/3;
    padding-right: 70px;
    padding-right: 4.375rem;
    padding-left: 70px;
    padding-left: 4.375rem;
  }

  .p-numberContents__itemText.p-numberContents__itemClubText {
    margin-bottom: 0;
  }

  .p-numberContents__itemGrid {
    gap: 72px;
    gap: 4.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .p-numberContents__itemGrid::before {
    display: block;
    width: max(184px, 140px);
    width: max(11.5rem, 140px);
    height: max(141px, 100px);
    height: max(8.8125rem, 100px);
  }

  .p-numberContents__itemList {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 19px;
  }

  .p-numberContents__itemRight {
    position: absolute;
    right: 0;
    width: 40%;
  }

  .p-numberContents__item.p-numberContents__itemFactor {
    grid-area: 4/1/5/3;
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
  }

  .p-numberContents__itemBox {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

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

  .p-numberContents__itemBoxTitle {
    font-size: 25px;
  }

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

  .p-numberContents__itemBoxText {
    font-size: 16px;
  }

  .p-numberContents__itemBoxText.p-numberContents__itemBoxText--introduction {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-numberContents__itemBoxImg.p-numberContents__itemBoxImg--introduction {
    margin-top: 40.5px;
    margin-top: 2.53125rem;
  }

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

  .p-numberContents__item.p-numberContents__itemHoliday {
    grid-area: 5/1/6/3;
    padding-right: 154px;
    padding-right: 9.625rem;
    padding-left: 154px;
    padding-left: 9.625rem;
  }

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

  .p-numberFv {
    background-color: transparent;
    background-position: center;
    background-size: contain;
  }

  .p-numberFv__head {
    padding: 152px 0 373px;
    padding: 9.5rem 0 23.3125rem;
  }

  .p-numberFv__en {
    font-size: 66px;
    font-size: 4.125rem;
  }

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

  .p-outline__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: max(18px, 16px);
    font-size: max(1.125rem, 16px);
    text-align: center;
  }

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

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

  .p-pageForm__zip p {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 120px;
  }

  .p-pageForm__address p {
    gap: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-pageForm__address label {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 120px;
  }

  .p-pageForm__check {
    margin-top: 20px;
    margin-top: 1.25rem;
    text-align: center;
  }

  .p-pageForm__header {
    font-size: 20px;
  }

  .p-pageForm__form {
    gap: 30px;
    gap: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 60px 60px 80px;
    padding: 3.75rem 3.75rem 5rem;
    font-size: 18px;
  }

  .p-pageForm__form .wpcf7-not-valid-tip {
    font-size: 14px;
    white-space: nowrap;
  }

  .p-pageForm__item {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-pageForm__item dt {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
  }

  .p-pageForm__item dt span {
    margin-left: 14px;
    margin-left: .875rem;
    padding: 0 14px;
    padding: 0 .875rem;
    font-size: 14px;
  }

  .p-pageForm__message {
    margin-inline: auto;
    max-width: 80%;
  }

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

  .p-pageForm__confirm {
    gap: 30px;
    gap: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 60px 60px 80px;
    padding: 3.75rem 3.75rem 5rem;
    font-size: 18px;
  }

  .p-pageForm__confirmTitle {
    font-size: 20px;
  }

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

  .p-pageForm__confirmContents {
    margin-inline: auto;
    gap: 30px;
    gap: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 80%;
  }

  .p-pageForm__description-birth {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-pageForm__description-birth p {
    gap: 12px;
    gap: .75rem;
    width: 100%;
  }

  .p-pageForm__description-birth .wpcf7-form-control-wrap::after, .p-pageForm__addressSelect .wpcf7-form-control-wrap::after {
    right: 14px;
    right: .875rem;
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-pageForm__addressContainer {
    gap: 20px;
    gap: 1.25rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .error .error-message {
    font-size: 14px;
  }

  .p-pageForm__confirmBtn {
    margin-inline: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 80%;
  }

  .p-pageForm__confirmBtn p {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-pageInterviewDetail__top {
    margin-left: 30px;
    margin-left: 1.875rem;
    font-size: max(18px, 16px);
    font-size: max(1.125rem, 16px);
  }

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

  .p-pageWorkContents__title {
    margin-inline: auto;
    max-width: 800px;
    max-width: 50rem;
  }

  .p-pageWorkContents__list {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-pageWorkContents__item {
    gap: 5%;
    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-pageWorkContents__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-pageWorkContents__img {
    width: 40%;
  }

  .p-pageWorkContents__text {
    width: 55%;
  }

  .p-pageWorkContents__head {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: max(43px, 32px);
    font-size: max(2.6875rem, 32px);
  }

  .p-pageWorkContents__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: max(18px, 14px);
    font-size: max(1.125rem, 14px);
  }

  .p-subFv {
    padding: 60px 0 100px;
    padding: 3.75rem 0 6.25rem;
  }

  .p-subFv__img {
    aspect-ratio: 1200/600;
    width: 85%;
  }

  .p-subFv__img.p-subFv__img--works {
    margin-bottom: 0;
  }

  .p-subFv__head {
    bottom: -40px;
    bottom: -2.5rem;
    left: -100px;
    left: -6.25rem;
    padding: 20px;
    padding: 1.25rem;
    width: 100%;
    line-height: 1;
  }

  .p-subFv__head span {
    padding: 2px 30px 6px;
    padding: .125rem 1.875rem .375rem;
    font-size: max(66px, 28px);
    font-size: max(4.125rem, 28px);
  }

  .p-subFv__head.p-subFv__head--works {
    display: block;
    background-color: #1a3d9b;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-subFv__head.p-subFv__head--works span {
    padding-right: 0;
    padding-left: 0;
  }

  .p-subFv__message {
    margin-inline: auto;
    margin-top: 100px;
    margin-top: 6.25rem;
    width: 80%;
    font-size: 18px;
  }

  .p-subFv__message.p-subFv__message--work {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-subFv__breadcrumb {
    margin-inline: auto;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    width: 85%;
  }

  .p-subFv02 {
    height: 747px;
    height: 46.6875rem;
  }

  .p-subFv02__title {
    font-size: 66px;
    font-size: 4.125rem;
  }

  .p-subFv02__title span {
    padding: 5px 20px;
    padding: .3125rem 1.25rem;
  }

  .p-subFv02__subTitle {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-subFv02__title.p-subFv02__title--outline {
    font-size: 66px;
    font-size: 4.125rem;
  }

  .p-thanks__title {
    font-size: 32px;
  }

  .p-thanks__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 16px;
  }

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

  .p-topMessage {
    padding: 87px 0 91px;
    padding: 5.4375rem 0 5.6875rem;
  }

  .p-topMessage__text {
    margin-top: -18px;
    margin-top: -1.125rem;
    font-size: 22px;
    text-align: center;
  }

  .u-onlyPc {
    display: block;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

  .p-header__nav ul {
    gap: 20px;
    gap: 1.25rem;
  }
}

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

  .p-archive__head {
    white-space: nowrap;
  }

  .p-archiveItem__grid {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr 1.4fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-careerSupport__title {
    font-size: 35px;
  }

  .p-careerSupport__bottomMessage {
    grid-template-columns: 242px 1fr;
  }

  .p-contents {
    gap: 166px 20px;
    gap: 10.375rem 1.25rem;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-contents__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .p-contents__item:not(:first-of-type) {
    margin-top: 0;
  }

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

  .p-contents__subTitle.p-contents__subTitle--spBlue {
    color: #1389c7;
  }

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

  .p-contents__message {
    font-size: max(16px, 14px);
    font-size: max(1rem, 14px);
  }

  .p-entry__contents {
    padding-top: 90px;
    padding-top: 5.625rem;
  }

  .p-entry__btn a {
    padding: 56px;
    padding: 3.5rem;
  }

  .p-footer__inner {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__address {
    width: 90%;
  }

  .p-footer__copy {
    text-align: right;
  }

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

  .p-header__logo:first-child {
    width: 220px;
    width: 13.75rem;
  }

  .p-header__logo:last-child {
    width: 185px;
    width: 11.5625rem;
  }

  .p-header__navLink.p-header__navLink--entry {
    margin-left: 40px;
    margin-left: 2.5rem;
  }

  .p-intention {
    padding: 66px 0 98px;
    padding: 4.125rem 0 6.125rem;
  }

  .p-intention__contents {
    margin-inline: auto;
    width: 90%;
  }

  .p-interviewContents__item:nth-child(odd) .p-interviewContents__inner {
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-interviewContents__item:nth-child(odd) .p-interviewContents__inner::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #89BAE6;
    width: 12px;
    width: .75rem;
    height: 63%;
    content: '';
  }

  .p-interviewContents__item:nth-child(odd) .p-interviewContents__inner::after {
    display: block;
    position: absolute;
    top: 0;
    left: 55%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #89BAE6;
    width: 12px;
    width: .75rem;
    height: 63%;
    content: '';
  }

  .p-interviewContents__item:nth-child(even) .p-interviewContents__inner {
    padding-right: 40px;
    padding-right: 2.5rem;
  }

  .p-interviewContents__item:nth-child(even) .p-interviewContents__inner::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #89BAE6;
    width: 12px;
    width: .75rem;
    height: 63%;
    content: '';
  }

  .p-interviewContents__item:nth-child(even) .p-interviewContents__inner::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 44.5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #89BAE6;
    width: 12px;
    width: .75rem;
    height: 63%;
    content: '';
  }

  .p-interviewContents__inner {
    gap: 124px;
    gap: 7.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 172px;
    padding-top: 10.75rem;
    padding-bottom: 172px;
    padding-bottom: 10.75rem;
  }

  .p-interviewContents__wrapper {
    display: contents;
  }

  .p-interviewContents__text {
    display: block;
    width: 40%;
  }

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

  .p-interviewContents__img {
    aspect-ratio: 615/549;
    grid-area: 2/1/3/1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 52.3008849558%;
    -ms-flex: 0 0 52.3008849558%;
    flex: 0 0 52.3008849558%;
  }

  .p-interviewList {
    gap: 20px 62px;
    gap: 1.25rem 3.875rem;
  }

  .p-interviewList__message span:last-child {
    margin-left: 76px;
    margin-left: 4.75rem;
  }

  .p-lastMessage::before {
    right: 315px;
    right: 19.6875rem;
  }

  .p-lastMessage__text {
    margin-top: 48px;
    margin-top: 3rem;
    width: 76%;
    font-size: 18px;
  }
}

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

  .p-article__boxItem {
    padding-top: 25px;
    padding-top: 1.5625rem;
  }

  .p-article__boxTitle {
    left: 50px;
    padding: 0 14px;
  }
}

@media (min-width: 1650px) {

  .p-footer {
    width: 65%;
  }
}

@media (min-width: 1720px) {

  html {
    font-size: 16px;
  }
}

@media (min-width: 2000px) {

  .p-numberFv {
    background-color: #00B3C6;
    background-position: bottom;
  }
}

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

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */