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

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

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

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

.fade02-4 {
  animation-name: mv02-3;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: clip-path;
}

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

.fadein-txt-w.active {
  opacity: 1;
  animation-name: fadein-txt-w;
  animation-duration: 1s;
  animation-delay: 0.5s;
  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;
  }
}
/* ---------------------------------------------
  component
  --------------------------------------------- */
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  color: #434343;
  font-family: "Zen Old Mincho", serif;
  font-family: "Shippori 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 {
  position: relative;
}
.header-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-img {
    aspect-ratio: 375/665;
    overflow: hidden;
  }
}
.header-block {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-block::before {
    content: "";
    display: block;
    width: 100%;
    height: 38%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
  }
}
.header .mv-block {
  position: absolute;
  top: 27%;
  left: 37.5%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .header .mv-block {
    top: 65.4%;
    left: 20.4%;
  }
}
.header .mv-ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 2.03125vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.header .mv-ttl span {
  display: inline-block;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.4));
}
.header .mv-ttl .item01 {
  width: 2.34375vw;
  margin-right: 2.8125vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl .item01 {
    width: 6.4vw;
    margin-right: 7.4666666667vw;
  }
}
.header .mv-ttl .item02 {
  width: 3.125vw;
  margin-right: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl .item02 {
    width: 8.5333333333vw;
    margin-right: 6.4vw;
  }
}
.header .mv-ttl .item03 {
  width: 3.4375vw;
  margin-right: 2.1875vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl .item03 {
    width: 10.1333333333vw;
    margin-right: 4.8vw;
  }
}
.header .mv-ttl .item04 {
  width: 5.3125vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl .item04 {
    width: 14.4vw;
  }
}
.header .mv-logo {
  margin-right: 0.625vw;
}
.header .mv-logo img {
  width: 5.3125vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header .mv-logo img {
    width: 16vw;
  }
}

.mv-text-01 {
  position: relative;
  margin-top: 5.46875vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv-text-01 {
    margin-top: 9.0666666667vw;
  }
}
.mv-text-01 .text {
  display: block;
  margin-right: 2.5vw;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 767px) {
  .mv-text-01 .text {
    margin-right: 0vw;
  }
}
.mv-text-01 .text img {
  width: 15.234375vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv-text-01 .text img {
    width: 47.4666666667vw;
  }
}
.mv-text-01 .en {
  display: block;
  margin-top: -2.65625vw;
  margin-right: 3.4375vw;
}
@media screen and (max-width: 767px) {
  .mv-text-01 .en {
    margin-top: -9.6vw;
  }
}
.mv-text-01 .en img {
  width: 13.90625vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv-text-01 .en img {
    width: 43.2vw;
  }
}

/* リード--------------------------- */
.lead {
  margin: 0;
  padding-top: min(5.078125vw, 80px);
  padding-bottom: min(6.25vw, 100px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-top: min(12.8vw, 100px);
    padding-bottom: min(13.3333333333vw, 80px);
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
.lead .text {
  font-size: 1.25vw;
  font-size: max(1.25vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.5;
  position: relative;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .lead .text {
    font-size: 4.2666666667vw;
    letter-spacing: 0.08em;
    line-height: 2.5;
  }
}

/* 商品リンク先リスト--------------------------- */
.link-box {
  width: 29.28vw;
  width: 22.5vw;
  max-width: 100%;
  min-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

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

.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: #434343;
  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: 2px;
}
@media screen and (max-width: 767px) {
  .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;
}

.cart-btm * {
  font-family: "Shippori Mincho", serif;
}

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

.cart-title {
  -ms-flex: 1;
      flex: 1;
  font-size: 0.84em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cart-title {
    font-size: 0.92em;
    letter-spacing: 0.06em;
  }
}

.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;
}
@media screen and (max-width: 767px) {
  .cart-yen {
    font-size: 0.94em;
  }
}

.cart-btm--l .cart-yen::before,
.cart-btm--s .cart-yen::before {
  content: "";
  display: block;
  background: center center/100% no-repeat url("../img/size-l.svg");
  width: 0.98em;
  height: 0.98em;
  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;
  margin-bottom: -0.5em;
}
@media screen and (max-width: 767px) {
  .cart-tax {
    font-size: 0.57em;
    letter-spacing: -0.05em;
  }
}

.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: 5.6em;
  padding: 0.25em 0;
  background: var(--cart-btn-color);
  border: 0.5px solid var(--cart-btn-color);
  display: inline-block;
  text-align: center;
  color: #434343;
  transition: color 300ms ease-out, background-color 300ms ease-out;
}
@media screen and (max-width: 767px) {
  .cart-btn {
    width: 6em;
    padding: 0.4em 0;
    font-size: 0.72em;
  }
}

.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-btn--01 {
  color: #fff;
  --cart-btn-color: #B9A438;
  --cart-btn-arrow: url("../img/arrow-white.svg");
}

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

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

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

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

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

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

/* 商品セクションのレイアウト--------------------------- */
/* 商品セクション --------------------------- */
.items {
  position: relative;
}

.items-block {
  position: relative;
}

.items-photo {
  overflow: hidden;
}

.items-photo a {
  display: block;
}

@media screen and (max-width: 767px) {
  .items-photo {
    width: 100% !important;
    overflow: hidden;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .items-block {
    width: 100% !important;
  }
}
.items {
  overflow: hidden;
}

/* items ttl --------------------------- */
.items-head {
  position: relative;
  padding: 2.34375vw 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 6.71875vw;
}
@media screen and (max-width: 767px) {
  .items-head {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    padding-top: 9.6vw;
    margin-bottom: 13.8666666667vw;
  }
}
.items-head__bg {
  width: 80%;
  height: 9.6875vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .items-head__bg {
    width: 100%;
    height: 60%;
  }
}
.items-head__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 11.328125vw;
}
@media screen and (max-width: 767px) {
  .items-head__wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 0;
  }
}

.items-num {
  position: relative;
}
.items-num .en {
  display: block;
  position: absolute;
  top: 20%;
  left: -6%;
  width: 9.6875vw;
}
@media screen and (max-width: 767px) {
  .items-num .en {
    width: 22.4vw;
  }
}
.items-num .num {
  display: block;
  position: relative;
  width: 7.5vw;
  animation-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .items-num .num {
    width: 17.0666666667vw;
  }
}

.items-num {
  position: relative;
}

.items-ttl {
  position: relative;
  margin-left: 4.0625vw;
  padding-left: 4.0625vw;
}
@media screen and (max-width: 767px) {
  .items-ttl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    -ms-flex-align: center;
        align-items: center;
    margin-left: 0;
    padding: 0;
    margin-top: 3.2vw;
    gap: 4.8vw;
  }
}
.items-ttl::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #9B7B55;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 767px) {
  .items-ttl::after {
    position: static;
    height: 3.7333333333vw;
  }
}
.items-ttl img {
  width: 19.84375vw;
}
@media screen and (max-width: 767px) {
  .items-ttl img {
    width: 43.7333333333vw;
  }
}
.items-ttl.active::after {
  animation: heightLine;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
}
.items-ttl picture {
  display: block;
}

@keyframes heightLine {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.items-intro {
  margin-left: 11.25vw;
  margin-top: 0.78125vw;
  font-size: max(1.40625vw, 14px);
  color: #452412;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .items-intro {
    margin-left: 0 !important;
    font-size: max(4.2666666667vw, 13px);
    line-height: 2.5;
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: 10.1333333333vw;
  }
}
.items-intro.active {
  animation-delay: 0.8s;
}

.items-desc {
  font-size: max(1.25vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.875;
  text-align: center;
  margin-bottom: 6.875vw;
  color: #4B4B4B;
}
@media screen and (max-width: 767px) {
  .items-desc {
    font-size: 3.8666666667vw;
    line-height: 2.06;
    letter-spacing: 0.08em;
    margin-bottom: 5.3333333333vw !important;
  }
  .items-desc.active {
    animation-duration: 0.5s;
  }
}

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

.items-block .items-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .items-block .items-wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.items-block.reverse .items-wrap {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .items-block.reverse .items-wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

/* 各 items  --------------------------- */
/* --- 01 --- */
.items-01 {
  margin-bottom: 18.75vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .items-01 {
    margin-bottom: 16vw;
  }
}
.items-01 .items-head__bg {
  background: linear-gradient(90deg, rgba(185, 164, 56, 0.4) 20%, rgba(185, 164, 56, 0) 100%);
}
@media screen and (max-width: 767px) {
  .items-01 .items-head__bg {
    background: linear-gradient(180deg, rgba(185, 164, 56, 0.4) 20%, rgba(185, 164, 56, 0) 100%);
  }
}
@media screen and (max-width: 992px) {
  .items-01 .items-intro {
    margin-left: 4.6875vw;
  }
}
.items-01 .block-01 {
  position: relative;
  margin-bottom: 11.71875vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 {
    margin-bottom: 14.6666666667vw;
  }
}
.items-01 .block-01 .items-photo {
  margin: 0 3.125vw;
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .items-photo {
    margin: 0;
  }
}
.items-01 .block-01 .items-txt {
  position: absolute;
  top: 22%;
  right: 8%;
}
@media screen and (max-width: 992px) {
  .items-01 .block-01 .items-txt {
    top: 10%;
    right: 3%;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-01 .block-01 .items-txt {
    position: static;
  }
}
.items-01 .block-01 .items-desc {
  color: #fff;
  margin-bottom: 10.46875vw;
}
@media screen and (max-width: 992px) {
  .items-01 .block-01 .items-desc {
    margin-bottom: 5.46875vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-01 .block-01 .items-desc {
    color: #555555;
  }
}
.items-01 .block-01 .cart-btm {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .cart-btm {
    color: #555555;
  }
}
.items-01 .block-01 .cart-btn span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .cart-btn span {
    color: #555555;
  }
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .cart-btn.cart-btn--01 span {
    color: #fff;
  }
}
.items-01 .block-01 .cart-btm--l .cart-yen::before,
.items-01 .block-01 .cart-btm--s .cart-yen::before {
  background-image: url("../img/size-l-white.svg");
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .cart-btm--l .cart-yen::before,
  .items-01 .block-01 .cart-btm--s .cart-yen::before {
    background-image: url("../img/size-l.svg");
  }
}
.items-01 .block-01 .cart-btm--s .cart-yen::before {
  background-image: url("../img/size-s-white.svg");
}
@media screen and (max-width: 767px) {
  .items-01 .block-01 .cart-btm--s .cart-yen::before {
    background-image: url("../img/size-s.svg");
  }
}
.items-01 .block-02 {
  width: max(75vw, 680px);
  margin: 0 auto 11.40625vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-01 .block-02 {
    margin-bottom: 13.3333333333vw;
  }
}
.items-01 .block-02::before {
  content: "";
  display: block;
  width: 39.0625vw;
  aspect-ratio: 1/1;
  background-color: #E4DBAA;
  border-radius: 50%;
  filter: blur(200px);
  position: absolute;
  top: -50%;
  left: -40%;
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  .items-01 .block-02::before {
    width: 98%;
    top: -65%;
    left: initial;
    right: -40%;
    filter: blur(70px);
    opacity: 0.3;
  }
}
.items-01 .block-02 .items-photo {
  width: 39.0625vw;
  position: relative;
  z-index: 1;
}
.items-01 .block-02 .items-txt {
  margin-top: 8.59375vw;
  margin-left: 3.125vw;
  position: relative;
  z-index: 1;
}
.items-01 .block-03 {
  width: max(75vw, 680px);
  margin: 0 auto;
  position: relative;
}
.items-01 .block-03::before {
  content: "";
  display: block;
  width: 39.0625vw;
  aspect-ratio: 1/1;
  background-color: #E4DBAA;
  border-radius: 50%;
  filter: blur(200px);
  position: absolute;
  top: -10%;
  right: -10%;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .items-01 .block-03::before {
    width: 98%;
    top: -65%;
    right: initial;
    left: -40%;
    filter: blur(70px);
    opacity: 0.3;
  }
}
.items-01 .block-03 .items-photo {
  width: 42.96875vw;
  position: relative;
  z-index: 2;
}
.items-01 .block-03 .items-txt {
  margin-top: 11.71875vw;
  margin-right: 1.5625vw;
  position: relative;
  z-index: 2;
}

/* --- 02 --- */
.items-02 {
  margin-bottom: 19.53125vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-02 {
    margin-bottom: 14.4vw;
  }
}
.items-02 .items-head {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  margin-bottom: 10.625vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-head {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 13.3333333333vw;
  }
}
.items-02 .items-head__bg {
  background: linear-gradient(270deg, rgba(105, 156, 190, 0.4) 20%, rgba(105, 156, 190, 0) 100%);
  right: 0;
  left: initial;
}
@media screen and (max-width: 767px) {
  .items-02 .items-head__bg {
    background: linear-gradient(180deg, rgba(105, 156, 190, 0.4) 20%, rgba(105, 156, 190, 0) 100%);
    height: 80%;
  }
}
.items-02 .items-head__wrap {
  padding-right: 10.9375vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-head__wrap {
    padding-right: 0;
  }
}
.items-02 .items-num .num {
  width: 8.4375vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-num .num {
    width: 18.1333333333vw;
  }
}
.items-02 .items-ttl {
  margin-left: 3.75vw;
  padding-left: 3.125vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-ttl {
    margin-left: 0;
    padding-left: 0;
  }
}
.items-02 .items-ttl::after {
  background-color: #6A8EBA;
}
.items-02 .items-ttl img {
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-ttl img {
    width: 55.4666666667vw;
  }
}
@media screen and (max-width: 992px) {
  .items-02 .items-intro {
    margin-left: 1.5625vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-02 .items-intro {
    margin-top: 11.2vw;
  }
}
.items-02 .block-01 {
  width: max(87.34375vw, 720px);
  margin: 0 auto;
  position: relative;
  margin-bottom: 9.375vw;
}
@media screen and (max-width: 767px) {
  .items-02 .block-01 {
    margin-bottom: 14.4vw;
  }
}
.items-02 .block-01 .section__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .items-02 .block-01 .section__inner {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.items-02 .block-01 .items-photo {
  width: 42.96875vw;
}
.items-02 .block-01 .items-txt {
  margin-left: 0.390625vw;
  margin-top: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .items-02 .block-01 .items-txt {
    margin-top: 0 !important;
  }
}
.items-02 .block-01 .items-txt .items-photo {
  width: 39.0625vw;
  margin-bottom: 6.25vw;
}
.items-02 .block-01 .items-txt .link-box {
  margin-right: 0;
}
.items-02 .block-02 {
  width: max(75vw, 680px);
  margin: 0 auto 7.65625vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-02 .block-02 {
    margin-bottom: 29.3333333333vw;
  }
}
.items-02 .block-02 .items-wrap {
  -ms-flex-pack: center;
      justify-content: center;
}
.items-02 .block-02 .items-photo {
  width: 39.0625vw;
  margin-right: 5vw;
}
.items-02 .block-02 .items-txt {
  margin-top: 14.53125vw;
  -ms-transform: translateX(-34%);
      transform: translateX(-34%);
}
@media screen and (max-width: 767px) {
  .items-02 .block-02 .items-txt {
    -ms-transform: none;
        transform: none;
  }
}
.items-02 .block-03 {
  width: max(83.90625vw, 740px);
  margin: 0 auto;
  position: relative;
}
.items-02 .block-03 .items-layer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-02 .block-03 .items-layer {
    margin-left: 2.6666666667vw;
    margin-right: 4vw;
  }
}
.items-02 .block-03 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #88A3BA;
  position: absolute;
  top: -0.78125vw;
  left: 0.78125vw;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .items-02 .block-03 .items-layer:before {
    top: -2.6666666667vw;
    left: 1.3333333333vw;
  }
}
.items-02 .block-03 .items-photo {
  width: 42.96875vw;
}
.items-02 .block-03 .items-txt {
  margin-top: 13.125vw;
  margin-left: 9.21875vw;
}
/* --- 03 --- */
.items-03 {
  padding-bottom: 18.75vw;
  position: relative;
}
.items-03 .items-bg {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(160, 120, 82, 0.2) 0, rgba(160, 120, 82, 0) 100%);
  position: absolute;
  top: 9.6875vw;
  left: 0;
}
@media screen and (max-width: 767px) {
  .items-03 .items-bg {
    background: linear-gradient(0, rgba(166, 119, 75, 0.3) 0%, rgba(166, 119, 75, 0) 100%);
    top: initial;
    height: 80%;
    bottom: 0;
  }
}
.items-03 .items-bg .bg-down.active {
  animation-delay: 0.6s;
  animation-duration: 7s;
}
@media screen and (max-width: 767px) {
  .items-03 .items-bg .bg-down.active {
    animation-delay: 0s;
    animation-duration: 4s;
  }
}
.items-03 .items-head {
  display: block;
  padding-top: 1.875vw;
  margin-bottom: 7.8125vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-head {
    padding-top: 8vw;
    margin-bottom: 24vw;
  }
}
.items-03 .items-head__bg {
  width: 100%;
  background: linear-gradient(90deg, rgba(160, 120, 82, 0.4) 20%, rgba(160, 120, 82, 0) 100%);
}
@media screen and (max-width: 767px) {
  .items-03 .items-head__bg {
    background: linear-gradient(180deg, rgba(160, 120, 82, 0.4) 20%, rgba(160, 120, 82, 0) 100%);
    height: 70%;
  }
}
.items-03 .items-head__wrap {
  padding-left: 17.1875vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-head__wrap {
    padding-left: 0;
  }
}
.items-03 .items-num .num {
  width: 8.90625vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-num .num {
    width: 18.6666666667vw;
  }
}
.items-03 .items-ttl {
  margin-left: 4.0625vw;
  padding-left: 2.65625vw;
  padding-top: 0.625vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-ttl {
    margin-left: 0;
    padding-left: 0;
  }
}
.items-03 .items-ttl::after {
  background-color: #A07852;
}
.items-03 .items-ttl img {
  width: 44.0625vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-ttl img {
    width: 51.7333333333vw;
  }
}
.items-03 .items-intro {
  text-align: center;
  margin-top: 6.25vw;
  padding-right: 10.46875vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-intro {
    padding-right: 0;
    margin-top: 8vw;
  }
}
.items-03 .block-01 {
  width: max(80vw, 680px);
  margin: 0 auto 4.84375vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-03 .block-01 {
    margin-bottom: 14.6666666667vw;
  }
}
.items-03 .block-01::before {
  content: "";
  display: block;
  width: 39.0625vw;
  aspect-ratio: 1/1;
  background-color: #E4DBAA;
  border-radius: 50%;
  filter: blur(200px);
  position: absolute;
  top: -50%;
  left: -40%;
  opacity: 0.5;
}
.items-03 .block-01 .items-photo {
  width: 39.0625vw;
}
.items-03 .block-01 .items-txt {
  margin-top: 6.5625vw;
  margin-left: 7.03125vw;
}
.items-03 .block-02 {
  width: max(80vw, 720px);
  margin: 0 auto;
  position: relative;
}
.items-03 .block-02 .items-photo {
  width: 42.96875vw;
  margin-left: 1.875vw;
}
.items-03 .block-02 .items-txt {
  margin-top: 14.0625vw;
}

@media screen and (max-width: 767px) {
  .bg-sp-01 {
    height: 21.3333333333vw;
    background: linear-gradient(180deg, rgba(166, 119, 75, 0.3) 0%, rgba(152, 163, 110, 0.4) 100%);
  }
  .bg-sp-02 {
    height: 21.3333333333vw;
    background: linear-gradient(180deg, rgba(152, 163, 110, 0.3) 0%, rgba(150, 150, 190, 0.35) 100%);
    position: relative;
  }
}
/* --- 04 --- */
.items-04 {
  padding-bottom: 15.625vw;
  margin-bottom: 19.53125vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-04 {
    margin-bottom: 0;
    padding-bottom: 13.3333333333vw;
  }
}
.items-04 .items-wrap {
  position: relative;
  z-index: 1;
}
.items-04::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 9.6875vw);
  background: linear-gradient(0, rgba(155, 163, 116, 0.2) 20%, rgba(155, 163, 116, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .items-04::before {
    background: linear-gradient(0, rgba(152, 163, 110, 0.3) 0%, rgba(152, 163, 110, 0) 100%);
    height: 90%;
  }
}
.items-04 .items-head {
  display: block;
  padding-top: 2.1875vw;
  margin-bottom: 17.1875vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-head {
    padding-top: 11.7333333333vw;
    margin-bottom: 13.3333333333vw;
  }
}
.items-04 .items-head__bg {
  width: 100%;
  height: 16.25vw;
  background: linear-gradient(90deg, rgba(155, 163, 116, 0.4) 60%, rgba(155, 163, 116, 0) 100%);
}
@media screen and (max-width: 767px) {
  .items-04 .items-head__bg {
    background: linear-gradient(180deg, rgba(155, 163, 116, 0.4) 20%, rgba(155, 163, 116, 0) 100%);
    height: 80%;
  }
}
.items-04 .items-head__wrap {
  padding-left: 12.03125vw;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .items-04 .items-head__wrap {
    padding-left: 0;
    -ms-flex-align: center;
        align-items: center;
  }
}
.items-04 .items-num .num {
  width: 8.90625vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-num .num {
    width: 19.7333333333vw;
  }
}
.items-04 .items-ttl {
  margin-left: 2.65625vw;
  padding-left: 3.75vw;
  padding-top: 0.625vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-ttl {
    padding-left: 0;
    margin-left: 0;
  }
}
.items-04 .items-ttl::after {
  background-color: #9B7B55;
}
.items-04 .items-ttl img {
  width: 52.34375vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-ttl img {
    width: 92.8vw;
  }
}
.items-04 .items-intro {
  text-align: left;
  margin-top: 6.25vw;
  padding-right: 10.46875vw;
  position: absolute;
  top: 32%;
  right: 0.6%;
}
@media screen and (max-width: 992px) {
  .items-04 .items-intro {
    padding-right: 4.6875vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-04 .items-intro {
    position: static;
    text-align: center;
    padding-right: 0;
    margin-top: 10.6666666667vw;
  }
}
.items-04 .items-desc {
  font-size: max(1.40625vw, 15px);
  letter-spacing: 0.05em;
  line-height: 2.55;
}
@media screen and (max-width: 767px) {
  .items-04 .items-desc {
    font-size: 3.8666666667vw;
    letter-spacing: 0.08em;
    line-height: 2;
  }
}
.items-04 .block-01 {
  width: max(75.78125vw, 720px);
  margin: 0 auto 10.9375vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-04 .block-01 {
    margin-bottom: 13.3333333333vw;
  }
}
.items-04 .block-01 .items-photo {
  width: 42.96875vw;
}
.items-04 .block-01 .items-txt {
  margin-top: 10.78125vw;
}
@media screen and (max-width: 767px) {
  .items-04 .block-01 .link-box {
    margin-top: 10.6666666667vw;
  }
}
.items-04 .block-02 {
  width: max(75vw, 680px);
  margin: 0 auto;
  margin-bottom: 10.78125vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-04 .block-02 {
    margin-bottom: 13.3333333333vw;
  }
}
.items-04 .block-02 .items-wrap {
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 767px) {
  .items-04 .block-02 .items-desc {
    line-height: 2.1;
    margin-bottom: 9.6vw !important;
  }
}
.items-04 .block-02 .items-layer {
  position: relative;
  -ms-transform: translateX(-2.1875vw);
      transform: translateX(-2.1875vw);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .items-04 .block-02 .items-layer {
    width: 100%;
    -ms-transform: none;
        transform: none;
  }
}
.items-04 .block-02 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  position: absolute;
  top: 0.78125vw;
  left: 0.78125vw;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .items-04 .block-02 .items-layer:before {
    display: none;
  }
}
.items-04 .block-02 .items-photo {
  width: 39.0625vw;
}
.items-04 .block-02 .items-txt {
  margin-top: 10.15625vw;
  -ms-transform: translateX(1.09375vw);
      transform: translateX(1.09375vw);
}
@media screen and (max-width: 767px) {
  .items-04 .block-02 .items-txt {
    -ms-transform: none;
        transform: none;
  }
}
.items-04 .block-03 {
  width: max(75.78125vw, 680px);
  margin: 0 auto 12.5vw;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .items-04 .block-03 {
    margin-bottom: 14.4vw;
  }
}
.items-04 .block-03 .items-layer {
  position: relative;
}
.items-04 .block-03 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 1.171875vw;
  left: -1.5625vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .items-04 .block-03 .items-layer:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .items-04 .block-03 .items-desc {
    margin-bottom: 9.6vw !important;
  }
}
.items-04 .block-03 .items-photo {
  width: 39.0625vw;
  position: relative;
  z-index: 2;
}
.items-04 .block-03 .items-txt {
  margin-top: 9.84375vw;
  margin-right: 6.875vw;
}
.items-04 .block-04 {
  width: max(80vw, 720px);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.items-04 .block-04 .items-wrap {
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 767px) {
  .items-04 .block-04 .items-desc {
    line-height: 2.1;
    margin-bottom: 9.6vw !important;
  }
}
.items-04 .block-04 .items-photo {
  width: 42.96875vw;
  -ms-transform: translateX(-1.5625vw);
      transform: translateX(-1.5625vw);
}
@media screen and (max-width: 767px) {
  .items-04 .block-04 .items-photo {
    -ms-transform: none;
        transform: none;
  }
}
.items-04 .block-04 .items-txt {
  margin-top: 11.5625vw;
  -ms-transform: translateX(2.34375vw);
      transform: translateX(2.34375vw);
}
@media screen and (max-width: 767px) {
  .items-04 .block-04 .items-txt {
    -ms-transform: none;
        transform: none;
  }
}

/* --- 05--- */
.items-05 {
  margin-bottom: 19.53125vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-05 {
    margin-bottom: 26.6666666667vw;
  }
}
.items-05 .items-head {
  padding-top: 2.1875vw;
  margin-bottom: 8.90625vw;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .items-05 .items-head {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-top: 18.6666666667vw;
    margin-bottom: 13.8666666667vw;
  }
}
.items-05 .items-head__bg {
  height: 16.25vw;
  background: linear-gradient(270deg, rgba(150, 150, 190, 0.4) 20%, rgba(150, 150, 190, 0) 100%);
  right: 0;
  left: initial;
}
@media screen and (max-width: 767px) {
  .items-05 .items-head__bg {
    background: linear-gradient(180deg, rgba(150, 150, 190, 0.35) 20%, rgba(150, 150, 190, 0) 100%);
    height: 96%;
  }
}
.items-05 .items-head__wrap {
  padding: 0;
  padding-right: 10.15625vw;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .items-05 .items-head__wrap {
    padding-right: 0;
    -ms-flex-align: center;
        align-items: center;
  }
}
.items-05 .items-num {
  position: relative;
  z-index: 3;
}
.items-05 .items-num .num {
  width: 8.90625vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-num .num {
    width: 19.7333333333vw;
  }
}
.items-05 .items-ttl {
  margin-left: 2.65625vw;
  padding-left: 3.75vw;
  padding-top: 0.625vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-ttl {
    margin-left: 0;
    padding-left: 0;
  }
}
.items-05 .items-ttl::after {
  background-color: #A09FC7;
  height: 50%;
}
@media screen and (max-width: 767px) {
  .items-05 .items-ttl::after {
    height: 3.7333333333vw;
  }
}
.items-05 .items-ttl img {
  width: 31.25vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-ttl img {
    width: 56vw;
  }
}
.items-05 .items-intro {
  text-align: left;
  margin-top: 1.09375vw;
  margin-left: 0;
  margin-right: 6.875vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-intro {
    text-align: center;
    margin-right: 0;
    margin-top: 11.7333333333vw;
  }
}
.items-05 .block-01 {
  width: max(89.84375vw, 720px);
  margin: 0 auto;
  position: relative;
  margin-bottom: 13.28125vw;
}
.items-05 .block-01 .items-wrap {
  -ms-flex-direction: column;
      flex-direction: column;
}
.items-05 .block-01 .section__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.items-05 .block-01 .items-desc {
  position: absolute;
  top: 16.6%;
  left: 32%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .items-05 .block-01 .items-desc {
    position: static;
  }
}
.items-05 .block-01 .items-layer {
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .items-05 .block-01 .items-layer {
    width: 100%;
    overflow: hidden;
    margin-bottom: 5.3333333333vw;
  }
}
.items-05 .block-01 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(150, 150, 190, 0.4) 20%, rgba(150, 150, 190, 0) 100%);
  position: absolute;
  top: 1.171875vw;
  left: 1.5625vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .items-05 .block-01 .items-layer:before {
    display: none;
  }
}
.items-05 .block-01 .items-photo {
  width: 39.0625vw;
  position: relative;
  z-index: 2;
}
.items-05 .block-01 .items-txt {
  margin-left: 0.390625vw;
  margin-top: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .items-05 .block-01 .items-txt {
    margin-top: 0 !important;
  }
}
.items-05 .block-01 .items-txt .items-photo {
  width: 42.96875vw;
  margin-bottom: 6.25vw;
  position: absolute;
  top: 26.8%;
  left: -0.1%;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .items-05 .block-01 .items-txt .items-photo {
    width: 37.5vw;
  }
}
.items-05 .block-01 .items-txt .link-box {
  margin-top: 3.75vw;
  margin-right: 19.375vw;
}
@media screen and (max-width: 767px) {
  .items-05 .block-01 .items-txt .link-box {
    margin-right: auto;
    margin-top: 1.6vw;
  }
}
.items-05 .block-02 {
  width: max(79.6875vw, 720px);
  margin: 0 auto;
  margin-bottom: 6.25vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-05 .block-02 {
    margin-bottom: 13.3333333333vw;
  }
}
.items-05 .block-02 .items-photo {
  width: 39.0625vw;
}
.items-05 .block-02 .items-txt {
  margin-top: 8.59375vw;
  margin-left: 7.65625vw;
}
.items-05 .block-03 {
  width: max(80vw, 720px);
  margin: 0 auto 6.25vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-05 .block-03 {
    margin-bottom: 16vw;
  }
}
.items-05 .block-03 .items-layer {
  position: relative;
  margin-left: 2.5vw;
}
@media screen and (max-width: 767px) {
  .items-05 .block-03 .items-layer {
    margin-left: 0;
  }
}
.items-05 .block-03 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(150, 150, 190, 0.4) 20%, rgba(150, 150, 190, 0) 100%);
  position: absolute;
  top: 1.171875vw;
  left: -1.5625vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .items-05 .block-03 .items-layer:before {
    display: none;
  }
}
.items-05 .block-03 .items-photo {
  width: 42.96875vw;
  position: relative;
  z-index: 2;
}
.items-05 .block-03 .items-txt {
  margin-top: 11.25vw;
}
.items-05 .block-03 .items-txt .link-box {
  margin-right: 2.1875vw;
}
@media screen and (max-width: 767px) {
  .items-05 .block-03 .items-txt .link-box {
    margin-right: auto;
  }
}
.items-05 .block-04 {
  width: max(87.8125vw, 740px);
  margin: 0 auto;
  position: relative;
}
.items-05 .block-04 .items-wrap {
  -ms-flex-align: start;
      align-items: flex-start;
}
.items-05 .block-04 .items-layer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-05 .block-04 .items-layer {
    margin-left: 1.3333333333vw;
    margin-right: 5.3333333333vw;
  }
}
.items-05 .block-04 .items-layer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #A09FC7;
  position: absolute;
  top: -0.78125vw;
  left: 0.78125vw;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .items-05 .block-04 .items-layer:before {
    top: -2.6666666667vw;
    left: 2.6666666667vw;
  }
}
.items-05 .block-04 .items-photo {
  width: 42.96875vw;
}
.items-05 .block-04 .items-txt {
  margin-top: 10.9375vw;
  margin-left: 11.25vw;
}
@media screen and (max-width: 992px) {
  .items-05 .block-04 .items-txt {
    margin-left: 7.03125vw;
  }
}
.items-05 .block-04 .items-desc {
  margin-bottom: 3.75vw;
}

/* --- other --- */
.items-other {
  background: linear-gradient(180deg, rgba(204, 167, 124, 0.4) 0%, rgba(204, 167, 124, 0) 100%);
  padding: 8.4375vw 0 4.6875vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .items-other {
    padding: 16vw 0;
  }
}
.items-other__inner {
  width: max(73.4375vw, 680px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items-other__inner {
    width: 100%;
  }
}
.items-other__head {
  position: relative;
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .items-other__head {
    margin-bottom: 8vw;
  }
}
.items-other__head::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #D38231;
  -ms-transform: translateY(-1px);
      transform: translateY(-1px);
}
.items-other__head.active::after {
  width: 100vw;
}
.items-other__ttl {
  position: relative;
  overflow: hidden;
}
.items-other__ttl img {
  width: 35.46875vw;
}
@media screen and (max-width: 767px) {
  .items-other__ttl img {
    width: 80%;
    margin: 0 auto;
  }
}
.items-other__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625vw;
}
.items-other__list.other-list-01 {
  margin-bottom: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .items-other__list.other-list-01 {
    margin-bottom: 9.0666666667vw;
  }
}
.items-other__list.other-list-02 .link-box .cart-btm {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  .items-other__list.other-list-02 .link-box .cart-btm {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.items-other__list.other-list-02 .link-box .wrap {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.items-other__list.other-list-02 .link-box .cart-title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .items-other__list .list-item {
    width: 41.0666666667vw;
    margin-right: 2.6666666667vw;
  }
}
.items-other__list .list-item {
  opacity: 0;
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition: opacity 1s ease;
}
.items-other__list .slick-list {
  overflow: initial;
}
.items-other__wrapper.active .other-list-01 .list-item {
  opacity: 1;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.items-other__wrapper.active .other-list-01 .list-item:nth-child(1) {
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .items-other__wrapper.active .other-list-01 .list-item:nth-child(1) {
    transition-delay: 0;
  }
}
.items-other__wrapper.active .other-list-01 .list-item:nth-child(2) {
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .items-other__wrapper.active .other-list-01 .list-item:nth-child(2) {
    transition-delay: 0;
  }
}
.items-other__wrapper.active .other-list-01 .list-item:nth-child(3) {
  transition-delay: 0.9s;
}
@media screen and (max-width: 767px) {
  .items-other__wrapper.active .other-list-01 .list-item:nth-child(3) {
    transition-delay: 0;
  }
}
.items-other__wrapper.active .other-list-01 .list-item:nth-child(4) {
  transition-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .items-other__wrapper.active .other-list-01 .list-item:nth-child(4) {
    transition-delay: 0;
  }
}
.items-other__wrapper.active .other-list-02 .list-item {
  opacity: 1;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .items-other__wrapper.active .other-list-02 .list-item {
    transition-delay: 0 !important;
  }
}
.items-other__wrapper.active .other-list-02 .list-item:nth-child(4) {
  transition-delay: 1.5s;
}
.items-other__wrapper.active .other-list-02 .list-item:nth-child(3) {
  transition-delay: 1.8s;
}
.items-other__wrapper.active .other-list-02 .list-item:nth-child(2) {
  transition-delay: 2.1s;
}
.items-other__wrapper.active .other-list-02 .list-item:nth-child(1) {
  transition-delay: 2.4s;
}
.items-other__img {
  width: 100%;
}
.items-other .link-box {
  width: 100%;
  min-width: initial;
  margin-top: 0.46875vw;
}
@media screen and (max-width: 992px) {
  .items-other .link-box .cart-btm {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .items-other .link-box .cart-title {
    width: 100%;
    text-align: left;
  }
  .items-other .link-box .cart-yen {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
  .items-other .link-box .cart-btn {
    margin-left: auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-other .link-box .cart-yen {
    font-size: 0.9em;
  }
  .items-other .link-box .cart-btn {
    padding: 0.25em 0;
    width: 13.3333333333vw;
    font-size: 0.68em;
  }
}
.items-other .link-box .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 992px) {
  .items-other .link-box .wrap {
    width: 100%;
  }
}
.items-other .link-box .link-box-main::after {
  right: 0 !important;
  opacity: 1 !important;
}
.items-other .link-box .cart-btm {
  opacity: 1 !important;
  left: 0 !important;
  top: 0 !important;
}

/* --- special --- */
.items-special {
  overflow: hidden;
  position: relative;
  padding: 1.5625vw 0 5.625vw;
  margin-bottom: 8.59375vw;
}
@media screen and (max-width: 767px) {
  .items-special {
    margin-bottom: 0;
  }
}
.items-special::before {
  content: "";
  display: block;
  width: 1px;
  height: 9.375vw;
  margin: 0 auto;
  background-color: #D38231;
  clip-path: inset(0 0 100% 0);
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .items-special::before {
    height: 16vw;
  }
}
.items-special.active::before {
  clip-path: inset(0);
}
.items-special:after {
  content: "";
  display: block;
  width: 100%;
  height: 46%;
  background: rgba(204, 167, 124, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}
.items-special__block {
  width: max(48.75vw, 600px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 6.875vw;
}
@media screen and (max-width: 767px) {
  .items-special__block {
    width: 94%;
    margin-top: 9.0666666667vw;
  }
}
.items-special__ttl {
  position: relative;
  text-align: center;
  -ms-transform: translateY(1px);
      transform: translateY(1px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .items-special__ttl {
    -ms-transform: none;
        transform: none;
  }
}
.items-special__ttl img {
  width: 35.46875vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items-special__ttl img {
    width: 86%;
  }
}
.items-special__layer {
  width: 100%;
  padding: 0.78125vw;
  border: 1px solid #D38231;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items-special__layer {
    padding: 2.1333333333vw;
  }
}
.items-special__img {
  width: 100%;
}
.items-special .link-box {
  width: 100%;
  min-width: initial;
  margin-top: 1.5625vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 3.90625vw;
  padding: 0 4.375vw;
}
@media screen and (max-width: 767px) {
  .items-special .link-box {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0;
    padding: 0 8vw;
    margin-top: 5.3333333333vw;
  }
}

/* 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: 7.4% 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: #434343;
  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: 100%;
  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: 4.2666666667vw;
  }
  /* ページトップボタン--------------------------- */
  #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;
    border-radius: 0;
  }
  #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: 100%;
    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;
  }
}