@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: 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-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: 4s;
  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;
    clip-path: inset(0 100% 0 0);
  }
  40% {
    opacity: 1;
    clip-path: inset(0);
  }
  100% {
    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.53, 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;
  }
}
.read-down02.active {
  opacity: 1;
  animation-name: read-down02;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

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

@keyframes mv01 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade01-2 {
  animation-name: mv02-1;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

.fade01-4 {
  animation-name: mv01;
  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: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mv02-1 {
  from {
    opacity: 0;
    transform: translateY(12%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv02-2 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fade01-5 {
  animation-name: mv03-1;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 4.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path;
  opacity: 0;
}

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

.fadein-left {
  opacity: 0;
}

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

@keyframes fadein-left {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.fadein-up2 {
  opacity: 0;
}

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

@keyframes fadein-up2 {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.fadein-down {
  opacity: 0;
}

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

@keyframes fadein-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.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 {
  animation-name: mv02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

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

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

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

@keyframes mv03-1 {
  from {
    clip-path: inset(0 100% 0% 0%);
    opacity: 1;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}
/* ---------------------------------------------
  component
  --------------------------------------------- */
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  color: #403131;
  font-family: "Zen Old Mincho", serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

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

ul {
  padding: 0;
}

li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

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

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

.slide-box {
  overflow: hidden;
}

/* ヘッダー--------------------------- */
.header {
  position: relative;
}
.header-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.header-img {
  width: 33%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 450/768;
}
@media screen and (max-width: 767px) {
  .header-img {
    width: 100%;
    aspect-ratio: initial;
  }
}
.header-img.right {
  -ms-flex-order: 3;
      order: 3;
}
.header .nofade {
  opacity: 1 !important;
}
.header-text {
  position: relative;
  width: 32%;
  padding-top: 17.1303074671vw;
}
@media screen and (max-width: 767px) {
  .header-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 5.3333333333vw;
    padding-top: 106.6666666667vw;
  }
}
.header .mv-ttl-01 {
  position: absolute;
  top: 18%;
  left: -9.6%;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl-01 {
    width: 46%;
    top: 60%;
    left: 3%;
    -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
  }
}
.header .mv-ttl-02 {
  width: 77%;
  margin: 0 auto 2.635431918vw;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl-02 {
    width: 60.6%;
    margin-bottom: 0;
    margin-top: auto;
    position: absolute;
    top: 65.8%;
    right: 4.6%;
  }
}
.header .mv-ttl-03 {
  width: 85%;
  margin: 0 auto 6.8814055637vw;
  padding-right: 0.878477306vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl-03 {
    margin: 0;
    width: 76%;
    position: absolute;
    top: 77%;
    left: 12%;
  }
}
.header .mv-ttl-03 .text {
  display: block;
  position: relative;
  z-index: 1;
}
.header .mv-ttl-03 .border {
  width: 104%;
  display: block;
  position: absolute;
  bottom: -18%;
  left: -2%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .header .mv-ttl-03 .border {
    width: 114%;
    left: -6%;
  }
}
.header .mv-text-en {
  width: 60%;
  margin: 0 auto 9.8828696925vw;
}
@media screen and (max-width: 767px) {
  .header .mv-text-en {
    margin: 0;
    width: 45.6%;
    position: absolute;
    top: 93%;
    left: 30%;
  }
}
.header .txt-logo {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header .txt-logo {
    position: absolute;
    top: 3%;
    left: 3%;
  }
}
.header .txt-logo img {
  width: max(100px, 10.980966325vw);
  margin: 0 auto;
}

/* リード--------------------------- */
.lead {
  margin: 0;
  padding-top: min(8.0527086384vw, 140px);
  padding-bottom: min(7.6134699854vw, 140px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-top: min(14.4vw, 100px);
    padding-bottom: min(24vw, 90px);
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
.lead .text {
  font-size: 1.2445095168vw;
  font-size: max(1.317715959vw, 15px);
  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;
  }
}

/* items nav  --------------------------- */
.p-links {
  width: 100%;
  z-index: 99;
  z-index: -1;
  overflow: hidden;
  margin-bottom: 11.2737920937vw;
}
@media screen and (max-width: 767px) {
  .p-links {
    margin-bottom: 21.3333333333vw;
  }
}
.p-links.is-active {
  z-index: 99;
}
.p-links .slider {
  display: none;
}
.p-links .slider.slick-initialized {
  display: block;
}
.p-links .slider .slick-list {
  overflow: initial;
}
.p-links .slider li {
  width: min(13.17715959vw, 180px);
  margin-right: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-links .slider li {
    width: 160px;
  }
}
.p-links .slider li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -8px;
  right: -8px;
}
.p-links .slider a:hover .img::before {
  opacity: 1;
}
.p-links .slider a:hover .num {
  opacity: 1;
}
.p-links .slider .img {
  position: relative;
}
.p-links .slider .img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.p-links .slider .img img {
  width: 100%;
  display: block;
}

/* items head --------------------------- */
.items-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  gap: 2.7818448023vw;
  margin-bottom: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .items-head {
    width: 100%;
    position: relative;
    top: initial;
    left: initial;
    gap: 6.4vw;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 11.7333333333vw;
  }
}
.items-head__num {
  transition: 0.6s ease;
  position: relative;
  width: 7.5402635432vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-head__num {
    width: 24vw;
  }
}
.items-head__num .text01 {
  display: block;
  margin-left: auto;
}
.items-head__num .text01.active {
  animation-delay: 0.2s;
}
.items-head__num .text02 {
  position: absolute;
  top: 14%;
  left: 0;
  width: 4.7584187408vw;
}
@media screen and (max-width: 767px) {
  .items-head__num .text02 {
    width: 15vw;
  }
}
.items-head__ttl {
  text-align: center;
  margin-bottom: 2.9282576867vw;
  font-size: 2.7086383602vw;
  letter-spacing: -0.01em;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .items-head__ttl {
    font-size: 7.4666666667vw;
  }
}
.items-head__ttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.0248901903vw;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease;
  transition-delay: 0.8s;
  will-change: clip-path;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  .items-head__ttl::before {
    bottom: -3.7333333333vw;
  }
}
.items-head__ttl span {
  display: inline-block;
  opacity: 0;
  -ms-transform: translateY(10%);
      transform: translateY(10%);
  transition: 0.5s ease;
  transition-delay: 0.5s;
}
.items-head.active .items-head__ttl span {
  opacity: 1;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.items-head.active .items-head__ttl::before {
  clip-path: inset(0);
}

.items-desc {
  font-size: max(1.1713030747vw, 13px);
  font-weight: 400;
  line-height: 2;
  margin-bottom: 4.0263543192vw;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .items-desc {
    font-size: 4.2666666667vw;
    line-height: 1.75;
    margin-bottom: 9.6vw;
  }
  .items-desc.active {
    animation-duration: 0.5s;
  }
}

/* 商品セクション --------------------------- */
.items-inner {
  position: relative;
  width: max(83.4553440703vw, 700px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items-inner {
    width: 100%;
  }
}

.items-photo {
  overflow: hidden;
  position: relative;
}
.items-photo__text {
  position: absolute;
  top: 3.8%;
  left: 5.4%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 767px) {
  .items-photo__text {
    top: 3.2%;
    left: 4.6%;
  }
}
.items-photo__text::before {
  content: "";
  display: block;
  width: 1.0980966325vw;
  height: 0.7320644217vw;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #D4A173;
  margin-bottom: 1.1713030747vw;
}
@media screen and (max-width: 767px) {
  .items-photo__text::before {
    width: 3.7333333333vw;
    height: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.items-photo__text .en {
  width: 1.0248901903vw;
}
@media screen and (max-width: 767px) {
  .items-photo__text .en {
    width: 2.9333333333vw;
  }
}
.items-photo__text .text {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 1.4641288433vw;
  margin-top: 1.0248901903vw;
  padding-top: 0.7320644217vw;
  display: block;
  line-height: 0.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .items-photo__text .text {
    font-size: 4.2666666667vw;
    letter-spacing: 0.1em;
    margin-top: 3.2vw;
    padding-top: 2.6666666667vw;
  }
}

.items-photo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .items-photo a {
    width: 100%;
  }
}

.items-block {
  display: -ms-flexbox;
  display: flex;
  gap: 5.124450951683748vw;
}
@media screen and (max-width: 767px) {
  .items-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

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

.items-style {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5.270863836vw;
  padding-left: 0.2928257687vw;
}
@media screen and (max-width: 767px) {
  .items-style {
    margin-bottom: 12.8vw;
  }
}
.items-style .text01 {
  display: inline-block;
}
.items-style .text01.on {
  width: 7vw;
}
@media screen and (max-width: 767px) {
  .items-style .text01.on {
    width: 23.6vw;
  }
}
.items-style .text01.off {
  width: 9.3vw;
}
@media screen and (max-width: 767px) {
  .items-style .text01.off {
    width: 29vw;
  }
  .items-01 .items-style-01 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-02 .items-style-01 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-03 .items-style-01 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-04 .items-style-01 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-05 .items-style-01 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-06 .items-style-02 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-07 .items-style-02 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
  .items-08 .items-style-02 .items-style .text02 {
    top: 32%;
    width: 24vw;
    left: 78%;
  }
}


.items-style .text02 {
  width: 7.3206442167vw;
  position: absolute;
  top: 36%;
  left: 76%;
}
@media screen and (max-width: 767px) {
  .items-style .text02 {
    top: 32%;
    width: 28vw;
    left: 70%;
  }
}

.items-kimawashi {
  font-size: 2.049780380673499vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.0248901903vw;
}
@media screen and (max-width: 767px) {
  .items-kimawashi {
    letter-spacing: 0.16em;
    font-size: 6.93333vw;
    margin-bottom: 3.7333333333vw;
  }
}
.items-kimawashi::after {
  content: "";
  display: block;
  width: 91%;
  aspect-ratio: 104/18;
  background: url("../img/off-border.svg") no-repeat top center/100%;
  margin-top: 0.2196193265vw;
}

.items-style-01 {
  margin-bottom: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-style-01 {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 24vw;
  }
}
.items-style-01 .items-photo {
  width: 38.0673499268vw;
}
@media screen and (max-width: 992px) {
  .items-style-01 .items-photo {
    margin-left: 2.9282576867vw;
  }
}
@media screen and (max-width: 992px) and (max-width: 767px) {
  .items-style-01 .items-photo {
    width: 100%;
    margin-left: 0;
  }
}
.items-style-01 .items-block {
  justify-content: space-between;
  gap: 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-style-01 .items-block {
    gap: 13.3333333333vw;
  }
}
.items-style-01 .items-text {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-style-01 .items-text {
    width: 100%;
    padding: 0 5.3333333333vw;
    margin-top: 0 !important;
  }
}

.items-style-02 {
  position: relative;
  padding: 6.0029282577vw 3.6603221083vw 6.0029282577vw 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-style-02 {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 5.3333333333vw 5.3333333333vw 16vw;
  }
}
.items-style-02::before {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  border-left: 1px solid #D4A173;
  position: absolute;
  top: -60px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  z-index: 2;
  transition: 0.5s ease;
}
.items-style-02 .items-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #FBF5F1;
}
@media screen and (max-width: 767px) {
  .items-style-02 .items-bg {
    height: 100%;
  }
}
.items-style-02 .items-bg.on {
  background-color: #F5F8FF;
}
.items-style-02 .items-block {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .items-style-02 .items-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.items-style-02 .items-style {
  padding-left: 0;
  margin-bottom: 3.8067349927vw;
}
@media screen and (max-width: 767px) {
  .items-style-02 .items-style {
    margin-bottom: 10.6666666667vw;
  }
}

.items-style-02 .items-photo {
  width: 35.1390922401vw;
}
@media screen and (max-width: 767px) {
  .items-style-02 .items-photo {
    width: 100%;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .items-style-02 .items-block {
    gap: 8vw;
  }
}
.items-style-02 .items-text {
  margin-top: 5.1244509517vw;
}
.items-style-02 .link-box {
  width: 33.6749633968vw;
}
@media screen and (max-width: 767px) {
  .items-style-02 .link-box {
    width: 100%;
  }
}
.items-style-02.on::before {
  border-color: #7694CC;
}
.items-style-02.active:before {
  height: 120px;
}

.reverse .items-style-01 .items-block {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .reverse .items-style-01 .items-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.reverse .items-style-02 {
  padding: 5.8565153734vw 5.8565153734vw 5.8565153734vw 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .reverse .items-style-02 {
    padding: 5.3333333333vw 5.3333333333vw 16vw;
  }
}
.reverse .items-style-02 .items-block {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .reverse .items-style-02 .items-block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

/* 各アイテム --------------------------- */
.items-01 {
  margin-bottom: 10.541727672vw;
}
@media screen and (max-width: 767px) {
  .items-01 {
    margin-bottom: 21.3333333333vw;
  }
}
.items-01 .items-head__ttl::before {
  width: 88%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-01.svg);
  left: 52%;
}
.items-01 .items-head__num .text01 {
  width: 3.953147877vw;
}
@media screen and (max-width: 767px) {
  .items-01 .items-head__num .text01 {
    width: 11vw;
  }
}
@media screen and (max-width: 767px) {
  .items-01 .items-style-01 {
    margin-bottom: 29.3333333333vw;
  }
}

.items-02 {
  margin-bottom: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-02 {
    margin-bottom: 26.6666666667vw;
  }
}
.items-02 .items-head__ttl::before {
  width: 76%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-01.svg);
}
.items-02 .items-head__num .text01 {
  width: 4.9780380673vw;
}
@media screen and (max-width: 767px) {
  .items-02 .items-head__num .text01 {
    width: 13.8vw;
  }
}
.items-02 .items-style-02 .items-text {
  margin-top: 0.2928257687vw;
}

.items-03 {
  margin-bottom: 10.541727672vw;
}
@media screen and (max-width: 767px) {
  .items-03 {
    margin-bottom: 19.7333333333vw;
  }
}
.items-03 .items-head {
  padding-left: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-head {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .items-03 .items-head__ttl {
    letter-spacing: -0.05em;
  }
}
.items-03 .items-head__ttl::before {
  width: 72%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-01.svg);
}
.items-03 .items-head__num .text01 {
  width: 4.7584187408vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-head__num .text01 {
    width: 14vw;
  }
}
@media screen and (max-width: 767px) {
  .items-03 .items-style-01 .items-desc {
    letter-spacing: -0.01em;
  }
}
.items-03 .items-style-02 .items-block {
  gap: 6.588579795vw;
}
@media screen and (max-width: 767px) {
  .items-03 .items-style-02 .items-block {
    gap: 13.3333333333vw;
  }
}

.items-04 {
  margin-bottom: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-04 {
    margin-bottom: 18.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .items-04 .items-head {
    gap: 6.4vw;
  }
}
.items-04 .items-head__ttl::before {
  width: 66%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-01.svg);
  bottom: -2.2vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-head__ttl::before {
    background-image: url(../img/border-01.svg);
    aspect-ratio: 244/23;
    bottom: -3.2vw;
  }
}
.items-04 .items-head__num .text01 {
  width: 5.4172767204vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-head__num .text01 {
    width: 16.4vw;
  }
}
.items-04 .items-style-01 .items-block {
  gap: 1.4641288433vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-style-01 .items-block {
    gap: 13.3333333333vw;
  }
}
.items-04 .items-style-01 .items-text{
  padding: 0 2.196193265vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-style-01 .items-text {
    padding: 0 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-04 .items-style-01 .items-desc {
    letter-spacing: -0.02em;
  }
}
.items-04 .items-style-02 {
  padding: 5.8565153734vw 2.196193265vw 5.8565153734vw 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-04 .items-style-02 {
    padding: 5.3333333333vw 5.3333333333vw 16vw;
  }
}

.items-05 {
  margin-bottom: 13.9092240117vw;
}
@media screen and (max-width: 767px) {
  .items-05 {
    margin-bottom: 24vw;
  }
}
@media screen and (max-width: 767px) {
  .items-05 .items-head__ttl {
    letter-spacing: -0.08em;
  }
}
.items-05 .items-head__ttl::before {
  width: 80%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-01.svg);
}
@media screen and (max-width: 767px) {
  .items-05 .items-head__ttl::before {
    width: 72%;
  }
}
.items-05 .items-head__num .text01 {
  width: 4.7584187408vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-head__num .text01 {
    width: 14vw;
  }
}
@media screen and (max-width: 767px) {
  .items-05 .items-desc {
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 767px) {
  .items-05 .items-style-01 {
    margin-bottom: 32vw;
  }
}
.items-05 .items-style-02 .items-text {
  margin-top: 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-05 .items-style-02 .items-text {
    margin-top: 0;
  }
}

.items-06 {
  margin-bottom: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-06 {
    margin-bottom: 26.6666666667vw;
  }
}
.items-06 .items-head {
  padding-left: 3.6603221083vw;
  margin-bottom: 2.196193265vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-head {
    padding-left: 0;
    margin-bottom: 11.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .items-06 .items-head__ttl {
    letter-spacing: -0.08em;
  }
}
.items-06 .items-head__ttl::before {
  width: 76%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-03.svg);
}
.items-06 .items-head__num .text01 {
  width: 4.9780380673vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-head__num .text01 {
    width: 15vw;
  }
}
.items-06 .items-style-01 {
  margin-bottom: 3.6603221083vw;
  width: max(73.2064421669vw, 700px);
}
@media screen and (max-width: 767px) {
  .items-06 .items-style-01 {
    width: 100%;
    margin-bottom: 26.6666666667vw;
  }
}
.items-06 .items-style-01 .items-block {
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-style-01 .items-block {
    gap: 12.8vw;
  }
}
.items-06 .items-style-01 .items-photo {
  width: 100%;
}
.items-06 .items-style-01 .items-photo__text {
  top: 4.6%;
  left: 3.4%;
}
.items-06 .items-style-01 .items-photo__text::before {
  background-color: #7694CC;
}
.items-06 .items-style-01 .items-style {
  margin-bottom: 2.7818448023vw;
  padding-left: 0;
  margin-top: 0.439238653vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-style-01 .items-style {
    margin-top: 0;
    margin-bottom: 12.2666666667vw;
  }
}
.items-06 .items-style-01 .items-text {
  margin-top: 0;
  width: 100%;
}
.items-06 .items-style-01 .items-text .inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .items-06 .items-style-01 .items-text .inner {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.items-06 .items-style-02 .items-desc {
  margin-bottom: 1.756954612vw;
}
@media screen and (max-width: 767px) {
  .items-06 .items-style-02 .items-desc {
    margin-bottom: 8.5333333333vw;
  }
}

.items-07 {
  margin-bottom: 10.2489019034vw;
}
@media screen and (max-width: 767px) {
  .items-07 {
    margin-bottom: 24vw;
  }
}
.items-07 .items-head {
  padding-left: 5.8565153734vw;
}
@media screen and (max-width: 767px) {
  .items-07 .items-head {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .items-07 .items-head__ttl {
    letter-spacing: -0.08em;
  }
}
.items-07 .items-head__ttl::before {
  width: 68%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-03.svg);
  bottom: -1.1713030747vw;
}
@media screen and (max-width: 767px) {
  .items-07 .items-head__ttl::before {
    bottom: -3.7333333333vw;
  }
}
.items-07 .items-head__num .text01 {
  width: 4.831625183vw;
}
@media screen and (max-width: 767px) {
  .items-07 .items-head__num .text01 {
    width: 14vw;
  }
}
@media screen and (max-width: 767px) {
  .items-07 .items-desc {
    letter-spacing: -0.01em;
  }
}
.items-07 .items-style-01 .items-photo__text::before {
  background-color: #7694CC;
}
.items-07 .items-style-01 .items-desc {
  max-width: 522px;
}
.items-07 .items-style-02 .items-desc {
  margin-bottom: 1.756954612vw;
}
@media screen and (max-width: 767px) {
  .items-07 .items-style-02 .items-desc {
    margin-bottom: 10.6666666667vw;
  }
}

.items-08 {
  margin-bottom: 13.9092240117vw;
}
@media screen and (max-width: 767px) {
  .items-08 {
    margin-bottom: 16vw;
  }
}
.items-08 .items-head__ttl::before {
  width: 80%;
  aspect-ratio: 244/23;
  background-image: url(../img/border-03.svg);
}
.items-08 .items-head__num .text01 {
  width: 4.9780380673vw;
}
@media screen and (max-width: 767px) {
  .items-08 .items-head__num .text01 {
    width: 14vw;
  }
}
.items-08 .items-style-01 .items-photo__text::before {
  background-color: #7694CC;
}
.items-08 .items-style-02 {
  padding: 5.8565153734vw 3.6603221083455346vw 5.8565153734vw 3.6603221083vw;
}
@media screen and (max-width: 767px) {
  .items-08 .items-style-02 {
    padding: 5.3333333333vw 5.3333333333vw 16vw;
  }
}
.items-08 .items-style-02 .items-text {
  margin-top: 3.6603221083vw;
}

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

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

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

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

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

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

.cart-yen {
  position: relative;
  width: 5.71em;
  text-align: right;
  white-space: nowrap;
  font-size: 1em;
}

.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.6875em;
  white-space: nowrap;
  letter-spacing: 0;
  margin-inline: 0.4em 1em;
  margin-bottom: -0.5em;
}

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

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

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

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

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

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

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

/* 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: 40%;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(128, 128, 128, 0.5);
  transition: 0.3s;
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer img {
  transition: 0.3s;
}

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

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

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

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

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