@charset "UTF-8";



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

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

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

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

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

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

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

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

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

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

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

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

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

cite {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 1;
  }

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

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #333;
}

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

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class])::after {
  aspect-ratio: 1;
  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;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-left: .5333333333em;
  background-color: #6B7986;
  width: 12px;
  width: .75rem;
  content: '';
}

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

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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 #999;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .4em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #0658A2;
  width: .73em;
  height: .73em;
  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: 2.4em;
  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 #ddd;
  border-radius: .1875rem;
  background-color: #fff;
  width: 1.6em;
  height: 1.6em;
  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 #0658A2;
  border-bottom: .25em solid #0658A2;
  width: .8em;
  height: 1.6em;
  content: '';
}

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

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

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

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

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

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

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

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: 70px;
}

/************************************************************************
* 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: #0658A2;
}

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

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

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

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

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

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

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

.l-footer {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

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

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

.l-header.is-fixed.is-hidden {
  top: -110%;
  -webkit-transition: top 1.5s ease 0s;
  transition: top 1.5s ease 0s;
}

.l-main {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.l-main--single {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.l-section--personal {
  padding-top: 100px;
  padding-top: 6.25rem;
}

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

.l-section--page {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.l-section--bg {
  margin-top: 100px;
  margin-top: 6.25rem;
  padding: 80px 0;
  padding: 5rem 0;
}

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

.l-section__inner {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.l-section__inner--feature {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.l-section__inner--member {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 0;
}

.l-section__inner--company {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.l-section__inner--contact {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.l-section__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 2.5rem;
  background-color: #0658A2;
  background-image: none;
  padding: 27px 22px;
  padding: 1.6875rem 1.375rem;
  width: 335px;
  width: 20.9375rem;
  max-width: 100%;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

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

.c-btn--arrowRight::after {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 30px;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: top;
  mask-position: top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  background-color: currentColor;
  width: 10px;
  width: .625rem;
  content: '';
}

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

.c-btn--arrowLeft::before {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 30px;
  left: 1.875rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: top;
  mask-position: top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  content: '';
}

.c-btn--small {
  padding-top: 10px;
  padding-top: .625rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  font-size: 16px;
  font-size: 1rem;
}

.c-btn--small .c-btn__text::before {
  -webkit-transform: translateY(-.125rem);
  transform: translateY(-.125rem);
}

.c-btn--white {
  background-color: #fff;
  color: #0658A2;
}

.c-btn--gray {
  background-color: #535B6B;
  color: #fff;
}

.c-btn--whiteLine {
  border: 1px solid #0658A2;
  border-radius: 3.125rem;
  background-color: #fff;
  color: #0658A2;
}

.c-btn--shadow {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-btn--iconBtn .c-btn__text::before {
  aspect-ratio: 1;
  display: inline-block;
  vertical-align: top;
  -webkit-mask-position: top;
  mask-position: top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  margin-right: .5em;
  width: 22px;
  width: 1.375rem;
  content: '';
}

.c-btn--iconBtnMail .c-btn__text::before {
  -webkit-mask-image: url(../img/common/icon-mail.svg);
  mask-image: url(../img/common/icon-mail.svg);
  background-color: #0658A2;
}

.c-btn--iconBtnMailWhite .c-btn__text::before {
  -webkit-mask-image: url(../img/common/icon-mail.svg);
  mask-image: url(../img/common/icon-mail.svg);
  background-color: #fff;
}

.c-btn--iconBtnTel {
  padding: 15.5px 50px;
  padding: .96875rem 3.125rem;
}

.c-btn--iconBtnTel .c-btn__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/common/icon-tel.svg);
  mask-image: url(../img/common/icon-tel.svg);
  background-color: #0658A2;
}

.c-btn--iconDocument .c-btn__text::before {
  -webkit-mask-image: url(../img/common/icon-document.svg);
  mask-image: url(../img/common/icon-document.svg);
  background-color: #fff;
}

.c-btn--iconRiskmap .c-btn__text::before {
  -webkit-mask-image: url(../img/common/icon-riskmap.svg);
  mask-image: url(../img/common/icon-riskmap.svg);
  background-color: currentColor;
}

.c-btn__text {
  display: block;
  position: relative;
}

.c-btn__text.c-btn__text--header {
  padding-left: 30px;
  padding-left: 1.875rem;
}

.c-btn__text--tel {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.c-btn__text--time {
  display: block;
  font-size: 13px;
  font-size: .8125rem;
  letter-spacing: .01em;
}

.c-strong {
  font-weight: 700;
}

.c-dot {
  color: #84BBEC;
}

.c-sectionTitle {
  margin-inline: auto;
  display: block;
  position: relative;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.c-sectionTitle::before {
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 1.1875rem));
  transform: translateX(calc(-50% - 1.1875rem));
  background-color: #0658A2;
}

.c-sectionTitle--white {
  color: #fff;
}

.c-sectionTitle--white::before {
  background-color: #84BBEC;
}

.c-sectionTitle--page {
  gap: 8px;
  gap: .5rem;
  display: grid;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}

.c-sectionTitle--interview {
  padding-bottom: 10px;
  padding-bottom: .625rem;
}

.c-sectionTitle__en {
  color: #0658A2;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-sectionTitle__en::before {
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 1.1875rem));
  transform: translateX(calc(-50% + 1.1875rem));
  background-color: #0658A2;
}

.c-sectionTitle__en--white {
  color: #fff;
}

.c-sectionTitle__en--white::before {
  background-color: #84BBEC;
}

.c-sectionTitle__label {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.c-sectionTitle__label::before {
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 1.1875rem));
  transform: translateX(calc(-50% + 1.1875rem));
  background-color: #0658A2;
}

.c-sectionTitle__ja {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}

.c-sectionTitle__ja::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #84BBEC;
}

.c-sectionTitle__ja--white {
  color: #fff;
}

.c-sectionTitle__ja--white::before {
  background-color: #84BBEC;
}

.c-sectionTitle__ja--page {
  font-size: 36px;
  font-size: 2.25rem;
}

.c-sectionTitle__ja--interview {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.c-sectionTitle__ja--document {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}

.c-sectionTitle__deco::before {
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 1.1875rem));
  transform: translateX(calc(-50% + 1.1875rem));
  background-color: #0658A2;
}

.c-sectionTitle::before,
.c-sectionTitle__en::before,
.c-sectionTitle__ja::before,
.c-sectionTitle__label::before,
.c-sectionTitle__ja--document::before,
.c-sectionTitle__deco::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  width: 5px;
  width: .3125rem;
  content: '';
}

.c-subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-subtitle__text {
  padding-inline: 26px;
  padding-inline: 1.625rem;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.c-subtitle__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: .8125rem 0 0 0 #84BBEC;
  box-shadow: .8125rem 0 0 0 #84BBEC;
  border-radius: 50%;
  background-color: #0658A2;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.c-subtitle__text::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: -.8125rem 0 0 0 #84BBEC;
  box-shadow: -.8125rem 0 0 0 #84BBEC;
  border-radius: 50%;
  background-color: #0658A2;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-404 {
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 187, 236, .1)), to(rgba(132, 187, 236, .05)));
  background: linear-gradient(180deg, rgba(132, 187, 236, .1) 0%, rgba(132, 187, 236, .05) 100%);
  padding: 80px 0;
  padding: 5rem 0;
  min-height: calc(100vh - var(--header-height));
}

.p-404__inner {
  width: 100%;
}

.p-404__content {
  position: relative;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  text-align: center;
}

.p-404__number {
  opacity: .15;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #0658A2;
  font-family: 'Titillium Web', sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.p-404__title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #0658A2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-404__text {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-404__character {
  display: block;
  position: absolute;
  right: 5.3333333333%;
  bottom: 0;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

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

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

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

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

.p-article__date {
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
}

.p-article__category {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 1.875rem;
  background-color: #535B6B;
  padding: 0 12px;
  padding: 0 .75rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

.p-article__title {
  margin-top: 14px;
  margin-top: .875rem;
  border-bottom: 1px solid #DDD;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

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

.p-article__body {
  margin-top: 24px;
  margin-top: 1.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-top: 1em;
  margin-bottom: .2em;
  font-weight: 700;
}

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

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

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

.p-article__body h4,
.p-article__body h5 {
  font-size: 16px;
  font-size: 1rem;
}

.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: #333;
  content: 'ー';
}

.p-article__body a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  text-decoration: underline;
}

.p-article__body img {
  margin: 1em 0;
  max-width: 100%;
  height: auto;
}

.p-article__body ul {
  margin-bottom: 1.5em;
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  margin-bottom: .5em;
  padding-left: 1.2em;
  line-height: 1.8;
}

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

.p-article__body ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  list-style: decimal;
}

.p-article__body ol li {
  margin-bottom: .5em;
  line-height: 1.8;
}

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

.p-article__body table th {
  border-right: 1px solid #333;
  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: 1em;
}

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

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

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

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

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

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

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

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

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #333;
  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: #535B6B;
  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 #0658A2;
  width: 2em;
  height: 2em;
  color: #0658A2;
  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: #0658A2;
  color: #fff;
}

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

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

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

.p-article__navItem {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.p-article__navItem--prev, .p-article__navItem--next {
  width: auto;
}

.p-article__navItem--archive {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.p-article__navLink {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-article__navLink--archive {
  gap: 8px;
  gap: .5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.p-article__navIcon {
  aspect-ratio: 1;
  display: inline-block;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-color .3s ease, border-color .3s ease;
  transition: background-color .3s ease, border-color .3s ease;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #0658A2;
  width: 36px;
  width: 2.25rem;
}

.p-article__navIcon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-mask-image: url('../img/common/icon-chevron-right.svg');
  mask-image: url('../img/common/icon-chevron-right.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: #fff;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-article__navIcon--prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.p-article__navIcon--archive {
  border: none;
  background-color: transparent;
  width: 20px;
  width: 1.25rem;
}

.p-article__navIcon--archive::before {
  -webkit-mask-image: url('../img/common/solar.svg');
  mask-image: url('../img/common/solar.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: #838383;
  width: 100%;
  height: 100%;
}

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

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

.p-breadcrumb__inner {
  gap: 5px 10px;
  gap: .3125rem .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-breadcrumb__inner a {
  font-weight: 500;
}

.p-breadcrumb__inner a:hover {
  color: #0658A2;
}

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

.p-categoryFilter__item {
  list-style: none;
}

.p-categoryFilter__button {
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #8e9bb4;
  border-radius: 1.875rem;
  background-color: #fff;
  padding: 0 12px;
  padding: 0 .75rem;
  color: #535B6B;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-categoryFilter__button.is-active {
  border-color: #535B6B;
  background-color: #535B6B;
  color: #fff;
}

.p-character--footer {
  display: block;
  width: 100%;
  height: 100%;
}

.p-character__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 44.578313253%;
}

.p-character__image--right {
  right: auto;
  left: 0;
}

.p-character__image img {
  aspect-ratio: 74/154;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-character__balloon {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #F0F8FF;
  background-image: url(../img/top/fukidashi.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 118px;
  width: 7.375rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-character__balloon--right {
  right: 0;
  left: auto;
}

.p-character__balloon--contact {
  background-image: none;
}

.p-character__balloonText {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  text-align: center;
}

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

.p-recruitPage .p-character__balloonText {
  padding-top: 12px;
  padding-top: .75rem;
}

.p-character__balloonText--link span {
  position: relative;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}

.p-character__balloonText--link span::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #0658A2;
  width: 20px;
  width: 1.25rem;
  content: '';
}

@-webkit-keyframes characterBounceBounce {

  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  8.8% {
    -webkit-transform: translateY(-10px) scale(1.05);
    transform: translateY(-10px) scale(1.05);
  }

  17.6% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  26.5% {
    -webkit-transform: translateY(-8px) scale(1.03);
    transform: translateY(-8px) scale(1.03);
  }

  35.3% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  44.1% {
    -webkit-transform: translateY(-6px) scale(1.02);
    transform: translateY(-6px) scale(1.02);
  }

  52.9% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  70.6% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes characterBounceBounce {

  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  8.8% {
    -webkit-transform: translateY(-10px) scale(1.05);
    transform: translateY(-10px) scale(1.05);
  }

  17.6% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  26.5% {
    -webkit-transform: translateY(-8px) scale(1.03);
    transform: translateY(-8px) scale(1.03);
  }

  35.3% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  44.1% {
    -webkit-transform: translateY(-6px) scale(1.02);
    transform: translateY(-6px) scale(1.02);
  }

  52.9% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  70.6% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

/************************************************************************
* p-characterIntro
************************************************************************/

.p-characterIntro__textBox {
  position: relative;
  padding-top: 56px;
  padding-top: 3.5rem;
}

.p-characterIntro__titleContainer {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.p-characterIntro__title {
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.p-characterIntro__name {
  border-radius: 100vh;
  background-color: #0658A2;
  padding: 4px 72px;
  padding: .25rem 4.5rem;
}

.p-characterIntro__nameText {
  display: block;
  color: #fff;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.p-characterIntro__description {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: .625rem;
  background-color: #F0F8FF;
  padding: 55px 20px 50px;
  padding: 3.4375rem 1.25rem 3.125rem;
}

.p-characterIntro__text {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.7;
}

.p-characterIntro__imageContainer {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: -40px;
  margin-top: -2.5rem;
  width: 225px;
  width: 14.0625rem;
  text-align: center;
}

.p-characterIntro__image {
  aspect-ratio: 225/468;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-company {
  margin-inline: auto;
  position: relative;
  background-image: url(../img/top/company_bg_sp.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1920px;
}

.p-company__inner {
  position: relative;
}

.p-company__content {
  color: #fff;
}

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

.p-company__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.2;
}

.p-company__btnArea {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-company__character {
  position: absolute;
  right: 5.3333333333%;
  bottom: 0;
  -webkit-transform: translateY(57.6%);
  transform: translateY(57.6%);
  z-index: 1;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

.p-contact {
  position: relative;
  background-color: #0658A2;
}

.p-contact::before, .p-contact::after {
  aspect-ratio: 240/222;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  width: 15rem;
  content: '';
}

.p-contact::before {
  top: 0;
  left: 0;
  background-image: url(../img/common/contact_top.png);
}

.p-contact::after {
  right: 0;
  bottom: 0;
  background-image: url(../img/common/contact_bottom.png);
}

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

.p-contact__character {
  position: absolute;
  bottom: 0;
  left: 3.7333333333%;
  -webkit-transform: translateY(57.6%);
  transform: translateY(57.6%);
  z-index: 1;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

.p-contact__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.5;
  text-align: center;
}

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

.p-contact__telText {
  gap: 7px;
  gap: .4375rem;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-contact__telText--tel {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-family: 'Titillium Web', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-contact__telText--tel::before {
  aspect-ratio: 1;
  display: inline-block;
  -webkit-mask-image: url(../img/common/icon-tel.svg);
  mask-image: url(../img/common/icon-tel.svg);
  -webkit-mask-position: bottom;
  mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-right: 3px;
  margin-right: .1875rem;
  background-color: #fff;
  width: 26px;
  width: 1.625rem;
  content: '';
}

.p-contact__telText--time {
  margin-inline: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
}

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

.p-contactBanner {
  border-radius: 1.25rem;
}

.p-contactBanner__inner {
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-contactBanner__link {
  aspect-ratio: 335/260;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: .3125rem .3125rem 1.25rem rgba(0, 0, 0, .25);
  box-shadow: .3125rem .3125rem 1.25rem rgba(0, 0, 0, .25);
  border-radius: 1.25rem;
  background-image: url(../img/common/contact_banner_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 880px;
  overflow: clip;
}

.p-contactBanner__link::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: rgba(244, 244, 244, .5);
  width: 100%;
  height: 100%;
  content: '';
}

.p-contactBanner__link:hover::after {
  background-color: rgba(244, 244, 244, .2);
}

.p-contactBanner__link a {
  display: block;
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  padding: 0 30px;
  padding: 0 1.875rem;
  height: 100%;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contactBanner__link a::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #0658A2;
  width: 24px;
  width: 1.5rem;
  content: '';
}

.p-contactBanner__link a:hover::after {
  -webkit-transform: translateY(-50%) translateX(.3125rem);
  transform: translateY(-50%) translateX(.3125rem);
}

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

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

.p-contactBannerLinks--page > li {
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-contactBannerLinks__link {
  display: block;
  -webkit-transition: -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
  transition: -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
  transition: box-shadow .3s ease, transform .3s ease;
  transition: box-shadow .3s ease, transform .3s ease, -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
  -webkit-box-shadow: 0 0 2.375rem rgba(0, 0, 0, .1);
  box-shadow: 0 0 2.375rem rgba(0, 0, 0, .1);
  border-radius: .8125rem;
  border-radius: .875rem;
  overflow: hidden;
}

.p-contactBannerLinks__link:hover {
  -webkit-transform: translateY(-.125rem);
  transform: translateY(-.125rem);
  -webkit-box-shadow: 0 0 3.125rem rgba(0, 0, 0, .2);
  box-shadow: 0 0 3.125rem rgba(0, 0, 0, .2);
}

.p-contactBannerLinks__link img {
  aspect-ratio: 335/126;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-contactBannerLinks__link:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.p-contactForm__inner {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-contactForm__box {
  border-radius: .625rem;
  background-color: #F0F8FF;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

.p-contactForm__icon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 50%;
  background-color: #0658A2;
  width: 80px;
  width: 5rem;
}

.p-contactForm__icon img {
  width: 42%;
}

.p-contactForm__title {
  color: #0658A2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: center;
}

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

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

.p-contactForm__text + .p-contactForm__text {
  margin-top: 1lh;
}

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

.p-contactForm__footer {
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-contactTel__inner {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-contactTel__box {
  border-radius: .625rem;
  background-color: #F0F8FF;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
  text-align: center;
}

.p-contactTel__icon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 50%;
  background-color: #0658A2;
  width: 80px;
  width: 5rem;
}

.p-contactTel__icon img {
  width: 42%;
}

.p-contactTel__title {
  color: #0658A2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}

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

.p-contactTel__number {
  display: block;
  margin-top: 12px;
  margin-top: .75rem;
  color: #0658A2;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-contactTel__number:hover {
  opacity: .7;
}

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

.p-contentBox__note {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  font-size: 15px;
  font-size: .9375rem;
  text-align: center;
}

.p-contentBox__inner h2 {
  position: relative;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  color: #333;
  font-family: 'Noto Sans JP';
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: center;
}

.p-contentBox__inner h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url('../img/common/frame.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  width: 3.3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-contentBox__inner h2:not(:first-of-type) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contentBox__inner p {
  font-size: 15px;
  font-size: .9375rem;
}

.p-contentBox__content {
  margin-top: 20px;
  margin-top: 1.25rem;
  background-color: #F0F8FF;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

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

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

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

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

.p-contentBox__content h4,
.p-contentBox__content h5 {
  font-size: 16px;
  font-size: 1rem;
}

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

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

.p-contentBox__content a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  text-decoration: underline;
}

.p-contentBox__content img {
  margin: 1em 0;
  max-width: 100%;
  height: auto;
}

.p-contentBox__content ul {
  margin-bottom: 1.5em;
  list-style: none;
}

.p-contentBox__content ul li {
  position: relative;
  margin-bottom: .5em;
  padding-left: 1.2em;
  line-height: 1.8;
}

.p-contentBox__content ul li::before {
  position: absolute;
  left: 0;
  color: #333;
  content: '・';
}

.p-contentBox__content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  list-style: decimal;
}

.p-contentBox__content ol li {
  margin-bottom: .5em;
  line-height: 1.8;
}

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

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

.p-contentBox__content table th {
  border-right: 1px solid #333;
  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-contentBox__content > *:first-child {
  margin-top: 0;
}

.p-contentBox__content > *:last-child {
  margin-bottom: 0;
}

.p-contentBox__inner h3 {
  padding-inline: 26px;
  padding-inline: 1.625rem;
  margin-inline: auto;
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

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

.p-contentBox__inner h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: .8125rem 0 0 0 #84BBEC;
  box-shadow: .8125rem 0 0 0 #84BBEC;
  border-radius: 50%;
  background-color: #0658A2;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-contentBox__inner h3::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: -.8125rem 0 0 0 #84BBEC;
  box-shadow: -.8125rem 0 0 0 #84BBEC;
  border-radius: 50%;
  background-color: #0658A2;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-contentBox__inner h4,
.p-contentBox__inner h5,
.p-contentBox__inner h6 {
  font-weight: 700;
  line-height: 1.5;
}

.p-contentBox__inner h4 {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #0658A2;
  font-size: 18px;
  font-size: 1.125rem;
}

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

.p-contentBox__inner h5 {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 17px;
  font-size: 1.0625rem;
}

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

.p-contentBox__inner h6 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

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

.p-contentBox__inner p {
  margin-top: 12px;
  margin-top: .75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

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

.p-contentBox__inner p:last-child {
  margin-bottom: 0;
}

.p-contentBox__inner a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #0658A2;
  text-decoration: underline;
}

.p-contentBox__inner ul {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
}

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

.p-contentBox__inner ul li {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

.p-contentBox__inner ul li::before {
  position: absolute;
  left: 0;
  color: #333;
  content: '・';
}

.p-contentBox__inner ul li + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-contentBox__inner strong,
.p-contentBox__inner b {
  font-weight: 500;
}

.p-contentBox__inner table {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

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

.p-contentBox__inner table th,
.p-contentBox__inner table td {
  vertical-align: top;
  border: 1px solid #0658A2;
  padding: 15px 10px;
  padding: .9375rem .625rem;
  text-align: left;
}

.p-contentBox__inner table th {
  background-color: rgba(6, 88, 162, .1);
  min-width: 100px;
  min-width: 6.25rem;
  font-weight: 700;
}

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

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

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

.p-contentBox__inner dl dt {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.p-contentBox__inner dl dt:first-child {
  margin-top: 0;
}

.p-contentBox__inner dl dd {
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

.p-contentBox__inner img {
  display: block;
  margin: 30px auto;
  margin: 1.875rem auto;
  max-width: 100%;
  height: auto;
}

.p-contentBox__inner blockquote {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-left: 4px solid #0658A2;
  border-left: .25rem solid #0658A2;
  background-color: rgba(6, 88, 162, .05);
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.7;
}

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

.p-contentBox__inner blockquote p {
  margin-top: 0;
}

.p-contentBox__inner pre {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .3125rem;
  background-color: rgba(51, 51, 51, .05);
  padding: 20px;
  padding: 1.25rem;
  overflow-x: auto;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.6;
}

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

.p-contentBox__inner pre code {
  font-family: 'Courier New', Courier, monospace;
}

.p-contentBox__inner code {
  border-radius: .1875rem;
  background-color: rgba(51, 51, 51, .05);
  padding: 2px 6px;
  padding: .125rem .375rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-size: .875rem;
}

.p-contentBox__inner hr {
  margin: 32px 0;
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #0658A2;
}

.p-requirements__list,
.p-companyOverview__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-dataList {
  display: grid;
}

.p-dataList__item {
  gap: 2px;
  gap: .125rem;
  display: grid;
  border-bottom: 1px solid #DDD;
  padding: 10px 0;
  padding: .625rem 0;
}

.p-dataList__term {
  color: #0658A2;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.p-dataList__term--black {
  color: #333;
}

.p-dataList__description {
  font-size: 15px;
  font-size: .9375rem;
}

.p-companyOverview__address {
  gap: 16px;
  gap: 1rem;
  display: grid;
}

.p-companyOverview__map {
  width: 100%;
}

.p-companyOverview__map iframe {
  aspect-ratio: 335/124;
  width: 100%;
  height: 100%;
}

.p-companyOverview__contact {
  display: grid;
}

.p-companyOverview__contactBtn {
  margin-top: 5px;
  margin-top: .3125rem;
  max-width: 335px;
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 14px 20px;
  padding: .875rem 1.25rem;
  line-height: 1;
  text-align: center;
}

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  margin-top: .4375rem;
  background: #0658A2;
  width: 100%;
  height: 1px;
  height: .0625rem;
}

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

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-.5rem) rotate(-45deg);
  transform: translateY(-.5rem) 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;
  width: 100vw;
  height: 100vh;
}

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

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

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

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

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

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

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

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-drawer__linkList {
  margin-top: calc(2.5rem - 1em);
}

.p-drawer__footer {
  margin-inline: auto;
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: calc(5.125rem - .5em);
}

.p-exLink {
  gap: calc(1.3125rem - 1em);
  display: grid;
}

.p-exLink__link {
  display: block;
  padding: .5em 0;
}

.p-exLink__link > span {
  position: relative;
  padding-right: 2.3125em;
  color: #0658A2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-exLink__link > span::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-radius: 50%;
  background-color: #0658A2;
  background-image: url(../img/common/icon-btn-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34.4827586207%;
  width: 29px;
  width: 1.8125rem;
  content: '';
}

.p-faq {
  background-color: #F0F8FF;
}

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

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

.p-faq__list {
  gap: 8px;
  gap: .5rem;
  display: grid;
  margin-top: 14px;
  margin-top: .875rem;
}

.p-faq__item {
  border-radius: .3125rem;
  overflow: clip;
}

.p-faq__question {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  cursor: pointer;
  background-color: #fff;
  padding: 10px 16px;
  padding: .625rem 1rem;
  width: 100%;
  text-align: left;
}

.p-faq__question[aria-expanded=true] {
  background-color: #0658A2;
}

.p-faq__icon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: 50%;
  background-color: #0658A2;
  width: 36px;
  width: 2.25rem;
}

.p-faq__question[aria-expanded=true] .p-faq__icon {
  background-color: #fff;
}

.p-faq__iconLabel {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  color: #fff;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.p-faq__question[aria-expanded=true] .p-faq__iconLabel {
  color: #0658A2;
}

.p-faq__questionText {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  color: #0658A2;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.p-faq__question[aria-expanded=true] .p-faq__questionText {
  color: #fff;
}

.p-faq__toggle {
  aspect-ratio: 1;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  width: 1.375rem;
}

.p-faq__toggle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  background-color: #999;
  width: 2px;
  width: .125rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-faq__question[aria-expanded=true] .p-faq__toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, background-color .3s ease;
  transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  background-color: #999;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-faq__question[aria-expanded=true] .p-faq__toggle::after {
  background-color: #fff;
}

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

.p-faq__answerInner {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 16px;
  padding: .625rem 1rem;
}

.p-faq__answerIcon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0658A2;
  width: 36px;
  width: 2.25rem;
}

.p-faq__answerIconLabel {
  color: #fff;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

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

/************************************************************************
* p-feature
************************************************************************/
.p-feature {
  position: relative;
  overflow-x: clip;
}

.p-feature__inner {
  position: relative;
}

.p-feature__inner::before {
  aspect-ratio: 272/182;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/common/back_logo.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 272px;
  width: 17rem;
  content: '';
}

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

.p-feature__lead::before, .p-feature__lead::after {
  aspect-ratio: 350/604;
  display: block;
  position: absolute;
  top: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 187px;
  width: 11.6875rem;
  content: '';
}

.p-feature__lead::before {
  left: -28px;
  left: -1.75rem;
  z-index: -1;
  background-image: url(../img/top/feature_left.png);
}

.p-feature__subtitle {
  margin-inline: auto;
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 1.3125em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-feature__subtitle::before, .p-feature__subtitle::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #0658A2;
  width: 5px;
  width: .3125rem;
  content: '';
}

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

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

.p-feature__pentagon {
  margin-inline: auto;
  aspect-ratio: 1;
  position: relative;
  margin-top: 10px;
  margin-top: .625rem;
  width: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-feature__pentagon::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #D2DEF4;
  border-radius: 50%;
  width: 67.1641791045%;
  content: '';
}

.p-feature__item {
  aspect-ratio: 110/124;
  position: absolute;
  z-index: 1;
  width: 32.8358208955%;
}

.p-feature__item .p-feature__itemTitle {
  background-position: top;
  background-repeat: no-repeat;
  background-size: 2.5rem;
}

.p-feature__item--01 {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-feature__item--01 .p-feature__itemTitle {
  background-image: url(../img/top/feature-item-title-01.svg);
}

.p-feature__item--02 {
  top: 23.2835820896%;
  right: 0;
}

.p-feature__item--02 .p-feature__itemTitle {
  background-image: url(../img/top/feature-item-title-02.svg);
}

.p-feature__item--03 {
  right: 13.4328358209%;
  bottom: 0;
}

.p-feature__item--03 .p-feature__itemTitle {
  background-image: url(../img/top/feature-item-title-03.svg);
}

.p-feature__item--04 {
  bottom: 0;
  left: 13.4328358209%;
}

.p-feature__item--04 .p-feature__itemTitle {
  background-image: url(../img/top/feature-item-title-04.svg);
}

.p-feature__item--05 {
  top: 23.2835820896%;
  left: 0;
}

.p-feature__item--05 .p-feature__itemTitle {
  background-image: url(../img/top/feature-item-title-05.svg);
}

.p-feature__itemInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 11.2903225806%;
  -webkit-box-shadow: 0 0 20px rgba(6, 88, 162, .3);
  box-shadow: 0 0 20px rgba(6, 88, 162, .3);
  border-radius: 50%;
  background-color: #F0F8FF;
  width: 100%;
  height: 88.7096774194%;
}

.p-feature__itemNumber {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #93B3ED;
  font-family: 'Titillium Web', sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1;
}

.p-feature__itemTitle {
  padding-top: 40px;
  padding-top: 2.5rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-feature__itemSubtitle {
  margin-top: 4px;
  margin-top: .25rem;
  color: #0658A2;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 500;
  text-align: center;
}

.p-feature__center {
  aspect-ratio: 146/29;
  position: absolute;
  bottom: 37.0149253731%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 146px;
  width: 9.125rem;
}

.p-feature__centerText {
  color: #0658A2;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-feature__btnArea {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-footer {
  margin-inline: auto;
  position: relative;
  background-image: url(../img/common/footer_bg_sp.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.p-footer__main {
  gap: 30px;
  gap: 1.875rem;
  margin-inline: auto;
  display: grid;
  max-width: 400px;
}

.p-footer__company {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
}

.p-footer__logo {
  aspect-ratio: 247/63;
  margin-inline: auto;
  width: 220px;
  width: 13.75rem;
}

.p-footer__companyInfo {
  font-size: 13px;
  font-size: .8125rem;
}

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

.p-footer__tel,
.p-footer__fax {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-footer__navList {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-footer__navItem {
  position: relative;
}

.p-footer__navLink {
  display: block;
  -webkit-transition: color .3s;
  transition: color .3s;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
}

.p-footer__character {
  position: absolute;
  right: 5.3333333333%;
  bottom: 47px;
  bottom: 2.9375rem;
  z-index: 1;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

.p-footer__copy {
  margin-top: 202px;
  margin-top: 12.625rem;
  font-size: 12px;
  font-size: .75rem;
  text-align: center;
}

.p-form__inputArea {
  display: block;
}

.p-form__inputArea.is-hidden {
  display: none;
}

.p-form__confirmArea {
  display: none;
}

.p-form__confirmArea.is-active {
  display: block;
}

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

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

.p-form__label {
  gap: 8px;
  gap: .5rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
}

.p-form__label.is-required::after {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3.125rem;
  background-color: #0658A2;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1;
  line-height: 1;
  content: '必須';
}

.p-form__input,
input {
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid transparent;
  border-radius: .5rem;
  background-color: #fff;
  padding: 12px 16px;
  padding: .75rem 1rem;
  width: 100%;
}

.p-form__input:focus {
  outline: none;
  border-color: #0658A2;
}

.p-form__input::-webkit-input-placeholder {
  opacity: .7;
  color: #535B6B;
}

.p-form__input::-moz-placeholder {
  opacity: .7;
  color: #535B6B;
}

.p-form__input::-ms-input-placeholder {
  opacity: .7;
  color: #535B6B;
}

.p-form__input::placeholder {
  opacity: .7;
  color: #535B6B;
}

.p-form__textarea {
  min-height: 200px;
  min-height: 12.5rem;
  resize: vertical;
}

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

.p-form__radioGroup--inline {
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.p-form__radioGroup label {
  gap: 8px;
  gap: .5rem;
  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: pointer;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-form__radioGroup input[type=radio] {
  accent-color: #0658A2;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

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

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

.p-form__checkboxGroup label {
  gap: 8px;
  gap: .5rem;
  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: pointer;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-form__checkboxGroup .wpcf7-list-item.has-free-text {
  gap: 12px;
  gap: .75rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__checkboxGroup .wpcf7-free-text {
  display: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-form__checkboxGroup .wpcf7-list-item.has-free-text input[type=checkbox]:checked ~ .wpcf7-free-text {
  display: block;
}

.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
  gap: 6px 24px;
  gap: .375rem 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wpcf7-form-control.wpcf7-radio.wpcf7-checkbox,
.wpcf7-form-control.wpcf7-checkbox.wpcf7-checkbox {
  display: grid;
}

.p-form__checkboxGroup input[type=checkbox] {
  accent-color: #0658A2;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

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

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

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

.p-form__privacyCheck {
  accent-color: #0658A2;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 2px;
  margin-top: .125rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-form__checkboxText {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-form__checkboxText a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #0658A2;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: underline;
}

.p-form__checkboxText a:hover {
  opacity: .7;
}

.p-form__footer {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

input.c-btn--arrowRight {
  position: relative;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-position, background-image, background-color, color, border-color;
  transition-property: background-position, background-image, background-color, color, border-color;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 5.13397C10.1667 5.51888 10.1667 6.48113 9.5 6.86603L2 11.1962C1.33333 11.5811 0.499999 11.0999 0.5 10.3301L0.5 1.66987C0.5 0.900072 1.33333 0.418947 2 0.803847L9.5 5.13397Z" fill="white"/></svg>');
  background-position: right 30px center;
  background-position: right 1.875rem center;
  background-repeat: no-repeat;
  background-size: .625rem .75rem;
  padding-right: 2em;
  padding-left: 1.38em;
  text-align: center;
}

input.c-btn--arrowLeft {
  position: relative;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-position, background-image, background-color, color, border-color;
  transition-property: background-position, background-image, background-color, color, border-color;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 6.86603C-0.166667 6.48112 -0.166667 5.51887 0.5 5.13397L8 0.803848C8.66667 0.418947 9.5 0.900073 9.5 1.66987V10.3301C9.5 11.0999 8.66667 11.5811 8 11.1962L0.5 6.86603Z" fill="white"/></svg>');
  background-position: left 30px center;
  background-position: left 1.875rem center;
  background-repeat: no-repeat;
  background-size: .625rem .75rem;
  padding-right: 1.38em;
  padding-left: 2em;
}

.p-form__submit {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-form__submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  background-color: #535B6B;
}

.p-form__submit:disabled:hover {
  opacity: .5;
}

.p-form__itemText {
  margin-top: 8px;
  margin-top: .5rem;
  color: #535B6B;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.6666666667;
}

.p-form__fileButton {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color .3s ease, color .3s ease;
  transition: background-color .3s ease, color .3s ease;
  cursor: pointer;
  border: 2px solid #0658A2;
  border-radius: .25rem;
  background-color: #fff;
  padding: 12px 24px;
  padding: .75rem 1.5rem;
  color: #0658A2;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-form__fileButton:hover {
  background-color: #0658A2;
  color: #fff;
}

.p-form__file {
  display: none;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
}

.p-fv__inner {
  margin-inline: auto;
  max-width: 1920px;
}

.p-fv__slider {
  width: 100%;
  height: 100%;
}

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

.p-fv__background {
  width: 100%;
  height: 100%;
}

.p-fv__background img {
  aspect-ratio: 375/742;
  width: 100%;
  height: 100%;
  max-height: 1000px;
  max-height: 62.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__content {
  position: absolute;
  top: min(54.8517520216%, 700px);
  top: min(54.8517520216%, 43.75rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 89.3333333333%;
  max-width: 335px;
}

.p-fv__textArea {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.9;
  text-shadow: 0 0 10px rgba(0, 0, 0, .25);
  text-shadow: 0 0 .625rem rgba(0, 0, 0, .25);
}

.p-fv__textArea--black {
  color: #333;
  font-weight: 500;
  text-shadow: none;
}

.p-fv__character {
  position: absolute;
  right: 5.3333333333%;
  bottom: 0;
  -webkit-transform: translateY(33%);
  transform: translateY(33%);
  z-index: 1;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

.p-greeting {
  background-color: #fff;
}

.p-greeting__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #F0F8FF;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

.p-greeting__heading {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.p-greeting__text__item + .p-greeting__text__item {
  margin-top: 1lh;
}

.p-greeting__signature {
  gap: 2px;
  gap: .125rem;
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  text-align: left;
}

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

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

.p-header {
  background-color: #fff;
  height: 70px;
}

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

.p-header__inner.l-container {
  padding-right: 0;
  max-width: 100%;
}

.p-header__logo {
  z-index: 41;
  width: 176px;
  width: 11rem;
}

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

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

.p-header__nav {
  display: none;
}

.p-header__footer {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__footerItem a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__navLists {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

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

.p-header__navLink {
  -webkit-transition: color .3s;
  transition: color .3s;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-header__linkList {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

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

.p-history__timeline {
  display: grid;
}

.p-history__item {
  gap: 16px;
  gap: 1rem;
  display: grid;
  position: relative;
  grid-template-columns: 5rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-history__year {
  position: relative;
  height: 100%;
  color: #0658A2;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-history__year::after {
  aspect-ratio: 1;
  position: absolute;
  top: .5lh;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #0658A2;
  width: 7px;
  width: .4375rem;
  content: '';
}

.p-history__year::before {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0658A2;
  width: 1px;
  height: 100%;
  content: '';
}

.p-history__item:first-child .p-history__year::before {
  top: .5lh;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.p-interviewDetail {
  gap: 100px;
  gap: 6.25rem;
  display: grid;
  position: relative;
}

.p-interviewDetail__inner {
  margin-inline: auto;
  max-width: 500px;
}

.p-interviewDetail__item {
  position: relative;
}

.p-interviewDetail__item::before {
  margin-inline: auto;
  display: block;
  position: absolute;
  top: calc(130 * min(100vw, 500px) / 375);
  right: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.25rem;
  background-color: #F0F8FF;
  width: 100%;
  height: calc(100% - 130 * min(100vw, 500px) / 375);
  content: '';
}

.p-interviewDetail__header {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-interviewDetail__headerImage {
  margin-inline: auto;
  aspect-ratio: 295/260;
  width: 78.6666666667%;
}

.p-interviewDetail__headerImage img {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interviewDetail__headerInfo {
  margin-inline: auto;
  margin-top: -30px;
  margin-top: -1.875rem;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  width: 67.7333333333%;
  text-align: center;
}

.p-interviewDetail__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-interviewDetail__meta {
  display: grid;
  margin-top: 8px;
  margin-top: .5rem;
  color: #898989;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-interviewDetail__content {
  gap: 6px;
  gap: .375rem;
  display: grid;
  padding: 20px;
  padding: 1.25rem;
}

.p-interviewDetail__qa {
  gap: 6px;
  gap: .375rem;
  display: grid;
}

.p-interviewDetail__question {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.js-slideInQuestion,
.js-slideInAnswer {
  opacity: 0;
}

.p-interviewDetail__questionIcon {
  width: 60px;
  width: 3.75rem;
}

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

.p-interviewDetail__questionBubble {
  border-radius: 3.125rem;
  background-color: #0658A2;
  padding: 12px 20px;
  padding: .75rem 1.25rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.p-interviewDetail__answer {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  grid-template-columns: 1fr 5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-interviewDetail__answerText {
  border-radius: 3.125rem;
  background-color: #fff;
  padding: 12px 20px;
  padding: .75rem 1.25rem;
}

.p-interviewDetail__answerAvatar {
  aspect-ratio: 1;
  width: 80px;
  width: 5rem;
}

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

.p-interviewDetail__images {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin: 15px 0;
  margin: .9375rem 0;
}

.p-interviewDetail__imageItem {
  width: 100%;
}

.p-interviewDetail__imageItem img {
  aspect-ratio: 335/210;
  border-radius: .625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-lowerFv
************************************************************************/
.p-lowerFv {
  overflow-x: clip;
}

.p-lowerFv__inner {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-lowerFv__inner.l-container {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.p-lowerFv__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url(../img/common/back_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 250px;
  height: 15.625rem;
  text-align: center;
}

.p-lowerFv__character {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

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

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

.p-member__btnArea {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

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

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

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

.p-memberInterview__details {
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

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

.p-memberList--interview {
  gap: 0;
}

.p-memberList__item {
  position: relative;
}

.p-memberList__item--interview {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-memberList__item--interview::before {
  aspect-ratio: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #0658A2;
  width: 14px;
  width: .875rem;
  content: '';
}

.p-memberList__image {
  aspect-ratio: 1;
  display: grid;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: auto;
  border-radius: 50%;
  width: 100%;
}

.p-memberList__image::before {
  aspect-ratio: 215/283;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url(../img/top/member_back.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 64.1791044776%;
  content: '';
}

.p-memberList__image img {
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-radius: 50%;
  width: 97.0149253731%;
  height: 97.0149253731%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-memberList__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-memberList__name {
  position: absolute;
  bottom: 30px;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: 4.375rem;
  background-color: rgba(255, 255, 255, .9);
  padding: 8px;
  padding: .5rem;
  width: 100%;
  max-width: 156px;
  max-width: 9.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.p-navigation__list {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-navigation__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .625rem;
  background-color: #0658A2;
  padding: 10px;
  padding: .625rem;
  color: #fff;
  text-decoration: none;
}

.p-navigation__item::after {
  aspect-ratio: 1;
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-mask-image: url(../img/common/icon-btn-arrow.svg);
  mask-image: url(../img/common/icon-btn-arrow.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  width: 14px;
  width: .875rem;
  content: '';
}

.p-navigation__text {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  text-align: center;
}

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

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

.p-newsList__link {
  gap: 8px;
  gap: .5rem;
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #DDD;
  padding: 16px 40px 16px 16px;
  padding: 1rem 2.5rem 1rem 1rem;
}

.p-newsList__link::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-image: url(../img/common/icon-chevron-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  width: 1rem;
  content: '';
}

.p-newsList__meta {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-newsList__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 80px;
  min-width: 5rem;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
}

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

.p-newsList__category {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 1.875rem;
  background-color: #535B6B;
  padding: 0 12px;
  padding: 0 .75rem;
  color: #fff;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
}

.p-newsList__title {
  display: inline-block;
}

.p-newsList__title span {
  display: inline;
  position: relative;
  -webkit-transition: background-size .6s;
  transition: background-size .6s;
  background-image: -webkit-gradient(linear, left top, right top, from(#DDD), to(#DDD));
  background-image: linear-gradient(90deg, #DDD, #DDD);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 2px;
  padding-bottom: 3px;
  padding-bottom: .1875rem;
}

.p-newsList__btnArea {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-newsList__empty {
  padding-top: 16px;
  padding-top: 1rem;
  text-align: center;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  border-radius: 50%;
  background-color: transparent;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  color: #666;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
}

.page-numbers.current {
  background-color: #0658A2;
  color: #fff;
}

.page-numbers.dots {
  border: none;
  background: none;
  pointer-events: none;
}

.page-numbers.prev, .page-numbers.next {
  font-size: 15px;
  font-size: .9375rem;
}

.p-pagination__icon {
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.p-pagination__icon::before {
  display: block;
  -webkit-mask-image: url('../img/common/icon-chevron-right.svg');
  mask-image: url('../img/common/icon-chevron-right.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: #888;
  width: 100%;
  height: 100%;
  content: '';
}

.p-pagination__icon--prev::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.page-numbers.prev:hover .p-pagination__icon::before,
.page-numbers.next:hover .p-pagination__icon::before {
  background-color: #fff;
}

.p-recruitBtn {
  display: block;
  position: relative;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  -webkit-box-shadow: 0 .3125rem 1.25rem rgba(0, 0, 0, .25);
  box-shadow: 0 .3125rem 1.25rem rgba(0, 0, 0, .25);
  border-radius: 1.25rem;
  background-image: url(../img/common/recruit_btn_sp.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 118px 30px;
  padding: 7.375rem 1.875rem;
  overflow: clip;
}

.p-recruitBtn::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: background-color opacity;
  transition-property: background-color opacity;
  background-color: rgba(29, 75, 159, .4);
  width: 100%;
  height: 100%;
  content: '';
}

.p-recruitBtn__text {
  display: block;
  position: relative;
}

.p-recruitBtn__text::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-image: url(../img/common/icon-btn-arrow.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 1.5rem;
  content: '';
}

/************************************************************************
* p-serviceCorporate
************************************************************************/
.p-serviceCorporate {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-serviceCorporate__section {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-serviceCorporate__sectionImage {
  aspect-ratio: 16/9;
  border-radius: .625rem;
  width: 100%;
  overflow: hidden;
}

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

.p-serviceCorporate__sectionContent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-serviceCorporate__sectionTitle {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-serviceCorporate__sectionText {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8571428571;
}

.p-serviceCorporate__iconList {
  gap: 20px 10px;
  gap: 1.25rem .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-serviceCorporate__iconItem {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-serviceCorporate__iconCircle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F8F8F8;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  overflow: hidden;
}

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

.p-serviceCorporate__iconText {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-serviceCorporate__banners {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-serviceCorporate__banner {
  -webkit-box-shadow: 0 0 2.5rem rgba(0, 0, 0, .1);
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
  overflow: hidden;
}

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

.p-serviceCorporate__character {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: -60px;
  bottom: -3.75rem;
  z-index: 2;
}

.p-serviceCorporate__btnArea {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

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

.p-serviceFeatures__btnArea {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-serviceFeatures__btnArea a {
  margin-inline: auto;
  width: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
  font-weight: 700;
}

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

.p-serviceFeatures__grid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-serviceFeatures__item {
  background-color: #F0F8FF;
  padding: 20px 20px 50px 20px;
  padding: 1.25rem 1.25rem 3.125rem 1.25rem;
}

.p-serviceFeatures__item--characterBottom {
  position: relative;
}

.p-serviceFeatures__item--wide {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.p-serviceFeatures__item--largeBottom {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}

.p-serviceFeatures__character {
  width: 166px;
  width: 10.375rem;
  height: 170px;
  height: 10.625rem;
}

.p-serviceFeatures__character--bottom {
  position: absolute;
  right: 10px;
  right: .625rem;
  bottom: 0;
  -webkit-transform: translateY(60%);
  transform: translateY(60%);
}

.p-serviceFeatures__character--lifecycle {
  position: absolute;
  right: 10px;
  right: .625rem;
  bottom: 0;
  -webkit-transform: translateY(60%);
  transform: translateY(60%);
}

.p-serviceFeatures__itemTop {
  gap: 6px;
  gap: .375rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-serviceFeatures__header {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.p-serviceFeatures__number {
  color: #93B3ED;
  font-family: 'Titillium Web', sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
}

.p-serviceFeatures__title {
  margin-inline: auto;
  background-color: #0658A2;
  padding: 8px 10px;
  padding: .5rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-serviceFeatures__icon {
  width: 80px;
  width: 5rem;
}

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

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

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

.p-serviceFeatures__iconList {
  gap: 10px 3px;
  gap: .625rem .1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-serviceFeatures__iconList--flow .p-serviceFeatures__iconItem:not(:last-child)::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50px;
  top: 3.125rem;
  right: 0;
  -webkit-transform: translate(75%, -50%);
  transform: translate(75%, -50%);
  background-image: url('../img/common/icon_polygon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  width: .875rem;
  content: '';
}

.p-serviceFeatures__iconItem {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - .09375rem);
  max-width: 166px;
  text-align: center;
}

.p-serviceFeatures__iconList--flow .p-serviceFeatures__iconItem {
  position: relative;
  max-width: 135px;
}

.p-serviceFeatures__iconCircle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
}

.p-serviceFeatures__iconCircle img {
  aspect-ratio: 1;
  width: 62px;
  width: 3.875rem;
}

.p-serviceFeatures__iconText {
  display: grid;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-serviceFeatures__banner {
  margin-inline: auto;
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
  width: 335px;
  width: 20.9375rem;
}

.p-serviceFeatures__banner img {
  aspect-ratio: 335/126;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-serviceFeatures__cards {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-serviceFeatures__card {
  border-radius: 1.25rem;
  background-color: #fff;
  overflow: hidden;
}

.p-serviceFeatures__cardImage {
  width: 100%;
  overflow: hidden;
}

.p-serviceFeatures__cardImage img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-serviceFeatures__cardContent {
  padding: 20px;
  padding: 1.25rem;
}

.p-serviceFeatures__cardTitle {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.p-serviceFeatures__cardText {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.75;
}

.p-serviceFeatures__timeline {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-serviceFeatures__timelineItem {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-serviceFeatures__timelineImage {
  width: 100%;
  overflow: hidden;
}

.p-serviceFeatures__timelineImage img {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-serviceFeatures__timelineLabel {
  gap: 12px;
  gap: .75rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.125;
}

.p-serviceFeatures__timelineLabel::before {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #0658A2;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-serviceFeatures__timelineTitle {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.8571428571;
}

.p-serviceFeatures__timelineText {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.75;
}

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

.p-serviceFeatures__box {
  margin-top: 16px;
  margin-top: 1rem;
  border-radius: .625rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}

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

.p-serviceFeatures__voices {
  gap: 6px;
  gap: .375rem;
  display: grid;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-serviceFeatures__voiceItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .625rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}

.p-serviceFeatures__voiceIcon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
}

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

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

.p-serviceFeatures__voiceName {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.p-serviceFeatures__lifecycle {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  margin-top: 13px;
  margin-top: .8125rem;
  border-radius: .625rem;
  background-color: #fff;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

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

.p-serviceFeatures__lifecycleImage {
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 180px;
  width: 11.25rem;
}

.p-serviceFeatures__lifecycleImage img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-serviceFeatures__lifecycleContent {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-serviceFeatures__lifecycleTitle {
  margin-inline: auto;
  position: relative;
  padding-left: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-serviceFeatures__lifecycleTitle::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #84BBEC;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-serviceFeatures__lifecycleText {
  margin-top: 3px;
  margin-top: .1875rem;
}

.p-serviceFeatures__section {
  gap: 16px;
  gap: 1rem;
  display: grid;
}

.p-serviceFeatures__sectionImage img {
  aspect-ratio: 335/197;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

.p-serviceFeatures__banners {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/************************************************************************
* p-serviceVideo
************************************************************************/
.p-serviceVideo__title {
  text-align: center;
}

.p-serviceVideo__list {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-serviceVideo__item {
  position: relative;
  background-color: #F8F8F8;
}

.p-serviceVideo__thumbnail {
  aspect-ratio: 335/188;
  position: relative;
  width: 100%;
}

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

.p-serviceVideo__playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 55px;
  width: 3.4375rem;
  height: 42px;
  height: 2.625rem;
}

.p-serviceVideo__playBtn svg {
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
  width: 100%;
  height: 100%;
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

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

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

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

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

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

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

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

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

  body {
    font-size: 15px;
    font-size: .9375rem;
  }

  html {
    font-size: 1.4814814815vw;
  }

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

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

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

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

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

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

  .l-footer {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 14px;
    padding-bottom: .875rem;
  }

  .l-main {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .l-main--single {
    margin-top: 140px;
    margin-top: 8.75rem;
  }

  .l-section--personal {
    padding-top: 160px;
    padding-top: 10rem;
  }

  .l-section--contact {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .l-section--page {
    padding-top: 120px;
    padding-top: 7.5rem;
  }

  .l-section--bg {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding: 120px 0;
    padding: 7.5rem 0;
  }

  .l-section--contactForm {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .l-section__inner {
    padding-top: 120px;
    padding-top: 7.5rem;
  }

  .l-section__inner--member {
    padding-bottom: 0;
  }

  .l-section__inner--contact {
    padding-top: 80px;
    padding-top: 5rem;
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }

  .l-section__lead {
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .c-btn {
    padding: 25px 22px;
    padding: 1.5625rem 1.375rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-btn:hover, .c-btn:focus-visible {
    outline: none;
    border-color: currentColor;
    background-color: #fff;
    color: #0658A2;
  }

  .c-btn--header {
    padding-top: 10px;
    padding-top: .625rem;
    padding-bottom: 10px;
    padding-bottom: .625rem;
    height: 60px;
    height: 3.75rem;
  }

  .c-btn--header .c-btn__text--tel {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-btn--header-contact {
    padding-top: 16.5px;
    padding-top: 1.03125rem;
    padding-bottom: 16.5px;
    padding-bottom: 1.03125rem;
    height: 60px;
    height: 3.75rem;
  }

  .c-btn--header-contact .c-btn__text {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-btn--arrowRight:hover::after, .c-btn--arrowRight:focus::after {
    -webkit-transform: translateY(-50%) translateX(.3125rem);
    transform: translateY(-50%) translateX(.3125rem);
  }

  .c-btn--arrowLeft:hover::before, .c-btn--arrowLeft:focus::before {
    -webkit-transform: translateY(-50%) rotate(180deg) translateX(.3125rem);
    transform: translateY(-50%) rotate(180deg) translateX(.3125rem);
    background-color: #0658A2;
  }

  .c-btn--small {
    padding-top: 10px;
    padding-top: .625rem;
    padding-bottom: 10px;
    padding-bottom: .625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-btn--white:hover, .c-btn--white:focus {
    background-color: rgba(6, 88, 162, .1);
    color: #fff;
  }

  .c-btn--white:hover .c-btn__text::before, .c-btn--white:focus .c-btn__text::before {
    background-color: #fff;
  }

  .c-btn--whiteLine:hover, .c-btn--whiteLine:focus-visible {
    border-color: #0658A2;
    background-color: #0658A2;
    color: #fff;
  }

  .c-btn--iconBtnMailWhite:hover .c-btn__text::before {
    background-color: #0658A2;
  }

  .c-btn--iconDocument:hover .c-btn__text::before {
    background-color: #0658A2;
  }

  .c-sectionTitle {
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
  }

  .c-sectionTitle--page {
    padding-bottom: 26px;
    padding-bottom: 1.625rem;
  }

  .c-sectionTitle--interview {
    padding-bottom: 14px;
    padding-bottom: .875rem;
  }

  .c-sectionTitle__en {
    font-size: 22px;
    font-size: 1.375rem;
  }

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

  .c-sectionTitle__ja {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .c-sectionTitle__ja--page {
    font-size: 44px;
    font-size: 2.75rem;
  }

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

  .c-sectionTitle__ja--document {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .c-subtitle__text {
    padding-inline: 38px;
    padding-inline: 2.375rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-subtitle__text::before {
    -webkit-box-shadow: .8125rem 0 0 0 #84BBEC;
    box-shadow: .8125rem 0 0 0 #84BBEC;
    width: 5px;
    width: .3125rem;
    height: 5px;
    height: .3125rem;
  }

  .c-subtitle__text::after {
    -webkit-box-shadow: -.8125rem 0 0 0 #84BBEC;
    box-shadow: -.8125rem 0 0 0 #84BBEC;
    width: 5px;
    width: .3125rem;
    height: 5px;
    height: .3125rem;
  }

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

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

  .p-404__number {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    font-size: 200px;
    font-size: 12.5rem;
  }

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

  .p-404__title {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
    font-size: 32px;
    font-size: 2rem;
  }

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

  .p-404__character {
    right: 0;
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

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

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

  .p-article__date {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-article__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

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

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

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

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

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

  .p-article__body a:hover {
    opacity: .7;
  }

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

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

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

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

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

  .p-article__navIcon {
    width: 44px;
    width: 2.75rem;
  }

  .p-article__navIcon--archive {
    width: 20px;
    width: 1.25rem;
  }

  .p-article__navLink:hover .p-article__navIcon {
    border-color: #0658A2;
    background-color: #fff;
  }

  .p-article__navLink:hover .p-article__navIcon::before {
    background-color: #0658A2;
  }

  .p-article__navLink:hover .p-article__navIcon--archive {
    border-color: transparent;
    background-color: transparent;
  }

  .p-categoryFilter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-categoryFilter__button:hover {
    border-color: #535B6B;
    background-color: #535B6B;
    color: #fff;
  }

  .p-character--footer:hover .p-character__image {
    -webkit-animation: characterbouncebounce 1.7s ease-in-out infinite;
    animation: characterBounceBounce 1.7s ease-in-out infinite;
  }

  .p-character__image {
    width: 51.8518518519%;
  }

  .p-character__balloon {
    width: 158px;
    width: 9.875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-characterIntro__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-width: 1000px;
    max-width: 62.5rem;
  }

  .p-characterIntro__textBox {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 71px;
    padding-top: 4.4375rem;
  }

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

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

  .p-characterIntro__nameText {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-characterIntro__description {
    gap: 20px;
    gap: 1.25rem;
    padding: 70px 140px 50px;
    padding: 4.375rem 8.75rem 3.125rem;
  }

  .p-characterIntro__text {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-characterIntro__imageContainer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: -94px;
    margin-left: -5.875rem;
    width: 331px;
    width: 20.6875rem;
  }

  .p-company {
    background-image: url(../img/top/company_bg.jpg);
    text-align: center;
  }

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

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

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

  .p-company__character {
    right: 0;
    bottom: 30px;
    bottom: 1.875rem;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

  .p-contact::before, .p-contact::after {
    width: 370px;
    width: 23.125rem;
  }

  .p-contact__character {
    bottom: 30px;
    bottom: 1.875rem;
    left: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

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

  .p-contact__info {
    gap: 40px;
    gap: 2.5rem;
    margin-inline: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 24px;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 540px;
  }

  .p-contact__tel {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 240px;
    min-width: 15rem;
  }

  .p-contact__btn a {
    width: 100%;
    min-width: 263px;
    min-width: 16.4375rem;
  }

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

  .p-contactBanner__inner {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .p-contactBanner__link {
    aspect-ratio: 880/260;
    background-image: url(../img/common/contact_banner.jpg);
  }

  .p-contactBanner__link a {
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 100px;
    padding-left: 6.25rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-contactBanner__link a::after {
    right: 50px;
    right: 3.125rem;
  }

  .p-contactBannerLinks {
    gap: 22px;
    gap: 1.375rem;
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .p-contactForm--thanks {
    margin-top: 0;
  }

  .p-contactForm__inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-contactForm__box {
    padding: 70px 50px;
    padding: 4.375rem 3.125rem;
  }

  .p-contactForm__icon {
    width: 100px;
    width: 6.25rem;
  }

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

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

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

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

  .p-contactTel__box {
    padding: 70px 50px;
    padding: 4.375rem 3.125rem;
  }

  .p-contactTel__icon {
    width: 100px;
    width: 6.25rem;
  }

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

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

  .p-contactTel__number {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .p-contentBox__inner h2 {
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

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

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

  .p-contentBox__content {
    padding: 80px 100px;
    padding: 5rem 6.25rem;
  }

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

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

  .p-contentBox__content h4,
  .p-contentBox__content h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contentBox__content a:hover {
    opacity: .7;
  }

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

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

  .p-contentBox__inner h3 {
    padding-inline: 38px;
    padding-inline: 2.375rem;
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

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

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

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

  .p-contentBox__inner p {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-contentBox__inner a:hover {
    opacity: .7;
  }

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

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

  .p-contentBox__inner table th,
  .p-contentBox__inner table td {
    padding: 20px 15px;
    padding: 1.25rem .9375rem;
  }

  .p-contentBox__inner table th {
    min-width: 150px;
    min-width: 9.375rem;
  }

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

  .p-contentBox__inner img {
    margin: 40px auto;
    margin: 2.5rem auto;
  }

  .p-contentBox__inner blockquote {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 30px 40px;
    padding: 1.875rem 2.5rem;
  }

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

  .p-contentBox__inner hr {
    margin-top: 50px 0;
    margin-top: 3.125rem 0;
  }

  .p-dataList__item {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: 1fr 44.625rem;
    padding: 20px 0;
    padding: 1.25rem 0;
  }

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

  .p-companyOverview__contactBtn {
    max-width: 263px;
  }

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

  .p-exLink__link > span:hover::after, .p-exLink__link > span:focus::after {
    -webkit-transform: translateY(-50%) translateX(.3125rem);
    transform: translateY(-50%) translateX(.3125rem);
  }

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

  .p-faq__list {
    gap: 16px;
    gap: 1rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-faq__question {
    gap: 24px;
    gap: 1.5rem;
    padding: 16px 24px;
    padding: 1rem 1.5rem;
  }

  .p-faq__question:hover {
    background-color: #0658A2;
  }

  .p-faq__question:hover .p-faq__icon {
    background-color: #fff;
  }

  .p-faq__question:hover .p-faq__iconLabel {
    color: #0658A2;
  }

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

  .p-faq__question:hover .p-faq__questionText {
    color: #fff;
  }

  .p-faq__question:hover .p-faq__toggle::before {
    background-color: #fff;
  }

  .p-faq__toggle::after {
    width: 18px;
    width: 1.125rem;
  }

  .p-faq__question:hover .p-faq__toggle::after {
    background-color: #fff;
  }

  .p-faq__answerInner {
    gap: 16px;
    gap: 1rem;
    padding: 16px 24px;
    padding: 1rem 1.5rem;
  }

  .p-feature__inner::before {
    width: 612px;
    width: 38.25rem;
  }

  .p-feature__lead::before, .p-feature__lead::after {
    width: 350px;
    width: 21.875rem;
  }

  .p-feature__lead::after {
    right: -28px;
    right: -1.75rem;
    background-image: url(../img/top/feature_right.png);
  }

  .p-feature__subtitle {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-feature__pentagon {
    margin-top: 27px;
    margin-top: 1.6875rem;
    max-width: 848px;
  }

  .p-feature__pentagon::before {
    border: 3px solid #D2DEF4;
  }

  .p-feature__item .p-feature__itemTitle {
    background-size: 6.25rem;
  }

  .p-feature__itemNumber {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-feature__itemTitle {
    padding-top: 100px;
    padding-top: 6.25rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-feature__itemSubtitle {
    margin-top: 6px;
    margin-top: .375rem;
    font-size: 12px;
    font-size: .75rem;
  }

  .p-feature__center {
    bottom: 40.932642487%;
    width: 322px;
    width: 20.125rem;
  }

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

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

  .p-footer {
    background-image: url(../img/common/footer_bg.jpg);
  }

  .p-footer__main {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: 1.2fr 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    max-width: 100%;
  }

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

  .p-footer__logo {
    margin-inline: 0;
  }

  .p-footer__companyInfo {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-footer__tel,
  .p-footer__fax {
    font-size: 15px;
    font-size: .9375rem;
  }

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

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

  .p-footer__navLink:hover {
    color: #0658A2;
  }

  .p-footer__character {
    right: 40px;
    right: 2.5rem;
    bottom: 20px;
    bottom: 1.25rem;
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

  .p-footer__copy {
    margin-top: 86px;
    margin-top: 5.375rem;
    font-size: 13px;
    font-size: .8125rem;
  }

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

  .p-form__input,
  input {
    padding: 14px 18px;
    padding: .875rem 1.125rem;
  }

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

  .p-form__radioGroup--inline {
    gap: 24px;
    gap: 1.5rem;
  }

  .p-form__radioGroup label {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }

  .p-form__radioGroup input[type=radio] {
    width: 22px;
    width: 1.375rem;
    height: 22px;
    height: 1.375rem;
  }

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

  .p-form__checkboxGroup label {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }

  .wpcf7-form-control.wpcf7-radio,
  .wpcf7-form-control.wpcf7-checkbox {
    gap: 6px 40px;
    gap: .375rem 2.5rem;
  }

  .p-form__checkboxGroup input[type=checkbox] {
    width: 22px;
    width: 1.375rem;
    height: 22px;
    height: 1.375rem;
  }

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

  .p-form__privacyCheck {
    width: 22px;
    width: 1.375rem;
    height: 22px;
    height: 1.375rem;
  }

  .p-form__footer {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  input.c-btn--arrowRight:hover, input.c-btn--arrowRight:focus {
    background-image: url('data:image/svg+xml;utf8,<svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 5.13397C10.1667 5.51888 10.1667 6.48113 9.5 6.86603L2 11.1962C1.33333 11.5811 0.499999 11.0999 0.5 10.3301L0.5 1.66987C0.5 0.900072 1.33333 0.418947 2 0.803847L9.5 5.13397Z" fill="%230658A2"/></svg>');
    background-position: right 25px center;
    background-position: right 1.5625rem center;
  }

  input.c-btn--arrowLeft:hover, input.c-btn--arrowLeft:focus {
    background-image: url('data:image/svg+xml;utf8,<svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 6.86603C-0.166667 6.48112 -0.166667 5.51887 0.5 5.13397L8 0.803848C8.66667 0.418947 9.5 0.900073 9.5 1.66987V10.3301C9.5 11.0999 8.66667 11.5811 8 11.1962L0.5 6.86603Z" fill="%230658A2"/></svg>');
    background-position: left 25px center;
    background-position: left 1.5625rem center;
  }

  .p-form__itemText {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5714285714;
  }

  .p-form__fileButton {
    padding: 14px 28px;
    padding: .875rem 1.75rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-fv__background img {
    aspect-ratio: 1440/700;
  }

  .p-fv__content {
    top: 28.4285714286%;
    left: 12.5%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 38.3333333333%;
    max-width: 552px;
  }

  .p-fv__textArea {
    font-size: 20px;
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .p-fv__character {
    right: 12.5%;
    -webkit-transform: translateY(18%);
    transform: translateY(18%);
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

  .p-greeting__content {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 80px 180px;
    padding: 5rem 11.25rem;
  }

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

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

  .p-greeting__position {
    font-size: 15px;
    font-size: .9375rem;
  }

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

  .p-header {
    padding: 16px 0;
    padding: 1rem 0;
    height: 133px;
  }

  .p-header__inner.l-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .p-header__logo {
    width: 225px;
    width: 14.0625rem;
  }

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

  .p-header__navLink:hover {
    color: #0658A2;
  }

  .p-header__linkList {
    margin-top: calc(.75rem - .5em);
  }

  .p-header__drawer {
    display: none;
  }

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

  .p-history__item {
    gap: 30px;
    gap: 1.875rem;
    grid-template-columns: 7.875rem 1fr;
  }

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

  .p-interviewDetail {
    gap: 120px;
    gap: 7.5rem;
  }

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

  .p-interviewDetail__item::before {
    top: calc(225 * min(100vw, 1080px) / 1080);
    height: calc(100% - 225 * min(100vw, 1080px) / 1080);
  }

  .p-interviewDetail__headerImage {
    width: 47.2222222222%;
  }

  .p-interviewDetail__headerInfo {
    margin-top: -48px;
    margin-top: -3rem;
    padding: 30px;
    padding: 1.875rem;
    width: 254px;
    width: 15.875rem;
  }

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

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

  .p-interviewDetail__content {
    gap: 10px;
    gap: .625rem;
    padding: 15px 100px 80px 100px;
    padding: .9375rem 6.25rem 5rem 6.25rem;
  }

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

  .p-interviewDetail__question {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: 7.5rem 1fr;
  }

  .p-interviewDetail__questionIcon {
    width: 120px;
    width: 7.5rem;
  }

  .p-interviewDetail__questionBubble {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-interviewDetail__answer {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: 1fr 7.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-interviewDetail__answerText {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-interviewDetail__answerAvatar {
    width: 120px;
    width: 7.5rem;
  }

  .p-interviewDetail__images {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 0;
    margin: 1.25rem 0;
  }

  .p-lowerFv__inner.l-container {
    padding-right: 30px;
    padding-bottom: 133px;
    padding-bottom: 8.3125rem;
    padding-left: 30px;
  }

  .p-lowerFv__content {
    height: 409px;
    height: 25.5625rem;
  }

  .p-lowerFv__character {
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

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

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

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

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

  .p-memberInterview__details {
    margin-top: 150px;
    margin-top: 9.375rem;
    margin-right: 0;
    margin-left: 0;
  }

  .p-memberList {
    gap: 15px;
    gap: .9375rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-memberList__item--interview {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-memberList__item--interview:hover {
    -webkit-transform: translateY(-.5rem);
    transform: translateY(-.5rem);
  }

  .p-memberList__item--interview:hover .p-memberList__image img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  .p-memberList__item--interview:hover::before {
    -webkit-transform: translateX(-50%) rotate(90deg) translateX(.25rem);
    transform: translateX(-50%) rotate(90deg) translateX(.25rem);
  }

  .p-memberList__item--interview:hover .p-memberList__name {
    background-color: white;
  }

  .p-memberList__text {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-memberList__name {
    max-width: 165px;
    max-width: 10.3125rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-navigation__list {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-navigation__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 13px 0;
    padding: .8125rem 0;
    max-width: 280px;
  }

  .p-navigation__item::after {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
  }

  .p-navigation__item:hover::after {
    -webkit-transform: rotate(90deg) translateX(4px);
    transform: rotate(90deg) translateX(4px);
  }

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

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

  .p-news__list {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-newsList__link {
    gap: 16px;
    gap: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 40px 24px 24px;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }

  .p-newsList__link:hover::after {
    -webkit-transform: translateY(-50%) translateX(.3125rem);
    transform: translateY(-50%) translateX(.3125rem);
  }

  .p-newsList__link::after {
    right: 24px;
    right: 1.5rem;
  }

  .p-newsList__category {
    padding: 0 12px;
    padding: 0 .75rem;
    font-size: 14px;
    font-size: .875rem;
  }

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

  .p-newsList__empty {
    padding-top: 24px;
    padding-top: 1.5rem;
  }

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

  .page-numbers {
    width: 44px;
    width: 2.75rem;
    height: 44px;
    height: 2.75rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

  .page-numbers.prev, .page-numbers.next {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-recruitBtn {
    background-image: url(../img/common/recruit_btn.jpg);
    padding: 110px 50px;
    padding: 6.875rem 3.125rem;
  }

  .p-recruitBtn:hover::before {
    background-color: rgba(29, 75, 159, .2);
  }

  .p-recruitBtn:hover .p-recruitBtn__text::after {
    -webkit-transform: translateY(-50%) translateX(.5rem);
    transform: translateY(-50%) translateX(.5rem);
  }

  .p-serviceCorporate {
    padding: 120px 0;
    padding: 7.5rem 0;
  }

  .p-serviceCorporate__section {
    gap: 34px;
    gap: 2.125rem;
    grid-template-columns: 19.75rem 1fr;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .p-serviceCorporate__section--reverse {
    grid-template-columns: 1fr 19.75rem;
  }

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

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

  .p-serviceCorporate__sectionImage {
    aspect-ratio: 316/186;
  }

  .p-serviceCorporate__sectionTitle {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.6363636364;
  }

  .p-serviceCorporate__sectionText {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.8666666667;
  }

  .p-serviceCorporate__iconList {
    gap: 20px 10px;
    gap: 1.25rem .625rem;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

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

  .p-serviceCorporate__iconText {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-serviceCorporate__banners {
    gap: 25px;
    gap: 1.5625rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
    margin-bottom: 5rem;
  }

  .p-serviceCorporate__character {
    right: 150px;
    right: 9.375rem;
    bottom: -80px;
    bottom: -5rem;
  }

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

  .p-serviceFeatures__btnArea {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    margin-top: 3.75rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-serviceFeatures__btnArea a {
    width: 335px;
    width: 20.9375rem;
  }

  .p-serviceFeatures__grid {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-right: 0;
    margin-left: 0;
  }

  .p-serviceFeatures__item {
    padding: 80px 100px;
    padding: 5rem 6.25rem;
  }

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

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

  .p-serviceFeatures__character {
    width: 189px;
    width: 11.8125rem;
    height: 267px;
    height: 16.6875rem;
  }

  .p-serviceFeatures__character--bottom {
    right: clamp(-60px, -30px - max(0px, (100vw - 1214px) / 2), -30px);
    right: clamp(-3.75rem, -30px - max(0px, (100vw - 1214px) / 2), -30px);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .p-serviceFeatures__character--lifecycle {
    right: clamp(-60px, -30px - max(0px, (100vw - 1214px) / 2), -30px);
    right: clamp(-3.75rem, -30px - max(0px, (100vw - 1214px) / 2), -30px);
    bottom: 143px;
    bottom: 8.9375rem;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

  .p-serviceFeatures__titleArea {
    gap: 12px;
    gap: .75rem;
  }

  .p-serviceFeatures__number {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-serviceFeatures__title {
    margin: 0;
    padding: 10px 12px;
    padding: .625rem .75rem;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-serviceFeatures__icon {
    width: 120px;
    width: 7.5rem;
  }

  .p-serviceFeatures__lead p {
    font-size: 15px;
    font-size: .9375rem;
  }

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

  .p-serviceFeatures__iconList {
    gap: 20px 10px;
    gap: 1.25rem .625rem;
  }

  .p-serviceFeatures__iconList--flow .p-serviceFeatures__iconItem:not(:last-child)::after {
    top: 50px;
    top: 3.125rem;
    width: 20px;
    width: 1.25rem;
  }

  .p-serviceFeatures__iconItem {
    gap: 10px;
    gap: .625rem;
    width: 168px;
    max-width: 168px;
  }

  .p-serviceFeatures__iconList--flow .p-serviceFeatures__iconItem {
    max-width: 144px;
  }

  .p-serviceFeatures__iconText {
    font-size: 16px;
    font-size: 1rem;
    white-space: nowrap;
  }

  .p-serviceFeatures__iconList--flow .p-serviceFeatures__iconText {
    text-align: center;
    white-space: normal;
  }

  .p-serviceFeatures__banner {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 345px;
    width: 21.5625rem;
  }

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

  .p-serviceFeatures__cardContent {
    padding: 26px;
    padding: 1.625rem;
  }

  .p-serviceFeatures__cardTitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }

  .p-serviceFeatures__cardText {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 13px;
    font-size: .8125rem;
    line-height: 2;
  }

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

  .p-serviceFeatures__timelineItem {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-serviceFeatures__timelineImage {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 240px;
    width: 15rem;
  }

  .p-serviceFeatures__timelineLabel {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }

  .p-serviceFeatures__timelineTitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }

  .p-serviceFeatures__timelineText {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.8571428571;
  }

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

  .p-serviceFeatures__box {
    margin-top: 20px;
    margin-top: 1.25rem;
    padding: 30px 40px;
    padding: 1.875rem 2.5rem;
  }

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

  .p-serviceFeatures__voices {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-serviceFeatures__voiceItem {
    padding: 26px;
    padding: 1.625rem;
  }

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

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

  .p-serviceFeatures__lifecycle {
    gap: 60px;
    gap: 3.75rem;
    margin-top: 20px;
    margin-top: 1.25rem;
    padding: 40px 65px;
    padding: 2.5rem 4.0625rem;
  }

  .p-serviceFeatures__lifecycleStage {
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-serviceFeatures__lifecycleStage: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-serviceFeatures__lifecycleImage {
    width: 240px;
    width: 15rem;
  }

  .p-serviceFeatures__lifecycleTitle {
    margin: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-serviceFeatures__section {
    gap: 34px;
    gap: 2.125rem;
    grid-template-columns: 3.16fr 5.3fr;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .p-serviceFeatures__sectionImage img {
    aspect-ratio: 316/186;
  }

  .p-serviceFeatures__sectionContent {
    gap: 26px;
    gap: 1.625rem;
  }

  .p-serviceFeatures__sectionTitle {
    font-size: 28px;
    font-size: 1.75rem;
    text-align: left;
  }

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

  .p-serviceVideo__list {
    gap: 22px;
    gap: 1.375rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-serviceVideo__playBtn:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@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;
  }

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1080px) {

  html {
    font-size: 16px;
  }
}

@media (min-width: 1160px) {

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

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

@media (min-width: 1240px) {

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

@media (min-width: 1380px) {

  .p-footer__main {
    grid-template-columns: 7.1fr 3fr;
  }
}

@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;
  }
}
/*# sourceMappingURL=map/style.css.map */