@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Serif JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.sec-ttl {
  font-family: "Noto Serif JP", serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: .9375rem;
  color: #fff;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.sec-ttl--blue {
  color: #004EA2;
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.sec-ttl__en {
  font-size: 26px;
  font-weight: 600;
}
.sec-ttl__ja {
  font-size: 16px;
  font-weight: 400;
}
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-footer {
  padding-right: 20px;
  padding-left: 20px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
}

.l-main {
  padding-top: 60px;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #0C4A6E;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}



/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/


.c-catalog {
  background: rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  padding: 1.876rem 1.25rem;
}

.c-catalog__ttl {
  line-height: 1.6;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;

}

.c-catalog__ttl::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-catalogBtn-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.c-catalogBtn {
  display: block;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background: #FFBC00;
  padding: 20px 12px;
  padding: 1.25rem .75rem;
  overflow: hidden;
  color: #000;
  line-height: 1.6;
  width: 100%;

  font-size: 22px;
  font-size: 1.375rem;
}

.c-catalogBtn::after {
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  right: .625rem;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='white'/%3E%3Cpath d='M11.5 28.5V11.5H19.3615V12.7565H12.7565V27.2435H27.2435V20.6385H28.5V28.5H11.5ZM17.6448 23.25L16.7603 22.3553L26.359 12.7565H21.5025V11.5H28.5V18.4975H27.2435V13.6512L17.6448 23.25Z' fill='black'/%3E%3C/svg%3E");
}

.c-catalogBtn:hover {
  opacity: .8;
}

.c-catalogBtn__text {
  z-index: 1;
  letter-spacing: .02em;
  /* text-transform: uppercase; */
  white-space: nowrap;
}

.c-catalogBtn__icon {
  margin-left: 8px;
  margin-left: .5rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.c-catalogBtn__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-movie {
  aspect-ratio: 335/186;
  display: block;
  cursor: pointer;
  margin: 0 auto;
  width: 89.3vw;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.c-movie:hover {
  opacity: .7;
}

.c-movie:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}

.c-movie::after {
  content: "";
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  background: url('../img/play-btn.png') no-repeat center center/contain;
  position: absolute;
  transition: 0.2s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-movie img {
  display: block;
  background: #ccc;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-totop {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background: url('../img/btn_pagetop.png') no-repeat center center/contain;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  display: none;
}

.c-totop.is-active {
  visibility: visible;
  opacity: 1;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-catalog {
  position: relative;
  background: linear-gradient(90deg, #2279CF 0%, #38B0DC 100%);
  padding: 80px 0;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.p-catalog__ttl {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-catalog__inner {
  position: relative;
  z-index: 2;
}

.p-cta {
  background: #fff;
  padding: 1.875rem 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-cta__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#3dbddf), to(#2074ce));
  background: linear-gradient(180deg, #3dbddf 0%, #2074ce 100%);
  padding: 30px 20px;

  text-align: center;
}

.p-cta__title-en {
  /* font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif; */
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-cta__title-ja {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .075em;
}

.p-cta__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-cta__link:hover {
  opacity: .8;
}

.p-cta__text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  letter-spacing: .04em;
  text-align: center;
}

.p-cta__text span {
  font-size: 12px;
  font-size: .75rem;
  display: block;

}

.p-cta__bnr {
  transition: 0.2s;
}

.p-cta__bnr:hover {
  opacity: .8;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #000;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 8px;
  background: linear-gradient(215deg, rgb(17, 25, 135) 0%, rgb(61, 189, 223) 100%);
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, opacity .5s ease;
  transition: transform .5s ease, opacity .5s ease, -webkit-transform .5s ease;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 60px;
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 39;
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  display: grid;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  margin-top: 60px;
  background: linear-gradient(135deg,
        #0456A6 0%,
        #3CBDDE 50%,
        #00A2AE 100%);
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  overflow: auto;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 60px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: linear-gradient(135deg,
        #0456A6 0%,
        #3CBDDE 50%,
        #00A2AE 100%);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  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;
  padding: 100px 20px;
  padding: 6.25rem 20px;
  width: 100%;
}

.p-drawer__nav {
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-feature-card {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;

}
.p-feature-card ::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-feature-card ::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #004EA2;
  right: -10px;
  bottom: -10px;
  z-index: -2;
}

.p-feature-card__number {
  margin-right: auto;
  margin-left: auto;
  width: 80px;
  width: 5rem;
  height: auto;
}

.p-feature-card__number img {
  width: 100%;
  height: auto;
}

.p-feature-card__title {
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
  color: #004EA2;
  text-align: center;
}

.p-feature-card__text {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .04em;
  line-height: 1.8;
  text-transform: uppercase;
}

.p-feature {
  position: relative;
  background: #dae9f3;
  padding: 80px 0;
  padding: 5rem 0;
  overflow: hidden;
  background: url('../img/p-feature-bg-sp.webp') no-repeat center center;
  background-size: cover;
}

.p-feature__head {
  text-align: center;
}

.p-feature__head-en {
  color: #004ea2;
  /* font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif; */
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
}

.p-feature__head-en-upper {
  text-transform: uppercase;
}

.p-feature__head-ja {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.p-feature__items {
  gap: 50px;
  gap: 3.125rem;
  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: 40px;
  margin-top: 2.5rem;
}

.p-feature__item {
  position: relative;
}

.p-feature__img {
  display: block;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-feature__img img {
  aspect-ratio: 375/201;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.p-feature__card {
  margin-inline: auto;
  margin-top: -56px;
  margin-top: -3.5rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-footer {
  background-color: #f2f4f3;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  text-align: center;
}

.p-footer__logo picture,
.p-footer__logo img {
  display: block;
  width: 111px;
  height: 54px;
}

.p-footer__links {
  text-align: center;
}

.p-footer__linkList {
  gap: 8px 16px;
  gap: .5rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-footer__linkList li {
  position: relative;
  padding: 0 8px;
  padding: 0 .5rem;
}

.p-footer__linkList li::after {
  position: absolute;
  top: 50%;
  right: -8px;
  right: -.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #b9baba;
  width: 1px;
  width: .0625rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-footer__linkList li:last-child::after {
  content: none;
}

.p-footer__linkList li a {
  color: #000ebb;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-footer__linkList li a:hover {
  text-decoration: underline;
}

.p-footer__copy {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-footer__copy small {
  display: block;
  color: #333;
  font-size: 11px;
  font-size: .6875rem;
  text-transform: uppercase;
}

.p-footer__sns {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__sns img:hover {
  opacity: .7;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {

  z-index: 1;
  overflow: hidden;

}

@media screen and (max-width: 767px) {
  .p-fv {
  position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
  }
  }

.p-fv.is-fixed .p-fv__movie {
  position: fixed;
}

.p-fv.is-scrolled .p-fv__movie {
  position: absolute;
  top: auto;
  bottom: 0;
}

.p-fv__movie {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.p-fv__movie video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__head {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -80px;
  top: -5rem;
  right: 20px;
  right: 1.25rem;
  -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;
  max-width: 650px;
  max-width: 40.625rem;
}

.p-fv__title {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#2279cf), to(#38b0dc));
  background: linear-gradient(90deg, #2279cf 0%, #38b0dc 100%);
  padding: 4px 10px;
  padding: .25rem .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.0625em;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.p-fv__title strong {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.p-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  height: 60px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.p-header__logo {
  z-index: 41;
  width: 180px;
  width: 11.25rem;
  height: 90%;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__navLink {
  position: relative;
  -webkit-transition: color .1s ease;
  transition: color .1s ease;
}

.p-header__navLink:hover::after {
  position: absolute;
  bottom: -4px;
  bottom: -.25rem;
  left: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  background-color: #3b3c42;
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-header__navLink::after {
  position: absolute;
  bottom: -4px;
  bottom: -.25rem;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: #0C4A6E;
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-header__drawer {
  z-index: 41;
  height: 24px;
  height: 1.5rem;
}

.p-movie {
  position: relative;
  position: relative;
}


.p-movie a {
  overflow: clip;
}

.p-movie a img {
  -webkit-transition: scale .3s ease;
  transition: scale .3s ease;
}

.p-movie__inner {
  position: relative;
  z-index: 2;
}

.p-movie__bgText {
  position: absolute;
  top: -50px;
  top: -3.125rem;
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.p-movie__bgText-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: slide-left 10s linear infinite;
  animation: slide-left 10s linear infinite;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-movie__bgText-img img {
  aspect-ratio: 768/56;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
  margin-right: 1rem;
  width: 768px;
  width: 48rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes slide-left {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes slide-left {

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}


.p-sync {
  background: linear-gradient(90deg, #2279CF 0%, #38B0DC 100%);
  padding: 80px 0;
  padding: 5rem 0;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-sync__inner {
  position: relative;
  z-index: 3;
}

.p-sync__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/p-sync-bg-sp.png')no-repeat center center;
  background-size: cover;
  z-index: 2;
  opacity: 1;
}

.p-sync__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #2279CF, #38B0DC, #2279CF);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease-in-out infinite;
}

.fluid-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(60px) contrast(1.5);
}

.paint-drop {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* 青の絵の具 */
.blue-paint {
  background: radial-gradient(circle, #2279CF 20%, rgba(34, 121, 207, 0.8) 50%, transparent 80%);
}

/* シアンの絵の具 */
.cyan-paint {
  background: radial-gradient(circle, #38B0DC 20%, rgba(56, 176, 220, 0.8) 50%, transparent 80%);
}

/* 大きな絵の具の塊 */
.paint1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 20%;
  animation: fluidMove1 20s infinite;
}

.paint2 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: 10%;
  animation: fluidMove2 20s infinite;
}

.paint3 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: 10%;
  animation: fluidMove3 25s infinite;
}

.paint4 {
  width: 450px;
  height: 300px;
  top: 20%;
  right: 25%;
  animation: fluidMove4 18s infinite;
}

/* 中サイズの絵の具 */
.paint5 {
  width: 200px;
  height: 250px;
  top: 40%;
  left: 50%;
  animation: fluidMove5 12s infinite;
}

.paint6 {
  width: 180px;
  height: 200px;
  bottom: 30%;
  right: 40%;
  animation: fluidMove6 16s infinite;
}

/* 小さな絵の具の粒 */
.paint7 {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 60%;
  animation: fluidMove7 10s infinite;
}

.paint8 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 70%;
  animation: fluidMove8 13s infinite;
}

/* より自然な流体の動き */
@keyframes fluidMove1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  25% {
    transform: translate(-150px, 120px) scale(1.8);
    border-radius: 30% 70% 60% 40%;
  }

  50% {
    transform: translate(100px, -80px) scale(0.5);
    border-radius: 80% 20% 30% 70%;
  }

  75% {
    transform: translate(140px, 160px) scale(1.4);
    border-radius: 40% 60% 80% 20%;
  }
}

@keyframes fluidMove2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  20% {
    transform: translate(140px, -100px) scale(1.6);
    border-radius: 70% 30% 50% 50%;
  }

  50% {
    transform: translate(-120px, 140px) scale(0.6);
    border-radius: 20% 80% 40% 60%;
  }

  80% {
    transform: translate(-80px, -150px) scale(1.9);
    border-radius: 60% 40% 70% 30%;
  }
}

@keyframes fluidMove3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  30% {
    transform: translate(180px, -140px) scale(1.3);
    border-radius: 30% 70% 20% 80%;
  }

  60% {
    transform: translate(-100px, -180px) scale(2.2);
    border-radius: 80% 20% 60% 40%;
  }
}

@keyframes fluidMove4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  25% {
    transform: translate(-140px, 160px) scale(0.4);
    border-radius: 60% 40% 30% 70%;
  }

  75% {
    transform: translate(160px, -120px) scale(1.7);
    border-radius: 40% 60% 80% 20%;
  }
}

@keyframes fluidMove5 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  40% {
    transform: translate(-150px, -100px) scale(2.4);
    border-radius: 70% 30% 40% 60%;
  }

  80% {
    transform: translate(120px, 140px) scale(0.3);
    border-radius: 30% 70% 70% 30%;
  }
}

@keyframes fluidMove6 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  50% {
    transform: translate(180px, -180px) scale(1.8);
    border-radius: 20% 80% 50% 50%;
  }
}

@keyframes fluidMove7 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  35% {
    transform: translate(-120px, 80px) scale(2.8);
    border-radius: 80% 20% 30% 70%;
  }

  70% {
    transform: translate(100px, -140px) scale(0.2);
    border-radius: 30% 70% 80% 20%;
  }
}

@keyframes fluidMove8 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  60% {
    transform: translate(80px, 160px) scale(3.2);
    border-radius: 40% 60% 20% 80%;
  }
}

/* 追加の流体レイヤー */
.fluid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 40% 30%, rgba(34, 121, 207, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(56, 176, 220, 0.4) 0%, transparent 60%);
  filter: blur(80px);
  mix-blend-mode: multiply;
  animation: overlayShift 40s ease-in-out infinite;
}

@keyframes overlayShift {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.p-sync__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;

}


.p-sync__head {
  font-weight: 700;
}

.p-sync__en {
  color: #004ea2;
  /* font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif; */
  letter-spacing: .04em;
}

.p-sync__ja {
  display: block;
  margin-top: 23px;
  margin-top: 1.4375rem;
  text-align: left;
}

.p-sync__ja img {
  display: inline-block;
  width: 263px;
  width: 16.4375rem;
  max-width: 100%;
  height: auto;
}

.p-sync__lead {
  white-space: nowrap;
  font-weight: 300;
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  font-style: italic;
  padding-left: 10px;
  padding-left: 0.625rem;

}

.p-sync__ttl {
  font-size: 18px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-sync__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-sync__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}


.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}



@media screen and (min-width: 768px) {

  html {
    font-size: 1.4814814815vw;
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .sec-ttl {
    gap: 10px;
    gap: .625rem;
  }

    .sec-ttl--blue {
      margin-bottom: 80px;
      margin-bottom: 5rem;
    }

    .sec-ttl__en {
      font-size: 40px;
      font-size: 2.5rem;
    }

    .sec-ttl__ja {
      font-size: 26px;
      font-size: 1.625rem;
    }

  .l-container {
    max-width: 1080px;
  }

  .l-container.l-container--narrow {
    max-width: 924px;
  }

  .l-container.l-container--wide {
    max-width: 1356px;
  }

  .l-main {
    padding-top: 80px;
  }

  .sec-ttl {
    font-size: 80px;
    font-size: 5rem;
    gap: 10px;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    text-align: center;
  }

  .c-catalog {
    padding: 40px;
    padding: 2.5rem;
  }

    .c-catalog__ttl {
      font-size: 26px;
      font-size: 1.625rem;
      padding-bottom: 25px;
      padding-bottom: 1.5625rem;
      margin-bottom: 40px;
      margin-bottom: 2.5rem;
    }

    .c-catalogBtn-wrap {
      flex-direction: row;
      gap: 30px;
      gap: 1.875rem;
      width: 100%;
      justify-content: center;
      margin: 0 auto;
    }

  .c-catalogBtn {
    padding: 20px 40px;
    padding: 1.25rem 2.5rem;
    margin: 0 auto;
    width: 100%;
    
  }

    .c-catalogBtn::after {
      right: 40px;
      right: 1.25rem;
    }

  .c-catalogBtn__text {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .c-catalogBtn__icon {
    margin-left: 54px;
    margin-left: 3.375rem;
    width: 40px;
    width: 2.5rem;
    height: 40px;
    height: 2.5rem;
  }

  .c-movie {
    width: 100%;
    max-width: 1080px;
    max-width: 67.5rem;
  }

  .c-movie::after {
    width: 120px;
    width: 7.5rem;
    height: 120px;
    height: 7.5rem;
  }

  .p-catalog__bgText {
    margin-top: -45px;
    margin-top: -2.8125rem;
  }

  .p-catalog__bgText-img img {
    width: 2700px;
    width: 168.75rem;
  }

  .p-catalog {
    padding: 140px 0;
    padding: 8.75rem 0;
  }

  .p-cta {
    padding: 40px;
    padding: 2.5rem;
    margin: 80px auto 0;
    margin: 5rem auto 0;
  }

  .p-cta__ttl {
    margin-bottom: 0;
  }

  .p-cta__text {
    margin: 40px 0;
    margin: 2.5rem 0;
    font-size: 22px;
    font-size: 1.5rem;
  }

  .p-cta__text--s {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
  }
  .p-cta__text--s span {
    display: inline;
    font-size: 18px;
      font-size: 1.125rem;
  }

  .p-feature-card {
    position: absolute;
    top: -233px;
    top: -14.5625rem;
    left: 0;
    padding: 40px;
    padding: 2.5rem;
  }

  .p-feature__item:nth-of-type(even) .p-feature-card {
    right: 0;
    left: auto;
  }

  .p-feature-card__head {
    gap: 30px;
    gap: 1.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-feature-card__number {
    margin-right: 0;
    margin-left: 0;
    width: 180px;
    width: 11.25rem;
  }

  .p-feature-card__title {
    margin-top: 0;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.5;
    text-align: left;
  }

  .p-feature-card__text {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-feature {
    padding-top: 140px;
    padding-top: 8.75rem;
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
    background: url('../img/p-feature-bg.webp') no-repeat center center;
      background-size: cover;
  }

  .p-feature__head-en {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: .06em;
  }

  .p-feature__head-ja {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-feature__items {
    gap: 310px;
    gap: 19.375rem;
    margin-top: 310px;
    margin-top: 19.375rem;
  }

  .p-feature__item {
    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;
  }

  .p-feature__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-feature__img {
    margin-left: 0;
    width: 50vw;
    overflow: hidden;
  }

  .p-feature__img img {
    width: 100%;
  }

  .p-feature__item:nth-of-type(odd) .p-feature__img {
    margin-right: max(50% - 50vw, -400px);
    margin-right: max(50% - 50vw, -25rem);
    margin-left: auto;
  }

  .p-feature__item:nth-of-type(even) .p-feature__img {
    margin-right: auto;
    margin-left: max(50% - 50vw, -400px);
    margin-left: max(50% - 50vw, -25rem);
  }


  .p-feature__card {
    margin-top: 0;
    width: 865px;
    width: 54.0625rem;
    max-width: 80%;
  }

  .p-footer__contents {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-footer__links {
    margin-top: 0;
  }

  .p-footer__copy {
    margin-top: 0;
    text-align: left;
  }

  .p-footer__sns {
    margin-top: 0;
  }

  .p-fv {
    position: relative;
    margin-top: 0;
    z-index: -1;
    width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      top: 0;
      height: calc(100vh - 80px);
  }

  .p-fv__movie {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .p-fv__movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-fv__head {
    gap: 20px;
    gap: 1.25rem;
    top: 136px;
    top: 8.5rem;
  }

  .p-fv__title {
    padding: 6px 16px;
    padding: .375rem 1rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-size: 48px;
    font-size: 3rem;
    letter-spacing: -.045em;
  }

  .p-fv__title strong {
    font-size: 64px;
    font-size: 4rem;
  }

  .p-header {
    height: 80px;
  }

  .p-header__inner {
    padding: 0 30px;
    padding: 0 6rem;
    max-width: 100%;
  }

  .p-header__logo {
    width: 240px;
    width: 15rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li > a {
    display: block;
    color: #3b3c42;
    font-weight: bold;
  }

  .p-header__drawer {
    display: none;
  }

  .p-movie {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-movie__bgText {
    top: -115px;
    top: -7.1875rem;
  }

  .p-movie__bgText-img img {
    width: 1900px;
    width: 118.75rem;
  }

  .p-sync {
    padding: 140px 0;
    padding: 8.75rem 0;
    /* background: url('../img/p-sync-bg.png')no-repeat center center; */
      background-size: cover;
  }

  .p-sync__bg {
    background: url('../img/p-sync-bg.webp')no-repeat center center;
      background-size: cover;
  }

  .p-sync__en {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-sync__ja {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-sync__ja img {
    width: 370px;
    width: 23.125rem;
  }

  .p-sync__lead {
    font-size: 80px;
    
      font-size: 5rem;
      line-height: 1.5;
      margin-bottom: 60px;
      margin-bottom: 3.75rem;
      padding-left: 50px;
      padding-left: 3.125rem;
  }

  .p-sync__ttl {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .p-sync__lead p {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-sync__text-wrap {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-sync__text {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 300;

  }

  .p-sync__text p {
  }
}

@media screen and (max-width: 1400px) and (min-width: 768px) {

  .p-fv {
    height: auto;
  }

      .p-fv__movie video {
        height: auto;
      }

  .p-feature__card {
    width: 700px;
    width: 43.75rem;
    }

    .p-feature-card__number {
      width: 140px;
      width: 8.75rem;
    }

    .p-feature-card__title {
      font-size: 32px;
      font-size: 2rem;
      text-align: left;
    }

    .p-feature__img {
      width: 60vw;
    }

}

@media screen and (min-width: 1400px) {
    .p-feature__inner {
      max-width: 77.142vw;
    }
}

@media screen and (min-width: 1920px) {
  
  .p-feature__card {
    padding: 2.08vw;
    /* 40px / 1920px * 100 */
    width: 45.052vw;
    max-width: 100%;
  }

  .p-feature-card__number {
    width: 9.375vw;
    /* 180px / 1920px * 100 */
    max-width: 25%;
  }

  .p-feature-card__title {
    font-size: 1.68vw;
    /* 40px / 1920px * 100 */
  }

  .p-feature-card__text {
    font-size: 0.9375vw;
    /* 18px / 1920px * 100 */
    margin-top: 0.625vw;
    /* 12px / 1920px * 100 */
  }

  .p-feature-card__head {
    gap: 1.56vw;
    /* 30px / 1920px * 100 */
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1080px) {

  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .u-hidden--sp {
    display: none !important;
  }

  .p-footer__linkList{
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
    padding-top: 1.875rem;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}