@charset "UTF-8";



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

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

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', '游ゴシック体', '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', 'MS Pゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

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

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

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

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

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

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

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

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

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

cite {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 1;
  }

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

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #000;
}

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

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

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

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

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

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

form button[type=submit], form input[type=submit], form input[type=button] {
  border: none;
}

.wpcf7 input[type=file] {
  border: none;
}

.wpcf7-file {
  display: inline-block;
  border: 1px dotted #ccc;
  border-radius: .625rem;
  background-color: #fff;
  padding-left: 0;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
}

input[type=file]::file-selector-button {
  cursor: pointer;
  margin-right: 1em;
  border: 1px solid #999;
  border-radius: .625rem;
  background-color: #F2F2F2;
  padding: 1em;
  height: 100%;
}

.c-btn .c-btn--submit {
  width: 245px;
  width: 15.3125rem;
}

:root {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0049a5;
}

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

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

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

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

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

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

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

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .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);
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  gap: 16px;
  gap: 1rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: 6.25rem;
  background-color: #0049a5;
  padding: 16px 32px;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 245px;
  max-width: 15.3125rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.c-btn__text {
  display: inline-block;
}

.c-btn__icon {
  display: inline-block;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  height: 12px;
  height: .75rem;
}

/************************************************************************
* modifier
************************************************************************/

/* ▼ モディファイア：青いボタン */
.c-btn--blue {
  background-color: #ff8a00;
}

/* ▼ モディファイア：白いボタン */
.c-btn--white {
  background-color: #fff;
  color: #0049a5;
}

.c-btn--white .c-btn__icon {
  background-color: #0049a5;
}

/* ▼ モディファイア：CTAボタン */
.c-btn--cta {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-btn--cta .c-btn__icon {
  display: none;
}

.c-btn--cta-blue {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ff8a00;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-btn--cta-blue .c-btn__icon {
  display: none;
}

/* ▼ モディファイア：ヘッダー用ボタン */
.c-btn--header {
  border-radius: 62.4375rem;
  padding: 9px 21px;
  padding: .5625rem 1.3125rem;
}

.c-btn--header .c-btn__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.c-btn.c-btn--submit {
  width: 200px;
  width: 12.5rem;
}

.c-btn.c-btn--back {
  background-color: #ff8a00;
  width: 200px;
  width: 12.5rem;
}

.c-faq {
  margin-inline: auto;
  border-radius: .5rem;
  background-color: #f8f9fa;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
}

.c-faq__item {
  border-bottom: 1px solid #999;
  padding: 24px 0;
  padding: 1.5rem 0;
}

.c-faq__item:last-child {
  border-bottom: none;
}

.c-faq__question {
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  padding: 12px 40px 12px 0;
  padding: .75rem 2.5rem .75rem 0;
  width: 100%;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.c-faq__answer {
  display: none;
  margin-top: 8px;
  margin-top: .5rem;
  border-radius: .25rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  color: #555;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.accordion-title {
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  padding-right: 2.5rem;
  font-weight: 700;
}

.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background: #005F88;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.accordion-title::after {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background: #005F88;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.accordion-title.open::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion-title.open::after {
  opacity: 0;
}

.c-heading {
  text-align: center;
}

.c-heading__en {
  display: inline-block;
  position: relative;
  color: #0049a5;
  font-family: 'Arial Black', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-heading__en::after {
  position: absolute;
  bottom: -8px;
  bottom: -.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0049a5;
  width: 64px;
  width: 4rem;
  height: 4px;
  height: .25rem;
  content: '';
}

.c-heading__ja {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}

/* モディファイア：左寄せ */
.c-heading--left {
  text-align: left;
}

.c-heading--left .c-heading__en::after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

.c-heading--left .c-heading__ja {
  text-align: left;
}

/* モディファイア：白文字化 */
.c-heading--white .c-heading__en {
  color: #fff;
}

.c-heading--white .c-heading__en::after {
  background-color: #fff;
}

.c-heading--white .c-heading__ja {
  color: #fff;
}

.c-page-btn {
  gap: 12px;
  gap: .75rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 2px solid #ff8a00;
  border: .125rem solid #ff8a00;
  border-radius: 62.4375rem;
  background-color: transparent;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 325px;
  width: 20.3125rem;
  height: 60px;
  height: 3.75rem;
  color: #ff8a00;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.c-page-btn__icon {
  display: inline-block;
  position: relative;
  bottom: -4px;
  bottom: -.25rem;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.c-page-btn__icon img {
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  height: auto;
}

.c-page-btn__icon--tie {
  bottom: 0;
  width: 15px;
  width: .9375rem;
}

.c-page-btn__icon--tie img {
  width: 100%;
  height: auto;
}

.c-page-btn__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}

.c-page-btn__text--hr {
  text-align: center;
}

.c-section-heading__title {
  position: relative;
  color: #2C3E50;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.c-section-heading__title::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-right: .5rem;
  background-color: #0049a5;
  width: 4px;
  width: .25rem;
  height: 28px;
  height: 1.75rem;
  content: '';
}

.c-section-heading--secondary .c-section-heading__title {
  color: #fff;
}

.c-section-heading--secondary .c-section-heading__title::before {
  background-color: #ff8a00;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -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);
  background-color: #ff8a00;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 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-talk {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-talk__img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  overflow: hidden;
}

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

.p-talk__bubble {
  position: relative;
  border-radius: .75rem;
  background-color: #e6f6ff;
  padding: 16px;
  padding: 1rem;
  max-width: 800px;
  max-width: 50rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-talk__bubble::before {
  position: absolute;
  top: 15%;
  left: -12px;
  left: -.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 6px 12px 6px 0;
  border-width: .375rem .75rem .375rem 0;
  border-style: solid;
  border-color: transparent #e6f6ff transparent transparent;
  width: 0;
  height: 0;
  content: '';
}

/* 吹き出し色：話者ごとに切り替え（.p-talk にクラスを付ける） */
.p-talk.is-blue .p-talk__bubble {
  background-color: #e6f6ff;
}

.p-talk.is-blue .p-talk__bubble::before {
  border-color: transparent #e6f6ff transparent transparent;
}

.p-talk.is-purple .p-talk__bubble {
  background-color: #f1eeff;
}

.p-talk.is-purple .p-talk__bubble::before {
  border-color: transparent #f1eeff transparent transparent;
}

.p-talk.is-yellow .p-talk__bubble {
  background-color: #fffde3;
}

.p-talk.is-yellow .p-talk__bubble::before {
  border-color: transparent #fffde3 transparent transparent;
}

.p-talk.is-green .p-talk__bubble {
  background-color: #e9fff1;
}

.p-talk.is-green .p-talk__bubble::before {
  border-color: transparent #e9fff1 transparent transparent;
}

.p-about-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  font-size: 16px;
  font-size: 1rem;
}

.p-about-table tr {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.p-about-table th,
.p-about-table td {
  vertical-align: top;
  border: none;
  padding: 16px 12px;
  padding: 1rem .75rem;
  text-align: left;
}

.p-about-table th {
  border-right: 1px solid #999;
  background-color: #F0FAFF;
  width: 30%;
  color: #005F88;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.p-about-table td {
  width: 70%;
}

.p-about {
  margin-top: 80px;
  margin-top: 5rem;
  background-color: #0049a5;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  color: #fff;
}

.p-about__wrapper {
  gap: 48px;
  gap: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-about__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

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

.p-about__img-sp {
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
}

.p-about__img-pc {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-about__img-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 300px;
  width: 18.75rem;
  height: 200px;
  height: 12.5rem;
}

.p-about__img-item {
  position: absolute;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  overflow: hidden;
}

.p-about__img-item:first-child {
  top: 0;
  left: 0;
  z-index: 2;
}

.p-about__img-item:last-child {
  right: 0;
  bottom: 20px;
  bottom: 1.25rem;
  z-index: 1;
}

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

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

/*----------------------------------------
p-benefits-card.scss
----------------------------------------*/
.p-benefits-card {
  max-width: 300px;
  max-width: 18.75rem;
}

.p-benefits-card__icon {
  margin-inline: auto;
  width: 102px;
  width: 6.375rem;
  height: 102px;
  height: 6.375rem;
}

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

.p-benefits-card__title {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.p-benefits-card__number {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1;
  text-align: center;
}

.p-benefits-card__number--big {
  margin-right: 4px;
  margin-right: .25rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.p-benefits-card__text {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
  text-align: left;
}

/*----------------------------------------
p-benefits-card.scss
----------------------------------------*/
.p-benefits-cards {
  gap: 40px 24px;
  gap: 2.5rem 1.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  max-width: 37.5rem;
}

.p-breadcrumb {
  background-color: #ff8a00;
  padding: 2px 0;
  padding: .125rem 0;
  color: #fff;
}

.p-card2col-items {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*----------------------------------------
 メッセージカード
----------------------------------------*/
.p-card2col {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-card2col__body {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-card2col__image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-card2col__image {
  margin-inline: auto;
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  overflow: hidden;
}

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

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

.p-card2col__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-card2col__right-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: right;
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  z-index: 42;
  cursor: pointer;
  background-color: #ff8a00;
  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: #000;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

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

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

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

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

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

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

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

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

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

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #F0FAFF;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #000;
  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: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

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

.p-entry-thanks__text {
  text-align: center;
}

.p-entry-thanks__text p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}

.p-entry-form__thanks-notice {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-entry {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-environment-benefits {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-environment-benefits__cards {
  margin-top: 16px;
  margin-top: 1rem;
}

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

.p-environment-hr__text {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 1.8;
}

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

.p-environment-office__text {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 1.8;
}

.p-environment-office__icons {
  gap: 24px;
  gap: 1.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 21px;
  margin-top: 1.3125rem;
  max-width: 400px;
  max-width: 25rem;
}

.p-environment-office__icon {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.p-environment-office__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  text-shadow: 0 .125rem .5rem rgba(0, 0, 0, .5);
  white-space: nowrap;
}

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

.p-environment-training__text {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 1.8;
}

.p-environment {
  background: #0049a5;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-environment__wrapper {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-environment__image-sp {
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: 50%;
  width: 250px;
  width: 15.625rem;
  height: 250px;
  height: 15.625rem;
  overflow: hidden;
}

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

.p-environment__image-pc {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -webkit-flex: 0 0 18.75rem;
  -ms-flex: 0 0 300px;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 300px;
  flex: 0 0 18.75rem;
  border-radius: 50%;
  width: 300px;
  width: 18.75rem;
  height: 300px;
  height: 18.75rem;
  overflow: hidden;
  text-align: center;
}

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

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

.p-environment__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

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

.p-environment-office__icons {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-environment-office__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  width: 12.5rem;
  text-align: center;
}

.p-environment-office__icon img {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  border-radius: 50%;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-environment-office__label {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

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

.p-environment-content__items {
  gap: 80px;
  gap: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-environment-content__wrapper {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-environment-content__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-environment-content__image {
  margin-inline: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  max-width: 100%;
  overflow: hidden;
}

.p-environment-content__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-environment-content__head {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-environment-content__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

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

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

.p-footer {
  margin-top: 80px;
  margin-top: 5rem;
  background: #F0FAFF;
}

.p-footer__contents {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 0;
  padding: 2.5rem 0;
}

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

.p-footer__logoBlock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-footer__logo {
  width: 200px;   /* ← 好きなサイズ */
  height: auto;
  margin-right: 0; /* ← 社名を消したので不要 */
}


.p-footer__companyName {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-footer__address {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #2C3E50;
  line-height: 1.6;
  text-align: left;
}

.p-footer__corporateLink {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-footer__corporateLink a {
  color: #2C3E50;
  text-decoration: none;
}

.p-footer__divider {
  display: none;
}

.p-footer__nav {
  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__navList {
  gap: 12px 16px;
  gap: .75rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 14px;
  font-size: .875rem;
  text-align: left;
}

.p-footer__navList li {
  width: 100%;
  text-align: left;
}

.p-footer__navList li a {
  color: #2C3E50;
  text-decoration: none;
}

.p-footer__copy {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #ff8a00;
  padding: 10px 0;
  padding: .625rem 0;
  width: 100vw;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}

/*------------------------------
  共通スタイル
------------------------------*/
.p-form {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-form__table {
  border-top: 1px solid #999;
  border-collapse: collapse;
  width: 100%;
}

.p-form__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-form__table th,
.p-form__table td {
  vertical-align: top;
  border-bottom: 1px solid #999;
  padding: 1em;
}

.p-form__table th {
  background-color: #eaf6fb;
  color: #005F88;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.p-form__table td {
  background-color: #fff;
}

/* 必須ラベル */
.p-form__required {
  display: inline-block;
  margin-left: .5em;
  border-radius: .25rem;
  background-color: #e60033;
  padding: 0 6px;
  color: #fff;
  font-size: 12px;
}

/* 入力フィールド */
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: .5rem;
  padding: .6em;
  width: 100%;
  max-width: 100%;
  font-size: 16px;
}

/* 入力フィールドの幅調整 */

.select-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 500px;
}

.select-wrapper::after {
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/icon-select.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  pointer-events: none;
  content: '';
}

.p-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .5rem;
  background-color: #fff;
  padding: 10px 30px 10px 12px;
  padding: .625rem 1.875rem .625rem .75rem;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}

.p-form textarea {
  height: 120px;
  height: 7.5rem;
}

.p-form__name-fields {
  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;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-form__name-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px !important;
  margin-left: -1.25rem !important;
}

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

.p-form__email-fields {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

/* ファイルアップロード */
.p-form input[type=file] {
  border: none;
  padding: 0;
  font-size: 14px;
}

/* 同意チェック */
.p-form__consent {
  margin-top: 2em;
  font-size: 14px;
  text-align: center;
}

.p-form__consent input[type=checkbox] {
  margin-right: .5em;
}

.p-form__consent-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.p-form__privacy-policy {
  color: #005F88;
  text-decoration: underline;
}

/* 送信ボタン */
.p-form__submit {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-form__submit.p-form__submit--confirm {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-form__email-fields {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.p-fv-message__title {
  display: inline-block;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-fv-message__title--main {
  color: #ff8a00;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}

.p-fv-message__title::after {
  display: block;
  margin: 16px auto 0;
  margin: 1rem auto 0;
  background-color: #808080;
  width: 80px;
  width: 5rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-fv-message__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
}

.p-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  min-height: 37.5rem;
  overflow: hidden;
}

.p-fv__bg {
  inset: 0;
  position: absolute;
  z-index: 0;
}

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

.p-fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: 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;
  z-index: 1;
  padding: 0 16px;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.p-fv__content {
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0 16px;
  padding: 0 1rem;
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  text-align: center;
}

.p-fv__copy {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.8;
  white-space: nowrap;
}

.p-fv__copy--orange {
  color: #0049a5;
  font-weight: 900;
}

.p-fv__btns {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-header {
  position: absolute;
  z-index: 20;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
  background-color: transparent;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
}

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

.p-header__logo {
  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;
  z-index: 39;
  height: 90%;
}

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

.p-header__logoImage {
  margin-right: 4px;
  margin-right: .25rem;
  width: 30px;
  width: 1.875rem;
  height: auto;
}

.p-header__sitename {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 4px;
  margin-right: .25rem;
}

.p-header__sitenameMain {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.p-header__sitenameSub {
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
}

.p-header__nav {
  display: none;
}

.p-header__entry {
  display: none;
}

.p-header__entry-drawer {
  display: inline-block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-interview-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  padding: 16px;
  padding: 1rem;
  text-align: left;
}

.p-interview-card__image {
  aspect-ratio: 5/6;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.p-interview-card__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interview-card__body {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-interview-card__title {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-interview-card__meta {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-interview-message {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #fff;
  overflow: hidden;
}

.p-interview-message__inner {
  aspect-ratio: 3/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.p-interview-message__img::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, .9);
  width: 55%;
  height: 100%;
  content: '';
}

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

.p-interview-message__text-block {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 9px 3px 12px 30px;
  padding: .5625rem .1875rem .75rem 1.875rem;
  width: 50%;
  /* height: 100%; */
  height: auto;
}

.p-interview-message__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-interview-message__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-interview-message__name {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: bold;
  text-align: right;
}

.p-interview-qa__wrapper + .p-interview-qa__wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-interview-newcomer {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-interview-newcomer__head {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-interview-newcomer__cards {
  gap: 54px;
  gap: 3.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.p-interview-qa__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-interview-qa__head {
  border-bottom: 1px solid #0d0d0d;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-interview-qa__body {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-interview-qa__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-interview-qa__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-interview-senior {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-interview-senior__head {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-interview-senior__cards {
  gap: 54px;
  gap: 3.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

.p-member {
  display: inline-block;
  text-align: center;
}

.p-member__img {
  margin-inline: auto;
  border-radius: 50%;
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  overflow: hidden;
}

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

.p-member__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
}

.p-member__text {
  margin-top: 4px;
  margin-top: .25rem;
  border-top: 1px dashed #B3B3B3;
  padding-top: 8px;
  padding-top: .5rem;
  font-size: 13px;
  font-size: .8125rem;
}

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

.p-message__body {
  gap: 48px;
  gap: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-message__img {
  aspect-ratio: 400/530;
  border-radius: 1.25rem;
  overflow: hidden;
}

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

.p-message__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-message__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

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

.p-message__signature {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: right;
}

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

.p-news-card__link {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-bottom: 1px dotted #ccc;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  color: inherit;
  text-decoration: none;
}

.p-news-card__meta {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news-card__date {
  display: block;
  color: #005f88;
  font-size: 14px;
  font-size: .875rem;
  font-weight: bold;
}

.p-news-card__title {
  margin-top: 8px;
  margin-top: .5rem;
  color: #005f88;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}

.p-news-card__excerpt {
  margin-top: 9px;
  margin-top: .5625rem;
  line-height: 2;
}

.p-oneday-message {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-oneday-message__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-oneday-message__img img {
  display: block;
  width: 100%;
  height: auto;
}

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

.p-oneday__wrapper {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-oneday__image-sp {
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: 50%;
  width: 250px;
  width: 15.625rem;
  height: 250px;
  height: 15.625rem;
  overflow: hidden;
}

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

.p-oneday__image-pc {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -webkit-flex: 0 0 18.75rem;
  -ms-flex: 0 0 300px;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 300px;
  flex: 0 0 18.75rem;
  border-radius: 50%;
  width: 300px;
  width: 18.75rem;
  height: 300px;
  height: 18.75rem;
  overflow: hidden;
  text-align: center;
}

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

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

.p-oneday__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

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

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

.p-page-about__heading {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-about__head {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-about__table {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-about__btns {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-page-cta {
  text-align: center;
}

.p-page-cta__items {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-page-entry__form {
  margin-top: 16px;
  margin-top: 1rem;
}

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

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

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

.p-page-about__heading {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-future__btns {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-page-fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  height: 15rem;
  overflow: hidden;
}

.p-page-fv__bg {
  inset: 0;
  position: absolute;
  background-position: center;
  background-size: cover;
}

.p-page-fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-page-fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  padding: 0 16px;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

.p-page-fv__title {
  z-index: 3;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .6);
  text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .6);
}

.p-page-growth {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-page-growth__items {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-page-growth__item {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  text-align: center;
}

.p-page-growth__image {
  aspect-ratio: 1/1;
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

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

.p-page-growth__label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, .5);
  text-shadow: 0 0 .25rem rgba(0, 0, 0, .5);
  white-space: nowrap;
}

.p-page-growth__text {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
  text-align: justify;
}

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

.p-page-hr__video {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.p-page-hr__video img {
  display: block;
  width: 100%;
  height: auto;
}

.p-page-hr__video-thumbnail {
  margin-inline: auto;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
}

.p-page-hr__video-thumbnail::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: background-color .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: background-color .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  -webkit-box-shadow: 0 0 .5rem rgba(0, 0, 0, .2);
  box-shadow: 0 0 .5rem rgba(0, 0, 0, .2);
  border-radius: 50%;
  background-color: rgba(255, 0, 0, .6);
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  content: '';
}

.p-page-hr__video-thumbnail::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-top: 12px solid transparent;
  border-top: .75rem solid transparent;
  border-bottom: 12px solid transparent;
  border-bottom: .75rem solid transparent;
  border-left: 18px solid #fff;
  border-left: 1.125rem solid #fff;
  width: 0;
  height: 0;
  content: '';
}

.p-page-hr__video-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.p-page-hr__btns {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

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

.p-page-message__video {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.p-page-message__video-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 1.25rem;
  width: 100%;
  overflow: hidden;
}

.p-page-message__video-thumbnail video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-message__video img {
  display: block;
  width: 100%;
  height: auto;
}

.p-page-message__video-thumbnail {
  margin-inline: auto;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.p-page-message__video-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.p-page-message__btns {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-page-message .p-card2col__image {
  aspect-ratio: 3/4;
  border-radius: 1.25rem;
}

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

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

.p-page-news__wrap {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-news__head {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-news__content {
  margin-top: 4px;
  margin-top: .25rem;
}

.p-page-news__pagination {
  margin-top: 16px;
  margin-top: 1rem;
}

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

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

.p-page-oneday__title,
.p-page-oneday__message-title {
  margin-top: 32px;
  margin-top: 2rem;
  border-bottom: 1px solid #0d0d0d;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-page-oneday__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-page-oneday__wrapper {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-page-oneday__oneday {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-oneday__profile {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.p-page-oneday__schedule {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.p-page-oneday__message {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-point {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-page-point__items {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-page-point__item {
  margin: 0 auto;
  max-width: 360px;
  max-width: 22.5rem;
  text-align: center;
}

.p-page-point__icon {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2e3e50;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

.p-page-point__icon-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-point__icon-text {
  position: relative;
  z-index: 2;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-page-point__title {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-page-point__text {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
  text-align: justify;
}

.p-page-privacy-policy {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-page-purpose {
  margin-top: 30px;
  margin-top: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#ff8a00), to(#0049a5));
  background: linear-gradient(to right, #ff8a00, #0049a5);
  padding: 30px 0;
  padding: 1.875rem 0;
  color: #fff;
}

.p-page-purpose__head {
  text-align: center;
}

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

.p-page-purpose__sub {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-page-purpose__items {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-page-purpose__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.p-page-purpose__img img {
  width: 100%;
  height: auto;
}

.p-page-purpose__text {
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
  text-align: justify;
}

.p-page-single__pagination {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

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

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

.p-page-tag {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  background-color: #E9F5F7;
  padding: 6px 16px;
  padding: .375rem 1rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.p-page-tag--active {
  background-color: #1094BD;
  color: #fff;
}

.c-single-tag {
  display: inline-block;
  background-color: #E9F5F7;
  padding: 2px 10px;
  padding: .125rem .625rem;
  color: #000;
  font-size: 12px;
  font-size: .75rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.p-page-tags {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-page-vision {
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #0049a5;
  padding: 30px 0;
  padding: 1.875rem 0;
}

.p-page-vision__body {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-vision__image {
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0%;
  width: 260px;
  width: 16.25rem;
  overflow: hidden;
}

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

.p-page-vision__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
}

.p-page-vision__text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-paginate {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-paginateLink,
.p-paginate__backBtn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 62.4375rem;
  padding: 12px 32px;
  padding: .75rem 2rem;
  min-width: 160px;
  min-width: 10rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.p-paginateLink {
  background-color: #F2F2F2;
  color: #666;
}

.p-paginate__backBtn {
  background-color: #ff8a00;
  color: #fff;
}

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

.page-numbers {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  border: 1px solid #005f88;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #005f88;
  font-size: 14px;
  font-size: .875rem;
  text-decoration: none;
}

.page-numbers + .page-numbers {
  margin-left: 12px;
  margin-left: .75rem;
}

.page-numbers.current {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #005f88;
  pointer-events: none;
  color: #fff;
}

.page-numbers.dots {
  border: none;
  pointer-events: none;
  color: #aaa;
}

.page-numbers.prev,
.page-numbers.next {
  font-size: 14px;
  font-size: .875rem;
}

.p-privacy-policy h2 {
  margin-top: 24px;
  margin-top: 1.5rem;
  border-left: 4px solid #ff8a00;
  border-left: .25rem solid #ff8a00;
  padding-left: 12px;
  padding-left: .75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-privacy-policy h3 {
  margin-top: 24px;
  margin-top: 1.5rem;
  border-left: 3px solid #ff8a00;
  border-left: .1875rem solid #ff8a00;
  padding-left: 10px;
  padding-left: .625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-privacy-policy p {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-privacy-policy ul {
  margin-top: 12px;
  margin-top: .75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  list-style: disc;
}

.p-privacy-policy ul li {
  margin-top: 9px;
  margin-top: .5625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-privacy-policy a {
  color: #ff8a00;
  text-decoration: underline;
}

.p-privacy-policy__footer {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  padding-top: 1.25rem;
  text-align: right;
}

.p-privacy-policy__footer .p-privacy-policy__date,
.p-privacy-policy__footer .p-privacy-policy__company {
  color: #666;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.6;
}

.p-privacy-policy__footer .p-privacy-policy__date {
  margin-top: 8px;
  margin-top: .5rem;
}

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

.p-profile__image {
  width: 100%;
}

.p-profile__image img {
  aspect-ratio: 493/334;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-profile__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-profile__title {
  color: #0049a5;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
}

.p-profile__info {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-profile__job {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-profile__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-profile__description {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

/*----------------------------------------
p-recruit-archive.scss
----------------------------------------*/
.p-recruit-archive {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-recruit-archive__items {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-recruit-archive__item {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  color: inherit;
  text-decoration: none;
}

.p-recruit-archive__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: border-color .3s, -webkit-box-shadow .3s;
  transition: border-color .3s, -webkit-box-shadow .3s;
  transition: border-color .3s, box-shadow .3s;
  transition: border-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  border: 1px solid #999;
  border-radius: .75rem;
  background-color: #fff;
  padding: 16px 16px;
  padding: 1rem 1rem;
}

.p-recruit-archive__title {
  color: #005F88;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}

.p-recruit-archive__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-recruit-archive__link {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-recruit-archive__arrow {
  display: none;
}

.p-recruit-archive__arrow-icon {
  display: none;
}

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

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

.p-recruit-cta__contents {
  background-color: #F0FAFF;
  padding: 24px 12px;
  padding: 1.5rem .75rem;
}

.p-recruit-cta__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-recruit-cta__btns {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/*----------------------------------------
p-recruit-single.scss
----------------------------------------*/
.p-recruit-single {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-recruit-single__article {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-recruit-single__table {
  display: block;
  margin-top: 9px;
  margin-top: .5625rem;
  border-collapse: collapse;
  width: 100%;
}

.p-recruit-single__table tr {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-recruit-single__table th,
.p-recruit-single__table td {
  display: block;
  vertical-align: top;
  padding: 8px 0;
  padding: .5rem 0;
  width: 100%;
  line-height: 1.7;
  text-align: left;
}

.p-recruit-single__table th {
  background-color: #F0FAFF;
  color: #005F88;
  font-weight: 600;
  text-align: center;
}

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

.p-schedule {
  background-color: #E9F5F7;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  height: 100%;
}

.p-schedule__head {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-schedule__title {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1094BD;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
}

.p-schedule__icon {
  aspect-ratio: 1/1;
  width: 28px;
  width: 1.75rem;
}

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

.p-schedule__timeline {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-schedule__timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  left: 2.5rem;
  background-color: #1B1F37;
  width: 2px;
  width: .125rem;
  content: '';
}

.p-schedule__item {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-schedule__time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  background-color: #1094BD;
  width: 80px;
  width: 5rem;
  height: 36px;
  height: 2.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
}

.p-schedule__activity {
  margin-top: 6px;
  margin-top: .375rem;
  color: #1B1F37;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.6;
}

.p-single__header {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-single__title {
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-bottom: 1px solid #B3B3B3;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 12px;
  padding-left: .75rem;
  color: #2c3e50;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-single__title::before {
  position: absolute;
  top: 3px;
  top: .1875rem;
  left: 0;
  background-color: #0049a5;
  width: 4px;
  width: .25rem;
  height: 35px;
  height: 2.1875rem;
  content: '';
}

.p-single__meta {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-single__body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-single__body p {
  margin-top: 6px;
  margin-top: .375rem;
}

.p-single__body strong {
  color: #000;
  font-weight: 700;
}

.p-single__body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-single__body ul {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  list-style: disc;
}

.p-single__body h2, .p-single__body h3, .p-single__body h4 {
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #005F88;
}

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

.p-single__body h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-single__news-blocks {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-news-block {
  gap: 20px;
  gap: 1.25rem;
  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-news-block__image {
  width: 100%;
}

.p-news-block__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-news-block__content {
  width: 100%;
}

.p-single__news-blocks .p-news-block__heading {
  margin-top: 0;
  color: #005F88;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-news-block__text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-story-content {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-story-content__head {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-story-content__body {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-story-content__wrapper + .p-story-content__wrapper .p-story-content__body {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-story-content__body h3 {
  color: #005F88;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-story-content__body p {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-story-content__image {
  margin-top: 16px;
  margin-top: 1rem;
}

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

.p-story-episode {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-story-episode__body {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-story-episode__body h3 {
  color: #005F88;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-story-episode__member {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-story-episode__member-items {
  gap: 21px;
  gap: 1.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-story-episode__talk {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-story {
  margin-top: 80px;
  margin-top: 5rem;
  background-color: #0049a5;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  color: #fff;
}

.p-story__inner {
  margin: 0 auto;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-story__images-wrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-story__images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-story__images li {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  overflow: hidden;
}

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

.p-story__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-story__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

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

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

.p-work__list {
  gap: 24px;
  gap: 1.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 400px;
  max-width: 25rem;
}

.p-work__item {
  position: relative;
  -webkit-flex-basis: calc((100% - 3rem) / 3);
  -ms-flex-preferred-size: calc((100% - 3rem) / 3);
  flex-basis: calc((100% - 3rem) / 3);
}

.p-work__img {
  aspect-ratio: 5/7;
  position: relative;
  border-radius: 10.75rem;
  overflow: hidden;
}

.p-work__img::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, .6)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, .6) 100%);
  width: 100%;
  height: 100%;
  content: '';
}

.p-work__img img {
  display: block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-work__caption {
  position: absolute;
  bottom: 54px;
  bottom: 3.375rem;
  left: 0;
  z-index: 5;
  padding: 0 12px;
  padding: 0 .75rem;
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-work__catch {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-work__detail {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-work__text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
  text-align: left;
}

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

.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-hidden {
  display: none !important;
}

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

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

  html {
    font-size: 1.5094339623vw;
  }

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

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

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

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

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

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

  .c-btn--cta {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-btn--cta-blue {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-btn.c-btn--submit {
    width: 240px;
    width: 15rem;
  }

  .c-btn.c-btn--back {
    width: 240px;
    width: 15rem;
  }

  .c-faq {
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
  }

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

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

  .c-heading__en {
    font-size: 63px;
    font-size: 3.9375rem;
  }

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

  .c-page-btn {
    gap: 24px;
    gap: 1.5rem;
  }

  .c-page-btn__text {
    font-size: 22px;
    font-size: 1.3rem;
  }

  .c-page-btn__text--hr {
    font-size: 19px;
    font-size: 1.1875rem;
  }

  .c-section-heading__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-talk {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-talk__img {
    width: 140px;
    width: 8.75rem;
    height: 140px;
    height: 8.75rem;
  }

  .p-talk__bubble {
    margin-right: 180px;
    margin-right: 11.25rem;
  }

  .p-talk__bubble::before {
    top: 60%;
  }

  .p-talk: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-talk:nth-child(even) .p-talk__bubble {
    margin-right: 0;
    margin-left: 180px;
    margin-left: 11.25rem;
  }

  .p-talk:nth-child(even) .p-talk__bubble::before {
    right: -12px;
    right: -.75rem;
    left: auto;
    border-width: 6px 0 6px 12px;
    border-width: .375rem 0 .375rem .75rem;
    border-color: transparent transparent transparent #e6f6ff;
  }

  .p-talk:nth-child(even).is-blue .p-talk__bubble::before {
    border-color: transparent transparent transparent #e6f6ff;
  }

  .p-talk:nth-child(even).is-purple .p-talk__bubble::before {
    border-color: transparent transparent transparent #f1eeff;
  }

  .p-talk:nth-child(even).is-yellow .p-talk__bubble::before {
    border-color: transparent transparent transparent #fffde3;
  }

  .p-talk:nth-child(even).is-green .p-talk__bubble::before {
    border-color: transparent transparent transparent #e9fff1;
  }

  .p-about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }

  .p-about__contents {
    width: 40%;
  }

  .p-about__btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: right;
  }

  .p-about__img-pc {
    margin-top: 32px;
    margin-top: 2rem;
    width: 60%;
    text-align: center;
  }

  .p-about__img-list {
    width: 500px;
    width: 31.25rem;
    height: 280px;
    height: 17.5rem;
  }

  .p-about__img-item {
    width: 280px;
    width: 17.5rem;
    height: 280px;
    height: 17.5rem;
  }

  .p-about__img-item:last-child {
    bottom: 0;
  }

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

  .p-benefits-card__icon {
    width: 120px;
    width: 7.5rem;
    height: 120px;
    height: 7.5rem;
  }

  .p-benefits-cards {
    gap: 60px 40px;
    gap: 3.75rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .p-card2col-items {
    gap: 60px;
    gap: 3.75rem;
  }

  .p-card2col {
    gap: 32px;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-card2col__body {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .p-card2col__image {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .p-card2col: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-card2col__image {
    max-width: 300px;
    max-width: 18.75rem;
  }

  .p-card2col__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-card2col__right-text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-entry-form__thanks-notice {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-entry {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }

  .p-environment-benefits {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-environment-benefits__cards {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-environment-hr {
    margin-top: 76px;
    margin-top: 4.75rem;
  }

  .p-environment-hr__wrapper {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-environment-hr__content {
    width: 60%;
  }

  .p-environment-hr__text {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-environment-hr__image {
    width: 40%;
  }

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

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

  .p-environment-office__icons {
    gap: 40px;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: none;
  }

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

  .p-environment-training {
    margin-top: 76px;
    margin-top: 4.75rem;
  }

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

  .p-environment-training__content {
    width: 60%;
  }

  .p-environment-training__text {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-environment-training__image {
    width: 40%;
  }

  .p-environment__wrapper {
    gap: 64px;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .p-environment__btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: right;
  }

  .p-environment-office__icons {
    gap: 24px;
    gap: 1.5rem;
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-environment-office__icon {
    width: 300px;
    width: 18.75rem;
  }

  .p-environment-office__icon img {
    margin-bottom: 12px;
    margin-bottom: .75rem;
    width: 300px;
    width: 18.75rem;
    height: 300px;
    height: 18.75rem;
  }

  .p-environment-office__label {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-environment-content__wrapper {
    gap: 45px;
    gap: 2.8125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }

  .p-environment-content__item:nth-child(even) .p-environment-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-environment-content__text {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 60%;
  }

  .p-environment-content__image {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 40%;
  }

  .p-environment-content__description {
    font-size: 18px;
    font-size: 1.125rem;
  }

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

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

  .p-footer__contents {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

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

  .p-footer__company .p-footer__address {
    text-align: left;
  }

  .p-footer__corporateLink {
    text-align: left;
  }

  .p-footer__divider {
    display: block;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    background: #ff8a00;
    width: 1px;
    width: .0625rem;
    height: 92px;
    height: 5.75rem;
  }

  .p-footer__navList {
    gap: 12px 20px;
    gap: .75rem 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    font-size: 14px;
    font-size: .875rem;
  }

  .p-footer__navList li {
    min-width: 120px;
    min-width: 7.5rem;
  }

  .p-form__table {
    display: table;
  }

  .p-form__table tr {
    display: table-row;
  }

  .p-form__table th,
  .p-form__table td {
    display: table-cell;
  }

  .p-form__table th {
    display: table-cell;
    padding-top: 24px;
    padding-top: 1.5rem;
    width: 30%;
  }

  .p-form__table td {
    display: table-cell;
  }

  .p-form__name-fields input,
  .p-form__email-fields input,
  .p-form input[type=tel] .p-form input[type=text],
  .p-form input[type=email],
  .p-form input[type=tel] {
    width: 100%;
    max-width: 500px;
    max-width: 31.25rem;
  }

  .select-wrapper {
    max-width: 300px;
    max-width: 18.75rem;
  }

  .p-form textarea {
    height: 200px;
    height: 12.5rem;
  }

  .p-form__name-row {
    max-width: 500px;
    max-width: 31.25rem;
  }

  .p-form__email-fields {
    gap: 8px;
    gap: .5rem;
  }

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

  .p-form__email-fields {
    gap: 16px;
    gap: 1rem;
  }

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

  .p-fv-message__title--main {
    font-size: 42px;
    font-size: 2.625rem;
  }

  .p-fv-message__lead {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 22px;
    font-size: 1.375rem;
    text-align: center;
  }

  .p-fv__copy {
    font-size: 54px;
    font-size: 3.375rem;
  }

  .p-fv__btns {
    gap: 16px;
    gap: 1rem;
  }

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

  .p-header__nav ul {
    gap: 32px;
    gap: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 32px;
    padding-right: 2rem;
  }

  .p-header__nav li > a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
  }

  .p-header__drawer {
    display: none;
  }

  .p-header__entry {
    display: block;
  }

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

  .p-interview-message__text-block {
    padding: 40px 60px;
    padding: 2.5rem 3.75rem;
  }

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

  .p-interview-message__text {
    line-height: 1.8;
  }

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

  .p-interview-qa__wrapper + .p-interview-qa__wrapper {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-interview-newcomer {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-interview-newcomer__head {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
  }

  .p-interview-newcomer__cards {
    gap: 20px;
    gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

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

  .p-interview-qa__wrapper:nth-of-type(even) .p-interview-qa__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-interview-qa__body {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-interview-qa__text {
    margin-top: 0;
    width: 60%;
  }

  .p-interview-qa__img {
    width: 40%;
  }

  .p-interview-senior {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-interview-senior__head {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
  }

  .p-interview-senior__cards {
    gap: 20px;
    gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

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

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

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

  .p-message__body {
    gap: 32px;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }

  .p-message__img {
    width: 35%;
  }

  .p-message__text-block {
    width: 65%;
  }

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

  .p-message__btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: right;
  }

  .p-news-card__link {
    padding-top: 24px;
    padding-top: 1.5rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

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

  .p-news-card__title {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-oneday-message {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-oneday-message__text {
    margin-top: 0;
    width: 60%;
  }

  .p-oneday-message__img {
    width: 40%;
  }

  .p-oneday__wrapper {
    gap: 64px;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .p-oneday__btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: right;
  }

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

  .p-page-about__heading {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-about__head {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-about__table {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-about__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 80px;
    margin-top: 5rem;
  }

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

  .p-page-cta__items {
    gap: 32px;
    gap: 2rem;
  }

  .p-page-entry__form {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }

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

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

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

  .p-page-about__heading {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-future__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 80px;
    margin-top: 5rem;
  }

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

  .p-page-fv {
    height: 320px;
    height: 20rem;
  }

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

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

  .p-page-growth__items {
    gap: 60px;
    gap: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .p-page-hr__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 80px;
    margin-top: 5rem;
  }

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

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

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

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

  .p-page-message__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 80px;
    margin-top: 5rem;
  }

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

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

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

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

  .p-page-news__content {
    margin-top: 12px;
    margin-top: .75rem;
  }

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

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

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

  .p-page-oneday__title,
  .p-page-oneday__message-title {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-page-oneday__text {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-page-oneday__wrapper {
    gap: 60px;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-page-oneday__oneday {
    max-width: none;
  }

  .p-page-oneday__message {
    max-width: none;
  }

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

  .p-page-point__items {
    gap: 54px;
    gap: 3.375rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-page-point__title {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-page-point__text {
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-privacy-policy {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-page-purpose {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 40px 0;
    padding: 2.5rem 0;
  }

  .p-page-purpose__title {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .p-page-purpose__sub {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-page-purpose__items {
    gap: clamp(24px, 4vw, 64px);
    gap: clamp(1.5rem, 4vw, 4rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 36px;
    margin-top: 2.25rem;
  }

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

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

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

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

  .p-page-tag {
    padding: 8px 18px;
    padding: .5rem 1.125rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-single-tag {
    padding: 2px 12px;
    padding: .125rem .75rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-page-tags {
    gap: 16px;
    gap: 1rem;
  }

  .p-page-vision {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 80px 0;
    padding: 5rem 0;
  }

  .p-page-vision__body {
    gap: 60px;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-page-vision__image {
    width: 380px;
    width: 23.75rem;
  }

  .p-page-vision__text {
    margin-top: 16px;
    margin-top: 1rem;
  }

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

  .p-privacy-policy ul {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-privacy-policy ul li {
    margin-top: 12px;
    margin-top: .75rem;
  }

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

  .p-profile__info {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-profile__description {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-recruit-archive {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-recruit-archive__card {
    padding: 32px 48px;
    padding: 2rem 3rem;
  }

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

  .p-recruit-archive__body {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-recruit-archive__text {
    margin-top: 16px;
    margin-top: 1rem;
    line-height: 2;
  }

  .p-recruit-archive__arrow {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    background-color: #005F88;
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
    color: #fff;
  }

  .p-recruit-archive__arrow-icon {
    display: inline-block;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

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

  .p-recruit-cta__contents {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
    max-width: 1050px;
    max-width: 65.625rem;
  }

  .p-recruit-cta__btns {
    gap: 20px;
    gap: 1.25rem;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-recruit-single {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-recruit-single__article {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-recruit-single__table {
    display: table;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-recruit-single__table tr {
    display: table-row;
    margin-bottom: 0;
  }

  .p-recruit-single__table th,
  .p-recruit-single__table td {
    display: table-cell;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 16px;
    padding: 1rem;
  }

  .p-recruit-single__table th {
    width: 30%;
    text-align: center;
  }

  .p-recruit-single__table td {
    width: 70%;
    line-height: 2;
  }

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

  .p-schedule {
    padding: 40px 40px;
    padding: 2.5rem 2.5rem;
    max-width: 480px;
    max-width: 30rem;
  }

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

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

  .p-single__title {
    margin-top: 28px;
    margin-top: 1.75rem;
    padding-bottom: 12px;
    padding-bottom: .75rem;
    font-size: 26px;
    font-size: 1.625rem;
  }

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

  .p-single__body h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-news-block {
    gap: 32px;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-news-block:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-news-block__image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 45%;
  }

  .p-news-block__content {
    width: 55%;
  }

  .p-single__news-blocks .p-news-block__heading {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-news-block__text {
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

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

  .p-story-content__wrapper {
    gap: 32px;
    gap: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 28px;
    margin-top: 1.75rem;
    width: 100%;
  }

  .p-story-content__wrapper: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-story-content__wrapper + .p-story-content__wrapper {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-story-content__body {
    margin-top: 0;
    width: 60%;
  }

  .p-story-content__wrapper + .p-story-content__wrapper .p-story-content__body {
    margin-top: 0;
  }

  .p-story-content__body h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-story-content__body p {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-story-content__image {
    margin-top: 0;
    width: 40%;
  }

  .p-story-episode {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-story-episode__body {
    margin-top: 18px;
    margin-top: 1.125rem;
  }

  .p-story-episode__body h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-story-episode__member {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-story-episode__member-items {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .p-story__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-story__images li {
    width: 250px;
    width: 15.625rem;
    height: 250px;
    height: 15.625rem;
  }

  .p-story__btn {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: right;
  }

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

  .p-work__btn {
    margin-top: 24px;
    margin-top: 1.5rem;
    text-align: right;
  }

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

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

  .u-onlyTab {
    display: block;
  }
}

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

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

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

  .u-onlyPc {
    display: block;
  }
}

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .p-form__table th {
    display: block;
    border-right: none;
    border-bottom: 1px solid #999;
    padding: 12px;
    padding: .75rem;
    width: 100%;
    text-align: left;
  }
}

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

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

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

  .p-work__item {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .p-work__img {
    aspect-ratio: 3/4;
  }

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-btn:hover {
    background-color: #f29230;
  }

  .c-btn:hover .c-btn__icon {
    -webkit-transform: translateX(.125rem);
    transform: translateX(.125rem);
  }

  .c-btn--blue:hover {
    background-color: #00A7E0;
  }

  .c-btn--white:hover {
    background-color: #f2f2f2;
  }

  .c-btn--cta:hover {
    background-color: #f29230;
  }

  .c-btn--cta-blue:hover {
    background-color: #00a6d1;
  }

  .c-page-btn:hover {
    background-color: #ff8a00;
    color: #fff;
  }

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

  .p-footer__navList li a:hover {
    text-decoration: underline;
  }

  .p-interview-card:hover {
    -webkit-transform: translateY(-.25rem);
    transform: translateY(-.25rem);
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
  }

  .p-news-card__link:hover {
    opacity: 1;
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
    background-color: #f5f5f5;
  }

  .p-page-hr__video-thumbnail:hover::before {
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
    box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
    background-color: rgba(255, 0, 0, .8);
  }

  .p-page-tag:hover {
    background-color: #1094BD;
    color: #fff;
  }

  .p-paginateLink:hover {
    background-color: #e0e0e0;
  }

  .p-paginate__backBtn:hover {
    background-color: #0096D2;
  }

  .page-numbers:hover {
    -webkit-box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .05);
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .05);
    background-color: #e0f4fa;
  }

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

  .p-recruit-archive__item:hover {
    opacity: .85;
  }

  .p-recruit-archive__item:hover .p-recruit-archive__card {
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    border-color: #005F88;
  }

  .p-recruit-archive__item:hover .p-recruit-archive__arrow-icon {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem);
  }

  .p-work__img:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
/*# sourceMappingURL=map/style.css.map */


/* 親LIを基準に */
.p-header__nav li.menu-item-has-children { position: relative; }

/* サブメニューは初期非表示 */
.p-header__nav .sub-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5f6ff;
  border-radius: .5rem;
  padding: .5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 1000;
}

/* ホバー/フォーカスで表示 */
.p-header__nav li.menu-item-has-children:hover > .sub-menu,
.p-header__nav li.menu-item-has-children:focus-within > .sub-menu{
  display: block;
}

/* サブメニュー内 */
.p-header__nav .sub-menu li { width: 100%; }
.p-header__nav .sub-menu a{
  display: block;
  padding: .6rem 1rem;
  color: #005F88;
  white-space: nowrap;
}
.p-header__nav .sub-menu a:hover{ background:#eaf6fb; }







/* 初期は触らない */
@media (max-width: 767px) {
  .only-pc { display: none; }   /* モバイルでだけ隠す */
}
@media (min-width: 768px) {
  .only-sp { display: none; }   /* PCでだけ隠す */
}



/* 中に img がない image カラムは非表示 */
.p-card2col__image:empty {
  display: none;
}


.p-work__btn {
  margin-bottom: 80px;
}


