@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 {
  clip-path: inset(0 0 100% 0);
}

.clippath-top.active {
  animation: clippath-top;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes clippath-top {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  33% {
    clip-path: inset(0);
  }
  100% {
    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: 0s;
  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);
  }
  33% {
    opacity: 1;
    clip-path: inset(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-left-fast {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  position: relative;
}

.clippath-left-fast.active {
  animation: clippath-left-fast;
  animation-duration: 1.5s;
  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-fast {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    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: 0s;
  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%);
  }
  33% {
    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;
  }
}
.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;
  }
}
.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;
}

.fade01-2 {
  animation-name: mv01-2;
  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;
}

.fade01-3 {
  animation-name: mv01-3;
  animation-duration: 10s;
  animation-timing-function: ease-out;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes mv01-1 {
  0% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes mv01-2 {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes mv01-3 {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    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: 5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes read-down02 {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(150%);
  }
}
.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);
  }
}
.fade0 {
  animation-name: fade0;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade0 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.txt-ani span {
  display: inline-block;
  opacity: 0;
  -ms-transform: translateX(10px);
      transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.txt-ani.is-visible span {
  opacity: 1;
  -ms-transform: translateX(0);
      transform: translateX(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);
}

.fade02-5 {
  animation-name: mv02-2;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fade02-6 {
  animation-name: mv02-1;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  animation-delay: 1.5s;
  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%);
  }
}
@keyframes mv02-2 {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 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);
  }
}
.fadein-left {
  opacity: 0;
}

.fadein-right {
  opacity: 0;
}

.ttl-in.active .fadein-left {
  animation-name: fadein-left;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.ttl-in.active .fadein-right {
  animation-name: fadein-right;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadein-left {
  0% {
    transform: translateX(-2%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fadein-right {
  0% {
    transform: translateX(2%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.clippath-left-simple.active {
  animation: clippath-left-simple;
  animation-duration: 1.6s;
  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-simple {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.fadein-up2 {
  opacity: 0;
}

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

.fadein-up3 {
  opacity: 0;
}

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

.fadein-up4 {
  opacity: 0;
}

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

.fadein-up5 {
  opacity: 0;
}

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

.fadein-up6 {
  opacity: 0;
}

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

.fadein-up7 {
  opacity: 1;
}

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

@keyframes fadein-up1 {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadein-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadein-up3 {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadein-up4 {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.pop02 {
  opacity: 0;
}

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

@keyframes popup2 {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
/* ---------------------------------------------
  component
  --------------------------------------------- */
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  color: #1A1311;
  font-family: "Zen Old Mincho", 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 */
.header {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.mv-logo {
  width: 5%;
  position: absolute;
  top: 2%;
  left: 2%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .mv-logo {
    width: 20%;
    left: 4%;
    line-height: 0;
    z-index: 99;
  }
}

.mv-img {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-img .photo-sp {
    width: 100vw;
    aspect-ratio: 375/667;
    overflow: hidden;
  }
}

.mv-img .img {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-img .img {
    width: 100%;
  }
}

.mv-ttl-01 {
  position: absolute;
  top: 9%;
  left: 49.6%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.9));
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 {
    width: 8vw;
    -ms-flex-pack: start;
        justify-content: flex-start;
    left: initial;
    right: 2%;
    top: 4%;
  }
}
.mv-ttl-01 .text-01,
.mv-ttl-01 .text-02 {
  padding-right: 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 .text-01,
  .mv-ttl-01 .text-02 {
    padding-right: 6px;
  }
}
.mv-ttl-01 .text-01::before,
.mv-ttl-01 .text-02::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 .text-01::before,
  .mv-ttl-01 .text-02::before {
    width: 1px;
  }
}
.mv-ttl-01 .text-01 {
  width: max(40px, 4.2459736457vw);
  max-width: 8.78477306vw;
  animation-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 .text-01 {
    width: 100%;
    max-width: 100%;
    animation-delay: 1s;
  }
}
.mv-ttl-01 .text-01 img {
  width: 100%;
  filter: drop-shadow(0 0 8px rgba(24, 24, 24, 0.4));
}
.mv-ttl-01 .text-02 {
  width: max(40px, 4.1727672035vw);
  max-width: 8.78477306vw;
  animation-delay: 0.8s;
}
.mv-ttl-01 .text-02 img {
  width: 100%;
}

.mv-ttl-02 {
  width: 91.6%;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 2.196193265vw;
  left: 4%;
  bottom: 7%;
  animation-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 5.3333333333vw;
    animation-delay: 1.2s;
  }
}
.mv-ttl-02 .text-01 {
  position: relative;
}
.mv-ttl-02 .text-01::before {
  content: "";
  display: block;
  width: 58%;
  aspect-ratio: 766/41;
  background: url("../img/mv-shape.svg") no-repeat top right/100%;
  position: absolute;
  bottom: -4%;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 1.4s;
}
.mv-ttl-02 .text-01 img {
  position: relative;
}
.mv-ttl-02 .text-02 {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 .text-02 {
    width: 82%;
  }
}
.mv-ttl-02 .text-02::before {
  content: "";
  display: block;
  width: 0;
  min-height: 2.5622254758vw;
  background-color: rgba(178, 214, 244, 0.5);
  position: absolute;
  bottom: -5%;
  left: -2%;
  transition: width 0.4s ease;
  transition-delay: 1.4s;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 .text-02::before {
    min-height: 4.8vw;
  }
}
.mv-ttl-02 .text-02 img {
  position: relative;
}
.mv-ttl-02 .text-en {
  position: absolute;
  width: 20.8%;
  top: -74%;
  right: -1.3%;
  animation-delay: 1.4s;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 .text-en {
    width: 40%;
    top: initial;
    bottom: -26%;
    right: -2.8%;
  }
}
.mv-ttl-02 .text-en img {
  filter: drop-shadow(0 0 4px rgba(24, 24, 24, 0.4));
}
.mv-ttl-02.active .text-01::before {
  opacity: 1;
}
.mv-ttl-02.active .text-02:before {
  width: 101%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02.active .text-02:before {
    width: 103.6%;
  }
}

/* リード--------------------------- */
.lead {
  margin: 0;
  text-align: center;
  padding-top: min(5.8565153734vw, 100px);
  padding-bottom: min(4.2459736457vw, 100px);
  position: relative;
  overflow: hidden;
}
.lead .text02 {
  font-size: 1.4641288433vw;
  font-size: max(1.4641288433vw, 16px);
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0;
  position: relative;
}
.lead .items-img {
  margin-top: 7.3206442167vw;
}

@media screen and (max-width: 767px) {
  .lead {
    padding-top: min(14.9333333333vw, 80px);
    padding-bottom: min(8vw, 60px);
    padding-left: 5.0666666667vw;
    padding-right: 5.0666666667vw;
  }
  .lead .text02 {
    font-size: 4.2666666667vw;
    line-height: 2.5;
  }
}
/* intro --------------------------- */
.items-intro {
  position: relative;
  padding: 2.196193265vw 3.6603221083vw 4.39238653vw;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .items-intro {
    padding: 2.196193265vw 1.4641288433vw 4.39238653vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-intro {
    padding: 0;
  }
}
.items-intro-img {
  width: 67%;
  margin: 0 auto;
  -ms-transform: translateX(2%);
      transform: translateX(2%);
}
@media screen and (max-width: 992px) {
  .items-intro-img {
    width: 60%;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-intro-img {
    width: 100%;
    margin-bottom: 4.2666666667vw;
    -ms-transform: none;
        transform: none;
  }
}
@media screen and (max-width: 767px) {
  .items-intro-text {
    padding: 0 8vw;
    text-align: center;
  }
}
.items-intro-text .items-point {
  position: absolute;
  width: 100%;
  max-width: max(240px, 24.8901903367vw);
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point {
    position: static;
    max-width: 100%;
  }
}
.items-intro-text .items-point::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point:not(:last-child) {
    margin-bottom: 6.4vw;
  }
}
.items-intro-text .items-point .num {
  display: inline-block;
  margin-bottom: 2.635431918vw;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point .num {
    width: 7.3206442167vw;
    margin-left: auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-intro-text .items-point .num {
    width: 100px;
    margin: 0 auto 16px;
  }
  .items-intro-text .items-point .num img {
    margin: 0 auto;
  }
}
.items-intro-text .items-point .wrap {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point .wrap {
    width: 100%;
  }
}
.items-intro-text .items-point .text {
  font-size: max(12px, 1.1713030747vw);
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point .text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.items-intro-text .items-point .note {
  font-size: max(10px, 0.878477306vw);
}
@media screen and (max-width: 767px) {
  .items-intro-text .items-point .note {
    font-size: 3.2vw;
  }
}
.items-intro-text .items-point .box {
  display: block;
  margin-top: 5.8565153734vw;
  max-width: 300px;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point .box {
    margin-top: 2.9282576867vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-intro-text .items-point .box {
    margin-top: 8vw;
    max-width: 100%;
  }
  .items-intro-text .items-point .box img {
    width: 100%;
    margin: 0 auto;
  }
}
.items-intro-text .items-point:nth-child(1) {
  top: 9.4%;
  left: 3.6%;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point:nth-child(1) {
    left: 1%;
    top: 6%;
  }
}
.items-intro-text .items-point:nth-child(1):before {
  width: 96%;
  aspect-ratio: 322/31;
  background: url("../img/border-01.svg") no-repeat top right/100%;
  top: 40%;
  left: 0;
}
.items-intro-text .items-point:nth-child(2) {
  bottom: 9%;
  left: 3.6%;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point:nth-child(2) {
    left: 2%;
  }
}
.items-intro-text .items-point:nth-child(2):before {
  width: 100%;
  aspect-ratio: 342/40;
  background: url("../img/border-02.svg") no-repeat top right/100%;
  top: 5%;
  left: 0;
}
.items-intro-text .items-point:nth-child(3) {
  top: 18.4%;
  right: 4.6%;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point:nth-child(3) {
    right: 2%;
  }
}
.items-intro-text .items-point:nth-child(3):before {
  width: 100%;
  aspect-ratio: 325/31;
  background: url("../img/border-03.svg") no-repeat top right/100%;
  top: 28%;
  right: 0;
}
.items-intro-text .items-point:nth-child(3) .num {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.items-intro-text .items-point:nth-child(3) .wrap {
  padding-right: 0.7320644217vw;
  margin-left: auto;
}
.items-intro-text .items-point:nth-child(4) {
  top: 52.4%;
  right: 6%;
}
@media screen and (max-width: 992px) {
  .items-intro-text .items-point:nth-child(4) {
    right: 2%;
  }
}
.items-intro-text .items-point:nth-child(4):before {
  width: 96%;
  aspect-ratio: 330/30;
  background: url("../img/border-04.svg") no-repeat top right/100%;
  top: 5%;
  right: 0;
}
.items-intro-text .items-point:nth-child(4) .num {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.items-intro-text .items-point:nth-child(4) .wrap {
  margin-left: auto;
}

.js-intro .items-point {
  opacity: 0;
}
.js-intro.active .items-point:nth-child(1) {
  animation: fadein-left 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.js-intro.active .items-point:nth-child(2) {
  animation: fadein-left 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation-delay: 0.2s;
}
.js-intro.active .items-point:nth-child(3) {
  animation: fadein-right 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation-delay: 0.4s;
}
.js-intro.active .items-point:nth-child(4) {
  animation: fadein-right 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation-delay: 0.6s;
}

@keyframes fadein-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadein-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/* 商品セクション --------------------------- */
.items-photo a,
.items-photo-02 a {
  display: block;
}

@media screen and (max-width: 767px) {
  .items-photo {
    width: 100vw;
    aspect-ratio: 375/510;
  }
}
/* items ttl --------------------------- */
.items-ttl {
  margin-bottom: 6.2957540264vw;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .items-ttl {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 2.1333333333vw;
  }
}
.items-ttl::before {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s ease-out;
}
.items-ttl .num {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .items-ttl .num {
    margin-bottom: 2.6666666667vw;
  }
}
.items-ttl .text-wrap {
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 18px;
  margin-top: 0.5856515373vw;
}
@media screen and (max-width: 767px) {
  .items-ttl .text-wrap {
    gap: 24px;
    margin-bottom: 32px;
  }
}
.items-ttl .text-wrap .itext-01 {
  display: block;
}
.items-ttl .text-wrap .text-02 {
  display: block;
  transition-delay: 0.1s;
}
.items-ttl .text-wrap .text-02 img {
  margin-left: auto;
}
.items-ttl.items-ttl-02 {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 5.4904831625vw;
}
@media screen and (max-width: 767px) {
  .items-ttl.items-ttl-02 {
    margin-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.items-ttl.items-ttl-02 .text-01 {
  display: inline-block;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .items-ttl.items-ttl-02 .text-01 {
    margin-bottom: 14px;
  }
}

.js-ttl.active::before {
  height: 100%;
}

@keyframes fadein-txt-up {
  from {
    clip-path: inset(0 0% 100% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .items-layered {
    padding-top: 64vw;
  }
}
.items-desc {
  font-size: max(1.317715959vw, 16px);
  line-height: 2.4444;
}

@media screen and (max-width: 767px) {
  .items-desc {
    font-size: 3.7333333333vw;
    line-height: 2.2;
    padding: 0 8px;
  }
  .items-desc.active {
    animation-duration: 0.5s;
  }
}
/* 商品リンク先リスト--------------------------- */
.link-box {
  width: 29.28vw;
  max-width: 100%;
  min-width: 270px;
}

@media screen and (max-width: 767px) {
  .link-box {
    width: 88vw;
    min-width: 0;
  }
}
.link-box-main {
  position: relative;
  padding-bottom: 1.12em;
  margin-bottom: 1.12em;
}

.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: 6px;
}

@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;
}

.cart-btm * {
  font-family: "yu-mincho-pr6n", serif;
}

.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.05em;
  width: 5.71em;
  text-align: right;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
  font-size: 0.87em;
}

.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 {
  font-family: "Shippori Mincho", serif;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.5em;
  white-space: nowrap;
  letter-spacing: 0;
  margin-inline: 0.4em 1em;
  margin-bottom: -0.5em;
}

.cart-btn {
  --cart-btn-color: #E6E6E9;
  --cart-btn-arrow: url("../img/arrow-white.svg");
  position: relative;
  font-size: 0.62em;
  line-height: 1.5em;
  width: 6em;
  padding: 0.5em 0;
  background: var(--cart-btn-color);
  border: 0.5px solid var(--cart-btn-color);
  display: inline-block;
  text-align: center;
  color: #000;
  transition: color 300ms ease-out, background-color 300ms ease-out;
}

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

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

.cart-btn--white {
  --cart-btn-color: #fff;
  --cart-btn-arrow: url("../img/arrow-black.svg");
}

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

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

.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: 0.3em;
}

/* 商品セクションのレイアウト--------------------------- */
.layout-photo-right,
.layout-photo-left {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (max-width: 767px) {
  .layout-photo-right,
  .layout-photo-left {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-inline: 0;
    position: relative;
  }
}
.layout-photo-right .items-photo,
.layout-photo-left .items-photo {
  position: relative;
  overflow: hidden;
  width: 36.6032210835vw;
  max-width: 740px;
}

.layout-photo-right .items-photo-02,
.layout-photo-left .items-photo-02 {
  position: relative;
  overflow: hidden;
  width: 29.2825768668vw;
  max-width: 600px;
}

.layout-photo-right .items-photo-02 {
  margin-right: 13.3235724744vw;
  margin-top: -9.6%;
}
@media screen and (max-width: 992px) {
  .layout-photo-right .items-photo-02 {
    margin-top: 5%;
  }
}

.layout-photo-right .txt-col,
.layout-photo-left .txt-col {
  -ms-flex: 1;
      flex: 1;
}

@media screen and (max-width: 767px) {
  .layout-photo-right .txt-col,
  .layout-photo-left .txt-col {
    width: 100%;
    margin-top: 0;
  }
}
.layout-photo-left .txt-col .inner,
.layout-photo-right .txt-col .inner {
  width: max(400px, 29.2825768668vw);
  max-width: 76%;
}

.layout-photo-left .txt-col .inner {
  margin-left: min(11.420204978vw, 156px);
}

@media screen and (max-width: 767px) {
  .layout-photo-right .txt-col .inner,
  .layout-photo-left .txt-col .inner {
    width: auto;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.layout-photo-right .link-box {
  margin-top: 30%;
  width: 100%;
}

.layout-photo-left .link-box {
  margin-top: 17.5%;
}

@media screen and (max-width: 767px) {
  .layout-photo-right .link-box,
  .layout-photo-left .link-box {
    margin-top: 8vw;
    margin-bottom: 0;
    width: calc(100% - 5.3333333333vw);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .layout-photo-right.items-main .txt-col,
  .layout-photo-right.items-main .txt-col .inner,
  .layout-photo-left.items-main .txt-col,
  .layout-photo-left.items-main .txt-col .inner {
    display: contents;
  }
}
.items-wrap-03 {
  margin-top: 9.5168374817vw;
}

.items-wrap-03 .layout-photo-right .link-box {
  margin-top: 18%;
}
@media screen and (max-width: 767px) {
  .items-wrap-03 .layout-photo-right .link-box {
    margin-top: 8vw;
  }
}

.items-wrap-03 .layout-photo-right .txt-col .inner {
  margin-left: 8.4919472914vw;
}

.layout-photo-right {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .items-wrap.wrap-sp {
    margin-top: 21.3333333333vw;
  }
  .items-wrap.wrap-sp .items-main {
    position: relative;
    padding-top: 28.8vw;
  }
}
.layout-photo-left {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .layout-photo-left {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.layout-photo-left .items-layered-ttl {
  margin-left: 0;
  min-width: 0;
}

.layout-photo-left .txt-col {
  margin-top: 0;
}

.items {
  padding: 160px 0;
}
@media screen and (max-width: 992px) {
  .items {
    padding: 88px 0 62px;
  }
}

.layout-photo-right .items-photo {
  margin-right: 13.3235724744vw;
  -ms-transform: translateY(-1%);
      transform: translateY(-1%);
}

.layout-photo-right .txt-col .inner {
  margin-left: 9.1508052709vw;
}

@media screen and (max-width: 1080px) {
  .layout-photo-right .txt-col .inner {
    margin-left: 5.1244509517vw;
  }
}
.layout-photo-right .items-ttl {
  margin-top: 5.1244509517vw;
}
@media screen and (max-width: 767px) {
  .layout-photo-right .items-ttl {
    margin-top: 0;
  }
}

.layout-photo-left .items-photo {
  margin-left: 9.1508052709vw;
}

@media screen and (max-width: 767px) {
  .layout-photo-right .items-photo,
  .layout-photo-left .items-photo {
    width: calc(100% + 10.6666666667vw);
    max-width: initial;
    margin-left: -5.3333333333vw;
    margin-bottom: 9.0666666667vw;
  }
  .layout-photo-right .items-photo-02,
  .layout-photo-left .items-photo-02 {
    width: calc(100% + 10.6666666667vw);
    max-width: initial;
    margin-left: -5.3333333333vw !important;
  }
}
@media screen and (max-width: 767px) {
  .layout-photo-right,
  .layout-photo-left {
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
  }
}
.photo-wrap {
  overflow: hidden;
}

.items-photo.border-right {
  width: 42.4597364568vw;
  padding-right: min(1.4641288433vw, 20px);
}
.items-photo.border-right::before {
  content: "";
  display: block;
  width: min(1.4641288433vw, 20px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .items-photo.border-right {
    width: calc(100% + 10.6666666667vw);
    max-width: initial;
    margin-left: -5.3333333333vw;
    padding: 0;
  }
  .items-photo.border-right::before {
    display: none;
  }
}
.items-photo.border-left {
  width: 42.4597364568vw;
  padding-left: min(1.4641288433vw, 20px);
}
.items-photo.border-left::before {
  content: "";
  display: block;
  width: min(1.4641288433vw, 20px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .items-photo.border-left {
    width: calc(100% + 10.6666666667vw);
    max-width: initial;
    margin-left: -5.3333333333vw;
    padding: 0;
  }
  .items-photo.border-left::before {
    display: none;
  }
}
/* 各 items  --------------------------- */
.items-bg {
  background-color: #F7F7F7;
}

.items-even .layout-photo-right {
  margin-top: 9.8828696925vw;
}
.items-even .layout-photo-right .items-ttl {
  margin-top: 0vw;
}
.items-even .layout-photo-right .items-photo {
  margin-right: 9.663250366vw;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.items-even .layout-photo-right .txt-col .inner {
  margin-left: 12.8111273792vw;
}
.items-even .items-wrap-03 {
  margin-top: 0;
}
.items-even .items-wrap-03 .layout-photo-left .items-photo-02 {
  margin-left: 12.8111273792vw;
  margin-top: -9.5%;
}
@media screen and (max-width: 992px) {
  .items-even .items-wrap-03 .layout-photo-left .items-photo-02 {
    margin-top: 4%;
  }
}
.items-even .items-wrap-03 .layout-photo-left .txt-col .inner {
  margin-left: auto;
  margin-right: 13.5431918009vw;
}
.items-even .items-wrap-03 .layout-photo-left .link-box {
  margin-top: 30%;
}
@media screen and (max-width: 767px) {
  .items-even .items-wrap-03 .layout-photo-left .link-box {
    margin-top: 16vw;
  }
}

.items-01 .items-ttl:not(.items-ttl-02) .text-wrap {
  max-width: 380px;
}
@media screen and (max-width: 767px) {
  .items-01 .items-ttl:not(.items-ttl-02) .num {
    width: 64px;
  }
  .items-01 .items-ttl:not(.items-ttl-02) .text-01 img {
    width: 268px;
  }
  .items-01 .items-ttl:not(.items-ttl-02) .text-02 img {
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .items-01 .items-ttl-02 .text-01 img {
    width: 260px;
  }
}

.items-02 .items-ttl:not(.items-ttl-02) .text-wrap {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .items-02 .items-ttl:not(.items-ttl-02) .num {
    width: 80px;
  }
  .items-02 .items-ttl:not(.items-ttl-02) .text-01 img {
    width: 238px;
  }
  .items-02 .items-ttl:not(.items-ttl-02) .text-02 img {
    width: 115px;
  }
}
.items-02 .items-ttl.items-ttl-02 .text-01 {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .items-02 .items-ttl.items-ttl-02 .text-01 {
    margin-bottom: 4px;
  }
  .items-02 .items-ttl.items-ttl-02 .text-01 img {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .items-03 .items-ttl:not(.items-ttl-02) .num {
    width: 80px;
  }
  .items-03 .items-ttl:not(.items-ttl-02) .text-01 img {
    width: 234px;
  }
  .items-03 .items-ttl:not(.items-ttl-02) .text-02 img {
    width: 200px;
  }
}
.items-03 .layout-photo-right .items-ttl {
  margin-top: 3.2942898975vw;
}
@media screen and (max-width: 767px) {
  .items-03 .layout-photo-right .items-ttl {
    margin-top: 0;
  }
  .items-03 .layout-photo-right .items-ttl .text-01 img {
    width: 168px;
  }
}
.items-03 .items-wrap-03 .layout-photo-right .txt-col .inner {
  margin-left: 9.1508052709vw;
}

@media screen and (max-width: 767px) {
  .items-04 .items-ttl:not(.items-ttl-02) .num {
    width: 86px;
  }
  .items-04 .items-ttl:not(.items-ttl-02) .text-01 img {
    width: 75px;
  }
  .items-04 .items-ttl:not(.items-ttl-02) .text-02 img {
    width: 208px;
  }
}
.items-04 .layout-photo-right .items-ttl {
  margin-top: 4.39238653vw;
}
@media screen and (max-width: 767px) {
  .items-04 .layout-photo-right .items-ttl {
    width: 100%;
    margin-top: 0;
  }
  .items-04 .layout-photo-right .items-ttl .text-01 img {
    width: 170px;
  }
}
.items-04 .items-wrap-03 .layout-photo-right .txt-col .inner {
  margin-left: 9.1508052709vw;
}

.items-05 {
  padding-bottom: 15.3733528551vw;
}
@media screen and (max-width: 767px) {
  .items-05 {
    padding-bottom: 10.6666666667vw;
  }
}
.items-05 .items-ttl {
  margin-bottom: 6.588579795vw;
}
.items-05 .items-ttl .text-01 {
  margin-top: 0.5856515373vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-ttl {
    max-width: 84%;
  }
  .items-05 .items-ttl .num {
    width: 84px;
  }
  .items-05 .items-ttl .text-01 img {
    width: 152px;
  }
}
.items-05 .layout-photo-left .items-photo {
  width: 43.9238653001vw;
}
@media screen and (max-width: 767px) {
  .items-05 .layout-photo-left .items-photo {
    width: calc(100% + 10.6666666667vw);
  }
}
.items-05 .layout-photo-left .txt-col .inner {
  width: max(420px, 30.7467057101vw);
  margin-left: min(4.39238653vw, 60px);
}
@media screen and (max-width: 767px) {
  .items-05 .layout-photo-left .txt-col .inner {
    margin-left: auto;
  }
}
.items-05 .layout-photo-left .link-box {
  margin-top: 9%;
}
.items-05 .link-box-main {
  padding-bottom: 0;
  margin-bottom: 4.9780380673vw;
}
@media screen and (max-width: 767px) {
  .items-05 .link-box-main {
    margin-bottom: 13.3333333333vw;
  }
}
.items-05 .link-box-main::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .items-05 .items-layered {
    padding-top: 34.6666666667vw;
  }
  .items-05 .items-photo {
    aspect-ratio: initial;
  }
}

/* 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;
  }
}