@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
  font: inherit;
}

body, a, p {
  color: #625549;
  font-family: "Zen Old Mincho", serif;
  text-decoration: none;
  letter-spacing: 0.01rem;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  font-size: 16px;
  transition: background-color 1s ease-in;
}
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: flex;
}

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

.slide-box {
  overflow: hidden;
}

/* アニメーション--------------------------- */
.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-up {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
}

.fadein-up.active {
  animation-name: fadein-up;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.16, 0.88, 0.25, 0.5);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path, opacity, filter, scale;
}

@keyframes fadein-up {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    filter: blur(40px) brightness(1.1);
    scale: 1.1;
  }
  50% {
    filter: blur(40px) brightness(1.1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    clip-path: inset(0% 0 0 0);
    scale: 1;
  }
}
.clippath-top {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  will-change: filter;
}

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

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

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

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

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

@keyframes clippath-left-fast {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-right {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  position: relative;
}

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

@keyframes clippath-right {
  0% {
    opacity: 0;
    transform: scale(1.05);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  33% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    -webkit-clip-path: inset(0);
    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;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    margin-left: 0.7vw;
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    margin-left: 0;
  }
}
.rotate-in {
  opacity: 0;
  position: relative;
}

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

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

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

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

.fade.active {
  animation-name: fade;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  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: 2.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;
  }
}
@media screen and (max-width: 768px) {
  .header-main .photo {
    animation-name: mv01-3;
    animation-duration: 9s;
    animation-timing-function: ease-out;
    animation-delay: 0.1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 1;
  }
}

@keyframes mv01-3 {
  0% {
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    transform: scale(1.2);
    opacity: 0;
  }
  20% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    -webkit-filter: blur(0px);
    -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;
  }
}
/* ヘッダー--------------------------- */
.header-main {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .header-main {
    flex-direction: column-reverse;
  }
}
.header-main .photo {
  width: 33.67%;
}
@media screen and (max-width: 768px) {
  .header-main .photo {
    width: 100%;
    aspect-ratio: 1125/1260;
    overflow: hidden;
  }
}
.header-main .photo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-main .photo._01 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
.header-main .txt {
  padding-top: 3.4vw;
  flex: 1;
  flex-direction: column;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-main .txt {
    background-color: #fff;
    z-index: 3;
    position: relative;
  }
}
.header-main .txt-ttl {
  font-weight: normal;
  font-size: 3.54vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .header-main .txt-ttl {
    font-size: 9.33vw;
  }
}
.header-main .txt-ttl-01 {
  line-height: 1.28;
  margin-left: 0.1em;
  animation-delay: 0.8s !important;
}
.header-main .txt-ttl-01 > span {
  position: relative;
  padding-inline: 0.3em 0.2em;
}
.header-main .txt-ttl-01 > span::before, .header-main .txt-ttl-01 > span::after {
  content: "";
  position: absolute;
  top: 0.03em;
  left: -0.07em;
  display: block;
  width: 0.35em;
  height: 0.28em;
  background: center center/contain no-repeat url("../img/mv-quote.svg");
}
.header-main .txt-ttl-01 > span::after {
  left: auto;
  right: -0.07em;
  transform: rotate(180deg);
}
.header-main .txt-ttl-01 > span span {
  font-size: 1.23em;
}
.header-main .txt-ttl-01 > span span:first-child {
  color: #89BCD7;
}
.header-main .txt-ttl-01 > span span:nth-child(2) {
  margin-inline: 0.03em -0.07em;
  color: #D78D89;
}
.header-main .txt-ttl-02 {
  margin-top: 0.33em;
  margin-left: 0.08em;
  font-size: 1.63em;
  line-height: 0.99;
  letter-spacing: 0.058em;
  animation-delay: 0.8s !important;
  animation-duration: 1.5s !important;
}
@media screen and (max-width: 768px) {
  .header-main .txt-ttl-02 {
    margin-top: 0.05em;
    line-height: 0.93;
  }
}
.header-main .txt-en {
  margin-top: 1.3vw;
  animation-delay: 1.5s !important;
}
@media screen and (max-width: 768px) {
  .header-main .txt-en {
    display: none;
  }
}
.header-main .txt-en img {
  width: 11.78vw;
  margin: 0 auto;
}
.header-main .txt-logo {
  margin-top: 4.7vw;
  animation-delay: 1.5s !important;
}
@media screen and (max-width: 768px) {
  .header-main .txt-logo {
    margin-top: 12vw;
  }
}
.header-main .txt-logo img {
  width: 6.36vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .header-main .txt-logo img {
    width: 17.46vw;
  }
}

.lead {
  margin-top: min(7.75vw, 106px);
  text-align: center;
  font-size: 1.12rem;
  font-size: max(clamp(1.12rem, 0.66rem + 0.5415162455vw, 1.31rem), 1.09vw);
  letter-spacing: 0;
  line-height: 3.111;
}
@media screen and (max-width: 1365px) {
  .lead {
    font-size: clamp(0.93rem, 0.69rem + 0.5016722408vw, 1.12rem);
  }
}
@media screen and (max-width: 768px) {
  .lead {
    margin-top: 10vw;
    font-size: 4.26vw;
    line-height: 2.27;
  }
}

/* 商品リンク先リスト--------------------------- */
.link-box {
  width: 29.28vw;
  max-width: 100%;
  min-width: 270px;
}
@media screen and (max-width: 768px) {
  .link-box {
    width: 84vw;
    min-width: 0;
  }
}
.link-box-main {
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}
.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: #625549;
  display: flex;
  justify-content: space-between;
  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;
}
@media screen and (max-width: 1365px) {
  .cart-btm {
    font-size: clamp(0.81rem, 0.57rem + 0.5016722408vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  .cart-btm {
    font-size: 4.26vw;
  }
}
.cart-btm:nth-child(0) {
  transition-delay: 0s;
}
.link-box-sub .cart-btm:nth-child(0) {
  transition-delay: 0.3s;
}
.cart-btm:nth-child(1) {
  transition-delay: 0.1s;
}
.link-box-sub .cart-btm:nth-child(1) {
  transition-delay: 0.4s;
}
.cart-btm:nth-child(2) {
  transition-delay: 0.2s;
}
.link-box-sub .cart-btm:nth-child(2) {
  transition-delay: 0.5s;
}
.cart-btm:nth-child(3) {
  transition-delay: 0.3s;
}
.link-box-sub .cart-btm:nth-child(3) {
  transition-delay: 0.6s;
}
.cart-btm:nth-child(4) {
  transition-delay: 0.4s;
}
.link-box-sub .cart-btm:nth-child(4) {
  transition-delay: 0.7s;
}
.cart-btm:nth-child(5) {
  transition-delay: 0.5s;
}
.link-box-sub .cart-btm:nth-child(5) {
  transition-delay: 0.8s;
}
.cart-btm:nth-child(6) {
  transition-delay: 0.6s;
}
.link-box-sub .cart-btm:nth-child(6) {
  transition-delay: 0.9s;
}
.cart-btm:nth-child(7) {
  transition-delay: 0.7s;
}
.link-box-sub .cart-btm:nth-child(7) {
  transition-delay: 1s;
}
.cart-btm:nth-child(8) {
  transition-delay: 0.8s;
}
.link-box-sub .cart-btm:nth-child(8) {
  transition-delay: 1.1s;
}
.cart-btm:nth-child(9) {
  transition-delay: 0.9s;
}
.link-box-sub .cart-btm:nth-child(9) {
  transition-delay: 1.2s;
}
.cart-btm:nth-child(10) {
  transition-delay: 1s;
}
.link-box-sub .cart-btm:nth-child(10) {
  transition-delay: 1.3s;
}
.cart-btm * {
  font-family: "yu-mincho-pr6n", serif;
}
.link-box.active .cart-btm {
  opacity: 1;
  left: 0;
  top: 0;
}

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

.cart-yen {
  position: relative;
  letter-spacing: 0.05em;
  width: 5.35em;
  text-align: right;
  white-space: nowrap;
}
.cart-btm--l .cart-yen::before, .cart-btm--s .cart-yen::before {
  content: "";
  display: block;
  background: center center/contain no-repeat url("../img/size-l.svg");
  width: 0.93em;
  height: 0.93em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cart-btm--s .cart-yen::before {
  background-image: url("../img/size-s.svg");
}

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

.cart-btn {
  --cart-btn-color: #D78D89;
  --cart-btn-arrow: url("../img/arrow-pink.svg");
  position: relative;
  font-size: 0.68em;
  line-height: 1.5em;
  width: 7.81em;
  padding: 0.45em 0;
  background: var(--cart-btn-color);
  border: 0.5px solid var(--cart-btn-color);
  display: inline-block;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 300ms ease-out, color 300ms ease-out;
  transition: color 300ms ease-out, background-color 300ms ease-out;
}
.link-box-sub .cart-btn {
  background-color: transparent;
  color: #1A1311;
  border-color: #625549;
  --cart-btn-arrow: url("../img/arrow-white.svg");
}
.cart-btn--blue {
  --cart-btn-color: #89BCD7;
  --cart-btn-arrow: url("../img/arrow-blue.svg");
}
.cart-btn--gray {
  --cart-btn-color: #D0D0D0;
  --cart-btn-arrow: url("../img/arrow-gray.svg");
}

.cart-btm:hover .cart-btn {
  background: #fff;
  border-color: var(--cart-btn-color);
  color: var(--cart-btn-color);
}
.link-box-sub .cart-btm:hover .cart-btn {
  background-color: #625549;
  color: #ffffff;
  border-color: #625549;
}

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

.cart-btm:hover .cart-btn span {
  -webkit-transform: translate3d(-0.5rem, 0, 0);
  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%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

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

/* 商品セクションのレイアウト--------------------------- */
.layout-photo-center {
  position: relative;
}
.layout-photo-center .items-ttl {
  position: absolute;
  left: 6.8vw;
  top: 3.5vw;
}
@media screen and (max-width: 768px) {
  .layout-photo-center .items-ttl {
    position: relative;
    left: auto;
    top: auto;
  }
}
.layout-photo-center .items-photo a {
  position: relative;
  overflow: hidden;
  width: 43.92vw;
  aspect-ratio: 1000/1333;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .layout-photo-center .items-photo a {
    width: 100%;
  }
}
.layout-photo-center .items-lead {
  position: absolute;
  top: 43.1vw;
  left: 17.8vw;
}
@media screen and (max-width: 768px) {
  .layout-photo-center .items-lead {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 8vw;
  }
}
.layout-photo-center .link-box {
  margin: 54px auto 0;
}
@media screen and (max-width: 768px) {
  .layout-photo-center .link-box {
    margin-top: 9.5vw;
  }
}

.layout-photo-2col .items-photo .photo-slider-sp {
  display: flex;
  margin-inline: auto;
  width: 73.35vw;
  min-width: 700px;
}
@media screen and (max-width: 768px) {
  .layout-photo-2col .items-photo .photo-slider-sp {
    display: block;
    width: auto;
    min-width: 0;
  }
}
.layout-photo-2col .items-photo a {
  position: relative;
  display: block;
  flex: 1;
}

.layout-desc-list {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: max(54px, 3.95vw) auto 0;
  width: 73.35vw;
  min-width: 700px;
}
@media screen and (max-width: 768px) {
  .layout-desc-list {
    margin-top: 0;
    width: auto;
    min-width: 0;
    flex-direction: column;
  }
}
.layout-desc-list .items-desc {
  margin-top: -0.3em;
  width: calc(39.92% + 0.7em);
}
@media screen and (max-width: 768px) {
  .layout-desc-list .items-desc {
    width: auto;
    margin-top: 5vw;
  }
}
.layout-desc-list .link-box {
  width: 39.92%;
}
@media screen and (max-width: 768px) {
  .layout-desc-list .link-box {
    margin-top: 9vw;
    width: 84vw;
    margin-inline: auto;
  }
}

.layout-photo-right,
.layout-photo-left {
  position: relative;
  margin-inline: 3.66%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .layout-photo-right,
  .layout-photo-left {
    flex-direction: column;
    margin-inline: 0;
    position: relative;
  }
}
.layout-photo-right .items-ttl,
.layout-photo-left .items-ttl {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .layout-photo-right .items-ttl,
  .layout-photo-left .items-ttl {
    position: relative;
  }
}
.layout-photo-right .items-photo,
.layout-photo-left .items-photo {
  width: 47.39%;
  position: relative;
  overflow: hidden;
  width: 43.92vw;
  aspect-ratio: 1000/1333;
}
@media screen and (max-width: 768px) {
  .layout-photo-right .items-photo,
  .layout-photo-left .items-photo {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right.items-layered .items-photo,
  .layout-photo-left.items-layered .items-photo {
    margin-top: 14vw;
  }
}
.layout-photo-right .txt-col,
.layout-photo-left .txt-col {
  margin-top: 14.3vw;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .layout-photo-right .txt-col,
  .layout-photo-left .txt-col {
    width: 100%;
    margin-top: 0;
  }
}
.layout-photo-right .txt-col .inner,
.layout-photo-left .txt-col .inner {
  width: max(400px, 60.06%);
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .layout-photo-right .txt-col .inner,
  .layout-photo-left .txt-col .inner {
    width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right .items-layered-ttl,
  .layout-photo-left .items-layered-ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 84.26vw;
  }
  .layout-photo-right .items-layered-ttl img,
  .layout-photo-left .items-layered-ttl img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right .items-lead,
  .layout-photo-left .items-lead {
    margin-left: 8vw;
    margin-top: 7vw;
    text-align: left;
  }
}
.layout-photo-right .link-box,
.layout-photo-left .link-box {
  margin-top: 15%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .layout-photo-right .link-box,
  .layout-photo-left .link-box {
    margin-top: 7vw;
    margin-bottom: 0;
    width: 84vw;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right.items-main .txt-col,
  .layout-photo-right.items-main .txt-col .inner,
  .layout-photo-left.items-main .txt-col,
  .layout-photo-left.items-main .txt-col .inner {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right.items-main .items-photo,
  .layout-photo-left.items-main .items-photo {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .layout-photo-right.items-main .link-box,
  .layout-photo-left.items-main .link-box {
    order: 4;
  }
}

.layout-photo-right .link-box {
  margin-bottom: -0.3em;
}

.layout-photo-left {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .layout-photo-left {
    flex-direction: column;
  }
}
.layout-photo-left .items-layered-ttl {
  margin-left: 0;
  min-width: 0;
}
.layout-photo-left .txt-col {
  margin-top: 0;
}
.layout-photo-left .txt-col .inner {
  margin-right: 6.7vw;
  margin-bottom: -0.74vw;
}
@media screen and (max-width: 1110px) {
  .layout-photo-left .txt-col .inner {
    margin-right: auto;
  }
}
.layout-photo-left .link-box {
  margin-top: 21%;
}
@media screen and (max-width: 768px) {
  .layout-photo-left .link-box {
    margin-top: 9vw !important;
  }
}

.layout-photo-left--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .layout-photo-left--reverse {
    flex-direction: column;
  }
}
.layout-photo-left--reverse .txt-col .inner {
  margin-right: auto;
}

/* 商品セクション--------------------------- */
.items {
  padding-block: min(13.17vw, 180px) min(9.73vw, 133px);
}
@media screen and (max-width: 768px) {
  .items {
    padding-block: 14vw;
  }
}
.items-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8.4vw 3.8vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .items-ttl {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5.8vw;
  }
}
.items-ttl > * {
  flex-shrink: 0;
}
.items-ttl-l {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 1.1vw;
  padding-right: 3vw;
  padding-top: 1.17vw;
}
@media screen and (max-width: 768px) {
  .items-ttl-l {
    padding: 0.6vw 3.2vw 0 0;
    column-gap: 4vw;
  }
}
.items-ttl-l::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 50%;
  opacity: 0;
  display: block;
  width: 1px;
  background: #625549;
  transition: top 1s cubic-bezier(0, 0.55, 0.45, 1) 0.3s, bottom 1s cubic-bezier(0, 0.55, 0.45, 1) 0.3s, opacity 0.8s linear 0.3s;
}
.items-ttl-l.active::after {
  top: 0;
  bottom: 0;
  opacity: 1;
}
.items-ttl-r {
  padding-top: 0.3vw;
}
.items-items {
  width: 3.44vw;
}
@media screen and (max-width: 768px) {
  .items-items {
    width: 12.26vw;
  }
}
.items-num {
  width: 4.24vw;
}
@media screen and (max-width: 768px) {
  .items-num {
    width: 15.46vw;
  }
}
.items-name-en {
  width: 24.59vw;
}
@media screen and (max-width: 768px) {
  .items-name-en {
    width: 80.53vw;
  }
}
.items-name-ja {
  font-size: 1.31vw;
  line-height: 1.4;
  margin: 0.6em -0.1em -0.3em 0;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .items-name-ja {
    font-size: 4.26vw;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) {
  .items-photo {
    margin-top: 6.8vw;
  }
}
.items-photo a {
  display: block;
}
@media screen and (max-width: 768px) {
  .items-photo a {
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .items-photo a img {
    width: 100vw;
  }
}
.items-lead {
  font-size: max(clamp(1rem, 0.51rem + 1.0033444816vw, 1.37rem), 1.61vw);
  line-height: 1.818;
  white-space: nowrap;
  font-weight: normal;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .items-lead {
    margin: 9vw 0 0 8vw;
    font-size: 5.33vw;
    line-height: 1.8;
  }
}
.items-lead.slice-bg-left > div {
  position: relative;
  width: max-content;
}
.items-lead.slice-bg-left > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 0;
  right: 100%;
  background-color: #625549;
}
.items-layered-ttl {
  width: 22.98vw;
  min-width: 260px;
  margin: 0 auto 2.92vw;
}
@media screen and (max-width: 768px) {
  .items-layered-ttl {
    width: 83.46vw;
    min-width: 0;
  }
}
.items-layered-ttl img {
  width: 100%;
}
.items-bdr {
  position: relative;
  width: 1px;
  height: max(100px, 7.32vw);
  margin: max(40px, 2.92vw) auto max(33px, 2.41vw);
}
@media screen and (max-width: 768px) {
  .items-bdr {
    height: 16vw;
    margin-block: 7.73vw 13.33vw;
  }
}
.items-bdr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 100%;
  background: linear-gradient(180deg, #FF9690 0%, #8ED8FF 100%);
  width: 1px;
}
.items-bdr.active::before {
  animation: 2.4s cubic-bezier(0.33, 1, 0.68, 1) infinite bdr-anim;
}
.items-desc {
  line-height: 2.5;
  letter-spacing: 0em;
  font-size: max(clamp(1rem, 0.53rem + 0.5415162455vw, 1.18rem), 0.98vw);
}
@media screen and (max-width: 1365px) {
  .items-desc {
    font-size: clamp(0.81rem, 0.57rem + 0.5016722408vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  .items-desc {
    margin-top: 5vw;
    font-size: 4.26vw;
    line-height: 1.75;
    width: 86.4vw !important;
    margin-inline: auto;
  }
}
.items-other-ttl {
  margin-bottom: min(4.53vw, 62px);
}
@media screen and (max-width: 768px) {
  .items-other-ttl {
    margin-bottom: 8.4vw;
  }
}
.items-other-ttl img {
  width: 20.86vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .items-other-ttl img {
    width: 68.79vw;
  }
}
.items-photo-lead {
  position: absolute;
  font-size: 1.61vw;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  letter-spacing: 0.2em;
  top: 1.59em;
  right: 0.9em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .items-photo-lead {
    top: 5.8vw;
    right: 3vw;
    font-size: 4.66vw;
  }
}
.items-photo-lead > div {
  position: relative;
  height: max-content;
}
.items-photo-lead > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 100%;
  left: 6%;
  right: 6%;
  background-color: #89BCD7;
}
.items-photo-lead > div span, .items-photo-lead > div::after {
  animation-delay: 1s !important;
}
@media screen and (max-width: 768px) {
  .items-photo-lead > div span, .items-photo-lead > div::after {
    animation-delay: 0.5s !important;
  }
}
.items-photo-lead--01 > div:nth-child(2) {
  margin-top: 8.4em;
}
.items-photo-lead--02, .items-photo-lead--03 {
  color: #625549;
}
.items-photo-lead--02 > div:nth-child(2) {
  margin-top: 8.7em;
}
@media screen and (max-width: 768px) {
  .items-photo-lead--03 {
    right: auto;
    left: 3vw;
    top: 7.4vw;
  }
}
.items--01 {
  margin-top: 10.61vw;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .items--01 {
    margin-top: 24.4vw;
  }
}
.items--01 .items-bdr {
  margin-block: max(57px, 4.17vw) max(70px, 5.12vw);
}
@media screen and (max-width: 768px) {
  .items--01 .items-bdr {
    margin-block: 7.73vw 13.33vw;
  }
}
.items--01 .items-layered-ttl {
  opacity: 0;
  transition: opacity 2s ease;
}
@media screen and (max-width: 768px) {
  .items--01 .items-layered-ttl {
    opacity: 1;
  }
}
.items--01 .items-photo {
  position: relative;
}
.items--01 .items-photo a {
  aspect-ratio: 1728/2304;
  overflow: hidden;
}
.items--01:has(.items01-slider-item--03.slick-active) .items-layered-ttl {
  opacity: 1;
}
.items--02, .items--04 {
  background-color: #EAEADC;
}
.items--03 {
  padding-bottom: min(13.17vw, 180px);
}
@media screen and (max-width: 768px) {
  .items--03 .items-lead {
    margin-left: 5.3vw;
  }
}
.items--other {
  padding-top: 14.42vw;
}
@media screen and (max-width: 768px) {
  .items--other {
    padding-top: 13vw;
  }
}
@media screen and (max-width: 768px) {
  .items--other .items-photo {
    margin-top: 0;
  }
}
.items--other .items-sec--02 .items-lead,
.items--other .items-sec--03 .items-lead {
  margin-bottom: 17%;
}
.items--other .items-sec--02 .link-box,
.items--other .items-sec--03 .link-box {
  margin-top: 16%;
}
.items--other .items-sec--02 {
  margin-top: 7.17vw;
}
@media screen and (max-width: 768px) {
  .items--other .items-sec--02 {
    margin-top: 16vw;
  }
}
.items--other .items-sec--03 {
  margin-top: 9.51vw;
}
@media screen and (max-width: 768px) {
  .items--other .items-sec--03 {
    margin-top: 16vw;
  }
}

.items01-slider {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .items01-slider {
    display: none;
  }
}
.items01-slider:hover {
  cursor: pointer;
}
.items01-slider:has(.items01-slider-item--01.slick-active) {
  pointer-events: auto;
}
.items01-slider:has(.items01-slider-item--01.slick-active):hover {
  cursor: auto;
}
.items01-slider .slick-list,
.items01-slider .slick-track {
  height: 100%;
}
.items01-slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.items01-slider-item--01 {
  background-color: #fff;
}
.items01-slider-item img {
  width: 20.86vw;
  min-width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* おすすめ--------------------------- */
.recommend {
  margin-top: 3vw;
}
@media screen and (max-width: 768px) {
  .recommend {
    margin-bottom: 15vw;
  }
}
.recommend-ttl {
  font-size: max(28px, 2.04vw);
  line-height: 1.429;
  letter-spacing: 0.035em;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .recommend-ttl {
    font-size: 7.46vw;
  }
}
.recommend-list {
  margin: 4.39vw auto 0;
  width: 1266px;
  max-width: calc(100% - 4.38vw);
  padding-inline: 2.19vw;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.87vw 1.73%;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .recommend-list {
    margin: 11vw auto 0;
    padding-inline: 0;
    max-width: 100%;
    gap: 10vw 5.33vw;
  }
}
.recommend-item {
  width: 23.69%;
}
@media screen and (max-width: 768px) {
  .recommend-item {
    width: 42.13vw;
  }
}
.recommend-item > a {
  display: block;
}
.recommend-item img {
  width: 100%;
}
.recommend .link-box {
  z-index: 5;
  position: relative;
  margin-top: min(3.51vw, 48px);
  min-width: 0;
}
.recommend .link-box .cart-btm {
  margin-bottom: 0.4em;
  font-size: clamp(0.74rem, 0.57rem + 0.3511705686vw, 0.87rem);
}
@media screen and (max-width: 1299px) {
  .recommend .link-box .cart-btm {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
}
.recommend .link-box .cart-title {
  font-size: 1em;
}
@media screen and (max-width: 1299px) {
  .recommend .link-box .cart-title {
    width: 100%;
    flex: auto;
  }
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-title {
    font-size: 3.73vw;
  }
}
.recommend .link-box .cart-yen {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-yen {
    font-size: 3.73vw;
    letter-spacing: 0em;
    width: 18.5vw;
  }
}
.recommend .link-box .cart-btm--l .cart-yen::before,
.recommend .link-box .cart-btm--s .cart-yen::before {
  width: 1.07em;
  height: 1.07em;
}
.recommend .link-box .cart-tax {
  font-size: 0.71em;
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-tax {
    font-size: 2.13vw;
    margin-inline: 0.2em 0.5em;
  }
}
.recommend .link-box .cart-btn {
  font-size: 0.78em;
  padding-block: 0.16em;
  width: 6.54em;
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-btn {
    font-size: 2.93vw;
    width: 12.8vw;
  }
}
.recommend .link-box .cart-btm:hover .cart-btn::after {
  right: 0.59em;
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-btm:hover .cart-btn::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .recommend .link-box .cart-btm:hover .cart-btn span {
    transform: none;
  }
}

/* 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: 10% auto 51px;
  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: 600px;
  margin: 0 auto 1rem;
  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 {
  justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 6.71% 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: 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%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  background-color: #FFF;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#pagetop .btn-loading span img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 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: 2.34%;
  min-width: 30px;
  margin: 0 auto 2%;
  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: 1.71% 0 0;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .flex-box {
    flex-direction: column;
  }
  /* バナー--------------------------- */
  .banner-block {
    margin-top: 16vw;
    margin-bottom: 16vw;
  }
  .banner-block .c-btn01 {
    width: 80%;
    min-width: auto;
  }
  .banner-block .line {
    display: none;
  }
  .banner-block .flex-box {
    flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 0 auto;
  }
  .banner-block .flex-box .c-btn01 {
    min-width: auto;
  }
  /* ページトップボタン--------------------------- */
  #pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    display: block;
    z-index: 30;
  }
  #pagetop .btn-loading {
    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%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background-color: #FFF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  #pagetop .btn-loading span img {
    width: 18px;
    position: absolute;
    top: 50%;
    left: 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: 5.33vw;
  }
  .footer_copyright img {
    width: 72vw;
  }
}
/*# sourceMappingURL=style.css.map */
