@charset "UTF-8";
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color: #000;
  line-height: 1;
  font-weight: 400;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (max-width: 390px) {
  html {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
/* アニメーション--------------------------- */
.fade-blur {
  opacity: 0;
}

.fade-blur.active {
  animation-name: fade-blur;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-blur {
  0% {
    opacity: 0;
    filter: blur(6px);
  }
  99% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
.fadein-up1 {
  opacity: 0;
}

.fadein-up1.active {
  opacity: 1;
  animation-name: fadein-up2;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein-up2 {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.clippath-top {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  will-change: filter;
}

.clippath-top.active {
  animation: clippath-top;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes clippath-top {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    transform: scale(1.05);
  }
  33% {
    opacity: 1;
    clip-path: inset(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-left {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  position: relative;
}

.clippath-left.active {
  animation: clippath-left;
  animation-duration: 4.5s;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes clippath-left {
  0% {
    opacity: 0;
    transform: scale(1.05);
    clip-path: inset(0 100% 0 0);
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    clip-path: inset(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-right {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  position: relative;
}

.clippath-right.active {
  animation: clippath-right;
  animation-duration: 4.5s;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes clippath-right {
  0% {
    opacity: 0;
    transform: scale(1.05);
    clip-path: inset(0 0 0 100%);
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    clip-path: inset(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-left-2 {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.clippath-left-2.active {
  animation: clippath-left-2;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes clippath-left-2 {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    margin-left: 0.7vw;
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    margin-left: 0;
  }
}
.rotate-in {
  opacity: 0;
  position: relative;
}

.rotate-in.active {
  animation: rotate-in;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: rotate;
}

@keyframes rotate-in {
  0% {
    opacity: 0;
    filter: blur(4px);
    rotate: 8deg;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    rotate: 0deg;
  }
}
.from-left {
  opacity: 0;
  position: relative;
}

.from-left.active {
  animation: from-left;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: rotate;
}

@keyframes from-left {
  0% {
    opacity: 0;
    transform: translateX(-1vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade {
  opacity: 0;
}

.fade.active {
  animation-name: fade;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slice-bg-top {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slice-bg-top-bg {
  0% {
    bottom: 100%;
    top: 0;
  }
  50% {
    bottom: 0;
    top: 0;
  }
  99% {
    top: 100%;
    opacity: 1;
    bottom: 0;
  }
  100% {
    opacity: 0;
    top: 100%;
    bottom: 0;
  }
}
.slice-bg-top.active > * span, .slice-bg-top.active > *::after {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

.slice-bg-top.active > * span {
  animation-name: slice-bg-top;
}

@media screen and (max-width: 768px) {
  .slice-bg-top.active > * span {
    animation-duration: 0.8s;
    animation-delay: 0.8s;
    animation-name: clippath-top;
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    animation-timing-function: ease;
  }
}
.slice-bg-top.active > *::after {
  animation-name: slice-bg-top-bg;
}

@media screen and (max-width: 768px) {
  .slice-bg-top.active > *::after {
    animation-name: none;
  }
}
.slice-bg-top > * span {
  opacity: 0;
}

.slice-bg-top > *:nth-child(2), .slice-bg-top > *:nth-child(2)::after {
  animation-delay: 0.6s;
}

.slice-bg-top > *:nth-child(3), .slice-bg-top > *:nth-child(3)::after {
  animation-delay: 0.7s;
}

.slice-bg-top > *:nth-child(4), .slice-bg-top > *:nth-child(4)::after {
  animation-delay: 0.8s;
}

.slice-bg-top > *:nth-child(5), .slice-bg-top > *:nth-child(5)::after {
  animation-delay: 0.9s;
}

.slice-bg-top > *:nth-child(6), .slice-bg-top > *:nth-child(6)::after {
  animation-delay: 1s;
}

.slice-bg-top > *:nth-child(7), .slice-bg-top > *:nth-child(7)::after {
  animation-delay: 1.1s;
}

.slice-bg-top > *:nth-child(8), .slice-bg-top > *:nth-child(8)::after {
  animation-delay: 1.2s;
}

.slice-bg-top > *:nth-child(9), .slice-bg-top > *:nth-child(9)::after {
  animation-delay: 1.3s;
}

.slice-bg-top > *:nth-child(10), .slice-bg-top > *:nth-child(10)::after {
  animation-delay: 1.4s;
}

@keyframes slice-bg-left-bg {
  0% {
    right: 100%;
    left: 0;
  }
  50% {
    right: 0;
    left: 0;
  }
  99% {
    left: 100%;
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
    right: 0;
  }
}
.slice-bg-left.active > * span, .slice-bg-left.active > *::after {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

.slice-bg-left.active > * span {
  animation-name: slice-bg-top;
}

.slice-bg-left.active > *::after {
  animation-name: slice-bg-left-bg;
}

.slice-bg-left > * span {
  opacity: 0;
}

.slice-bg-left > *:nth-child(2) span, .slice-bg-left > *:nth-child(2)::after {
  animation-delay: 0.6s;
}

.slice-bg-left > *:nth-child(3) span, .slice-bg-left > *:nth-child(3)::after {
  animation-delay: 0.7s;
}

.slice-bg-left > *:nth-child(4) span, .slice-bg-left > *:nth-child(4)::after {
  animation-delay: 0.8s;
}

.slice-bg-left > *:nth-child(5) span, .slice-bg-left > *:nth-child(5)::after {
  animation-delay: 0.9s;
}

.slice-bg-left > *:nth-child(6) span, .slice-bg-left > *:nth-child(6)::after {
  animation-delay: 1s;
}

.slice-bg-left > *:nth-child(7) span, .slice-bg-left > *:nth-child(7)::after {
  animation-delay: 1.1s;
}

.slice-bg-left > *:nth-child(8) span, .slice-bg-left > *:nth-child(8)::after {
  animation-delay: 1.2s;
}

.slice-bg-left > *:nth-child(9) span, .slice-bg-left > *:nth-child(9)::after {
  animation-delay: 1.3s;
}

.slice-bg-left > *:nth-child(10) span, .slice-bg-left > *:nth-child(10)::after {
  animation-delay: 1.4s;
}

.photo-lcol-in,
.photo-rcol-in {
  opacity: 0;
}

.photo-lcol-in.active,
.photo-rcol-in.active {
  animation-name: photo-lcol-in;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.photo-rcol-in.active {
  animation-name: photo-rcol-in;
}

@keyframes photo-lcol-in {
  0% {
    opacity: 0;
    transform: translateY(-6%);
    clip-path: inset(0% 0% 100% 0%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
  }
}
@keyframes photo-rcol-in {
  0% {
    opacity: 0;
    transform: translateY(6%);
    clip-path: inset(100% 0% 0% 0%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
  }
}
.header-lcol,
.header-rcol {
  opacity: 0;
}

.header-lcol.active,
.header-rcol.active {
  animation-name: header-lcol;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .header-lcol.active,
  .header-rcol.active {
    animation-name: fade-slide !important;
    animation-duration: 4.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .header-lcol.active {
    animation-name: fade-slide-02 !important;
    opacity: 0;
  }
}
.header-rcol.active {
  animation-name: header-rcol;
}

@keyframes header-lcol {
  0% {
    opacity: 0;
    transform: translateY(-10%);
    clip-path: inset(0% 0% 100% 0%);
    filter: blur(3vw);
    transform: scale(1.05);
  }
  50% {
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
    filter: none;
    transform: scale(1);
  }
}
@keyframes header-rcol {
  0% {
    opacity: 0;
    transform: translateY(10%);
    clip-path: inset(100% 0% 0% 0%);
    filter: blur(3vw);
    transform: scale(1.05);
  }
  50% {
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
    filter: none;
    transform: scale(1);
  }
}
@keyframes fade-slide {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-slide-02 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mv01-3 {
  0% {
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    transform: scale(1.2);
    opacity: 0;
  }
  20% {
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }
}
.scaled-in.active {
  animation-name: scaled-in;
  animation-duration: 8s;
  animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
  animation-fill-mode: forwards;
}

@keyframes scaled-in {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bdr-anim {
  0% {
    top: 0;
    bottom: 100%;
    opacity: 0;
  }
  70% {
    top: 0;
    bottom: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    bottom: 0;
  }
}
.fade02-1 {
  animation-name: mv02-1;
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes mv02-1 {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.fade01-1 {
  animation-name: mv01-1;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes mv01-1 {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
.fade01-3 {
  animation-name: mv01-3;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 1;
  display: block;
}

@keyframes mv01-3 {
  0% {
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    transform: scale(1.05);
    opacity: 1;
  }
  20% {
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }
}
.fade01-4 {
  animation-name: mv01-2;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.7s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.read-down02.active {
  opacity: 1;
  animation-name: read-down02;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes read-down02 {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(150%);
  }
}
.door-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

.door-bg::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}

.fade02-2 {
  animation-name: mv02-2;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes mv02-1 {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes mv02-2 {
  0% {
    opacity: 1;
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.fadeup {
  opacity: 0;
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.fadeup.active {
  animation-name: fadeup;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path, opacity, filter, scale;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.clip-text {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s ease;
  transition-delay: 0.6s;
}

.clip-text.active {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.clippath-left-text {
  clip-path: inset(0 100% 0 0);
  position: relative;
}

.clippath-left-text.active {
  animation: clippath-left-text;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
}

@keyframes clippath-left-text {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  33% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0);
  }
}
.fade0 {
  animation-name: fade;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade01 {
  animation-name: fade01;
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fade01 {
    animation-duration: 2s;
  }
}

@keyframes fade01 {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fade02-1 {
  animation-name: mv02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fade02-2 {
  animation-name: mv02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fade02-3 {
  animation-name: mv02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fade02-3 {
    animation-name: mv02-sp;
  }
}

@keyframes mv02-0 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes mv02 {
  0% {
    opacity: 0;
    transform: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mv02-sp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv02-1 {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv02-2 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade03-1 {
  animation-name: mv03-1;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

@keyframes mv03-1 {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
.fade03-2 {
  animation-name: mv03-2;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 3.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes mv03-2 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade03-3 {
  animation-name: mv03-3;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 3.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes mv03-3 {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade03-4 {
  animation-name: mv03-4;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 3.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

@keyframes mv03-4 {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadein-txt-w {
  opacity: 0;
}

.fadein-txt-w.active {
  opacity: 1;
  animation-name: fadein-txt-w;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein-txt-w {
  from {
    clip-path: inset(0 100% 0% 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadein-txt-w-r {
  opacity: 0;
}

.fadein-txt-w-r.active {
  opacity: 1;
  animation-name: fadein-txt-w-r;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein-txt-w-r {
  from {
    clip-path: inset(0 0% 0% 100%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade-img {
  opacity: 0;
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}

.fade-img.active {
  animation-name: fade01;
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade01 {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.pop04 {
  opacity: 0;
}

.pop04.active {
  animation-name: popup3;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes popup3 {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.clippath-left-text {
  clip-path: inset(0 100% 0 0);
  position: relative;
}

.clippath-left-text.active {
  animation: clippath-left-text;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
}

@keyframes clippath-left-text {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  33% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0);
  }
}
.anim-fade-in-up {
  opacity: 0;
  -ms-transform: translateY(5%);
      transform: translateY(5%);
}

.anim-fade-in-up.active {
  animation-name: fadeinUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes fadeinUp {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------------------------------
  component
  --------------------------------------------- */
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  color: #1A1311;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

body.is-bg-colored {
  background-color: #EAEADC;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.flex-box {
  display: -ms-flexbox;
  display: flex;
}

.flex-box-reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.slide-box {
  overflow: hidden;
}

/* ヘッダー--------------------------- */
.header {
  position: relative;
}
.header-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.header-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-img {
    width: 100%;
    aspect-ratio: initial;
  }
}
.header .txt-logo {
  margin: 0;
  position: absolute;
  top: 2%;
  left: 2%;
  animation-delay: 1.5s !important;
}
@media screen and (max-width: 767px) {
  .header .txt-logo {
    top: 2%;
    left: initial;
    right: 2%;
    width: 56px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-img-parts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 1.5s;
  }
  .header .header-img-parts.active {
    opacity: 1;
  }
}

.mv-text {
  position: absolute;
  top: 11.6%;
  left: 9.8%;
  width: 46.4%;
  padding-top: 4.39238653vw;
}
@media screen and (max-width: 767px) {
  .mv-text {
    width: 92.6%;
    top: 3.4%;
    left: 2.4%;
    padding-top: 5.3333333333vw;
  }
}

.mv-ttl-01 {
  width: 26.8%;
  position: absolute;
  top: 0;
  left: 16.4%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 {
    width: 25%;
    top: 2%;
    left: 15%;
  }
}

.mv-ttl-02 {
  width: 45.4%;
  margin-bottom: 0.878477306vw;
  margin-left: auto;
  margin-right: 6.8814055637vw;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 {
    width: 59.4%;
    margin-right: 0;
    margin-bottom: 4.2666666667vw;
  }
}

.mv-ttl-03 {
  width: 100%;
  margin-bottom: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .mv-ttl-03 {
    width: 97.6%;
    margin-bottom: 0;
  }
}

.mv-ttl-wrap {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding: 0.5856515373vw 1.9033674963vw;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-wrap {
    position: absolute;
    top: 44%;
    left: 9.4%;
    padding: 2.6666666667vw 2vw 3.2vw;
    width: 8.7%;
  }
}
.mv-ttl-wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 2%;
  background-color: #003366;
}
@media screen and (max-width: 767px) {
  .mv-ttl-wrap .bg {
    top: 0;
    width: 8vw;
  }
}
.mv-ttl-wrap .text {
  width: 100%;
  z-index: 1;
}
.mv-ttl-wrap .text img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-wrap .text {
    font-size: 4.2666666667vw;
    line-height: 1;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
}

/* リード--------------------------- */
.lead {
  margin: 0;
  padding-top: min(8.345534407vw, 120px);
  padding-bottom: min(7.7598828697vw, 120px);
  margin-bottom: min(3.953147877vw, 54px);
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #83A6CF;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-top: min(14.9333333333vw, 100px);
    padding-bottom: min(42.6666666667vw, 240px);
    margin-bottom: min(16vw, 80px);
    text-align: center;
  }
}
.lead .lead-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg.png") no-repeat top center/cover;
  mix-blend-mode: multiply;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .lead .lead-bg {
    background: url("../img/bg_sp.png");
  }
}
.lead .text01 {
  font-size: 2.0497803807vw;
  line-height: 1.8;
  margin-bottom: 2.9282576867vw;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lead .text01 {
    font-size: 7.4666666667vw;
    line-height: 1.5;
    margin-bottom: 13.3333333333vw;
  }
}
.lead .text02 {
  font-size: 1.317715959vw;
  font-size: max(1.317715959vw, 16px);
  font-weight: 400;
  line-height: 3.1;
  letter-spacing: 0;
  position: relative;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lead .text02 {
    font-size: 4.2666666667vw;
    line-height: 2.1875;
  }
}
.lead .en {
  width: 100%;
  padding-left: 3.6603221083vw;
  padding-right: 3.953147877vw;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.lead .en img {
  margin: 0 auto;
  opacity: 0.25;
}
.lead .wrap {
  padding: 0 3.6603221083vw 0 3.3674963397vw;
}
@media screen and (max-width: 767px) {
  .lead .wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0;
  }
}

/* 商品セクション --------------------------- */
.intro-items {
  position: relative;
  margin-top: 11.7130307467vw;
  margin-bottom: 15.6661786237vw;
}
@media screen and (max-width: 767px) {
  .intro-items {
    margin-top: 0;
    margin-bottom: 24vw;
  }
}

.intro-items-img {
  margin-right: 3.6603221083vw;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  max-width: 64.7144948755vw;
}
@media screen and (max-width: 767px) {
  .intro-items-img {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
.intro-items-img > img {
  margin-left: auto;
}
.intro-items-img .logo {
  position: absolute;
  top: 48%;
  right: 4.6%;
  width: 10.8345534407vw;
}
@media screen and (max-width: 767px) {
  .intro-items-img .logo {
    top: 16px;
    right: 10px;
    width: 32vw;
  }
}
.intro-items-img .mark {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 58px;
}
@media screen and (max-width: 767px) {
  .intro-items-img .mark {
    right: initial;
    left: 20px;
  }
}

.intro-items-text {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 7.2474377745vw;
  z-index: 1;
  text-align: center;
  animation-delay: 0.3s;
}
@media screen and (max-width: 992px) {
  .intro-items-text {
    left: 4.39238653vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .intro-items-text {
    position: static;
    margin-top: 16vw;
    animation-delay: 0s;
    -ms-transform: none;
        transform: none;
  }
}

.intro-items-ttl {
  margin-bottom: 36px;
}
.intro-items-ttl img {
  margin: 0 auto;
}
.intro-items-ttl .text01 {
  display: inline-block;
  width: 13.4699853587vw;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .intro-items-ttl .text01 {
    width: 41.6vw;
  }
}
.intro-items-ttl .text02 {
  display: block;
  width: 25.7686676428vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .intro-items-ttl .text02 {
    width: 70.4vw;
  }
}

.intro-items-lead {
  font-size: max(1.317715959vw, 15px);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 3.3674963397vw;
}
@media screen and (max-width: 767px) {
  .intro-items-lead {
    font-size: max(4.8vw, 14px);
    margin-bottom: 10.6666666667vw;
  }
}
.intro-items-lead::after {
  content: "";
  display: block;
  width: 45px;
  height: 12px;
  background: url("../img/mark.svg") no-repeat center/100%;
  margin: 0 auto;
  margin-top: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .intro-items-lead::after {
    margin-top: 10.6666666667vw;
  }
}

.intro-items-desc {
  font-size: max(1.0980966325vw, 12px);
  font-weight: 500;
  line-height: 2.13;
}
@media screen and (max-width: 767px) {
  .intro-items-desc {
    padding: 0 8vw;
    font-size: max(4vw, 12px);
    text-align: left;
  }
}

.items-straight {
  margin: 0;
  margin-bottom: 12.4450951684vw;
  padding: 4.39238653vw 0;
}
@media screen and (max-width: 767px) {
  .items-straight {
    margin-bottom: 26.6666666667vw;
  }
}
.items-straight .intro-items-img {
  margin-left: 3.6603221083vw;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .items-straight .intro-items-img {
    margin-left: 0;
  }
}
.items-straight .intro-items-img .logo {
  right: initial;
  left: 4.6%;
}
@media screen and (max-width: 767px) {
  .items-straight .intro-items-img .logo {
    left: initial;
    right: 10px;
  }
}
.items-straight .intro-items-img .mark {
  right: initial;
  left: 20px;
}
.items-straight .intro-items-ttl .text02 {
  width: 30.0146412884vw;
}
@media screen and (max-width: 767px) {
  .items-straight .intro-items-ttl .text02 {
    width: 81.8666666667vw;
  }
}
.items-straight .intro-items-text {
  left: initial;
  right: 6.7349926794vw;
}
@media screen and (max-width: 992px) {
  .items-straight .intro-items-text {
    left: initial;
    right: 4.39238653vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-straight .intro-items-text {
    position: static;
  }
}

/* 商品リンク先リスト--------------------------- */
.link-box {
  width: 29.28vw;
  max-width: 100%;
  min-width: 270px;
}
@media screen and (max-width: 767px) {
  .link-box {
    padding: 0 8vw;
  }
}

@media screen and (max-width: 767px) {
  .link-box {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
}
.link-box-main {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.link-box-main::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 100%;
  opacity: 0;
  bottom: 0;
  background-color: #D0D0D0;
  transition: right 1.2s cubic-bezier(0, 0.55, 0.45, 1) 0.3s, opacity 0.1s linear;
}

.link-box.active .link-box-main::after {
  right: 0;
  opacity: 1;
}

.cart-btm {
  width: 100%;
  text-decoration: none;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 0.1em 0;
  font-size: 1rem;
  font-size: max(clamp(1rem, 0.53rem + 0.5415162455vw, 1.18rem), 0.98vw);
  position: relative;
  opacity: 0;
  left: -0.8em;
  top: -0.3em;
  transition: opacity 1.2s ease, left 0.6s ease, top 0.6s ease;
  will-change: opacity, left;
}
.cart-btm:not(:last-of-type) {
  margin-bottom: 8px;
}

@media screen and (max-width: 1365px) {
  .cart-btm {
    font-size: clamp(0.81rem, 0.57rem + 0.5016722408vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .cart-btm {
    font-size: 4.26vw;
  }
}
.cart-btm:nth-child(0) {
  transition-delay: 0s;
}

.link-box-sub .cart-btm:nth-child(0) {
  transition-delay: 0.3s;
}

.cart-btm:nth-child(1) {
  transition-delay: 0.1s;
}

.link-box-sub .cart-btm:nth-child(1) {
  transition-delay: 0.4s;
}

.cart-btm:nth-child(2) {
  transition-delay: 0.2s;
}

.link-box-sub .cart-btm:nth-child(2) {
  transition-delay: 0.5s;
}

.cart-btm:nth-child(3) {
  transition-delay: 0.3s;
}

.link-box-sub .cart-btm:nth-child(3) {
  transition-delay: 0.6s;
}

.cart-btm:nth-child(4) {
  transition-delay: 0.4s;
}

.link-box-sub .cart-btm:nth-child(4) {
  transition-delay: 0.7s;
}

.cart-btm:nth-child(5) {
  transition-delay: 0.5s;
}

.link-box-sub .cart-btm:nth-child(5) {
  transition-delay: 0.8s;
}

.cart-btm:nth-child(6) {
  transition-delay: 0.6s;
}

.link-box-sub .cart-btm:nth-child(6) {
  transition-delay: 0.9s;
}

.cart-btm:nth-child(7) {
  transition-delay: 0.7s;
}

.link-box-sub .cart-btm:nth-child(7) {
  transition-delay: 1s;
}

.cart-btm:nth-child(8) {
  transition-delay: 0.8s;
}

.link-box-sub .cart-btm:nth-child(8) {
  transition-delay: 1.1s;
}

.cart-btm:nth-child(9) {
  transition-delay: 0.9s;
}

.link-box-sub .cart-btm:nth-child(9) {
  transition-delay: 1.2s;
}

.cart-btm:nth-child(10) {
  transition-delay: 1s;
}

.link-box-sub .cart-btm:nth-child(10) {
  transition-delay: 1.3s;
}

.link-box.active .cart-btm {
  opacity: 1;
  left: 0;
  top: 0;
}

.cart-title {
  -ms-flex: 1;
      flex: 1;
  font-size: 0.87em;
  letter-spacing: 0.086em;
}

.cart-yen {
  position: relative;
  letter-spacing: 0.03em;
  width: 5.35em;
  text-align: right;
  white-space: nowrap;
}

.cart-btm--l .cart-yen::before,
.cart-btm--s .cart-yen::before {
  content: "";
  display: block;
  background: center center/contain no-repeat url("../img/size-l.svg");
  width: 0.938em;
  height: 0.938em;
  position: absolute;
  left: -2px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.cart-btm--s .cart-yen::before {
  background-image: url("../img/size-s.svg");
}

.cart-tax {
  width: -moz-max-content;
  width: max-content;
  font-size: 0.68em;
  white-space: nowrap;
  letter-spacing: 0;
  margin-inline: 0.4em 1em;
  margin-bottom: -0.5em;
}

.cart-btn {
  --cart-btn-color: #D78D89;
  --cart-btn-arrow: url("../img/arrow-pink.svg");
  position: relative;
  font-size: 0.687em;
  line-height: 1.558em;
  width: 7.824em;
  padding: 0.45em 0;
  background: var(--cart-btn-color);
  border: 0.5px solid var(--cart-btn-color);
  display: inline-block;
  text-align: center;
  color: #fff;
  transition: color 300ms ease-out, background-color 300ms ease-out;
}

.link-box-sub .cart-btn {
  background-color: transparent;
  color: #1A1311;
  border-color: #625549;
  --cart-btn-arrow: url("../img/arrow-white.svg");
}

.cart-btn--01 {
  --cart-btn-color: #003366;
  --cart-btn-arrow: url("../img/arrow-blue.svg");
}

.cart-btn--02 {
  --cart-btn-color: #5D81A6;
  --cart-btn-arrow: url("../img/arrow-02.svg");
}

.cart-btn--gray {
  --cart-btn-color: #D0D0D0;
  --cart-btn-arrow: url("../img/arrow-gray.svg");
}

.cart-btm:hover .cart-btn {
  background: #fff;
  border-color: var(--cart-btn-color);
  color: var(--cart-btn-color);
}

.link-box-sub .cart-btm:hover .cart-btn {
  background-color: #000;
  color: #ffffff;
  border-color: #625549;
}

.cart-btn span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}

.cart-btm:hover .cart-btn span {
  transform: translate3d(-0.5rem, 0, 0);
}

.cart-btn::after {
  content: "";
  position: absolute;
  display: block;
  background: center center/contain no-repeat var(--cart-btn-arrow);
  width: 1.1em;
  height: 100%;
  right: 2.09em;
  opacity: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.cart-btm:hover .cart-btn::after {
  opacity: 1;
  right: 1.09em;
}

/* 商品セクション --------------------------- */
.items-layered {
  position: relative;
}
.items-layered.left {
  margin-left: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-layered.left {
    margin-left: 0;
    padding-right: 5.3333333333vw;
  }
}
.items-layered.left::before {
  content: "";
  display: block;
  width: 44.5095168375vw;
  aspect-ratio: 608/809;
  background: url("../img/img-bg-01.svg") no-repeat center/100%;
  position: absolute;
  top: 1.4641288433vw;
  right: -2.0497803807vw;
  opacity: 0;
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .items-layered.left::before {
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
    background-image: url("../img/img-bg-01-sp.svg");
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
  }
}
.items-layered.right {
  margin-right: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-layered.right {
    margin-right: 0;
    padding-left: 5.3333333333vw;
  }
}
.items-layered.right::before {
  content: "";
  display: block;
  width: 44.5095168375vw;
  aspect-ratio: 608/809;
  background: url("../img/img-bg-02.svg") no-repeat center/100%;
  position: absolute;
  top: 1.4641288433vw;
  right: 1.4641288433vw;
  opacity: 0;
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .items-layered.right::before {
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
    background-image: url("../img/img-bg-02-sp.svg");
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
  }
}
.items-layered.active::before {
  opacity: 1;
}

.items-photo {
  width: 43.9238653001vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .items-photo {
    width: 100%;
  }
}
.items-photo img {
  width: 100%;
}

.items-photo a {
  display: block;
}

/* 商品セクションのレイアウト--------------------------- */
.items {
  position: relative;
}
@media screen and (max-width: 767px) {
  .items {
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .items-wrap {
    margin: 0 !important;
  }
}

.items .txt-col {
  width: 29.2825768668vw;
}
@media screen and (max-width: 992px) {
  .items .txt-col {
    width: 35.1390922401vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items .txt-col {
    width: 100% !important;
  }
}

.items-ttl {
  margin-bottom: 3.074670571vw;
}
@media screen and (max-width: 767px) {
  .items-ttl {
    padding: 0 8vw;
  }
}
.items-ttl__num {
  margin-bottom: 1.4641288433vw;
}
@media screen and (max-width: 767px) {
  .items-ttl__num {
    margin-bottom: 4vw;
  }
}
.items-ttl__text {
  font-size: 1.6105417277vw;
  color: #003366;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .items-ttl__text {
    font-size: 5.8666666667vw;
    line-height: 1.64;
  }
}

.items-desc {
  font-size: max(1.1713030747vw, 13px);
  font-weight: 500;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .items-desc {
    font-size: 4.2666666667vw;
    padding: 0 7.4666666667vw 0 8vw;
  }
}

/* 各 items  --------------------------- */
.items-01 {
  margin-bottom: 13.616398243vw;
}
@media screen and (max-width: 767px) {
  .items-01 {
    margin-bottom: 24vw;
  }
}
.items-01 .items-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 7.3206442167vw;
  margin-left: auto;
}
.items-01 .items-ttl {
  padding-top: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .items-01 .items-ttl {
    padding-top: 0;
    margin-bottom: 6.4vw;
  }
}
.items-01 .link-box {
  margin-top: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-01 .link-box {
    margin-top: 8vw;
  }
}
.items-01 .items-layered {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .items-01 .items-layered {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 10.6666666667vw;
  }
}

.items-02 {
  margin-bottom: 10.980966325vw;
}
@media screen and (max-width: 767px) {
  .items-02 {
    margin-bottom: 24vw;
  }
  .items-02 .items-ttl,
  .items-02 .items-desc {
    padding: 0 8vw;
  }
  .items-02 .items-ttl {
    margin-bottom: 6.4vw;
  }
}
.items-02 .wrap01 {
  margin-left: 7.3206442167vw;
}
.items-02 .wrap01 .items-layered {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap01 .items-layered {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 10.6666666667vw;
    padding: 0;
    padding-left: 5.3333333333vw;
  }
}
.items-02 .wrap01 .items-ttl {
  padding-top: 13.9092240117vw;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap01 .items-ttl {
    padding-top: 0;
  }
}
.items-02 .wrap02 {
  margin-top: 18.3016105417vw;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap02 {
    margin-top: 16vw;
  }
}
.items-02 .wrap02 .items-layered {
  overflow: hidden;
  margin-left: 7.3206442167vw;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap02 .items-layered {
    padding-right: 5.3333333333vw;
    margin-top: 16vw;
    padding-bottom: 5.3333333333vw;
    margin-left: 0;
  }
  .items-02 .wrap02 .items-layered::before {
    content: "";
    display: block;
    width: 52.3426061493vw;
    aspect-ratio: 715/951;
    background: url("../img/img-bg-01-sp.svg") no-repeat center/100%;
    position: absolute;
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
    opacity: 0;
    transition: 0.5s ease;
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
  }
  .items-02 .wrap02 .items-layered a {
    padding: 0;
  }
  .items-02 .wrap02 .items-layered.active::before {
    opacity: 1;
  }
}
.items-02 .wrap02 .items-main {
  display: -ms-flexbox;
  display: flex;
  margin-right: 7.3206442167vw;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap02 .items-main {
    margin-right: 0;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
.items-02 .wrap02 .txt-col {
  margin-top: 20.4978038067vw;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap02 .txt-col {
    width: 100%;
    margin-top: 8vw;
  }
}
.items-02 .wrap02 .items-photo {
  width: 38.7994143485vw;
}
@media screen and (max-width: 767px) {
  .items-02 .wrap02 .items-photo {
    width: 100%;
  }
}

.items-03 {
  margin-bottom: 17.5695461201vw;
}
@media screen and (max-width: 767px) {
  .items-03 {
    margin-bottom: 16vw;
  }
}
.items-03 .items-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 7.3206442167vw;
  margin-right: auto;
}
.items-03 .items-ttl {
  padding-top: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-ttl {
    padding-top: 0;
    margin-bottom: 6.4vw;
  }
}
.items-03 .link-box {
  margin-top: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-03 .link-box {
    margin-top: 8vw;
  }
}
.items-03 .items-layered {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .items-03 .items-layered {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 12.2666666667vw;
  }
  .items-03 .items-layered.img02 {
    margin-top: 16vw;
  }
}

.items-04 {
  margin-bottom: 19.6193265007vw;
}
@media screen and (max-width: 767px) {
  .items-04 {
    margin-bottom: 21.3333333333vw;
  }
  .items-04 .items-desc {
    padding: 0 6.9333333333vw 0 8vw;
  }
}
.items-04 .items-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 7.3206442167vw;
  margin-left: auto;
}
.items-04 .txt-col {
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .items-04 .txt-col .items-desc br {
    display: none;
  }
}
@media screen and (max-width: 1080px) and (max-width: 767px) {
  .items-04 .txt-col {
    width: 100%;
  }
}
.items-04 .items-ttl {
  padding-top: 8.0527086384vw;
}
@media screen and (max-width: 1080px) {
  .items-04 .items-ttl {
    padding-top: 4.39238653vw;
  }
}
@media screen and (max-width: 1080px) and (max-width: 767px) {
  .items-04 .items-ttl {
    padding-top: 0;
    margin-bottom: 6.4vw;
  }
}
.items-04 .items-ttl__text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .items-04 .items-ttl__text {
    color: #003366;
  }
}
.items-04 .link-box {
  margin-top: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-04 .link-box {
    margin-top: 8vw;
  }
}
.items-04 .items-photo {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .items-04 .items-photo {
    position: relative;
    top: initial;
    left: initial;
    margin-left: auto;
    padding-right: 0;
    padding-left: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.items-04 .items-layered {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .items-04 .items-layered {
    position: relative;
  }
  .items-04 .items-layered::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.4641288433vw;
    right: 2.0497803807vw;
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
    background: url("../img/img-bg-02-sp.svg") no-repeat center/cover;
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
  }
}

.items-05 {
  margin-bottom: 13.17715959vw;
}
@media screen and (max-width: 767px) {
  .items-05 {
    margin-bottom: 21.3333333333vw;
  }
  .items-05 .items-desc {
    padding: 0 7.4666666667vw;
  }
}
.items-05 .items-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 7.3206442167vw;
  margin-right: auto;
}
.items-05 .items-ttl {
  padding-top: 2.9282576867vw;
}
.items-05 .link-box {
  margin-top: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-05 .link-box {
    margin-top: 9.6vw;
  }
}
.items-05 .items-layered {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 7.3206442167vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-layered {
    position: relative;
    top: initial;
    right: initial;
    margin-right: auto;
    margin-bottom: 12.2666666667vw;
    padding-left: 0;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-05 .items-layered::before {
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
    background-image: url("../img/img-bg-01-sp.svg");
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
  }
}

.items-06 {
  margin-bottom: 18.3016105417vw;
}
@media screen and (max-width: 767px) {
  .items-06 {
    margin-bottom: 10.6666666667vw;
    padding-bottom: 5.3333333333vw;
  }
  .items-06 .items-desc {
    padding: 0 7.4666666667vw;
  }
}
.items-06 .items-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 7.3206442167vw;
  margin-left: auto;
}
.items-06 .items-ttl {
  padding-top: 2.9282576867vw;
}
.items-06 .link-box {
  margin-top: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-06 .link-box {
    margin-top: 9.6vw;
  }
}
.items-06 .items-layered {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .items-06 .items-layered {
    position: relative;
    top: initial;
    left: initial;
    padding: 0;
    margin-bottom: 12.2666666667vw;
  }
  .items-06 .items-layered .items-photo {
    padding: 0;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-06 .items-layered::before {
    width: calc(100% - 4vw);
    aspect-ratio: 360/570;
    background-image: url("../img/img-bg-02-sp.svg");
    top: 1.6vw;
    right: initial;
    left: 1.6vw;
  }
}

/* end-block------------------ */
.end-block {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  overflow: hidden;
}

.end-block .bgi-photo {
  position: absolute;
  top: 0;
  left: 0;
}

/*banner-block-----------------------------*/
.banner-block {
  margin: 3.3% auto 64px;
  position: relative;
}

.banner-block a {
  display: block;
  transition: 0.6s ease-in-out;
}

.banner-block a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.banner-block .c-btn01 {
  width: 36%;
  min-width: 602px;
  margin: 0 auto 1.2rem;
  border: 1px solid #000;
  transition: 0.3s;
  display: block;
}

.banner-block .c-btn01 img {
  width: 100%;
}

.banner-block .line {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 5% auto 0;
  background: #000;
}

.banner-block .flex-box {
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 5% auto 0;
}

.banner-block .flex-box .c-btn01 {
  width: 48%;
  min-width: 290px;
  margin: 0;
}

/* ページトップボタン---------------------------- */
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 99;
}

#pagetop .btn-loading {
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  background-color: #CCC;
  border-radius: 100%;
  transition: color 0.2s;
  overflow: hidden;
}

#pagetop .btn-loading01:before,
#pagetop .btn-loading01:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: #231815;
  pointer-events: none;
}

#pagetop .btn-loading:before {
  bottom: 0;
  left: 0;
}

#pagetop .btn-loading:after {
  top: 0;
  right: 0;
}

#pagetop:hover .btn-loading {
  color: #65A04D;
}

#pagetop:hover .btn-loading:before,
#pagetop:hover .btn-loading:after {
  height: 100%;
}

#pagetop:hover .btn-loading:before {
  transition: height 0.1s 0.1s linear;
}

#pagetop:hover .btn-loading:after {
  transition: height 0.1s linear;
}

#pagetop .btn-loading span {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  background-color: #FFF;
  border-radius: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 99;
}

#pagetop .btn-loading span img {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

/* フッター--------------------------------------------- */
.footer {
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  padding: 0 0 30px 0;
}

.footer img {
  transition: 0.3s;
}

.footer img:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.footer_sns .instagram {
  display: block;
  width: 3%;
  min-width: 20px;
  margin: 0 auto 1.6%;
  opacity: 1;
  transition: 0.3s;
}

.f-ow {
  width: 7.96%;
  min-width: 102px;
  margin: 25px auto 0 auto;
}

.footer_copyright {
  font-family: "Helvetica", sans-serif;
  font-size: max(0.6vw, 10px);
  letter-spacing: 0.02em;
  margin: 2.8% 0 0;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .flex-box {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  /* バナー--------------------------- */
  .banner-block {
    margin-top: 16vw;
    margin-bottom: 9.6vw;
  }
  .banner-block .c-btn01 {
    width: 80%;
    min-width: auto;
    margin-bottom: 12px;
  }
  .banner-block .line {
    display: none;
  }
  .banner-block .flex-box {
    -ms-flex-direction: row;
        flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 0 auto;
  }
  .banner-block .flex-box .c-btn01 {
    min-width: auto;
  }
  .banner-block .flex-box {
    margin-top: 9.6vw;
  }
  /* ページトップボタン--------------------------- */
  #pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    display: block;
    z-index: 30;
  }
  #pagetop .btn-loading {
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1 !important;
    transition: all 0.3s;
    background-color: #CCC;
    border-radius: 100%;
    transition: color 0.2s;
    overflow: hidden;
  }
  #pagetop .btn-loading01:before,
  #pagetop .btn-loading01:after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 0;
    background-color: #231815;
    pointer-events: none;
  }
  #pagetop .btn-loading:before {
    bottom: 0;
    left: 0;
  }
  #pagetop .btn-loading:after {
    top: 0;
    right: 0;
  }
  #pagetop:hover .btn-loading {
    color: #65A04D;
  }
  #pagetop:hover .btn-loading:before,
  #pagetop:hover .btn-loading:after {
    height: 100%;
  }
  #pagetop:hover .btn-loading:before {
    transition: height 0.1s 0.1s linear;
  }
  #pagetop:hover .btn-loading:after {
    transition: height 0.1s linear;
  }
  #pagetop .btn-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background-color: #FFF;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    z-index: 99;
  }
  #pagetop .btn-loading span img {
    width: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
  }
  /* フッター--------------------------- */
  .footer {
    padding-bottom: 20px;
  }
  .footer_sns {
    margin: 0 auto;
  }
  .footer_sns .instagram {
    width: 2.73%;
    min-width: 35px;
  }
  .f-ow {
    margin-top: 5.86vw;
    width: 9.37%;
    min-width: 120px;
  }
  .footer_copyright {
    margin-top: 9vw;
    font-size: max(0.6vw, 8px);
  }
  .footer_copyright img {
    width: 72vw;
  }
}