@charset "UTF-8";



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

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

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

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

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

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

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: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  min-height: 100vh;
  min-height: 100dvh;
}

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

footer {
  margin-top: auto;
}

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

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

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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

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

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

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

:root {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-about {
  margin-top: 48px;
  margin-top: 3rem;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.l-action {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.l-business {
  margin-top: 48px;
  margin-top: 3rem;
}

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

.l-company {
  margin-top: 48px;
  margin-top: 3rem;
  padding: 40px 0;
  padding: 2.5rem 0;
}

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

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

.l-footer {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.l-fv {
  padding: 120px 0 80px;
  padding: 7.5rem 0 5rem;
}

.l-header {
  position: fixed;
  top: 20px;
  top: 1.25rem;
  right: 0;
  left: 0;
  z-index: 900;
}

.l-inner {
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 540px;
  max-width: 33.75rem;
  height: inherit;
}

.l-news {
  margin-top: 48px;
  margin-top: 3rem;
}

.l-pickup {
  margin-top: 48px;
  margin-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.l-recruit {
  margin-top: 48px;
  margin-top: 3rem;
}

.l-subPage {
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

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

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

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

.c-actionHead.c-actionHead--blue {
  color: #004668;
}

.c-actionHead__en {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}

.c-actionHead__ja {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.7692307692;
}

.c-actionMessage {
  color: #004668;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5528781794;
}

.c-actionMessageMain {
  font-size: min(28px, 6.4vw);
  font-size: min(1.75rem, 6.4vw);
  font-weight: 700;
  line-height: 1.725;
}

.c-actionMessageSub {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: max(20px, 2vw);
  font-size: max(1.25rem, 2vw);
  font-weight: 500;
  line-height: 1.6071428571;
}

.c-btn {
  display: block;
  position: relative;
  border-radius: 100vh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: clip;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.c-btn::before, .c-btn::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 100vh;
  height: 100%;
  content: '';
}

.c-btn::before {
  width: 100%;
}

.c-btn::after {
  visibility: hidden;
  opacity: 0;
  width: 0%;
}

.c-btn__span {
  display: block;
  position: relative;
  z-index: 2;
  padding: 13px 0 13px 0;
  padding: .8125rem 0 .8125rem 0;
  width: 100%;
}

.c-btn__span::after {
  -webkit-mask-image: url(../../assets/images/common/arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  display: block;
  position: absolute;
  top: 50%;
  right: 25.9px;
  right: 1.61875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/arrow-right.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: .3s;
  transition: .3s;
  width: 17px;
  width: 1.0625rem;
  height: 11px;
  height: .6875rem;
  content: '';
}

.c-btn.c-btn--white {
  color: #004668;
}

.c-btn.c-btn--white .c-btn__span::after {
  background-color: #004668;
}

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

.c-btn.c-btn--white::after {
  visibility: visible;
  opacity: 1;
  background-color: #004668;
}

.c-btn.c-btn--whiteBlue {
  border: 1px solid #004668;
}

.c-btn.c-btn--blue {
  border: 1px solid #004668;
  background-color: #004668;
  color: #fff;
}

.c-btn.c-btn--blue .c-btn__span::after {
  background-color: #fff;
}

.c-btn.c-btn--blue::before {
  background-color: #004668;
}

.c-btn.c-btn--blue::after {
  visibility: visible;
  opacity: 1;
  background-color: #fff;
}

.c-btn.c-btn--whiteBlue {
  border: 1px solid #004668;
  background-color: #fff;
  color: #004668;
}

.c-btn.c-btn--whiteBlue .c-btn__span::after {
  background-color: #004668;
}

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

.c-btn.c-btn--whiteBlue::after {
  visibility: visible;
  opacity: 1;
  background-color: #004668;
}

.c-btn.c-btn--bgBlue {
  border: 1px solid #0062f3;
  background-color: #fff;
  color: #0062f3;
}

.c-btn.c-btn--bgBlue .c-btn__span::after {
  background-color: #0062f3;
}

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

.c-btn.c-btn--bgBlue::after {
  visibility: visible;
  opacity: 1;
  background-color: #0062f3;
}

.c-btn.c-btn--med .c-btn__span {
  padding-right: 56px;
  padding-right: 3.5rem;
  padding-left: 34px;
  padding-left: 2.125rem;
}

.c-btn.c-btn--big .c-btn__span {
  padding-right: 56px;
  padding-right: 3.5rem;
  padding-left: 34px;
  padding-left: 2.125rem;
}

.c-btn.c-btn--largeJa .c-btn__span {
  padding: 18px 40px 18px 16px;
  padding: 1.125rem 2.5rem 1.125rem 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
}

.c-btn.c-btn--largeJa .c-btn__span::after {
  right: 14px;
  right: .875rem;
}

.c-btn.c-btn--ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.c-btn__span.c-btn__span--flex {
  gap: 10px 5px;
  gap: .625rem .3125rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-btn__logo {
  max-width: 115px;
  max-width: 7.1875rem;
}

.c-btn__accent {
  color: #0088c0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.c-btnCircle {
  position: relative;
  padding-right: 50px;
  padding-right: 3.125rem;
  color: #0095F1;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 800;
  line-height: 1.7466666667;
}

.c-btnCircle::after, .c-btnCircle::before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s;
  transition: .3s;
  content: '';
}

.c-btnCircle::after {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  -webkit-mask-image: url(../../assets/images/common/arrow-right-archive.svg);
  right: 10px;
  right: .625rem;
  mask-image: url(../../assets/images/common/arrow-right-archive.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #fff;
  width: 14px;
  width: .875rem;
  height: 8px;
  height: .5rem;
}

.c-btnCircle::before {
  right: 0;
  border: 1px solid #0095F1;
  border-radius: 50%;
  background-color: #0095F1;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
}

.c-pageLinkBtn {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
  border-radius: .75rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  width: 100%;
  overflow: clip;
  color: #fff;
}

.c-pageLinkBtn::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

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

.c-pageLinkBtn.c-pageLinkBtn--redBig {
  border-radius: .625rem;
  background: #D25A60;
}

.c-pageLinkBtn.c-pageLinkBtn--redBig::after {
  background-image: url(../../assets/images/common/largeBtnBg.png);
}

.c-pageLinkBtn.c-pageLinkBtn--blue {
  background-color: #759FD2;
}

.c-pageLinkBtn.c-pageLinkBtn--blue::after {
  background-image: url(../../assets/images/common/blueBtnBg.png);
}

.c-pageLinkBtn.c-pageLinkBtn--yellow {
  background-color: #DAAE56;
}

.c-pageLinkBtn.c-pageLinkBtn--yellow::after {
  background-image: url(../../assets/images/common/yellowBtnBg.png);
}

.c-pageLinkBtn.c-pageLinkBtn--green {
  background-color: #57B1A8;
}

.c-pageLinkBtn.c-pageLinkBtn--green::after {
  background-image: url(../../assets/images/common/greenBtnBg.png);
}

.c-pageLinkBtn.c-pageLinkBtn--greenGraduate {
  background-color: #57B1A8;
}

.c-pageLinkBtn.c-pageLinkBtn--greenGraduate::after {
  background-image: url(../../assets/images/common/greenBtnBg.png);
}

.c-pageLinkBtn.c-pageLinkBtn--red {
  background-color: #D25A60;
}

.c-pageLinkBtn.c-pageLinkBtn--red::after {
  background-image: url(../../assets/images/common/redBtnBg.png);
}

.c-pageLinkBtn__en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.c-pageLinkBtn__ja {
  padding-left: 5px;
  padding-left: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

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

.c-pageTitle.c-pageTitle--blue {
  color: #004668;
}

.c-pageTitle.c-pageTitle--bgBlue02 {
  color: #0062F3;
}

.c-pageTitle__en {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.c-pageTitle__ja {
  padding-left: 5px;
  padding-left: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.c-pagination {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-pagination a,
.c-pagination span {
  display: grid;
  place-content: center;
  border-radius: 50%;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.c-pagination a {
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
  color: #004668;
}

.c-pagination__current {
  background: #004668;
  color: #fff;
}

.c-pagination__ellipsis.c-pagination__ellipsis {
  color: #004668;
}

.c-pagination__previouspostslink {
  margin-right: 12px;
  margin-right: .75rem;
}

.c-pagination__nextpostslink {
  margin-left: 12px;
  margin-left: .75rem;
}

.c-pagination__previouspostslink.c-pagination__previouspostslink,
.c-pagination__nextpostslink.c-pagination__nextpostslink {
  position: relative;
  background-color: #004668;
}

.c-pagination__previouspostslink::after,
.c-pagination__nextpostslink::after {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #fff;
  width: 14px;
  width: .875rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.c-pagination__previouspostslink::after {
  -webkit-mask-image: url(../../assets/images/common/arrow-left-archive.svg);
  mask-image: url(../../assets/images/common/arrow-left-archive.svg);
}

.c-pagination__nextpostslink::after {
  -webkit-mask-image: url(../../assets/images/common/arrow-right-archive.svg);
  mask-image: url(../../assets/images/common/arrow-right-archive.svg);
}

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

.c-sectionTitle.c-sectionTitle--blue {
  color: #004668;
}

.c-sectionTitle__en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.c-sectionTitle__en.c-sectionTitle__en--min {
  font-size: 32px;
  font-size: 2rem;
}

.c-sectionTitle__ja {
  display: block;
  padding-left: 5px;
  padding-left: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

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

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

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

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

.p-about {
  background-image: url(../../assets/images/top/about_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.p-about__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.88;
}

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

.p-about__video {
  aspect-ratio: 767/496;
  margin-top: 14px;
  margin-top: .875rem;
  background: transparent url('../images/top/top-about.jpg') no-repeat center center/cover;
  width: 100%;
}

.p-about__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-accordion {
  border-top: 1px solid #004668;
  border-bottom: 1px solid #004668;
}

.p-accordion__head {
  gap: 0 10px;
  gap: 0 .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(60deg, #bde3f7, #f0f7fc 50%, #bde3f7);
  padding: 10px 60px 10px 40px;
  padding: .625rem 3.75rem .625rem 2.5rem;
  width: 100%;
  color: #004668;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  text-align: left;
}

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

.p-accordion__head::before, .p-accordion__head::after {
  display: block;
  position: absolute;
  content: '';
}

.p-accordion__head::before {
  top: 45%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(41deg) skew(-5deg);
  transform: translateY(-50%) rotate(41deg) skew(-5deg);
  border-right: 3px solid #004668;
  border-right: .1875rem solid #004668;
  border-bottom: 3px solid #004668;
  border-bottom: .1875rem solid #004668;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}

.p-accordion__head.p-accordion__head--min {
  gap: 0;
  display: block;
  padding: 10px 60px 10px 20px;
  padding: .625rem 3.75rem .625rem 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-accordion__head.is-open::before, .p-accordion__head.is-open::after {
  top: 50%;
  right: 25px;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%) rotate(41deg) skew(-5deg);
  transform: translateY(-50%) rotate(41deg) skew(-5deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  background-color: #004668;
  width: 3px;
  width: .1875rem;
  height: 35px;
  height: 2.1875rem;
}

.p-accordion__head.is-open::after {
  -webkit-transform: translateY(-50%) rotate(-41deg) skew(5deg);
  transform: translateY(-50%) rotate(-41deg) skew(5deg);
}

.p-accordion__head img {
  max-width: 128px;
  max-width: 8rem;
}

.p-accordion__accent {
  color: #0088c0;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-accordion__contents {
  display: none;
  padding: 10px;
  padding: .625rem;
}

.p-accordion__category {
  display: block;
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #004668;
  padding: 6px 10px;
  padding: .375rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.p-accordionContents {
  color: #004668;
}

.p-accordionContents__head {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 800;
  line-height: 2.3;
}

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

.p-accordionContents__item {
  padding-block: 10px;
  padding-block: .625rem;
  gap: 27px;
  gap: 1.6875rem;
  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;
  border-top: 1px dashed #444242;
}

.p-accordionContents__category {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #0095F1;
  padding: 5px 5px;
  padding: .3125rem .3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
}

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

.p-accordionList {
  gap: 0 15px;
  gap: 0 .9375rem;
  display: grid;
}

.p-accordionList__item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-accordionList__item::before {
  position: absolute;
  top: 10px;
  top: .625rem;
  left: 0;
  border-radius: 50%;
  background-color: #0095F1;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-accordionList__item a {
  display: inline;
  margin-right: 5px;
  margin-right: .3125rem;
  color: #004668;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.3;
  text-decoration: underline;
}

.p-accordionList__category {
  display: inline-block;
  background-color: #0095F1;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
}

.p-action {
  background-image: url(../../assets/images/top/action_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  color: #fff;
}

.p-action__message {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.88;
}

.p-action__img {
  margin-top: 14px;
  margin-top: .875rem;
  margin-left: calc(50% - 50vw);
  border-radius: 0 1.25rem 1.25rem 0;
  overflow: clip;
}

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

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

.p-actionChallenge {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
  overflow-x: clip;
  color: #fff;
}

.p-actionChallenge::before {
  aspect-ratio: 429/414;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-image: url(../../assets/images/action/challenge_sp_head.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 187px;
  width: 11.6875rem;
  height: auto;
  content: '';
}

.p-actionChallenge::after {
  display: block;
  position: absolute;
  top: 130px;
  top: 8.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -2;
  background-image: url(../../assets/images/action/challenge_sp_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1840px;
  width: 115rem;
  height: 100%;
  content: '';
}

.p-actionChallenge__header {
  margin-top: 100px;
  margin-top: 6.25rem;
  font-weight: 700;
  text-align: center;
}

.p-actionChallenge__title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}

.p-actionChallenge__subtitle {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 21px;
  font-size: 1.3125rem;
}

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

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

.p-actionChallenge__item:nth-child(2) {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.p-actionChallenge__heading {
  height: auto;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5466666667;
}

.p-actionChallenge__description {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

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

.p-actionChallenge__image img {
  width: 60%;
}

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

.p-article__date {
  color: #0095F1;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.7466666667;
}

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

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

.p-article__content h2 {
  border-left: 12px solid #0095F1;
  border-left: .75rem solid #0095F1;
  padding-left: 10px;
  padding-left: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-article__content h3 {
  margin-top: 64px;
  margin-top: 4rem;
  border-top: 1px solid #0095F1;
  border-bottom: 1px solid #0095F1;
  padding: 20px 0;
  padding: 1.25rem 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-article__content h4 {
  margin-top: 48px;
  margin-top: 3rem;
  background-color: #F3F5F5;
  padding: 16px;
  padding: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-article__content h5 {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-left: 4px solid #0095F1;
  border-left: .25rem solid #0095F1;
  padding: 4px 0 4px 16px;
  padding: .25rem 0 .25rem 1rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.5;
}

.p-article__content h6 {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5;
}

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

.p-article__content p, .p-article__content ul li, .p-article__content ol li {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.7466666667;
}

.p-article__content p a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #0095F1;
  -webkit-text-decoration: underline #0095F1;
  text-decoration: underline #0095F1;
}

.p-article__content p a[target=_blank]::before {
  display: inline-block;
  margin-right: 2px;
  margin-right: .125rem;
  margin-bottom: -3px;
  margin-bottom: -.1875rem;
  margin-left: 5px;
  margin-left: .3125rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  font-size: 15px;
  font-size: .9375rem;
  content: '▶︎';
}

.p-article__content p strong {
  font-weight: 800;
}

.p-article__content ul {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-article__content ul li {
  padding-left: 22px;
  padding-left: 1.375rem;
  text-indent: -18px;
  text-indent: -1.125rem;
}

.p-article__content ul li:not(:first-of-type),
.p-article__content ol li:not(:first-of-type) {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-article__content ul li::before {
  display: inline-block;
  position: relative;
  top: -3px;
  top: -.1875rem;
  margin-right: 10px;
  margin-right: .625rem;
  border-radius: 50%;
  background-color: #0095F1;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-article__content ol {
  counter-reset: number;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-article__content ol li {
  padding-left: 28px;
  padding-left: 1.75rem;
  text-indent: -12px;
  text-indent: -.75rem;
}

.p-article__content ol li::before {
  display: inline-block;
  counter-increment: number;
  margin-right: 10px;
  margin-right: .625rem;
  color: #0095F1;
  line-height: 1;
  content: counter(number) '.';
}

.p-article__content figure {
  margin-top: 28px;
  margin-top: 1.75rem;
  width: 100%;
}

.p-article__content figure img {
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-boardMember {
  background-color: #F2F3F0;
}

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

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

.p-brand {
  color: #004668;
}

.p-brand__inner.l-inner {
  border-bottom: 1px solid #004668;
  width: 95%;
}

.p-brand__container {
  margin-inline: auto;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  max-width: 800px;
  max-width: 50rem;
}

.p-brand__head {
  gap: 15px;
  gap: .9375rem;
  display: grid;
}

.p-brand__message {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

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

.p-brand__img {
  margin-inline: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
  max-width: 552px;
}

.p-brand__img img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-brand__box {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

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

.p-business__message {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.88;
}

.p-business__img {
  margin-top: 14px;
  margin-top: .875rem;
  margin-right: calc(50% - 50vw);
  border-radius: 1.25rem 0 0 1.25rem;
  overflow: clip;
}

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

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

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

.p-company {
  background-image: url(../../assets/images/top/company_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-company__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-company__item {
  -webkit-transition: .3s;
  transition: .3s;
  border-bottom: 1px solid #fff;
  overflow: clip;
}

.p-company__item:hover {
  scale: 1.03;
}

.p-company__item:first-of-type .p-company__itemImg {
  background-color: #daae56;
}

.p-company__item:first-of-type .p-company__itemImg::after {
  background-image: url(../../assets/images/top/company01.png);
}

.p-company__item:nth-of-type(2) .p-company__itemImg {
  background-color: #d25a60;
}

.p-company__item:nth-of-type(2) .p-company__itemImg::after {
  background-image: url(../../assets/images/top/company02.png);
}

.p-company__item:last-of-type .p-company__itemImg {
  background-color: #57b1a8;
}

.p-company__item:last-of-type .p-company__itemImg::after {
  background-image: url(../../assets/images/top/company03.png);
}

.p-company__item a {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
}

.p-company__itemImg {
  aspect-ratio: 243/177;
  position: relative;
  width: 100%;
}

.p-company__itemImg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 101%;
  height: 100%;
  content: '';
}

.p-company__itemTitle {
  margin-top: 13.5px;
  margin-top: .84375rem;
  padding-bottom: 10.1px;
  padding-bottom: .63125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
}

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

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

.p-pageCompany__slideContent {
  margin-inline: auto;
  position: relative;
  width: 800px;
  max-width: 100%;
  overflow: hidden;
}

.p-pageCompany__slideContent::before {
  display: block;
  padding-top: 75%;
  width: 100%;
  height: 0;
  content: '';
}

.p-pageCompany__slideContent > iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-culture {
  background-color: rgba(0, 98, 243, .76);
}

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

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

.p-culture__value {
  gap: 25px;
  gap: 1.5625rem;
  display: grid;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-culture__valueTitle {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 150px;
  width: 9.375rem;
}

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

.p-culture__builder::before {
  position: absolute;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 1px;
  content: '';
}

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

.p-culture__builderTitleSub {
  color: #fff;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2.1333333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-figure {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  color: #004668;
}

.p-figure__contents {
  position: relative;
  z-index: 2;
  text-align: center;
}

.p-figure__contents:nth-of-type(2)::after {
  z-index: -1;
}

.p-figure__contents::after {
  display: block;
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border: 1px solid #004668;
  border-radius: 50%;
  background-color: #d6e2eb;
  width: 300px;
  width: 18.75rem;
  height: 300px;
  height: 18.75rem;
  content: '';
}

.p-figure__img {
  margin-inline: auto;
  aspect-ratio: 171/181;
  width: 171px;
  width: 10.6875rem;
}

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

.p-figure__main {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6571428571;
}

.p-figure__list {
  margin-inline: auto;
  margin-left: 80px;
  margin-left: 5rem;
  text-align: left;
}

.p-figure__item {
  margin-inline: auto;
  max-width: 200px;
  max-width: 12.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7272727273;
  text-indent: -18px;
  text-indent: -1.125rem;
}

.p-figure__item::before {
  color: #004668;
  font-size: 15px;
  font-size: .9375rem;
  content: '●';
}

.p-filter {
  background-image: url(../../assets/images/news/filter_bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 35px 30px;
  padding: 1.25rem 2.1875rem 1.875rem;
}

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

.p-filter__category:not(:last-child) {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-filter__category + .p-filter__category {
  border-top: 1px solid #fff;
  padding-top: 16px;
  padding-top: 1rem;
}

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

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

.p-filter__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 100vh;
  background-color: #fff;
  padding: 5px 10px;
  padding: .3125rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 122px;
  min-width: 7.625rem;
  color: #004668;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.p-filter__link.is-active {
  background-color: #D7F686;
}

.p-footer {
  background-image: url(../../assets/images/common/footer_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

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

.p-footer__head {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-footer__logo {
  max-width: 100px;
  max-width: 6.25rem;
}

.p-footer__company-name {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.2;
  white-space: nowrap;
}

.p-footer__certifications {
  gap: 7px;
  gap: .4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 173px;
  max-width: 10.8125rem;
}

.p-footer__menu {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-footer__menu-title,
.p-footer__menu-link {
  display: block;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-footer__menu-title {
  border-bottom: 1px solid #fff;
}

.p-footer__menu-list {
  gap: 14px;
  gap: .875rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.2;
}

.p-footer__menu-item a,
.p-footer__menu-link,
.p-footer__policy-item a {
  display: block;
  color: #fff;
}

.p-footer__menu-item a span,
.p-footer__menu-link span,
.p-footer__policy-item span {
  position: relative;
}

.p-footer__menu-item a span::after,
.p-footer__menu-link span::after,
.p-footer__policy-item span::after {
  display: block;
  position: absolute;
  bottom: -3px;
  bottom: -.1875rem;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #fff;
  width: 0%;
  height: 1px;
  content: '';
}

.p-footer__middle {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-footer__sns {
  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;
  max-width: 120px;
  max-width: 7.5rem;
}

.p-footer__follow {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-footer__service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer__service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

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

.p-footer__serviceAppImg {
  max-width: 45px;
  max-width: 2.8125rem;
}

.p-footer__service-description {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.26;
}

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

.p-footer__policies {
  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-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 330px;
  max-width: 20.625rem;
}

.p-footer__policy-item {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.21;
}

.p-footer__policy-item a {
  display: block;
  color: #fff;
}

.p-footer__copyright {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-fv {
  background-image: url(../../assets/images/top/fv_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.p-fv__img {
  height: calc(100vh - 16.5625rem);
  max-height: 400px;
  max-height: 25rem;
}

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

.p-fv__message {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}

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

.p-fv__missionHead {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
}

.p-fv__missionHead::after {
  display: block;
  position: absolute;
  top: -10px;
  top: -.625rem;
  left: -10px;
  left: -.625rem;
  background-image: url(../../assets/images/top/mission_bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  width: 6.25rem;
  height: 80px;
  height: 5rem;
  content: '';
}

.p-fv__missionTitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.64;
}

.p-fv__missionText {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .05em;
  line-height: 1.6;
}

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

.p-header {
  margin-inline: auto;
  -webkit-box-shadow: 0 0 11.111px rgba(0, 0, 0, .15);
  box-shadow: 0 0 11.111px rgba(0, 0, 0, .15);
  border-radius: 100vh;
  background-color: #fff;
  width: 95%;
  height: 64px;
  height: 4rem;
}

.p-header__inner {
  height: inherit;
}

.p-header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 12000;
  border-radius: 100vh;
  background-color: #fff;
  padding: 0 30px;
  padding: 0 1.875rem;
  height: inherit;
}

.p-header__logo {
  z-index: 1000;
  width: 100%;
  max-width: 60px;
  max-width: 3.75rem;
  height: inherit;
}

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

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

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

.p-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.p-header__nav-item,
.p-header__nav-modal-wrap {
  height: inherit;
}

.p-header__nav-modal-wrap {
  position: relative;
}

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

.p-header__nav-item > a,
.p-header__nav-modal-wrap > p,
.p-header__nav-modal-wrap > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0 15px 0 10px;
  padding: 0 .9375rem 0 .625rem;
  height: inherit;
  color: #323221;
  font-size: max(15px, 14px);
  font-size: max(.9375rem, 14px);
  font-weight: 700;
  line-height: 1;
}

.p-header__nav-modal-wrap > p::before, .p-header__nav-item > a::before {
  display: block;
  position: absolute;
  bottom: 7px;
  bottom: .4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 50%;
  background-color: #323221;
  width: 7.21px;
  width: .450625rem;
  height: 7.21px;
  height: .450625rem;
  content: '';
}

.p-header__nav-item > a:hover::before {
  opacity: 1;
}

.p-header__nav-modal-wrap.is-active > p::before, .p-header__nav-item.is-active > a::before {
  opacity: 1;
}

.p-header__nav-modal-wrap:first-child p {
  padding-left: 0;
}

.p-header__nav-modal-wrap > p,
.p-header__nav-modal-arrow {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-header__nav-modal-wrap > p::after,
.p-header__nav-modal-arrow::after {
  display: block;
  position: absolute;
  top: 52%;
  right: -2px;
  right: -.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/arrow_down.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  width: .75rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-header__nav-modal {
  position: absolute;
  top: 80%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-box-shadow: 0 0 .4501625rem rgba(0, 0, 0, .15);
  box-shadow: 0 0 .4501625rem rgba(0, 0, 0, .15);
  border-radius: .3766875rem;
  background-color: #fff;
  padding: 26.4px 0 25.3px 0;
  padding: 1.65rem 0 1.58125rem 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 140px;
  min-width: 8.75rem;
}

.p-header__nav-modal-wrap:hover > .p-header__nav-modal {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

.p-header__nav-modal-item a {
  display: block;
  position: relative;
  padding: 0 34px 0 27.5px;
  padding: 0 2.125rem 0 1.71875rem;
  color: #323221;
  font-size: max(14px, 14px);
  font-size: max(.875rem, 14px);
  font-weight: 700;
  line-height: 2.14;
}

.p-header__nav-modal-item a::before {
  display: block;
  position: absolute;
  top: 45%;
  left: 10px;
  left: .625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 50%;
  background-color: #323221;
  width: 7px;
  width: .4375rem;
  height: 7px;
  height: .4375rem;
  content: '';
}

.p-header__nav-modal-item a:hover::before {
  opacity: 1;
}

.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  position: relative;
  position: relative;
  border: 2px solid #0095F1;
  border: .125rem solid #0095F1;
  border-radius: 100vh;
  padding: 14px 26px;
  padding: .875rem 1.625rem;
  height: initial;
  color: #fff;
  text-align: center;
}

.p-header__nav-item.p-header__nav-item--contact a::before {
  top: 0;
  left: 0;
  -webkit-transform: translate(0);
  transform: translate(0);
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 100vh;
  background-color: #fff;
  width: 0;
  height: 100%;
  content: '';
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 100vh;
  background-color: #0095F1;
  width: 100%;
  height: 100%;
  content: '';
}

.p-header__nav-item.p-header__nav-item--contact a:hover {
  color: #0095F1;
}

.p-header__nav-item.p-header__nav-item--contact a:hover::before {
  width: 100%;
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  width: 64px;
  width: 4rem;
  height: inherit;
}

.p-header__hamburger span {
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #0095F1;
  width: 30px;
  width: 1.875rem;
  height: 2px;
  height: .125rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -8px;
  top: -.5rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 8px;
  top: .5rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 2px;
  top: .125rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  scrollbar-width: none;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 800;
  -webkit-box-shadow: 0 0 11.111px rgba(0, 0, 0, .15);
  box-shadow: 0 0 11.111px rgba(0, 0, 0, .15);
  border-radius: 1.875rem;
  background-color: #fff;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  padding: 5px 32px;
  padding: .3125rem 2rem;
}

.p-header__drawer-item > a,
.p-header__drawer-accordion-title {
  display: block;
  cursor: pointer;
  padding: 20px 32px;
  padding: 1.25rem 2rem;
  width: 100%;
  color: #004668;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  text-align: left;
}

.p-header__drawer-item > a a,
.p-header__drawer-accordion-title a {
  color: #004668;
}

.p-header__drawer-accordion-title a {
  pointer-events: none;
}

.p-header__drawer-accordion-title.is-open a {
  pointer-events: auto;
}

.p-header__drawer-accordion-title {
  position: relative;
}

.p-header__drawer-accordion-title::before,
.p-header__drawer-accordion-title::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transition: .3s;
  transition: .3s;
  background: #004668;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-header__drawer-accordion-title::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-header__drawer-accordion-title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.p-header__drawer-accordion-title.is-open::after {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-header__drawer-accordion-list {
  display: none;
  padding-bottom: 10px;
  padding-bottom: .625rem;
}

.p-header__drawer-accordion-list a {
  display: block;
  padding: 10px 32px;
  padding: .625rem 2rem;
  color: #004668;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .05em;
  line-height: 1;
}

.p-history__timeline {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-bottom: 1px solid #004668;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  color: #004668;
}

.p-history__timelineList {
  position: relative;
}

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

.p-history__timelineItem:first-of-type .p-history__timelineContent::before {
  top: 18px;
  top: 1.125rem;
}

.p-history__timelineYear {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  width: 110px;
  width: 6.875rem;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.p-history__timelineContent p {
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}

.p-history__timelineContent::before, .p-history__timelineContent::after {
  display: block;
  position: absolute;
  content: '';
}

.p-history__timelineContent::before {
  top: 0;
  left: -26px;
  left: -1.625rem;
  background-color: #004668;
  width: 2px;
  height: 100%;
}

.p-history__timelineContent::after {
  display: block;
  position: absolute;
  top: 13px;
  top: .8125rem;
  left: -31px;
  left: -1.9375rem;
  border: 2px solid #004668;
  border: .125rem solid #004668;
  border-radius: 50%;
  background-color: #fff;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.p-history__slide {
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-how__figure {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-how__message {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #203050;
}

.p-investor__img {
  aspect-ratio: 1100/400;
  width: 100%;
}

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

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

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

.p-mission {
  background-image: url(../../assets/images/about/mission_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  padding: 2.5rem 0;
  color: #fff;
}

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

.p-mission__title {
  position: relative;
}

.p-mission__title::after {
  display: block;
  position: absolute;
  top: -5px;
  top: -.3125rem;
  left: -30px;
  left: -1.875rem;
  background-image: url(../../assets/images/about/missionTitle_bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  width: 9.375rem;
  height: 100px;
  height: 6.25rem;
  content: '';
}

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

.p-mission__video {
  aspect-ratio: 750/484;
  margin-top: 20px;
  margin-top: 1.25rem;
  background: transparent url('../images/top/top-about.jpg') no-repeat center center/cover;
  width: 100%;
}

.p-mission__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-mission__notes {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.2;
}

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

.p-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10000;
  -webkit-transition: opacity .65s;
  transition: opacity .65s;
  -webkit-box-shadow: 0 0 1.125rem rgba(0, 0, 0, .1);
  box-shadow: 0 0 1.125rem rgba(0, 0, 0, .1);
  background-color: #fff;
  width: 90%;
  height: 90vh;
  overflow-x: clip;
  pointer-events: none;
}

.p-modal .swiper .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-modal .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}

.p-modal__container {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  height: calc(90vh - 1.875rem);
  overflow-y: auto;
}

.p-modal.is-show {
  opacity: 1;
  -webkit-transition: opacity .65s;
  transition: opacity .65s;
  pointer-events: auto;
}

.p-modal__item {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding: 80px 20px 100px 20px;
  padding: 5rem 1.25rem 6.25rem 1.25rem;
  height: auto;
  line-height: 1.65625;
}

.p-modal__item-img {
  position: relative;
  width: 100%;
}

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

.p-modal .swiper-button-prev,
.p-modal .swiper-button-next {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 73px;
  width: 4.5625rem;
  height: 53px;
  height: 3.3125rem;
}

.p-modal .swiper-button-prev {
  left: 40px;
  left: 2.5rem;
  background-image: url(../../assets/images/recruit/arrow-right.png);
}

.p-modal .swiper-button-next {
  right: 40px;
  right: 2.5rem;
  background-image: url(../../assets/images/recruit/arrow-right.png);
}

.p-modal__close-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
  background-color: #000;
  width: 66px;
  width: 4.125rem;
  height: 66px;
  height: 4.125rem;
}

.p-modal__close-button span {
  display: block;
  position: absolute;
  top: 32px;
  top: 2rem;
  right: 12px;
  right: .75rem;
  background-color: #fff;
  width: 40px;
  width: 2.5rem;
  height: 1px;
}

.p-modal__close-button span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-modal__close-button span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-modal__item-description {
  position: absolute;
  bottom: 6%;
  left: 7%;
}

.p-modal__item-subName {
  display: block;
  color: #fff;
  font-size: 22.5px;
  font-size: 1.40625rem;
  font-weight: 500;
  line-height: 1.2433281005;
}

.p-modal__item-post {
  color: #EBFF5C;
  font-size: 22.5px;
  font-size: 1.40625rem;
  font-weight: 500;
  line-height: 1.2433281005;
}

.p-modal__item-name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
}

.p-modal__item-text {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5142857143;
}

.p-modal__item-recruit {
  font-weight: 800;
}

.p-modal__item-hobby {
  font-weight: 500;
}

.p-modal__item-occupation {
  font-weight: 500;
}

.p-modal__item-exBold {
  font-weight: 800;
}

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

.p-modal__item-question {
  font-weight: 800;
}

.p-modal__overlay {
  display: none; /* デフォルトで非表示 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; /* モーダルの手前に表示 */
  background-color: rgba(227, 227, 228, .34); /* 背景色と透明度 */
  width: 100%;
  height: 100%;
}

.p-modal.is-show + .p-modal__overlay {
  display: block; /* モーダルが開いたときに表示 */
}

.p-name {
  color: #004668;
}

.p-name__container {
  margin-inline: auto;
  max-width: 750px;
  max-width: 46.875rem;
}

.p-name__message {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-name__img {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 70%;
}

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

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

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

.p-news__title {
  grid-area: 1/1/2/2;
}

.p-news__btn {
  grid-area: 3/1/4/2;
}

.p-news__btn a {
  margin-inline: auto;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-news__list {
  grid-area: 2/1/3/2;
}

.p-news__swiper {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-news__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-news__img {
  max-width: 312px;
  max-width: 19.5rem;
}

.p-news__img img {
  aspect-ratio: 295/197;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-newsList__item {
  border-bottom: 1px solid #004668;
}

.p-newsList__item:first-child {
  border-top: 1px solid #004668;
}

.p-newsList__item.p-newsList__item--sub:first-child {
  border-top: none;
}

.p-newsList__item.p-newsList__item--sub:first-child a {
  padding-top: 0;
}

.p-newsList__item a {
  gap: 10px;
  gap: .625rem;
  display: grid;
  padding: 15px 5px;
  padding: .9375rem .3125rem;
}

.p-newsList__item,
.p-newsList__item a {
  color: #004668;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.p-newsList__itemCategory {
  border-radius: 100vh;
  background-color: #004668;
  padding: 5px 17px;
  padding: .3125rem 1.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
  text-transform: capitalize;
}

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

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

.p-newsList__itemTitle span {
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
  background-image: -webkit-gradient(linear, left top, right top, from(#004668), to(#004668));
  background-image: linear-gradient(90deg, #004668, #004668);
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-repeat: no-repeat;
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  line-height: 1.6;
}

.p-occupation {
  color: #fff;
}

.p-occupation__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-occupation__contents {
  margin-inline: auto;
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-occupation__contentHead {
  border-radius: .625rem;
  padding: 12px;
  padding: .75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-occupation__content:nth-child(1) .p-occupation__contentHead {
  background-color: #5BD2E3;
}

.p-occupation__content:nth-child(2) .p-occupation__contentHead {
  background-color: #00b6e6;
}

.p-occupation__content:nth-child(3) .p-occupation__contentHead {
  background-color: #00b6ff;
}

.p-occupation__content:nth-child(4) .p-occupation__contentHead {
  background-color: #0062f3;
}

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

.p-occupation__item {
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}

.p-occupation__item:not(:first-child) {
  border-top: 1px solid #fff;
  padding-top: 18px;
  padding-top: 1.125rem;
}

.p-occupation__term {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-occupation__description {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.0576923077;
}

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

.p-overview__container {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-bottom: 1px solid #004668;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-overview__infoItem {
  color: #004668;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
}

.p-overview__map {
  display: block;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-overview__map::before {
  display: block;
  padding-top: 53.33333333%;
  width: 100%;
  height: 0;
  content: '';
}

.p-overview__map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

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

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

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

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

.p-pageAction__problem {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 20px 0;
  padding: 1.25rem 0;
}

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

.p-pageAction__last {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}

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

.p-pageAction__slideContent {
  margin-inline: auto;
  position: relative;
  width: 800px;
  max-width: 100%;
  overflow: hidden;
}

.p-pageAction__slideContent::before {
  display: block;
  padding-top: 75%;
  width: 100%;
  height: 0;
  content: '';
}

.p-pageAction__slideContent > iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pageAction__link {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

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

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

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

.p-pageApproach__second {
  margin-top: 60px;
  margin-top: 3.75rem;
  background-color: #fafafa;
  padding: 60px 0;
  padding: 3.75rem 0;
}

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

.p-pageApproach__secondImg.p-pageApproach__secondImg--first {
  margin-inline: auto;
  max-width: 810px;
}

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

.p-pageApproach__secondBtn a {
  margin-inline: auto;
}

.p-pageApproach__third {
  padding: 60px 0;
  padding: 3.75rem 0;
}

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

.p-pageApproach__forth {
  padding: 20px 0 40px;
  padding: 1.25rem 0 2.5rem;
}

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

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

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

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

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

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

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

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

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

.p-pageContactContents {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-pageContactContents__message {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.88;
  text-align: center;
}

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

.p-pageContactContents__btn a {
  margin-inline: auto;
}

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

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

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

.p-pageNews__sns {
  gap: 13.3px;
  gap: .83125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pageNews__snsItem {
  width: 30px;
  width: 1.875rem;
}

.p-pageNews__snsItem a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.p-pageNews__list {
  gap: 20px 41.1px;
  gap: 1.25rem 2.56875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

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

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

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

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

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

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

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

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

.p-pageRecruit__slideContent {
  margin-inline: auto;
  position: relative;
  width: 800px;
  max-width: 100%;
  overflow: hidden;
}

.p-pageRecruit__slideContent::before {
  display: block;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  content: '';
}

.p-pageRecruit__slideContent > iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-pageReport__head {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #004668;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5542168675;
}

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

.p-pageReport__links {
  margin: 40px 0;
  margin: 2.5rem 0;
}

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

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

.p-pageService__firstTopic {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-top: 1px solid #004668;
  border-bottom: 1px solid #004668;
  padding: 12px 0;
  padding: .75rem 0;
  color: #004668;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.52;
  text-align: center;
}

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

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

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

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

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

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

.p-pageService__links {
  margin: 40px 0;
  margin: 2.5rem 0;
}

.p-pickup__list {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

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

.p-pickup__btn a {
  margin-inline: auto;
}

.p-pickupCard {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  border-radius: 1.25rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  overflow: clip;
}

.p-pickupCard__img {
  aspect-ratio: 309/173;
  width: 100%;
  overflow: clip;
}

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

.p-pickupCard__category,
.p-pickupCard__title,
.p-pickupCard__date {
  margin: 0 30px;
  margin: 0 1.875rem;
}

.p-pickupCard__category {
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: 100vh;
  background-color: #004668;
  padding: 4px 15px;
  padding: .25rem .9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14.6px;
  font-size: .9125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.p-pickupCard__title {
  margin-top: 12px;
  margin-top: .75rem;
  padding-left: 5px;
  padding-left: .3125rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.77;
}

.p-pickupCard__date {
  display: block;
  margin-top: 35px;
  margin-top: 2.1875rem;
  color: #a9a9b1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
}

.p-pickupList {
  gap: 37px;
  gap: 2.3125rem;
  display: grid;
}

.p-principles {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-row: auto;
}

.p-principles__item {
  gap: 5px 8px;
  gap: .3125rem .5rem;
  display: grid;
  grid-template-columns: 2.375rem auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-principles__number {
  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: 50%;
  background-color: #fff;
  padding: 6px 10px;
  padding: .375rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 32px;
  min-width: 2rem;
  color: rgba(0, 98, 243, .53);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.p-principles__title {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
}

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

.p-principles__description {
  grid-area: 2/2/3/3;
  color: #fff;
  font-size: 15.6px;
  font-size: .975rem;
  font-weight: 500;
  line-height: 2;
}

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

.p-problem {
  background-color: #203050;
  background-image: url(../../assets/images/action/fukidashi.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 23.75rem;
  overflow: clip;
  color: #fff;
  text-align: center;
}

.p-problem__topImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 300px;
  max-width: 18.75rem;
}

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

.p-problem__contentsFigure {
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 1080px;
  max-width: 67.5rem;
}

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

.p-problem__contentsDecolatoin {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 18px;
  max-width: 1.125rem;
}

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

.p-problem__centerImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-problem__vision {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-problem__vision::after {
  display: block;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-image: url(../../assets/images/action/circle.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1000px;
  width: 62.5rem;
  height: 1000px;
  height: 62.5rem;
  content: '';
}

.p-problem__visionImg {
  margin-inline: auto;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-profile {
  gap: 40px 20px;
  gap: 2.5rem 1.25rem;
  display: grid;
  color: #004668;
  font-weight: 500;
}

.p-profile__img {
  aspect-ratio: 1/1;
}

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

.p-profile__img.p-profile__img--min {
  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;
  width: 100%;
}

.p-profile__img.p-profile__img--min img {
  margin-inline: auto;
  display: block;
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-profile__name {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545454545;
}

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

.p-profileHeader__image {
  aspect-ratio: 1;
}

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

.p-profileHeader__image.p-profileHeader__image--min {
  margin-inline: auto;
  width: 80%;
}

.p-profileHeader__content {
  color: #004668;
}

.p-profileHeader__name {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.p-profileHeader__name.p-profileHeader__name--min {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5976761075;
}

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

.p-recruit {
  color: #fff;
  text-align: center;
}

.p-recruit__container {
  border-radius: 1.5625rem;
  background-color: #0062f3;
  padding: 48px 0;
  padding: 3rem 0;
}

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

.p-recruit__mainMessage {
  margin-top: 18.5px;
  margin-top: 1.15625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-recruit__subMessage {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-recruit__imgs {
  gap: 5px;
  gap: .3125rem;
  display: grid;
}

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

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

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

.p-recruit__btn a {
  margin-inline: auto;
}

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

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

.p-recruiterList {
  gap: 10px 15px;
  gap: .625rem .9375rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}

.p-recruiterList__item {
  position: relative;
  cursor: pointer;
  overflow: clip;
}

.p-recruiterList__description {
  position: absolute;
  bottom: 6%;
  left: 7%;
}

.p-recruiterList__name {
  display: block;
  color: #fff;
  font-size: 22.5px;
  font-size: 1.40625rem;
  line-height: 1.2444444444;
}

.p-recruiterList__post {
  color: #EBFF5C;
  font-size: 22.5px;
  font-size: 1.40625rem;
  line-height: 1.2444444444;
}

.p-recruiterList__img img {
  aspect-ratio: 249/267;
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  height: 100%;
}

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

.p-recruitHead__fv {
  aspect-ratio: 375/250;
  width: 100%;
}

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

.p-recruitHead__title {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #004668;
  text-align: center;
}

.p-recruitHead__title-main {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-recruitHead__title-main span {
  display: inline-block;
}

.p-recruitHead__title-sub {
  display: block;
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
}

.p-recruitHead__title-sub span {
  display: inline-block;
}

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

.p-recruitmentOptions {
  display: grid;
  position: fixed;
  bottom: 0;
  grid-template-columns: repeat(3, 1fr);
  z-index: 999;
  width: 100%;
}

.p-recruitmentOptions__item {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 5px 18px 5px;
  padding: 1.125rem .3125rem 1.125rem .3125rem;
}

.p-recruitmentOptions__item:first-child {
  background-color: #FFEC00;
}

.p-recruitmentOptions__item:nth-child(2) {
  background-color: #FFC32D;
}

.p-recruitmentOptions__item:last-child {
  background-color: #FF7054;
}

.p-recruitmentOptions__texts {
  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-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.1875;
}

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

.p-recruitmentOptions__icon {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-recruitMission {
  background-color: #0062F3;
  text-align: center;
}

.p-recruitMission__message {
  margin-top: 10px;
  margin-top: .625rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.p-recruitMission__btn a {
  margin-inline: auto;
}

.p-recruitMission__img {
  margin-inline: auto;
  aspect-ratio: 1180/294;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}

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

.p-recruitWork {
  background-color: rgba(0, 98, 243, .76);
}

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

.p-recruitWork__movies {
  margin-inline: auto;
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-recruitWork__movie {
  aspect-ratio: 375/150;
  position: relative;
  overflow: clip;
}

.p-recruitWork__movie:nth-child(odd) .p-recruitWork__movieTitle {
  left: 3%;
}

.p-recruitWork__movie:nth-child(odd) .p-recruitWork__movieMessage {
  left: 3%;
}

.p-recruitWork__movie:nth-child(even) .p-recruitWork__movieTitle {
  right: 3%;
  text-align: right;
}

.p-recruitWork__movie:nth-child(even) .p-recruitWork__movieMessage {
  right: 3%;
  text-align: right;
}

.p-recruitWork__movie img {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-recruitWork__movieTitle,
.p-recruitWork__movieMessage {
  position: absolute;
  color: #fff;
}

.p-recruitWork__movieTitle {
  top: 5%;
  font-family: 'Poppins', sans-serif;
  font-size: min(22px, 3.5vw);
  font-size: min(1.375rem, 3.5vw);
  font-weight: 700;
  line-height: 1.1;
}

.p-recruitWork__movieMessage {
  bottom: 5%;
  color: #fff;
  font-size: min(24px, 3.8vw);
  font-size: min(1.5rem, 3.8vw);
  font-weight: 900;
  line-height: 1.4375;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, .5);
}

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

.p-recruitWork__img {
  margin-inline: auto;
  aspect-ratio: 1425/448;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  width: 100%;
  max-width: 2000px;
  max-width: 125rem;
}

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

.p-sectionBox__head {
  color: #004668;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}

.p-sectionBox__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: justify;
}

.p-sectionBox__note {
  margin-top: 12px;
  margin-top: .75rem;
  color: #004668;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-serviceSection__title {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #004668;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #0088c0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-serviceSection__title img {
  display: block;
  max-width: 120px;
  max-width: 7.5rem;
}

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

.p-serviceSection__contents.p-serviceSection__contents--app {
  display: grid;
}

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

.p-serviceSection__contents.p-serviceSection__contents--app .p-serviceSection__img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-serviceSection__contents.p-serviceSection__contents--app .p-serviceSection__text {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.p-serviceSection__contents.p-serviceSection__contents--app .p-serviceSection__list {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.p-serviceSection__contents.p-serviceSection__contents--app .p-serviceSection__btn {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.p-serviceSection__contentBody {
  display: contents;
}

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

.p-serviceSection__contents.p-serviceSection__contents--border {
  border-bottom: 1px solid #004668;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-serviceSection__head {
  color: #004668;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.52;
}

.p-serviceSection__img.p-serviceSection__img--dashboard {
  border: 1px solid #004668;
}

.p-serviceSection__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #004668;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

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

.p-serviceSection__list {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #004668;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 2;
}

.p-serviceSection__item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-serviceSection__item::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  color: #0095F1;
  font-size: 15px;
  font-size: .9375rem;
  content: '●';
}

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

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

.p-serviceSection__engagementImg {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 900px;
}

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

.p-serviceSection__detailHead {
  gap: 0 10px;
  gap: 0 .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;
  background: -webkit-gradient(linear, left top, right top, from(#0097FF), to(#2EDFEE));
  background: linear-gradient(90deg, #0097FF, #2EDFEE);
  padding: 0 10px;
  padding: 0 .625rem;
  color: #fff;
  font-weight: 700;
}

.p-serviceSection__detailHeadEn {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.3;
}

.p-serviceSection__detailHeadJa {
  font-size: 14px;
  font-size: .875rem;
  line-height: 2.7;
}

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

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

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

.p-story__movie {
  aspect-ratio: 900/490;
  margin-top: 20px;
  margin-top: 1.25rem;
  background: transparent url('../images/action/movie-poster.jpg') no-repeat center center/cover;
  width: 100%;
}

.p-story__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-subFv {
  background-image: url(../../assets/images/common/subFvBg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 140px;
  padding: 8.75rem 0 8.75rem;
  text-align: center;
}

.p-subFv.p-subFv--sub {
  padding: 140px 0 100px;
  padding: 8.75rem 0 6.25rem;
}

.p-subMenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #004668;
  border-bottom: 1px solid #004668;
  background-color: #fff;
  color: #004668;
}

.p-subMenu.subMenu--news {
  padding: 10px;
  padding: .625rem;
}

.p-subMenu__item {
  position: relative;
}

.p-subMenu__item::after, .p-subMenu__item::before {
  display: block;
  position: absolute;
  content: '';
}

.p-subMenu__item::before {
  bottom: 10px;
  bottom: .625rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(41deg) skew(-5deg);
  transform: translateX(-50%) rotate(41deg) skew(-5deg);
  border-right: 1px solid #004668;
  border-bottom: 1px solid #004668;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-subMenu__item:first-child {
  grid-area: 1/1/2/2;
}

.p-subMenu__item:first-child::after {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #004668;
  width: 1px;
  height: 50%;
}

.p-subMenu__item:nth-child(2) {
  grid-area: 1/2/2/3;
}

.p-subMenu__item:nth-child(3) {
  grid-area: 2/1/3/3;
}

.p-subMenu__item:nth-child(3)::after {
  top: 0;
  left: 10%;
  background-color: #004668;
  width: 80%;
  height: 1px;
}

.p-subMenu__item.is-active {
  background-color: rgba(0, 149, 241, .15);
}

.p-subMenu__link {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 14px 0 25px;
  padding: .875rem 0 1.5625rem;
  text-align: center;
}

.p-subMenu__item.subMenu__item--news::before {
  bottom: 14px;
  bottom: .875rem;
}

.p-subMenu__link.subMenu__link--news {
  padding: 20px 0 28px;
  padding: 1.25rem 0 1.75rem;
}

.p-subMenu__title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

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

.p-subMenuContainer {
  margin-inline: auto;
  margin-top: -90px;
  margin-top: -5.625rem;
  width: 90%;
}

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

.p-supporter {
  background-color: #F2F3F0;
  color: #004668;
}

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

.p-supporter__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6176470588;
}

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

.p-term__content div {
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  overflow-x: auto;
}

.p-term__content h2 {
  margin: 20px 0;
  margin: 1.25rem 0;
  background-color: #004668;
  padding: 10px;
  padding: .625rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-term__content h3 {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #0095F1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.8;
}

.p-term__content h4 {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 800;
}

.p-term__content p, .p-term__content a, .p-term__content ul li, .p-term__content ol li, .p-term__content h4 {
  color: #004668;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 2.0540540541;
}

.p-term__content strong {
  font-weight: 700;
}

.p-term__content p {
  font-weight: 500;
}

.p-term__content a {
  font-weight: 500;
  text-decoration: underline;
}

.p-term__content ul li {
  margin-left: 10px;
  margin-left: .625rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #004668;
  text-indent: -12px;
  text-indent: -.75rem;
}

.p-term__content ul li::before {
  display: inline-block;
  top: 0;
  -webkit-transform: translateY(-.25rem);
  transform: translateY(-.25rem);
  margin-right: 10px;
  margin-right: .625rem;
  border-radius: 50%;
  background-color: #004668;
  width: 3px;
  width: .1875rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-term__content ol {
  counter-reset: number;
}

.p-term__content ol li {
  display: inline-block;
  counter-increment: number;
  margin-left: 10px;
  margin-left: .625rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #004668;
  font-weight: 500;
  text-indent: -12px;
  text-indent: -.75rem;
}

.p-term__content ol li::before {
  margin-right: 5px;
  margin-right: .3125rem;
  content: counter(number, upper-roman) '.';
}

.p-term__content .p-term__securityOrderList {
  margin-left: 0;
  text-indent: -18px;
  text-indent: -1.125rem;
}

.p-term__content .p-term__securityOrderList::before {
  content: counter(number) '.';
}

.p-term__content table {
  -webkit-overflow-scrolling: touch; /* スムーズなスクロールを有効化 (iOS) */
  min-width: 700px;
  min-width: 43.75rem;
  overflow-x: auto; /* 横スクロールを有効化 */
}

.p-term__content table th, .p-term__content table td {
  border: none;
  padding: 0 10px;
  padding: 0 .625rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 2.0540540541;
  text-align: left;
}

.p-term__content table th:nth-child(1) {
  width: 21%;
}

.p-term__content table th:nth-child(2) {
  width: 19%;
}

.p-term__content table th:nth-child(3) {
  width: 16%;
}

.p-term__content table thead {
  background-color: rgba(0, 70, 104, .72);
  color: #fff;
  font-weight: 700;
}

.p-term__content table tbody {
  color: #004668;
  font-weight: 500;
}

.p-term__content table tbody tr:nth-child(even) {
  background-color: #E1E1E1;
}

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

.p-term__pdf {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.652173913;
}

.p-term__pdf a {
  color: #B80016;
}

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

.p-textBox__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

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

.p-textBox__text.p-textBox__text {
  line-height: 2;
}

.p-textBox__text.p-textBox__text--blue {
  color: #004668;
}

.p-textBox__message {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

.p-textBox__message sup {
  font-size: .7em;
}

.p-textBox__message.p-textBox__message--blue {
  color: #004668;
}

.p-vision {
  color: #004668;
}

.p-vision__inner.l-inner {
  border-bottom: 1px solid #004668;
  width: 95%;
}

.p-vision__container {
  margin-inline: auto;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  max-width: 800px;
  max-width: 50rem;
}

.p-vision__head {
  gap: 15px;
  gap: .9375rem;
  display: grid;
}

.p-vision__message {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

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

.p-vision__img {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vision__box {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

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

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

  html {
    font-size: 1.5094339623vw;
  }

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

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

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

  .l-about {
    margin-top: 108.2px;
    margin-top: 6.7625rem;
    padding: 86px 0;
    padding: 5.375rem 0;
  }

  .l-action {
    margin-top: 84.2px;
    margin-top: 5.2625rem;
    padding: 118px 0;
    padding: 7.375rem 0;
  }

  .l-business {
    margin-top: 149.2px;
    margin-top: 9.325rem;
  }

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

  .l-company {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding: 74px 0;
    padding: 4.625rem 0;
  }

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

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

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

  .l-footer {
    padding: 100px 0;
    padding: 6.25rem 0;
  }

  .l-fv {
    padding: 170px 0 120px;
    padding: 10.625rem 0 7.5rem;
  }

  .l-header {
    top: 48.2px;
    top: 3.0125rem;
  }

  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1320px;
  }

  .l-inner.l-inner--contents {
    max-width: 950px;
    max-width: 59.375rem;
  }

  .l-inner.l-inner--large {
    max-width: 1130px;
    max-width: 70.625rem;
  }

  .l-inner.l-inner--company {
    max-width: 1150px;
    max-width: 71.875rem;
  }

  .l-inner.l-inner--mid {
    max-width: 1020px;
    max-width: 63.75rem;
  }

  .l-news {
    margin-top: 98.6px;
    margin-top: 6.1625rem;
  }

  .l-pickup {
    margin-top: 92px;
    margin-top: 5.75rem;
    padding-bottom: 92px;
    padding-bottom: 5.75rem;
  }

  .l-recruit {
    margin-top: 113px;
    margin-top: 7.0625rem;
  }

  .l-subPage {
    margin-top: 180px;
    margin-top: 11.25rem;
    margin-bottom: 180px;
    margin-bottom: 11.25rem;
  }

  .l-subPage.l-subPage--contact {
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
  }

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

  .c-actionHead__ja {
    font-size: 39px;
    font-size: 2.4375rem;
  }

  .c-actionMessage {
    font-size: 29.8px;
    font-size: 1.8625rem;
  }

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

  .c-actionMessageSub {
    margin: 0;
    font-size: 28px;
  }

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

  .c-btn:hover::after {
    width: 100%;
  }

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

  .c-btn.c-btn--white:hover::before {
    background-color: #004668;
  }

  .c-btn.c-btn--white:hover .c-btn__span::after {
    background-color: #fff;
  }

  .c-btn.c-btn--blue:hover {
    color: #004668;
  }

  .c-btn.c-btn--blue:hover::before {
    background-color: #fff;
  }

  .c-btn.c-btn--blue:hover .c-btn__span::after {
    background-color: #004668;
  }

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

  .c-btn.c-btn--whiteBlue:hover::before {
    background-color: #004668;
  }

  .c-btn.c-btn--whiteBlue:hover .c-btn__span::after {
    background-color: #fff;
  }

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

  .c-btn.c-btn--bgBlue:hover {
    border: 1px solid #fff;
    color: #fff;
  }

  .c-btn.c-btn--bgBlue:hover::before {
    background-color: #0062f3;
  }

  .c-btn.c-btn--bgBlue:hover .c-btn__span::after {
    background-color: #fff;
  }

  .c-btn.c-btn--big .c-btn__span {
    padding-right: 80px;
    padding-right: 5rem;
    padding-left: 54.5px;
    padding-left: 3.40625rem;
  }

  .c-btn.c-btn--largeJa .c-btn__span {
    padding: 20px 112px 20px 71px;
    padding: 1.25rem 7rem 1.25rem 4.4375rem;
    font-size: 18px;
  }

  .c-btn.c-btn--largeJa .c-btn__span::after {
    right: 50px;
    right: 3.125rem;
  }

  .c-btn__span.c-btn__span--flex {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .c-btnCircle:hover::after {
    background-color: #0095F1;
  }

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

  .c-pageLinkBtn {
    padding: 41.5px 67.2px;
    padding: 2.59375rem 4.2rem;
  }

  .c-pageLinkBtn:hover {
    -webkit-transform: translateY(.1875rem);
    transform: translateY(.1875rem);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  }

  .c-pageLinkBtn.c-pageLinkBtn--redBig {
    padding-right: 72.7px;
    padding-right: 4.54375rem;
    padding-left: 72.7px;
    padding-left: 4.54375rem;
  }

  .c-pageLinkBtn.c-pageLinkBtn--greenGraduate {
    padding: 41.5px 20px;
    padding: 2.59375rem 1.25rem;
  }

  .c-pageLinkBtn__en {
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .c-pageLinkBtn__ja {
    font-size: max(15px, 14px);
    font-size: max(.9375rem, 14px);
  }

  .c-pageTitle__en {
    font-size: 66px;
    font-size: 4.125rem;
  }

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

  .c-pagination {
    gap: 12px;
    gap: .75rem;
  }

  .c-pagination a,
  .c-pagination span {
    font-size: max(14px, 12px);
    font-size: max(.875rem, 12px);
  }

  .c-pagination a:hover {
    opacity: 1;
    background: #004668;
    color: #fff;
  }

  .c-pagination__previouspostslink {
    margin-right: 28px;
    margin-right: 1.75rem;
  }

  .c-pagination__nextpostslink {
    margin-left: 28px;
    margin-left: 1.75rem;
  }

  .c-pagination__previouspostslink.c-pagination__previouspostslink:hover,
  .c-pagination__nextpostslink.c-pagination__nextpostslink:hover {
    border: 1px solid #004668;
    background-color: #fff;
  }

  .c-pagination__previouspostslink.c-pagination__previouspostslink:hover::after,
  .c-pagination__nextpostslink.c-pagination__nextpostslink:hover::after {
    background-color: #004668;
  }

  .c-sectionTitle__en {
    font-size: 55px;
    font-size: 3.4375rem;
  }

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

  .c-sectionTitle__ja {
    margin-top: 5px;
    margin-top: .3125rem;
    font-size: max(15px, 14px);
    font-size: max(.9375rem, 14px);
  }

  .p-about__inner {
    max-width: 1260px;
    max-width: 78.75rem;
  }

  .p-about__container {
    gap: 0 77px;
    gap: 0 4.8125rem;
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .p-about__title {
    grid-area: 1/2/2/3;
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .p-about__message {
    grid-area: 2/2/3/3;
    margin-top: 41.8px;
    margin-top: 2.6125rem;
    font-size: max(17px, 14px);
    font-size: max(1.0625rem, 14px);
  }

  .p-about__btn {
    grid-area: 3/2/4/3;
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-about__video {
    grid-area: 1/1/4/2;
    margin-top: 0;
  }

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

  .p-accordion__head::before {
    right: 100px;
    right: 6.25rem;
    width: 25px;
    width: 1.5625rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-accordion__head.p-accordion__head--min {
    gap: 0 10px;
    gap: 0 .625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
    padding: 1.25rem 0;
    font-size: 19px;
    font-size: 1.1875rem;
  }

  .p-accordion__head.is-open::before, .p-accordion__head.is-open::after {
    right: 110px;
    right: 6.875rem;
  }

  .p-accordion__contents {
    padding: 40px 40px 20px;
    padding: 2.5rem 2.5rem 1.25rem;
  }

  .p-accordion__category {
    margin: 0;
  }

  .p-accordionContents__head {
    font-size: 15px;
  }

  .p-accordionContents__item {
    padding-block: 0;
  }

  .p-accordionContents__category {
    font-size: 12px;
  }

  .p-accordionContents__text {
    font-size: 14px;
    line-height: 3.07;
  }

  .p-accordionList__item::before {
    gap: 0 10px;
    gap: 0 .625rem;
    width: 15px;
    width: .9375rem;
    height: 15px;
    height: .9375rem;
  }

  .p-accordionList__item {
    gap: 0 10px;
    gap: 0 .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-accordionList__item a {
    font-size: 14px;
  }

  .p-accordionList__item a:hover {
    color: #0095F1;
  }

  .p-accordionList__category {
    font-size: 12px;
  }

  .p-action__inner {
    max-width: 1090px;
    max-width: 68.125rem;
  }

  .p-action__container {
    gap: 0 100px;
    gap: 0 6.25rem;
    display: grid;
    grid-template-columns: repeat(1fr);
    grid-template-rows: auto auto 1fr;
  }

  .p-action__title {
    grid-area: 1/2/2/3;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-action__message {
    grid-area: 2/2/3/3;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-action__img {
    grid-area: 1/1/4/2;
    margin-top: 0;
    margin-left: max(-193px, 50% - 33vw);
    margin-left: max(-12.0625rem, 50% - 33vw);
    max-width: 699px;
    max-width: 43.6875rem;
  }

  .p-action__btn {
    grid-area: 3/2/4/3;
  }

  .p-actionChallenge {
    padding-top: 423px;
    padding-top: 26.4375rem;
    padding-bottom: 340px;
    padding-bottom: 21.25rem;
  }

  .p-actionChallenge::before {
    aspect-ratio: revert;
    background-image: url(../../assets/images/action/challenge.png);
    background-size: 113.75rem 131.25rem;
    width: 1820px;
    width: 113.75rem;
    height: 100%;
  }

  .p-actionChallenge::after {
    display: none;
    top: 0;
  }

  .p-actionChallenge__header {
    margin: 0;
  }

  .p-actionChallenge__title {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 1.5;
  }

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

  .p-actionChallenge__content {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-actionChallenge__item {
    display: grid;
    grid-template-columns: 5.8fr 4.79fr;
    margin-left: 116px;
    margin-left: 7.25rem;
  }

  .p-actionChallenge__item:first-child .p-actionChallenge__image img {
    width: 82%;
  }

  .p-actionChallenge__item:nth-child(2) .p-actionChallenge__image img {
    width: 92%;
  }

  .p-actionChallenge__item:nth-child(2) .p-actionChallenge__image {
    text-align: left;
  }

  .p-actionChallenge__item.p-actionChallenge__item--reverse {
    display: grid;
  }

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

  .p-actionChallenge__description {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2.25;
  }

  .p-actionChallenge__image img {
    width: 82%;
  }

  .p-advisor__profile {
    margin-top: 58px;
    margin-top: 3.625rem;
  }

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

  .p-article__title {
    font-size: 35px;
    line-height: 1.7428571429;
  }

  .p-article__content {
    margin-top: 52px;
    margin-top: 3.25rem;
  }

  .p-article__content h2 {
    padding-left: 16.7px;
    padding-left: 1.04375rem;
    font-size: 28px;
  }

  .p-article__content h3 {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 24px 0;
    padding: 1.5rem 0;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-article__content h4 {
    margin-top: 64px;
    margin-top: 4rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article__content h5 {
    margin-top: 48px;
    margin-top: 3rem;
    padding: 8px 0 8px 16px;
    padding: .5rem 0 .5rem 1rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-article__content h6 {
    margin-top: 38px;
    margin-top: 2.375rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-article__content p, .p-article__content ul li, .p-article__content ol li {
    font-size: 15px;
  }

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

  .p-article__content p a[target=_blank]::before {
    font-size: 15px;
  }

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

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

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

  .p-boardMember__head {
    margin-top: 74px;
    margin-top: 4.625rem;
  }

  .p-boardMember__list {
    margin-top: 158px;
    margin-top: 9.875rem;
  }

  .p-brand__inner.l-inner {
    max-width: 1080px;
    max-width: 67.5rem;
  }

  .p-brand__container {
    padding-bottom: 73px;
    padding-bottom: 4.5625rem;
  }

  .p-brand__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-brand__title {
    min-width: 220px;
    min-width: 13.75rem;
  }

  .p-brand__message {
    margin-top: -10px;
    margin-top: -.625rem;
    font-size: 38.81px;
    font-size: 2.425625rem;
    line-height: 1.8;
    white-space: nowrap;
  }

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

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

  .p-business__inner {
    max-width: 1090px;
    max-width: 68.125rem;
  }

  .p-business__container {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    grid-template-rows: auto auto 1fr;
  }

  .p-business__title {
    grid-area: 1/1/2/2;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-business__message {
    grid-area: 2/1/3/2;
    text-align: left;
  }

  .p-business__img {
    grid-area: 1/2/4/3;
    margin-top: 0;
    max-width: 828px;
    max-width: 51.75rem;
  }

  .p-business__btn {
    grid-area: 3/1/4/2;
  }

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

  .p-company__inner {
    max-width: 1200px;
    max-width: 75rem;
  }

  .p-company__container {
    display: grid;
    grid-template-columns: 1fr 2.1fr;
    grid-template-rows: auto 1fr;
  }

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

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

  .p-company__itemTitle {
    grid-area: 1/1/2/2;
  }

  .p-company__btn {
    grid-area: 2/1/3/2;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-culture__contents {
    gap: 41px;
    gap: 2.5625rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-culture__value {
    gap: 120px;
    gap: 7.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

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

  .p-culture__builder {
    gap: 40px 88px;
    gap: 2.5rem 5.5rem;
    display: grid;
    grid-template-columns: 12.5rem auto;
    padding-top: 51.7px;
    padding-top: 3.23125rem;
  }

  .p-culture__builderTitleWrap {
    gap: 5px;
    gap: .3125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-area: 1/1/2/3;
  }

  .p-culture__builderTitle {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 300px;
    width: 18.75rem;
  }

  .p-culture__builderTitleSub {
    margin-top: 14px;
    margin-top: .875rem;
    font-size: 15px;
  }

  .p-culture__builder-contents {
    grid-area: 2/2/3/3;
    margin-top: 0;
  }

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

  .p-figure__contents::after {
    top: 64%;
    width: 380px;
    width: 23.75rem;
    height: 380px;
    height: 23.75rem;
  }

  .p-figure__main {
    margin: 0;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-figure__item {
    max-width: 100%;
    font-size: 22px;
    font-size: 1.375rem;
    text-indent: -16px;
    text-indent: -1rem;
  }

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

  .p-filter {
    padding: 30px 50px;
    padding: 1.875rem 3.125rem;
  }

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

  .p-filter__category:not(:last-child) {
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-filter__category + .p-filter__category {
    padding-top: 30px;
    padding-top: 1.875rem;
  }

  .p-filter__label {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 60px;
    padding-left: 3.75rem;
    width: 190px;
    width: 11.875rem;
    font-size: 16px;
  }

  .p-filter__list {
    gap: 15px 30px;
    gap: .9375rem 1.875rem;
  }

  .p-filter__link {
    font-size: 14px;
  }

  .p-filter__link:hover {
    background-color: #004668;
    color: #fff;
  }

  .p-footer__inner {
    max-width: 1180px;
    max-width: 73.75rem;
  }

  .p-footer__top {
    grid-template-columns: 1fr 3.8fr;
  }

  .p-footer__head {
    display: block;
  }

  .p-footer__logo {
    max-width: 124px;
    max-width: 7.75rem;
  }

  .p-footer__company-name {
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: max(14px, 12px);
    font-size: max(.875rem, 12px);
  }

  .p-footer__certifications {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-footer__menu {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-footer__menu-column {
    min-width: 110px;
    min-width: 6.875rem;
  }

  .p-footer__menu-title,
  .p-footer__menu-link {
    font-size: max(16px, 14px);
    font-size: max(1rem, 14px);
    white-space: nowrap;
  }

  .p-footer__menu-list {
    font-size: max(14px, 13px);
    font-size: max(.875rem, 13px);
  }

  .p-footer__menu-item a:hover span::after,
  .p-footer__menu-link:hover span::after,
  .p-footer__policy-item a:hover span::after {
    width: 100%;
  }

  .p-footer__middle {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 30px 0;
    padding: 1.875rem 0;
  }

  .p-footer__sns {
    gap: 20px;
    gap: 1.25rem;
    max-width: 170px;
    max-width: 10.625rem;
  }

  .p-footer__sns-icon:hover {
    opacity: .7;
  }

  .p-footer__follow {
    gap: 40px;
    gap: 2.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-footer__service {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

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

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

  .p-footer__serviceAppImg {
    max-width: 68px;
    max-width: 4.25rem;
  }

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

  .p-footer__service-description {
    font-size: max(15px, 14px);
    font-size: max(.9375rem, 14px);
  }

  .p-footer__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-footer__policies {
    gap: 42px;
    gap: 2.625rem;
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    max-width: 100%;
  }

  .p-footer__policy-item {
    font-size: 14px;
  }

  .p-footer__copyright {
    margin-top: 0;
    padding-right: 30px;
    padding-right: 1.875rem;
    font-size: 13px;
  }

  .p-fv__inner.l-inner {
    max-width: 1230px;
    max-width: 76.875rem;
  }

  .p-fv__message {
    font-size: min(55px, 4.3vw);
    font-size: min(3.4375rem, 4.3vw);
    text-align: center;
  }

  .p-fv__mission {
    margin-inline: auto;
    gap: 9%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 134.4px;
    margin-top: 8.4rem;
    max-width: 1005px;
    max-width: 62.8125rem;
  }

  .p-fv__missionHead {
    border-right: 1px solid #fff;
    padding-left: 63px;
    padding-left: 3.9375rem;
    width: 36.2%;
    font-size: 55px;
    font-size: 3.4375rem;
    line-height: 1;
  }

  .p-fv__missionHead::after {
    top: -41px;
    top: -2.5625rem;
    left: 14px;
    left: .875rem;
    width: 234px;
    width: 14.625rem;
    height: 164px;
    height: 10.25rem;
  }

  .p-fv__missionContents {
    width: 54.8%;
  }

  .p-fv__missionTitle {
    font-size: 36.6px;
    font-size: 2.2875rem;
  }

  .p-fv__missionText {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: max(16px, 14px);
    font-size: max(1rem, 14px);
    line-height: 2.3;
  }

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

  .p-header {
    width: 98%;
    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;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16.8px 0 25px;
    padding: 0 1.05rem 0 1.5625rem;
  }

  .p-header__container {
    display: contents;
  }

  .p-header__logo {
    max-width: 81px;
    max-width: 5.0625rem;
  }

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

  .p-header__nav {
    display: block;
  }

  .p-header__nav-item.p-header__nav-item--contact {
    margin-left: 8px;
    margin-left: .5rem;
  }

  .p-header__hamburger {
    display: none;
  }

  .p-history__timeline {
    margin-top: 52px;
    margin-top: 3.25rem;
    padding-bottom: 105px;
    padding-bottom: 6.5625rem;
  }

  .p-history__timelineItem {
    gap: 86.6px;
    gap: 5.4125rem;
  }

  .p-history__timelineItem:first-of-type .p-history__timelineContent::before {
    top: 18px;
  }

  .p-history__timelineYear {
    width: 115px;
    width: 7.1875rem;
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.2;
  }

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

  .p-history__timelineContent p {
    padding-bottom: 36px;
    padding-bottom: 2.25rem;
  }

  .p-history__timelineContent::before {
    left: -45px;
    left: -2.8125rem;
    width: 4.25px;
  }

  .p-history__timelineContent::after {
    top: 15px;
    left: -51px;
    left: -3.1875rem;
    border: 4px solid #004668;
    border: .25rem solid #004668;
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
  }

  .p-history__slide {
    margin-top: 101px;
    margin-top: 6.3125rem;
    width: 72.5%;
  }

  .p-how__figure {
    margin-top: 26px;
    margin-top: 1.625rem;
    width: 98%;
  }

  .p-how__message {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-links {
    gap: 35px 30px;
    gap: 2.1875rem 1.875rem;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .p-linksFlex__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(50% - 1.875rem);
    -ms-flex: 1 1 calc(50% - 1.875rem);
    flex: 1 1 calc(50% - 1.875rem);
  }

  .p-linksFlex__item:nth-child(3) {
    margin-inline: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
  }

  .p-mission {
    padding: 90px 0 100px;
    padding: 5.625rem 0 6.25rem;
  }

  .p-mission__inner.l-inner {
    max-width: 800px;
    max-width: 50rem;
  }

  .p-mission__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-mission__title::after {
    top: -32px;
    top: -2rem;
    left: -102px;
    left: -6.375rem;
    width: 234px;
    width: 14.625rem;
    height: 164px;
    height: 10.25rem;
  }

  .p-mission__message {
    font-size: 34.45px;
    font-size: 2.153125rem;
    line-height: 1.74;
  }

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

  .p-mission__box {
    margin-top: 54px;
    margin-top: 3.375rem;
  }

  .p-mission__notes {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 3;
  }

  .p-mission__btn {
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 761px;
    max-width: 47.5625rem;
  }

  .p-modal {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    max-width: 62.5rem;
    height: initial;
    overflow: initial;
  }

  .p-modal__container {
    display: contents;
  }

  .p-modal__item {
    gap: 45.6px;
    gap: 2.85rem;
    display: grid;
    grid-template-columns: 4.28fr 3.5fr;
    padding: 40.6px 96px 40.6px 79.6px;
    padding: 2.5375rem 6rem 2.5375rem 4.975rem;
  }

  .p-modal__item-img {
    max-height: 375px;
    max-height: 23.4375rem;
  }

  .p-modal .swiper-button-prev,
  .p-modal .swiper-button-next {
    top: 50%;
    bottom: initial;
    width: 73px;
    width: 4.5625rem;
    height: 53px;
    height: 3.3125rem;
  }

  .p-modal .swiper-button-prev {
    left: -10%;
  }

  .p-modal .swiper-button-next {
    right: -10%;
  }

  .p-modal__item-subName {
    font-size: 31.85px;
    font-size: 1.990625rem;
  }

  .p-modal__item-post {
    font-size: 31.85px;
    font-size: 1.990625rem;
  }

  .p-modal__item-name {
    font-size: 35px;
    font-size: 2.1875rem;
  }

  .p-modal__item-text {
    font-size: 18px;
  }

  .p-name__inner.l-inner {
    max-width: 1130px;
    max-width: 70.625rem;
  }

  .p-name__message {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: 38.81px;
    font-size: 2.425625rem;
  }

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

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

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

  .p-news__inner {
    max-width: 1075px;
    max-width: 67.1875rem;
  }

  .p-news__container {
    gap: 30px 77.3px;
    gap: 1.875rem 4.83125rem;
    grid-template-rows: auto 1fr;
  }

  .p-news__title {
    grid-area: 1/1/2/2;
  }

  .p-news__btn {
    grid-area: 2/1/3/2;
  }

  .p-news__btn a {
    margin: 0;
  }

  .p-news__list {
    grid-area: 1/2/3/3;
  }

  .p-news__swiper {
    margin-top: 101.6px;
    margin-top: 6.35rem;
  }

  .p-newsList__item a {
    gap: 13px;
    gap: .8125rem;
    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;
    padding: 23.3px 52px 23.3px 38.8px;
    padding: 1.45625rem 3.25rem 1.45625rem 2.425rem;
  }

  .p-newsList__item a:hover .p-newsList__itemTitle span {
    background-size: 100% 1px;
  }

  .p-newsList__item.p-newsList__item--sub a {
    padding: 24px 0;
    padding: 1.5rem 0;
  }

  .p-newsList__item,
  .p-newsList__item a {
    font-size: max(14.6px, 14px);
    font-size: max(.9125rem, 14px);
  }

  .p-newsList__itemCategory {
    min-width: 150px;
    min-width: 9.375rem;
    font-size: max(14.6px, 12px);
    font-size: max(.9125rem, 12px);
  }

  .p-newsList__head {
    gap: 30px;
    gap: 1.875rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 280px;
    width: 17.5rem;
  }

  .p-newsList__itemDate {
    font-size: max(14.6px, 12px);
    font-size: max(.9125rem, 12px);
  }

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

  .p-occupation__contents {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 50px;
    margin-top: 3.125rem;
    width: 95%;
  }

  .p-occupation__contentHead {
    font-size: 23px;
    font-size: 1.4375rem;
  }

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

  .p-occupation__item {
    gap: 62px;
    gap: 3.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 14px;
    padding-bottom: .875rem;
  }

  .p-occupation__item:not(:first-child) {
    padding-top: 14px;
    padding-top: .875rem;
  }

  .p-occupation__term {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 180px;
    width: 11.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-occupation__description {
    margin-top: 0;
    font-size: 15px;
  }

  .p-overview {
    position: relative;
  }

  .p-overview__info {
    gap: 15px;
    gap: .9375rem;
    margin-top: 49px;
    margin-top: 3.0625rem;
  }

  .p-overview__container {
    gap: 78px;
    gap: 4.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding-bottom: 105px;
    padding-bottom: 6.5625rem;
  }

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

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

  .p-overview__map {
    aspect-ratio: 654/483;
    position: absolute;
    top: 120px;
    top: 7.5rem;
    right: 0;
    margin-top: 0;
    width: 50%;
    max-width: 654px;
    max-width: 40.875rem;
  }

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

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

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

  .p-pageAbout__name {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .p-pageAction__challenge {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .p-pageAction__problem {
    margin-top: 62px;
    margin-top: 3.875rem;
    padding: 103px 0 76px;
    padding: 6.4375rem 0 4.75rem;
  }

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

  .p-pageAction__last {
    margin-top: 48px;
    margin-top: 3rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  .p-pageAction__slide {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

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

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

  .p-pageApproach__first {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

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

  .p-pageApproach__second {
    margin-top: 89.5px;
    margin-top: 5.59375rem;
    padding: 115px 0 74px;
    padding: 7.1875rem 0 4.625rem;
  }

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

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

  .p-pageApproach__third {
    padding: 86px 0;
    padding: 5.375rem 0;
  }

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

  .p-pageApproach__forth {
    padding: 86px 0;
    padding: 5.375rem 0;
  }

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

  .p-pageApproach__linksInner.l-inner {
    max-width: 1150px;
    max-width: 71.875rem;
  }

  .p-pageCompany__overview {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-pageCompany__history {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-pageCompany__investor {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-pageCompany__slide {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-pageCompany__boardMember {
    margin-top: 84px;
    margin-top: 5.25rem;
    padding: 106px 0;
    padding: 6.625rem 0;
  }

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

  .p-pageCompany__supporter {
    margin-top: 84px;
    margin-top: 5.25rem;
    padding: 70px 0;
    padding: 4.375rem 0;
  }

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

  .p-pageNews {
    padding-bottom: 84px;
    padding-bottom: 5.25rem;
  }

  .p-pageNews__article {
    margin-inline: auto;
    margin-top: 58px;
    margin-top: 3.625rem;
    width: 74.1%;
  }

  .p-pageNews__sns {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-left: -20px;
    margin-left: -1.25rem;
  }

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

  .p-pageNews__list {
    margin-top: 55px;
    margin-top: 3.4375rem;
    margin-left: -20px;
    margin-left: -1.25rem;
  }

  .p-pagePickUp {
    padding-bottom: 84px;
    padding-bottom: 5.25rem;
  }

  .p-pagePickUp__article {
    margin-inline: auto;
    margin-top: 80px;
    margin-top: 5rem;
    max-width: 980px;
    max-width: 61.25rem;
  }

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

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

  .p-pageRecruit__work {
    padding: 76px 0 0;
    padding: 4.75rem 0 0;
  }

  .p-pageRecruit__recruiter {
    margin-top: 67px;
    margin-top: 4.1875rem;
  }

  .p-pageRecruit__culture {
    margin-top: 160px;
    margin-top: 10rem;
    padding: 70px 0 100px;
    padding: 4.375rem 0 6.25rem;
    overflow-x: clip;
  }

  .p-pageRecruit__slide {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-pageRecruit__links {
    margin-top: 108px;
    margin-top: 6.75rem;
  }

  .p-pageReport__title {
    margin-left: 42px;
    margin-left: 2.625rem;
  }

  .p-pageReport__head {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: 42px;
    margin-left: 2.625rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

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

  .p-pageReport__links {
    margin: 122px 0;
    margin: 7.625rem 0;
  }

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

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

  .p-pageService__first {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

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

  .p-pageService__firstTopic {
    margin-top: 10px;
    margin-top: .625rem;
    padding: 16.6px 0;
    padding: 1.0375rem 0;
    font-size: 25px;
    font-size: 1.5625rem;
  }

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

  .p-pageService__app {
    margin-top: 142px;
    margin-top: 8.875rem;
  }

  .p-pageService__borading {
    margin-top: 112px;
    margin-top: 7rem;
  }

  .p-pageService__dashboard {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .p-pageService__engagement {
    margin-top: 95px;
    margin-top: 5.9375rem;
  }

  .p-pageService__career {
    margin-top: 122px;
    margin-top: 7.625rem;
  }

  .p-pageService__links {
    margin: 122px 0;
    margin: 7.625rem 0;
  }

  .p-pickup__inner {
    max-width: 1040px;
    max-width: 65rem;
  }

  .p-pickup__container {
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-pickup__title {
    grid-area: 1/1/2/2;
  }

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

  .p-pickup__btn a {
    margin: 0;
  }

  .p-pickupCard {
    gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }

  .p-pickupCard:hover img {
    scale: 1.1;
  }

  .p-pickupCard__category {
    padding: 4px 15px;
    padding: 4px .9375rem;
    font-size: 14.6px;
  }

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

  .p-pickupCard__date {
    font-size: 14px;
  }

  .p-pickupList {
    gap: 45px 37px;
    gap: 2.8125rem 2.3125rem;
    grid-area: 2/1/3/3;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .p-pickupList__item {
    gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }

  .p-principles {
    gap: 48px 0;
    gap: 3rem 0;
  }

  .p-principles.p-principles--grid {
    gap: 30px 10px;
    gap: 1.875rem .625rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-principles__item {
    gap: 5px 19.3px;
    gap: .3125rem 1.20625rem;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }

  .p-principles__number {
    min-width: 38px;
    min-width: 2.375rem;
    font-size: 26px;
    font-size: 1.625rem;
  }

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

  .p-principles__description {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: max(15.6px, 14px);
    font-size: max(.975rem, 14px);
  }

  .p-problem {
    background-size: 100% 45rem;
  }

  .p-problem__topImg {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 97%;
    max-width: 100%;
  }

  .p-problem__contents {
    margin-top: 340px;
    margin-top: 21.25rem;
  }

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

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

  .p-problem__contentsDecolatoin {
    margin-top: 48px;
    margin-top: 3rem;
    max-width: 24px;
    max-width: 1.5rem;
  }

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

  .p-problem__centerImg {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 63%;
  }

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

  .p-problem__vision {
    margin-top: 158px;
    margin-top: 9.875rem;
  }

  .p-problem__vision::after {
    width: 1677px;
    width: 104.8125rem;
    height: 1677px;
    height: 104.8125rem;
  }

  .p-problem__visionImg {
    width: 78%;
  }

  .p-profile {
    gap: 58.3px 40px;
    gap: 3.64375rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-profile__img.p-profile__img--min {
    aspect-ratio: 1/1;
  }

  .p-profile__name {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-profile__description {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 17px;
  }

  .p-profileHeader {
    gap: 50px;
    gap: 3.125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-profileHeader.p-profileHeader--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-profileHeader__image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 303px;
    width: 18.9375rem;
  }

  .p-profileHeader__image.p-profileHeader__image--min {
    width: 270px;
    width: 16.875rem;
  }

  .p-profileHeader__name {
    margin-top: 0;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-profileHeader__name.p-profileHeader__name--min {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-profileHeader__description {
    margin-top: 35.6px;
    margin-top: 2.225rem;
    font-size: 20px;
  }

  .p-recruit__container {
    border-radius: 3.4551875rem;
    padding: 60px 0 110px;
    padding: 3.75rem 0 6.875rem;
  }

  .p-recruit__mainMessage {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .p-recruit__subMessage {
    font-size: 23.8px;
    font-size: 1.4875rem;
  }

  .p-recruit__imgs {
    gap: 25px;
    gap: 1.5625rem;
  }

  .p-recruit__row {
    gap: 25px;
    gap: 1.5625rem;
  }

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

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

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

  .p-recruiterList {
    gap: 29.4px 27.8px;
    gap: 1.8375rem 1.7375rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .p-recruiterList__item:hover .p-recruiterList__img img {
    scale: 1.1;
  }

  .p-recruitHead {
    margin-top: 63px;
    margin-top: 3.9375rem;
  }

  .p-recruitHead__fv img {
    -o-object-fit: contain;
    object-fit: contain;
  }

  .p-recruitHead__fv {
    aspect-ratio: 2881/1284;
    margin-inline: auto;
    max-width: 2000px;
    max-width: 125rem;
  }

  .p-recruitHead__title {
    margin-top: 77px;
    margin-top: 4.8125rem;
  }

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

  .p-recruitHead__title-sub {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .p-recruitHead__text {
    margin-inline: auto;
    margin-top: 53px;
    margin-top: 3.3125rem;
    max-width: 710px;
    max-width: 44.375rem;
    max-width: 710px;
    max-width: 44.375rem;
  }

  .p-recruitmentOptions {
    right: 0;
    bottom: 10%;
    grid-template-columns: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-recruitmentOptions__item {
    padding: 18px 40px 18px 40px;
    padding: 1.125rem 2.5rem 1.125rem 2.5rem;
    min-width: 224px;
    min-width: 14rem;
    text-align: right;
  }

  .p-recruitmentOptions__item:hover .p-recruitmentOptions__icon {
    -webkit-transform: translateX(.3125rem);
    transform: translateX(.3125rem);
  }

  .p-recruitmentOptions__texts {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 16px;
  }

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

  .p-recruitMission__message {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 44px;
    font-size: 2.75rem;
  }

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

  .p-recruitMission__img {
    margin-top: 98px;
    margin-top: 6.125rem;
    width: 93%;
  }

  .p-recruitWork__movies {
    gap: 24px;
    gap: 1.5rem;
    margin-top: 78px;
    margin-top: 4.875rem;
    max-width: 880px;
    max-width: 55rem;
  }

  .p-recruitWork__movie:nth-child(odd) .p-recruitWork__movieTitle {
    right: 3%;
    text-align: right;
  }

  .p-recruitWork__movie:nth-child(even) .p-recruitWork__movieTitle {
    left: 3%;
    text-align: left;
  }

  .p-recruitWork__movie img {
    -o-object-fit: contain;
    object-fit: contain;
  }

  .p-recruitWork__movie {
    aspect-ratio: 880/160;
  }

  .p-recruitWork__movie:hover img {
    scale: 1.1;
  }

  .p-recruitWork__movieTitle,
  .p-recruitWork__movieMessage {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-recruitWork__movieTitle {
    font-size: max(25px, 22px);
    font-size: max(1.5625rem, 22px);
  }

  .p-recruitWork__movieMessage {
    bottom: initial;
    font-size: 32px;
    font-size: 2rem;
  }

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

  .p-recruitWork__img {
    margin-top: 92px;
    margin-top: 5.75rem;
  }

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

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

  .p-serviceSection__title {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    font-size: 41px;
    font-size: 2.5625rem;
  }

  .p-serviceSection__title img {
    max-width: 239px;
    max-width: 14.9375rem;
  }

  .p-serviceSection__contents {
    margin-top: 56.5px;
    margin-top: 3.53125rem;
  }

  .p-serviceSection__contents.p-serviceSection__contents--app {
    gap: 0 60px;
    gap: 0 3.75rem;
    grid-template-columns: 1.5fr 1.2fr;
  }

  .p-serviceSection__contents.p-serviceSection__contents--app .p-serviceSection__img {
    margin-top: 0;
  }

  .p-serviceSection__contentBody {
    display: grid;
  }

  .p-serviceSection__contents.p-serviceSection__contents--flex {
    gap: 57px;
    gap: 3.5625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-serviceSection__contents.p-serviceSection__contents--border {
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
  }

  .p-serviceSection__left {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 560px;
    width: 35rem;
  }

  .p-serviceSection__head {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-serviceSection__img.p-serviceSection__img--borading {
    margin-top: -30px;
    margin-top: -1.875rem;
    margin-left: 50px;
    margin-left: 3.125rem;
    max-width: 272px;
    max-width: 17rem;
  }

  .p-serviceSection__text {
    grid-area: 2/1/3/2;
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 15px;
    line-height: 1.9;
  }

  .p-serviceSection__list {
    font-size: 15px;
    line-height: 2.3;
  }

  .p-serviceSection__item::before {
    font-size: 15px;
  }

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

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

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

  .p-serviceSection__box {
    gap: 40px 40px;
    gap: 2.5rem 2.5rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-serviceSection__detailHeadEn {
    font-size: max(18px, 15px);
    font-size: max(1.125rem, 15px);
    line-height: 2.3;
  }

  .p-serviceSection__detailHeadJa {
    font-size: 14px;
    line-height: 2.7;
  }

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

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

  .p-serviceSection__img.p-serviceSection__img--engagement02 {
    margin-inline: auto;
    margin-top: -20px;
    margin-top: -1.25rem;
    width: 90%;
  }

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

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

  .p-subFv {
    padding: 160px 0 110px;
    padding: 10rem 0 6.875rem;
  }

  .p-subFv.p-subFv--sub {
    padding: 160px 0 110px;
    padding: 10rem 0 6.875rem;
  }

  .p-subMenu {
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .p-subMenu.subMenu--news {
    padding: 10px;
    padding: .625rem;
  }

  .p-subMenu__item::before {
    bottom: 12px;
    bottom: .75rem;
  }

  .p-subMenu__item:first-child {
    grid-area: initial;
  }

  .p-subMenu__item:nth-child(2) {
    grid-area: initial;
  }

  .p-subMenu__item:nth-child(3)::after {
    opacity: 0;
  }

  .p-subMenu__item:nth-child(3) {
    grid-area: initial;
  }

  .p-subMenu__item:not(:last-child)::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #004668;
    width: 1px;
    height: 50%;
    content: '';
  }

  .p-subMenu__link {
    padding: 7px 0 28px;
    padding: .4375rem 0 1.75rem;
  }

  .p-subMenu__link:hover {
    background-color: rgba(0, 70, 104, .1);
  }

  .p-subMenu__item.subMenu__item--news::before {
    bottom: 18px;
    bottom: 1.125rem;
  }

  .p-subMenu__link.subMenu__link--news {
    padding: 10px 0 33px;
    padding: .625rem 0 2.0625rem;
  }

  .p-subMenuContainer {
    margin-top: -43px;
    margin-top: -2.6875rem;
    max-width: 1051px;
    max-width: 65.6875rem;
  }

  .p-subMenuContainer.p-subMenuContainer--news {
    margin-top: -43px;
    margin-top: -2.6875rem;
  }

  .p-supporter__profile {
    gap: 97px;
    gap: 6.0625rem;
    margin-top: 69px;
    margin-top: 4.3125rem;
  }

  .p-supporter__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-term {
    margin-bottom: 140px;
    margin-bottom: 8.75rem;
  }

  .p-term__content h2 {
    margin: 43px 0;
    margin: 2.6875rem 0;
    padding: 19px 0;
    padding: 1.1875rem 0;
    font-size: 26px;
    line-height: 1.3527575442;
  }

  .p-term__content h3 {
    margin-top: 35px;
    margin-top: 2.1875rem;
    font-size: 18.5px;
    line-height: 2.0540540541;
  }

  .p-term__content h4 {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }

  .p-term__content p, .p-term__content a, .p-term__content ul li, .p-term__content ol li, .p-term__content h4 {
    font-size: 18.5px;
  }

  .p-term__content p {
    font-size: 18.5px;
  }

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

  .p-term__content ul li {
    padding-left: 24px;
    padding-left: 1.5rem;
    text-indent: -14px;
  }

  .p-term__content ol li {
    padding-left: 24px;
    padding-left: 1.5rem;
    text-indent: -14px;
  }

  .p-term__content .p-term__securityOrderList {
    text-indent: -21px;
  }

  .p-term__content table th, .p-term__content table td {
    padding: 0 20px;
    padding: 0 1.25rem;
    min-width: inherit;
    font-size: 18.5px;
  }

  .p-term__pdf {
    font-size: 23px;
  }

  .p-textBox {
    gap: 46px;
    gap: 2.875rem;
  }

  .p-textBox__title {
    font-size: max(30px, 20px);
    font-size: max(1.875rem, 20px);
    line-height: 2.25;
  }

  .p-textBox__text {
    font-size: max(20px, 16px);
    font-size: max(1.25rem, 16px);
    line-height: 2.25;
  }

  .p-textBox__text.p-textBox__text {
    line-height: 2.5;
  }

  .p-textBox__message {
    font-size: max(20px, 16px);
    font-size: max(1.25rem, 16px);
    line-height: 2.25;
  }

  .p-vision__inner.l-inner {
    max-width: 1080px;
    max-width: 67.5rem;
  }

  .p-vision__container {
    padding-bottom: 73px;
    padding-bottom: 4.5625rem;
  }

  .p-vision__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-vision__title {
    min-width: 220px;
    min-width: 13.75rem;
  }

  .p-vision__message {
    margin-top: -10px;
    margin-top: -.625rem;
    font-size: 38.81px;
    font-size: 2.425625rem;
    line-height: 1.8;
    white-space: nowrap;
  }

  .u-onlyPc {
    display: block;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

  .p-accordionList {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(9, 1fr);
  }

  .p-culture__builder::before {
    left: -10%;
    width: 120%;
  }

  .p-footer__menu {
    gap: 23px;
    gap: 1.4375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-fv__img {
    height: calc(100vh - 18.75rem);
    max-height: 800px;
    max-height: 50rem;
  }

  .p-header {
    width: 1110px;
    width: 69.375rem;
    max-width: 100%;
  }

  .p-header__inner {
    padding: 0 16.8px 0 50.9px;
    padding: 0 1.05rem 0 3.18125rem;
  }

  .p-header__nav-item.p-header__nav-item--contact {
    margin-left: 15px;
    margin-left: .9375rem;
  }

  .p-header__nav-item > a,
  .p-header__nav-modal-wrap > p,
  .p-header__nav-modal-wrap > a {
    padding: 0 25px;
    padding: 0 1.5625rem;
  }

  .p-header__nav-modal-wrap > p::after,
  .p-header__nav-modal-arrow::after {
    right: 6px;
    right: .375rem;
  }

  .p-overview__info {
    gap: 22px;
    gap: 1.375rem;
    padding-left: 13px;
    padding-left: .8125rem;
    max-width: 565px;
    max-width: 35.3125rem;
  }

  .p-overview__infoItem {
    gap: 14px;
    gap: .875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-overview__infoTerm {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 65px;
    width: 4.0625rem;
  }

  .p-overview__map {
    width: 43%;
  }

  .p-principles.p-principles--grid {
    gap: 50px 10px;
    gap: 3.125rem .625rem;
  }

  .p-principles__item {
    grid-row: initial;
    grid-template-rows: initial;
  }

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

  .p-problem__vision::after {
    bottom: -650px;
    bottom: -40.625rem;
  }

  .p-profile {
    gap: 58.3px 76.4px;
    gap: 3.64375rem 4.775rem;
  }

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

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

@media (min-width: 1600px) {

  .p-overview__map {
    right: calc(50% - 42vw);
  }
}

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

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}



/* 20251225追記（AI用バナー） */
.p-bnr-hataluckai{
  margin: 3rem auto 3rem;
  
}
@media screen and (max-width: 767px) {
.p-bnr-hataluckai{
  padding: 0;
  max-width: 100%;
}
}
.p-bnr-hataluckai a {
  display: block;
  max-width: 1075px;
  max-width: 67.1875rem;
  margin: 0 auto;
  padding: 0 25px;
  transition: all .25s ease-out;
  &:hover {
    opacity: .75;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr-hataluckai a {
    width: 90%;
    max-width: 600px;
    padding: 0;
  }
}