@charset "UTF-8";
:root {
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Hind", sans-serif;
  --color-brand-blue: #001F6B;
  --color-brand-red: #E40046;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-text: #000C2B;
  --color-link: #003AC8;
  --color-red01: #F3E0E6;
  --color-red02: #EACFD7;
  --color-red03: #E2648B;
  --color-red04: #CD0000;
  --color-tonegray01: #E6EAF5;
  --color-tonegray02: #9FAFD7;
  --color-tonegray03: #7B87A4;
  --color-tonegray04: #59688C;
  --color-tonegray05: #384460;
  --color-tonegray05-rgb: 56, 68, 96;
  --color-gray01: #F0EFEF;
  --color-gray02: #E0E0E0;
  --color-gray03: #B0B0B0;
  --color-gray04: #424242;
  --color-gray05: #333333;
  --color-bg01: #F5F6FA;
}

/* selection
----------------------------------------------- */
/* html
----------------------------------------------- */
html {
  font-size: 62.5%;
}

/* body
----------------------------------------------- */
body {
  color: var(--color-text);
  background-color: var(--color-bg01);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* sp */
@media only screen and (max-width: 820px) {
  body {
    font-size: 1.5rem;
  }
}
button,
input,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
}

a {
  color: var(--color-text500);
  text-decoration: none;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

*, :after, :before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* display
----------------------------------------------- */
/* pc */
@media only screen and (min-width: 821px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
/* sp */
@media only screen and (max-width: 820px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/* for screen reader
----------------------------------------------- */
.u-visually-hidden,
.u-visually-hidden-focusable:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* inview
----------------------------------------------- */
.js-inview.is-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  will-change: transform;
}
.js-inview-start.is-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.js-inview-start.is-fade:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-inview-start.is-fade:nth-of-type(2) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

/* sp */
/* stagger
----------------------------------------------- */
.js-stagger-ready > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-stagger-ready > *.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* inview
----------------------------------------------- */
.js-scrollscale {
  overflow: hidden;
}
.js-scrollscale img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/* scrllable
----------------------------------------------- */
.js-scrollable {
  position: relative;
}
.js-scrollable__outer {
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.js-scrollable__outer::-webkit-scrollbar {
  display: none;
}
.js-scrollable-scroll {
  position: relative;
  width: 100%;
  height: 12px;
  margin: 24px auto 0;
  z-index: 1;
}
.js-scrollable-track {
  width: 100%;
  height: 100%;
  padding: 2px;
  background-color: var(--color-gray02);
  border-radius: 100px;
  overflow: hidden;
}
.js-scrollable-thumb {
  width: 50%;
  height: 8px;
  background-color: var(--color-tonegray04);
  border-radius: 100px;
}

/* fixed area
----------------------------------------------- */
.js-fixed-area {
  position: relative;
}

/* keyframes
----------------------------------------------- */
@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrow-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrow-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes zoomUp {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes zoomUp {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes blur {
  0% {
    backdrop-filter: blur(8px);
  }
  100% {
    backdrop-filter: none;
  }
}
@keyframes blur {
  0% {
    backdrop-filter: blur(8px);
  }
  100% {
    backdrop-filter: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0.25;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@keyframes loading {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0.25;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@-webkit-keyframes menuBtn01-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  40% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  70% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(135deg);
            transform: translateY(8px) rotate(135deg);
  }
}
@keyframes menuBtn01-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  40% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  70% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(135deg);
            transform: translateY(8px) rotate(135deg);
  }
}
@-webkit-keyframes menuBtn01-close {
  0% {
    -webkit-transform: translateY(8px) rotate(135deg);
            transform: translateY(8px) rotate(135deg);
  }
  30% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  60% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menuBtn01-close {
  0% {
    -webkit-transform: translateY(8px) rotate(135deg);
            transform: translateY(8px) rotate(135deg);
  }
  30% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  60% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menuBtn02-open {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menuBtn02-open {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes menuBtn02-close {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menuBtn02-close {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menuBtn03-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  70% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
}
@keyframes menuBtn03-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  70% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
}
@-webkit-keyframes menuBtn03-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
  30% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  60% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menuBtn03-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
  30% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  60% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10042;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  will-change: backdrop-filter;
}

.mfp-bg.mfp-ready.mfp-removing {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

@-webkit-keyframes mfp-bg-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes mfp-bg-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  display: inline-block;
  position: relative;
  opacity: 0;
  z-index: 9999;
  width: 331px;
  max-width: 606px;
  margin: 56px auto;
  padding: 28px;
  background-color: var(--color-white);
  border-radius: 20px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  text-align: left;
  vertical-align: middle;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.mfp-wrap.mfp-ready.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

/* inline */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 88%;
  max-width: 606px;
}

@media only screen and (max-width: 959px) {
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    max-height: 100%;
  }
}
.mfp-inline-holder .mfp-content > div {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.mfp-inline-holder .mfp-content video {
  width: 100%;
}

.mfp-inline-holder .mfp-content .content {
  padding: 30px 30px 10px;
  position: relative;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 60px;
  margin-top: -30px;
  text-indent: -9999px;
  z-index: 10044;
  overflow: hidden;
}

.mfp-preloader:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-image: url(../images/preloader.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 60px 60px;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

.mfp-close {
  position: absolute;
  width: 43px;
  height: 43px;
  top: -43px;
  right: -43px;
  text-indent: -9999px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--color-key1);
  background: none;
  background-color: var(--color-key1);
  border-radius: 50%;
  outline: none;
}

.mfp-close::before,
.mfp-close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  content: "";
}

.mfp-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.mfp-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (min-width: 821px) {
  .swiper-button-next,
  .swiper-button-prev {
    -webkit-transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: var(--color-key1);
  }
  .mfp-close {
    -webkit-transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .mfp-close::before, .mfp-close::after {
    -webkit-transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .mfp-close:hover {
    background-color: var(--color-white);
  }
  .mfp-close:hover::before, .mfp-close:hover::after {
    background-color: var(--color-key1);
  }
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 0.96rem;
  line-height: 1.6;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  z-index: 10046;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  text-indent: -9999px;
  background-color: #59bdc6;
  border: 0 none;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
}

.mfp-arrow:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.mfp-arrow:hover:before {
  opacity: 0.2;
}

.mfp-arrow:after {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_link.png);
  background-repeat: no-repeat;
  background-size: 480px 240px;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -12px;
  background-position-x: 0;
  background-position-y: -144px;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.mfp-arrow-left {
  left: -100px;
}

.mfp-arrow-right {
  right: -100px;
}

.mfp-arrow-left:after {
  left: 7px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mfp-arrow-right:after {
  right: 7px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  width: calc(100% - 128px);
  max-width: 1120px;
  padding: 0;
}

.mfp-iframe-scaler {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
  padding: 40px 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: auto;
  height: auto;
  left: 0;
  top: 40px;
  bottom: 40px;
  right: 0;
  background: #444;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 0.75rem;
  line-height: 1.6;
}

.mfp-figure figure {
  position: relative;
  margin: 0;
}

.mfp-figure figure img {
  max-width: 95vw;
  max-height: 86vh !important;
}

.mfp-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-ready .mfp-bottom-bar {
  bottom: -40px;
  -webkit-transition: bottom 0.3s cubic-bezier(0.47, 1.83, 0.71, 1) 0.3s, opacity 0.2s linear, -webkit-transform 0.2s ease-in-out;
  transition: bottom 0.3s cubic-bezier(0.47, 1.83, 0.71, 1) 0.3s, opacity 0.2s linear, -webkit-transform 0.2s ease-in-out;
  transition: bottom 0.3s cubic-bezier(0.47, 1.83, 0.71, 1) 0.3s, transform 0.2s ease-in-out, opacity 0.2s linear;
  transition: bottom 0.3s cubic-bezier(0.47, 1.83, 0.71, 1) 0.3s, transform 0.2s ease-in-out, opacity 0.2s linear, -webkit-transform 0.2s ease-in-out;
}

.mfp-ready.mfp-removing .mfp-bottom-bar {
  bottom: 0;
  -webkit-transition: bottom 0.3s ease-in 0s;
  transition: bottom 0.3s ease-in 0s;
}

.mfp-ready .mfp-iframe-holder .mfp-bottom-bar {
  bottom: 0;
}

.mfp-ready.mfp-removing .mfp-iframe-holder .mfp-bottom-bar {
  bottom: -35px;
}

.mfp-title {
  float: left;
  height: 1.6em;
  padding-right: 4em;
  text-align: left;
  line-height: 1.6;
  color: #fff;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.modal-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.modal-img:after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  background: url("../img/ic_play.svg") no-repeat center;
  background-size: cover;
  z-index: 3;
}

.modal-img:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.modal-img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (min-width: 768px) {
  .modal-img:hover:before {
    background: rgba(222, 31, 45, 0.4);
  }
  .modal-img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/* tb */
@media only screen and (max-width: 959px) {
  .modal + .mfp-hide {
    display: block !important;
  }
  .modal-inline figure {
    display: none;
  }
}
/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 24px;
  z-index: 99;
  width: calc(100% - 48px);
  height: 100px;
  padding-right: 14px;
  background-color: var(--color-white);
  border-radius: 4px;
  -webkit-box-shadow: 0 0 16px 0 rgba(45, 83, 112, 0.05);
          box-shadow: 0 0 16px 0 rgba(45, 83, 112, 0.05);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__logo {
  position: absolute;
  left: 24px;
  z-index: 2;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
  width: 100%;
  height: 100%;
}
.l-header__logo--img {
  display: block;
  width: min(99px, 6.875vw);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__logo--img img {
  display: block;
  width: 100%;
}
.l-header__logo--text {
  display: block;
  width: min(149px, 11.77vw);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__logo--text img {
  display: block;
  width: 100%;
}

.is-minheader .l-header__content {
  height: 76px;
  padding-top: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.is-minheader .l-header__logo a {
  gap: 0 12px;
}
.is-minheader .l-header__logo--img {
  width: 75px;
}
.is-minheader .l-header__logo--text {
  width: 112px;
}

/* 1110px
----------------------------------------------- */
@media only screen and (max-width: 1150px) {
  .l-header__content {
    width: calc(100% - 32px);
  }
  .l-header__logo {
    left: 12px;
  }
  .l-header__logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 11px 0;
  }
  .l-header__logo--img {
    width: min(92px, 8vw);
  }
  .l-header__logo--text {
    width: min(113px, 9.82vw);
  }
  .is-minheader .l-header__logo a {
    gap: 6px 0;
  }
  .is-minheader .l-header__logo--img {
    width: 75px;
  }
  .is-minheader .l-header__logo--text {
    width: 92px;
  }
}
/* 999px
----------------------------------------------- */
@media only screen and (max-width: 999px) {
  .l-header__content {
    top: 8px;
    width: calc(100% - 16px);
    height: 64px;
    padding-right: 0;
  }
  .is-menuopen .l-header__content {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .is-minheader .l-header__content {
    height: 64px;
  }
  .l-header__button {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 64px;
    height: 64px;
  }
  .l-header__logo a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 10px;
  }
  .l-header__logo--img {
    width: 72px;
  }
  .l-header__logo--text {
    width: clamp(87px, 11.31vw, 113px);
  }
  .is-minheader .l-header__logo a {
    gap: 0 10px;
  }
  .is-minheader .l-header__logo--img {
    width: 72px;
  }
  .is-minheader .l-header__logo--text {
    width: clamp(87px, 11.31vw, 113px);
  }
}
/* 999px
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .l-header__logo--img {
    width: 58px;
  }
}
.l-nav {
  position: relative;
  width: 100%;
}
.l-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px 0;
  padding-right: 32px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
.l-nav__item {
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.l-nav__item.is-current {
  border-bottom: 2px solid var(--color-brand-blue);
}
.l-nav__item.is-spmenu {
  display: none;
}
.l-nav__item > a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 0 0 8px;
  color: var(--color-tonegray05);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-nav__item.is-current > a {
  color: var(--color-brand-blue);
}
.l-nav__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.l-nav__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
}
.l-nav__subItem {
  font-size: 1.2rem;
  line-height: 1.6;
}
.l-nav__subItem.is-current a {
  color: var(--color-brand-blue);
  font-weight: 500;
}
.l-nav__subItem a {
  color: var(--color-tonegray04);
}
.l-nav__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}
.l-nav__lang::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  width: 1px;
  height: 12px;
  background-color: var(--color-gray02);
}
.l-nav__langItem {
  margin-top: 2px;
}
.l-nav__langItem a[aria-current=page] {
  pointer-events: none;
  color: var(--color-tonegray05);
}
.l-nav__langItem.ja a {
  padding: 0 8px 0 0;
}
.l-nav__langItem.en a {
  padding: 0 0 0 8px;
}
.l-nav__langItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-tonegray02);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.l-nav__langSwitch {
  display: block;
  position: relative;
  width: 23px;
  height: 12px;
  background-color: var(--color-tonegray05);
  border-radius: 6px;
}
.l-nav__langSwitch::before {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--color-bg01);
  border-radius: 50%;
}
.l-nav__langSwitch[href="/"]::before {
  left: 2px;
}
.l-nav__langSwitch[href="/en/"]::before {
  right: 2px;
}
.l-nav__contact {
  position: relative;
  z-index: 2;
  margin-top: 6px;
}
.l-nav__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 164px;
  height: 48px;
  color: var(--color-white);
  background: var(--color-brand-blue);
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-nav__mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  height: 100vh;
  background: rgba(var(--color-tonegray05-rgb), 0.4);
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
  -webkit-transition-duration: 0s, 0.5s;
          transition-duration: 0s, 0.5s;
  -webkit-transition-delay: 0.5s, 0s;
          transition-delay: 0.5s, 0s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.is-menuopen .l-nav__mask {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition-duration: 0s, 0.5s;
          transition-duration: 0s, 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.l-nav__base {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  width: 100vw;
  height: 0;
  background-color: var(--color-white);
  -webkit-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.l-nav__base.is-active {
  pointer-events: auto;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.is-minheader .l-nav__utility {
  display: none;
}
.is-minheader .l-nav__contact {
  margin-top: 0;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 1000px) {
  .l-nav__item > a {
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-nav__item > a::before {
    display: block;
    content: "";
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    position: absolute;
    top: calc(100% + clamp(7px, 0.486vw, 7px));
    right: 0;
    left: 0;
    z-index: 1;
    width: min(78px, 5.41vw);
    height: 2px;
    margin: 0 auto;
    background-color: var(--color-brand-blue);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-nav__item > a:hover {
    color: var(--color-brand-red);
  }
  .l-nav__item.is-active > a::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .l-nav__subItem a {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-nav__subItem a:hover {
    color: var(--color-red03);
  }
  .l-nav__langItem a {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-nav__langItem a:hover {
    color: var(--color-red03);
  }
  .l-nav__contact a {
    -webkit-transition: background-color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: background-color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-nav__contact a:hover {
    background-color: var(--color-brand-red);
  }
}
/* 999px
----------------------------------------------- */
@media only screen and (max-width: 999px) {
  .l-nav {
    position: fixed;
    top: 58px;
    right: 0;
    left: 0;
    overflow-y: auto;
    width: calc(100% - 16px);
    margin: 0 auto;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 16px 16px 0px rgba(45, 83, 112, 0.05);
            box-shadow: 0px 16px 16px 0px rgba(45, 83, 112, 0.05);
  }
  .l-nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
    padding: 24px 24px 40px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: initial;
            transition-duration: initial;
  }
  .l-nav__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin: 0;
  }
  .l-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .l-nav__item {
    position: relative;
    width: 100%;
  }
  .l-nav__item.is-spmenu {
    display: block;
  }
  .l-nav__item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 16px 0 12px;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--color-tonegray01);
  }
  .l-nav__item.is-current {
    border-bottom: none;
  }
  .l-nav__item.is-current > a {
    border-bottom: 2px solid var(--color-brand-blue);
  }
  .l-nav__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 16px;
    width: 100%;
  }
  .l-nav__subItem {
    width: calc(50% - 6px);
    border-bottom: 1px solid var(--color-tonegray01);
  }
  .l-nav__subItem a {
    display: block;
    color: var(--color-tonegray05);
    padding: 16px 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .l-nav__subItem.is-current {
    border-bottom: none;
  }
  .l-nav__subItem.is-current > a {
    border-bottom: 2px solid var(--color-brand-blue);
  }
  .l-nav__utility {
    width: 100%;
  }
  .l-nav__lang {
    position: absolute;
    right: 63px;
  }
  .l-nav__lang::before {
    content: none;
  }
  .l-nav__langItem a {
    font-size: 1.6rem;
  }
  .l-nav__contact {
    visibility: hidden;
    width: 100%;
    margin-top: 16px;
  }
  .l-nav__contact a {
    width: 100%;
  }
  .is-menuopen .l-nav__contact {
    visibility: visible;
  }
  /* js */
  .js-nav {
    pointer-events: none;
    visibility: hidden;
    height: 0;
    -webkit-transition-property: visibility, height;
    transition-property: visibility, height;
    -webkit-transition-duration: 0s, 0.6s;
            transition-duration: 0s, 0.6s;
    -webkit-transition-delay: 0.6s, 0s;
            transition-delay: 0.6s, 0s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
            transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  }
  .is-menuopen .js-nav {
    pointer-events: auto;
    visibility: visible;
    -webkit-transition-duration: 0s, 0.65s;
            transition-duration: 0s, 0.65s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .js-nav.is-scrollable {
    overflow-y: auto;
    max-height: calc(100dvh - 72px);
  }
  .no-transition {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .u-hidden-on-resize {
    display: non !important;
  }
}
/* l-wrapper
----------------------------------------------- */
.l-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.l-main__outer {
  margin-right: 24px;
  margin-left: 24px;
}
.l-main__inner {
  position: relative;
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  padding: 64px 0 120px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .l-main__outer {
    margin-right: 16px;
    margin-left: 16px;
  }
}
.l-footer {
  position: relative;
  background-color: var(--color-tonegray05);
}
.l-footer__outer {
  margin: 0 48px;
}
.l-footer__inner {
  padding: 32px 0;
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 35px;
}
.l-footer__navItem a {
  display: block;
  position: relative;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-footer__navItem a span {
  position: relative;
}
.l-footer__navItem a span::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.l-footer__navItem a[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background: url(../images/common/icon-blank.svg) no-repeat center;
  background-size: 100% 100%;
}
.l-footer__copyright {
  display: block;
  margin-top: 24px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .l-footer a span::before {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-footer a:hover span::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .l-footer__outer {
    margin: 0 16px;
  }
  .l-footer__inner {
    padding: 24px 0;
  }
  .l-footer__nav {
    gap: 0 24px;
  }
  .l-footer__copyright {
    margin-top: 64px;
  }
}
.c-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 25px;
  height: 18px;
  -webkit-transition: opacity 0.3s linear, -webkit-transform;
  transition: opacity 0.3s linear, -webkit-transform;
  transition: transform, opacity 0.3s linear;
  transition: transform, opacity 0.3s linear, -webkit-transform;
}
.c-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-brand-blue);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 1000px以上
----------------------------------------------- */
@media only screen and (min-width: 1000px) {
  .c-menu {
    display: none;
  }
}
/* 999px以下
----------------------------------------------- */
@media only screen and (max-width: 999px) {
  .c-menu.is-open span:nth-child(1) {
    -webkit-animation: menuBtn01-open 1s forwards;
            animation: menuBtn01-open 1s forwards;
  }
  .c-menu.is-open span:nth-child(2) {
    -webkit-animation: menuBtn02-open 1s forwards;
            animation: menuBtn02-open 1s forwards;
  }
  .c-menu.is-open span:nth-child(3) {
    -webkit-animation: menuBtn03-open 1s forwards;
            animation: menuBtn03-open 1s forwards;
  }
  .c-menu.is-close span:nth-child(1) {
    -webkit-animation: menuBtn01-close 1s forwards;
            animation: menuBtn01-close 1s forwards;
  }
  .c-menu.is-close span:nth-child(2) {
    -webkit-animation: menuBtn02-close 1s forwards;
            animation: menuBtn02-close 1s forwards;
  }
  .c-menu.is-close span:nth-child(3) {
    -webkit-animation: menuBtn03-close 1s forwards;
            animation: menuBtn03-close 1s forwards;
  }
}
.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  position: relative;
  z-index: 1;
}
.c-link__label {
  display: inline;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
  color: var(--color-link);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.c-link__underline {
  padding-bottom: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-brand-red)), to(var(--color-brand-red))) 100% bottom no-repeat;
  background: linear-gradient(var(--color-brand-red), var(--color-brand-red)) 100% bottom no-repeat;
  background-size: 0 1px;
}
.c-link__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-link);
}
.c-link__icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-chevron.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
[target=_blank] .c-link__icon::after {
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon-blank.svg);
}
[href$=".pdf"] .c-link__icon::after {
  width: 12px;
  height: 12px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-pdf.svg);
          mask-image: url(../images/common/icon-pdf.svg);
  background: var(--color-white);
  vertical-align: middle;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-link__label {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-link__underline {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size;
    transition-property: background-size;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-link__icon {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-link:hover .c-link__label {
    color: var(--color-brand-red);
  }
  .c-link:hover .c-link__underline {
    background-size: 100% 1px;
    background-position: left bottom;
  }
  .c-link:hover .c-link__icon {
    background-color: var(--color-brand-red);
  }
}
/* 1199px以下
----------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-link__item {
    width: calc(50% - 20px);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-link__label {
    font-size: 1.6rem;
  }
}
.c-textlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
.c-textlink + .c-textlink {
  margin-top: 16px;
}
p:not([class]) + .c-textlink {
  margin-top: 16px;
}
.c-textlinkBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 32px;
}
.c-textlinkBlock:first-child {
  margin-top: 0;
}
.c-textlinkBlock:last-child {
  margin-bottom: 0;
}
.c-textlinkBlock .c-textlink {
  margin-top: 0;
}
.c-textlinkBlock--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-textlink__label {
    font-size: 1.5rem;
  }
  .c-textlinkBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-radius {
  overflow: hidden;
  border-radius: 4px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-radius {
    border-radius: 8px;
  }
}
.c-circle__elem {
  position: absolute;
  pointer-events: none;
  width: 906px;
  height: 906px;
  background: url(../images/top/bg-gradation.png) no-repeat center;
  background-size: contain;
  -webkit-animation: animate-circle01 6s ease-in-out infinite alternate;
          animation: animate-circle01 6s ease-in-out infinite alternate;
}
.is-right .c-circle__elem {
  left: 100%;
  -webkit-animation: animate-circle02 6s ease-in-out infinite alternate;
          animation: animate-circle02 6s ease-in-out infinite alternate;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-circle__elem {
    width: 480px;
    height: 480px;
  }
}
@-webkit-keyframes animate-circle01 {
  0% {
    -webkit-transform: translate(-5%, -5%) translate3d(-5%, -10%, 0) scale(0.9);
            transform: translate(-5%, -5%) translate3d(-5%, -10%, 0) scale(0.9);
  }
  100% {
    -webkit-transform: translate(-5%, -3%) translate3d(5%, 10%, 0) scale(1);
            transform: translate(-5%, -3%) translate3d(5%, 10%, 0) scale(1);
  }
}
@keyframes animate-circle01 {
  0% {
    -webkit-transform: translate(-5%, -5%) translate3d(-5%, -10%, 0) scale(0.9);
            transform: translate(-5%, -5%) translate3d(-5%, -10%, 0) scale(0.9);
  }
  100% {
    -webkit-transform: translate(-5%, -3%) translate3d(5%, 10%, 0) scale(1);
            transform: translate(-5%, -3%) translate3d(5%, 10%, 0) scale(1);
  }
}
@-webkit-keyframes animate-circle02 {
  0% {
    -webkit-transform: translate(-5%, -5%) translate3d(3%, 5%, 0) scale(0.8);
            transform: translate(-5%, -5%) translate3d(3%, 5%, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-3%, -3%) translate3d(-3%, -5%, 0) scale(1);
            transform: translate(-3%, -3%) translate3d(-3%, -5%, 0) scale(1);
  }
}
@keyframes animate-circle02 {
  0% {
    -webkit-transform: translate(-5%, -5%) translate3d(3%, 5%, 0) scale(0.8);
            transform: translate(-5%, -5%) translate3d(3%, 5%, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-3%, -3%) translate3d(-3%, -5%, 0) scale(1);
            transform: translate(-3%, -3%) translate3d(-3%, -5%, 0) scale(1);
  }
}
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 296px;
  min-height: 56px;
  padding: 7px 59px 7px 59px;
  background-color: var(--color-bg01);
  border: 1px solid var(--color-tonegray02);
  border-radius: 100px;
}
.c-button__label {
  max-width: 175px;
  color: #465A64;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-button__icon {
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
  width: 24px;
  height: 24px;
}
.c-button__icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-link);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button__icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-chevron.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button--more .c-button__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
[target=_blank] .c-button__icon::after {
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon-blank.svg);
}
[href$=".pdf"] .c-button__icon::after {
  width: 12px;
  height: 12px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-pdf.svg);
          mask-image: url(../images/common/icon-pdf.svg);
  background: var(--color-white);
  vertical-align: middle;
}
.c-buttonBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}
.c-buttonBlock:not(.c-buttonBlock--left):not(.c-buttonBlock--right):has(.c-button:only-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-buttonBlock:has(.c-button:not(:only-child)) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.c-buttonBlock--right:has(.c-button:only-child) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-button__label {
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-button__icon::before {
    -webkit-transition-property: background-color, width, height;
    transition-property: background-color, width, height;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-button:hover .c-button__label {
    color: var(--color-brand-red);
  }
  .c-button:hover .c-button__icon::before {
    width: 28px;
    height: 28px;
    background-color: var(--color-brand-red);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-buttonBlock--left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-buttonBlock--right:has(.c-button:only-child) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-zoomimage {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}
.c-zoomimage picture {
  height: inherit;
}
.c-zoomimage img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-zoomimage img {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  a:hover .c-zoomimage img,
  button:hover .c-zoomimage img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c-zoomupContainer {
  margin-top: 32px;
}
.c-zoomupContainer .c-figure {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .js-zoomup-trigger {
    display: none;
  }
}
/* 767px以下
----------------------------------------------- */
@media only screen and (max-width: 767px) {
  .c-zoomup {
    border-radius: 8px;
  }
  .c-zoomup::-webkit-scrollbar {
    display: none;
  }
  .c-zoomup__image {
    overflow-x: auto;
    border-radius: 8px;
  }
  .c-zoomup__image::-webkit-scrollbar {
    display: none;
  }
  .c-zoomup img {
    width: 100%;
    max-width: inherit;
    border-radius: 0;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
  }
  .c-zoomupContainer.is-active .c-zoomup img {
    width: 788px;
    height: auto;
  }
  .js-zoomup-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3px;
    margin: 3px 0 8px auto;
  }
  .js-zoomup-trigger .c-zoomup__label {
    color: var(--color-link);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .js-zoomup-trigger .c-zoomup__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background: url(../images/common/icon-zoom.svg) no-repeat center var(--color-link);
    background-size: 16px 16px;
    border-radius: 100px;
  }
}
.c-note {
  position: relative;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--color-gray04);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-note:not(:has(.c-note__mark)) {
  padding-left: 0;
}
.c-note + .c-note {
  margin-top: 8px;
}
.c-note__mark {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1em + 8px);
}
.c-note:has(.c-note__num) {
  padding-left: 2.75em;
}
.c-note:has(.c-note__num) .c-note__num {
  position: absolute;
  top: 0;
  left: 0;
}

/* pc
----------------------------------------------- */
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-note {
    font-size: 1.2rem;
  }
}
.c-figure {
  overflow: hidden;
  width: 100%;
  max-width: 784px;
  margin: 32px auto 0;
}
.c-figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 4px;
}
.c-column__col .c-figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.c-figure img + p {
  margin-top: 16px !important;
  line-height: 1.6 !important;
}
.c-figure figcaption {
  margin-top: 16px;
  color: var(--color-gray04);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* pc
----------------------------------------------- */
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-figure img {
    border-radius: 8px;
  }
  .c-figure figcaption {
    font-size: 1.2rem;
  }
}
.c-video {
  max-width: 784px;
  margin: 32px auto 0;
}
.c-video__wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 4px;
}
.c-video__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.c-video__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-video__caption {
  margin-top: 16px;
  color: var(--color-gray04);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.c-video .c-play {
  position: absolute;
  top: calc(50% - 28px);
  left: calc(50% - 28px);
  width: 56px;
  height: 56px;
  background: url(../images/common/icon-play.svg) no-repeat center;
  background-size: contain;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-video__image:before {
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .c-video a:hover .p-video__image:before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-video__wrapper {
    border-radius: 8px;
  }
  .c-video__image {
    border-radius: 8px;
  }
  .c-video__caption {
    font-size: 1.2rem;
  }
}
.c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 24px;
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.c-column--column2 .c-column__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
}
.c-column--column2-1 {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.c-column--column2-1 .c-column__col.--text {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 65.9%;
}
.c-column--column2-1 .c-column__col.--image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 31.8%;
}
.c-column--column1-2 {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.c-column--column1-2 .c-column__col.--text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 65.9%;
}
.c-column--column1-2 .c-column__col.--image {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 31.8%;
}
.c-column--caption:has(.c-column__col:nth-child(n+2)) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-column--caption:has(.c-column__col:nth-child(n+3)) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-column:not(.c-column--column2):not(.c-column--column2-1):not(.c-column--column1-2) .c-column__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 48px) / 3);
          flex: 0 0 calc((100% - 48px) / 3);
}
.c-column__col > *:first-child {
  margin-top: 0 !important;
}
.is-reverse .c-column__col.--text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.c-column__col.--image {
  overflow: hidden;
}
.is-reverse .c-column__col.--image {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.c-column__body a p:not([class]) span {
  position: relative;
  color: var(--color-link);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-link)), to(var(--color-link))) left bottom no-repeat;
  background: linear-gradient(var(--color-link), var(--color-link)) left bottom no-repeat;
  background-size: 100% 1px;
}
.c-column__body p:not([class]) {
  margin-top: 16px;
  color: var(--color-gray04);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-column__body p:not([class]) + p:not([class]) {
  margin-top: 8px !important;
}
.c-column__heading {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-column__heading + p:not([class]) {
  margin-top: 8px !important;
}
.c-column__link {
  margin-top: 16px;
}
.c-column__link a {
  display: inline;
  position: relative;
  color: var(--color-link);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-link)), to(var(--color-link))) calc(100% - 16px) bottom no-repeat;
  background: linear-gradient(var(--color-link), var(--color-link)) calc(100% - 16px) bottom no-repeat;
  background-size: 0 1px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-column__link a::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin: -2px 0 0 4px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-chevron.svg);
          mask-image: url(../images/common/icon-chevron.svg);
  background: var(--color-link);
  vertical-align: middle;
}
.c-column__link a[target=_blank] {
  background-position: calc(100% - 16px) bottom;
}
.c-column__link a[target=_blank]::after {
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-blank.svg);
          mask-image: url(../images/common/icon-blank.svg);
  background: var(--color-link);
  vertical-align: middle;
}
.c-column__link a[href$=".pdf"] {
  background-position: calc(100% - 16px) bottom;
}
.c-column__link a[href$=".pdf"]::after {
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-pdf.svg);
          mask-image: url(../images/common/icon-pdf.svg);
  background: var(--color-link);
  vertical-align: middle;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-column__body a p span {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size;
    transition-property: background-size;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-column__body a:hover p span {
    background-size: 0 1px;
    background-position: 100% bottom;
  }
  .c-column__link a {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size, color;
    transition-property: background-size, color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-column__link a:hover {
    background-size: calc(100% - 16px) 1px;
    background-position: left bottom;
  }
  .c-column__link a:hover[target=_blank] {
    background-size: calc(100% - 16px) 1px;
  }
  .c-column__link a:hover[href$=".pdf"] {
    background-size: calc(100% - 16px) 1px;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px 0;
  }
  .c-column--column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px 0;
  }
  .c-column--column2 .c-column__col {
    width: 100%;
  }
  .c-column--column2-1 {
    gap: 24px 0;
  }
  .c-column--column2-1 .c-column__col.--text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .c-column--column2-1 .c-column__col.--image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
  }
  .c-column--column1-2 {
    gap: 24px 0;
  }
  .c-column--column1-2 .c-column__col.--text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .c-column--column1-2 .c-column__col.--image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
  }
  .c-column--caption:has(.c-column__col:nth-child(n+2)) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-column--caption .c-column__body p {
    font-size: 1.2rem;
  }
  .c-column:not(.c-column--column2):not(.c-column--column2-1):not(.c-column--column1-2) .c-column__col {
    width: 100%;
  }
  .c-column__heading {
    font-size: 1.2rem;
  }
  .c-column__link a {
    font-size: 1.2rem;
  }
}
.c-contact {
  position: relative;
  background-color: var(--color-brand-blue);
}
.c-contact__outer {
  margin: 0 48px;
}
.c-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 80px;
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  padding: 48px 0;
}
.c-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
  width: 438px;
  color: var(--color-white);
}
.c-contact__heading {
  color: var(--color-tonegray02);
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: 0.05em;
}
.c-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 295px;
}
.c-contact__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.c-contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 366px;
  height: 72px;
  padding: 8px 40px 8px 40px;
  color: var(--color-brand-blue);
  background-color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.c-contact__button::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 120%;
  height: 100%;
  background: var(--color-brand-red);
  -webkit-transform: skewX(-20deg) translateX(-100%);
          transform: skewX(-20deg) translateX(-100%);
}
.c-contact__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.c-contact__button span::before {
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  margin: 2px 10px 0 0;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-contact.svg);
          mask-image: url(../images/common/icon-contact.svg);
  background: var(--color-white);
}
.c-contact__button.is-white span::before {
  background: var(--color-brand-blue);
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-contact__button::before {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
            transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .c-contact__button:hover::before {
    -webkit-transform: skewX(-20deg) translateX(-10%);
            transform: skewX(-20deg) translateX(-10%);
  }
  .c-contact__button.is-white {
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
            transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .c-contact__button.is-white span::before {
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
            transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .c-contact__button.is-white:hover {
    color: var(--color-white);
  }
  .c-contact__button.is-white:hover span::before {
    background: var(--color-white);
  }
}
/* tb
----------------------------------------------- */
@media only screen and (max-width: 959px) {
  .c-contact__head {
    width: auto;
  }
  .c-contact__heading {
    font-size: clamp(4.8rem, 8.33vw, 8rem);
  }
  .c-contact__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-contact__outer {
    margin: 0 20px;
  }
  .c-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
    padding: 80px 0;
  }
  .c-contact__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .c-contact__head p {
    text-align: center;
  }
  .c-contact__heading {
    font-size: clamp(4.8rem, 12.8vw, 8rem);
  }
  .c-contact__body {
    width: 100%;
  }
  .c-contact__button {
    margin: 0 auto;
  }
}
.c-dlcolumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  padding-bottom: 24px;
}
.c-dlcolumn dt {
  width: 132px;
  padding-bottom: 16px;
  color: var(--color-brand-blue);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.c-dlcolumn dt:last-of-type {
  padding-bottom: 0;
}
.c-dlcolumn dd {
  width: calc(100% - 132px);
  padding: 0 0 16px 16px;
}
.c-dlcolumn dd:last-of-type {
  padding-bottom: 0;
}
.c-dlcolumn--vertical dt {
  width: 100%;
  margin-top: 24px;
  padding: 0;
}
.c-dlcolumn--vertical dt:first-child {
  margin-top: 0;
}
.c-dlcolumn--vertical dd {
  width: 100%;
  padding: 0;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-dlcolumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-dlcolumn dt {
    width: 100%;
    margin-top: 24px;
    padding: 0;
  }
  .c-dlcolumn dt:first-child {
    margin-top: 0;
  }
  .c-dlcolumn dd {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
}
.c-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 24px;
  margin-top: 24px;
}
.c-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 48px) / 3);
          flex: 0 0 calc((100% - 48px) / 3);
  position: relative;
  padding: 0 8px 0 42px;
  min-height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.c-list__item::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  background-color: var(--color-link);
}
.c-list__item a {
  display: inline;
  position: relative;
  width: 100%;
  color: var(--color-link);
}
.c-list__item a span {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-link)), to(var(--color-link))) 100% bottom no-repeat;
  background: linear-gradient(var(--color-link), var(--color-link)) 100% bottom no-repeat;
  background-size: 0 1px;
}
.c-list__item a::after {
  display: inline-block;
  content: "";
}
.c-list__item a[target=_blank] {
  background-position: calc(100% - 22px) bottom;
}
.c-list__item a[target=_blank]::after {
  width: 12px;
  height: 12px;
  margin: -3px 6px 0 4px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-blank.svg);
          mask-image: url(../images/common/icon-blank.svg);
  background: var(--color-link);
  vertical-align: middle;
}

/* sp
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-list__item a span {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size, color;
    transition-property: background-size, color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-list__item a:hover span {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .c-list__item {
    padding: 0 0 0 16px;
    font-size: 1.5rem;
  }
  .c-list__item::before {
    left: 0;
  }
}
.c-frame {
  margin-top: 24px;
  padding: 24px !important;
  border-radius: 4px;
  background-color: var(--color-tonegray01);
}
.c-frame > *:first-child {
  margin-top: 0 !important;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-frame {
    border-radius: 8px;
  }
}
.c-scrollable {
  margin-top: 32px;
  padding-top: 27px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-scrollable__outer {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .c-scrollable__inner {
    padding: 0 16px;
    width: 860px;
  }
}
.c-related {
  margin-top: 80px;
}
.c-related > *:first-child {
  margin-top: 0 !important;
}
.c-related + .c-related {
  margin-top: 40px;
}
.c-related + .c-buttonBlock {
  margin-top: 80px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-related.is-column {
    margin-top: 64px;
  }
}
.c-anchor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.c-anchor__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 64px) / 3);
          flex: 0 0 calc((100% - 64px) / 3);
  position: relative;
}
.c-anchor__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 32px 8px 0;
  color: var(--color-brand-blue);
  border-bottom: 2px solid var(--color-brand-blue);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.c-anchor__label::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: var(--color-brand-red);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.c-anchor__label::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 11px);
  right: 1px;
  width: 12px;
  height: 18px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-chevron.svg);
          mask-image: url(../images/common/icon-chevron.svg);
  background: var(--color-brand-blue);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-anchor__label {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size, color;
    transition-property: background-size, color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .c-anchor__label::before {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-anchor__label::after {
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-anchor__label:hover {
    color: var(--color-brand-red);
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .c-anchor__label:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-anchor__label:hover::after {
    background-color: var(--color-brand-red);
  }
}
/* wide_sp
----------------------------------------------- */
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-anchor__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-anchor__item {
    padding: 0;
  }
}
.c-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 16/9;
  width: 100%;
}
.c-numbers__frametop {
  position: relative;
  width: 100%;
}
.c-numbers__frametop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gray03);
  border-left: 2px solid var(--color-gray03);
}
.c-numbers__frametop::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gray03);
  border-right: 2px solid var(--color-gray03);
}
.c-numbers__framebottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
}
.c-numbers__framebottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--color-gray03);
  border-left: 2px solid var(--color-gray03);
}
.c-numbers__framebottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--color-gray03);
  border-right: 2px solid var(--color-gray03);
}
.c-numbers__num {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-numbers__num span {
  color: var(--color-brand-blue);
  font-family: var(--font-en);
  font-size: clamp(5.4rem, 6.66vw, 9.6rem);
  font-weight: 700;
  line-height: 1;
}
.c-numbers__label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* pc
----------------------------------------------- */
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-numbers__num span {
    font-size: 9.6rem;
  }
}
.c-panellink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 24px;
  margin-top: 32px;
}
.c-panellink__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray03);
  border-radius: 4px;
}
.c-panellink__item article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.c-panellink__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  width: 50%;
  height: 100%;
}
.c-panellink__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
}
.c-panellink__bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
.c-panellink__image {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: absolute;
  top: 0;
  z-index: 2;
  width: auto;
  height: 100%;
  border-radius: 0;
}
.c-panellink__image > img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  width: auto;
  height: 100%;
  margin: 0 auto;
  border-radius: 0;
}
.c-panellink__body {
  position: relative;
  width: 50%;
  padding: 16px;
}
.c-panellink__body .c-textlink {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin-top: auto;
}
.c-panellink__body .c-textlink .c-link__label {
  font-size: 1.6rem;
}
.c-panellink__label {
  display: inline-block;
  padding: 4px 10px;
  color: var(--color-white);
  border-radius: 15px;
  background-color: var(--color-brand-blue);
  font-size: clamp(1.1rem, 0.83vw, 1.2rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.c-panellink__subject {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* デフォルト値。JSで上書きします */
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-panellink__item:hover .c-link__label {
    color: var(--color-brand-red);
  }
  .c-panellink__item:hover .c-link__underline {
    background-size: 100% 1px;
    background-position: left bottom;
  }
  .c-panellink__item:hover .c-link__icon {
    background-color: var(--color-brand-red);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-panellink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px 0;
  }
  .c-panellink__item {
    width: 100%;
    border-radius: 8px;
  }
  .c-panellink__item article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-panellink__head {
    width: 100%;
  }
  .c-panellink__body {
    width: 100%;
  }
  .c-panellink__body .c-textlink {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 24px;
  }
  .c-panellink__body .c-textlink .c-link__label {
    font-size: 1.5rem;
  }
  .c-panellink__subject {
    font-size: 1.5rem;
  }
}
.c-breadcrumb {
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
  overflow: hidden;
  z-index: 1;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.c-breadcrumb::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-overflow: initial;
  overflow-x: auto;
  height: 37px;
  margin: 0 auto;
  padding: 0 48px;
  scrollbar-width: none;
}
.c-breadcrumb__list li {
  position: relative;
}
.c-breadcrumb__list li::after {
  display: inline-block;
  content: "";
  width: 7px;
  height: 11px;
  margin: 0 8px 0 5px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-chevron.svg);
          mask-image: url(../images/common/icon-chevron.svg);
  background: var(--color-gray03);
}
.c-breadcrumb__list li:first-child a {
  text-transform: uppercase;
}
.c-breadcrumb__list li:last-child span {
  pointer-events: none;
  color: var(--color-tonegray03);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-breadcrumb__list li:last-child::after {
  display: none;
}
.c-breadcrumb a {
  position: relative;
  color: var(--color-link);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.c-breadcrumb a::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-link);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .c-breadcrumb a::before {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-breadcrumb a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
}
/* 999px
----------------------------------------------- */
@media only screen and (max-width: 1150px) {
  .c-breadcrumb__list {
    padding: 0 clamp(16px, (100vw - 1088px) * 0.5 + 16px, 48px);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .c-breadcrumb {
    text-overflow: initial;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .c-breadcrumb__list {
    height: 34px;
    padding: 0 16px;
  }
  .c-breadcrumb li:last-child span {
    font-size: 1.2rem;
  }
  .c-breadcrumb li::after {
    margin: 0 6px -1px 3px;
  }
  .c-breadcrumb a {
    font-size: 1.2rem;
  }
}
.p-kv {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
}
.p-kv__outer {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 48px;
}
.p-kv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 80px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  margin: 0 auto;
}
.p-kv__head {
  width: 440px;
  -webkit-transform: translateY(5.375rem);
          transform: translateY(5.375rem);
}
.p-kv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: var(--color-tonegray05);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-kv__shoulder {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-kv__solutions {
  width: 100%;
  max-width: 496px;
  padding: 40px;
  background-color: rgba(var(--color-white-rgb), 0.7);
  border-radius: 4px;
  -webkit-transform: translateY(5.375rem);
          transform: translateY(5.375rem);
}
.p-kv__solutionsSubject {
  position: relative;
  margin-bottom: 16px;
  padding: 0 0 6px 25px;
  color: var(--color-brand-blue);
  border-bottom: 1px solid var(--color-tonegray03);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-kv__solutionsSubject::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../images/common/icon-elem.svg) no-repeat center;
  background-position: center;
  background-size: 100%;
}
.p-kv__solutionsText {
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-kv__solutionsDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid var(--color-tonegray01);
}
.p-kv__solutionsDl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 26px;
  margin-top: 0.3em;
  padding: 16px 0;
  color: var(--color-brand-blue);
  border-bottom: 1px solid var(--color-tonegray01);
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0.03em;
}
.p-kv__solutionsDl dd {
  width: calc(100% - 26px);
  padding: 16px 0 16px 32px;
  color: var(--color-tonegray05);
  border-bottom: 1px solid var(--color-tonegray01);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-kv__video {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  z-index: -1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.p-kv__video video {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--color-white);
  -webkit-transition: opacity 2s linear;
  transition: opacity 2s linear;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* 1129px
----------------------------------------------- */
@media only screen and (max-width: 1129px) {
  .p-kv__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
  }
  .p-kv__heading .is-tb {
    display: block;
  }
}
/* 1033px
----------------------------------------------- */
@media only screen and (max-width: 1033px) {
  .p-kv__heading {
    font-size: min(3.67vw, 3.8rem);
  }
}
/* tb
----------------------------------------------- */
@media only screen and (max-width: 959px) {
  .p-kv__heading {
    font-size: clamp(3rem, 3.6vw, 3.8rem);
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-kv {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .p-kv__outer {
    padding: 0 16px;
  }
  .p-kv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px 0;
    padding: 160px 0 64px;
  }
  .p-kv__head {
    width: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-kv__heading {
    font-size: clamp(3.6rem, 9.6vw, 3.8rem);
  }
  .p-kv__solutions {
    width: 100%;
    max-width: none;
    padding: 40px 20px;
    border-radius: 8px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-kv__solutionsDl dd br {
    display: none;
  }
}
.p-toptopics {
  background-color: var(--color-bg01);
  border-top: 1px solid var(--color-gray02);
  border-bottom: 1px solid var(--color-gray02);
}
.p-toptopics__outer {
  margin: 0 48px;
}
.p-toptopics__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 80px;
  margin: 0 auto;
  padding: 24px 0;
}
.p-toptopics__head {
  position: relative;
  padding-right: 48px;
}
.p-toptopics__head::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 1px;
  height: 16px;
  background-color: var(--color-gray03);
}
.p-toptopics__heading {
  position: relative;
  padding-left: 25px;
  color: var(--color-brand-blue);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.p-toptopics__heading::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../images/common/icon-elem.svg) no-repeat center;
  background-position: center;
  background-size: 100%;
}
.p-toptopics__body {
  padding-left: 24px;
}
.p-toptopics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-toptopics__itemData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
  margin-right: 8px;
}
.p-toptopics__itemDate {
  color: var(--color-tonegray05);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.p-toptopics__itemCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 13px;
  color: var(--color-brand-blue);
  background-color: var(--color-gray02);
  border-radius: 27px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-toptopics__itemSubject {
  position: relative;
  overflow: hidden;
  width: 38.5vw;
  max-width: 553px;
}
.p-toptopics__itemSubject a {
  max-width: 100%;
  color: var(--color-link);
}
.p-toptopics__itemSubject span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-toptopics .c-textlink {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-toptopics .c-textlink .c-link {
  gap: 0 16px;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .p-toptopics__itemSubject a {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-toptopics__itemSubject a:hover {
    color: var(--color-brand-red);
  }
}
/* 1110px
----------------------------------------------- */
@media only screen and (max-width: 1110px) {
  .p-toptopics__outer {
    margin: 0 24px;
  }
  .p-toptopics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px 0;
  }
  .p-toptopics__itemSubject {
    width: 52vw;
  }
}
/* tb
----------------------------------------------- */
@media only screen and (max-width: 959px) {
  .p-toptopics__head {
    padding-right: 24px;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-toptopics__outer {
    margin: 0 16px;
  }
  .p-toptopics__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-toptopics__head {
    width: 100%;
    padding-right: 24px;
  }
  .p-toptopics__head::after {
    content: none;
  }
  .p-toptopics__body {
    width: 100%;
    margin: 16px 0;
    padding-left: 0;
  }
  .p-toptopics__itemSubject {
    width: 100%;
    max-width: none;
  }
  .p-toptopics .c-textlink {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 24px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-topsection {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--color-bg01);
}
.p-topsection.is-bgblue {
  padding-top: 80px !important;
  background-color: var(--color-tonegray01);
}
.p-topsection + .p-topsection {
  padding-top: 0;
}
.p-topsection__outer {
  margin: 0 24px;
}
.p-topsection__inner {
  max-width: 1056px;
  margin: 0 auto;
}
.p-topsection__head {
  position: relative;
  z-index: 2;
}
.p-topsection__head + .c-column {
  margin-top: 80px;
}
.p-topsection__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 0;
  color: var(--color-brand-blue);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-topsection__heading span {
  color: var(--color-tonegray02);
  font-family: var(--font-en);
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}
.is-bgblue .p-topsection__heading span {
  color: var(--color-tonegray03);
}
.p-topsection__lead {
  margin-top: 40px;
  text-align: center;
}
.p-topsection__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 32px;
}
.p-topsection__col {
  width: 440px;
}
.p-topsection__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-topsection__outer {
    margin: 0 20px;
  }
  .p-topsection__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .p-topsection__heading.is-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-topsection__heading span {
    font-size: clamp(4.8rem, 12.8vw, 6.4rem);
  }
}
.p-reasoncolumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
.p-reasoncolumn + .p-reasoncolumn {
  margin-top: 80px;
}
.p-reasoncolumn__col {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 440px;
}
.is-reverse .p-reasoncolumn__col.--text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-reasoncolumn__col.--image {
  overflow: hidden;
}
.is-reverse .p-reasoncolumn__col.--image {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.p-reasoncolumn__col p:not([class]) {
  margin-top: 16px;
}
.p-reasoncolumn__col p:not([class]) + .c-textlink {
  margin-top: 32px;
}
.p-reasoncolumn__col .c-link {
  gap: 0 16px;
}

/* tb
----------------------------------------------- */
@media only screen and (max-width: 959px) {
  .p-reasoncolumn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-reasoncolumn__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 32px) / 2);
            flex: 0 0 calc((100% - 32px) / 2);
    width: auto;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-reasoncolumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
    margin-top: 96px;
  }
  .p-reasoncolumn + .p-reasoncolumn {
    margin-top: 96px;
  }
  .p-reasoncolumn__col.--text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-reasoncolumn__col.--image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 68.266vw;
  }
}
.p-aboutcolumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 80px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
.p-aboutcolumn__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) / 2);
          flex: 0 0 calc((100% - 80px) / 2);
}
.p-aboutcolumn__col p:not([class]) {
  margin-top: 16px;
}
.p-aboutcolumn__col p:not([class]) + .c-textlink {
  margin-top: 32px;
}
.p-aboutcolumn__col .c-link {
  gap: 0 16px;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-aboutcolumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px 0;
  }
}
.p-pageheader {
  padding-top: 148px;
  /* cover */
  /* is-detail */
}
.p-pageheader__outer {
  margin: 0 24px;
}
.p-pageheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1056px;
  height: 320px;
  margin: 0 auto;
  padding: 40px 0;
}
.p-pageheader.is-cover {
  position: relative;
  background: url(../images/common/pageheader_pc.webp) no-repeat center;
  background-size: cover;
  /* case index page */
}
.p-pageheader.is-cover .p-pageheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1056px;
  height: 320px;
  margin: 0 auto;
  padding: 40px 0;
}
.p-pageheader.is-cover .p-pageheader__heading--jp {
  color: var(--color-text);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.p-pageheader.is-cover.is-case .p-pageheader__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-pageheader.is-cover.is-case .p-pageheader__caselead {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-pageheader.is-cover.is-case .p-pageheader__casetag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.p-pageheader.is-cover.is-case .p-pageheader__casetag li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  color: var(--color-white);
  background-color: var(--color-tonegray03);
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-pageheader.is-cover.is-case .p-pageheader__caseblock {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.p-pageheader.is-cover.is-case .p-pageheader__casesummary {
  width: 100%;
  padding: 32px 48px;
  background-color: var(--color-white);
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(56, 68, 96, 0.3);
          box-shadow: 0 4px 16px 0 rgba(56, 68, 96, 0.3);
}
.p-pageheader.is-cover.is-case .p-pageheader__casesummary p:not([class]) {
  color: var(--color-brand-blue);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-pageheader.is-cover.is-case .p-pageheader__caselist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
  margin-top: 24px;
}
.p-pageheader.is-cover.is-case .p-pageheader__caselist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 8px 16px 8px 54px;
  color: var(--color-brand-blue);
  border-radius: 4px;
  background: var(--color-tonegray01);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-pageheader.is-cover.is-case .p-pageheader__caselist li::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  width: 30px;
  height: 30px;
  background: url(../images/common/icon-check.svg) no-repeat center;
  background-size: 16px 12px;
  background-color: var(--color-brand-blue);
  border-radius: 50%;
}
.p-pageheader.is-detail {
  position: relative;
}
.p-pageheader.is-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 505px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(24.65%, rgba(245, 246, 250, 0)), color-stop(76.04%, #F5F6FA));
  background: linear-gradient(180deg, rgba(245, 246, 250, 0) 24.65%, #F5F6FA 76.04%);
}
.p-pageheader.is-detail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 505px;
  background: url(../images/common/pageheader_pc.webp) no-repeat top center;
  background-size: cover;
}
.p-pageheader.is-detail .p-pageheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1056px;
  height: auto;
  min-height: 320px;
  margin: 0 auto;
  padding: 48px 0 72px;
}
.p-pageheader.is-detail .p-pageheader__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-pageheader.is-detail .p-pageheader__heading--jp {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  color: var(--color-text);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.p-pageheader.is-detail .p-pageheader__heading .p-pageheader__topicsmeta {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-bottom: 16px;
}
.p-pageheader.is-detail .p-pageheader__topicsmeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}
.p-pageheader.is-detail .p-pageheader__topicsmetaDate {
  color: var(--color-gray04);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-pageheader.is-detail .p-pageheader__topicsmetaCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 13px;
  color: var(--color-brand-blue);
  background-color: var(--color-gray02);
  border-radius: 27px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-pageheader.is-detail .p-pageheader__topicstag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.p-pageheader.is-detail .p-pageheader__topicstagItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 3px 13px;
  color: var(--color-tonegray04);
  border: 1px solid var(--color-tonegray03);
  border-radius: 27px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-pageheader.is-detail .p-pageheader__topicstagItem::before {
  display: inline-block;
  content: "#";
}
.p-pageheader.is-detail .p-pageheader__image {
  width: auto;
  height: 320px;
  margin-top: -48px;
  margin-bottom: -48px;
}
.p-pageheader.is-detail .p-pageheader__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  height: 100%;
  border-radius: 16px;
}
.p-pageheader.is-detail:has(.p-pageheader__image) .p-pageheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 80px;
  min-height: 320px;
  padding: 48px 0;
}
.p-pageheader.is-detail:has(.p-pageheader__image) .p-pageheader__heading {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: calc(100% - 240px - 80px);
}
.p-pageheader.is-detail:has(.p-pageheader__image) .p-pageheader__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 999px) {
  .p-pageheader {
    padding-top: 88px;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-pageheader {
    /* is-cover */
    /* is-detail */
  }
  .p-pageheader__outer {
    margin: 0 16px;
  }
  .p-pageheader__heading--jp {
    font-size: 3.6rem;
  }
  .p-pageheader.is-cover {
    background: url(../images/common/pageheader_sp.webp) no-repeat center;
    background-size: cover;
    /* case index page */
  }
  .p-pageheader.is-cover .p-pageheader__inner {
    height: 405px;
    padding: 80px 0;
  }
  .p-pageheader.is-cover .p-pageheader__heading--jp {
    font-size: 3.6rem;
  }
  .p-pageheader.is-cover.is-case .p-pageheader__inner {
    height: auto;
    padding-bottom: 64px;
  }
  .p-pageheader.is-cover.is-case .p-pageheader__caselead {
    font-size: 1.6rem;
  }
  .p-pageheader.is-cover.is-case .p-pageheader__casetag li {
    font-size: 1.5rem;
  }
  .p-pageheader.is-cover.is-case .p-pageheader__casesummary {
    padding: 28px;
  }
  .p-pageheader.is-cover.is-case .p-pageheader__casesummary p:not([class]) {
    font-size: 2.2rem;
  }
  .p-pageheader.is-detail::before {
    height: 522px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52.29%, rgba(245, 246, 250, 0)), to(#F5F6FA));
    background: linear-gradient(180deg, rgba(245, 246, 250, 0) 52.29%, #F5F6FA 100%);
  }
  .p-pageheader.is-detail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 522px;
    background: url(../images/common/pageheader_sp.webp) no-repeat top center;
    background-size: cover;
  }
  .p-pageheader.is-detail .p-pageheader__inner {
    height: auto;
    min-height: 202px;
    padding: 40px 0;
  }
  .p-pageheader.is-detail .p-pageheader__heading--jp {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.8rem;
  }
  .p-pageheader.is-detail .p-pageheader__image {
    height: 214px;
    margin-top: 40px;
    margin-bottom: 0;
    margin: 40px 0 0 auto;
  }
  .p-pageheader.is-detail:has(.p-pageheader__image) .p-pageheader__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 40px 0 0 0;
  }
  .p-pageheader.is-detail:has(.p-pageheader__image) .p-pageheader__heading {
    width: 100%;
    font-size: 2.8rem;
  }
}
.parts-heading {
  margin-top: 40px;
  padding: 24px 48px !important;
  color: var(--color-red03);
  border-radius: 8px;
  background-color: var(--color-red01);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.parts-heading3 {
  margin-top: 40px;
  padding: 8px 0;
  border-top: 1px solid var(--color-gray03);
  border-bottom: 1px solid var(--color-gray03);
  color: #FF00C7;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-article {
  /* phrase */
  /* a */
  /* heading */
  /* リスト */
  /* テーブル */
}
.p-article > *:first-child {
  margin-top: 0 !important;
  padding-top: 0;
}
.p-article > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-article strong {
  font-weight: 700;
}
.p-article p:not([class]),
.p-article p[class^=u-] {
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-article p:not([class]) + p:not([class]),
.p-article p[class^=u-] + p:not([class]) {
  margin-top: 16px;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"]),
.p-article p.c-note a:not([class]):not([href^="tel:"]),
.p-article ul:not([class]) a:not([class]):not([href^="tel:"]),
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"]),
.p-article ol:not([class]) a:not([class]):not([href^="tel:"]),
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"]),
.p-article figcaption a:not([class]):not([href^="tel:"]),
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"]),
.p-article .c-video__caption a:not([class]):not([href^="tel:"]),
.p-article table:not([class]) a:not([class]):not([href^="tel:"]) {
  display: inline;
  position: relative;
  color: var(--color-link);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-link)), to(var(--color-link))) left bottom no-repeat;
  background: linear-gradient(var(--color-link), var(--color-link)) left bottom no-repeat;
  background-size: 100% 1px;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"])::after,
.p-article p.c-note a:not([class]):not([href^="tel:"])::after,
.p-article ul:not([class]) a:not([class]):not([href^="tel:"])::after,
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"])::after,
.p-article ol:not([class]) a:not([class]):not([href^="tel:"])::after,
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"])::after,
.p-article figcaption a:not([class]):not([href^="tel:"])::after,
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"])::after,
.p-article .c-video__caption a:not([class]):not([href^="tel:"])::after,
.p-article table:not([class]) a:not([class]):not([href^="tel:"])::after {
  display: inline-block;
  content: "";
  position: relative;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"])[target=_blank],
.p-article p.c-note a:not([class]):not([href^="tel:"])[target=_blank],
.p-article ul:not([class]) a:not([class]):not([href^="tel:"])[target=_blank],
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"])[target=_blank],
.p-article ol:not([class]) a:not([class]):not([href^="tel:"])[target=_blank],
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"])[target=_blank],
.p-article figcaption a:not([class]):not([href^="tel:"])[target=_blank],
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"])[target=_blank],
.p-article .c-video__caption a:not([class]):not([href^="tel:"])[target=_blank],
.p-article table:not([class]) a:not([class]):not([href^="tel:"])[target=_blank] {
  background-size: calc(100% - 22px) 1px;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article p.c-note a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article ul:not([class]) a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article ol:not([class]) a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article figcaption a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article .c-video__caption a:not([class]):not([href^="tel:"])[target=_blank]::after,
.p-article table:not([class]) a:not([class]):not([href^="tel:"])[target=_blank]::after {
  width: 12px;
  height: 12px;
  margin: -2px 6px 0 4px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-blank.svg);
          mask-image: url(../images/common/icon-blank.svg);
  background: var(--color-link);
  vertical-align: middle;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article p.c-note a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article ul:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article ol:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article figcaption a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article .c-video__caption a:not([class]):not([href^="tel:"])[href$=".pdf"],
.p-article table:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"] {
  background-size: calc(100% - 22px) 1px;
}
.p-article p:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article p.c-note a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article ul:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article ul[class^=u-] a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article ol:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article ol[class^=u-] a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article figcaption a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article .c-dlcolumn a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article .c-video__caption a:not([class]):not([href^="tel:"])[href$=".pdf"]::after,
.p-article table:not([class]) a:not([class]):not([href^="tel:"])[href$=".pdf"]::after {
  width: 12px;
  height: 12px;
  margin: -2px 6px 0 4px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-pdf.svg);
          mask-image: url(../images/common/icon-pdf.svg);
  background: var(--color-link);
  vertical-align: middle;
}
.p-article h2:not([class]),
.p-article h2:not([class^=u-h])[class^=u-],
.p-article .u-h2 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 16px;
  padding: 0 0 6px 25px;
  color: var(--color-brand-blue);
  border-bottom: 1px solid var(--color-tonegray03);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-article h2:not([class])::before,
.p-article h2:not([class^=u-h])[class^=u-]::before,
.p-article .u-h2::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../images/common/icon-elem.svg) no-repeat center;
  background-position: center;
  background-size: 100%;
}
.p-article h3:not([class]),
.p-article h3:not([class^=u-h])[class^=u-],
.p-article .u-h3 {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-article h4:not([class]),
.p-article h4:not([class^=u-h])[class^=u-],
.p-article .u-h4 {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-article h5:not([class]),
.p-article h5:not([class^=u-h])[class^=u-],
.p-article .u-h5 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.p-article h6:not([class]),
.p-article h6:not([class^=u-h])[class^=u-],
.p-article .u-h6 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-article ul:not([class]) {
  margin-top: 24px;
}
.p-article ul:not([class]):first-child {
  margin-top: 0;
}
.p-article ul:not([class]) li {
  position: relative;
  padding-left: 16px;
}
.p-article ul:not([class]) li + li {
  margin-top: 8px;
}
.p-article ul:not([class]) li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-blue);
}
.p-article ul:not([class]) > li {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-article ul:not([class]) > li ul:not([class]) {
  margin: 8px 0;
}
.p-article ul:not([class]) > li ul:not([class]) li::before {
  background-color: transparent;
  border: 1px solid var(--color-brand-blue);
}
.p-article ol:not([class]) {
  margin-top: 24px;
  counter-reset: item;
}
.p-article ol:not([class]):first-child {
  margin-top: 0;
}
.p-article ol:not([class]) li {
  position: relative;
  padding-left: 24px;
}
.p-article ol:not([class]) li + li {
  margin-top: 8px;
}
.p-article ol:not([class]) li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  counter-increment: item;
  content: counter(item) ".";
  width: 24px;
  height: 24px;
  color: var(--color-brand-blue);
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-article ol:not([class]) > li ol:not([class]) {
  margin: 8px 0;
}
.p-article ol:not([class]) > li ol:not([class]) li::before {
  font-weight: 500;
}
.p-article table:not([class]) {
  width: 100%;
  margin-bottom: 1px;
  border-collapse: collapse;
  border-spacing: 0;
}
.p-article table:not([class]) colgroup {
  width: 100%;
}
.p-article table:not([class]) caption {
  margin-bottom: 8px;
  color: var(--color-tonegray04);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: right;
}
.p-article table:not([class]) caption::before {
  content: "( ";
}
.p-article table:not([class]) caption::after {
  content: " )";
}
.p-article table:not([class]) thead th {
  padding: 17px 20px;
  background-color: var(--color-tonegray01);
  border-left: 1px solid var(--color-gray03);
  border-bottom: none;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  vertical-align: middle;
}
.p-article table:not([class]) th {
  padding: 17px 20px;
  border: 1px solid var(--color-gray03);
  background-color: var(--color-tonegray01);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  vertical-align: middle;
}
.p-article table:not([class]) th > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.p-article table:not([class]) th > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-article table:not([class]) td {
  padding: 17px 20px;
  border: 1px solid var(--color-gray03);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  vertical-align: middle;
}
.p-article table:not([class]) td > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.p-article table:not([class]) td > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .p-article {
    /* a */
  }
  .p-article p:not([class]) a:not([class]):not([href^="tel:"]),
  .p-article p.c-note a:not([class]):not([href^="tel:"]),
  .p-article ul:not([class]) a:not([class]):not([href^="tel:"]),
  .p-article ul[class^=u-] a:not([class]):not([href^="tel:"]),
  .p-article ol:not([class]) a:not([class]):not([href^="tel:"]),
  .p-article ol[class^=u-] a:not([class]):not([href^="tel:"]),
  .p-article figcaption a:not([class]):not([href^="tel:"]),
  .p-article .c-dlcolumn a:not([class]):not([href^="tel:"]),
  .p-article .c-video__caption a:not([class]):not([href^="tel:"]),
  .p-article table:not([class]) a:not([class]):not([href^="tel:"]) {
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transition-property: background-size, color;
    transition-property: background-size, color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .p-article p:not([class]) a:not([class]):not([href^="tel:"]):hover,
  .p-article p.c-note a:not([class]):not([href^="tel:"]):hover,
  .p-article ul:not([class]) a:not([class]):not([href^="tel:"]):hover,
  .p-article ul[class^=u-] a:not([class]):not([href^="tel:"]):hover,
  .p-article ol:not([class]) a:not([class]):not([href^="tel:"]):hover,
  .p-article ol[class^=u-] a:not([class]):not([href^="tel:"]):hover,
  .p-article figcaption a:not([class]):not([href^="tel:"]):hover,
  .p-article .c-dlcolumn a:not([class]):not([href^="tel:"]):hover,
  .p-article .c-video__caption a:not([class]):not([href^="tel:"]):hover,
  .p-article table:not([class]) a:not([class]):not([href^="tel:"]):hover {
    background-size: 0 1px;
    background-position: 100% bottom;
  }
  .p-article p:not([class]) a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article p.c-note a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article ul:not([class]) a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article ul[class^=u-] a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article ol:not([class]) a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article ol[class^=u-] a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article figcaption a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article .c-dlcolumn a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article .c-video__caption a:not([class]):not([href^="tel:"]):hover[target=_blank],
  .p-article table:not([class]) a:not([class]):not([href^="tel:"]):hover[target=_blank] {
    background-position: calc(100% - 22px) bottom;
  }
  .p-article p:not([class]) a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article p.c-note a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article ul:not([class]) a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article ul[class^=u-] a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article ol:not([class]) a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article ol[class^=u-] a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article figcaption a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article .c-dlcolumn a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article .c-video__caption a:not([class]):not([href^="tel:"]):hover[href$=".pdf"],
  .p-article table:not([class]) a:not([class]):not([href^="tel:"]):hover[href$=".pdf"] {
    background-position: calc(100% - 22px) bottom;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .parts-heading {
    padding: 24px 16px !important;
  }
  .parts-heading3 {
    margin-top: 40px;
    padding: 8px 0;
    border-top: 1px solid var(--color-gray03);
    border-bottom: 1px solid var(--color-gray03);
    color: #FF00C7;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .p-article {
    /* リスト */
    /* テーブル */
  }
  .p-article h3:not([class]),
  .p-article h3:not([class^=u-h])[class^=u-],
  .p-article .u-h3 {
    font-size: 2.6rem;
  }
  .p-article h4:not([class]),
  .p-article h4:not([class^=u-h])[class^=u-],
  .p-article .u-h4 {
    font-size: 2.2rem;
  }
  .p-article h5:not([class]),
  .p-article h5:not([class^=u-h])[class^=u-],
  .p-article .u-h5 {
    font-size: 1.8rem;
  }
  .p-article h6:not([class]),
  .p-article h6:not([class^=u-h])[class^=u-],
  .p-article .u-h6 {
    font-size: 1.6rem;
  }
  .p-article ol:not([class]) li::before {
    top: 0.09em;
    font-size: 1.6rem;
  }
  .p-article table:not([class]) caption {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: calc(100vw - 32px);
  }
}
.p-case {
  padding: 64px 0;
  background-color: var(--color-tonegray01);
}
.p-case__outer {
  margin: 0 24px;
}
.p-case__inner {
  max-width: 1056px;
  margin: 0 auto;
}
.p-case__inner > *:first-child {
  margin-top: 0;
}
.p-case__heading {
  position: relative;
  margin-top: 80px;
  margin-bottom: 16px;
  padding: 0 0 6px 25px;
  color: var(--color-brand-blue);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-case__heading::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../images/common/icon-elem.svg) no-repeat center;
  background-position: center;
  background-size: 100%;
}
.p-caseslider {
  margin-top: 32px;
  /* swiper */
}
.current--home .p-caseslider {
  margin-top: 64px;
}
.p-caseslider__item {
  display: block;
  position: relative;
}
.p-caseslider__inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
}
.p-caseslider__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.p-caseslider__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  width: 100%;
}
.p-caseslider__label {
  display: inline-block;
  padding: 4px 10px;
  color: var(--color-white);
  border-radius: 15px;
  background-color: var(--color-brand-blue);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-caseslider__subject {
  overflow: hidden;
  margin-top: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-caseslider__pagination {
  position: absolute;
  top: calc(50% - 32px);
  width: 100%;
}
.p-caseslider .swiper-container {
  position: relative;
}
.p-caseslider .swiper-slide {
  width: 100%;
  max-width: 334px;
}
.p-caseslider .swiper-button-prev,
.p-caseslider .swiper-button-next {
  width: 64px;
  height: 64px;
  margin-top: 0;
  border-radius: 50%;
  background-color: var(--color-bg01);
  border: 1px solid var(--color-brand-blue);
  -webkit-box-shadow: 0px 0px 8px 0px var(--color-brand-blue);
          box-shadow: 0px 0px 8px 0px var(--color-brand-blue);
}
.p-caseslider .swiper-button-prev {
  left: -32px;
}
.p-caseslider .swiper-button-next {
  right: -32px;
}
.p-caseslider .swiper-button-next::before,
.p-caseslider .swiper-button-prev::before {
  display: block;
  content: "";
  width: 12px;
  height: 19px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/icon-chevron.svg);
          mask-image: url(../images/common/icon-chevron.svg);
  background: var(--color-brand-blue);
}
.p-caseslider .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-caseslider .swiper-button-next::after,
.p-caseslider .swiper-button-prev:after {
  content: none;
}
.p-caseslider .swiper-button-next.swiper-button-disabled,
.p-caseslider .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .p-caseslider .swiper-button-prev,
  .p-caseslider .swiper-button-next {
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .p-caseslider .swiper-button-prev:hover,
  .p-caseslider .swiper-button-next:hover {
    background-color: var(--color-tonegray01);
  }
}
/* tb
----------------------------------------------- */
@media only screen and (max-width: 959px) {
  .p-caseslider {
    width: calc(100% - 38px);
    margin-right: auto;
    margin-left: auto;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-caseslider {
    width: calc(100% - 32px);
    margin-top: 64px;
    /* swiper */
  }
  .p-caseslider__thumb {
    border-radius: 8px;
  }
  .p-caseslider .swiper-slide {
    width: 75.2vw;
  }
}
.p-topics__head {
  border-bottom: solid 1px var(--color-tonegray02);
}
.p-topics__tags {
  margin-top: 40px;
  padding-bottom: 24px;
  display: none;
}
.p-topics__tags .p-toptopics__itemData {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-topics__tags button.p-toptopics__itemTag.is-current {
  color: var(--color-white);
  border-color: var(--color-tonegray04);
  background-color: var(--color-tonegray04);
}
.p-topics__tags.is-show {
  display: block;
}
.p-topics__body {
  margin-top: 16px;
}
.p-topics__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-topics__tabs__tab {
  position: relative;
  padding: 0 24px 16px;
  color: var(--color-tonegray03);
  font-weight: 500;
}
.p-topics__tabs__tab::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-brand-blue);
  opacity: 0;
  content: "";
}
.p-topics__tabs__tab[aria-selected=true] {
  color: var(--color-brand-blue);
}
.p-topics__tabs__tab[aria-selected=true]::after {
  opacity: 1;
}
.p-topics__content .p-toptopics__item {
  padding: 24px 0;
  border-bottom: solid 1px var(--color-tonegray01);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemData {
  margin-right: 24px;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemData .p-toptopics__itemDate {
  color: var(--color-gray04);
  line-height: 1.5;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemData.-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSubject {
  max-width: 100%;
  width: auto;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSubject .p-toptopics__itemData {
  margin-right: 0;
  margin-bottom: 12px;
  gap: 8px;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSubject .p-toptopics__itemData > li:first-child {
  margin-right: 12px;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSubject .p-toptopics__itemData .p-toptopics__itemCategory {
  min-height: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSubject a {
  font-weight: 500;
}
.p-topics__content .p-toptopics__item .p-toptopics__itemSchedule {
  color: var(--color-gray04);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-topics__content .p-toptopics__item[hidden] {
  display: none;
}
.p-topics__pager {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.p-topics__pager__btn {
  color: var(--color-brand-blue);
  font-size: 1.2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-topics__pager__btn__icon {
  position: relative;
  width: 42px;
  height: 42px;
  background-color: var(--color-tonegray01);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-topics__pager__btn__icon::before, .p-topics__pager__btn__icon::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 19px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  content: "";
}
.p-topics__pager__btn__icon::after {
  opacity: 0;
}
.p-topics__pager__btn.-prev .p-topics__pager__btn__icon::before {
  background-image: url("../images/common/icon-prev.svg");
}
.p-topics__pager__btn.-prev .p-topics__pager__btn__icon::after {
  background-image: url("../images/common/icon-prev-on.svg");
}
.p-topics__pager__btn.-next .p-topics__pager__btn__icon {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-topics__pager__btn.-next .p-topics__pager__btn__icon::before {
  background-image: url("../images/common/icon-next.svg");
}
.p-topics__pager__btn.-next .p-topics__pager__btn__icon::after {
  background-image: url("../images/common/icon-next-on.svg");
}
.p-topics__pager__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-topics__pager__count__text {
  font-size: 12px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-topics__pager__count__text__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-topics__pager__count__text__label:nth-child(2)::before {
  width: 13px;
  height: 1px;
  margin: 0 4px;
  background-color: var(--color-gray04);
  display: block;
  content: "";
}
.p-topics .p-toptopics__itemData {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-topics .p-toptopics__itemTag {
  min-height: 24px;
  padding: 0 13px;
  color: var(--color-tonegray04);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  border: solid 1px var(--color-tonegray03);
  border-radius: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* pc
----------------------------------------------- */
@media only screen and (min-width: 821px) {
  .p-topics__tabs__tab {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-topics__tabs__tab::after {
    -webkit-transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-topics__tabs__tab:hover {
    color: var(--color-brand-red);
  }
  .p-topics__tabs__tab:hover::after {
    background-color: var(--color-brand-red);
    opacity: 1;
  }
  .p-topics__tags button.p-toptopics__itemTag:not(.is-current) {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1), border 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1), border 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-topics__tags button.p-toptopics__itemTag:not(.is-current):hover {
    color: var(--color-brand-red);
    border: solid 1px var(--color-brand-red);
  }
  .p-topics__tags button.p-toptopics__itemTag.is-current {
    pointer-events: none;
  }
  .p-topics__pager__btn {
    -webkit-transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-topics__pager__btn__icon::before, .p-topics__pager__btn__icon::after {
    -webkit-transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-topics__pager__btn:hover {
    color: var(--color-brand-red);
  }
  .p-topics__pager__btn:hover .p-topics__pager__btn__icon::before {
    opacity: 0;
  }
  .p-topics__pager__btn:hover .p-topics__pager__btn__icon::after {
    opacity: 1;
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .p-topics__tags .p-toptopics__itemData {
    gap: 8px;
  }
  .p-topics__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-topics__tabs__tab {
    padding: 0 15px 16px;
  }
  .p-topics__tabs__tab:first-child, .p-topics__tabs__tab:last-child {
    padding: 0 16.5px 16px;
  }
  .p-topics__content .p-toptopics__item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px 0;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemData {
    margin-right: 16px;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemSubject {
    position: static;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemSubject .p-toptopics__itemData .p-toptopics__itemTag {
    margin-bottom: 0;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemSubject .p-toptopics__itemData > li:first-child {
    position: absolute;
    top: 24px;
    left: 130px;
    margin-right: 0;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemSubject a {
    margin-top: 12px;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemSchedule {
    margin-bottom: 12px;
  }
  .p-topics__content .p-toptopics__item .p-toptopics__itemTag {
    margin-bottom: 12px;
  }
  .p-topics__pager {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 0;
  }
  .p-topics__pager__btn__icon::after {
    content: none;
  }
  .p-topics__pager__btn.-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-topics__pager__btn.-next {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-topics__pager__count {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.u-h2 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 16px;
  padding: 0 0 6px 25px;
  color: var(--color-brand-blue);
  border-bottom: 1px solid var(--color-tonegray03);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.u-h2::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../images/common/icon-elem.svg) no-repeat center;
  background-position: center;
  background-size: 100%;
}
.u-h3 {
  color: var(--color-brand-blue);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.u-h4 {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.u-h5 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.u-h6 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .u-h3 {
    font-size: 2.4rem;
  }
  .u-h4 {
    font-size: 2.2rem;
  }
  .u-h5 {
    font-size: 1.8rem;
  }
  .u-h6 {
    font-size: 1.6rem;
  }
}
.u-en {
  font-family: var(--font-en);
  font-style: normal;
}

.u-fontMedium {
  font-weight: 500 !important;
}
.u-fontBold {
  font-weight: 600 !important;
}
.u-fontExtraBold {
  font-weight: 700 !important;
}

.u-red {
  color: var(--color-red04);
}

/* pc
----------------------------------------------- */
/* u-align
----------------------------------------------- */
.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

/* u-mt
----------------------------------------------- */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt56 {
  margin-top: 56px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt112 {
  margin-top: 112px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mt140 {
  margin-top: 144px !important;
}

/* u-mb
----------------------------------------------- */
.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb56 {
  margin-bottom: 56px !important;
}

.u-mb64 {
  margin-bottom: 64px !important;
}

.u-mb144 {
  margin-bottom: 144px !important;
}

/* sp
----------------------------------------------- */
@media only screen and (max-width: 820px) {
  .u-mb40 {
    margin-bottom: 32px !important;
  }
  .u-mb144 {
    margin-bottom: 120px !important;
  }
  .u-spbt0 {
    margin-bottom: 0 !important;
  }
  .u-spmb8 {
    margin-bottom: 8px !important;
  }
  .u-spmb16 {
    margin-bottom: 16px !important;
  }
  .u-spbt24 {
    margin-bottom: 24px !important;
  }
  .u-spmb32 {
    margin-bottom: 32px !important;
  }
  .u-spmb48 {
    margin-bottom: 48px !important;
  }
  .u-spmb56 {
    margin-bottom: 56px !important;
  }
  .u-spmb120 {
    margin-bottom: 120px !important;
  }
}
.u-uppercase {
  text-transform: uppercase;
}

.u-blank {
  margin: 0 1em;
}

/*---------------------------------------------
  print
--------------------------------------------- */
@media print {
  * {
    -webkit-print-color-adjust: exact;
  }
  body {
    min-width: 1240px;
    zoom: 0.8;
  }
  /* 非表示
  /* ----------------------- */
  .sp-only {
    display: none;
  }
  /* 表示
  /* ----------------------- */
  .l-header {
    position: relative;
  }
  .is-scroll .l-header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .is-opening .l-header {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .is-minheader .l-header {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .is-minheader .l-header .l-header__content {
    height: 100px;
  }
  .is-minheader .l-header .l-nav__utility {
    display: block;
  }
  .l-header__button {
    display: none;
  }
  .l-nav__inner {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  .p-kv {
    width: 100%;
    height: 740px;
  }
  .p-kv__outer {
    height: 740px;
  }
  .p-kv .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .p-kv .swiper-slide {
    display: none;
    width: 100%;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .p-kv .swiper-slide[data-swiper-slide-index="0"] {
    display: block;
  }
  /* c-heading */
  .c-heading__en {
    font-size: 64px;
  }
  .c-heading__jp {
    font-size: 24px;
  }
  /* p-topabout */
  .p-topabout__head .c-heading,
  .p-topabout__head .p-topabout__lead,
  .p-topabout__head .p-topabout__button {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .l-footer__pageup {
    display: none;
  }
  /* 下層 */
  /* js */
  .js-slider .swiper-slide {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    -webkit-transition-duration: 0ms !important;
            transition-duration: 0ms !important;
  }
  .js-slider .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    -webkit-transition-duration: 0ms !important;
            transition-duration: 0ms !important;
  }
  .js-inview .is-fade {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .js-inview-ready {
    -webkit-transform: none;
            transform: none;
  }
}