@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap");
/* === foundation ===  */
main article,
main aside,
main details,
main figcaption,
main figure,
main footer,
main header,
main hgroup,
main main,
main menu,
main nav,
main section,
main summary {
  display: block;
}

main img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

main *,
main *:before,
main *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* base */
main {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-style: normal;
  color: #2F3E55;
  min-height: -webkit-fill-available;
}

main {
  background-color: #fff;
  color: #2F3E55;
}

main b,
main strong {
  font-weight: 400;
}

main a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

main a:hover {
  color: #3880A9;
  opacity: 1;
  text-decoration: none;
}

/* === layout ===  */
.l-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
}

.l-header.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l-header:before {
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.12);
}

.l-header.is-scroll.menuFixed {
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
}

.l-header.is-scroll {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 9;
  position: fixed;
  top: 81px;
  margin-top: 0;
}

.l-header.is-scroll:before {
  opacity: 1;
}

.l-header.is-scroll .l-header__lists {
  -webkit-transform: translateX(-190px);
  transform: translateX(-190px);
}

.l-header.is-scroll .l-header__link {
  color: #2F3E55;
}

.l-header.is-scroll .l-header__link:hover {
  color: #3880A9;
  opacity: 1;
}

.l-header.is-scroll .l-header__link .c-icon._blank-w {
  display: none;
}

.l-header.is-scroll .l-header__link .c-icon._blank {
  display: inline-block;
}

.l-header.is-scroll .l-header__buttons {
  opacity: 1;
  pointer-events: initial;
}

.l-wrap._product .l-header.in-view {
  z-index: 5;
}

.l-wrap._product .l-header.in-view .l-header__buttons {
  pointer-events: initial;
}

.wf-active .l-header,
.wf-active .l-header__sp-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 68px;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.in-view .l-header__inner {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-name: navi;
  animation-name: navi; /* アニメーション名 */
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; /* 開始から終了までの所要時間 */
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1; /* アニメーションのループ回数 */
  -webkit-animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95);
  animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95); /* 動きの加減速 */
  -webkit-animation-delay: 1s;
  animation-delay: 1s; /* アニメーションが開始するまでの遅延時間 */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; /* アニメーション開始前・終了後の挙動 */
}

.l-header__logo {
  position: relative;
}

.l-header__logo-1 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  height: auto;
  min-width: 125px;
  height: auto;
}

.l-header__logo-2 {
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  top: 0;
  opacity: 0;
  height: auto;
}

.l-header__logo-img {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 auto;
}

.l-header__lists {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  gap: 24px;
}

.l-header__link {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 48px;
  white-space: nowrap;
  text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.l-header__link:hover {
  color: #3880A9;
  opacity: 1;
}

.l-header__link .c-icon {
  margin-left: 5px;
}

.l-header__link .c-icon._blank-w {
  display: inline-block;
}

.l-header__link .c-icon._blank {
  display: none;
}

.l-header__buttons {
  margin-right: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.l-header__buttons .c-button {
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.32);
}

.l-header__buttons .c-button__inner-mask {
  height: 88px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-header__login-link {
  color: #fff;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

.l-header__login-link:hover {
  color: #3880A9 !important;
}

.l-header__close {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.l-wrap {
  width: 100%;
  position: relative;
}

.l-wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), color-stop(25%, rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.7) 100%);
  z-index: -1;
}

/* === utility ===  */
.u-relative {
  position: relative;
}

.u-overflow {
  width: 100%;
  overflow: hidden;
}

[data-observetarget] {
  -webkit-transition: all 0.3s ease 0.3s;
  transition: all 0.3s ease 0.3s;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

[data-observetarget].in-view {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

[data-observetarget][data-delay="100"] {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

[data-observetarget][data-delay="200"] {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

[data-observetarget][data-delay="300"] {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

[data-observetarget][data-delay="400"] {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

[data-observetarget][data-delay="500"] {
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

[data-observetarget][data-delay="600"] {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

[data-observetarget][data-delay="700"] {
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
}

[data-observetarget][data-delay="800"] {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

[data-observetarget][data-delay="900"] {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

[data-observetarget][data-delay="1000"] {
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

/* === component ===  */
.c-button {
  border-radius: 50px;
  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;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  font-size: 16px;
  padding: 11px 11px 11px 28px;
}

.c-button._white {
  background: #fff;
  color: #20A7F5;
  border: 1px solid #20A7F5;
}

.c-button._white .c-button__icon {
  background: #20A7F5;
}

.c-button._white svg {
  fill: #fff;
}

.c-button._white:hover {
  border: 1px solid #3880A9;
  color: #3880A9;
}

.c-button._white:hover .c-button__icon {
  background: #3880A9;
}

.c-button._red {
  background: #FF6961;
  color: #fff;
}

.c-button._red .c-button__icon {
  background: #fff;
}

.c-button._red svg {
  fill: #FF6961;
}

.c-button._red:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #20A7F5;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-button._red:hover svg {
  fill: #20A7F5;
}

.c-button._red:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.c-button._blue {
  background: #20A7F5;
  color: #fff;
}

.c-button._blue .c-button__icon {
  background: #fff;
}

.c-button._blue svg {
  fill: #20A7F5;
}

.c-button._blue:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #3880A9;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-button._blue:hover svg {
  fill: #20A7F5;
}

.c-button._blue:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.c-button._small {
  width: 190px;
  height: 48px;
  padding: 8px 8px 8px 24px;
}

.c-button._small .c-button__icon {
  width: 32px;
  height: 32px;
}

.c-button._medium {
  width: 260px;
  height: 64px;
}

.c-button._medium .c-button__icon {
  width: 42px;
  height: 42px;
}

.c-button._large {
  width: 300px;
  height: 64px;
}

.c-button._large .c-button__icon {
  width: 42px;
  height: 42px;
}

.c-button._xlarge {
  width: 414px;
  height: 72px;
  padding-left: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
}

.c-button._xlarge .c-button__icon {
  width: 50px;
  height: 50px;
  left: 11px;
  margin-left: 0;
  position: absolute;
}

.c-button._w320 {
  width: 320px;
  margin: 0 auto;
  height: 56px;
}

.c-button._w320 .c-button__icon {
  left: 7px;
}

.c-button._minimun {
  width: 100px;
  margin: 0 auto;
  height: 50px;
  border: 1px solid #D1DBE0;
  background: #fff;
}

.c-button._auto {
  display: none;
}

.c-button__text {
  position: relative;
}

.c-button__text._fz15 {
  font-size: 15px;
}

.c-button__text._fz16 {
  font-size: 16px;
}

.c-button__text._fz20 {
  font-size: 20px;
}

.c-button__icon {
  position: relative;
  display: block;
  border-radius: 50% 50%;
  background: #fff;
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

:root {
  --swiper-theme-color: #ccc;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0; /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-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-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-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-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-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-container-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-container-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-container-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));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  bottom: 48px;
  gap: 16px;
  height: 8px;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(40, 75, 85, 0.16);
  border-radius: 50%;
}

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

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 50%;
  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;
  border: 2px solid #20A7F5;
  background: #fff;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.5;
}

.swiper-button-next {
  right: -58px;
  left: auto;
}

.swiper-button-prev {
  left: -58px;
}

.swiper-button-prev .svg-icon-arrow-dims {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* === section ===  */
.se-mainvisual {
  min-height: 640px;
  max-height: 750px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  height: calc(100vh - 116px);
  height: calc(100svh - 116px);
}

.se-mainvisual__movie {
  position: absolute;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.se-mainvisual__movie:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(185, 190, 195, 0.4)), to(rgba(185, 190, 195, 0.4)));
  background: linear-gradient(0deg, rgba(185, 190, 195, 0.4) 0%, rgba(185, 190, 195, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.wf-active .se-mainvisual__movie {
  opacity: 1;
}

.se-mainvisual__movie-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.se-mainvisual__mask-parts {
  background: #fff;
  display: block;
  position: absolute;
  z-index: 1;
}

.se-mainvisual__mask-parts:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(/jp/set/data/product/delivery/images/mv-corner.svg) no-repeat center center;
  background-size: 40px 40px;
  position: absolute;
}

.se-mainvisual__mask-parts._top {
  width: 100%;
  height: 20px;
  top: 0;
  left: 0;
}

.se-mainvisual__mask-parts._top:before {
  top: 0;
  left: 0;
}

.se-mainvisual__mask-parts._right {
  width: 20px;
  height: 100%;
  top: 0;
  right: 0;
}

.se-mainvisual__mask-parts._right:before {
  top: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.se-mainvisual__mask-parts._bottom {
  width: 100%;
  height: 20px;
  bottom: 0;
  right: 0;
}

.se-mainvisual__mask-parts._bottom:before {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.se-mainvisual__mask-parts._left {
  width: 20px;
  height: 100%;
  bottom: 0;
  left: 0;
}

.se-mainvisual__mask-parts._left:before {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.se-mainvisual__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.se-mainvisual__img {
  height: 100%;
  width: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.se-mainvisual__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.se-mainvisual__texts .c-button {
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  max-width: 300px;
}

.in-view.se-mainvisual__texts .c-button {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-name: mv-button;
  animation-name: mv-button; /* アニメーション名 */
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms; /* 開始から終了までの所要時間 */
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1; /* アニメーションのループ回数 */
  -webkit-animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95);
  animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95); /* 動きの加減速 */
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s; /* アニメーションが開始するまでの遅延時間 */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; /* アニメーション開始前・終了後の挙動 */
}

.se-mainvisual__box {
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
}

.in-view.se-mainvisual__texts + .se-mainvisual__box {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-name: mv-button2;
  animation-name: mv-button2; /* アニメーション名 */
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms; /* 開始から終了までの所要時間 */
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1; /* アニメーションのループ回数 */
  -webkit-animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95);
  animation-timing-function: cubic-bezier(0.06, 0.86, 0.37, 0.95); /* 動きの加減速 */
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; /* アニメーションが開始するまでの遅延時間 */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; /* アニメーション開始前・終了後の挙動 */
}

.se-mainvisual__texts {
  position: absolute;
  left: 54px;
  bottom: 60px;
  color: #fff;
  width: 100%;
}

.se-mainvisual__texts .c-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.se-mainvisual__texts .c-button.is-view {
  opacity: 1;
}

.se-mainvisual__title {
  margin-bottom: 14px;
}

.se-mainvisual__title .c-animation-text-wrap {
  -webkit-filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.32));
  filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.32));
}

.se-mainvisual__title-1 {
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1.28px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.se-mainvisual__title-2 {
  font-size: 72px;
  font-weight: 900;
  line-height: 115%; /* 82.8px */
  letter-spacing: 2.88px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.se-mainvisual__title-2 .c-animation-text__inner {
  padding-bottom: 10px;
}

.se-mainvisual__title-2._small {
  font-size: 45px;
}

.se-mainvisual__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  margin-bottom: 53px;
  width: 861px;
  max-width: calc(100vw - 600px);
}

.se-mainvisual__text .c-animation-text-wrap {
  -webkit-filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.32));
  filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.32));
}

.se-mainvisual__box {
  border-radius: 12px 0px 0px 12px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(135deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(135deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.04);
  position: absolute;
  right: 0;
  bottom: 81px;
  height: 195px;
  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;
  padding: 21px 32px 21px 32px;
  gap: 24px;
}

.se-mainvisual__box-img {
  width: 153px;
  height: auto;
  max-width: 10vw;
}

.se-mainvisual__box-text p {
  color: #284B55;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 150%;
  margin-bottom: 8px;
}

.l-wrap._product .l-header.is-scroll .l-header__lists {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-wrap._product .l-header .l-header__buttons {
  opacity: 1;
  position: static;
}

@media screen and (min-width: 769px) {
  .u-pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1145px) {
  .se-mainvisual__text {
    max-width: calc(100vw - 500px);
  }
  .se-mainvisual__box {
    height: auto;
    padding: 16px 24px 16px 24px;
    gap: 17px;
  }
  .se-mainvisual__box .c-button._medium {
    width: auto;
  }
  .se-mainvisual__box-img {
    width: 153px;
    max-width: 10vw;
  }
  .se-mainvisual__box-text p {
    color: #284B55;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    line-height: 150%;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 769px) and (max-width: 835px) {
  .se-mainvisual__text {
    max-width: calc(100vw - 450px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1260px) {
  .se-mainvisual__title-2 {
    font-size: 50px;
  }
  .se-mainvisual__text {
    font-size: 14px;
  }
  .l-wrap._product .se-mainvisual__title-2 {
    font-size: 72px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .se-mainvisual__title-2._small {
    font-size: 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .se-mainvisual__title-2._small {
    font-size: 30px;
  }
  .l-wrap._product .c-animation-text-wrap._size-3 {
    height: 152px;
  }
}
@media screen and (min-width: 901px) {
  .u-tb-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1180px) {
  .l-wrap._product .c-animation-text__inner br.u-sp-none {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .u-tb-sp-none {
    display: none !important;
  }
}
@media screen and (max-width: 850px) {
  .l-header__inner {
    padding-right: 20px;
  }
  .l-header__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 812px) {
  .l-header.is-scroll {
    top: 61px;
  }
  .l-header.is-scroll.menuFixed {
    -webkit-transform: translateY(-61px);
    transform: translateY(-61px);
  }
}
@media screen and (max-width: 768px) {
  .l-wrap:before,
.l-wrap:after {
    display: none;
  }
  .u-sp-none {
    display: none !important;
  }
  .l-wrap .c-button._small,
.l-wrap .c-button._medium,
.l-wrap .c-button._large {
    width: 100%;
  }
  .l-wrap .c-button._auto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 213px;
    height: 64px;
    padding-right: 13px;
    padding-left: 28px;
    font-size: 16px;
  }
  .l-wrap .c-button._auto .c-button__icon {
    width: 42px;
    height: 42px;
  }
  .c-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .c-buttons .c-button:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .c-buttons .c-button:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .se-mainvisual {
    height: calc(100vh - 96px);
    height: calc(100svh - 96px);
    min-height: 400px;
  }
  .se-mainvisual__movie {
    position: absolute;
  }
  .se-mainvisual__movie-video {
    height: calc(100% - 24px);
    width: calc(100% - 24px);
  }
  .se-mainvisual__mask-parts:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(/jp/set/data/product/delivery/images/mv-corner.svg) no-repeat right bottom;
    background-size: 56px 56px;
    position: absolute;
  }
  .se-mainvisual__mask-parts._top {
    height: 12px;
  }
  .se-mainvisual__mask-parts._right {
    width: 12px;
  }
  .se-mainvisual__mask-parts._bottom {
    height: 12px;
  }
  .se-mainvisual__mask-parts._left {
    width: 12px;
  }
  .se-mainvisual__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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .se-mainvisual__texts {
    position: relative;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding: 24px 24px 38px;
  }
  .se-mainvisual__texts .c-button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .se-mainvisual__texts .c-button.is-view {
    opacity: 1;
  }
  .se-mainvisual__title {
    margin-bottom: 0;
  }
  .se-mainvisual__title-1 {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.96px;
    margin-bottom: 6px;
  }
  .se-mainvisual__title-2 {
    font-size: 28px;
    letter-spacing: 1.12px;
    margin-bottom: 10px;
  }
  .se-mainvisual__title-2._small {
    font-size: 25px;
  }
  .se-mainvisual__text {
    font-size: 14px;
    letter-spacing: 0.56px;
    margin-bottom: 24px;
    width: 323px;
    max-width: unset;
  }
  .se-mainvisual__box {
    display: none;
  }
}
@-webkit-keyframes navi {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes navi {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mv-button {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mv-button {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mv-button2 {
  0% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mv-button2 {
  0% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}