@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: #222;
  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;
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

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

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

cite {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 1;
  }

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

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #222;
}

/************************************************************************
* 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;
  background-color: #E7EFFA;
  min-height: 100vh;
  min-height: 100dvh;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

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

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

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

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

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: #222;
  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 #1654AB;
  border-bottom: .25em solid #1654AB;
  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: 80px;
}

/************************************************************************
* 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: #1654AB;
}

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

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

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

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

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

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-inline-size: 620px;
  max-inline-size: 38.75rem;
}

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

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

.l-header.is-fixed {
  top: 0;
}

.l-header.is-fixed .p-header::before {
  opacity: .8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#758f9e), to(rgba(117, 143, 158, .5)));
  background-image: linear-gradient(180deg, #758f9e 0%, rgba(117, 143, 158, .5) 100%);
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #1654AB;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

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

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #1654AB;
  background-color: #1654AB;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

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

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(16.1865284974, 61.8031088083, 125.8134715026);
  background-color: #1654AB;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #1654AB;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #1654AB;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #1654AB;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-card {
  background-color: #fff;
  block-size: 100%;
}

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

.c-card__img img {
  aspect-ratio: 292/220;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-card__body {
  padding-block: 30px 20px;
  padding-block: 1.875rem 1.25rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  row-gap: 20px;
  row-gap: 1.25rem;
  display: grid;
}

.c-card__title {
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
}

.c-card__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-card__title br {
  display: none;
}

.c-card2 {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  background-color: #fff;
}

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

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

.c-card2__body {
  row-gap: 20px;
  row-gap: 1.25rem;
  display: grid;
  grid-template-rows: -webkit-max-content auto;
  grid-template-rows: max-content auto;
  padding: 20px;
  padding: 1.25rem;
}

.c-card2__title {
  display: inline flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  text-align: center;
}

.c-card2__main {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-start: -21px;
  -webkit-margin-start: -1.3125rem;
  margin-inline-start: -21px;
  margin-inline-start: -1.3125rem;
  -webkit-margin-after: 9px;
  -webkit-margin-after: .5625rem;
  margin-block-end: 9px;
  margin-block-end: .5625rem;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.c-card2__sub {
  opacity: .1;
  color: #1863CC;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: capitalize;
}

.c-card2__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-card3 {
  display: block flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .7);
}

.c-card3::before {
  inset: 0;
  position: absolute;
  opacity: .7;
  z-index: -1;
  background-color: #fff;
  content: '';
}

.c-card3__img {
  display: none;
  position: relative;
  inline-size: 0;
}

.c-card3__img::before {
  inset: 0;
  inset-inline-start: 0;
  display: block flow;
  display: none;
  position: absolute;
  z-index: 0;
  mix-blend-mode: screen;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(5%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 100%);
  inline-size: 300px;
  inline-size: 18.75rem;
  block-size: 100%;
  content: '';
}

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

.c-card3__body {
  padding-block: 42px;
  padding-block: 2.625rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  display: grid;
}

.c-card3__title {
  display: block grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1654AB;
  text-align: center;
}

.c-card3__main {
  display: inline flex;
  grid-column: 2;
  grid-row: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  opacity: .7;
  -webkit-margin-before: 8px;
  -webkit-margin-before: .5rem;
  margin-block-start: 8px;
  margin-block-start: .5rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.c-card3__sub {
  grid-column: 1/1;
  grid-row: 1;
  opacity: .7;
  -webkit-margin-end: 10px;
  -webkit-margin-end: .625rem;
  margin-inline-end: 10px;
  margin-inline-end: .625rem;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: normal;
  text-transform: capitalize;
}

.c-card3__sub[data-hover=open] {
  -webkit-margin-end: 10px;
  -webkit-margin-end: .625rem;
  margin-inline-end: 10px;
  margin-inline-end: .625rem;
  font-size: 23px;
  font-size: 1.4375rem;
}

.c-card3__sub[data-hover=close] {
  display: none;
}

.c-category {
  padding-inline: 5px;
  padding-inline: .3125rem;
  display: inline flow-root;
  background-color: #1654AB;
  min-inline-size: 72px;
  min-inline-size: 4.5rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  line-height: 1.9090909091;
  text-align: center;
}

.c-commonButton {
  padding-inline: 10px;
  padding-inline: .625rem;
  padding-block: 13px 13px;
  padding-block: .8125rem .8125rem;
  display: block flow;
  -webkit-transition: color .4s, background-color .4s;
  transition: color .4s, background-color .4s;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 1.875rem;
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.1764705882;
  text-align: center;
}

.c-commonButton[data-bg=gradation] {
  padding-block: 15px 15px;
  padding-block: .9375rem .9375rem;
  position: relative;
  z-index: 1;
  -webkit-transition: background-color .4s;
  transition: background-color .4s;
  border: transparent;
  background: transparent;
}

.c-commonButton[data-bg=gradation]::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(199, 55, 132)), to(rgb(54, 119, 211)));
  background: linear-gradient(90deg, rgb(199, 55, 132) 0%, rgb(54, 119, 211) 100%);
  inline-size: 100%;
  block-size: 100%;
  overflow: hidden;
  content: '';
}

.c-commonButton[data-bg=gradation]::after {
  inset: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(54, 119, 211)), to(rgb(199, 55, 132)));
  background: linear-gradient(90deg, rgb(54, 119, 211) 0%, rgb(199, 55, 132) 100%);
  inline-size: 100%;
  block-size: 100%;
  overflow: hidden;
  content: '';
}

.c-commonButton:focus-visible {
  background-color: #fff;
  color: #1654AB;
}

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

.c-commonButton[data-bg=gradation]:focus-visible::before {
  z-index: -2;
}

.c-commonButton[data-bg=gradation]:focus-visible::after {
  opacity: 1;
}

.c-commonButton2 {
  padding-inline: 10px;
  padding-inline: .625rem;
  padding-block: 17px 18px;
  padding-block: 1.0625rem 1.125rem;
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  -webkit-transition: color .4s, background-color .4s;
  transition: color .4s, background-color .4s;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, .8);
  inline-size: 100%;
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.4;
  text-align: center;
}

.c-commonButton2::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  mask: url(../img/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  inline-size: 16px;
  inline-size: 1rem;
  block-size: 10px;
  block-size: .625rem;
  content: '';
}

.c-commonButton2:focus-visible {
  background-color: #1654AB;
  color: rgba(255, 255, 255, .8);
}

.c-commonButton2[data-bg=blue] {
  background-color: rgba(22, 84, 171, .8);
  color: #fff;
}

.c-commonButton2[data-bg=blue]:focus-visible {
  background-color: #fff;
  color: rgba(22, 84, 171, .8);
}

.c-commonList {
  -webkit-padding-start: 16px;
  -webkit-padding-start: 1rem;
  padding-inline-start: 16px;
  padding-inline-start: 1rem;
  list-style: revert;
  list-style-type: square;
}

.c-commonList li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-commonList li::marker {
  color: #1654AB;
  font-size: 13px;
  font-size: .8125rem;
}

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

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

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

.c-commonTable th {
  display: block;
  -webkit-padding-before: 15px;
  -webkit-padding-before: .9375rem;
  padding-block-start: 15px;
  padding-block-start: .9375rem;
  color: #1654AB;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
}

.c-commonTable td {
  padding-block: 5px 14px;
  padding-block: .3125rem .875rem;
  display: block;
  inline-size: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.c-commonTable tr:first-child th {
  -webkit-padding-before: 0;
  padding-block-start: 0;
}

.c-commonTable tr {
  border-bottom: 1px solid #E7EFFA;
}

.c-commonTable tr:last-child {
  border-bottom: transparent;
}

.c-commonText {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

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

.c-contentsBox {
  padding-block: 36px;
  padding-block: 2.25rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  border: 2px solid #1654AB;
  background-color: rgba(22, 84, 171, .8);
  -webkit-padding-after: 58px;
  -webkit-padding-after: 3.625rem;
  padding-block-end: 58px;
  padding-block-end: 3.625rem;
  color: #fff;
  text-align: center;
}

.c-contentsBox__title {
  font-family: 'BIZ UDPMincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
}

.c-contentsBox__block {
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
}

.c-contentsBox__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.74;
}

.c-contentsBox__text .pc_only {
  display: none;
}

.c-infoBox {
  padding-block: 20px 13px;
  padding-block: 1.25rem .8125rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  background-color: rgba(255, 255, 255, .1);
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  text-align: center;
}

.c-infoBox__text {
  display: block flow;
  border-bottom: 1px solid #fff;
  -webkit-padding-after: 9px;
  -webkit-padding-after: .5625rem;
  padding-block-end: 9px;
  padding-block-end: .5625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8666666667;
}

.c-infoBox__text:last-child {
  padding-block: 9px 0;
  padding-block: .5625rem 0;
  position: relative;
  border-bottom: transparent;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.c-largeTitle {
  color: rgba(255, 255, 255, .6);
  font-family: 'BIZ UDPMincho', serif;
  font-size: 110px;
  font-size: 6.875rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
}

.c-pin {
  display: block flow;
  position: relative;
}

.c-pin::before {
  inset-block-end: -20px;
  inset-block-end: -1.25rem;
  inset-inline: 50%;
  translate: -50%;
  position: absolute;
  background-color: #1654AB;
  inline-size: 1px;
  block-size: 20px;
  block-size: 1.25rem;
  content: '';
}

.c-pin::after {
  inset-block-end: -60px;
  inset-block-end: -3.75rem;
  inset-inline: 50%;
  translate: -50%;
  position: absolute;
  background-color: #fff;
  inline-size: 1px;
  block-size: 40px;
  block-size: 2.5rem;
  content: '';
}

.c-pin__circle {
  aspect-ratio: 1;
  display: inline flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: circlemovecommon 1.6s ease-in-out infinite, cirlemovehidecommon 1.6s ease-out infinite, circlecolor 1.6s ease-out infinite;
  animation: circlemovecommon 1.6s ease-in-out infinite, cirlemovehidecommon 1.6s ease-out infinite, circlecolor 1.6s ease-out infinite;
  border: 1px solid #1654AB;
  border-radius: 50%;
  inline-size: 21px;
  inline-size: 1.3125rem;
}

.c-pin__circle::before {
  aspect-ratio: 1;
  -webkit-animation: innercolor 1.6s ease-in-out infinite;
  animation: innerColor 1.6s ease-in-out infinite;
  border-radius: 50%;
  background-color: #1654AB;
  inline-size: 10px;
  inline-size: .625rem;
  content: '';
}

.c-pin[data-animation=white] .c-pin__circle {
  -webkit-animation: circlemovecommon 1.6s ease-in-out infinite, cirlemovehidecommon 1.6s ease-out infinite, circlecolorwhite 1.6s ease-out infinite;
  animation: circlemovecommon 1.6s ease-in-out infinite, cirlemovehidecommon 1.6s ease-out infinite, circlecolorWhite 1.6s ease-out infinite;
}

.c-pin[data-animation=white] .c-pin__circle::before {
  -webkit-animation: innercolorwhite 1.6s ease-in-out infinite;
  animation: innerColorWhite 1.6s ease-in-out infinite;
}

@-webkit-keyframes circlecolor {

  0% {
    border-color: #1654AB;
  }

  100% {
    border-color: #fff;
  }
}

@keyframes circlecolor {

  0% {
    border-color: #1654AB;
  }

  100% {
    border-color: #fff;
  }
}
@-webkit-keyframes innerColor {

  0% {
    background-color: #1654AB;
  }

  100% {
    background-color: #fff;
  }
}
@keyframes innerColor {

  0% {
    background-color: #1654AB;
  }

  100% {
    background-color: #fff;
  }
}
@-webkit-keyframes circlecolorWhite {

  0% {
    border-color: #fff;
  }

  100% {
    border-color: #1654AB;
  }
}
@keyframes circlecolorWhite {

  0% {
    border-color: #fff;
  }

  100% {
    border-color: #1654AB;
  }
}
@-webkit-keyframes innerColorWhite {

  0% {
    background-color: #fff;
  }

  100% {
    background-color: #1654AB;
  }
}
@keyframes innerColorWhite {

  0% {
    background-color: #fff;
  }

  100% {
    background-color: #1654AB;
  }
}
@-webkit-keyframes circlemovecommon {

  0% {
    top: 0;
  }

  100% {
    top: 70px;
    top: 4.375rem;
  }
}
@keyframes circlemovecommon {

  0% {
    top: 0;
  }

  100% {
    top: 70px;
    top: 4.375rem;
  }
}
@-webkit-keyframes cirlemovehidecommon {

  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehidecommon {

  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

.c-sectionTitle {
  row-gap: 5px;
  row-gap: .3125rem;
  display: block grid;
}

.c-sectionTitle__main {
  grid-row: 2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.2916666667;
}

.c-sectionTitle__sub {
  grid-row: 1;
  opacity: .25;
  color: #1863CC;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: capitalize;
}

.c-sectionTitle2 {
  row-gap: 5px;
  row-gap: .3125rem;
  display: block grid;
}

.c-sectionTitle2__main {
  grid-row: 2;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: normal;
}

.c-sectionTitle2__sub {
  grid-row: 1;
  opacity: .25;
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: capitalize;
}

.c-sectionTitle2[data-text-align=center] {
  text-align: center;
}

.c-sectionTitle2__main[data-color=black] {
  color: #222;
}

.c-sectionTitle2__sub[data-color=secondary] {
  color: #1863CC;
}

.c-sectionTitle2__sub[data-size=large] {
  font-size: 70px;
  font-size: 4.375rem;
}

.c-timeLine {
  row-gap: 15px;
  row-gap: .9375rem;
  display: block grid;
}

.c-timeLine__item {
  display: grid;
  grid-template: 'year dot detail' auto/auto -webkit-max-content 1fr;
  grid-template: 'year dot detail' auto/auto max-content 1fr;
}

.c-timeLine__year {
  display: inline flex;
  grid-area: year;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  min-inline-size: 111px;
  min-inline-size: 6.9375rem;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: right;
}

.c-timeLine__year::after {
  aspect-ratio: 1;
  display: inline flow-root;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 50%;
  background-color: #1654AB;
  inline-size: 11px;
  inline-size: .6875rem;
  content: '';
}

.c-timeLine__detail,
.c-timeLine__detailList {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.c-timeLine__detailList {
  -webkit-padding-start: 18px;
  -webkit-padding-start: 1.125rem;
  padding-inline-start: 18px;
  padding-inline-start: 1.125rem;
  list-style: revert;
}

ul.c-timeLine__detailList li::marker {
  font-size: 10px;
  font-size: .625rem;
}

.c-timeLine__detailBox {
  position: relative;
  grid-area: detail;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-bottom: 1px solid rgba(22, 84, 171, .2);
  -webkit-padding-start: 10px;
  -webkit-padding-start: .625rem;
  padding-inline-start: 10px;
  padding-inline-start: .625rem;
  -webkit-padding-before: .2em;
  padding-block-start: .2em;
  -webkit-padding-after: 14px;
  -webkit-padding-after: .875rem;
  padding-block-end: 14px;
  padding-block-end: .875rem;
}

.c-timeLine__detailBox::before {
  inset-inline-start: -6.6px;
  inset-inline-start: -.4125rem;
  inset-block-start: 0;
  translate: 0 26px;
  translate: 0 1.625rem;
  position: absolute;
  z-index: -1;
  background-image: repeating-linear-gradient(180deg, rgba(22, 84, 171, .4), rgba(22, 84, 171, .4) 2px, transparent 2px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
  inline-size: 2px;
  inline-size: .125rem;
  block-size: 99%;
  content: '';
}

.c-timeLine__item:last-child .c-timeLine__detailBox::before {
  display: none;
}

.c-timeLine__detailList {
  -webkit-margin-before: 10px;
  -webkit-margin-before: .625rem;
  margin-block-start: 10px;
  margin-block-start: .625rem;
}

.c-timeLine__detailBox .pc-only {
  display: none;
}

.c-title {
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
}

.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;
  border-radius: 50%;
  background-color: #E7EFFA;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}

.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 #1654AB;
  border-right: 3px solid #1654AB;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

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

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

.c-totop:focus-visible {
  background-color: #1654AB;
}

.c-totop:focus-visible::before {
  border-color: #E7EFFA;
}

.p-about {
  padding-block: 165px 100px;
  padding-block: 10.3125rem 6.25rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.p-about::before {
  inset: 0;
  aspect-ratio: 390/180;
  position: absolute;
  z-index: -1;
  background-color: rgb(231, 239, 250);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-about {
  position: relative;
}

.p-about::after {
  aspect-ratio: 390/180;
  inset-inline-end: -40px;
  inset-inline-end: -2.5rem;
  inset-block-start: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
  background: url(../img/vision_bg.jpeg) no-repeat bottom/cover;
  inline-size: 100%;
  block-size: auto;
  content: '';
}

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

.p-about__text {
  -webkit-margin-before: 19px;
  -webkit-margin-before: 1.1875rem;
  margin-block-start: 19px;
  margin-block-start: 1.1875rem;
}

.p-about__buttonWrap {
  margin-inline: auto;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  inline-size: 100%;
  max-inline-size: 300px;
  max-inline-size: 18.75rem;
}

.p-access {
  padding-block: 50px 60px;
  padding-block: 3.125rem 3.75rem;
  position: relative;
  z-index: 0;
}

.p-access::before {
  inset: 0;
  position: absolute;
  background-color: rgba(22, 84, 171, .95);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-access__pin {
  inset-inline-start: 50%;
  inset-block-start: -43px;
  inset-block-start: -2.6875rem;
  translate: -50%;
  position: absolute;
  z-index: 1;
}

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

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

.p-access__img img {
  aspect-ratio: 390/1006;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-access__contents {
  position: relative;
}

.p-access__textBox {
  row-gap: 20px;
  row-gap: 1.25rem;
  display: grid;
  -webkit-margin-before: 30px;
  -webkit-margin-before: 1.875rem;
  margin-block-start: 30px;
  margin-block-start: 1.875rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-access__text {
  font-weight: 400;
  line-height: normal;
}

.p-access__text br {
  display: block;
}

.p-access__text[data-size=large] {
  font-family: 'BIZ UDPMincho', serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}

.p-access__text[data-size=small] {
  font-family: 'BIZ UDPMincho', serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

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

.p-access__map iframe {
  aspect-ratio: 1;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-access__infoArea {
  row-gap: 10px;
  row-gap: .625rem;
  display: grid;
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
}

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

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

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

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

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

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

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

.p-article__body h2 {
  background-color: #222;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

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

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

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

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

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

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

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

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

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

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

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

.p-article__body * + * {
  margin-top: 25px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-page-numbers.current {
  background-color: #1654AB;
  color: #fff;
}

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

.p-business {
  padding-block: 100px 100px;
  padding-block: 6.25rem 6.25rem;
  position: relative;
  z-index: 0;
}

.p-business::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  background-color: rgba(34, 34, 34, .2);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-business__layer {
  inset: 0;
  position: absolute;
}

.p-business__layer::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
  background-color: rgba(255, 255, 255, .25);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-business {
  position: relative;
}

.p-business::after {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: hue;
  background: url(../img/business_bg.jpeg) no-repeat center center/cover;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

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

.p-business__contents {
  position: relative;
  z-index: 0;
}

.p-business__text {
  -webkit-margin-before: 24px;
  -webkit-margin-before: 1.5rem;
  margin-block-start: 24px;
  margin-block-start: 1.5rem;
}

.p-business__buttonWrap {
  margin-inline: auto;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  inline-size: 100%;
  max-inline-size: 300px;
  max-inline-size: 18.75rem;
}

.p-cards {
  row-gap: 10px;
  row-gap: .625rem;
  display: block grid;
}

.p-company {
  padding-block: 100px;
  padding-block: 6.25rem;
  position: relative;
  z-index: 0;
}

.p-company::before {
  inset: 0;
  position: absolute;
  z-index: -2;
  background-color: #fff;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

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

.p-company__bgImg {
  inset: 0;
  position: absolute;
  opacity: .1;
  z-index: -1;
  inline-size: 100%;
  block-size: 100%;
}

.p-company__bgImg img {
  aspect-ratio: 390/956;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-company__bgImg::after {
  inset: 0;
  position: absolute;
  z-index: 1;
  mix-blend-mode: color;
  background-color: rgb(24, 99, 204);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-company__contents {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: block grid;
  position: relative;
}

.p-company__textBox {
  -webkit-margin-before: 23px;
  -webkit-margin-before: 1.4375rem;
  margin-block-start: 23px;
  margin-block-start: 1.4375rem;
}

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

.p-company__buttonWrap {
  margin-inline: auto;
  -webkit-margin-before: 40px;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 40px;
  margin-block-start: 2.5rem;
  max-inline-size: 300px;
  max-inline-size: 18.75rem;
}

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

.p-company__img img {
  aspect-ratio: 1;
  display: block flow;
  border-radius: 50%;
  inline-size: inherit;
  block-size: inherit;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-development {
  padding-block: 100px;
  padding-block: 6.25rem;
  position: relative;
  background-color: #fff;
}

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

.p-development__contents {
  display: grid;
  grid-template: 'img' '.' 1.875rem 'title' '.' 1.875rem 'text'/auto auto 1fr;
}

.p-development__title {
  grid-area: title;
}

.p-development__imgWrap {
  grid-area: img;
}

.p-development__imgWrap[data-col=grid] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem;
}

.p-development__img {
  inline-size: 100%;
}

.p-development__img img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-development__img:nth-child(1) img {
  aspect-ratio: 123/200;
}

.p-development__img:nth-child(2) img {
  aspect-ratio: 244/200;
}

.p-development__textBox {
  grid-area: text;
}

.p-development__titleHead {
  row-gap: 5px;
  row-gap: .3125rem;
}

.p-development__titleHead span {
  -webkit-margin-end: -1px;
  -webkit-margin-end: -.0625rem;
  margin-inline-end: -1px;
  margin-inline-end: -.0625rem;
  line-height: 1;
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  background-color: #1654AB;
  padding: 18px 10px;
  padding: 1.125rem .625rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

.p-drawer__icon.is-opened {
  background-color: #fff;
}

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

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

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

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

.is-opened .p-drawer__bar {
  background-color: #1654AB;
}

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

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-30deg);
  transform: translateY(-7px) rotate(-30deg);
  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: rgba(18, 70, 143, .9);
  padding-top: var(--header-height, 80px);
  padding-bottom: var(--header-height, 80px);
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: auto;
  color: #222;
  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-inline: 30px;
  padding-inline: 1.875rem;
  -webkit-margin-before: 80px;
  -webkit-margin-before: 5rem;
  margin-block-start: 80px;
  margin-block-start: 5rem;
  width: 100%;
}

.p-drawer__navList {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: grid;
}

.p-drawer__logo {
  display: inline flex;
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.2142857143;
}

.p-drawer__logo span {
  display: inline flow-root;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-padding-end: 5px;
  -webkit-padding-end: .3125rem;
  padding-inline-end: 5px;
  padding-inline-end: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.2142857143;
}

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

.p-drawer__navList a {
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.2222222222;
}

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

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

.p-drawer__buttonArea {
  gap: 10px;
  gap: .625rem;
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-margin-before: 80px;
  -webkit-margin-before: 5rem;
  margin-block-start: 80px;
  margin-block-start: 5rem;
}

.p-estate {
  padding-block: 50px 100px;
  padding-block: 3.125rem 6.25rem;
}

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

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

.p-facility {
  padding-block: 100px;
  padding-block: 6.25rem;
  position: relative;
}

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

.p-facility__contents {
  display: grid;
  grid-template: 'img' '.' 1.875rem 'title' '.' 1.875rem 'text'/auto auto 1fr;
}

.p-facility__title {
  grid-area: title;
}

.p-facility__imgWrap {
  grid-area: img;
}

.p-facility__imgWrap[data-col=grid] {
  display: grid;
  grid-template-columns: 2fr 1fr;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem;
}

.p-facility__img {
  inline-size: 100%;
}

.p-facility__img img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-facility__img:nth-child(1) img {
  aspect-ratio: 244/200;
}

.p-facility__img:nth-child(2) img {
  aspect-ratio: 123/200;
}

.p-facility__textBox {
  grid-area: text;
}

.p-facility__titleHead {
  row-gap: 5px;
  row-gap: .3125rem;
}

.p-facility__titleHead span {
  line-height: 1;
}

.p-footer {
  padding-block: 60px 49px;
  padding-block: 3.75rem 3.0625rem;
  background-color: #222;
  color: #fff;
  text-align: center;
}

.p-footer__inner {
  padding-inline: 30px;
  padding-inline: 1.875rem;
}

.p-footer__contents {
  row-gap: 50px;
  row-gap: 3.125rem;
  display: grid;
}

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

.p-footer__logo {
  display: inline flex;
  justify-self: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.2058823529;
}

.p-footer__logo span {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.p-footer__policy {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-self: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.575;
}

.p-footer__policy::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-mask: url(../img/icon_arrow2.svg) no-repeat center/contain;
  mask: url(../img/icon_arrow2.svg) no-repeat center/contain;
  background-color: currentColor;
  inline-size: 12px;
  inline-size: .75rem;
  block-size: 10px;
  block-size: .625rem;
  content: '';
}

.p-footer__body {
  row-gap: 50px;
  row-gap: 3.125rem;
  display: grid;
}

.p-footer__buttonArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
}

.p-footer__copy small {
  display: block flow;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.9384615385;
  text-align: center;
}

:where(.p-footer__policy, .p-footer__logo):focus-visible {
  opacity: .4;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  padding-block: 190px 121px;
  padding-block: 11.875rem 7.5625rem;
  position: relative;
  -webkit-margin-before: -80px;
  margin-block-start: -80px;
  min-block-size: 500px;
  min-block-size: 31.25rem;
}

.p-fv__slides {
  inset: 0;
  position: absolute;
  inline-size: 100%;
  block-size: 100%;
}

.p-fv__slides .splide__track {
  block-size: 100%;
}

.p-fv__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
  position: relative;
  z-index: 1;
}

.p-fv__textBox {
  row-gap: 30px;
  row-gap: 1.875rem;
  display: grid;
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
}

.p-fv__copy {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.15;
}

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

.p-fv__item {
  position: relative;
  block-size: 100%;
}

.p-fv__item img {
  aspect-ratio: 390/500;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-fv__img::before {
  inset: 0;
  position: absolute;
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: rgba(34, 34, 34, .2);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-fv__downWrap {
  inset-block-end: 0;
  inset-inline-start: 50%;
  translate: -50%;
  position: absolute;
}

.p-fv__scrollBox {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  inline-size: 100%;
  block-size: 79px;
  block-size: 4.9375rem;
}

.p-fv__downText {
  color: #fff;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .2em;
  text-transform: capitalize;
}

.p-fv__pin::before {
  inset-block-end: -35px;
  inset-block-end: -2.1875rem;
  background-color: #fff;
  block-size: 50px;
  block-size: 3.125rem;
}

.p-fv__pin::after {
  display: none;
}

.p-fv__circle {
  inset-inline-start: 50%;
  translate: -50%;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  border-color: rgba(255, 255, 255, .6);
  inline-size: 11px;
  inline-size: .6875rem;
}

.p-fv__circle::before {
  -webkit-animation: initial;
  animation: initial;
  background-color: #fff;
  inline-size: 5px;
  inline-size: .3125rem;
}

@-webkit-keyframes circlemove {

  0% {
    top: -11px;
    top: -.6875rem;
  }

  100% {
    top: 50px;
    top: 3.125rem;
  }
}

@keyframes circlemove {

  0% {
    top: -11px;
    top: -.6875rem;
  }

  100% {
    top: 50px;
    top: 3.125rem;
  }
}
@-webkit-keyframes cirlemovehide {

  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {

  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

.p-header {
  padding-block: 13px 39px;
  padding-block: .8125rem 2.4375rem;
  position: relative;
}

.p-header::before {
  inset: 0;
  position: absolute;
  opacity: .5;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#758f9e), to(rgba(117, 143, 158, 0)));
  background-image: linear-gradient(180deg, #758f9e, rgba(117, 143, 158, 0) 100%);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

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

.p-header__logo {
  z-index: 41;
  height: 90%;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.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;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  height: 100%;
  color: #fff;
}

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

.p-header__logo span {
  display: inline flow-root;
  -webkit-padding-end: 5px;
  -webkit-padding-end: .3125rem;
  padding-inline-end: 5px;
  padding-inline-end: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .05em;
  line-height: 1.2142857143;
}

.p-header__nav {
  display: none;
}

.p-header__drawer {
  inset-inline-end: 0;
  inset-block-start: 0;
  position: absolute;
  z-index: 999;
}

.p-header__buttonArea {
  display: none;
}

.p-header__button {
  inline-size: 100%;
}

.p-header__nav .hidden-menu {
  display: none;
}

.p-header.p-header--under::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#758f9e), to(transparent));
  background-image: linear-gradient(180deg, #758f9e, transparent 100%);
}

.p-history {
  padding-block: 50px 124px;
  padding-block: 3.125rem 7.75rem;
}

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

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

.p-management {
  padding-block: 100px;
  padding-block: 6.25rem;
  position: relative;
  background-color: #fff;
}

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

.p-management__contents {
  display: grid;
  grid-template: 'title' '.' 1.875rem 'img' '.' 1.25rem 'text'/auto auto 1fr;
}

.p-management__title {
  grid-area: title;
}

.p-management__imgWrap {
  grid-area: img;
}

.p-management__img {
  inline-size: 100%;
}

.p-management__textBox {
  grid-area: text;
}

.p-news {
  padding-block: 100px 120px;
  padding-block: 6.25rem 7.5rem;
}

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

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

.p-news__buttonWrap {
  margin-inline: auto;
  -webkit-margin-before: 39px;
  -webkit-margin-before: 2.4375rem;
  margin-block-start: 39px;
  margin-block-start: 2.4375rem;
  inline-size: 100%;
  max-inline-size: 300px;
  max-inline-size: 18.75rem;
}

.p-newsLink {
  row-gap: 5px;
  row-gap: .3125rem;
  display: block grid;
  grid-template: 'category date ' -webkit-max-content 'title title' auto/auto 1fr;
  grid-template: 'category date ' max-content 'title title' auto/auto 1fr;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  border-bottom: 1px solid #cedef5;
  -webkit-padding-after: 14px;
  -webkit-padding-after: .875rem;
  padding-block-end: 14px;
  padding-block-end: .875rem;
}

.p-newsLink__category {
  grid-area: category;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: flex-start;
  text-align: center;
}

.p-newsLink__date {
  grid-area: date;
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-newsLink__title {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  grid-area: title;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-newsLink:focus-visible {
  opacity: .4;
}

.p-newsList {
  row-gap: 14px;
  row-gap: .875rem;
  display: block grid;
}

.p-newsList .p-newsList__item:last-child a {
  border-bottom: transparent;
}

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

.page-numbers {
  display: inline-block;
  border: 1px solid #1654AB;
  width: 2em;
  height: 2em;
  color: #1654AB;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

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

.page-numbers.current {
  background-color: #1654AB;
  color: #fff;
}

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

.p-privacy {
  padding-block: 30px 123px;
  padding-block: 1.875rem 7.6875rem;
}

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

.p-privacy__contents {
  row-gap: 60px;
  row-gap: 3.75rem;
  display: block grid;
  -webkit-margin-before: 60px;
  -webkit-margin-before: 3.75rem;
  margin-block-start: 60px;
  margin-block-start: 3.75rem;
  inline-size: 100%;
}

.p-privacy__block {
  display: block grid;
  counter-increment: n;
}

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

.p-privacy__list {
  -webkit-margin-start: 10px;
  -webkit-margin-start: .625rem;
  margin-inline-start: 10px;
  margin-inline-start: .625rem;
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
}

.p-privacy__block:last-child .p-privacy__subTitle::before {
  content: none;
}

.p-privacy__subTitle {
  display: inline flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .5625rem;
  -moz-column-gap: .5625rem;
  column-gap: .5625rem;
}

.p-privacy__subTitle::before {
  color: currentColor;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  content: counter(n) '.';
}

.p-privacy__text[data-size=large] {
  font-family: 'BIZ UDPMincho', serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}

.p-privacy__block:last-child {
  -webkit-margin-before: 5px;
  -webkit-margin-before: .3125rem;
  margin-block-start: 5px;
  margin-block-start: .3125rem;
}

.p-realization {
  padding-block: 60px 101px;
  padding-block: 3.75rem 6.3125rem;
  position: relative;
  z-index: 0;
  background-color: #E7EFFA;
}

.p-realization::before {
  inset: 0;
  position: absolute;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(231, 239, 250)), color-stop(5%, rgb(231, 239, 250)), to(rgba(231, 239, 250, 0)));
  background: linear-gradient(90deg, rgb(231, 239, 250) 0%, rgb(231, 239, 250) 5%, rgba(231, 239, 250, 0) 100%);
  inline-size: 100%;
  block-size: 257px;
  block-size: 16.0625rem;
  content: '';
}

.p-realization::after {
  inset: 0;
  position: absolute;
  opacity: .7;
  z-index: -1;
  mix-blend-mode: multiply;
  background: url(../img/realization_bg.jpeg) no-repeat center center/cover;
  inline-size: 100%;
  inline-size: 100%;
  block-size: 257px;
  block-size: 16.0625rem;
  content: '';
}

.p-realization__layer {
  inset: 0;
  position: absolute;
  z-index: -1;
  inline-size: 100%;
  block-size: 257px;
  block-size: 16.0625rem;
}

.p-realization__layer::before {
  display: none;
}

.p-realization__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
  position: relative;
  z-index: 1;
}

.p-realization__cards {
  margin-inline: auto;
  padding-inline: 39px;
  padding-inline: 2.4375rem;
  -webkit-margin-before: 30px;
  -webkit-margin-before: 1.875rem;
  margin-block-start: 30px;
  margin-block-start: 1.875rem;
  inline-size: 100%;
}

.p-trade {
  padding-block: 100px 100px;
  padding-block: 6.25rem 6.25rem;
  position: relative;
  z-index: 0;
}

.p-trade::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  background-color: rgba(34, 34, 34, .2);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-trade::after {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: hue;
  background: url(../img/trade_bg.jpeg) no-repeat center center/cover;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

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

.p-trade__contents {
  row-gap: 20px;
  row-gap: 1.25rem;
  display: block grid;
  position: relative;
  z-index: 0;
}

.p-underBusiness {
  container-type: inline-size;
  position: relative;
  -webkit-padding-after: 50px;
  -webkit-padding-after: 3.125rem;
  padding-block-end: 50px;
  padding-block-end: 3.125rem;
  overflow: hidden;
}

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

.p-underBusiness__contents {
  row-gap: 60px;
  row-gap: 3.75rem;
  display: grid;
}

.p-underBusiness__head {
  padding-block: 121px 70px;
  padding-block: 7.5625rem 4.375rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  margin-inline: calc(50% - 50cqi);
  position: relative;
  min-block-size: 300px;
  min-block-size: 18.75rem;
}

.p-underBusiness__imgWrap {
  inset: 0;
  position: absolute;
  inline-size: 100%;
}

.p-underBusiness__img {
  position: relative;
  inline-size: 100%;
  block-size: 100%;
}

.p-underBusiness__img img {
  aspect-ratio: 390/300;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-underBusiness__img::before {
  inset: 0;
  position: absolute;
  z-index: 0;
  background-color: rgba(34, 34, 34, .2);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-underBusiness__title {
  position: relative;
}

.p-underBusiness__title span {
  opacity: .45;
  line-height: 1;
}

.p-underBusiness__pinWrap {
  inset-block-end: 20px;
  inset-block-end: 1.25rem;
  inset-inline-start: 50%;
  translate: -50%;
  position: absolute;
}

.p-underBusiness__pin::before {
  inset-block-end: -20px;
  inset-block-end: -1.25rem;
  z-index: 1;
  background-color: #fff;
}

.p-underBusiness__pin::after {
  background-color: #1654AB;
  block-size: 50px;
  block-size: 3.125rem;
}

.p-underBusiness__pin span {
  border-color: #fff;
}

.p-underBusiness__pin span::before {
  background-color: #fff;
}

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

.p-underCompany {
  container-type: inline-size;
  position: relative;
  -webkit-padding-after: 50px;
  -webkit-padding-after: 3.125rem;
  padding-block-end: 50px;
  padding-block-end: 3.125rem;
  overflow: hidden;
}

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

.p-underCompany__contents {
  row-gap: 50px;
  row-gap: 3.125rem;
  display: grid;
}

.p-underCompany__head {
  padding-block: 121px 70px;
  padding-block: 7.5625rem 4.375rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  margin-inline: calc(50% - 50cqi);
  position: relative;
  min-block-size: 300px;
  min-block-size: 18.75rem;
}

.p-underCompany__imgWrap {
  inset: 0;
  position: absolute;
  inline-size: 100%;
}

.p-underCompany__img {
  position: relative;
  inline-size: 100%;
  block-size: 100%;
}

.p-underCompany__img img {
  aspect-ratio: 390/300;
  display: block flow;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-underCompany__img::before {
  inset: 0;
  position: absolute;
  z-index: 0;
  background-color: rgba(34, 34, 34, .2);
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-underCompany__title {
  position: relative;
}

.p-underCompany__title span {
  opacity: .45;
  line-height: 1;
}

.p-underCompany__pinWrap {
  inset-block-end: 20px;
  inset-block-end: 1.25rem;
  inset-inline-start: 50%;
  translate: -50%;
  position: absolute;
}

.p-underCompany__pin::before {
  inset-block-end: -20px;
  inset-block-end: -1.25rem;
  z-index: 1;
  background-color: #fff;
}

.p-underCompany__pin::after {
  inset-block-end: -70px;
  inset-block-end: -4.375rem;
  background-color: #1654AB;
  block-size: 50px;
  block-size: 3.125rem;
}

.p-underCompany__pin span {
  border-color: #fff;
}

.p-underCompany__pin span::before {
  background-color: #fff;
}

.p-underCompany__body {
  position: relative;
  z-index: 1;
  inline-size: 100%;
}

.p-underFv {
  padding-block: 85px 30px;
  padding-block: 5.3125rem 1.875rem;
  -webkit-margin-before: -80px;
  margin-block-start: -80px;
  background-color: #fff;
}

.p-underFv__inner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  display: block grid;
  text-align: center;
}

.p-underFv__title {
  row-gap: 5px;
  row-gap: .3125rem;
  display: block grid;
}

.p-underFv__main {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
}

.p-underFv__sub {
  opacity: .3;
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: capitalize;
}

.p-vision {
  padding-block: 230px 70px;
  padding-block: 14.375rem 4.375rem;
  position: relative;
  z-index: 0;
  -webkit-margin-before: -80px;
  margin-block-start: -80px;
  overflow: hidden;
}

.p-vision::after {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
  background: url(../img/vision_bg.jpeg) no-repeat center center/cover;
  inline-size: 100%;
  inline-size: 100%;
  block-size: 100%;
  max-block-size: 340px;
  max-block-size: 21.25rem;
  content: '';
}

.p-vision__contentsWrap {
  position: relative;
}

.p-vision__contents {
  position: relative;
}

.p-vision__contents::after {
  display: none;
}

.p-vision__layer {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
  inline-size: 100%;
  block-size: 100%;
  max-block-size: 340px;
  max-block-size: 21.25rem;
}

.p-vision__layer::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
  background-color: #E7EFFA;
  inline-size: 100%;
  block-size: 100%;
  content: '';
}

.p-vision__title {
  margin-inline: calc(50% - 50vw);
  position: relative;
}

.p-vision__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
  position: relative;
  z-index: 1;
}

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

.p-vision__subTitle {
  color: #1654AB;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.p-vision__subTitle[data-bg=white] {
  -webkit-box-decoration-break: clone;
  padding-inline: 15px;
  padding-inline: .9375rem;
  padding-block: 10px;
  padding-block: .625rem;
  display: inline flow;
  box-decoration-break: clone;
  background-color: #fff;
  line-height: 1.9;
}

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

.p-vision__text[data-weight=bold] span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-vision__text .sp-only {
  display: block flow;
}

.p-vision__text .pc-only {
  display: none;
}

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

.p-vision__bg {
  display: none;
}

.p-vision__bg::after {
  display: none;
}

.p-vision__bg::before {
  display: none;
}

.p-vision__bottom {
  position: relative;
  -webkit-margin-before: 20px;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 20px;
  margin-block-start: 1.25rem;
  inline-size: 100%;
}

.p-vision__pinWrap {
  inset-inline-start: 50%;
  translate: -50%;
  inset-block-end: 20px;
  inset-block-end: 1.25rem;
  position: absolute;
}

.p-vision__pin::before {
  inset-block-end: -20px;
  inset-block-end: -1.25rem;
  z-index: 1;
  background-color: #fff;
}

.p-vision__pin::after {
  background-color: #1654AB;
  block-size: 50px;
  block-size: 3.125rem;
}

.p-vision__pin span {
  border-color: #fff;
}

.p-vision__pin span::before {
  background-color: #fff;
}

.p-cardsLowList {
  row-gap: 10px;
  row-gap: .625rem;
  display: block grid;
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

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

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

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

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

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

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

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

@media (min-width: 768px) {

  .c-card3__img::before {
    display: block flow;
  }

  .p-privacy__subTitle {
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
  }
}

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

  html {
    font-size: 1.3333333333vw;
  }

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

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

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

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

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

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

  .c-card__body {
    padding-block: 32px 30px;
    padding-block: 2rem 1.875rem;
  }

  .c-card__title {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: .01em;
    line-height: 1.2;
  }

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

  .c-card__title br {
    display: block;
  }

  .c-card2 {
    display: block grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-card2__img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-inline-size: 600px;
    max-inline-size: 37.5rem;
  }

  .c-card2__img img {
    aspect-ratio: 600/530;
  }

  .c-card2__body {
    padding: 40px;
    padding: 2.5rem;
    -webkit-padding-after: 48px;
    -webkit-padding-after: 3rem;
    padding-block-end: 48px;
    padding-block-end: 3rem;
  }

  .c-card2__main {
    -webkit-margin-start: -27px;
    -webkit-margin-start: -1.6875rem;
    margin-inline-start: -27px;
    margin-inline-start: -1.6875rem;
    -webkit-margin-after: 10px;
    -webkit-margin-after: .625rem;
    margin-block-end: 10px;
    margin-block-end: .625rem;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .1em;
  }

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

  .c-card2__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2;
  }

  .c-card3 {
    -webkit-transition: background-color .4s;
    transition: background-color .4s;
    border: 2px solid #fff;
    padding: 8px;
    padding: .5rem;
    min-block-size: 200px;
    min-block-size: 12.5rem;
  }

  .c-card3::before {
    display: none;
  }

  .c-card3__img {
    display: block flow;
    opacity: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    max-inline-size: 540px;
    max-inline-size: 33.75rem;
  }

  .c-card3__img img {
    aspect-ratio: 540/180;
  }

  .c-card3__body {
    padding-block: 65px;
    padding-block: 4.0625rem;
    padding: 40px;
    padding: 2.5rem;
    inline-size: 100%;
  }

  .c-card3__title {
    -webkit-transition: color .4s;
    transition: color .4s;
    color: #fff;
  }

  .c-card3__main {
    grid-column: 2;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: .5em;
    line-height: 1;
  }

  .c-card3__sub {
    grid-column: 1;
    grid-row: 1;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    -webkit-margin-end: 20px;
    -webkit-margin-end: 1.25rem;
    margin-inline-end: 20px;
    margin-inline-end: 1.25rem;
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 1;
  }

  .c-card3:focus-visible {
    background-color: #fff;
  }

  .c-card3:focus-visible .c-card3__img {
    opacity: 1;
    inline-size: 100%;
  }

  .c-card3:focus-visible .c-card3__title {
    color: #1863CC;
  }

  .c-card3:focus-visible .c-card3__sub {
    opacity: .25;
  }

  .c-category {
    min-inline-size: 80px;
    min-inline-size: 5rem;
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.6153846154;
  }

  .c-commonList li {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2;
  }

  .c-commonTable {
    padding-block: 50px;
    padding-block: 3.125rem;
    padding-inline: 60px;
    padding-inline: 3.75rem;
  }

  .c-commonTable th {
    display: table-cell;
    -webkit-padding-start: 9px;
    -webkit-padding-start: .5625rem;
    padding-inline-start: 9px;
    padding-inline-start: .5625rem;
    inline-size: 100px;
    inline-size: 6.25rem;
  }

  .c-commonTable td {
    padding-block: 19px 20px;
    padding-block: 1.1875rem 1.25rem;
    display: table-cell;
    -webkit-padding-start: 20px;
    -webkit-padding-start: 1.25rem;
    padding-inline-start: 20px;
    padding-inline-start: 1.25rem;
    inline-size: initial;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.73;
  }

  .c-commonTable tr:first-child td {
    -webkit-padding-before: 0;
    padding-block-start: 0;
  }

  .c-commonTable tr:last-child td {
    -webkit-padding-after: 0;
    padding-block-end: 0;
  }

  .c-commonTable__tel {
    pointer-events: none;
  }

  .c-commonText {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2;
  }

  .c-contentsBox {
    padding-block: 78px 84px;
    padding-block: 4.875rem 5.25rem;
    padding-inline: 48px;
    padding-inline: 3rem;
  }

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

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

  .c-contentsBox__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.95;
  }

  .c-contentsBox__text .pc_only {
    display: block;
  }

  .c-infoBox {
    padding-block: 20px;
    padding-block: 1.25rem;
    display: inline flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-infoBox__inner {
    display: block flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.1875rem;
    -moz-column-gap: 1.1875rem;
    column-gap: 1.1875rem;
  }

  .c-infoBox__text {
    padding-block: 0;
    border-bottom: transparent;
  }

  .c-infoBox__text:first-child {
    -webkit-margin-end: 20px;
    -webkit-margin-end: 1.25rem;
    margin-inline-end: 20px;
    margin-inline-end: 1.25rem;
  }

  .c-infoBox__text:last-child {
    padding-block: 0;
    text-align: left;
  }

  .c-infoBox__text:last-child::before {
    inset-inline-start: -19px;
    inset-inline-start: -1.1875rem;
    inset-block-start: 0;
    position: absolute;
    background-color: #fff;
    inline-size: 1px;
    block-size: 100%;
    content: '';
  }

  .c-largeTitle {
    font-size: 220px;
    font-size: 13.75rem;
  }

  .c-pin::after {
    inset-block-end: -70px;
    inset-block-end: -4.375rem;
    block-size: 50px;
    block-size: 3.125rem;
  }

  .c-sectionTitle {
    row-gap: 10px;
    row-gap: .625rem;
  }

  .c-sectionTitle__main {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.4;
  }

  .c-sectionTitle__sub {
    font-size: 100px;
    font-size: 6.25rem;
  }

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

  .c-sectionTitle2__sub {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 1.1;
  }

  .c-sectionTitle2__sub[data-size=large] {
    font-size: 140px;
    font-size: 8.75rem;
  }

  .c-timeLine {
    row-gap: 20px;
    row-gap: 1.25rem;
  }

  .c-timeLine__year {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    min-inline-size: 151px;
    min-inline-size: 9.4375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.98;
  }

  .c-timeLine__detail,
  .c-timeLine__detailList {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .c-timeLine__detailList {
    -webkit-padding-start: 15px;
    -webkit-padding-start: .9375rem;
    padding-inline-start: 15px;
    padding-inline-start: .9375rem;
  }

  .c-timeLine__detailItem {
    -webkit-margin-start: 3px;
    -webkit-margin-start: .1875rem;
    margin-inline-start: 3px;
    margin-inline-start: .1875rem;
  }

  .c-timeLine__detailBox {
    -webkit-margin-start: 8px;
    -webkit-margin-start: .5rem;
    margin-inline-start: 8px;
    margin-inline-start: .5rem;
    -webkit-padding-start: 20px;
    -webkit-padding-start: 1.25rem;
    padding-inline-start: 20px;
    padding-inline-start: 1.25rem;
    -webkit-padding-after: 19px;
    -webkit-padding-after: 1.1875rem;
    padding-block-end: 19px;
    padding-block-end: 1.1875rem;
  }

  .c-timeLine__detailBox::before {
    inset-inline-start: -15px;
    inset-inline-start: -.9375rem;
    translate: 0 32px;
    translate: 0 2rem;
  }

  .c-timeLine__detailList {
    -webkit-margin-before: 20px;
    -webkit-margin-before: 1.25rem;
    margin-block-start: 20px;
    margin-block-start: 1.25rem;
  }

  .c-timeLine__detailBox .pc-only {
    display: block;
  }

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

  .p-about {
    padding-block: 500px 120px;
    padding-block: 31.25rem 7.5rem;
  }

  .p-about::before {
    aspect-ratio: 1440/670;
  }

  .p-about::after {
    aspect-ratio: 1440/670;
    inset-inline-end: -200px;
    inset-inline-end: -12.5rem;
    block-size: 670px;
    block-size: 41.875rem;
  }

  .p-about__contents {
    display: block grid;
    grid-template: 'title . text' auto 'title . button' auto/auto 2.5625rem 1fr;
  }

  .p-about__title {
    grid-area: title;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    max-inline-size: 510px;
    max-inline-size: 31.875rem;
  }

  .p-about__text {
    grid-area: text;
    -webkit-margin-before: 110px;
    -webkit-margin-before: 6.875rem;
    margin-block-start: 110px;
    margin-block-start: 6.875rem;
  }

  .p-about__buttonWrap {
    grid-area: button;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }

  .p-access {
    -webkit-padding-before: 80px;
    -webkit-padding-before: 5rem;
    padding-block-start: 80px;
    padding-block-start: 5rem;
  }

  .p-access__img img {
    aspect-ratio: 1440/962;
  }

  .p-access__textBox {
    row-gap: 10px;
    row-gap: .625rem;
    -webkit-margin-before: 40px;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 40px;
    margin-block-start: 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-access__tel[data-type=tel] {
    pointer-events: none;
  }

  .p-access__text br {
    display: none;
  }

  .p-access__text[data-size=large] {
    -webkit-margin-before: 10px;
    -webkit-margin-before: .625rem;
    margin-block-start: 10px;
    margin-block-start: .625rem;
  }

  .p-access__map iframe {
    aspect-ratio: 1200/400;
  }

  .p-access__infoArea {
    gap: 20px;
    gap: 1.25rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    inline-size: 100%;
    max-inline-size: 900px;
    max-inline-size: 56.25rem;
  }

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

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

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

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

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

  .p-business {
    padding-block: 140px;
    padding-block: 8.75rem;
  }

  .p-business__contents {
    row-gap: 60px;
    row-gap: 3.75rem;
    display: block grid;
    max-inline-size: 600px;
    max-inline-size: 37.5rem;
  }

  .p-business__title {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

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

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

  .p-cards {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: repeat(auto-fit, minmax(15.6875rem, 1fr));
  }

  .p-cards__item {
    row-gap: 0;
    display: block grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }

  .p-cards__item .c-card__title {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .p-cards__item .c-card__body {
    display: block grid;
    grid-row: span 2;
    grid-template-rows: inherit;
  }

  .p-company {
    padding-block: 140px;
    padding-block: 8.75rem;
  }

  .p-company__bgImg img {
    aspect-ratio: 1440/740;
  }

  .p-company__contents {
    gap: 60px;
    gap: 3.75rem;
    grid-template-columns: -webkit-max-content auto;
    grid-template-columns: max-content auto;
  }

  .p-company__block {
    grid-column: 2;
    grid-row: 1;
  }

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

  .p-company__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2;
  }

  .p-company__buttonWrap {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    -webkit-margin-before: 60px;
    -webkit-margin-before: 3.75rem;
    margin-block-start: 60px;
    margin-block-start: 3.75rem;
  }

  .p-company__img {
    grid-column: 1;
    grid-row: 1;
    max-inline-size: 460px;
    max-inline-size: 28.75rem;
  }

  .p-development {
    padding-block: 140px;
    padding-block: 8.75rem;
  }

  .p-development__contents {
    grid-template: 'img . end' '. . end' 2.5rem 'title . full ' 'text . full'/auto auto 1fr;
  }

  .p-development__title {
    grid-column: 1/span 4;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .p-development__imgWrap {
    grid-column: 1/end;
  }

  .p-development__imgWrap[data-col=grid] {
    grid-column: 1/span 4;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
  }

  .p-development__img:nth-child(1) img {
    aspect-ratio: 1;
    -o-object-position: -15.5rem;
    object-position: -15.5rem;
  }

  .p-development__img:nth-child(2) img {
    aspect-ratio: 790/400;
  }

  .p-development__textBox {
    grid-column: 4;
    -webkit-margin-before: -35px;
    -webkit-margin-before: -2.1875rem;
    margin-block-start: -35px;
    margin-block-start: -2.1875rem;
    max-inline-size: 900px;
    max-inline-size: 56.25rem;
  }

  .p-development__titleHead h2 {
    -webkit-padding-end: 920px;
    -webkit-padding-end: 57.5rem;
    padding-inline-end: 920px;
    padding-inline-end: 57.5rem;
  }

  .p-development__titleHead span {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }

  .p-estate {
    padding-block: 70px 140px;
    padding-block: 4.375rem 8.75rem;
  }

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

  .p-facility {
    padding-block: 140px;
    padding-block: 8.75rem;
  }

  .p-facility__contents {
    grid-template: 'img . end' '. . end' 2.5rem 'title . full ' 'text . full'/auto auto 1fr;
  }

  .p-facility__title {
    grid-column: 1/span 4;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .p-facility__imgWrap {
    grid-column: 1/end;
  }

  .p-facility__imgWrap[data-col=grid] {
    grid-column: 1/span 4;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
  }

  .p-facility__img:nth-child(1) img {
    aspect-ratio: 790/400;
  }

  .p-facility__img:nth-child(2) img {
    aspect-ratio: 1;
  }

  .p-facility__textBox {
    grid-column: 4;
    -webkit-margin-before: -35px;
    -webkit-margin-before: -2.1875rem;
    margin-block-start: -35px;
    margin-block-start: -2.1875rem;
    max-inline-size: 900px;
    max-inline-size: 56.25rem;
  }

  .p-facility__titleHead h2 {
    -webkit-padding-end: 960px;
    -webkit-padding-end: 60rem;
    padding-inline-end: 960px;
    padding-inline-end: 60rem;
  }

  .p-footer {
    padding-block: 40px 30px;
    padding-block: 2.5rem 1.875rem;
  }

  .p-footer__contents {
    grid-template-columns: -webkit-max-content auto;
    grid-template-columns: max-content auto;
    grid-template-rows: auto;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
  }

  .p-footer__head {
    row-gap: 24px;
    row-gap: 1.5rem;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    max-inline-size: 300px;
    max-inline-size: 18.75rem;
  }

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

  .p-footer__body {
    row-gap: 20px;
    row-gap: 1.25rem;
    justify-self: flex-end;
    inline-size: 100%;
    max-inline-size: 330px;
    max-inline-size: 20.625rem;
  }

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

  .p-fv {
    padding-block: 276px;
    padding-block: 17.25rem;
    block-size: 100%;
    min-block-size: 960px;
    min-block-size: 60rem;
  }

  .p-fv__textBox {
    row-gap: 58px;
    row-gap: 3.625rem;
  }

  .p-fv__copy {
    font-size: 100px;
    font-size: 6.25rem;
  }

  .p-fv__text {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-fv__item img {
    aspect-ratio: 1440/960;
  }

  .p-header {
    padding-block: 16px 14px;
    padding-block: 1rem .875rem;
  }

  .p-header__innerWrap {
    max-inline-size: 1480px;
    max-inline-size: 92.5rem;
  }

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

  .p-header__logo span {
    -webkit-padding-end: 10px;
    -webkit-padding-end: .625rem;
    padding-inline-end: 10px;
    padding-inline-end: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

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

  .p-header__nav ul {
    gap: 30px;
    gap: 1.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;
  }

  .p-header__nav li > a {
    display: block;
    -webkit-transition: color .4s;
    transition: color .4s;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.1875;
  }

  .p-header__drawer {
    display: none;
  }

  .p-header__buttonArea {
    gap: 10px;
    gap: .625rem;
    display: block flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-margin-start: 30px;
    -webkit-margin-start: 1.875rem;
    margin-inline-start: 30px;
    margin-inline-start: 1.875rem;
    inline-size: 100%;
    max-inline-size: 330px;
    max-inline-size: 20.625rem;
  }

  .p-history {
    padding-block: 70px 180px;
    padding-block: 4.375rem 11.25rem;
  }

  .p-history__block {
    margin-inline: auto;
    -webkit-margin-before: 64px;
    -webkit-margin-before: 4rem;
    margin-block-start: 64px;
    margin-block-start: 4rem;
    max-inline-size: 1019px;
    max-inline-size: 63.6875rem;
  }

  .p-management {
    padding-block: 120px 140px;
    padding-block: 7.5rem 8.75rem;
  }

  .p-management__contents {
    grid-template: 'title . end' '. . end' 3.75rem 'img . text'/max-content 3.75rem 1fr;
  }

  .p-management__title {
    grid-column: 1/end;
  }

  .p-management__img {
    max-inline-size: 600px;
    max-inline-size: 37.5rem;
  }

  .p-news {
    padding-block: 140px 80px;
    padding-block: 8.75rem 5rem;
  }

  .p-news__contents {
    row-gap: 40px;
    row-gap: 2.5rem;
    display: block grid;
    grid-template: 'title . list' auto 'title . button' auto/auto 6.0625rem 1fr;
  }

  .p-news__title {
    grid-area: title;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    max-inline-size: 300px;
    max-inline-size: 18.75rem;
  }

  .p-news__list {
    grid-area: list;
    -webkit-margin-before: 36px;
    -webkit-margin-before: 2.25rem;
    margin-block-start: 36px;
    margin-block-start: 2.25rem;
  }

  .p-news__buttonWrap {
    grid-area: button;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }

  .p-newsLink {
    grid-template: 'category date title'/auto -webkit-max-content 1fr;
    grid-template: 'category date title'/auto max-content 1fr;
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem;
    -webkit-padding-after: 19px;
    -webkit-padding-after: 1.1875rem;
    padding-block-end: 19px;
    padding-block-end: 1.1875rem;
  }

  .p-newsLink__date {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }

  .p-newsLink__title {
    -webkit-margin-start: 10px;
    -webkit-margin-start: .625rem;
    margin-inline-start: 10px;
    margin-inline-start: .625rem;
    -webkit-padding-after: 2px;
    -webkit-padding-after: .125rem;
    padding-block-end: 2px;
    padding-block-end: .125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .p-privacy {
    padding-block: 120px 164px;
    padding-block: 7.5rem 10.25rem;
  }

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

  .p-privacy__contents {
    row-gap: 90px;
    row-gap: 5.625rem;
    -webkit-margin-before: 70px;
    -webkit-margin-before: 4.375rem;
    margin-block-start: 70px;
    margin-block-start: 4.375rem;
  }

  .p-privacy__text {
    -webkit-margin-before: 25px;
    -webkit-margin-before: 1.5625rem;
    margin-block-start: 25px;
    margin-block-start: 1.5625rem;
    line-height: normal;
  }

  .p-privacy__text[data-size=large] {
    -webkit-margin-before: 15px;
    -webkit-margin-before: .9375rem;
    margin-block-start: 15px;
    margin-block-start: .9375rem;
    line-height: normal;
  }

  .p-privacy__text[data-size=large] br {
    display: none;
  }

  .p-privacy__block:last-child {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }

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

  .p-realization::before {
    display: none;
  }

  .p-realization::after {
    inset-inline-start: initial;
    inset-inline-end: 0;
    max-inline-size: 54.2%;
    block-size: 520px;
    block-size: 32.5rem;
  }

  .p-realization__layer {
    inset-inline-start: initial;
    inset-inline-end: 0;
    z-index: 0;
    max-inline-size: 54.2%;
    block-size: 520px;
    block-size: 32.5rem;
  }

  .p-realization__layer::before {
    inset: 0;
    inset-inline-start: -10px;
    inset-inline-start: -.625rem;
    display: block flow;
    position: absolute;
    z-index: -1;
    mix-blend-mode: screen;
    background: -webkit-gradient(linear, left top, right top, from(rgb(231, 239, 250)), color-stop(5%, rgb(231, 239, 250)), to(rgba(231, 239, 250, 0)));
    background: linear-gradient(90deg, rgb(231, 239, 250) 0%, rgb(231, 239, 250) 5%, rgba(231, 239, 250, 0) 100%);
    inline-size: 510px;
    inline-size: 31.875rem;
    block-size: 100%;
    content: '';
  }

  .p-realization__cards {
    padding-inline: 0;
    -webkit-margin-before: 60px;
    -webkit-margin-before: 3.75rem;
    margin-block-start: 60px;
    margin-block-start: 3.75rem;
    max-inline-size: 1200px;
    max-inline-size: 75rem;
  }

  .p-trade {
    padding-block: 140px;
    padding-block: 8.75rem;
  }

  .p-trade__card {
    cursor: pointer;
  }

  .p-underBusiness {
    -webkit-padding-after: 70px;
    -webkit-padding-after: 4.375rem;
    padding-block-end: 70px;
    padding-block-end: 4.375rem;
  }

  .p-underBusiness__contents {
    row-gap: 70px;
    row-gap: 4.375rem;
  }

  .p-underBusiness__head {
    padding-block: 360px 60px;
    padding-block: 22.5rem 3.75rem;
    min-block-size: 600px;
    min-block-size: 37.5rem;
  }

  .p-underBusiness__img img {
    aspect-ratio: 1440/600;
  }

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

  .p-underCompany {
    -webkit-padding-after: 70px;
    -webkit-padding-after: 4.375rem;
    padding-block-end: 70px;
    padding-block-end: 4.375rem;
  }

  .p-underCompany__head {
    padding-block: 360px 60px;
    padding-block: 22.5rem 3.75rem;
    min-block-size: 600px;
    min-block-size: 37.5rem;
  }

  .p-underCompany__img img {
    aspect-ratio: 1440/600;
  }

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

  .p-underFv {
    padding-block: 130px 48px;
    padding-block: 8.125rem 3rem;
  }

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

  .p-underFv__main {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.4;
  }

  .p-vision {
    padding-block: 125px 150px;
    padding-block: 7.8125rem 9.375rem;
  }

  .p-vision::after {
    display: none;
  }

  .p-vision__contentsWrap {
    container-type: inline-size;
    display: block grid;
    grid-template: 'title title' 'img contents' 'bottom bottom';
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }

  .p-vision__contents {
    padding-inline: 60px;
    padding-inline: 3.75rem;
    grid-area: contents;
    z-index: 1;
    -webkit-margin-end: calc(50% - 50cqi);
    margin-inline-end: calc(50% - 50cqi);
    -webkit-margin-before: 40px;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 40px;
    margin-block-start: 2.5rem;
    max-inline-size: 780px;
    max-inline-size: 48.75rem;
  }

  .p-vision__contents::after {
    inset: 0;
    inset-block-start: -385px;
    inset-block-start: -24.0625rem;
    display: block;
    position: absolute;
    z-index: -1;
    background: #E7EFFA;
    background: -webkit-gradient(linear, left top, right top, from(rgb(231, 239, 250)), to(rgba(231, 239, 250, .9)));
    background: linear-gradient(90deg, rgb(231, 239, 250) 0%, rgba(231, 239, 250, .9) 100%);
    inline-size: 100vw;
    block-size: 1306px;
    block-size: 81.625rem;
    content: '';
  }

  .p-vision__layer {
    display: none;
  }

  .p-vision__title {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    grid-area: title;
    z-index: 6;
  }

  .p-vision__block {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    inline-size: 100%;
    max-inline-size: 600px;
    max-inline-size: 37.5rem;
  }

  .p-vision__subTitle {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.55;
  }

  .p-vision__subTitle[data-bg=white] {
    -webkit-margin-start: -15px;
    -webkit-margin-start: -.9375rem;
    margin-inline-start: -15px;
    margin-inline-start: -.9375rem;
    line-height: 1.55;
  }

  .p-vision__textBox {
    -webkit-margin-before: 40px;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 40px;
    margin-block-start: 2.5rem;
    max-inline-size: 600px;
    max-inline-size: 37.5rem;
  }

  .p-vision__text[data-weight=bold] span {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-vision__text .sp-only {
    display: none;
  }

  .p-vision__text .pc-only {
    display: block flow;
  }

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

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

  .p-vision__text[data-saize=middle] {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-vision__bg {
    display: block flow;
    position: relative;
    grid-area: img;
    z-index: 0;
  }

  .p-vision__bg::after {
    inset-inline-start: -120px;
    inset-inline-start: -7.5rem;
    inset-block-start: -342px;
    inset-block-start: -21.375rem;
    display: block flow;
    position: absolute;
    z-index: -1;
    mix-blend-mode: multiply;
    -webkit-margin-start: calc(50% - 50vw);
    margin-inline-start: calc(50% - 50vw);
    background: url(../img/vision_bg.jpeg) no-repeat center center/cover;
    inline-size: 100vw;
    block-size: 1306px;
    block-size: 81.625rem;
    content: '';
  }

  .p-vision__bg::before {
    inset-inline-start: 50%;
    translate: -50%;
    inset-block-start: -342px;
    inset-block-start: -21.375rem;
    display: block flow;
    position: absolute;
    z-index: -1;
    mix-blend-mode: multiply;
    background-color: #E7EFFA;
    inline-size: 100vw;
    block-size: 1306px;
    block-size: 81.625rem;
    content: '';
  }

  .p-vision__bottom {
    margin-inline: auto;
    grid-area: bottom;
    z-index: 1;
    -webkit-margin-before: 100px;
    -webkit-margin-before: 6.25rem;
    margin-block-start: 100px;
    margin-block-start: 6.25rem;
    max-inline-size: 1000px;
    max-inline-size: 62.5rem;
  }

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

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

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

  .p-header__nav li a:hover {
    color: #1654AB;
    text-decoration: initial;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

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

@media (min-width: 992px) {

  .c-card3__sub[data-hover=open] {
    display: none;
    -webkit-margin-end: 20px;
    -webkit-margin-end: 1.25rem;
    margin-inline-end: 20px;
    margin-inline-end: 1.25rem;
    font-size: 50px;
    font-size: 3.125rem;
  }

  .c-card3__sub[data-hover=close] {
    display: block flow;
  }
}

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

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

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 380px) {

  .p-privacy__subTitle {
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-card3:hover {
    background-color: #fff;
  }

  .c-card3:hover .c-card3__img {
    opacity: 1;
    inline-size: 100%;
  }

  .c-card3:hover .c-card3__title {
    color: #1863CC;
  }

  .c-card3:hover .c-card3__sub {
    opacity: .25;
  }

  .c-card3:hover .c-card3__sub[data-hover=close] {
    display: none;
    opacity: 0;
  }

  .c-card3:hover .c-card3__sub[data-hover=open] {
    display: block flow;
    opacity: .7;
  }

  .c-commonButton:hover {
    background-color: #fff;
    color: #1654AB;
  }

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

  .c-commonButton[data-bg=gradation]:hover::before {
    z-index: -2;
  }

  .c-commonButton[data-bg=gradation]:hover::after {
    opacity: 1;
  }

  .c-commonButton2:hover {
    background-color: #1654AB;
    color: rgba(255, 255, 255, .8);
  }

  .c-commonButton2[data-bg=blue]:hover {
    background-color: #fff;
    color: rgba(22, 84, 171, .8);
  }

  .c-totop:hover {
    background-color: #1654AB;
  }

  .c-totop:hover::before {
    border-color: #E7EFFA;
  }

  :where(.p-footer__policy, .p-footer__logo):hover {
    opacity: .4;
  }

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

  .p-newsLink:hover {
    opacity: .4;
  }
}
/*# sourceMappingURL=map/style.css.map */