@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: #163F90;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  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;
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

u a {
  text-decoration: underline;
}

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

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: #F3F3F3;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #F3F3F3;
  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: .25s;
  animation-duration: .25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

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

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

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

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

th,
td {
  border: .7px solid rgba(22, 63, 144, .5);
}

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: #163F90;
  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
************************************************************************/
: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: 82px;
}

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

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

.l-foot {
  margin-top: 199px;
  margin-top: 12.4375rem;
}

.l-foot--sub {
  margin-top: 179px;
  margin-top: 11.1875rem;
}

body.p-bodyClass__page #header.l-header {
  -webkit-transform: translateY(-10px) !important;
  transform: translateY(-10px) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  transition: opacity .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  transition: opacity .3s ease-out, transform .3s ease-out, visibility 0s linear .3s !important;
  transition: opacity .3s ease-out, transform .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  pointer-events: none !important;
}

body.p-bodyClass__page #header.l-header.is-show {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition-delay: 0s, 0s, 0s !important;
  transition-delay: 0s, 0s, 0s !important;
  pointer-events: auto !important;
}

body.p-bodyClass__single-news #header.l-header {
  -webkit-transform: translateY(-10px) !important;
  transform: translateY(-10px) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.l-header--scroll {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transform: translateY(-20px) !important;
  transform: translateY(-20px) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: 21 !important;
  -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  transition: opacity .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  transition: opacity .3s ease-out, transform .3s ease-out, visibility 0s linear .3s !important;
  transition: opacity .3s ease-out, transform .3s ease-out, visibility 0s linear .3s, -webkit-transform .3s ease-out !important;
  width: 100% !important;
  pointer-events: none !important;
}

.l-header--scroll.is-show {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition-delay: 0s, 0s, 0s !important;
  transition-delay: 0s, 0s, 0s !important;
  pointer-events: auto !important;
}

.l-header.is-color {
  z-index: 42;
}

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

.c-button {
  position: relative;
  z-index: 1;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  border: 1px solid #163F90;
  border-radius: 6.25rem;
  padding: 21px 45px 22px 31px;
  padding: 1.3125rem 2.8125rem 1.375rem 1.9375rem;
  width: 100%;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
  text-align: left;
}

.c-button::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: inherit;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  content: '';
}

.c-button > * {
  position: relative;
  z-index: 1;
}

.c-button.c-button--bgWhite {
  background-color: #FFF;
}

.c-button.c-button--white {
  border: 1px solid #FFF;
  color: #FFF;
}

.c-button.c-button--bgcTransparent {
  background: rgba(217, 217, 217, .2);
}

.c-button.c-button--contact {
  background: linear-gradient(45deg, #83DDF6 0%, #56AEFF 100%);
}

.c-button.c-button--contact::after {
  background: var(--gradation01, linear-gradient(95deg, #5EDCFF 0%, #113B91 100%));
}

.c-button__text {
  position: relative;
  z-index: 1;
}

.c-button__icon {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 18px;
  width: 1.125rem;
}

.c-button.c-button--contact .c-button__icon::before,
.c-button.c-button--contact .c-button__icon::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: '';
}

.c-button.c-button--contact .c-button__icon::before {
  opacity: 1;
  background-image: url(../img/common/icon_link_blue_01.png);
}

.c-button.c-button--contact .c-button__icon::after {
  opacity: 0;
  background-image: url(../img/common/icon_link_white_01.png);
}

.c-button::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-image: url(../img/common/icon_arrow_blue_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.c-button.c-button--contact::before {
  display: none;
}

.c-button.c-button--white::before {
  background-image: url(../img/common/icon_arrow_white_01.png);
}

.p-archive-information {
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-archive-information__wrap {
  gap: 4.5833333333vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-archive-information__categoryWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  max-width: 119px;
  max-width: 7.4375rem;
}

.p-archive-information__categoryTitle {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(95deg, #5EDCFF 0%, #113B91 100%);
  background-clip: text;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

.p-archive-information__categories {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.p-archive-information__category {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: .1875rem;
  background-color: #FFF;
  padding: 11px 2px 14px 3px;
  padding: .6875rem .125rem .875rem .1875rem;
  width: 100%;
  color: #163F90;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.p-archive-information__category.is-active {
  background-color: #163F90;
  color: #FFF;
}

.p-archive-information__listItems {
  width: 100%;
  max-width: 915px;
  max-width: 57.1875rem;
}

.p-archive-information__noPost {
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  color: #163F90;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.p-archivePagination {
  margin-top: 108px;
  margin-top: 6.75rem;
}

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

.p-archivePagination__inner .page-numbers {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-archivePagination__inner .page-numbers li {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  width: 1.875rem;
  color: #C9D6EF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.p-archivePagination__inner .page-numbers li a {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  width: 100%;
  height: 100%;
}

.p-archivePagination__inner .page-numbers li span.current {
  color: #163F90;
}

.p-archivePagination__inner .page-numbers li a.prev,
.p-archivePagination__inner .page-numbers li a.next {
  color: transparent;
  font-size: 0;
}

.p-archivePagination__inner .page-numbers li a.prev {
  padding-right: 24px;
  padding-right: 1.5rem;
}

.p-archivePagination__inner .page-numbers li a.next {
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-archivePagination__arrow {
  aspect-ratio: 8/14;
  display: block;
  -webkit-mask-image: url(../img/common/icon_arrow_breadcrumb_01.svg);
  mask-image: url(../img/common/icon_arrow_breadcrumb_01.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-color: #163F90;
  width: 8px;
  width: .5rem;
  min-width: initial;
  min-height: initial;
}

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

.p-bottomBgc {
  background-image: url(../img/common/bgc_bottom-bgc_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-bottomBgc--page-service {
  position: relative;
  background-image: none;
  overflow: hidden;
}

.p-bottomBgc--page-service::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, .7);
  width: 100%;
  height: 100%;
  content: '';
}

.p-bottomBgc--page-service__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-bottomBgc--bgcLightblue {
  background-color: #E9F5FA;
  background-image: none;
}

.p-bottomBgc--about {
  position: relative;
  z-index: 1;
  margin-top: -8px;
  margin-top: -.5rem;
}

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

.l-container.p-contact__inner {
  max-width: 1370px;
  max-width: 85.625rem;
}

.p-contact__contents {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: .9;
  border-radius: .625rem;
  background: linear-gradient(94deg, rgba(255, 255, 255, .9) .92%, rgba(255, 255, 255, .5) 100%);
  padding: 62px 6.4583333333vw 58px 6.5972222222vw;
  padding: 3.875rem 6.4583333333vw 3.625rem 6.5972222222vw;
  width: 100%;
}

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

.p-contact__text {
  margin-top: 48px;
  margin-top: 3rem;
  margin-left: 3px;
  margin-left: .1875rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.p-contact__text-large {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.p-contact__text-small {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.9;
}

.p-contact__buttonWrap {
  gap: 23px;
  gap: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -4px;
  margin-top: -.25rem;
  width: 100%;
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-event {
  margin-top: 52px;
  margin-top: 3.25rem;
  background: var(--Linear, linear-gradient(203deg, #A4E8EB .75%, #1981CB 98.73%));
  padding-top: 142px;
  padding-top: 8.875rem;
  padding-bottom: 127px;
  padding-bottom: 7.9375rem;
  overflow: hidden;
}

.p-event__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-event__wrapper {
  position: relative;
  margin-top: 66px;
  margin-top: 4.125rem;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  width: 100vw;
}

.p-event__navigation {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  margin-bottom: .5rem;
}

.p-event__nav-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  border: 1px solid #FFF;
  border-radius: 50%;
  width: 57px;
  width: 3.5625rem;
  height: 57px;
  height: 3.5625rem;
  overflow: hidden;
}

.p-event__nav-button::after {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background-image: url(../img/common/icon_arrow_white_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.p-event__nav-button--prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
}

.p-event__cards-wrapper {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.p-event__cards-wrapper::-webkit-scrollbar {
  display: none;
}

.p-event__cards-wrapper.is-grabbing {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.p-event__listItems {
  gap: 35px;
  gap: 2.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-right: 0;
  padding-bottom: 2px;
  padding-bottom: .125rem;
  padding-left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-event__listItems::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  width: 5rem;
  content: '';
}

.p-event__listItem {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 500px;
  width: 31.25rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-event__listItem img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-event__buttonWrap {
  margin-top: 92px;
  margin-top: 5.75rem;
}

.p-event__button {
  max-width: 288px;
  max-width: 18rem;
}

.p-event__noPost {
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  width: 100%;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.p-eventListItem {
  border-radius: .3125rem;
  background-color: #FFF;
  padding: 34px 34px 32px;
  padding: 2.125rem 2.125rem 2rem;
}

.p-eventListItem__image {
  aspect-ratio: 432/249;
  border-radius: .3125rem;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

.p-eventListItem__body {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-eventListItem__reception {
  display: inline-block;
  border-radius: 2.5rem;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  padding: 1.5px 16px 3px 15px;
  padding: .09375rem 1rem .1875rem .9375rem;
  min-width: 70px;
  min-width: 4.375rem;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-eventListItem__reception.p-eventListItem__reception--ended {
  background: #AFAFAF;
}

.p-eventListItem__textBlock {
  position: relative;
  margin-top: 5.53px;
  margin-top: .345625rem;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #163F90;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

.p-eventListItem__textBlock::before {
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: -28px;
  bottom: -1.75rem;
  background-image: url(../img/common/icon_arrow_blue_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  width: 1rem;
  content: '';
}

.p-eventListItem__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.6;
}

.p-footer {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 327px;
  padding-top: 20.4375rem;
  padding-bottom: 29px;
  padding-bottom: 1.8125rem;
  color: #FFF;
}

.p-footer__video {
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 100%, black 0%, black 85%, rgba(0, 0, 0, .8) 90%, rgba(0, 0, 0, .5) 93%, rgba(0, 0, 0, .3) 95%, rgba(0, 0, 0, .1) 97%, transparent 100%);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 100%, black 0%, black 85%, rgba(0, 0, 0, .8) 90%, rgba(0, 0, 0, .5) 93%, rgba(0, 0, 0, .3) 95%, rgba(0, 0, 0, .1) 97%, transparent 100%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__wrap {
  gap: 9.5138888889vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

.p-footer__companyName {
  width: 100%;
  max-width: 291px;
  max-width: 18.1875rem;
}

.p-footer__companyName-logo {
  width: 100%;
}

.p-footer__companyName-logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__companyName-text {
  margin-top: 31px;
  margin-top: 1.9375rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: normal;
}

.p-footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -6px;
  margin-top: -.375rem;
}

.p-footer__nav-items {
  gap: 13px;
  gap: .8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-footer__nav-item-link {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  padding: 4px;
  padding: .25rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-footer__nav-item-link--icon {
  position: relative;
  padding-right: 27px;
  padding-right: 1.6875rem;
}

.p-footer__nav-item-link--icon::before,
.p-footer__nav-item-link--icon::after {
  aspect-ratio: 1/1;
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  width: 1.125rem;
  content: '';
}

.p-footer__nav-item-link--icon::before {
  opacity: 1;
  background-image: url(../img/common/icon_link_white_01.png);
}

.p-footer__nav-item-link--icon::after {
  opacity: 0;
  background-image: url(../img/common/icon_link_blue_01.png);
}

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

.p-footer__other-note {
  display: block;
  position: relative;
  width: 91px;
  width: 5.6875rem;
  height: 34px;
  height: 2.125rem;
}

.p-footer__other-note::before,
.p-footer__other-note::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: '';
}

.p-footer__other-note::before {
  opacity: 1;
  background-image: url(../img/common/logo_note_white_01.png);
}

.p-footer__other-note::after {
  opacity: 0;
  background-image: url(../img/common/logo_note_blue_01.png);
}

.p-footer__other-note img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__other-privacy {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-left: 7px;
  margin-left: .4375rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.5;
}

.p-footer__pageTop {
  position: absolute;
  right: 56px;
  right: 3.5rem;
  bottom: 63px;
  bottom: 3.9375rem;
  z-index: 1;
}

.p-footer__pageTop-link {
  gap: 16px;
  gap: 1rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

.p-footer__pageTop-link-arrow {
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #FFF;
  border-radius: 50%;
  width: 71px;
  width: 4.4375rem;
}

.p-footer__pageTop-link-arrow::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  width: 10px;
  width: .625rem;
  content: '';
}

.p-footer__copyright {
  position: relative;
  z-index: 1;
  margin-top: 177px;
  margin-top: 11.0625rem;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
}

.p-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 21;
  -webkit-transition: background-color .3s ease, opacity .3s ease;
  transition: background-color .3s ease, opacity .3s ease;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 34px;
  padding-left: 2.125rem;
  width: 100%;
  height: 84px;
  height: 5.25rem;
}

.p-header.modal-open {
  background-color: transparent;
}

.p-header.p-header--scroll {
  padding-right: 34px;
  padding-right: 2.125rem;
}

.p-header__inner {
  gap: 31px;
  gap: 1.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.p-header.p-header--scroll .p-header__inner {
  margin-inline: auto;
  gap: 43px;
  gap: 2.6875rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  max-width: 1093px;
  max-width: 68.3125rem;
}

.p-header__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.p-header.p-header--scroll .p-header__contents {
  -webkit-backdrop-filter: blur(5px) saturate(110%);
  backdrop-filter: blur(5px) saturate(110%);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6.25rem;
  background-color: rgba(255, 255, 255, .4);
  padding: 0 27px 0 40px;
  padding: 0 1.6875rem 0 2.5rem;
  height: 60px;
  height: 3.75rem;
}

.p-header__companyName {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-header__logo {
  width: 93px;
  width: 5.8125rem;
}

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

.p-header__name {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: normal;
}

.p-header.p-header--scroll .p-header__name {
  margin-bottom: 3px;
  margin-bottom: .1875rem;
  color: #163F90;
}

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

.p-header__pcNav-items {
  gap: 14px;
  gap: .875rem;
}

.p-header__pcNav-item-link {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
  color: #FFF;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-header.p-header--scroll .p-header__pcNav-item-link {
  color: #163F90;
}

.p-header__pcButton {
  width: 100%;
  max-width: 186px;
  max-width: 11.625rem;
}

.p-header.p-header--scroll .p-header__pcButton {
  max-width: 200px;
  max-width: 12.5rem;
}

.p-header__pcButton-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 6.25rem;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  padding: 17px 17px 18px 18px;
  padding: 1.0625rem 1.0625rem 1.125rem 1.125rem;
  width: 100%;
  overflow: hidden;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-header__pcButton-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: inherit;
  background: var(--gradation01, linear-gradient(95deg, #5EDCFF 0%, #113B91 100%));
  content: '';
}

.p-header.p-header--scroll .p-header__pcButton-link {
  height: 60px;
  height: 3.75rem;
}

.p-header__pcButton-link-text {
  position: relative;
  z-index: 1;
  padding-right: 31px;
  padding-right: 1.9375rem;
}

.p-header__pcButton-link-text::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_link_white_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  width: 1.125rem;
  content: '';
}

.p-header__modalButton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 22;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  cursor: pointer;
  border-radius: 50%;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  overflow: hidden;
}

.p-header__modalButton::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: inherit;
  background: var(--gradation01, linear-gradient(95deg, #5EDCFF 0%, #113B91 100%));
  content: '';
}

.p-header__modalButton span {
  position: absolute;
  left: 15px;
  left: .9375rem;
  z-index: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-color: #FFF;
  height: 1px;
}

.p-header__modalButton span:nth-child(1) {
  top: 19px;
  top: 1.1875rem;
  width: 24px;
  width: 1.5rem;
}

.p-header__modalButton span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
}

.p-header__modalButton span:nth-child(3) {
  bottom: 19px;
  bottom: 1.1875rem;
  left: 21px;
  left: 1.3125rem;
  width: 18px;
  width: 1.125rem;
}

.p-header--scroll .p-header__modalButton {
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
}

.p-header--scroll .p-header__modalButton span {
  left: 14px;
  left: .875rem;
}

.p-header--scroll .p-header__modalButton span:nth-child(1) {
  top: 17px;
  top: 1.0625rem;
}

.p-header--scroll .p-header__modalButton span:nth-child(3) {
  bottom: 17px;
  bottom: 1.0625rem;
  left: 20px;
  left: 1.25rem;
}

.p-header__modalButton.is-active span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  width: 1.25rem;
}

.p-header__modalButton.is-active span:nth-child(2) {
  opacity: 0;
}

.p-header__modalButton.is-active span:nth-child(3) {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
  width: 20px;
  width: 1.25rem;
}

.p-member {
  margin-top: 166px;
  margin-top: 10.375rem;
  background-color: #FFF;
}

.l-container.p-member__inner {
  max-width: 1396px;
  max-width: 87.25rem;
}

.p-member__header {
  margin-inline: auto;
  width: 100%;
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-member__buttonWrap {
  width: 100%;
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-member__image {
  aspect-ratio: 1336/606;
  margin-top: 95px;
  margin-top: 5.9375rem;
  border-radius: .3125rem;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 15;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  width: 100%;
  height: 100%;
}

.p-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.p-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .95;
  background: var(--Linear, linear-gradient(180deg, #83DDF6 0%, #56AEFF 100%));
  width: 100%;
  height: 100%;
}

.p-modal__content {
  position: absolute;
  top: 89px;
  top: 5.5625rem;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: calc(100% - 5.125rem);
  overflow-y: auto;
}

.p-modal.with-scroll-header .p-modal__content {
  top: 60px;
  top: 3.75rem;
  height: calc(100% - 3.75rem);
}

.p-modal.is-active .p-modal__content {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-modal__inner {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 46px 40px 100px;
  padding: 2.875rem 2.5rem 6.25rem;
  width: 100%;
  max-width: 720px;
  max-width: 45rem;
  min-height: 100%;
}

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

.p-modal__nav-items {
  gap: 21px;
  gap: 1.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-modal__nav-item-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 2px;
  padding: .125rem;
  color: #FFF;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 33.54px;
  font-size: 2.09625rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-modal__nav-item-link-ja {
  margin-top: 8px;
  margin-top: .5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-modal__nav-item-link--icon {
  padding-right: 35px;
  padding-right: 2.1875rem;
}

.p-modal__nav-item-link--icon::before, .p-modal__nav-item-link--icon::after {
  aspect-ratio: 1/1;
  position: absolute;
  top: 36%;
  right: 4px;
  right: .25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.p-modal__nav-item-link--icon::before {
  opacity: 1;
  background-image: url(../img/common/icon_link_white_01.png);
}

.p-modal__nav-item-link--icon::after {
  opacity: 0;
  background-image: url(../img/common/icon_link_blue_01.png);
}

.p-modal__other {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 144px;
  margin-top: 9rem;
  margin-left: -6px;
  margin-left: -.375rem;
}

.p-modal__other-note {
  display: block;
  position: relative;
  width: 108.83px;
  width: 6.801875rem;
  height: 40.65px;
  height: 2.540625rem;
}

.p-modal__other-note::before, .p-modal__other-note::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: '';
}

.p-modal__other-note::before {
  opacity: 1;
  background-image: url(../img/common/logo_note_white_01.png);
}

.p-modal__other-note::after {
  opacity: 0;
  background-image: url(../img/common/logo_note_blue_01.png);
}

.p-modal__other-privacy {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.5;
}

.p-mv {
  position: relative;
  background-color: #9BD4E4;
  width: 100vw;
  overflow: hidden;
}

.p-mv.is-blurred .p-mv__video {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: -webkit-filter .5s ease;
  transition: -webkit-filter .5s ease;
  transition: filter .5s ease;
  transition: filter .5s ease, -webkit-filter .5s ease;
}

.p-mv__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.p-mv__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  min-height: 43.75rem;
}

.p-mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  will-change: transform, opacity;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.p-mv__text[data-number='1'] {
  left: 53%;
  opacity: 1;
  max-width: 445.96px;
  max-width: 27.8725rem;
}

.p-mv__text[data-number='2'] {
  opacity: 0;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-mv__text[data-number='3'] {
  opacity: 0;
  max-width: 500px;
  max-width: 31.25rem;
}

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

.p-mv__scroll {
  position: absolute;
  bottom: 30px;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  border: 1px solid #163F90;
  border-radius: 1.25rem;
  width: 16px;
  width: 1rem;
  height: 48px;
  height: 3rem;
  color: #163F90;
  text-decoration: none;
}

.p-mv__scroll::before {
  position: absolute;
  top: -21px;
  top: -1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #163F90;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.02;
  content: 'scroll';
}

.p-mv__scroll span {
  display: block;
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: 2s small-dot-move infinite running ease-out;
  animation: 2s small-dot-move infinite running ease-out;
  border-radius: 50%;
  background: #163F90;
  width: 4px;
  width: .25rem;
  height: 4px;
  height: .25rem;
}

@-webkit-keyframes small-dot-move {

  from {
    top: 15%;
    opacity: .8;
  }

  50% {
    opacity: 1;
  }

  to {
    top: 80%;
    opacity: .3;
  }
}

@keyframes small-dot-move {

  from {
    top: 15%;
    opacity: .8;
  }

  50% {
    opacity: 1;
  }

  to {
    top: 80%;
    opacity: .3;
  }
}

.p-mv__messageText {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  opacity: 1;
  margin-top: 141px;
  margin-top: 8.8125rem;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.53;
  text-align: center;
}

.p-mv__messageText-read {
  position: relative;
}

.p-mv__messageText-read::before {
  position: absolute;
  top: -12px;
  top: -.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.53;
  content: 'トプラ';
}

.p-mv__detail {
  padding-inline: 30px;
  padding-inline: 1.875rem;
  margin-inline: auto;
  position: relative;
  opacity: 1;
  margin-top: 48px;
  margin-top: 3rem;
  padding-top: 163px;
  padding-top: 10.1875rem;
  padding-bottom: 261px;
  padding-bottom: 16.3125rem;
  width: 100%;
  max-width: 1222px;
  max-width: 76.375rem;
}

.p-mv__detail-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.p-mv__detail-text {
  width: 100%;
  max-width: 524px;
  max-width: 32.75rem;
  height: auto;
}

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

.p-mv__detail-buttonWrap {
  margin-top: 92px;
  margin-top: 5.75rem;
  width: 100%;
}

.p-mv__detail-button {
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-mv__detail-map {
  position: absolute;
  top: 0;
  right: 26px;
  right: 1.625rem;
  width: 100%;
  max-width: 398.56px;
  max-width: 24.91rem;
}

.p-news {
  padding-top: 142px;
  padding-top: 8.875rem;
}

.p-news__buttonWrap {
  width: 100%;
  max-width: 223px;
  max-width: 13.9375rem;
}

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

.p-news__noPost {
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  color: #163F90;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.p-newsListItem {
  gap: 55px;
  gap: 3.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  padding: 29px 100px 28.5px 20px;
  padding: 1.8125rem 6.25rem 1.78125rem 1.25rem;
}

.p-newsListItem.p-newsListItem--archive {
  gap: 35px;
  gap: 2.1875rem;
}

.p-newsListItem__arrow {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid #163F90;
  border-radius: 50%;
  width: 56px;
  width: 3.5rem;
}

.p-newsListItem__arrow::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 17px;
  right: 1.0625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_arrow_blue_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.p-newsListItem__image {
  aspect-ratio: 233/136;
  border-radius: .3125rem;
  width: 100%;
  max-width: 233px;
  max-width: 14.5625rem;
  overflow: hidden;
}

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

.p-newsListItem__textBlock {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 1.25vw;
}

.p-newsListItem__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.p-newsListItem__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 11px;
  margin-top: .6875rem;
  width: 100%;
  max-width: 499px;
  max-width: 31.1875rem;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.8;
}

.p-newsListItem.p-newsListItem--archive .p-newsListItem__title {
  max-width: 500px;
  max-width: 31.25rem;
}

.p-newsListItem__continuation {
  display: none;
}

.p-newsListItem__reception {
  display: inline-block;
  border-radius: 2.5rem;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  padding: 1.5px 16px 3px 15px;
  padding: .09375rem 1rem .1875rem .9375rem;
  min-width: 70px;
  min-width: 4.375rem;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-newsListItem__reception.p-newsListItem__reception--ended {
  background: #AFAFAF;
}

.p-newsListItems__item {
  border-bottom: 1px solid #163F90;
}

.p-newsListItems__item:first-child {
  border-top: 1px solid #163F90;
}

.p-note {
  margin-top: 108.5px;
  margin-top: 6.78125rem;
}

.p-note__contents {
  gap: 7.0138888889vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .625rem;
  background-color: #FFF;
  padding-right: 58px;
  padding-right: 3.625rem;
  padding-left: 64px;
  padding-left: 4rem;
  width: 100%;
  height: 318px;
  height: 19.875rem;
  overflow: hidden;
}

.p-note__contents::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: inherit;
  background-color: rgba(179, 213, 241, .3);
  pointer-events: none;
  content: '';
}

.p-note__contents-image {
  aspect-ratio: 378/318;
  position: relative;
  z-index: 2;
  height: 100%;
}

.p-note__contents-textBlock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 2;
}

.p-note__contents-textBlock::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/icon_note_arrow_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  width: 3.5625rem;
  content: '';
}

.p-note__contents-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #83DDF6 0%, #56AEFF 100%);
  background-clip: text;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 65px;
  font-size: 4.0625rem;
  font-weight: 600;
  line-height: 1;
}

.p-note__contents-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.41;
}

.p-page-404 {
  padding-top: 180px;
  padding-top: 11.25rem;
}

.p-page-404__inner {
  text-align: center;
}

.p-page-404__title {
  color: #163F90;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.7777777778vw;
  font-weight: 700;
  line-height: 1.5;
}

.p-page-404__text {
  margin-top: 2.7777777778vw;
  color: #163F90;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.8;
}

.p-page-404__text p {
  margin: 0;
}

.p-page-404__text p + p {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-page-404__buttonWrap {
  margin-top: 4.1666666667vw;
  text-align: center;
}

.p-page-404__button {
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-page-about-message {
  background-color: #FFF;
}

.p-page-about-message__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1290px;
  height: 80.625rem;
  overflow: hidden;
}

.p-page-about-message__content {
  margin-inline: auto;
  position: relative;
  padding: 95px 60px 92px;
  padding: 5.9375rem 3.75rem 5.75rem;
  width: 100%;
  max-width: 932px;
  max-width: 58.25rem;
}

.p-page-about-message__content::before {
  aspect-ratio: 522.94/1131;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/about/deco_about_message_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 522.94px;
  width: 32.68375rem;
  content: '';
}

.p-page-about-message__title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  background: linear-gradient(95deg, #5EDCFF 0%, #113B91 100%);
  background-clip: text;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-page-about-message__text {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: 74px;
  margin-top: 4.625rem;
  width: 100%;
  max-width: 653px;
  max-width: 40.8125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-about-message__text p:not(:first-child) {
  margin-top: .95lh;
}

.p-page-about-message__logo {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  margin-top: 5rem;
  width: 100%;
  max-width: 236px;
  max-width: 14.75rem;
}

.p-page-about-message__logo img {
  margin-left: -4px;
  margin-left: -.25rem;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-page-about-message__buttonWrap {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}

.p-page-about-message__button {
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-page-about-message__slider {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18.1020833333vw;
  height: 100%;
  overflow: hidden;
}

.p-page-about-message__slider--left {
  margin-left: -6.67px;
  margin-left: -.416875rem;
}

.p-page-about-message__slider--right {
  margin-right: -6.67px;
  margin-right: -.416875rem;
}

.p-page-about-message__slider-track {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  will-change: transform;
}

.p-page-about-message__slider-track--up {
  -webkit-animation: slideup 30s linear infinite;
  animation: slideUp 30s linear infinite;
}

.p-page-about-message__slider-track--down {
  -webkit-animation: slidedown 30s linear infinite;
  animation: slideDown 30s linear infinite;
}

.p-page-about-message__slider-item {
  aspect-ratio: 254/185.58;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 17.6388888889vw;
  overflow: hidden;
}

.p-page-about-message__slider--right .p-page-about-message__slider-item {
  border-top-left-radius: 5px;
  border-top-left-radius: .3125rem;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: .3125rem;
}

.p-page-about-message__slider--left .p-page-about-message__slider-item {
  border-top-right-radius: 5px;
  border-top-right-radius: .3125rem;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: .3125rem;
}

.p-page-about-message__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes slideUp {

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

  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@keyframes slideUp {

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

  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@-webkit-keyframes slideDown {

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideLeftToRight {

  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideLeftToRight {

  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideRightToLeft {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes slideRightToLeft {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-page-about-statement {
  padding-top: 152px;
  padding-top: 9.5rem;
}

.l-container.p-page-about-statement__inner {
  max-width: 1195px;
  max-width: 74.6875rem;
}

.p-page-about-statement__title {
  text-align: center;
}

.p-page-about-statement__title-text {
  position: relative;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1.1;
}

.p-page-about-statement__title-text::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #163F90;
  width: 50px;
  width: 3.125rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-page-about-statement__wrap {
  gap: 124px;
  gap: 7.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 121px;
  margin-top: 7.5625rem;
  margin-left: 16px;
  margin-left: 1rem;
}

.p-page-about-statement__slideText {
  width: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-page-about-statement__textBlock {
  width: 100%;
  max-width: 566px;
  max-width: 35.375rem;
}

.p-page-about-statement__textBlock-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-page-about-statement__textBlock-title:not(:first-child) {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.p-page-about-statement__textBlock-title-color {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(95deg, #5EDCFF 0%, #48AFE1 100%);
  background-clip: text;
}

.p-page-about-statement__textBlock-text {
  margin-top: 42px;
  margin-top: 2.625rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2;
}

.p-page-member {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-page-member__linkItems {
  gap: 21px;
  gap: 1.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-page-member__linkItem {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-color: #FFF;
  padding: 20px 10px 20px 20px;
  padding: 1.25rem .625rem 1.25rem 1.25rem;
}

.p-page-member__linkItem::before {
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #163F90;
  width: 42px;
  width: 2.625rem;
  content: '';
}

.p-page-member__linkItem::after {
  aspect-ratio: 1/1;
  position: absolute;
  right: 11px;
  right: .6875rem;
  bottom: 11px;
  bottom: .6875rem;
  z-index: 2;
  background-image: url(../img/common/icon_arrow_white_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.p-page-member__linkItem-image {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 94px;
  max-width: 5.875rem;
  height: auto;
  overflow: hidden;
}

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

.p-page-member__linkItem-textBlock {
  margin-bottom: 5px;
  margin-bottom: .3125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.p-page-member__linkItem-position {
  font-size: 15px;
  font-size: .9375rem;
}

.p-page-member__linkItem-name {
  margin-top: 13px;
  margin-top: .8125rem;
  font-size: 29px;
  font-size: 1.8125rem;
}

.p-page-member__introductionItems {
  margin-top: 134px;
  margin-top: 8.375rem;
}

.p-page-member__introductionItem:not(:first-child) {
  margin-top: 83px;
  margin-top: 5.1875rem;
}

.p-page-member__introductionItem-hash {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: -5px;
  margin-bottom: -.3125rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}

.p-page-member__introductionItem-hash-icon {
  width: 100%;
  max-width: 56px;
  max-width: 3.5rem;
}

.p-page-member__introductionItem-hash-icon img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-page-member__introductionItem-hash-text {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
}

.p-page-member__introductionItem-block {
  position: relative;
  z-index: 1;
  border-radius: .3125rem;
  background-color: #FFF;
  padding: 59.5px 50px;
  padding: 3.71875rem 3.125rem;
}

.p-page-member__introductionItem-wrap {
  gap: 3.8888888889vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-page-member__introductionItem-image {
  aspect-ratio: 1/1;
  border-radius: .3125rem;
  width: 100%;
  max-width: 304px;
  max-width: 19rem;
  height: auto;
  overflow: hidden;
}

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

.p-page-member__introductionItem-textBlock {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-page-member__introductionItem-position {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1;
}

.p-page-member__introductionItem-name {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
  margin-top: .875rem;
}

.p-page-member__introductionItem-name-ja {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(95deg, #5EDCFF 0%, #113B91 100%);
  background-clip: text;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1;
}

.p-page-member__introductionItem-name-eng {
  margin-top: 4px;
  margin-top: .25rem;
  color: #42A1D7;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
}

.p-page-member__introductionItem-categories {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-page-member__introductionItem-category {
  background-color: #E9F5FA;
  padding: 4px 10px 5px 10px;
  padding: .25rem .625rem .3125rem .625rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.p-page-member__introductionItem-text {
  margin-top: 38px;
  margin-top: 2.375rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.875;
}

.p-page-member__introductionItem-comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 46px;
  margin-top: 2.875rem;
  border-radius: 5.8125rem;
  background: var(--Linear, linear-gradient(90deg, #AFD9FF 0%, #9BD4E4 100%));
  padding: 18px 11px 19px 17px;
  padding: 1.125rem .6875rem 1.1875rem 1.0625rem;
  min-height: 76px;
  min-height: 4.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-page-member__introductionItem-comment::after {
  position: absolute;
  top: -22px;
  top: -1.375rem;
  left: 139px;
  left: 8.6875rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  border-top: 22px solid #ACD8FA;
  border-top: 1.375rem solid #ACD8FA;
  border-right: 13px solid transparent;
  border-right: .8125rem solid transparent;
  border-left: 13px solid transparent;
  border-left: .8125rem solid transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  content: '';
}

.p-page-privacy {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.l-container.p-page-privacy__inner {
  max-width: 900px;
  max-width: 56.25rem;
}

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

.p-page-privacy__lead p {
  margin: 0;
}

.p-page-privacy__lead strong {
  font-weight: 700;
}

.p-page-privacy__content {
  gap: 45px;
  gap: 2.8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.p-page-privacy__section-title {
  color: #163F90;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-page-privacy__section-text {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-page-privacy__section-text p {
  margin: 0;
}

.p-page-privacy__section-list {
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 22px;
  padding-left: 1.375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  list-style: disc;
}

.p-page-privacy__section-list li {
  margin: 0;
}

.p-page-privacy__section-list li + li {
  margin-top: 8px;
  margin-top: .5rem;
}

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

.p-page-privacy__section-contact-list {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-privacy__section-contact-item {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-page-privacy__section-contact-term {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 140px;
  width: 8.75rem;
  color: #163F90;
  font-weight: 700;
}

.p-page-privacy__section-contact-desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}

.p-page-service-practicable {
  position: relative;
  background-color: #E9F5FA;
  padding-top: 144px;
  padding-top: 9rem;
  padding-bottom: 34px;
  padding-bottom: 2.125rem;
  overflow-x: clip;
}

.p-page-service-practicable::after {
  position: absolute;
  bottom: -102px;
  bottom: -6.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  border-top: 102px solid #E9F5FA;
  border-top: 6.375rem solid #E9F5FA;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-page-service-practicable__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-page-service-practicable__contents {
  margin-top: 79px;
  margin-top: 4.9375rem;
}

.p-page-service-practicable__bottom {
  gap: 7px;
  gap: .4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 114px;
  margin-top: 7.125rem;
}

.p-page-service-practicable__bottom-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-page-service-practicable__bottom-text--large {
  font-size: 34px;
  font-size: 2.125rem;
}

.p-page-service-question {
  position: relative;
  z-index: 1;
  padding-top: 208px;
  padding-top: 13rem;
}

.l-container.p-page-service-question__inner {
  max-width: 955px;
  max-width: 59.6875rem;
}

.p-page-service-question__items {
  gap: 24px 39px;
  gap: 1.5rem 2.4375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-page-service-question__item {
  position: relative;
  padding-top: 31px;
  padding-top: 1.9375rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

.p-page-service-question__item::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  background-image: url(../img/service/icon_service_question_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  width: 2.625rem;
  pointer-events: none;
  content: '';
}

.p-page-service-question__item-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .3125rem;
  background-color: #FFF;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  width: 100%;
  min-height: 88px;
  min-height: 5.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-page-service-question__item-block::after {
  position: absolute;
  bottom: -14px;
  bottom: -.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 21px solid #FFF;
  border-top: 1.3125rem solid #FFF;
  border-right: 12px solid transparent;
  border-right: .75rem solid transparent;
  border-left: 12px solid transparent;
  border-left: .75rem solid transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  content: '';
}

.p-page-service-question__bottom {
  margin-top: 106px;
  margin-top: 6.625rem;
}

.p-page-service-question__bottom-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.p-page-service-question__bottom-buttonWrap {
  text-align: center;
}

.p-page-service-question__bottom-button {
  margin-top: 68px;
  margin-top: 4.25rem;
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-results {
  background-color: #E9F5FA;
  padding-top: 127px;
  padding-top: 7.9375rem;
  padding-bottom: 164.37px;
  padding-bottom: 10.273125rem;
}

.p-results__slider {
  position: relative;
  margin-top: 62px;
  margin-top: 3.875rem;
  width: 100%;
  overflow: hidden;
}

.p-results__slider .swiper-wrapper {
  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-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.p-results__slider-item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: .3125rem;
  width: 280.47px;
  width: 17.529375rem;
  height: 166.63px;
  height: 10.414375rem;
  overflow: hidden;
}

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

.p-results__slider .swiper-slide {
  opacity: 1;
}

.p-results__slider.swiper {
  cursor: default !important;
}

.p-results__slider.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  cursor: default !important;
}

.p-results__slider.swiper .swiper-slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default !important;
  pointer-events: none;
  user-select: none;
}

.p-results__slider.swiper img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}

.p-sectionHeader {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-sectionHeader.p-sectionHeader--white {
  color: #FFF;
}

.p-sectionHeader.p-sectionHeader--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.p-sectionHeader__textBlock {
  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-sectionHeader__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-sectionHeader.p-sectionHeader--center .p-sectionHeader__title {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-sectionHeader__title-ja {
  margin-left: 2px;
  margin-left: .125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-sectionHeader--contact .p-sectionHeader__title-ja {
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0;
}

.p-sectionHeader__title-eng {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 14px;
  margin-top: .875rem;
  background: linear-gradient(95deg, #5EDCFF 0%, #113B91 100%);
  background-clip: text;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 65px;
  font-size: 4.0625rem;
  font-weight: 600;
  line-height: 1.1;
}

.p-sectionHeader.p-sectionHeader--white .p-sectionHeader__title-eng {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: #FFF;
  background-clip: text;
}

.p-sectionHeader.p-sectionHeader--contact .p-sectionHeader__title-eng {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
  margin-top: .3125rem;
  background: linear-gradient(45deg, #83DDF6 0%, #56AEFF 100%);
  background-clip: text;
  line-height: 1;
}

.p-sectionHeader__text {
  margin-top: 33px;
  margin-top: 2.0625rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-service {
  background-color: #E9F5FA;
  padding-top: 166px;
  padding-top: 10.375rem;
}

.p-service__contents {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.p-service__contents .p-service__content:not(:first-child) {
  margin-top: 61px;
  margin-top: 3.8125rem;
}

.p-page-service-practicable__contents .p-service__content:not(:first-child) {
  margin-top: 101px;
  margin-top: 6.3125rem;
}

.p-service__content-head {
  gap: 16px;
  gap: 1rem;
  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-service__content-head-text {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-service__content-head-line {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: -3px;
  margin-bottom: -.1875rem;
  background-color: #163F90;
  height: 1px;
}

.p-service__content-items {
  gap: 48px 2.0138888889vw;
  gap: 3rem 2.0138888889vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-service__content-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 253px;
  max-width: 15.8125rem;
}

.p-service__content-iconBlock {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .3125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

.p-service__content-item:nth-child(4n+1) .p-service__content-iconBlock {
  background-image: url(../img/service/bgc_service_content-item01_01.png);
}

.p-service__content-item:nth-child(4n+2) .p-service__content-iconBlock {
  background-image: url(../img/service/bgc_service_content-item02_01.png);
}

.p-service__content-item:nth-child(4n+3) .p-service__content-iconBlock {
  background-image: url(../img/service/bgc_service_content-item03_01.png);
}

.p-service__content-item:nth-child(4n) .p-service__content-iconBlock {
  background-image: url(../img/service/bgc_service_content-item04_01.png);
}

.p-service__content-icon {
  width: 155px;
  width: 9.6875rem;
  height: auto;
}

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

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

.p-service__content-jaTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-service__content-jaTitle-small {
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  line-height: 1.5;
}

.p-service__content-engTitle {
  display: inline-block;
  margin-top: 9px;
  margin-top: .5625rem;
  color: #56AEFF;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.02;
}

.p-service__content-etc {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

.p-service__content-etc--mt {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-service__bottomText {
  margin-top: 42px;
  margin-top: 2.625rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-service__buttonWrap {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: center;
}

.p-service__button {
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-single-information {
  padding-top: 15.2777777778vw;
}

.p-single-information__head {
  position: relative;
  border-bottom: 1px solid #163F90;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-single-information__head-spWrap {
  display: contents;
}

.p-single-information__meta {
  gap: 21px;
  gap: 1.3125rem;
  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;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

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

.p-single-information__category {
  border: .5px solid #163F90;
  border-radius: 1.875rem;
  background-color: #FFF;
  padding: 3px 10px 5px;
  padding: .1875rem .625rem .3125rem;
  min-width: 99px;
  min-width: 6.1875rem;
  text-align: center;
}

.p-single-information__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-single-information__titleWrap {
  gap: 19px;
  gap: 1.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 14px;
  margin-top: .875rem;
}

.p-single-information__reception {
  display: inline-block;
  border-radius: 2.5rem;
  background: var(--Linear, linear-gradient(90deg, #83DDF6 0%, #56AEFF 100%));
  padding: 3px 4px 4.94px 2px;
  padding: .1875rem .25rem .30875rem .125rem;
  min-width: 103px;
  min-width: 6.4375rem;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-single-information__reception.p-single-information__reception--ended {
  background: #AFAFAF;
}

.p-single-information__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.7;
}

.p-single-information__thumbnail {
  aspect-ratio: 1100/597;
  margin-top: 75px;
  margin-top: 4.6875rem;
  width: 100%;
  overflow: hidden;
}

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

.p-single-information__content {
  margin-top: 75px;
  margin-top: 4.6875rem;
}

.p-single-information__content h1,
.p-single-information__content h2,
.p-single-information__content h3,
.p-single-information__content h4,
.p-single-information__content h5,
.p-single-information__content h6 {
  margin-top: 73.6px;
  margin-top: 4.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
}

.p-single-information__content h1 {
  border-radius: .1875rem;
  background-color: #FFF;
  padding: 8px 30px 11px;
  padding: .5rem 1.875rem .6875rem;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 500;
}

.p-single-information__content h1 span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(95deg, #5EDCFF 0%, #113B91 100%);
  background-clip: text;
}

.p-single-information__content h2 {
  border-bottom: 1px solid #163F90;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-single-information__content h3 {
  border-bottom: 1px solid #B3D5F1;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-single-information__content h4 {
  color: #56AEFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-single-information__content h5 {
  color: #56AEFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-single-information__content h6 {
  color: #56AEFF;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-single-information__content p {
  margin-top: 32px;
  margin-top: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.9;
}

.p-single-information__content a {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: #56AEFF;
  -webkit-text-decoration: underline #56AEFF;
  text-decoration: underline #56AEFF;
}

.p-single-information__content b,
.p-single-information__content strong {
  font-weight: 900;
}

.p-single-information__content ul,
.p-single-information__content ol {
  margin-top: 73.6px;
  margin-top: 4.6rem;
}

.p-single-information__content ul li,
.p-single-information__content ol li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.9;
}

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

.p-single-information__content ul li {
  position: relative;
  padding-left: 1.5em;
}

.p-single-information__content ul li::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
  margin-right: 14px;
  margin-right: .875rem;
  border-radius: 50%;
  background-color: #83DDF6;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-single-information__content ol {
  counter-reset: number;
}

.p-single-information__content ol li {
  position: relative;
  padding-left: 1.5em;
}

.p-single-information__content ol li::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
  counter-increment: number;
  margin-right: 14px;
  margin-right: .875rem;
  color: #83DDF6;
  content: counter(number) '.';
}

.p-single-information__content .u-informationList-bgc {
  margin-top: 73.6px;
  margin-top: 4.6rem;
  border-radius: .3125rem;
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-single-information__content .u-informationList-bgc ul,
.p-single-information__content .u-informationList-bgc ol {
  margin-top: 0 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-single-information__content figure {
  margin-top: 73.6px;
  margin-top: 4.6rem;
  max-width: 100%;
  overflow: hidden;
}

.p-single-information__content figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-single-information__content .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.p-single-information__content .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-single-information__content figure.wp-block-table {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single-information__content .wp-block-table {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  overflow-x: auto;
}

.p-single-information__content .wp-block-table table {
  border: 1px solid #B3D5F1;
  border-collapse: collapse;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
}

.p-single-information__content .wp-block-table table thead {
  border-bottom: 1px solid #B3D5F1;
}

.p-single-information__content .wp-block-table table th,
.p-single-information__content .wp-block-table table td {
  border: 1px solid #B3D5F1;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
}

.p-single-information__content .wp-block-table table th {
  vertical-align: middle;
  background-color: rgba(255, 255, 255, .5);
  width: 208px;
  width: 13rem;
  font-weight: 700;
}

.p-single-information__content .wp-block-table table th b,
.p-single-information__content .wp-block-table table th strong {
  font-weight: 900;
}

.p-single-information__content .wp-block-table table td {
  background-color: #FFF;
}

.p-single-information__content .wp-block-buttons {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single-information__content .wp-block-button .wp-block-button__link.wp-element-button {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #163F90;
  border-radius: 6.25rem;
  background-color: #163F90;
  padding: 21px 45px 24px;
  padding: 1.3125rem 2.8125rem 1.5rem;
  overflow: hidden;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
  text-align: center;
  text-decoration: none;
}

.p-single-information__content blockquote,
.p-single-information__content q {
  position: relative;
  margin: 40px 0;
  margin: 2.5rem 0;
  border-left: 4px solid #163F90;
  border-left: .25rem solid #163F90;
  background-color: #FFF;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  font-style: italic;
  line-height: 1.8;
}

.p-single-information__content blockquote p,
.p-single-information__content q p {
  margin-top: 0;
}

.p-single-information__content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #163F90;
}

.p-single-information__content dl dt,
.p-single-information__content dl dd {
  border-top: 1px solid #163F90;
  padding: 12px 16px;
  padding: .75rem 1rem;
}

.p-single-information__content dl dt {
  width: 30%;
  font-weight: 700;
}

.p-single-information__content dl dd {
  width: 70%;
}

.p-single-information__content figcaption {
  margin-top: 8px;
  margin-top: .5rem;
  color: #163F90;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.6;
  text-align: center;
}

.p-single-information__content hr {
  margin: 48px 0;
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #163F90;
}

.p-single-information__content pre {
  border-radius: .25rem;
  background-color: #F3F3F3;
  padding: 12px;
  padding: .75rem;
  overflow-x: auto;
  font-family: monospace;
  font-size: 14px;
  font-size: .875rem;
}

.p-single-information__content code {
  border-radius: .1875rem;
  background-color: #F3F3F3;
  padding: 2px 6px;
  padding: .125rem .375rem;
  font-family: monospace;
  font-size: 14px;
  font-size: .875rem;
}

.p-single-information__content pre code {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

.p-single-information__content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-single-information__content .wp-container-core-group-is-layout-8cf370e7 p {
  margin: 0;
}

.p-single-information__buttonWrap {
  margin-top: 95px;
  margin-top: 5.9375rem;
  text-align: center;
}

.p-single-information__button {
  max-width: 329px;
  max-width: 20.5625rem;
}

.p-subMv {
  background: linear-gradient(203deg, #A4E8EB .75%, #1981CB 98.73%);
  width: 100%;
  height: 466px;
  height: 29.125rem;
}

.p-subMv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
  height: inherit;
}

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

.p-subMv__title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.02;
}

.p-subMv__title-eng {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 105px;
  font-size: 6.5625rem;
  font-weight: 600;
  line-height: 1.1;
}

.u-bg-white {
  background-color: #FFF;
}

.u-color-black {
  color: #163F90;
}

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

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

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

.u-fw-medium {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

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

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

.u-onlyPc {
  display: block;
}

.u-onlySp {
  display: none;
}

.u-onlySm {
  display: none;
}

.u-overSm {
  display: none;
}

.u-indent {
  text-indent: -1.4em;
}

.u-lh-1 {
  line-height: 1;
}

.u-tel {
  pointer-events: none;
}

.u-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.8;
}

.u-text p:not(:first-child) {
  margin-top: 1lh;
}

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

  .u-overSm {
    display: block;
  }
}

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

  .p-event__listItem {
    width: calc((100vw - 1.75rem) / 2.5);
    max-width: calc((100vw - 1.75rem) / 2.5);
  }
}

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

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

  html {
    font-size: 1.4545454545vw;
  }

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

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

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

  .l-container.l-container--wide {
    max-width: 1370px;
    max-width: 85.625rem;
  }

  .c-button:hover::after {
    opacity: 1;
  }

  .c-button:hover::before {
    z-index: 2;
  }

  .c-button.c-button--white:hover::after {
    opacity: 1;
  }

  .c-button.c-button--contact:hover {
    color: #FFF;
  }

  .c-button.c-button--contact:hover::after {
    opacity: 1;
  }

  .c-button.c-button--contact:hover .c-button__icon::before {
    opacity: 0;
  }

  .c-button.c-button--contact:hover .c-button__icon::after {
    opacity: 1;
  }

  .p-archive-information__category:hover {
    background-color: #163F90;
    color: #FFF;
  }

  .p-archivePagination__inner .page-numbers li a:hover {
    color: #163F90;
  }

  .p-archivePagination__inner .page-numbers li a.prev:hover .p-archivePagination__arrow,
  .p-archivePagination__inner .page-numbers li a.next:hover .p-archivePagination__arrow {
    opacity: .6;
  }

  .p-event__nav-button:hover {
    background-color: rgba(255, 255, 255, .2);
  }

  .p-eventListItem:hover .p-eventListItem__image img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  .p-footer__nav-item-link:hover {
    color: #163F90;
  }

  .p-footer__nav-item-link.p-footer__nav-item-link--icon:hover::before {
    opacity: 0;
  }

  .p-footer__nav-item-link.p-footer__nav-item-link--icon:hover::after {
    opacity: 1;
  }

  .p-footer__other-note:hover::before {
    opacity: 0;
  }

  .p-footer__other-note:hover::after {
    opacity: 1;
  }

  .p-footer__other-privacy:hover {
    color: #163F90;
  }

  .p-footer__pageTop-link:hover {
    color: #163F90;
  }

  .p-footer__pageTop-link:hover .p-footer__pageTop-link-arrow {
    border-color: #163F90;
  }

  .p-footer__pageTop-link:hover .p-footer__pageTop-link-arrow::before {
    border-color: #163F90;
  }

  .p-header__pcNav-item-link:hover {
    color: #163F90;
  }

  .p-header.p-header--scroll .p-header__pcNav-item-link:hover {
    color: #56AEFF;
  }

  .p-header__pcButton-link:hover::before {
    opacity: 1;
  }

  .p-header__modalButton:hover::before {
    opacity: 1;
  }

  .p-modal__nav-item-link:hover {
    color: #163F90;
  }

  .p-modal__nav-item-link--icon:hover::before {
    opacity: 0;
  }

  .p-modal__nav-item-link--icon:hover::after {
    opacity: 1;
  }

  .p-modal__other-note:hover::before {
    opacity: 0;
  }

  .p-modal__other-note:hover::after {
    opacity: 1;
  }

  .p-modal__other-privacy:hover {
    color: #163F90;
  }

  .p-newsListItem:hover {
    background-color: rgba(179, 213, 241, .3);
  }

  .p-note__contents:hover::before {
    opacity: 1;
  }

  .p-page-about-statement__slideText {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    top: 9.375rem;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .p-page-member__linkItem:hover {
    background-color: rgba(255, 255, 255, .6);
  }

  .p-single-information__content a:hover {
    opacity: .7;
  }

  .p-single-information__content .wp-block-button .wp-block-button__link.wp-element-button:hover {
    opacity: 1;
    background-color: #FFF;
    color: #163F90;
  }

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

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

  .p-header__modalButton {
    display: none;
  }
}

@media (min-width: 1100px) {

  html {
    font-size: 16px;
  }
}

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

  .p-archive-information__wrap {
    gap: 66px;
    gap: 4.125rem;
  }

  .p-contact__contents {
    padding: 62px 93px 58px 95px;
    padding: 3.875rem 5.8125rem 3.625rem 5.9375rem;
  }

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

  .p-footer__wrap {
    gap: 137px;
    gap: 8.5625rem;
  }

  .p-mv__text[data-number='1'] {
    max-width: 30.9694444444vw;
  }

  .p-mv__text[data-number='2'] {
    max-width: 34.7222222222vw;
  }

  .p-mv__text[data-number='3'] {
    max-width: 34.7222222222vw;
  }

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

  .p-note__contents {
    gap: 101px;
    gap: 6.3125rem;
  }

  .p-page-404__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-page-404__text {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-page-about-message__slider {
    width: 260.67px;
    width: 16.291875rem;
  }

  .p-page-about-message__slider-item {
    width: 254px;
    width: 15.875rem;
  }

  .p-service__content-items {
    gap: 48px 29px;
    gap: 3rem 1.8125rem;
  }

  .p-single-information {
    padding-top: 220px;
    padding-top: 13.75rem;
  }
}

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

  .p-footer__other {
    padding-right: 26px;
    padding-right: 1.625rem;
  }
}

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

  .p-header.p-header--scroll .p-header__contents {
    padding-right: 5px;
    padding-right: .3125rem;
  }

  .p-header__pcNav {
    display: none;
  }

  .p-header__pcButton {
    display: none;
  }

  .p-newsListItem__textBlock {
    margin-top: .6944444444vw;
  }
}

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

  .l-container {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .l-foot {
    margin-top: 98px;
    margin-top: 6.125rem;
  }

  .l-foot--sub {
    margin-top: 96px;
    margin-top: 6rem;
  }

  .c-button::before {
    right: 22px;
    right: 1.375rem;
  }

  .p-archive-information {
    padding-top: 20px;
    padding-top: 1.25rem;
  }

  .p-archive-information__wrap {
    gap: 44px;
    gap: 2.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-archive-information__categoryWrap {
    padding-inline: 23px;
    padding-inline: 1.4375rem;
    max-width: initial;
  }

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

  .p-archive-information__categories {
    gap: 7px;
    gap: .4375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-archive-information__category {
    padding-top: 9.4px;
    padding-top: .5875rem;
    padding-bottom: 11.6px;
    padding-bottom: .725rem;
    font-size: 17.1px;
    font-size: 1.06875rem;
  }

  .p-archive-information__noPost {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-archivePagination {
    margin-top: 72px;
    margin-top: 4.5rem;
  }

  .p-contact__contents {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 48px 23px;
    padding: 3rem 1.4375rem;
  }

  .p-contact__text {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: 0;
  }

  .p-contact__text-large {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .p-contact__text-small {
    line-height: 1.5;
  }

  .p-contact__buttonWrap {
    gap: 17px;
    gap: 1.0625rem;
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .p-event {
    margin-top: 19.59px;
    margin-top: 1.224375rem;
    padding-top: 76px;
    padding-top: 4.75rem;
    padding-bottom: 87px;
    padding-bottom: 5.4375rem;
  }

  .l-container.p-event__inner {
    max-width: initial;
  }

  .p-event__wrapper {
    margin-top: 43px;
    margin-top: 2.6875rem;
    padding-left: 0;
  }

  .p-event__navigation {
    display: none;
  }

  .p-event__cards-wrapper {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
  }

  .p-event__listItems {
    gap: 10px;
    gap: .625rem;
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-event__listItems::after {
    width: calc((100vw - 18.0625rem) / 2 + 1.25rem);
  }

  .p-event__listItem {
    scroll-snap-align: center;
    width: 289px;
    width: 18.0625rem;
    max-width: 289px;
    max-width: 18.0625rem;
  }

  .p-event__buttonWrap {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-event__button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-event__noPost {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-eventListItem {
    padding: 21px 21.32px 14px;
    padding: 1.3125rem 1.3325rem .875rem;
  }

  .p-eventListItem__body {
    margin-top: 5px;
    margin-top: .3125rem;
  }

  .p-eventListItem__reception {
    padding: 1.5px 10px 2.5px 11px;
    padding: .09375rem .625rem .15625rem .6875rem;
    min-width: 57px;
    min-width: 3.5625rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-eventListItem__textBlock {
    margin-top: 7.45px;
    margin-top: .465625rem;
    margin-bottom: 25px;
    margin-bottom: 1.5625rem;
    padding-bottom: 15px;
    padding-bottom: .9375rem;
  }

  .p-eventListItem__textBlock::before {
    bottom: -24px;
    bottom: -1.5rem;
  }

  .p-eventListItem__title {
    -webkit-line-clamp: 3;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-footer {
    margin-top: 45px;
    margin-top: 2.8125rem;
    padding-top: 163px;
    padding-top: 10.1875rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-footer__video {
    -webkit-mask-image: radial-gradient(ellipse 156% 100% at 50% 100%, black 0%, black 85%, rgba(0, 0, 0, .8) 90%, rgba(0, 0, 0, .5) 93%, rgba(0, 0, 0, .3) 95%, rgba(0, 0, 0, .1) 97%, transparent 100%);
    mask-image: radial-gradient(ellipse 156% 100% at 50% 100%, black 0%, black 85%, rgba(0, 0, 0, .8) 90%, rgba(0, 0, 0, .5) 93%, rgba(0, 0, 0, .3) 95%, rgba(0, 0, 0, .1) 97%, transparent 100%);
  }

  .l-container.p-footer__inner {
    padding-inline: 38px;
    padding-inline: 2.375rem;
  }

  .p-footer__wrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-footer__companyName {
    margin-left: 4px;
    margin-left: .25rem;
    max-width: initial;
  }

  .p-footer__companyName-logo {
    max-width: 215px;
    max-width: 13.4375rem;
  }

  .p-footer__companyName-text {
    margin-top: 14px;
    margin-top: .875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 51px;
    margin-top: 3.1875rem;
    width: 100%;
  }

  .p-footer__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 64px;
    margin-top: 4rem;
    padding-right: 0;
  }

  .p-footer__pageTop {
    right: 27px;
    right: 1.6875rem;
    bottom: 111.45px;
    bottom: 6.965625rem;
  }

  .p-footer__pageTop-link {
    gap: 10px;
    gap: .625rem;
    font-size: 11.9px;
    font-size: .74375rem;
  }

  .p-footer__pageTop-link-arrow {
    border: .7px solid #FFF;
    width: 53.55px;
    width: 3.346875rem;
  }

  .p-footer__pageTop-link-arrow::before {
    width: 8px;
    width: .5rem;
  }

  .p-footer__copyright {
    margin-top: 68px;
    margin-top: 4.25rem;
  }

  .p-header {
    padding-right: 14px;
    padding-right: .875rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    height: 82px;
    height: 5.125rem;
  }

  .p-header.p-header--scroll {
    padding-right: 12px;
    padding-right: .75rem;
    padding-left: 11px;
    padding-left: .6875rem;
  }

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

  .p-header.p-header--scroll .p-header__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header.p-header--scroll .p-header__contents {
    padding-right: 3px;
    padding-right: .1875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }

  .p-header__companyName {
    gap: 15px;
    gap: .9375rem;
    margin-top: 0;
  }

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

  .p-header__name {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-header.p-header--scroll .p-header__name {
    margin-bottom: 4px;
    margin-bottom: .25rem;
  }

  .p-member {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .l-container.p-member__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .p-member__buttonWrap {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-member__image {
    aspect-ratio: 335/201.41;
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .p-mv__wrap {
    min-height: 470px;
    min-height: 29.375rem;
  }

  .p-mv__text[data-number='1'] {
    left: 57%;
    width: 70vw;
    max-width: 400px;
    max-width: 25rem;
  }

  .p-mv__text[data-number='2'] {
    width: 71vw;
    max-width: 420px;
    max-width: 26.25rem;
  }

  .p-mv__text[data-number='3'] {
    width: 71vw;
    max-width: 420px;
    max-width: 26.25rem;
  }

  .p-mv__scroll {
    bottom: 23px;
    bottom: 1.4375rem;
  }

  .p-mv__messageText {
    margin-top: 63px;
    margin-top: 3.9375rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-mv__messageText-read::before {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-mv__detail {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    margin-top: 41px;
    margin-top: 2.5625rem;
    padding-top: 76px;
    padding-top: 4.75rem;
    padding-bottom: 111px;
    padding-bottom: 6.9375rem;
  }

  .p-mv__detail-content {
    padding-left: 0;
    max-width: 450px;
    max-width: 28.125rem;
  }

  .p-mv__detail-buttonWrap {
    margin-top: 56px;
    margin-top: 3.5rem;
  }

  .p-mv__detail-button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-mv__detail-map {
    right: -21.28px;
    right: -1.33rem;
    max-width: 242px;
    max-width: 15.125rem;
  }

  .p-news {
    padding-top: 76px;
    padding-top: 4.75rem;
  }

  .p-news__inner {
    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-news__header {
    display: contents;
  }

  .p-news__buttonWrap {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 auto;
    margin-top: 38px;
    margin-top: 2.375rem;
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-news__listItems {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 42px;
    margin-top: 2.625rem;
  }

  .p-news__noPost {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-newsListItem {
    gap: 15px;
    gap: .9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 17px 0 20.2px;
    padding: 1.0625rem 0 1.2625rem;
  }

  .p-newsListItem.p-newsListItem--archive {
    gap: 12px;
    gap: .75rem;
  }

  .p-newsListItem__arrow {
    display: none;
  }

  .p-newsListItem__image {
    max-width: 100%;
  }

  .p-newsListItem__textBlock {
    margin-top: 0;
  }

  .p-newsListItem__title {
    -webkit-line-clamp: 3;
    margin-top: 8px;
    margin-top: .5rem;
    max-width: 100%;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.7;
  }

  .p-newsListItem.p-newsListItem--archive .p-newsListItem__title {
    max-width: 100%;
  }

  .p-newsListItem__continuation {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.7;
  }

  .p-newsListItem__reception {
    padding: 1.5px 10px 2.5px 11px;
    padding: .09375rem .625rem .15625rem .6875rem;
    min-width: 57px;
    min-width: 3.5625rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-note {
    margin-top: 49px;
    margin-top: 3.0625rem;
  }

  .p-note__contents {
    gap: 25px;
    gap: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 24px 0 18px;
    padding: 1.5rem 0 1.125rem;
    height: auto;
  }

  .p-note__contents-image {
    aspect-ratio: 335/148;
    width: 100%;
    height: auto;
  }

  .p-note__contents-textBlock {
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-left: 23px;
    padding-left: 1.4375rem;
    width: 100%;
  }

  .p-note__contents-textBlock::before {
    top: initial;
    right: 18.16px;
    right: 1.135rem;
    bottom: 0;
    -webkit-transform: initial;
    transform: initial;
    width: 36.84px;
    width: 2.3025rem;
  }

  .p-note__contents-title {
    font-size: 48px;
    font-size: 3rem;
  }

  .p-note__contents-text {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-page-404 {
    padding-top: 124px;
    padding-top: 7.75rem;
    padding-bottom: 124px;
    padding-bottom: 7.75rem;
  }

  .p-page-404__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-page-404__text {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-404__buttonWrap {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-page-404__button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-page-about-message {
    padding-top: 23px;
    padding-top: 1.4375rem;
  }

  .p-page-about-message__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: initial;
  }

  .p-page-about-message__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding: 78px 19.6px 0 20px;
    padding: 4.875rem 1.225rem 0 1.25rem;
    max-width: 540px;
    max-width: 33.75rem;
  }

  .p-page-about-message__content::before {
    width: 100%;
    max-width: 326.43px;
    max-width: 20.401875rem;
  }

  .p-page-about-message__title {
    font-size: 39px;
    font-size: 2.4375rem;
  }

  .p-page-about-message__text {
    margin-top: 38px;
    margin-top: 2.375rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.9;
  }

  .p-page-about-message__logo {
    margin-top: 38.5px;
    margin-top: 2.40625rem;
    max-width: 172px;
    max-width: 10.75rem;
  }

  .p-page-about-message__logo img {
    margin-left: 0;
  }

  .p-page-about-message__buttonWrap {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-page-about-message__button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-page-about-message__slider {
    width: 100%;
    height: auto;
    overflow-x: hidden;
  }

  .p-page-about-message__slider--left {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 49px;
    margin-top: 3.0625rem;
    margin-left: 0;
  }

  .p-page-about-message__slider--right {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 4.51px;
    margin-top: .281875rem;
    margin-right: 0;
  }

  .p-page-about-message__slider-track {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-page-about-message__slider-track--up {
    -webkit-animation: slidelefttoright 30s linear infinite;
    animation: slideLeftToRight 30s linear infinite;
  }

  .p-page-about-message__slider-track--down {
    -webkit-animation: sliderighttoleft 30s linear infinite;
    animation: slideRightToLeft 30s linear infinite;
  }

  .p-page-about-message__slider-item {
    aspect-ratio: 184.68/131.49;
    width: 184.68px;
    width: 11.5425rem;
  }

  .p-page-about-message__slider--right .p-page-about-message__slider-item {
    border-radius: .3125rem;
  }

  .p-page-about-message__slider--left .p-page-about-message__slider-item {
    border-radius: .3125rem;
  }

  .p-page-about-statement {
    padding-top: 76px;
    padding-top: 4.75rem;
  }

  .l-container.p-page-about-statement__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .p-page-about-statement__title-text {
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-page-about-statement__title-text::before {
    width: 30px;
    width: 1.875rem;
  }

  .p-page-about-statement__wrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 55px;
    margin-top: 3.4375rem;
    margin-left: 0;
  }

  .p-page-about-statement__slideText {
    max-width: 212.14px;
    max-width: 13.25875rem;
  }

  .p-page-about-statement__textBlock {
    padding-inline: 22px;
    padding-inline: 1.375rem;
    width: 100%;
  }

  .p-page-about-statement__textBlock-title {
    margin-top: 85.65px;
    margin-top: 5.353125rem;
    font-size: 18px;
    font-size: 1.125rem;
    white-space: nowrap;
  }

  .p-page-about-statement__textBlock-title:not(:first-child) {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-page-about-statement__textBlock-text {
    margin-top: 31px;
    margin-top: 1.9375rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .p-page-member {
    padding-top: 30px;
    padding-top: 1.875rem;
  }

  .p-page-member__linkItems {
    gap: 9.42px;
    gap: .58875rem;
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    max-width: 288.68px;
    max-width: 18.0425rem;
  }

  .p-page-member__linkItem {
    gap: 20px;
    gap: 1.25rem;
    padding: 16.36px;
    padding: 1.0225rem;
  }

  .p-page-member__linkItem::before {
    width: 34.35px;
    width: 2.146875rem;
  }

  .p-page-member__linkItem::after {
    right: 9.5px;
    right: .59375rem;
    bottom: 9.5px;
    bottom: .59375rem;
    width: 15px;
    width: .9375rem;
  }

  .p-page-member__linkItem-image {
    max-width: 76.87px;
    max-width: 4.804375rem;
  }

  .p-page-member__linkItem-textBlock {
    margin-bottom: 7px;
    margin-bottom: .4375rem;
  }

  .p-page-member__linkItem-position {
    font-size: 12.27px;
    font-size: .766875rem;
  }

  .p-page-member__linkItem-name {
    margin-top: 11px;
    margin-top: .6875rem;
    font-size: 23.72px;
    font-size: 1.4825rem;
  }

  .p-page-member__introductionItems {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .p-page-member__introductionItem:not(:first-child) {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-page-member__introductionItem-hash {
    gap: 10px;
    gap: .625rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: -4.5px;
    margin-bottom: -.28125rem;
    margin-left: 2px;
    margin-left: .125rem;
  }

  .p-page-member__introductionItem-hash-icon {
    max-width: 29px;
    max-width: 1.8125rem;
  }

  .p-page-member__introductionItem-hash-text {
    margin-top: 2px;
    margin-top: .125rem;
    margin-bottom: 0;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-page-member__introductionItem-block {
    padding: 23px;
    padding: 1.4375rem;
  }

  .p-page-member__introductionItem-wrap {
    gap: 56px;
    gap: 3.5rem;
  }

  .p-page-member__introductionItem-wrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-page-member__introductionItem-image {
    max-width: initial;
  }

  .p-page-member__introductionItem-textBlock {
    margin-top: 17px;
    margin-top: 1.0625rem;
    width: 100%;
  }

  .p-page-member__introductionItem-position {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-page-member__introductionItem-name {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-page-member__introductionItem-name-ja {
    font-size: 39px;
    font-size: 2.4375rem;
  }

  .p-page-member__introductionItem-name-eng {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-page-member__introductionItem-categories {
    gap: 5px;
    gap: .3125rem;
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-page-member__introductionItem-category {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-page-member__introductionItem-text {
    margin-top: 25px;
    margin-top: 1.5625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.81;
  }

  .p-page-member__introductionItem-comment {
    margin-top: 35px;
    margin-top: 2.1875rem;
    border-radius: .625rem;
    padding: 14px 9px 16px 10px;
    padding: .875rem .5625rem 1rem .625rem;
    min-height: initial;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .p-page-member__introductionItem-comment::after {
    top: -18px;
    top: -1.125rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
    border-top: 22px solid #A5D6F1;
    border-top: 1.375rem solid #A5D6F1;
    border-right: 12px solid transparent;
    border-right: .75rem solid transparent;
    border-left: 12px solid transparent;
    border-left: .75rem solid transparent;
  }

  .p-page-privacy {
    padding-top: 65px;
    padding-top: 4.0625rem;
  }

  .l-container.p-page-privacy__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .p-page-privacy__lead {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.9;
  }

  .p-page-privacy__content {
    gap: 35px;
    gap: 2.1875rem;
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-page-privacy__section-title {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-page-privacy__section-text {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.9;
  }

  .p-page-privacy__section-list {
    margin-top: 14px;
    margin-top: .875rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.9;
  }

  .p-page-privacy__section-list li + li {
    margin-top: 7px;
    margin-top: .4375rem;
  }

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

  .p-page-privacy__section-contact-list {
    gap: 12px;
    gap: .75rem;
  }

  .p-page-privacy__section-contact-item {
    gap: 4px;
    gap: .25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.7;
  }

  .p-page-privacy__section-contact-term {
    width: 100%;
  }

  .p-page-service-practicable {
    padding-top: 54px;
    padding-top: 3.375rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .p-page-service-practicable::after {
    bottom: -43px;
    bottom: -2.6875rem;
    border-top: 43px solid #E9F5FA;
    border-top: 2.6875rem solid #E9F5FA;
  }

  .p-page-service-practicable__title {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .p-page-service-practicable__contents {
    margin-top: 54px;
    margin-top: 3.375rem;
  }

  .p-page-service-practicable__bottom {
    gap: 5px;
    gap: .3125rem;
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-page-service-practicable__bottom-text {
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-page-service-practicable__bottom-text--large {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-page-service-question {
    padding-top: 71px;
    padding-top: 4.4375rem;
  }

  .l-container.p-page-service-question__inner {
    max-width: 580px;
    max-width: 36.25rem;
  }

  .p-page-service-question__items {
    gap: 8px;
    gap: .5rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .p-page-service-question__item {
    padding-top: 24.26px;
    padding-top: 1.51625rem;
    padding-bottom: 12.2px;
    padding-bottom: .7625rem;
  }

  .p-page-service-question__item::before {
    width: 32.87px;
    width: 2.054375rem;
  }

  .p-page-service-question__item-block {
    padding: 5px 16px;
    padding: .3125rem 1rem;
    min-height: 74px;
    min-height: 4.625rem;
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.43;
  }

  .p-page-service-question__item-block::after {
    bottom: -12px;
    bottom: -.75rem;
  }

  .p-page-service-question__bottom {
    margin-top: 33.41px;
    margin-top: 2.088125rem;
  }

  .p-page-service-question__bottom-text {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.7;
  }

  .p-page-service-question__bottom-button {
    margin-top: 42px;
    margin-top: 2.625rem;
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-results {
    padding-top: 81px;
    padding-top: 5.0625rem;
    padding-bottom: 43px;
    padding-bottom: 2.6875rem;
  }

  .p-results__slider {
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-results__slider-item {
    width: 143.23px;
    width: 8.951875rem;
    height: 85.09px;
    height: 5.318125rem;
  }

  .p-sectionHeader {
    gap: 38px;
    gap: 2.375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

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

  .p-sectionHeader.p-sectionHeader--contact {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .p-sectionHeader.p-sectionHeader--contact .p-sectionHeader__title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

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

  .p-sectionHeader--contact .p-sectionHeader__title-ja {
    font-size: 14px;
    font-size: .875rem;
    letter-spacing: .06em;
  }

  .p-sectionHeader__title-eng {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .p-sectionHeader.p-sectionHeader--contact .p-sectionHeader__title-eng {
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .p-sectionHeader__text {
    margin-top: 27px;
    margin-top: 1.6875rem;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: -.02em;
  }

  .p-service {
    padding-top: 76px;
    padding-top: 4.75rem;
  }

  .p-service__contents {
    margin-top: 66px;
    margin-top: 4.125rem;
  }

  .p-service__contents .p-service__content:not(:first-child) {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-page-service-practicable__contents .p-service__content:not(:first-child) {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

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

  .p-service__content-items {
    gap: 14px 18.16px;
    gap: .875rem 1.135rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 31px;
    margin-top: 1.9375rem;
  }

  .p-service__content-iconBlock {
    border-radius: .195625rem;
  }

  .p-service__content-icon {
    max-width: 26vw;
  }

  .p-service__content-textBlock {
    margin-top: 6.58px;
    margin-top: .41125rem;
  }

  .p-service__content-jaTitle {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.3;
  }

  .p-service__content-jaTitle--spLs {
    letter-spacing: -.08em;
  }

  .p-service__content-jaTitle-small {
    margin-top: 3px;
    margin-top: .1875rem;
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.3;
  }

  .p-service__content-engTitle {
    margin-top: 5px;
    margin-top: .3125rem;
  }

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

  .p-service__content-etc--mt {
    margin-top: 0;
  }

  .p-service__bottomText {
    margin-top: 33px;
    margin-top: 2.0625rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-service__button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-single-information {
    padding-top: 124px;
    padding-top: 7.75rem;
  }

  .p-single-information__head {
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
  }

  .p-single-information__head-spWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .p-single-information__reception {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5px 10px 2.5px 11px;
    padding: .09375rem .625rem .15625rem .6875rem;
    min-width: 57px;
    min-width: 3.5625rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-single-information__title {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.5;
  }

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

  .p-single-information__content h1,
  .p-single-information__content h2,
  .p-single-information__content h3,
  .p-single-information__content h4,
  .p-single-information__content h5,
  .p-single-information__content h6 {
    margin-top: 49.6px;
    margin-top: 3.1rem;
    line-height: 1.4;
  }

  .p-single-information__content h1 {
    padding: 12px 15px 13px;
    padding: .75rem .9375rem .8125rem;
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .p-single-information__content h2 {
    padding-bottom: 10px;
    padding-bottom: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-single-information__content h3 {
    padding-bottom: 10px;
    padding-bottom: .625rem;
    font-size: 19px;
    font-size: 1.1875rem;
  }

  .p-single-information__content h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-single-information__content h5 {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-single-information__content p {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-single-information__content ul,
  .p-single-information__content ol {
    margin-top: 49.6px;
    margin-top: 3.1rem;
  }

  .p-single-information__content ul li:not(:first-of-type),
  .p-single-information__content ol li:not(:first-of-type) {
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .p-single-information__content .u-informationList-bgc {
    margin-top: 49.6px;
    margin-top: 3.1rem;
    padding: 25px 23px 25px 20px;
    padding: 1.5625rem 1.4375rem 1.5625rem 1.25rem;
  }

  .p-single-information__content figure {
    margin-top: 49.6px;
    margin-top: 3.1rem;
  }

  .p-single-information__content figure.wp-block-table {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-single-information__content .wp-block-table table {
    min-width: 680px;
    min-width: 42.5rem;
  }

  .p-single-information__content .wp-block-table table th,
  .p-single-information__content .wp-block-table table td {
    padding: 10.5px 24px;
    padding: .65625rem 1.5rem;
  }

  .p-single-information__content .wp-block-buttons {
    gap: 15px;
    gap: .9375rem;
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-single-information__content .wp-block-button .wp-block-button__link.wp-element-button {
    padding: 18px 30px 21px;
    padding: 1.125rem 1.875rem 1.3125rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-single-information__content blockquote,
  .p-single-information__content q {
    margin: 32px 0;
    margin: 2rem 0;
    padding: 20px 24px;
    padding: 1.25rem 1.5rem;
  }

  .p-single-information__content dl {
    margin-top: 32px;
    margin-top: 2rem;
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }

  .p-single-information__content dl dt,
  .p-single-information__content dl dd {
    padding: 10px 12px;
    padding: .625rem .75rem;
  }

  .p-single-information__content dl dt {
    width: 100%;
  }

  .p-single-information__content dl dd {
    border-top: none;
    width: 100%;
  }

  .p-single-information__content hr {
    margin: 32px 0;
    margin: 2rem 0;
  }

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

  .p-single-information__buttonWrap {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .p-single-information__button {
    max-width: 335px;
    max-width: 20.9375rem;
  }

  .p-subMv {
    height: 227px;
    height: 14.1875rem;
  }

  .p-subMv__inner {
    padding-bottom: 31px;
    padding-bottom: 1.9375rem;
  }

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

  .p-subMv__title-eng {
    margin-top: 9px;
    margin-top: .5625rem;
    font-size: 45px;
    font-size: 2.8125rem;
  }

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

  .u-onlySp {
    display: block;
  }

  .u-tel {
    pointer-events: auto;
  }

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

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

  .p-mv__detail {
    padding-inline: 22px;
    padding-inline: 1.375rem;
  }

  .p-page-about-message__slider-track--up {
    -webkit-animation: slidelefttoright 20s linear infinite;
    animation: slideLeftToRight 20s linear infinite;
  }

  .p-page-about-message__slider-track--down {
    -webkit-animation: sliderighttoleft 20s linear infinite;
    animation: slideRightToLeft 20s linear infinite;
  }

  .u-onlySm {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}