@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-up1;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein-up1 {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(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-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;
  }
}
.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;
  }
}
.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);
  }
}
.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);
}

.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-1 {
  animation-name: fade01;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-delay: 1s;
  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;
  }
}
.fade02-1 {
  animation-name: mv02;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fade02-1 .bg {
  animation-name: mv02-1;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-delay: 2.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fade02-1::before {
  animation-name: mv02-1;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-delay: 2.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

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

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

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

@keyframes mv02 {
  0% {
    opacity: 0;
    transform: translateY(12%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv02-1 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes mv02-2 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes mv02-3 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadein-txt-w {
  opacity: 0;
}

.fadein-txt-w.active {
  opacity: 1;
  animation-name: fadein-txt-w;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  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-delay: 0.4s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  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;
  }
}
.fadein-left {
  opacity: 0;
  -ms-transform: translateX(-15px);
      transform: translateX(-15px);
}
@media screen and (max-width: 767px) {
  .fadein-left {
    -ms-transform: translateX(0);
        transform: translateX(0);
  }
}

.fadein-left.active {
  animation-name: fadein-left;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .fadein-left.active {
    animation-name: fadein-up1;
    animation-timing-function: ease-out;
  }
}

@keyframes fadein-left {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.door-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  overflow: visible;
}

.bg-left.active {
  opacity: 1;
  animation-name: bg-left;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .bg-left.active {
    animation-name: bg-down;
    animation-timing-function: ease-out;
  }
}

@keyframes bg-left {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(150%);
  }
}
.bg-left.door-bg {
  left: 0;
}
.bg-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .bg-left::before {
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
}

.bg-right.active {
  opacity: 1;
  animation-name: bg-right;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .bg-right.active {
    animation-name: bg-down;
    animation-timing-function: ease-out;
  }
}

@keyframes bg-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-150%);
  }
}
.bg-right.door-bg {
  right: 0;
}
.bg-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .bg-right::before {
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
}

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

@keyframes bg-down {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(150%);
  }
}
.bg-down {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}
.bg-down::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}

.fadein-up2 {
  opacity: 0;
}

.fadein-up2.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(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.fade-img {
  opacity: 0;
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}

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

@keyframes fade-img {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.anim-ttl {
  clip-path: inset(0 0 100% 0);
  transition: 0.8s ease;
}
@media screen and (max-width: 767px) {
  .anim-ttl {
    clip-path: inset(0 100% 0 0);
  }
}
.anim-ttl.active {
  clip-path: inset(0);
}

.img-ani03 {
  opacity: 0;
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}

.img-ani03.active {
  animation-name: img-ani03;
  animation-duration: 5s;
  animation-delay: 0.4s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

@keyframes img-ani03 {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.door-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  overflow: visible;
}

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

@keyframes bg-down {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(150%);
  }
}
.bg-down {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}
.bg-down::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}

/* ---------------------------------------------
  component
  --------------------------------------------- */
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  color: #333;
  font-family: "Zen Old Mincho", sans-serif;
  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;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header-img {
    width: 100%;
    aspect-ratio: 375/667;
  }
}
.header-img .item {
  -ms-flex: 1;
      flex: 1;
  overflow: hidden;
}
.header-img .item img {
  -ms-transform: scale(1.005);
      transform: scale(1.005);
}
.header .txt-logo {
  margin: 0;
  position: absolute;
  top: 3.8%;
  left: 2%;
  animation-delay: 1.5s !important;
}
.header .txt-logo img {
  width: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .header .txt-logo {
    right: inherit;
    top: 1.8%;
    left: 3%;
  }
  .header .txt-logo img {
    width: 13.3333333333vw;
  }
}

.mv-icon {
  position: absolute;
  top: 66%;
  left: 18.2%;
  width: 25.4758418741vw;
}
@media screen and (max-width: 767px) {
  .mv-icon {
    width: 13.3333333333vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    left: initial;
  }
}

.mv-ttl-01 {
  width: 34%;
  margin: 0 auto;
  position: absolute;
  left: 14.8%;
  top: 31%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 {
    width: 69%;
    top: 80.2%;
    left: 15.4%;
  }
}
.mv-ttl-01::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 19.0336749634vw;
  aspect-ratio: 260/39;
  background: url("../img/mv_border.svg") no-repeat center/100%;
  position: absolute;
  bottom: -1.756954612vw;
  left: 0;
  -ms-transform: rotate(3deg);
      transform: rotate(3deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01::before {
    max-width: 36.8vw;
    bottom: -3.2vw;
  }
}
.mv-ttl-01 .bg {
  width: 58%;
  height: 3.2942898975vw;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  left: -0.878477306vw;
  top: -0.1464128843vw;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv-ttl-01 .bg {
    height: 6.4vw;
    top: -0.5333333333vw;
  }
}
.mv-ttl-01 img {
  position: relative;
  z-index: 2;
}

.mv-ttl-02 {
  width: 44.6%;
  position: relative;
  position: absolute;
  left: 8.4%;
  top: 40.4%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 {
    width: 89.3%;
    left: 5.4%;
    top: 86%;
  }
}
.mv-ttl-02 .text {
  position: relative;
  z-index: 2;
  display: block;
}
.mv-ttl-02 .text img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 .text img {
    -ms-transform: rotate(-6deg);
        transform: rotate(-6deg);
  }
}
.mv-ttl-02 .bg {
  width: 62%;
  position: absolute;
  bottom: -28%;
  left: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv-ttl-02 .bg {
    width: 54%;
    bottom: -36%;
    left: 2%;
    -ms-transform: rotate(-6deg);
        transform: rotate(-6deg);
  }
}

.mv-ttl-03 {
  width: 14.4%;
  position: relative;
  margin: 0 auto;
  position: absolute;
  left: 36.2%;
  top: 50.4%;
}
@media screen and (max-width: 767px) {
  .mv-ttl-03 {
    width: 28%;
    top: 92.5%;
    left: 62%;
  }
}
.mv-ttl-03 .text {
  display: block;
  position: relative;
  z-index: 2;
}
.mv-ttl-03 .text:nth-child(1) {
  width: 45%;
}
.mv-ttl-03 .text:nth-child(2) {
  -ms-transform: translate(2.4890190337vw, -3.513909224vw);
      transform: translate(2.4890190337vw, -3.513909224vw);
}
@media screen and (max-width: 767px) {
  .mv-ttl-03 .text:nth-child(2) {
    -ms-transform: translate(5.3333333333vw, -6.6666666667vw);
        transform: translate(5.3333333333vw, -6.6666666667vw);
  }
}

/* リード--------------------------- */
.lead {
  margin: 0;
  padding-top: min(6.7349926794vw, 120px);
  padding-bottom: min(7.6866764275vw, 120px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-top: min(12.8vw, 100px);
    padding-bottom: min(16.5333333333vw, 80px);
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
.lead .text {
  font-size: 1.1713030747vw;
  font-size: max(1.317715959vw, 14px);
  font-weight: 400;
  line-height: 3.1;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead .text {
    font-size: 4.2666666667vw;
    line-height: 2.1875;
  }
}

/* 商品リンク先リスト--------------------------- */
.link-box {
  width: 29.28vw;
  width: max(280px, 29.2825768668vw);
  max-width: 100%;
  min-width: 270px;
  margin: 0 auto;
}
@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;
}

.cart-yen {
  position: relative;
  width: 5.2em;
  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;
  margin-left: 0.439238653vw;
}
@media screen and (max-width: 767px) {
  .cart-tax {
    margin-left: 2.6666666667vw;
  }
}

.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 {
  color: #333;
  --cart-btn-color: #D2E6FF;
  --cart-btn-arrow: url("../img/arrow-black.svg");
}

.cart-btn--02 {
  color: #333;
  --cart-btn-color: #DDE5F0;
  --cart-btn-arrow: url("../img/arrow-black.svg");
}

.cart-btn--03 {
  color: #333;
  --cart-btn-color: #DCEADF;
  --cart-btn-arrow: url("../img/arrow-black.svg");
}

.cart-btn--04 {
  color: #333;
  --cart-btn-color: #E9E2F0;
  --cart-btn-arrow: url("../img/arrow-black.svg");
}

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

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

.link-box-sub .cart-btm:hover .cart-btn {
  background-color: #333;
  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 nav  --------------------------- */
.p-intro {
  position: relative;
  margin-bottom: 13.17715959vw;
}
@media screen and (max-width: 767px) {
  .p-intro {
    margin-bottom: 16vw;
  }
}
.p-intro__ttl {
  width: 35.2855051245vw;
  margin: 0 auto;
  -ms-transform: rotate(-5deg) translateY(10%);
      transform: rotate(-5deg) translateY(10%);
  opacity: 1;
  transition: 0.5s ease;
  position: relative;
  margin-bottom: 4.7584187408vw;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-intro__ttl {
    width: 87.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-intro__ttl::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 480/46;
  background: url("../img/border_series.svg") no-repeat center/100%;
  position: absolute;
  bottom: 2.196193265vw;
  left: 0;
  clip-path: inset(0 100% 0% 0%);
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-intro__ttl::before {
    bottom: 6.4vw;
  }
}
.p-intro__ttl img {
  width: 100%;
}
.p-intro__ttl span {
  display: inline-block;
  position: relative;
  width: 100%;
}
.p-intro__ttl.active {
  -ms-transform: rotate(-5deg) translateY(0);
      transform: rotate(-5deg) translateY(0);
  opacity: 1;
}
.p-intro__ttl.active::before {
  clip-path: inset(0);
}
.p-intro__img {
  max-width: 58.5651537335vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-intro__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 11.2vw;
  }
}
.p-intro__block {
  position: relative;
}
.p-intro__block.active .p-intro__text__item {
  -ms-transform: translateY(0);
      transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-intro__text {
    padding: 0 5.3333333333vw;
  }
}
.p-intro__text__item {
  width: 13.3235724744vw;
  position: absolute;
  opacity: 0;
  -ms-transform: translateY(5%);
      transform: translateY(5%);
  transition: 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item {
    position: relative;
    width: 100%;
    border-bottom: 2px dotted #9B9B9B;
    margin-bottom: 9.0666666667vw;
    padding-bottom: 8.5333333333vw;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-intro__text__item:nth-child(1) {
  top: 0.2928257687vw;
  left: 3.074670571vw;
  width: 14.6412884334vw;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(1) {
    width: 100%;
    left: initial;
    top: initial;
  }
}
.p-intro__text__item:nth-child(1) .point {
  top: -2.196193265vw;
  left: -0.7320644217vw;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(1) .point {
    margin-top: 1.0666666667vw;
  }
}
.p-intro__text__item:nth-child(2) {
  top: -1.0980966325vw;
  right: 3.513909224vw;
  width: 13.3235724744vw;
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(2) {
    width: 100%;
    top: initial;
    right: initial;
  }
}
.p-intro__text__item:nth-child(3) {
  top: 22.5475841874vw;
  left: 3.513909224vw;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(3) {
    top: initial;
    left: initial;
  }
}
.p-intro__text__item:nth-child(3) .point {
  top: -1.756954612vw;
  left: -1.1713030747vw;
}
.p-intro__text__item:nth-child(3) .desc {
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(3) .desc {
    letter-spacing: 0;
  }
}
.p-intro__text__item:nth-child(4) {
  top: 22.5475841874vw;
  right: 3.2942898975vw;
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(4) {
    top: initial;
    right: initial;
  }
}
.p-intro__text__item:nth-child(4) .point {
  top: -1.756954612vw;
}
.p-intro__text__item:nth-child(4) .desc {
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item:nth-child(4) .desc {
    letter-spacing: 0;
  }
}
.p-intro__text__item .point {
  -ms-transform: rotate(-30deg);
      transform: rotate(-30deg);
  display: inline-block;
  position: absolute;
  top: -0.878477306vw;
  left: -2.635431918vw;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item .point {
    position: static;
    -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    width: 14.9333333333vw;
    margin-left: 1.0666666667vw;
    margin-right: 4.2666666667vw;
  }
}
.p-intro__text__item .ttl {
  font-weight: 700;
  font-size: 1.6105417277vw;
  text-align: center;
  margin-bottom: 1.0248901903vw;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item .ttl {
    font-size: 4.5333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.p-intro__text__item .ttl span {
  background: linear-gradient(transparent 68%, #FFBC69 0%);
  background-position: 0 -4px;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item .ttl span {
    background-position: 0 -2px;
  }
}
.p-intro__text__item .desc {
  font-size: 1.0980966325vw;
  line-height: 1.86;
}
@media screen and (max-width: 767px) {
  .p-intro__text__item .desc {
    font-size: 4vw;
    width: 100%;
  }
}

/* 大カテゴリー --------------------------- */
.items-head {
  position: relative;
  padding: 5.270863836vw 6.2957540264vw 0 5.1244509517vw;
  margin-bottom: 7.3206442167vw;
}
@media screen and (max-width: 767px) {
  .items-head {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    padding: 16vw 8vw 10.6666666667vw;
    margin-bottom: 0;
  }
}
.items-head__bg {
  width: 100%;
  height: 43.9238653001vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .items-head__bg {
    width: 100%;
    height: 160vw;
  }
}
.items-head__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  position: relative;
  gap: 2.7818448023vw;
}
@media screen and (max-width: 767px) {
  .items-head__wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 0;
  }
}
.items-head__num {
  width: 9.663250366vw;
  margin-top: 1.1713030747vw;
}
@media screen and (max-width: 767px) {
  .items-head__num {
    width: 21.0666666667vw;
    margin: 0 auto 6.9333333333vw;
  }
}
.items-head__num img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .items-head__text {
    text-align: center;
  }
}
.items-head__text .sub {
  -ms-transform: rotate(-8deg);
      transform: rotate(-8deg);
  display: inline-block;
  font-size: 1.4641288433vw;
  font-weight: 700;
  padding-left: 2.0497803807vw;
  margin-bottom: 0.2928257687vw;
}
@media screen and (max-width: 767px) {
  .items-head__text .sub {
    font-size: 6.4vw;
    -ms-transform: none;
        transform: none;
    padding: 0;
    margin-bottom: 2.1333333333vw;
  }
}
.items-head__ttl {
  position: relative;
  padding: 0 0.878477306vw;
}
@media screen and (max-width: 767px) {
  .items-head__ttl {
    text-align: center;
  }
}
.items-head__ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.513909224vw;
  position: absolute;
  top: 16%;
  left: 0;
  background-color: #fff;
  -ms-transform: rotate(-8deg);
      transform: rotate(-8deg);
  clip-path: inset(0 100% 0% 0);
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-head__ttl::before {
    -ms-transform: none;
        transform: none;
    padding: 0;
    width: 92%;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    height: 10.1333333333vw;
  }
}
.items-head__ttl span {
  display: inline-block;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .items-head__ttl span {
    width: auto;
  }
}
.items-head__ttl span::before {
  content: "";
  display: block;
  width: 104%;
  max-width: 21.3762811127vw;
  aspect-ratio: 295/44;
  background: url("../img/border_01.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0.245vw;
  left: 50%;
  -ms-transform: rotate(-5deg) translateX(-50%);
      transform: rotate(-5deg) translateX(-50%);
  clip-path: inset(0 100% 0% 0);
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-head__ttl span::before {
    width: 100%;
    max-width: 77.3333333333vw;
    -ms-transform: rotate(4deg) translateX(-50%);
        transform: rotate(4deg) translateX(-50%);
    bottom: -4.8vw;
  }
}
.items-head__ttl span img {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .items-head__ttl span img {
    -ms-transform: rotate(8deg);
        transform: rotate(8deg);
  }
}
.items-head__ttl.active::before {
  clip-path: inset(0);
}
.items-head__ttl.active span::before {
  clip-path: inset(0);
}
.items-head__lead {
  font-size: 1.317715959vw;
  line-height: 2.22;
  font-weight: 400;
  width: 56.7349926794vw;
  margin-left: auto;
  margin-top: -0.2928257687vw;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-head__lead {
    width: auto;
    font-size: 4.8vw;
    margin-top: 8vw;
    line-height: 2.44;
  }
}
.items-head.items01 .items-head__bg {
  background: linear-gradient(180deg, rgba(210, 230, 255, 0.5) 0%, rgb(255, 255, 255) 100%);
}
.items-head.items01 .items-head__text .sub {
  color: #5A7FA6;
}
.items-head.items01 .items-head__text img {
  width: 20.8638360176vw;
}
@media screen and (max-width: 767px) {
  .items-head.items01 .items-head__text img {
    width: 60.8vw;
  }
}
.items-head.items01 .items-head__ttl span::before {
  background-image: url("../img/border_01.svg");
}
.items-head.items02 {
  margin-bottom: 4.39238653vw;
}
@media screen and (max-width: 767px) {
  .items-head.items02 {
    margin-bottom: 0vw;
  }
}
.items-head.items02 .items-head__bg {
  background: linear-gradient(180deg, rgba(221, 229, 240, 0.5) 0%, rgb(255, 255, 255) 100%);
}
.items-head.items02 .items-head__text .sub {
  color: #5A6472;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .items-head.items02 .items-head__text .sub {
    margin-bottom: 2.1333333333vw;
  }
}
.items-head.items02 .items-head__text img {
  width: 24.4509516837vw;
}
@media screen and (max-width: 767px) {
  .items-head.items02 .items-head__text img {
    width: 69.3333333333vw;
  }
}
.items-head.items02 .items-head__ttl span::before {
  background-image: url("../img/border_02.svg");
}
@media screen and (max-width: 767px) {
  .items-head.items02 .items-head__ttl span::before {
    bottom: -5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-head.items02 .items-head__lead {
    margin-top: 5.3333333333vw;
  }
}
.items-head.items03 {
  margin-bottom: 3.953147877vw;
  padding-top: 5.5636896047vw;
}
@media screen and (max-width: 767px) {
  .items-head.items03 {
    padding-top: 16vw;
    margin-bottom: 0vw;
  }
}
.items-head.items03 .items-head__bg {
  background: linear-gradient(180deg, rgba(220, 234, 223, 0.5) 0%, rgb(255, 255, 255) 100%);
}
.items-head.items03 .items-head__text .sub {
  color: #6B8572;
  margin-bottom: 0.5856515373vw;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__text .sub {
    margin-bottom: 3.2vw;
  }
}
.items-head.items03 .items-head__text img {
  width: 27.9648609078vw;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__text img {
    width: 81.0666666667vw;
  }
}
.items-head.items03 .items-head__ttl::before {
  width: 21.0834553441vw;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__ttl::before {
    width: 61.3333333333vw;
    left: 35%;
    top: 0;
  }
}
.items-head.items03 .items-head__ttl span::before {
  background-image: url("../img/border_03.svg");
  bottom: 0.439238653vw;
  left: 58%;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__ttl span::before {
    width: 80%;
    bottom: -5.3333333333vw;
    left: 56%;
  }
}
.items-head.items03 .items-head__ttl span.bg {
  width: 25.4758418741vw;
  height: 3.6603221083vw;
  position: absolute;
  bottom: 1.317715959vw;
  right: 0;
  background-color: #fff;
  -ms-transform: rotate(-8deg);
      transform: rotate(-8deg);
  z-index: 1;
}
.items-head.items03 .items-head__ttl span.bg::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__ttl span.bg {
    -ms-transform: none;
        transform: none;
    padding: 0;
    width: 92%;
    right: -2.1333333333vw;
    bottom: 2.6666666667vw;
    height: 10.1333333333vw;
  }
}
.items-head.items03 .items-head__lead {
  margin-top: 0.2928257687vw;
}
@media screen and (max-width: 767px) {
  .items-head.items03 .items-head__lead {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .items-head.items04 {
    margin-bottom: 1.3333333333vw;
  }
}
.items-head.items04 .items-head__bg {
  background: linear-gradient(180deg, rgba(233, 226, 240, 0.5) 0%, rgb(255, 255, 255) 100%);
}
.items-head.items04 .items-head__text .sub {
  color: #8C7797;
}
@media screen and (max-width: 767px) {
  .items-head.items04 .items-head__text .sub {
    margin-bottom: 0.5333333333vw;
  }
}
.items-head.items04 .items-head__text img {
  width: 20.8638360176vw;
}
@media screen and (max-width: 767px) {
  .items-head.items04 .items-head__text img {
    width: 61.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-head.items04 .items-head__ttl::before {
    width: 102%;
  }
}
.items-head.items04 .items-head__ttl span::before {
  background-image: url("../img/border_04.svg");
}
@media screen and (min-width: 768px) {
  .items-head.items04 .items-head__ttl span::before {
    bottom: 0.2928257687vw;
  }
}
.items-head.items04 .items-head__lead {
  margin-top: -0.7320644217vw;
}
@media screen and (max-width: 767px) {
  .items-head.items04 .items-head__lead {
    margin-top: 8.5333333333vw;
  }
}

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

.items-block {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .items-block {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 51.7333333333vw !important;
    -ms-flex-direction: column !important;
        flex-direction: column !important;
    -ms-flex-align: start !important;
        align-items: flex-start !important;
    gap: 9.6vw !important;
  }
}

.items-photo {
  overflow: hidden;
  width: 46.8521229868vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-photo {
    width: 100%;
    aspect-ratio: 375/500;
  }
}
.items-photo .logo {
  width: 8.78477306vw;
  position: absolute;
  top: 1.4641288433vw;
  right: 1.4641288433vw;
}
@media screen and (max-width: 767px) {
  .items-photo .logo {
    width: 24vw;
    top: 2.6666666667vw;
    right: inherit;
    left: 2.6666666667vw;
  }
}
.items-photo .logo img {
  width: 100%;
}

.items-photo a {
  display: block;
}

.items-block-sub {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 6.8081991215vw 0 8.78477306vw;
  margin-top: 4.9780380673vw;
}
@media screen and (max-width: 767px) {
  .items-block-sub {
    display: block;
    padding: 0 !important;
    margin-top: 0vw;
  }
}
.items-block-sub .items-photo {
  width: 36.6032210835vw;
  position: absolute;
  right: 6.8081991215vw;
  top: -29.2825768668vw;
}

.items {
  position: relative;
}
.items.items-reverse .items-block {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
  gap: 0;
  padding-left: 4.9780380673vw;
}
.items.items-reverse .items-block-sub {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  padding: 0 8.78477306vw 0 6.8081991215vw;
}
.items.items-reverse .items-block-sub .items-photo {
  right: initial;
  left: 6.8081991215vw;
  top: -29.2825768668vw;
}

/* items ttl --------------------------- */
@media screen and (max-width: 767px) {
  .items-text {
    padding: 0 5.3333333333vw;
    margin-top: 0 !important;
  }
}

.items-ttl {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 0.439238653vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3.8067349927vw;
  -ms-transform: translateX(-0.7320644217vw);
      transform: translateX(-0.7320644217vw);
  opacity: 0;
  transition: 0.8s ease;
  top: 15px;
}
@media screen and (max-width: 767px) {
  .items-ttl {
    width: calc(100% - 16vw);
    position: absolute;
    top: 2.6666666667vw;
    left: 50%;
    -ms-transform: translateX(-50%) !important;
        transform: translateX(-50%) !important;
    gap: 2.1333333333vw;
  }
}
.items-ttl:before, .items-ttl::after {
  content: "";
  display: block;
  position: absolute;
}
.items-ttl:before {
  width: 0;
  border-top: 1px solid #5A7FA6;
  top: 15px;
  left: -15px;
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
.items-ttl::after {
  height: 0;
  border-right: 1px solid #5A7FA6;
  top: 0;
  left: 0;
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
.items-ttl__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.0980966325vw;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 2.4890190337vw 4.2459736457vw 3.953147877vw;
}
@media screen and (max-width: 767px) {
  .items-ttl__wrap {
    gap: 1.6vw;
    padding: 9.0666666667vw 12vw 9.0666666667vw;
  }
}
.items-ttl__wrap .sub {
  font-size: 1.756954612vw;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .items-ttl__wrap .sub {
    font-size: 5.3333333333vw;
  }
}
.items-ttl__wrap .text {
  font-weight: 600;
  font-size: 2.635431918vw;
  letter-spacing: -0.04em;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-ttl__wrap .text {
    font-size: 6.9333333333vw;
    line-height: 1.35;
  }
}
.items-ttl__wrap .text::before {
  content: "";
  display: block;
  width: calc(100% + 0.878477306vw);
  height: 1.1713030747vw;
  background-color: #D2E6FF;
  position: absolute;
  bottom: 0;
  left: -0.439238653vw;
  z-index: 0;
  clip-path: inset(0 100% 0% 0%);
  transition: 0.8s ease;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-ttl__wrap .text::before {
    display: none;
  }
}
.items-ttl__wrap .text span {
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .items-ttl__wrap .text span::before {
    content: "";
    display: block;
    width: calc(100% + 0.878477306vw);
    height: 2.6666666667vw;
    background-color: #D2E6FF;
    position: absolute;
    bottom: -1.0666666667vw;
    left: -0.439238653vw;
    z-index: -1;
    clip-path: inset(0 100% 0% 0%);
    transition: 0.5s ease;
    transition-delay: 0.4s;
  }
}
.items-ttl__wrap:before, .items-ttl__wrap::after {
  content: "";
  display: block;
  position: absolute;
}
.items-ttl__wrap:before {
  width: 0;
  border-top: 1px solid #5A7FA6;
  bottom: 15px;
  right: -15px;
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
.items-ttl__wrap::after {
  height: 0;
  border-right: 1px solid #5A7FA6;
  bottom: 0;
  right: 0;
  transition: 0.6s ease;
  transition-delay: 0.4s;
}
.items-ttl.cat02::before, .items-ttl.cat02::after {
  border-color: #5A6472;
}
.items-ttl.cat02 .items-ttl__wrap:before, .items-ttl.cat02 .items-ttl__wrap::after {
  border-color: #5A6472;
}
.items-ttl.cat02 .items-ttl__wrap .text::before {
  background-color: #DDE5F0;
}
.items-ttl.cat02 .items-ttl__wrap .text span::before {
  background-color: #DDE5F0;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 {
    left: 0;
    -ms-transform: none !important;
        transform: none !important;
    padding-left: 7.4666666667vw;
    width: 100%;
  }
}
.items-ttl.cat03::before, .items-ttl.cat03::after {
  display: none;
}
.items-ttl.cat03 .items-ttl__wrap {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap {
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.items-ttl.cat03 .items-ttl__wrap::before, .items-ttl.cat03 .items-ttl__wrap::after {
  display: none;
}
.items-ttl.cat03 .items-ttl__wrap .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 2.196193265vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap .text {
    gap: 7.4666666667vw;
  }
}
.items-ttl.cat03 .items-ttl__wrap .text::before, .items-ttl.cat03 .items-ttl__wrap .text::after {
  content: "";
  display: block;
  width: 1px;
  height: 68px;
  background-color: #6B8572;
  position: absolute;
  transition: 0.8s ease;
}
.items-ttl.cat03 .items-ttl__wrap .text::before {
  top: 5%;
  left: 70%;
  -ms-transform: rotate(60deg);
      transform: rotate(60deg);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap .text::before {
    top: -2%;
  }
}
.items-ttl.cat03 .items-ttl__wrap .text::after {
  height: 40px;
  top: 18%;
  left: 70%;
  -ms-transform: rotate(120deg);
      transform: rotate(120deg);
  clip-path: inset(0 0 0 100%);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap .text span {
    padding: 0 2.1333333333vw;
  }
}
.items-ttl.cat03 .items-ttl__wrap .text span::before {
  background-color: #DCEADF;
  content: "";
  display: block;
  width: calc(100% + 0.878477306vw);
  height: 1.1713030747vw;
  position: absolute;
  bottom: 0;
  left: -0.439238653vw;
  z-index: -1;
  clip-path: inset(0 100% 0% 0%);
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap .text span::before {
    height: 2.6666666667vw;
    bottom: -1.0666666667vw;
  }
}
.items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
  margin-left: 2.635431918vw;
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
    margin-left: 10.6666666667vw;
  }
}
.items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2)::before {
  transition-delay: 0.4s;
}
.items-ttl.cat04::before, .items-ttl.cat04::after {
  border-color: #8C7797;
}
.items-ttl.cat04 .items-ttl__wrap:before, .items-ttl.cat04 .items-ttl__wrap::after {
  border-color: #8C7797;
}
.items-ttl.cat04 .items-ttl__wrap .text::before {
  background-color: #E9E2F0;
}
.items-ttl.cat04 .items-ttl__wrap .text span::before {
  background-color: #E9E2F0;
}

.ani02.active {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .ani02.active {
    top: 0;
  }
}
.ani02.active:before {
  width: 68px;
}
.ani02.active::after {
  height: 68px;
}
.ani02.active .items-ttl__wrap:before {
  width: 68px;
}
.ani02.active .items-ttl__wrap::after {
  height: 68px;
  clip-path: inset(0);
}
.ani02.active .items-ttl__wrap .text::before {
  clip-path: inset(0);
}
.ani02.active .items-ttl__wrap .text::after {
  clip-path: inset(0);
}
.ani02.active .items-ttl__wrap .text span::before {
  clip-path: inset(0);
}

.items-desc {
  font-size: max(12px, 1.317715959vw);
  font-weight: 400;
  line-height: 2.444;
  color: #4B4B4B;
  width: 29.2825768668vw;
  margin: 0 auto 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-desc {
    font-size: 4.5333333333vw;
    line-height: 2;
    letter-spacing: 0em;
    padding: 0;
    margin-bottom: 7.4666666667vw !important;
    width: 100%;
  }
  .items-desc.active {
    animation-duration: 0.5s;
  }
}

/* 各 items  --------------------------- */
.items-01 .items-block {
  padding-right: 5.710102489vw;
}
.items-01 .items-text {
  margin-top: 5.8565153734vw;
}

.items-02 .items-text {
  margin-top: 1.317715959vw;
}
@media screen and (min-width: 768px) {
  .items-02 .items-ttl {
    -ms-transform: none;
        transform: none;
  }
}
@media screen and (max-width: 767px) {
  .items-02 .items-block {
    padding-top: 46.6666666667vw !important;
  }
}

.items-03 .items-block {
  padding-right: 6.8814055637vw;
}
.items-03 .items-text {
  margin-top: 3.6603221083vw;
}

.items-04.items-reverse .items-block {
  padding-left: 7.906295754vw;
}
@media screen and (max-width: 767px) {
  .items-04.items-reverse .items-block {
    padding-top: 41.6vw !important;
  }
}
.items-04 .items-text {
  margin-top: -0.3660322108vw;
}

.items-05 {
  margin-bottom: 12.8111273792vw;
}
@media screen and (max-width: 767px) {
  .items-05 {
    margin-bottom: 16vw;
  }
}
.items-05 .items-block {
  padding-right: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-block {
    padding-top: 41.3333333333vw !important;
  }
}
.items-05 .items-text {
  margin-top: 5.5636896047vw;
}

.items-06 {
  margin-bottom: 7.3206442167vw;
}
@media screen and (max-width: 767px) {
  .items-06 {
    margin-bottom: 14.6666666667vw;
  }
}
.items-06 .items-block {
  padding-right: 5.4172767204vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-block {
    padding-top: 49.3333333333vw !important;
  }
}
.items-06 .items-ttl__wrap {
  padding-left: 1.9033674963vw;
  padding-right: 1.9033674963vw;
}

@media screen and (max-width: 767px) {
  .items-07 {
    margin-bottom: 13.3333333333vw;
  }
}
.items-07.items-reverse .items-block {
  padding-left: 3.6603221083vw;
}
.items-07 .items-text {
  margin-top: 1.9033674963vw;
}
.items-07 .items-ttl {
  -ms-transform: translateX(0vw);
      transform: translateX(0vw);
}
.items-07 .items-ttl__wrap {
  padding-left: 1.9033674963vw;
  padding-right: 1.9033674963vw;
}

.items-08 {
  margin-bottom: 13.17715959vw;
}
.items-08 .items-block {
  padding-right: 5.4172767204vw;
}
.items-08 .items-ttl {
  margin-top: 0.7320644217vw;
}
.items-08 .items-ttl__wrap {
  padding-left: 1.9033674963vw;
  padding-right: 1.9033674963vw;
}

.items-09 {
  margin-bottom: 8.4919472914vw;
}
@media screen and (max-width: 767px) {
  .items-09 {
    margin-bottom: 12vw;
  }
}
.items-09 .items-block {
  padding-right: 10.3953147877vw;
}
@media screen and (max-width: 767px) {
  .items-09 .items-block {
    padding-top: 36vw !important;
  }
}
.items-09 .items-ttl {
  margin-top: 3.6603221083vw;
  -ms-transform: translateX(0.7320644217vw);
      transform: translateX(0.7320644217vw);
}

.items-10.items-reverse .items-block {
  padding-left: 8.78477306vw;
}
@media screen and (max-width: 767px) {
  .items-10.items-reverse .items-block {
    padding-top: 36vw !important;
  }
}
.items-10 .items-ttl {
  margin-top: 3.6603221083vw;
}
.items-10 .items-ttl {
  -ms-transform: translateX(0vw);
      transform: translateX(0vw);
}
.items-10 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-10 .items-ttl.cat03 .items-ttl__wrap .text::after {
  left: 52%;
}
@media screen and (max-width: 767px) {
  .items-10 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-10 .items-ttl.cat03 .items-ttl__wrap .text::after {
    left: 60%;
  }
}
@media screen and (max-width: 767px) {
  .items-10 .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
    margin-left: 0vw;
  }
}

@media screen and (max-width: 767px) {
  .items-11 {
    margin-bottom: 12vw;
  }
}
.items-11.items-reverse .items-block {
  padding-left: 8.78477306vw;
}
@media screen and (max-width: 767px) {
  .items-11.items-reverse .items-block {
    padding-top: 32vw !important;
  }
}
.items-11 .items-text {
  margin-top: 1.4641288433vw;
}
.items-11 .items-ttl {
  -ms-transform: translateX(0.5856515373vw);
      transform: translateX(0.5856515373vw);
}
.items-11 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-11 .items-ttl.cat03 .items-ttl__wrap .text::after {
  left: 62%;
}
@media screen and (max-width: 767px) {
  .items-11 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-11 .items-ttl.cat03 .items-ttl__wrap .text::after {
    left: 66%;
  }
}
.items-11 .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
  margin-left: 1.4641288433vw;
}
@media screen and (max-width: 767px) {
  .items-11 .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
    margin-left: 10.6666666667vw;
  }
}
.items-11 .items-desc {
  margin-bottom: 6.2225475842vw;
}

.items-12 {
  margin-bottom: 10.6149341142vw;
}
@media screen and (max-width: 767px) {
  .items-12 {
    margin-bottom: 16vw;
  }
}
.items-12 .items-block {
  padding-right: 10.3953147877vw;
}
@media screen and (max-width: 767px) {
  .items-12 .items-block {
    padding-top: 34.6666666667vw !important;
  }
}
.items-12 .items-ttl {
  margin-top: 3.3674963397vw;
  -ms-transform: translateX(0.439238653vw);
      transform: translateX(0.439238653vw);
}
@media screen and (max-width: 767px) {
  .items-12 .items-ttl.cat03 {
    padding-left: 9.3333333333vw;
  }
}
.items-12 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-12 .items-ttl.cat03 .items-ttl__wrap .text::after {
  left: 80%;
}
@media screen and (max-width: 767px) {
  .items-12 .items-ttl.cat03 .items-ttl__wrap .text::before, .items-12 .items-ttl.cat03 .items-ttl__wrap .text::after {
    left: 84%;
  }
}
.items-12 .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
  margin-left: 4.7584187408vw;
}
@media screen and (max-width: 767px) {
  .items-12 .items-ttl.cat03 .items-ttl__wrap .text span:nth-child(2) {
    margin-left: 10.1333333333vw;
  }
}

.items-13 .items-block {
  padding-right: 8.78477306vw;
}
.items-13 .items-text {
  margin-top: 4.39238653vw;
}
.items-13 .items-ttl__wrap {
  padding-left: 1.9033674963vw;
  padding-right: 1.9033674963vw;
}

.items-14.items-reverse .items-block {
  padding-left: 6.149341142vw;
}
.items-14 .items-text {
  margin-top: 4.39238653vw;
}
.items-14 .items-ttl {
  -ms-transform: translateX(0vw);
      transform: translateX(0vw);
}
.items-14 .items-ttl__wrap {
  padding-left: 1.9033674963vw;
  padding-right: 1.9033674963vw;
}

/* 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.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;
  border-radius: 100%;
  transition: color 0.2s;
  overflow: hidden;
  background: none;
  border: 1px solid #eee;
}

#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.3333333333vw;
  }
  /* ページトップボタン--------------------------- */
  #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;
    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 {
    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;
  }
}