@charset "UTF-8";


@font-face {
  src: url('../font/avenir-next-condensed-demibold.ttf') format('truetype');
  font-display: swap;
  font-family: 'Avenir Next Condensed';
}

/************************************************************************
* 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: #323232;
  font-family: '游ゴシック体', '游ゴシック', '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: .1;
  }

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

  from {
    opacity: .1;
  }

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

/************************************************************************
* layout
************************************************************************/
body {
  -webkit-text-size-adjust: 100%;
  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;
  cursor: none;
  min-height: 100vh;
  min-height: 100dvh;
  letter-spacing: 0;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.fadeIn {
  opacity: 1;
}

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

footer {
  margin-top: auto;
}

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

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

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

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

a:not([class]):hover {
  text-decoration: underline;
}

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

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

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

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #323232;
  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;
}

#autozip {
  z-index: 10 !important;
}

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

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

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

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

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

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

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

:root {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004EA2;
}

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

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

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

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

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

.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-container[data-wide=middle] {
  max-inline-size: 600px;
  max-inline-size: 37.5rem;
}

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

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

.c-acButton {
  padding-inline: 50px;
  padding-inline: 3.125rem;
  padding-block: 30px;
  padding-block: 1.875rem;
  display: block flow;
  position: relative;
  z-index: 0;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  cursor: none;
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.c-acButton::before {
  inset-inline-start: 50%;
  translate: -50% -50%;
  inset-block-start: 50%;
  position: absolute;
  z-index: 0;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  -webkit-clip-path: polygon(90% 1%, 100% 38%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(90% 1%, 100% 38%, 100% 100%, 0 100%, 0 0);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  background-color: #fff;
  inline-size: calc(100% - 2px);
  block-size: calc(100% - 2px);
  content: '';
}

.c-acButton::after {
  inset-inline-start: 0;
  inset-block-start: 0;
  position: absolute;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  -webkit-clip-path: polygon(90% 1%, 100% 38%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(90% 1%, 100% 38%, 100% 100%, 0 100%, 0 0);
  background-color: #004EA2;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.c-acButton__arrow {
  inset-block-start: 50%;
  translate: 0 -50%;
  inset-inline-end: 28px;
  inset-inline-end: 1.75rem;
  position: absolute;
  border-radius: 50%;
  background-color: #004EA2;
  inline-size: 25px;
  inline-size: 1.5625rem;
  block-size: 25px;
  block-size: 1.5625rem;
}

.c-acButton__arrow::before {
  inset-block-start: 50%;
  inset-inline-start: 50%;
  translate: -50% -50%;
  display: block flow;
  position: absolute;
  -webkit-mask-image: url(../img/common/icon_arrow_down.svg);
  mask-image: url(../img/common/icon_arrow_down.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  inline-size: 13px;
  inline-size: .8125rem;
  block-size: 13px;
  block-size: .8125rem;
  content: '';
}

.c-acButton__text {
  position: relative;
  z-index: 1;
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #004EA2;
}

.c-acButton:focus-visible {
  opacity: 1;
}

.c-acButton:focus-visible::before {
  background-color: #004EA2;
}

.c-acButton:focus-visible .c-acButton__text {
  color: #fff;
}

details::details-content {
  -webkit-transition: height 400ms ease, border 400ms ease, content-visibility 400ms ease allow-discrete;
  transition: height 400ms ease, border 400ms ease, content-visibility 400ms ease allow-discrete;
  height: 0;
  overflow: clip;
}

details[open]::details-content {
  height: auto;
}

.c-arrowLink {
  display: inline grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .5625rem;
  -moz-column-gap: .5625rem;
  column-gap: .5625rem;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: none;
  color: #004EA2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.c-arrowLink__text {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: normal;
}

.c-arrowLink__icon {
  position: relative;
  inline-size: 25px;
  inline-size: 1.5625rem;
  block-size: 24px;
  block-size: 1.5rem;
}

.c-arrowLink__icon::before {
  display: block flow;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #004EA2;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.c-arrowLink:focus-visible {
  opacity: .5;
}

.c-arrowLink__text[data-size=middle] {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-arrowLink[data-arrow=prev] .c-arrowLink__icon::before {
  rotate: 180deg;
}

.c-articleLink {
  display: block grid;
  position: relative;
  grid-template: 'img img' auto 'title arrow' auto 'info arrow' auto 'sub arrow' 1fr/auto 1fr -webkit-max-content;
  grid-template: 'img img' auto 'title arrow' auto 'info arrow' auto 'sub arrow' 1fr/auto 1fr max-content;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: none;
  color: #004EA2;
  font-family: 'Hiragino Sans';
}

.c-articleLink__img {
  grid-area: img;
  inline-size: 100%;
}

.c-articleLink__img img {
  aspect-ratio: 416/283;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-articleLink__title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  grid-area: title;
  -webkit-margin-before: 12px;
  -webkit-margin-before: .75rem;
  margin-block-start: 12px;
  margin-block-start: .75rem;
  overflow: hidden;
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-articleLink__info {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-area: info;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-margin-before: 12px;
  -webkit-margin-before: .75rem;
  margin-block-start: 12px;
  margin-block-start: .75rem;
  font-family: 'Hiragino Sans';
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 600;
}

.c-articleLink__subText3 {
  grid-area: sub;
  -webkit-margin-before: 2px;
  -webkit-margin-before: .125rem;
  margin-block-start: 2px;
  margin-block-start: .125rem;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 500;
}

.c-articleLink__icon {
  position: relative;
  grid-area: arrow;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: flex-end;
  -webkit-margin-start: 10px;
  -webkit-margin-start: .625rem;
  margin-inline-start: 10px;
  margin-inline-start: .625rem;
  inline-size: 25px;
  inline-size: 1.5625rem;
  block-size: 24px;
  block-size: 1.5rem;
}

.c-articleLink__icon::before {
  display: block flow;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #004EA2;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.c-articleLink:focus-visible {
  opacity: .5;
}

.c-articleLink2 {
  display: block flow;
  position: relative;
  -webkit-transition: background-color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, box-shadow .3s;
  transition: background-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  cursor: none;
  -webkit-box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, .1);
  box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, .1);
}

.c-articleLink2__img {
  inline-size: 100%;
}

.c-articleLink2__img img {
  aspect-ratio: 335/370;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-articleLink2__info {
  padding-inline: 12px 30px;
  padding-inline: .75rem 1.875rem;
  padding-block: 10px 14px;
  padding-block: .625rem .875rem;
  position: relative;
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-weight: 600;
}

.c-articleLink2__subText {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.5;
}

.c-articleLink2__subText[data-size=large] {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.36;
}

.c-articleLink2__icon {
  inset-inline-end: 14px;
  inset-inline-end: .875rem;
  inset-block-end: 12px;
  inset-block-end: .75rem;
  display: block flow;
  position: absolute;
  inline-size: 17px;
  inline-size: 1.0625rem;
  block-size: 10px;
  block-size: .625rem;
}

.c-articleLink2__icon::before {
  display: block flow;
  -webkit-mask-image: url(../img/common/icon_arrow2.svg);
  mask-image: url(../img/common/icon_arrow2.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  background-color: #004EA2;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.c-articleLink2:focus-visible {
  -webkit-box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .1);
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .1);
  background-color: #004EA2;
}

.c-articleLink2:focus-visible .c-articleLink2__subText {
  color: #fff;
}

.c-articleLink2:focus-visible .c-articleLink2__icon::before {
  background-color: #fff;
}

.c-commonButton {
  padding-inline: 12px;
  padding-inline: .75rem;
  display: block flow;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  cursor: none;
  border: 1px solid #004EA2;
  border-radius: .3125rem;
  background-color: #004EA2;
  color: #fff;
  font-family: 'Avenir Next Condensed', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.c-commonButton[data-size=middle] {
  padding-block: 13px;
  padding-block: .8125rem;
  font-size: 30px;
  font-size: 1.875rem;
}

.c-commonButton[data-bg=red] {
  border: 1px solid #de2726;
  background-color: #de2726;
}

.c-commonButton:focus-visible {
  opacity: 1;
  background-color: #fff;
  color: #004EA2;
}

.c-commonButton[data-bg=red]:focus-visible {
  background-color: #fff;
  color: #de2726;
}

.c-commonLargeText {
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 43px;
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: normal;
}

.c-commonLargeText[data-size=middle] {
  font-size: 30px;
  font-size: 1.875rem;
}

.c-commonTable table,
th,
td {
  border-collapse: collapse;
  table-layout: initial;
}

.c-commonTable th,
.c-commonTable td {
  border: transparent;
}

.c-commonTable th {
  padding-block: 20px;
  padding-block: 1.25rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  display: block;
  border-bottom: 1px solid #000;
  background-color: #edf3f8;
  inline-size: 100%;
  color: #000;
  font-family: 'Hiragino Sans';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.c-commonTable tr:first-child th {
  border-top: 1px solid #000;
}

.c-commonTable td {
  padding-block: 20px;
  padding-block: 1.25rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  display: block;
  border-bottom: 1px solid #000;
  inline-size: 100%;
  font-family: 'Hiragino Sans';
  font-size: 15px;
  font-size: .9375rem;
  font-weight: normal;
  font-weight: 400;
}

.c-commonTable[data-bg=gray] th {
  background-color: #f2f2f2;
}

.c-commonText {
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
}

.c-commonTitle {
  display: block grid;
  color: #004EA2;
}

.c-commonTitle__main {
  grid-column: 1;
  font-family: 'Hiragino Sans';
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}

.c-commonTitle__sub {
  grid-column: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.c-commonTitle__main[data-size=small] {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-contentsBlock {
  padding-block: 25px;
  padding-block: 1.5625rem;
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.c-contentsBlock__img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  inline-size: 100%;
  block-size: 100%;
}

.c-contentsBlock__img img {
  aspect-ratio: 343/183;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-job__textBox {
  padding-top: 19px;
  padding-top: 1.1875rem;
  inline-size: 100%;
}

.c-contentsBlock__number {
  -webkit-text-stroke: 1px #004EA2;
  position: relative;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: normal;
}

.c-contentsBlock__number::before {
  content: counter(number, decimal-leading-zero);
}

.c-contentsBlock__head {
  gap: 10px;
  gap: .625rem;
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-contentsBlock__title {
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
}

.c-contentsBlock__text {
  margin-top: 5px;
  margin-top: .3125rem;
  margin-top: 10px;
  margin-top: .625rem;
  color: #000;
  font-family: 'Hiragino Sans';
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.67;
}

.c-detailHeader {
  margin-inline: calc(50% - 50cqi);
  aspect-ratio: 375/210;
  display: block flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 0;
  block-size: 100%;
}

.c-detailHeader__inner {
  inline-size: 100%;
}

.c-detailHeader__img {
  inset: 0;
  position: absolute;
  z-index: -1;
  inline-size: 100%;
  block-size: 100%;
}

.c-detailHeader__img img {
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.c-detailHeader__body {
  margin-inline: auto;
  max-inline-size: 600px;
  max-inline-size: 37.5rem;
}

.c-detailHeader__title {
  display: inline grid;
}

.c-detailHeader__title span {
  padding-inline: 3px;
  padding-inline: .1875rem;
  padding-block: 1px;
  padding-block: .0625rem;
  justify-self: flex-start;
  background-color: #fff;
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.c-mouseStalker {
  position: fixed;
  top: -10px;
  left: -10px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 10001;
  -webkit-transition: width .2s, height .2s, background-color .2s, top .2s, left .2s, opacity .4s;
  transition: width .2s, height .2s, background-color .2s, top .2s, left .2s, opacity .4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-shadow: 0 0 30px 10px rgba(0, 120, 255, .6);
  box-shadow: 0 0 30px 10px rgba(0, 120, 255, .6);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 61%, rgba(250, 252, 255, .99) 65%, rgba(237, 245, 255, .97) 69%, rgba(216, 234, 255, .94) 73%, rgba(185, 218, 255, .89) 77%, rgba(146, 197, 255, .83) 81%, rgba(99, 172, 255, .75) 86%, rgba(43, 143, 255, .55) 90%, rgba(0, 120, 255, .48) 93%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.c-numberLink {
  display: block flow;
  cursor: none;
}

.c-numberLink__img {
  position: relative;
  mix-blend-mode: multiply;
  inline-size: 100%;
}

.c-numberLink__img img {
  aspect-ratio: 300/400;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-numberLink__textBox {
  padding-block: 16px;
  padding-block: 1rem;
  padding-inline: 14px;
  padding-inline: .875rem;
  margin-inline: auto;
  display: block grid;
  position: relative;
  grid-template-rows: auto 1fr;
  z-index: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-margin-before: -50px;
  -webkit-margin-before: -3.125rem;
  margin-block-start: -50px;
  margin-block-start: -3.125rem;
  background-color: #fff;
  inline-size: 100%;
  max-inline-size: 90%;
  block-size: auto;
}

.c-numberLink__number {
  -webkit-text-stroke: 1px #004EA2;
  position: relative;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1;
}

.c-numberLink__number::before {
  content: counter(number, decimal-leading-zero);
}

.c-numberLink__title {
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.c-numberLink[data-type=subgrid] {
  display: block grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

.c-numberLink:focus-visible .c-numberLink__textBox {
  opacity: .8;
}

.c-pageTitle {
  color: #004EA2;
  font-family: 'Barlow Condensed', sans-serif;
}

.c-pageTitle__sub {
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.22;
  text-transform: uppercase;
}

.c-pageTitle__main {
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}

.c-profileBox {
  gap: 28px;
  gap: 1.75rem;
  padding-block: 25px;
  padding-block: 1.5625rem;
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-border-before: 1px solid #004EA2;
  border-block-start: 1px solid #004EA2;
  -webkit-border-after: 1px solid #004EA2;
  border-block-end: 1px solid #004EA2;
}

.c-profileBox__title {
  color: #004EA2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: normal;
  text-transform: uppercase;
}

.c-profileBox__infoBox {
  row-gap: 13px;
  row-gap: .8125rem;
  display: block grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-profileBox__text {
  color: #000;
  font-family: 'Hiragino Sans';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: normal;
}

.c-profileBox__text[data-weight=bold] {
  font-weight: 600;
}

.c-profileBox__text[data-size=middle] {
  font-size: 16px;
  font-size: 1rem;
}

.c-profileBox__text[data-acf=acf_textbox] {
  -webkit-margin-before: 16px;
  -webkit-margin-before: 1rem;
  margin-block-start: 16px;
  margin-block-start: 1rem;
  line-height: 1.79;
}

.c-profileBox__text[data-size=small] {
  -webkit-margin-before: 25px;
  -webkit-margin-before: 1.5625rem;
  margin-block-start: 25px;
  margin-block-start: 1.5625rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.94;
}

.c-profileBox__img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  inline-size: 100%;
  block-size: 100%;
}

.c-profileBox__img img {
  aspect-ratio: 302/233;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-sectionTitle {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  color: #004EA2;
}

.c-sectionTitle__main {
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.c-sectionTitle__sub {
  grid-row: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.c-sectionTitle__main[data-size=small] {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-sectionTitle[data-color=white] {
  color: #fff;
}

.c-title {
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.p-404 {
  padding-block: 40px 100px;
  padding-block: 2.5rem 6.25rem;
}

.p-404__head {
  text-align: center;
}

.p-404__head br {
  display: block flow;
}

.p-404__body {
  -webkit-margin-before: 32px;
  -webkit-margin-before: 2rem;
  margin-block-start: 32px;
  margin-block-start: 2rem;
  text-align: center;
}

.p-404__body br {
  display: block flow;
}

.p-404__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.p-404__textLink {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  color: #004EA2;
}

.p-404__button {
  margin-inline: auto;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  text-align: center;
}

.p-404__textLink:focus-visible {
  opacity: .5;
}

/************************************************************************
* p-about
************************************************************************/
.p-about {
  padding-block: 35px 56px;
  padding-block: 2.1875rem 3.5rem;
}

.p-about__title .p-pageTitle {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
}

.p-about__inner {
  -webkit-margin-before: 33px;
  -webkit-margin-before: 2.0625rem;
  margin-block-start: 33px;
  margin-block-start: 2.0625rem;
}

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

/************************************************************************
* p-archive
************************************************************************/
.p-archive__contents {
  padding-block: 60px;
  padding-block: 3.75rem;
}

.p-archive__list {
  gap: 20px;
  gap: 1.25rem;
  margin-inline: auto;
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  max-inline-size: 600px;
  max-inline-size: 37.5rem;
}

.p-archive__pagination {
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
}

.p-article {
  row-gap: 65px;
  row-gap: 4.0625rem;
  display: block grid;
  -webkit-padding-after: 56px;
  -webkit-padding-after: 3.5rem;
  padding-block-end: 56px;
  padding-block-end: 3.5rem;
}

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

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

.p-article__contents {
  -webkit-padding-before: 55px;
  -webkit-padding-before: 3.4375rem;
  padding-block-start: 55px;
  padding-block-start: 3.4375rem;
}

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

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

.p-article__profile {
  -webkit-margin-after: 50px;
  -webkit-margin-after: 3.125rem;
  margin-block-end: 50px;
  margin-block-end: 3.125rem;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 56px;
  margin-top: 3.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-family: 'Hiragino Sans';
}

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

.p-article__body h2 {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #004EA2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-article__body :last-of-type {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

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

.p-article__body p {
  color: #000;
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.96;
  text-align: justify;
}

.p-article__body p + .wp-block-image {
  -webkit-margin-before: 22px;
  -webkit-margin-before: 1.375rem;
  margin-block-start: 22px;
  margin-block-start: 1.375rem;
}

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

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

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

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

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

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

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

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

.p-article__body .wp-block-image {
  margin-inline: auto;
  -webkit-margin-before: 25px;
  -webkit-margin-before: 1.5625rem;
  margin-block-start: 25px;
  margin-block-start: 1.5625rem;
  max-inline-size: 833px;
  max-inline-size: 52.0625rem;
}

.p-article__body .wp-block-image img {
  display: block flow;
  inline-size: 100%;
  block-size: auto;
}

.p-article__body .wp-block-image + h2 {
  -webkit-margin-before: 50px;
  -webkit-margin-before: 3.125rem;
  margin-block-start: 50px;
  margin-block-start: 3.125rem;
}

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

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

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

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

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

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

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

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-page-numbers.current {
  background-color: #004EA2;
  color: #fff;
}

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

/************************************************************************
* p-career
************************************************************************/
.p-career {
  padding-block: 35px 78px;
  padding-block: 2.1875rem 4.875rem;
}

.p-career__title {
  margin-inline: auto;
  max-inline-size: 1410px;
  max-inline-size: 88.125rem;
}

.p-career__title .p-pageTitle {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
}

.p-career__contents {
  -webkit-padding-before: 48px;
  -webkit-padding-before: 3rem;
  padding-block-start: 48px;
  padding-block-start: 3rem;
}

.p-career__img {
  margin-inline: auto;
  inline-size: 100%;
}

.p-career__img img {
  display: block flow;
  inline-size: 100%;
  block-size: auto;
}

.p-contact {
  padding-block: 96px;
  padding-block: 6rem;
}

.p-contact[data-contact=thanks] {
  -webkit-padding-after: 100px;
  -webkit-padding-after: 6.25rem;
  padding-block-end: 100px;
  padding-block-end: 6.25rem;
}

.p-contact__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
}

.p-contact__blockWrap {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-block: 20px 30px;
  padding-block: 1.25rem 1.875rem;
  background-color: #fff;
}

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

.p-contact__title .p-pageTitle {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.p-contact_required {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-margin-start: 5px;
  -webkit-margin-start: .3125rem;
  margin-inline-start: 5px;
  margin-inline-start: .3125rem;
}

.p-contact_required::after {
  color: #f23a3c;
  font-size: 15px;
  font-size: .9375rem;
  content: '*';
}

.p-contact__block {
  -webkit-padding-after: 20px;
  -webkit-padding-after: 1.25rem;
  padding-block-end: 20px;
  padding-block-end: 1.25rem;
}

.p-contact__label {
  display: inline flex;
  -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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #323232;
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-contact__block :where(input, textarea, select) {
  -webkit-margin-before: 15px;
  -webkit-margin-before: .9375rem;
  margin-block-start: 15px;
  margin-block-start: .9375rem;
  border: 1px solid #333;
  border-radius: .25rem;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  inline-size: 100%;
  block-size: 50px;
  block-size: 3.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-contact__block :where(input, textarea, select)::-webkit-input-placeholder {
  color: #ccc;
}

.p-contact__block :where(input, textarea, select)::-moz-placeholder {
  color: #ccc;
}

.p-contact__block :where(input, textarea, select)::-ms-input-placeholder {
  color: #ccc;
}

.p-contact__block :where(input, textarea, select)::placeholder {
  color: #ccc;
}

.p-contact__block textarea {
  block-size: 100px;
  block-size: 6.25rem;
}

.p-contact__buttonWrap {
  margin-inline: auto;
  -webkit-margin-before: 35px;
  -webkit-margin-before: 2.1875rem;
  margin-block-start: 35px;
  margin-block-start: 2.1875rem;
  max-inline-size: 250px;
  max-inline-size: 15.625rem;
}

.p-contact__buttonWrap[data-buttonwrap=confirm] {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: block grid;
}

.p-contact__button::after {
  display: none;
  inline-size: 100%;
}

.p-contact__button:where([type=button], [type=submit]) {
  inline-size: 100%;
}

.p-contact__button.c-commonButton {
  border-radius: 6rem;
  padding: 15px;
  padding: .9375rem;
  inline-size: 100%;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-contact__button.back_button {
  border: 1px solid #004EA2;
}

.p-contact__checkbox {
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  text-align: center;
}

.p-contact__checkbox .wpcf7-list-item {
  margin: 0;
}

.p-contact__check + .wpcf7-list-item-label {
  position: relative;
  -webkit-padding-start: 30px;
  -webkit-padding-start: 1.875rem;
  padding-inline-start: 30px;
  padding-inline-start: 1.875rem;
  font-family: 'Hiragino Sans';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
}

.p-contact__checkbox .wpcf7-list-item-label::before {
  inset-block-start: 50%;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
  border: 1px solid rgb(51, 51, 51);
  border-radius: .25rem;
  background-color: #fff;
  inline-size: 20px;
  inline-size: 1.25rem;
  block-size: 20px;
  block-size: 1.25rem;
}

.p-contact__checkbox .wpcf7-list-item-label::after {
  inset-inline-start: 4px;
  inset-inline-start: .25rem;
  inset-block-start: 50%;
  translate: 0 -50%;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  rotate: 135deg;
  opacity: 0;
  border: transparent;
  border-top: 2px solid #004EA2;
  border-right: 2px solid #004EA2;
  inline-size: 14px;
  inline-size: .875rem;
  block-size: 8px;
  block-size: .5rem;
}

.p-contact__checkboxText {
  text-decoration: underline;
}

/* @media (min-width: 768px) { */

/* .p-contact__checkboxText { */

/* font-size: 16px; */

/* } */

/* } */
.p-contact__check:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.p-contact__button.wpcf7-submit {
  background-color: rgba(22, 84, 171, .8);
  color: #fff;
}

.p-contact__confirmText {
  display: block flow;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-margin-before: 15px;
  -webkit-margin-before: .9375rem;
  margin-block-start: 15px;
  margin-block-start: .9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-contact__confirmText .p-contact[data-contact=thanks] {
  -webkit-padding-after: 100px;
  -webkit-padding-after: 6.25rem;
  padding-block-end: 100px;
  padding-block-end: 6.25rem;
}

.p-contact__textHead {
  -webkit-margin-before: 30px;
  -webkit-margin-before: 1.875rem;
  margin-block-start: 30px;
  margin-block-start: 1.875rem;
}

.p-contact__largeText {
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: normal;
  text-align: center;
}

.p-contact__text {
  font-family: 'Hiragino Sans';
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-contact__textBox {
  row-gap: 35px;
  row-gap: 2.1875rem;
  margin-inline: auto;
  display: block grid;
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
  max-inline-size: 500px;
  max-inline-size: 31.25rem;
}

.wpcf7-form-control-wrap[data-name=textarea] {
  display: grid;
}

.p-contact__selectWrap {
  position: relative;
}

.p-contact__selectWrap::after {
  inset-inline-end: 20px;
  inset-inline-end: 1.25rem;
  inset-block-start: 32px;
  inset-block-start: 2rem;
  position: absolute;
  rotate: 135deg;
  border: transparent;
  border-top: 2px solid #004EA2;
  border-right: 2px solid #004EA2;
  inline-size: 10px;
  inline-size: .625rem;
  block-size: 10px;
  block-size: .625rem;
  content: '';
}

/************************************************************************
* p-contentsLayer
************************************************************************/
.p-contentsLayer {
  position: relative;
  z-index: 0;
}

.p-contentsLayer::before {
  inset-inline-start: 0;
  inset-block-start: 0;
  position: absolute;
  z-index: -1;
  background: #0068DE;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 104, 222)), color-stop(38%, rgb(77, 215, 238)), to(rgb(249, 254, 254)));
  background: linear-gradient(0deg, rgb(0, 104, 222) 0%, rgb(77, 215, 238) 38%, rgb(249, 254, 254) 100%);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: none;
  border-radius: 50%;
  background-color: #fff;
  inline-size: 50px;
  inline-size: 3.125rem;
  block-size: 50px;
  block-size: 3.125rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #323232;
  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: #004EA2;
  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;
  left: 0;
  visibility: hidden;
  opacity: 0;
  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;
  -webkit-transition: opacity .5s ease 0s, visibility .5s ease 0s, pointer-events .5s ease 0s;
  transition: opacity .5s ease 0s, visibility .5s ease 0s, pointer-events .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  block-size: 100%;
  overflow: auto;
  pointer-events: none;
  color: #323232;
  text-align: center;
}

.p-drawer__content.is-opened {
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  pointer-events: auto;
}

.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-block: 120px;
  padding-block: 7.5rem;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

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

.p-drawer__navLink {
  display: inline flow-root;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: none;
  color: #004EA2;
}

.p-drawer__inner ul {
  row-gap: 30px;
  row-gap: 1.875rem;
  display: block grid;
}

.p-drawer__inner li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-drawer__button {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  inline-size: 100%;
}

.p-drawer__navLink:focus-visible {
  opacity: .5;
}

.p-footer {
  padding-block: 40px 35px;
  padding-block: 2.5rem 2.1875rem;
  background-color: #002864;
  color: #fff;
}

.p-footer__logo {
  margin-inline: auto;
  inline-size: 100%;
  max-inline-size: 125px;
  max-inline-size: 7.8125rem;
}

.p-footer__logo a {
  display: block flow;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: none;
}

.p-footer__logo img,
.p-footer__logo svg {
  inline-size: 100%;
  block-size: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__logo a:focus-visible {
  opacity: .5;
}

.p-footer__nav {
  margin-inline: auto;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  max-inline-size: -webkit-fit-content;
  max-inline-size: -moz-fit-content;
  max-inline-size: fit-content;
  text-align: center;
}

.p-footer__nav ul {
  row-gap: 13px;
  row-gap: .8125rem;
  display: block grid;
}

.p-footer__navLink {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
}

.p-footer__copy {
  -webkit-margin-before: 35px;
  -webkit-margin-before: 2.1875rem;
  margin-block-start: 35px;
  margin-block-start: 2.1875rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 600;
  text-align: center;
}

.p-footer__navLink:focus-visible {
  opacity: .5;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  container-type: inline-size;
  block-size: 100%;
}

.p-fv__inner {
  position: relative;
  z-index: 0;
  block-size: 100%;
}

.p-fv__images {
  margin-inline: calc(50% - 50cqi);
  display: block grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  z-index: 0;
  block-size: auto;
  min-block-size: 100dvh;
}

.p-fv__images::before {
  inset: 0;
  position: absolute;
  opacity: .2;
  background-color: #323232;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-fv__img {
  inline-size: 100%;
  block-size: 100%;
}

.p-fv__img img {
  aspect-ratio: 375/222;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.p-fv__img[data-blend=plus-lighter] {
  mix-blend-mode: plus-lighter;
}

.p-fv__img[data-blend=overlay] {
  mix-blend-mode: overlay;
}

.p-fv__title {
  inset-block-end: 35px;
  inset-block-end: 2.1875rem;
  inset-inline-start: 0;
  position: absolute;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0 10px rgb(255, 255, 255));
  filter: drop-shadow(0 0 10px rgb(255, 255, 255));
  -webkit-margin-start: 20px;
  -webkit-margin-start: 1.25rem;
  margin-inline-start: 20px;
  margin-inline-start: 1.25rem;
  inline-size: 100%;
  max-inline-size: 80%;
  block-size: auto;
}

.p-header {
  padding-block: 13px;
  padding-block: .8125rem;
  padding-inline: 14px;
  padding-inline: .875rem;
  inset-inline-start: 0;
  inset-block-start: 0;
  position: fixed;
  inline-size: 100%;
}

.p-header__innerWrap {
  padding-inline: 0;
  border-radius: .3125rem;
  background-color: rgba(255, 255, 255, .75);
  padding: 10px;
  padding: .625rem;
}

.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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.p-header__logo {
  z-index: 41;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  inline-size: 100%;
  max-inline-size: 210px;
  max-inline-size: 13.125rem;
}

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

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

.p-header__nav {
  display: none;
}

.p-header__cta {
  display: block grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  inline-size: 100%;
  max-inline-size: 311px;
  max-inline-size: 19.4375rem;
}

.p-header__button {
  display: none;
  inline-size: 100%;
  max-inline-size: 228px;
  max-inline-size: 14.25rem;
}

.p-header__logo a:focus-visible {
  opacity: .5;
}

/************************************************************************
* p-job
************************************************************************/
:root {
  interpolate-size: allow-keywords;
}

.p-job {
  -webkit-padding-before: 76px;
  -webkit-padding-before: 4.75rem;
  padding-block-start: 76px;
  padding-block-start: 4.75rem;
  -webkit-padding-after: 35px;
  -webkit-padding-after: 2.1875rem;
  padding-block-end: 35px;
  padding-block-end: 2.1875rem;
}

.p-job__pageTitle .p-pageTitle {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
}

.p-job__pageTitle .p-pageTitle .c-pageTitle__sub {
  font-size: 42px;
  font-size: 2.625rem;
}

.p-job__contents {
  margin-inline: auto;
  -webkit-margin-before: 32px;
  -webkit-margin-before: 2rem;
  margin-block-start: 32px;
  margin-block-start: 2rem;
}

.p-job__contents > div {
  row-gap: 55px;
  row-gap: 3.4375rem;
  display: grid;
}

.p-job__blockInner {
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
  overflow: hidden;
}

.p-job__title {
  -webkit-margin-after: 19px;
  -webkit-margin-after: 1.1875rem;
  margin-block-end: 19px;
  margin-block-end: 1.1875rem;
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 600;
}

.p-job__block details::details-content {
  content-visibility: unset;
  display: block grid;
  grid-template-rows: 0fr;
  height: initial;
}

.p-job__block details:not([open])::details-content {
  grid-template-rows: 0fr;
}

.p-job__block details[open]::details-content {
  grid-template-rows: 1fr;
}

.p-job__block summary {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

/************************************************************************
* p-jobIntro
************************************************************************/
.p-jobIntro {
  -webkit-padding-before: 100px;
  -webkit-padding-before: 6.25rem;
  padding-block-start: 100px;
  padding-block-start: 6.25rem;
  -webkit-padding-after: 35px;
  -webkit-padding-after: 2.1875rem;
  padding-block-end: 35px;
  padding-block-end: 2.1875rem;
}

.p-jobIntro__pageTitle .p-pageTitle {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
}

.p-jobIntro__pageTitle .p-pageTitle .c-pageTitle__sub {
  font-size: 42px;
  font-size: 2.625rem;
}

.p-jobIntro__contents {
  margin-inline: auto;
  -webkit-margin-before: 32px;
  -webkit-margin-before: 2rem;
  margin-block-start: 32px;
  margin-block-start: 2rem;
}

.p-jobIntro__list {
  counter-reset: number;
}

.p-jobIntro__item {
  counter-increment: number;
  -webkit-border-before: 1px solid #004EA2;
  border-block-start: 1px solid #004EA2;
}

.p-jobIntro__item:last-child {
  -webkit-border-after: 1px solid #004EA2;
  border-block-end: 1px solid #004EA2;
}

.p-jobIntro__textBox {
  -webkit-margin-before: 10px;
  -webkit-margin-before: .625rem;
  margin-block-start: 10px;
  margin-block-start: .625rem;
}

/************************************************************************
* p-mind
************************************************************************/
.p-magazine {
  padding-block: 24px 0;
  padding-block: 1.5rem 0;
}

.p-magazine__contents {
  -webkit-margin-before: 4px;
  -webkit-margin-before: .25rem;
  margin-block-start: 4px;
  margin-block-start: .25rem;
  border: 1px solid #004EA2;
  background-color: #fff;
}

.p-magazine__block {
  padding-block: 38px 66px;
  padding-block: 2.375rem 4.125rem;
}

.p-magazine__blockInner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-inline: auto;
  row-gap: 40px;
  row-gap: 2.5rem;
  display: block grid;
  grid-template: 'subTitle ' 'links ' 'img ';
  max-inline-size: 500px;
  max-inline-size: 31.25rem;
}

.p-magazine__blockInner[data-type=article] {
  grid-template: 'subTitle' 'list' 'all';
}

.p-magazine__blockInner[data-type=interview] {
  grid-template: 'subTitle' 'largeImg';
}

.p-magazine__subTitle {
  display: inline flex;
  grid-area: subTitle;
}

.p-magazine__linkArea {
  grid-area: links;
  max-inline-size: 464px;
  max-inline-size: 29rem;
}

.p-magazine__linkList {
  display: block grid;
}

.p-magazine__img {
  grid-area: img;
  inline-size: 100%;
  max-inline-size: 630px;
  max-inline-size: 39.375rem;
  block-size: 100%;
}

.p-magazine__img img {
  aspect-ratio: 315/393;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-magazine__list {
  row-gap: 28px;
  row-gap: 1.75rem;
  display: block grid;
  grid-area: list;
}

.p-magazine__all {
  grid-area: all;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-end;
}

.p-magazine__largeImgBox {
  position: relative;
  grid-area: largeImg;
}

.p-magazine__largeImg {
  inline-size: 100%;
  max-inline-size: 589px;
  max-inline-size: 36.8125rem;
}

.p-magazine__largeImg img {
  aspect-ratio: 589/320;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-magazine__textBox {
  inset-block-start: -10px;
  inset-block-start: -.625rem;
  inset-inline-start: -10px;
  inset-inline-start: -.625rem;
  position: absolute;
  color: #004EA2;
  font-family: 'Hiragino Sans';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-magazine__colText {
  row-gap: 7px;
  row-gap: .4375rem;
  display: block 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;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-magazine__colText span {
  background-color: #fff;
  padding-top: 6px;
  padding-top: .375rem;
  padding-right: 2px;
  padding-right: .125rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
  padding-left: 2px;
  padding-left: .125rem;
}

/************************************************************************
* p-mind
************************************************************************/
.p-mind {
  padding-block: 60px 23px;
  padding-block: 3.75rem 1.4375rem;
  position: relative;
}

.p-mind::before {
  inset-inline-start: 0;
  inset-block-start: 0;
  position: absolute;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 0 0);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  background-color: #fff;
  inline-size: 100%;
  block-size: 1249px;
  block-size: 78.0625rem;
  content: '';
}

.p-mind__blockInner {
  position: relative;
  z-index: 1;
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
  -webkit-padding-after: 40px;
  -webkit-padding-after: 2.5rem;
  padding-block-end: 40px;
  padding-block-end: 2.5rem;
}

.p-mind__textBox {
  row-gap: 58px;
  row-gap: 3.625rem;
  display: block grid;
  position: relative;
  z-index: 1;
}

.p-mind__text[data-size=middle] {
  -webkit-margin-before: 36px;
  -webkit-margin-before: 2.25rem;
  margin-block-start: 36px;
  margin-block-start: 2.25rem;
  line-height: normal;
}

.p-mind__img {
  position: relative;
  z-index: 0;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  inline-size: 100%;
  max-inline-size: 801px;
  max-inline-size: 50.0625rem;
}

.p-mind__img img {
  aspect-ratio: 801/534;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mind__text {
  line-height: 2;
  text-align: justify;
}

/************************************************************************
* p-pageTitle
************************************************************************/
.p-pageTitle {
  -webkit-margin-before: 96px;
  -webkit-margin-before: 6rem;
  margin-block-start: 96px;
  margin-block-start: 6rem;
  -webkit-padding-after: 14px;
  -webkit-padding-after: .875rem;
  padding-block-end: 14px;
  padding-block-end: .875rem;
}

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

.p-pagination .nav-links {
  display: block 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;
}

.page-numbers {
  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;
  transition: background-color .3s;
  background-color: #fff;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  color: #004EA2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.4;
}

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

.page-numbers.current {
  background-color: #004EA2;
  color: #fff;
}

.page-numbers.dots {
  background-color: transparent;
}

.page-numbers.prev, .page-numbers.next {
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  background-color: transparent;
  inline-size: initial;
  block-size: initial;
}

.page-numbers.next::before, .page-numbers.prev::before {
  -webkit-mask: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
  mask: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  background-color: #004EA2;
  inline-size: 32px;
  inline-size: 2rem;
  block-size: 20px;
  block-size: 1.25rem;
  content: '';
}

.page-numbers.prev::before {
  rotate: 180deg;
}

.page-numbers.next::after, .page-numbers.prev::after {
  aspect-ratio: 1;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  background-color: #004EA2;
  inline-size: 40px;
  inline-size: 2.5rem;
  content: '';
}

.page-numbers:not(.dots, .next, .prev):focus-visible {
  background-color: #004EA2;
  color: #fff;
}

.page-numbers:focus-visible::before {
  background-color: #fff;
}

.page-numbers:focus-visible::after {
  opacity: 1;
}

.p-related__contents {
  -webkit-margin-before: 28px;
  -webkit-margin-before: 1.75rem;
  margin-block-start: 28px;
  margin-block-start: 1.75rem;
}

.p-related__wrapper {
  position: relative;
}

.p-related__contents.is-initialized:not(.is-active) .splide__list {
  gap: 14px;
  gap: .875rem;
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-related__track {
  overflow: visible;
}

.p-related__inner[data-wide=middle] {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  overflow: hidden;
}

.p-related__track {
  -webkit-padding-after: 24px;
  -webkit-padding-after: 1.5rem;
  padding-block-end: 24px;
  padding-block-end: 1.5rem;
}

.p-related__arrow {
  -webkit-transform: translateY(calc(-50% - 1.5rem));
  transform: translateY(calc(-50% - 1.5rem));
  cursor: none;
  background-color: #004EA2;
  inline-size: 40px;
  inline-size: 2.5rem;
  block-size: 40px;
  block-size: 2.5rem;
}

.p-related__arrow svg {
  display: none;
}

.p-related__arrow::before {
  display: block flow;
  -webkit-mask-image: url(../img/common/icon_arrow2.svg);
  mask-image: url(../img/common/icon_arrow2.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  inline-size: 20px;
  inline-size: 1.25rem;
  block-size: 10px;
  block-size: .625rem;
  content: '';
}

.p-related__arrow--prev::before {
  rotate: 180deg;
}

.p-related__arrow--prev {
  left: -12px;
  left: -.75rem;
}

.p-related__arrow--next {
  right: -12px;
  right: -.75rem;
}

/************************************************************************
* p-section
************************************************************************/
.p-section[data-type=container] {
  container-type: inline-size;
}

/************************************************************************
* p-workStyle
************************************************************************/
.p-workStyle {
  padding-block: 60px 55px;
  padding-block: 3.75rem 3.4375rem;
}

.p-workStyle__contents {
  -webkit-margin-before: 6px;
  -webkit-margin-before: .375rem;
  margin-block-start: 6px;
  margin-block-start: .375rem;
}

.p-workStyle__block {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: number;
}

.p-workStyle__item {
  display: block grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  counter-increment: number;
}

.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-br-sp {
  display: block;
}

.u-br-pc {
  display: none;
}

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

.u-visuallyhidden {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0 0 99.9% 99.9%);
  position: absolute;
  clip-path: inset(0 0 99.9% 99.9%);
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

  .p-fv__images {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    min-block-size: 345px;
    min-block-size: 21.5625rem;
  }

  .p-fv__img img {
    aspect-ratio: 480/1080;
    -o-object-position: center;
    object-position: center;
  }

  .p-fv__title {
    max-inline-size: 70%;
  }
}

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

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

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

  html {
    font-size: .9744214373vw;
  }

  :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: 7%;
    padding-left: 7%;
    max-width: 1702px;
  }

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

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

  .l-container[data-wide=middle] {
    max-inline-size: 1410px;
    max-inline-size: 88.125rem;
  }

  .c-acButton {
    padding-inline: 100px;
    padding-inline: 6.25rem;
    padding-block: 51px 54px;
    padding-block: 3.1875rem 3.375rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-acButton__arrow {
    inset-inline-end: 56px;
    inset-inline-end: 3.5rem;
    inline-size: 49px;
    inline-size: 3.0625rem;
    block-size: 49px;
    block-size: 3.0625rem;
  }

  .c-acButton__arrow::before {
    inline-size: 26px;
    inline-size: 1.625rem;
    block-size: 26px;
    block-size: 1.625rem;
  }

  .c-arrowLink {
    -webkit-column-gap: .875rem;
    -moz-column-gap: .875rem;
    column-gap: .875rem;
    line-height: .6708860759;
  }

  .c-arrowLink__text {
    font-size: 79px;
    font-size: 4.9375rem;
  }

  .c-arrowLink__icon {
    inline-size: 50px;
    inline-size: 3.125rem;
    block-size: 48px;
    block-size: 3rem;
  }

  .c-arrowLink__text[data-size=middle] {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-articleLink {
    grid-template: 'img title arrow' auto 'img info arrow' auto 'img sub arrow' 1fr/auto 1fr -webkit-max-content;
    grid-template: 'img title arrow' auto 'img info arrow' auto 'img sub arrow' 1fr/auto 1fr max-content;
    -webkit-column-gap: 3.6875rem;
    -moz-column-gap: 3.6875rem;
    column-gap: 3.6875rem;
  }

  .c-articleLink__img {
    max-inline-size: 416px;
    max-inline-size: 26rem;
  }

  .c-articleLink__title {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-articleLink__info {
    gap: 25px;
    gap: 1.5625rem;
    -webkit-margin-before: 36px;
    -webkit-margin-before: 2.25rem;
    margin-block-start: 36px;
    margin-block-start: 2.25rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .c-articleLink__subText3 {
    -webkit-margin-before: 10px;
    -webkit-margin-before: .625rem;
    margin-block-start: 10px;
    margin-block-start: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-articleLink__icon {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    inline-size: 50px;
    inline-size: 3.125rem;
    block-size: 47px;
    block-size: 2.9375rem;
  }

  .c-articleLink2__img img {
    aspect-ratio: 413/500;
  }

  .c-articleLink2__info {
    padding-inline: 24px 60px;
    padding-inline: 1.5rem 3.75rem;
    padding-block: 21px 28px;
    padding-block: 1.3125rem 1.75rem;
  }

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

  .c-articleLink2__subText[data-size=large] {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .c-articleLink2__icon {
    inset-inline-end: 28px;
    inset-inline-end: 1.75rem;
    inset-block-end: 25px;
    inset-block-end: 1.5625rem;
    inline-size: 27px;
    inline-size: 1.6875rem;
    block-size: 12px;
    block-size: .75rem;
  }

  .c-commonButton {
    font-size: 35px;
    font-size: 2.1875rem;
  }

  .c-commonLargeText {
    font-size: 87px;
    font-size: 5.4375rem;
    line-height: 1;
  }

  .c-commonLargeText[data-size=middle] {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .c-commonTable th {
    padding-block: 40px;
    padding-block: 2.5rem;
    padding-inline: 31px;
    padding-inline: 1.9375rem;
    display: table-cell;
    vertical-align: middle;
    inline-size: 236px;
    inline-size: 14.75rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-commonTable td {
    padding-inline: 49px 5px;
    padding-inline: 3.0625rem .3125rem;
    padding-block: 40px;
    padding-block: 2.5rem;
    display: table-cell;
    inline-size: initial;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-commonTable tr:first-child td {
    border-top: 1px solid #000;
  }

  .c-commonText {
    font-size: 31px;
    font-size: 1.9375rem;
    line-height: 2.3548387097;
  }

  .c-commonTitle {
    grid-template-rows: auto 1fr;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .c-commonTitle__main {
    font-size: 70px;
    font-size: 4.375rem;
  }

  .c-commonTitle__sub {
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: .03em;
    line-height: .85;
  }

  .c-commonTitle__main[data-size=small] {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-contentsBlock {
    padding-inline: 72px;
    padding-inline: 4.5rem;
    padding-block: 50px;
    padding-block: 3.125rem;
    -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-column-gap: 6.375rem;
    -moz-column-gap: 6.375rem;
    column-gap: 6.375rem;
  }

  .c-contentsBlock__img {
    max-inline-size: 500px;
    max-inline-size: 31.25rem;
  }

  .c-contentsBlock__img img {
    aspect-ratio: 646/365;
  }

  .p-job__textBox {
    max-inline-size: 457px;
    max-inline-size: 28.5625rem;
  }

  .c-contentsBlock__number {
    font-size: 70px;
    font-size: 4.375rem;
  }

  .c-contentsBlock__head {
    display: block flow;
  }

  .c-contentsBlock__title {
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .c-contentsBlock__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-detailHeader {
    aspect-ratio: 1920/752;
  }

  .c-detailHeader__inner {
    -webkit-margin-before: 30px;
    -webkit-margin-before: 1.875rem;
    margin-block-start: 30px;
    margin-block-start: 1.875rem;
  }

  .c-detailHeader__body {
    max-inline-size: 100%;
  }

  .c-detailHeader__title span {
    padding-inline: 12px;
    padding-inline: .75rem;
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1.33;
  }

  .c-numberLink__img img {
    aspect-ratio: 450/450;
    -o-object-position: top;
    object-position: top;
  }

  .c-numberLink__textBox {
    padding-block: 10px 59px;
    padding-block: .625rem 3.6875rem;
    padding-inline: 29px;
    padding-inline: 1.8125rem;
    -webkit-margin-before: -204px;
    -webkit-margin-before: -12.75rem;
    margin-block-start: -204px;
    margin-block-start: -12.75rem;
    -webkit-margin-before: -100px;
    -webkit-margin-before: -6.25rem;
    margin-block-start: -100px;
    margin-block-start: -6.25rem;
  }

  .c-numberLink__number {
    font-size: 102px;
    font-size: 6.375rem;
    line-height: 1.66;
  }

  .c-numberLink__title {
    color: #004EA2;
    font-size: 41px;
    font-size: 2.5625rem;
    line-height: 1.3414634146;
  }

  .c-pageTitle__sub {
    font-size: 110px;
    font-size: 6.875rem;
  }

  .c-pageTitle__main {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-profileBox {
    padding-block: 50px;
    padding-block: 3.125rem;
    gap: 57px;
    gap: 3.5625rem;
    display: block grid;
    grid-template-columns: auto 1fr;
  }

  .c-profileBox__title {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .c-profileBox__infoBox {
    row-gap: 26px;
    row-gap: 1.625rem;
    grid-template-rows: auto 1fr;
    -webkit-padding-start: 20px;
    -webkit-padding-start: 1.25rem;
    padding-inline-start: 20px;
    padding-inline-start: 1.25rem;
    -webkit-padding-before: 14px;
    -webkit-padding-before: .875rem;
    padding-block-start: 14px;
    padding-block-start: .875rem;
    max-inline-size: 690px;
    max-inline-size: 43.125rem;
    block-size: 100%;
  }

  .c-profileBox__textBox {
    max-inline-size: 611px;
    max-inline-size: 38.1875rem;
  }

  .c-profileBox__block {
    display: block grid;
    block-size: 100%;
  }

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

  .c-profileBox__text[data-size=middle] {
    font-size: 32px;
    font-size: 2rem;
  }

  .c-profileBox__text[data-acf=acf_textbox] {
    -webkit-margin-before: 40px;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 40px;
    margin-block-start: 2.5rem;
  }

  .c-profileBox__text[data-size=small] {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-margin-end: -15px;
    -webkit-margin-end: -.9375rem;
    margin-inline-end: -15px;
    margin-inline-end: -.9375rem;
    -webkit-margin-before: 51px;
    -webkit-margin-before: 3.1875rem;
    margin-block-start: 51px;
    margin-block-start: 3.1875rem;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .c-profileBox__img {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    height: auto;
    max-inline-size: 605px;
    max-inline-size: 37.8125rem;
  }

  .c-profileBox__img img {
    aspect-ratio: 605/466;
  }

  .c-sectionTitle {
    -webkit-column-gap: 3.1875rem;
    -moz-column-gap: 3.1875rem;
    column-gap: 3.1875rem;
  }

  .c-sectionTitle[data-colSpace=middle] {
    -webkit-column-gap: 3.4375rem;
    -moz-column-gap: 3.4375rem;
    column-gap: 3.4375rem;
  }

  .c-sectionTitle__main {
    font-size: 37px;
    font-size: 2.3125rem;
  }

  .c-sectionTitle__sub {
    font-size: 179px;
    font-size: 11.1875rem;
  }

  .c-sectionTitle__main[data-size=small] {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-404 {
    padding-block: 120px 160px;
    padding-block: 7.5rem 10rem;
  }

  .p-404__head br {
    display: none;
  }

  .p-404__body br {
    display: none;
  }

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

  .p-404__button {
    -webkit-margin-before: 80px;
    -webkit-margin-before: 5rem;
    margin-block-start: 80px;
    margin-block-start: 5rem;
  }

  .p-about {
    padding-block: 70px 112px;
    padding-block: 4.375rem 7rem;
  }

  .p-about__title {
    margin-inline: auto;
    max-inline-size: 1410px;
    max-inline-size: 88.125rem;
  }

  .p-about__inner {
    -webkit-margin-before: 66px;
    -webkit-margin-before: 4.125rem;
    margin-block-start: 66px;
    margin-block-start: 4.125rem;
  }

  .p-about__contents {
    max-inline-size: 1000px;
    max-inline-size: 62.5rem;
  }

  .p-archive__contents {
    padding-block: 120px;
    padding-block: 7.5rem;
  }

  .p-archive__list {
    gap: 40px;
    gap: 2.5rem;
    max-inline-size: 100%;
  }

  .p-archive__pagination {
    -webkit-margin-before: 60px;
    -webkit-margin-before: 3.75rem;
    margin-block-start: 60px;
    margin-block-start: 3.75rem;
  }

  .p-article {
    row-gap: 130px;
    row-gap: 8.125rem;
    -webkit-padding-after: 88px;
    -webkit-padding-after: 5.5rem;
    padding-block-end: 88px;
    padding-block-end: 5.5rem;
  }

  .p-article__contents {
    -webkit-padding-before: 111px;
    -webkit-padding-before: 6.9375rem;
    padding-block-start: 111px;
    padding-block-start: 6.9375rem;
  }

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

  .p-article__profile {
    -webkit-margin-after: 104px;
    -webkit-margin-after: 6.5rem;
    margin-block-end: 104px;
    margin-block-end: 6.5rem;
  }

  .p-article__body h1,
  .p-article__body h2,
  .p-article__body h3,
  .p-article__body h4,
  .p-article__body h5,
  .p-article__body h6 {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }

  .p-article__body h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }

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

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

  .p-article__body * + * {
    margin-top: 32px;
    margin-top: 2rem;
  }

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

  .p-article__body p + .wp-block-image {
    -webkit-margin-before: 111px;
    -webkit-margin-before: 6.9375rem;
    margin-block-start: 111px;
    margin-block-start: 6.9375rem;
  }

  .p-article__body .wp-block-image {
    -webkit-margin-before: 54px;
    -webkit-margin-before: 3.375rem;
    margin-block-start: 54px;
    margin-block-start: 3.375rem;
  }

  .p-article__body .wp-block-image + h2 {
    -webkit-margin-before: 103px;
    -webkit-margin-before: 6.4375rem;
    margin-block-start: 103px;
    margin-block-start: 6.4375rem;
  }

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

  .p-career {
    padding-block: 71px 155px;
    padding-block: 4.4375rem 9.6875rem;
  }

  .p-career__title .p-pageTitle__inner {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-career__inner[data-wide=middle] {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-contact {
    padding-block: 120px;
    padding-block: 7.5rem;
  }

  .p-contact[data-contact=thanks] {
    -webkit-padding-after: 160px;
    -webkit-padding-after: 10rem;
    padding-block-end: 160px;
    padding-block-end: 10rem;
  }

  .p-contact__form {
    margin-inline: auto;
    max-inline-size: 700px;
    max-inline-size: 43.75rem;
  }

  .p-contact__formWrap {
    margin-inline: auto;
    max-inline-size: 1000px;
    max-inline-size: 62.5rem;
  }

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

  .p-contact__block {
    display: block grid;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .p-contact__label {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-margin-before: 12px;
    -webkit-margin-before: .75rem;
    margin-block-start: 12px;
    margin-block-start: .75rem;
    min-inline-size: 200px;
    min-inline-size: 12.5rem;
  }

  .p-contact__block :where(input, textarea, select) {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    max-inline-size: 880px;
    max-inline-size: 55rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contact__buttonWrap[data-buttonwrap=confirm] {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
    max-inline-size: 620px;
    max-inline-size: 38.75rem;
  }

  .p-contact__checkbox {
    -webkit-margin-before: 30px;
    -webkit-margin-before: 1.875rem;
    margin-block-start: 30px;
    margin-block-start: 1.875rem;
  }

  .p-contact__confirmText {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contact__confirmText .p-contact[data-contact=thanks] {
    -webkit-padding-after: 159px;
    -webkit-padding-after: 9.9375rem;
    padding-block-end: 159px;
    padding-block-end: 9.9375rem;
  }

  .p-contact__textHead {
    -webkit-margin-before: 60px;
    -webkit-margin-before: 3.75rem;
    margin-block-start: 60px;
    margin-block-start: 3.75rem;
  }

  .p-contact__largeText {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .1em;
    line-height: 1.4;
  }

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

  .p-contact__textBox {
    row-gap: 45px;
    row-gap: 2.8125rem;
    -webkit-margin-before: 72px;
    -webkit-margin-before: 4.5rem;
    margin-block-start: 72px;
    margin-block-start: 4.5rem;
    max-inline-size: 100%;
    max-inline-size: 1000px;
    max-inline-size: 62.5rem;
    line-height: 2.2;
    text-align: center;
  }

  .p-contact__block[data-block=confirm] .p-contact__label {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }

  .p-contact__block[data-block=confirm]:not(:first-child) {
    -webkit-margin-before: 44px;
    -webkit-margin-before: 2.75rem;
    margin-block-start: 44px;
    margin-block-start: 2.75rem;
  }

  .p-contact__block[data-block=confirm]:first-child {
    -webkit-margin-before: 12px;
    -webkit-margin-before: .75rem;
    margin-block-start: 12px;
    margin-block-start: .75rem;
  }

  .p-contact__selectWrap::after {
    inset-block-start: 18px;
    inset-block-start: 1.125rem;
  }

  .p-drawer__icon {
    inline-size: 80px;
    inline-size: 5rem;
    block-size: 80px;
    block-size: 5rem;
  }

  .p-drawer__bars {
    width: 27px;
    width: 1.6875rem;
  }

  .p-drawer__inner {
    display: block grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    block-size: 100%;
  }

  .p-drawer__inner li {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-drawer__button {
    margin-inline: auto;
    max-inline-size: 375px;
    max-inline-size: 23.4375rem;
  }

  .p-footer {
    padding-block: 81px 69px;
    padding-block: 5.0625rem 4.3125rem;
  }

  .p-footer__contents {
    display: block grid;
    grid-template-columns: auto 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 13.375rem;
    -moz-column-gap: 13.375rem;
    column-gap: 13.375rem;
  }

  .p-footer__logo {
    max-inline-size: 258px;
    max-inline-size: 16.125rem;
  }

  .p-footer__nav {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    text-align: left;
  }

  .p-footer__nav ul {
    row-gap: 27px;
    row-gap: 1.6875rem;
  }

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

  .p-footer__copy {
    -webkit-margin-before: 77px;
    -webkit-margin-before: 4.8125rem;
    margin-block-start: 77px;
    margin-block-start: 4.8125rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-fv__images {
    min-block-size: auto;
  }

  .p-fv__img[data-img=mv_img1] {
    block-size: 130%;
  }

  .p-fv__img[data-img=mv_img2] {
    block-size: 150%;
  }

  .p-fv__title {
    inset-block-end: 73px;
    inset-block-end: 4.5625rem;
    -webkit-margin-start: 7%;
    margin-inline-start: 7%;
    max-inline-size: 1096px;
    max-inline-size: 68.5rem;
  }

  .p-header__innerWrap {
    padding: 21px 22px;
    padding: 1.3125rem 1.375rem;
    max-inline-size: 1900px;
    max-inline-size: 118.75rem;
  }

  .p-header__logo {
    max-inline-size: 421px;
    max-inline-size: 26.3125rem;
  }

  .p-header__cta {
    grid-template-columns: 1fr auto;
    -webkit-column-gap: 2.1875rem;
    -moz-column-gap: 2.1875rem;
    column-gap: 2.1875rem;
  }

  .p-header__button {
    display: block flow;
  }

  .p-job {
    -webkit-padding-before: 152px;
    -webkit-padding-before: 9.5rem;
    padding-block-start: 152px;
    padding-block-start: 9.5rem;
    -webkit-padding-after: 71px;
    -webkit-padding-after: 4.4375rem;
    padding-block-end: 71px;
    padding-block-end: 4.4375rem;
  }

  .p-job__pageTitle {
    margin-inline: auto;
    max-inline-size: 1410px;
    max-inline-size: 88.125rem;
  }

  .p-job__pageTitle .p-pageTitle .c-pageTitle__sub {
    font-size: 110px;
    font-size: 6.875rem;
  }

  .p-job__contents {
    -webkit-margin-before: 65px;
    -webkit-margin-before: 4.0625rem;
    margin-block-start: 65px;
    margin-block-start: 4.0625rem;
    max-inline-size: 1000px;
    max-inline-size: 62.5rem;
  }

  .p-job__contents > div {
    row-gap: 110px;
    row-gap: 6.875rem;
  }

  .p-job__blockInner {
    -webkit-margin-before: 40px;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 40px;
    margin-block-start: 2.5rem;
  }

  .p-job__title {
    -webkit-margin-after: 38px;
    -webkit-margin-after: 2.375rem;
    margin-block-end: 38px;
    margin-block-end: 2.375rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-jobIntro {
    -webkit-padding-before: 152px;
    -webkit-padding-before: 9.5rem;
    padding-block-start: 152px;
    padding-block-start: 9.5rem;
    -webkit-padding-after: 71px;
    -webkit-padding-after: 4.4375rem;
    padding-block-end: 71px;
    padding-block-end: 4.4375rem;
  }

  .p-jobIntro__pageTitle {
    margin-inline: auto;
    max-inline-size: 1410px;
    max-inline-size: 88.125rem;
  }

  .p-jobIntro__pageTitle .p-pageTitle .c-pageTitle__sub {
    font-size: 110px;
    font-size: 6.875rem;
  }

  .p-jobIntro__contents {
    -webkit-margin-before: 65px;
    -webkit-margin-before: 4.0625rem;
    margin-block-start: 65px;
    margin-block-start: 4.0625rem;
  }

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

  .p-jobIntro__pageTitle .p-pageTitle__inner {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-jobIntro__inner {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-jobIntro__textBox {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }

  .p-magazine {
    padding-block: 38px 0;
    padding-block: 2.375rem 0;
  }

  .p-magazine__contents {
    -webkit-margin-before: 9px;
    -webkit-margin-before: .5625rem;
    margin-block-start: 9px;
    margin-block-start: .5625rem;
  }

  .p-magazine__block {
    padding-block: 78px 84px;
    padding-block: 4.875rem 5.25rem;
  }

  .p-magazine__blockInner {
    padding-inline: 70px 113px;
    padding-inline: 4.375rem 7.0625rem;
    max-inline-size: 100%;
  }

  .p-magazine__blockInner[data-type=article] {
    grid-template: 'subTitle . list' 'all . list'/auto 8.75rem 1fr;
  }

  .p-magazine__blockInner[data-type=interview] {
    grid-template: 'subTitle . largeImg'/auto 8.6875rem 1fr;
  }

  .p-magazine__subTitle {
    display: block flow;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    justify-self: flex-start;
    -webkit-padding-end: 38px;
    -webkit-padding-end: 2.375rem;
    padding-inline-end: 38px;
    padding-inline-end: 2.375rem;
  }

  .p-magazine__linkArea {
    -webkit-margin-before: 193px;
    -webkit-margin-before: 12.0625rem;
    margin-block-start: 193px;
    margin-block-start: 12.0625rem;
  }

  .p-magazine__img img {
    aspect-ratio: 630/786;
  }

  .p-magazine__list {
    row-gap: 66px;
    row-gap: 4.125rem;
  }

  .p-magazine__all {
    justify-self: flex-start;
  }

  .p-magazine__largeImg {
    max-inline-size: 1178px;
    max-inline-size: 73.625rem;
  }

  .p-magazine__largeImg img {
    aspect-ratio: 1178/639;
  }

  .p-magazine__textBox {
    inset-block-start: -20px;
    inset-block-start: -1.25rem;
    inset-inline-start: -38px;
    inset-inline-start: -2.375rem;
    font-size: 46px;
    font-size: 2.875rem;
  }

  .p-magazine__colText {
    row-gap: 14px;
    row-gap: .875rem;
  }

  .p-magazine__colText span {
    padding-top: 23px;
    padding-top: 1.4375rem;
    padding-right: 17px;
    padding-right: 1.0625rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    padding-left: 17px;
    padding-left: 1.0625rem;
  }

  .p-mind {
    padding-block: 103px 38px;
    padding-block: 6.4375rem 2.375rem;
  }

  .p-mind__block {
    display: block flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-mind__blockInner {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-margin-end: -100px;
    -webkit-margin-end: -6.25rem;
    margin-inline-end: -100px;
    margin-inline-end: -6.25rem;
    -webkit-margin-before: 82px;
    -webkit-margin-before: 5.125rem;
    margin-block-start: 82px;
    margin-block-start: 5.125rem;
    -webkit-padding-after: 157px;
    -webkit-padding-after: 9.8125rem;
    padding-block-end: 157px;
    padding-block-end: 9.8125rem;
    max-inline-size: 918px;
    max-inline-size: 57.375rem;
  }

  .p-mind__textBox {
    row-gap: 73px;
    row-gap: 4.5625rem;
  }

  .p-mind__text[data-size=middle] {
    -webkit-margin-end: -456px;
    -webkit-margin-end: -28.5rem;
    margin-inline-end: -456px;
    margin-inline-end: -28.5rem;
    -webkit-margin-before: 73px;
    -webkit-margin-before: 4.5625rem;
    margin-block-start: 73px;
    margin-block-start: 4.5625rem;
    line-height: 2.09;
  }

  .p-mind__text {
    line-height: 2.33;
  }

  .p-pageTitle {
    -webkit-margin-before: 124px;
    -webkit-margin-before: 7.75rem;
    margin-block-start: 124px;
    margin-block-start: 7.75rem;
    -webkit-padding-after: 27px;
    -webkit-padding-after: 1.6875rem;
    padding-block-end: 27px;
    padding-block-end: 1.6875rem;
  }

  .page-numbers {
    inline-size: 60px;
    inline-size: 3.75rem;
    block-size: 60px;
    block-size: 3.75rem;
  }

  .page-numbers.next {
    -webkit-margin-start: 40px;
    -webkit-margin-start: 2.5rem;
    margin-inline-start: 40px;
    margin-inline-start: 2.5rem;
  }

  .page-numbers.prev {
    -webkit-margin-end: 30px;
    -webkit-margin-end: 1.875rem;
    margin-inline-end: 30px;
    margin-inline-end: 1.875rem;
  }

  .page-numbers.next::after, .page-numbers.prev::after {
    inline-size: 60px;
    inline-size: 3.75rem;
  }

  .p-related__contents {
    -webkit-margin-before: 53px;
    -webkit-margin-before: 3.3125rem;
    margin-block-start: 53px;
    margin-block-start: 3.3125rem;
  }

  .p-related__contents.is-initialized:not(.is-active) .splide__list {
    gap: 55px;
    gap: 3.4375rem;
    display: block flex;
  }

  .p-related__arrow {
    inline-size: 60px;
    inline-size: 3.75rem;
    block-size: 60px;
    block-size: 3.75rem;
  }

  .p-related__arrow--prev {
    left: -18px;
    left: -1.125rem;
  }

  .p-related__arrow--next {
    right: -18px;
    right: -1.125rem;
  }

  .p-related__item {
    max-inline-size: 413px;
    max-inline-size: 25.8125rem;
  }

  .p-workStyle {
    padding-block: 107px 110px;
    padding-block: 6.6875rem 6.875rem;
  }

  .u-br-sp {
    display: none;
  }

  .u-br-pc {
    display: block;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

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

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

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

  .p-related__inner[data-wide=middle] {
    padding-inline: 24px;
    padding-inline: 1.5rem;
    max-inline-size: 1398px;
    max-inline-size: 87.375rem;
  }

  .u-onlyPc {
    display: block;
  }

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

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

  .p-drawer__icon {
    inline-size: 48px;
    inline-size: 3rem;
    block-size: 48px;
    block-size: 3rem;
  }
}

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

  .c-contentsBlock__img {
    max-inline-size: 647px;
    max-inline-size: 40.4375rem;
  }
}

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

  .p-article__body h2 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

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

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

  .p-career__inner[data-wide=middle] {
    max-inline-size: 1600px;
    max-inline-size: 100rem;
  }
}

@media (min-width: 1642px) {

  html {
    font-size: 16px;
  }
}

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

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

  .p-fv__title {
    -webkit-margin-start: 30px;
    -webkit-margin-start: 1.875rem;
    margin-inline-start: 30px;
    margin-inline-start: 1.875rem;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

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

  .c-sectionTitle__sub {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (any-hover: hover) {

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

  .c-acButton:hover::before {
    background-color: #004EA2;
  }

  .c-acButton:hover .c-acButton__text {
    color: #fff;
  }

  .c-arrowLink:hover {
    opacity: .5;
  }

  .c-articleLink:hover {
    opacity: .5;
  }

  .c-articleLink2:hover {
    -webkit-box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .1);
    background-color: #004EA2;
  }

  .c-articleLink2:hover .c-articleLink2__subText {
    color: #fff;
  }

  .c-articleLink2:hover .c-articleLink2__icon::before {
    background-color: #fff;
  }

  .c-commonButton:hover {
    opacity: 1;
    background-color: #fff;
    color: #004EA2;
  }

  .c-commonButton[data-bg=red]:hover {
    background-color: #fff;
    color: #de2726;
  }

  .c-numberLink:hover .c-numberLink__textBox {
    opacity: .8;
  }

  .p-404__textLink:hover {
    opacity: .5;
  }

  .p-drawer__navLink:hover {
    opacity: .5;
  }

  .p-footer__logo a:hover {
    opacity: .5;
  }

  .p-footer__navLink:hover {
    opacity: .5;
  }

  .p-header__logo a:hover {
    opacity: .5;
  }

  .page-numbers:not(.dots, .next, .prev):hover {
    background-color: #004EA2;
    color: #fff;
  }

  .page-numbers:hover::before {
    background-color: #fff;
  }

  .page-numbers:hover::after {
    opacity: 1;
  }
}

@media (hover: none) {

  #mouse-stalker {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {

  .p-job__block details::details-content {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-property: grid-template-rows;
    transition-property: grid-template-rows;
    transition-property: grid-template-rows, -ms-grid-rows;
  }
}
/*# sourceMappingURL=map/style.css.map */