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

:root {
  --items-bg-color: #F4F8F6;
}

html {
  font-size: 16px;
}

body, a {
  text-decoration: none;
}

body {
  font-family: "Shippori Mincho", serif;
  color: #000;
  position: relative;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  letter-spacing: 0.01rem;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

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

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

@keyframes fadein-down {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(20px) brightness(1.1);
    scale: 1.1;
  }
  70% {
    opacity: 1;
    filter: blur(0) brightness(1);
    clip-path: inset(0% 0 0 0);
  }
  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-simple {
  clip-path: inset(0 100% 0 0);
  position: relative;
}

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

@keyframes clippath-left-simple {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -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);
  }
}
.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-left-bg {
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
.slice-bg-left.active::before {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
  animation-name: slice-bg-left-bg;
}
.slice-bg-left::before {
  right: 100%;
}

@keyframes anim-topleft-up {
  0% {
    opacity: 0;
    transform: translate(15px, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.topleft-up {
  transform: translate(15px, 10px);
  opacity: 0;
  display: block;
}
.topleft-up.active {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-name: anim-topleft-up;
}

@keyframes anim-topleft-down {
  0% {
    opacity: 0;
    transform: translate(-15px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.topleft-down {
  transform: translate(-15px, -10px);
  opacity: 0;
  display: block;
}
.topleft-down.active {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-name: anim-topleft-down;
}

@keyframes anim-ttl-slice {
  0% {
    height: 0;
    bottom: 1em;
  }
  100% {
    height: 1.57em;
    bottom: 0.04em;
  }
}
.items-ttl-style::after {
  height: 0;
  bottom: 1em;
}
.items-ttl-style.active::after {
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  animation-name: anim-ttl-slice;
}

.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;
}
@media screen and (max-width: 768px) {
  .photo-lcol-in.active,
  .photo-rcol-in.active {
    animation-name: fade-slide !important;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 1;
  }
}

.photo-rcol-in.active {
  animation-name: photo-rcol-in;
}
@media screen and (max-width: 768px) {
  .photo-rcol-in.active {
    animation-name: fade-slide-02 !important;
    opacity: 0;
  }
}

@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);
  }
}
@keyframes fade-slide-02 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-slide {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    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;
  }
}
.border-rotate,
.border-rotate-inner {
  position: relative;
}

.border-rotate::after,
.border-rotate::before,
.border-rotate-inner::after,
.border-rotate-inner::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 1.4s ease 1s;
}

.border-rotate::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}

.border-rotate::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}

.border-rotate-inner::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}

.border-rotate-inner::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}

.border-rotate.active::after,
.border-rotate.active::before {
  width: 100%;
  width: calc(100% + 1px);
}

.border-rotate.active .border-rotate-inner::after,
.border-rotate.active .border-rotate-inner::before {
  height: 100%;
  height: calc(100% + 1px);
}

/* 下から飛び出す */
@keyframes anim-up {
  0% {
    transform: translateY(101%);
  }
  100% {
    transform: translateY(0);
  }
}
.anim-up {
  overflow: hidden;
}
.anim-up > * {
  transform: translateY(101%);
}
.anim-up > span {
  display: block;
}

span.anim-up {
  display: inline-block;
}

.anim-up.active > *,
.active > .anim-up > * {
  animation: 0.7s ease forwards anim-up;
}

.rotate90 {
  rotate: 90deg;
  opacity: 0;
}

.rotate90.active {
  animation: rotate90;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: rotate;
}

@keyframes rotate90 {
  0% {
    opacity: 1;
    filter: blur(20px) brightness(1.1);
    rotate: 90deg;
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    rotate: 0deg;
  }
}
/* ヘッダー--------------------------- */
.header-main {
  position: relative;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .header-main {
    overflow: hidden;
  }
}

.header-photo {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .header-photo {
    flex-direction: column-reverse;
  }
}
.header-photo .photo {
  width: 50%;
  overflow: hidden;
  aspect-ratio: 683/694;
}
@media screen and (max-width: 768px) {
  .header-photo .photo {
    width: 100%;
    aspect-ratio: 375/668;
  }
}
.header-photo .photo picture,
.header-photo .photo img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .header-photo .photo._02 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
  }
}

.header-main .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38.43vw;
}
@media screen and (max-width: 768px) {
  .header-main .txt {
    top: auto;
    bottom: 7.46vw;
    transform: translateX(-50%);
    width: 84.53vw;
  }
}
.header-main .txt img {
  width: 100%;
}
.header-main .txt-01 {
  position: relative;
  margin: 0 auto 0;
  padding-top: 3.73vw;
  width: 26.28vw;
}
@media screen and (max-width: 768px) {
  .header-main .txt-01 {
    padding-top: 8vw;
    width: 65.06vw;
  }
}
.header-main .txt-01 span {
  display: block;
  position: absolute;
  bottom: -0.25vw;
  left: -0.3vw;
  right: -0.3vw;
  height: 0.68vw;
  background-color: #85b5c9;
  animation-delay: 0.6s;
  animation-duration: 0.7s;
}
@media screen and (max-width: 768px) {
  .header-main .txt-01 span {
    bottom: -1.07vw;
    height: 1.86vw;
  }
}
.header-main .txt-01 img {
  position: relative;
}
.header-main .txt-02 {
  margin: 2.4vw auto 0;
  width: 30.23vw;
}
@media screen and (max-width: 768px) {
  .header-main .txt-02 {
    margin-top: 6.4vw;
    width: 66.66vw;
  }
}
.header-main .txt-02 span {
  animation-delay: 0.8s;
}
.header-main .txt-03 {
  margin: 1.7vw auto 0;
  width: 17.27vw;
}
@media screen and (max-width: 768px) {
  .header-main .txt-03 {
    margin-top: 6.13vw;
    width: 39.2vw;
  }
}
.header-main .txt-03 span {
  animation-delay: 1s;
}
.header-main .txt-en {
  margin: 0.65vw 1.09vw 0 auto;
  padding-bottom: 1.09vw;
  width: 16.54vw;
  animation-delay: 1.2s;
}
@media screen and (max-width: 768px) {
  .header-main .txt-en {
    margin: 2.66vw 4.53vw 0 auto;
    padding-bottom: 2.93vw;
    width: 40vw;
  }
}

.header-logo {
  position: absolute;
  top: 1.8vw;
  left: 2.5vw;
  width: 6.29vw;
}
@media screen and (max-width: 768px) {
  .header-logo {
    top: 3.1vw;
    left: 4.4vw;
    width: 19vw;
  }
}
.header-logo img {
  width: 100%;
}

.lead {
  margin-top: min(5.85vw, 80px);
  text-align: center;
  font-size: 1.31rem;
  font-size: max(clamp(1.25rem, 1.09rem + 0.1805054152vw, 1.31rem), 1.04vw);
  letter-spacing: 0;
  line-height: 3;
}
@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: 14.66vw;
    font-size: 4.26vw;
    line-height: 2.5;
  }
}
.lead-bdr {
  position: relative;
  width: 1px;
  height: max(80px, 5.85vw);
  margin: max(40px, 2.92vw) auto max(33px, 2.41vw);
}
@media screen and (max-width: 768px) {
  .lead-bdr {
    margin-block: 50px -9px;
  }
}
.lead-bdr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 100%;
  background-color: #A0A0A0;
  width: 1px;
}
.lead-bdr.active::before {
  animation: 2.4s cubic-bezier(0.33, 1, 0.68, 1) infinite bdr-anim;
}

/* .nav--------------------------- */
.nav {
  width: max(600px, 43.92%);
  max-width: 100%;
  margin: 73px auto 0;
}
.nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 10%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .nav ul {
    column-gap: 0;
  }
}
.nav ul > li {
  position: relative;
}
.nav a {
  padding-top: max(20px, 1.46vw);
  display: block;
  color: #000;
}
@media screen and (max-width: 768px) {
  .nav a {
    padding-top: 1.06vw;
  }
}
.nav-img {
  background-color: #F4F8F6;
  overflow: hidden;
  margin-block: 0 max(20px, 1.46vw);
}
@media screen and (max-width: 768px) {
  .nav-img {
    margin-block: 2.13vw 3.33vw;
  }
}
.nav-img img {
  width: 100%;
}
.nav-num {
  position: absolute;
  top: 0.1em;
  left: -0.2em;
  font-family: "garamond-premier-pro", serif;
  font-size: max(40px, 2.92vw);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #B0B0B0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .nav-num {
    font-size: 8.53vw;
    letter-spacing: 0.05em;
    left: 1.66vw;
    top: 0.53vw;
  }
}
.nav-num img {
  width: max(37px, 2.7vw);
}
@media screen and (max-width: 768px) {
  .nav-num img {
    width: 7.9vw;
  }
}
.nav-name {
  font-family: "garamond-premier-pro", serif;
  font-size: max(22px, 1.61vw);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #696969;
}
@media screen and (max-width: 768px) {
  .nav-name {
    font-size: 3.73vw;
  }
}
.nav-name img {
  width: max(132px, 9.66vw);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .nav-name img {
    width: 23vw;
  }
}
.nav li:nth-child(2) .nav-img {
  background-color: #F3F3F3;
}
.nav li:nth-child(3) .nav-img {
  background-color: #E9E8ED;
}

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

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

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

.cart-tax {
  font-family: "Shippori Mincho", serif;
  width: max-content;
  font-size: 0.5em;
  white-space: nowrap;
  letter-spacing: 0;
  margin-inline: 0.4em 1.3em;
  margin-bottom: -1em;
}

.cart-btn {
  --cart-btn-color: var(--items-bg-color);
  --cart-btn-arrow: url("../img/arrow-black.svg");
  position: relative;
  font-size: 0.62em;
  line-height: 1.5em;
  width: 6em;
  padding: 0.5em 0;
  background: var(--cart-btn-color);
  border: 0.5px solid var(--cart-btn-color);
  display: inline-block;
  text-align: center;
  color: #000;
  -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 {
  border-color: #D6D6D6;
  background-color: transparent;
}

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

/* 商品セクション--------------------------- */
.items {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .items {
    margin-top: 21.33vw;
  }
}
.items--02 {
  --items-bg-color: #F3F3F3;
  margin-top: 203px;
}
@media screen and (max-width: 768px) {
  .items--02 {
    margin-top: 20vw;
  }
}
.items--03 {
  --items-bg-color: #E9E8ED;
  margin-top: max(123px, 9vw);
}
@media screen and (max-width: 768px) {
  .items--03 {
    margin-top: 20vw;
  }
}
.items-head {
  padding: 2.3vw 0 2.2vw;
  display: flex;
  justify-content: center;
  font-family: "garamond-premier-pro", serif;
  font-size: max(1.87rem, 2.92vw);
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: var(--items-bg-color);
}
@media screen and (max-width: 768px) {
  .items-head {
    padding-block: 1.1em;
    font-size: 8.53vw;
  }
}
.items-head img {
  height: max(30px, 2.85vw);
  width: auto;
}
@media screen and (max-width: 768px) {
  .items-head img {
    height: 8.53vw;
  }
}
.items-head-num {
  position: relative;
  padding-right: 2.97em;
  color: #A0A0A0;
}
@media screen and (max-width: 768px) {
  .items-head-num {
    padding-right: 0.8em;
  }
}
.items-head-num::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 1px;
  width: 2.5em;
  background-color: #A0A0A0;
}
@media screen and (max-width: 768px) {
  .items-head-num::after {
    top: 40%;
    width: 0.61em;
  }
}
.items-head-num img {
  margin-block: 0.2vw -0.2vw;
}
.items-head-en {
  margin-left: 0.6em;
  font-size: inherit;
  color: #696969;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .items-head-en {
    margin-left: 0.35em;
  }
}
.items-lead {
  margin: min(6vw, 82px) auto 0;
  padding-block: 2.29em;
  width: max(682px, 49.92%);
  max-width: 84vw;
  position: relative;
  font-size: max(16px, 1.46vw);
  line-height: 2.25;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .items-lead {
    margin-top: 10.66vw;
    padding-block: 10.4vw;
    font-size: 4.26vw;
    line-height: 2.25;
  }
}
.items-sec + .items-lead {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .items-sec + .items-lead {
    margin-top: 15.2vw;
  }
}
.items-lead::before, .items-lead::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3.73%;
  padding-bottom: 9.03%;
  background: center center/contain no-repeat url("../img/items-lead-key.svg");
}
@media screen and (max-width: 768px) {
  .items-lead::before, .items-lead::after {
    width: 6.26vw;
    padding-bottom: 15.33vw;
  }
}
.items-lead::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: scale(-1, -1);
}
.items-row {
  display: flex;
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  .items-row {
    position: relative;
    flex-direction: column;
    margin-top: 7.73vw;
    padding-top: 23.46vw;
  }
}
@media screen and (max-width: 768px) {
  .items-row:not(:has(.items-ttl)) {
    padding-top: 0;
  }
}
.items .items-row--01-02 {
  margin-top: 120px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .items .items-row--01-02 {
    margin-top: 16vw;
    align-items: center;
  }
}
.items .items-row--01-02 .items-txt-col {
  margin-top: 8.41vw;
}
@media screen and (max-width: 768px) {
  .items .items-row--01-02 .items-txt-col {
    margin-top: 0;
  }
}
.items .items-row--01-03 {
  margin-top: max(-130px, -9.52vw);
}
@media screen and (max-width: 768px) {
  .items .items-row--01-03 {
    margin-top: 0;
  }
}
.items .items-row--01-04 {
  margin-top: 124px;
}
@media screen and (max-width: 768px) {
  .items .items-row--01-04 {
    margin-top: 13.86vw;
  }
}
.items .items-row--01-05 {
  margin-top: max(-130px, -9.52vw);
}
@media screen and (max-width: 768px) {
  .items .items-row--01-05 {
    margin-top: 0;
  }
}
.items .items-row--01-06 {
  align-items: center;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .items .items-row--01-06 {
    margin-top: 14.93vw;
  }
}
.items .items-row--01-06 .items-txt-col {
  margin-bottom: max(50px, 3.66vw);
}
@media screen and (max-width: 768px) {
  .items .items-row--01-06 .items-txt-col {
    margin-bottom: 0;
  }
}
.items .items-row--01-07 {
  margin-top: max(-130px, -9.52vw);
}
@media screen and (max-width: 768px) {
  .items .items-row--01-07 {
    margin-top: 0;
  }
}
.items .items-row--02-01 .items-txt-col {
  margin-top: min(100px, 7.32vw);
}
@media screen and (max-width: 768px) {
  .items .items-row--02-01 .items-txt-col {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .items .items-row--02-01 .items-desc {
    width: 84vw;
  }
}
.items .items-row--02-02 {
  margin-top: 0;
  align-items: center;
}
.items .items-row--02-02 .link-box {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .items .items-row--02-02 .link-box {
    margin-top: 7.73vw;
  }
}
.items .items-row--02-03 {
  margin-top: 145px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .items .items-row--02-03 {
    margin-top: 16.8vw;
    align-items: center;
  }
}
.items .items-row--02-03 .items-txt-col {
  margin-bottom: 0;
  margin-top: min(7.32vw, 100px);
}
@media screen and (max-width: 768px) {
  .items .items-row--02-03 .items-txt-col {
    margin-top: 0;
  }
}
.items .items-row--03-01 {
  align-items: center;
}
.items .items-row--03-02 {
  margin-top: 156px;
}
@media screen and (max-width: 768px) {
  .items .items-row--03-02 {
    margin-top: 16vw;
  }
}
.items .items-row--03-02 .items-txt-col {
  margin-bottom: 0;
}
.items-photo-col {
  padding-left: 3.5vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .items-photo-col {
    padding-left: 0;
    width: 100%;
  }
}
.items-wstyle {
  padding-top: 0.1em;
  padding-bottom: 0.5vw;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "garamond-premier-pro", serif;
  font-size: 1.17vw;
  font-weight: 300;
  color: #A8A8A8;
  letter-spacing: 0.5em;
  line-height: 1;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #D6D6D6;
  z-index: 10;
  width: 35.13vw;
  text-align: right;
  animation-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .items-wstyle {
    font-size: 4.26vw;
    width: 96vw;
    left: 6.13vw;
    padding-bottom: 2.13vw;
    letter-spacing: 0.5em;
  }
}
.items-wstyle span {
  display: inline-block;
  margin-right: 1.1em;
}
.items-wstyle img {
  display: inline-block;
  width: 16.47vw;
  margin-right: 1.8vw;
}
@media screen and (max-width: 768px) {
  .items-wstyle img {
    width: 60vw;
    margin-right: 6vw;
  }
}
.items-photo {
  margin-left: auto;
  width: 36.6vw;
  overflow: hidden;
  background-color: var(--items-bg-color);
}
@media screen and (max-width: 768px) {
  .items-photo {
    width: 84vw;
  }
}
.items-photo a {
  display: block;
}
.items-photo img {
  width: 100%;
}
.items-txt-col {
  flex: 1;
}
.items-ttl {
  font-family: "garamond-premier-pro", serif;
  color: #868686;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .items-ttl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
}
.items-ttl,
.items-ttl span {
  vertical-align: bottom;
  line-height: 1;
}
.items-ttl-inner {
  display: inline-block;
  position: relative;
  padding: 2.4% 1.8% 1.2% 2.4%;
}
@media screen and (max-width: 768px) {
  .items-ttl-inner {
    padding: 3.6% 2.2% 1.9% 2.2%;
  }
}
.items-ttl-inner::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 100%;
  background-color: var(--items-bg-color);
}
.items-ttl-style {
  padding-right: 0.4em;
  display: inline-block;
  position: relative;
  font-size: 1.53vw;
  letter-spacing: 0.6em;
}
@media screen and (max-width: 768px) {
  .items-ttl-style {
    font-size: 5.6vw;
  }
}
.items-ttl-style::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.14em;
  bottom: 0.04em;
  width: 1px;
  height: 0;
  background-color: #868686;
  transform: rotate(25deg);
}
.items-ttl-style img {
  margin-right: 1vw;
  display: inline-block;
  width: 8.05vw;
}
@media screen and (max-width: 768px) {
  .items-ttl-style img {
    margin-right: 3.2vw;
    margin-left: 1.5vw;
    width: 29.33vw;
  }
}
.items-ttl-num {
  position: relative;
  margin-left: 0.45em;
  margin-bottom: -0.1em;
  display: inline-block;
  font-size: 2.26vw;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .items-ttl-num {
    font-size: 8.26vw;
  }
}
.items-ttl-num img {
  display: inline-block;
  width: 2.19vw;
}
@media screen and (max-width: 768px) {
  .items-ttl-num img {
    width: 8vw;
  }
}
.items-desc {
  margin-top: min(5.41vw, 74px);
  font-size: 1.12rem;
  font-size: clamp(1.12rem, 0.5rem + 0.7220216606vw, 1.37rem); /* 18px @1366px - 22px @1920px */
  line-height: 2.5;
  letter-spacing: 0em;
  width: 29.28vw;
  max-width: 100%;
  min-width: 270px;
}
@media screen and (max-width: 1365px) {
  .items-desc {
    font-size: 1.31vw;
  }
}
@media screen and (max-width: 768px) {
  .items-desc {
    font-size: 3.73vw;
    line-height: 2.214;
    margin-top: 8.5vw;
    margin-inline: auto;
    width: 84vw;
    min-width: 0;
  }
}
.items .link-box {
  margin-top: min(5.85vw, 80px);
}
@media screen and (max-width: 768px) {
  .items .link-box {
    margin-top: 7.73vw;
    margin-inline: auto;
    width: 84vw;
  }
}

/* 商品セクションのレイアウト--------------------------- */
.layout-left {
  align-items: flex-end;
  column-gap: 11.4vw;
}
@media screen and (max-width: 768px) {
  .layout-left {
    align-items: center;
  }
}
.layout-left .items-photo-col {
  margin-left: 5.7vw;
}
@media screen and (max-width: 768px) {
  .layout-left .items-photo-col {
    margin-left: 0;
  }
}
.layout-left .link-box {
  margin-bottom: -0.32em;
}

.layout-right {
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .layout-right {
    flex-direction: column;
  }
}
.layout-right .items-photo-col {
  position: relative;
  margin-right: 8.78vw;
  padding-right: 0.73vw;
}
@media screen and (max-width: 768px) {
  .layout-right .items-photo-col {
    margin-right: 0;
    padding-right: 0;
  }
}
.layout-right .items-photo {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .layout-right .items-photo {
    margin-left: auto;
    margin-right: 0;
  }
}
.layout-right .items-wstyle {
  left: calc(100% + 10px);
  border-width: 1px 0 0 0;
  padding-block: 0.8vw 0;
}
@media screen and (max-width: 768px) {
  .layout-right .items-wstyle {
    padding-block: 0 1.86vw;
    left: 6.4vw;
    border-width: 0 0 1px 0;
  }
}
.layout-right .items-txt-col {
  margin-bottom: 10.39vw;
  margin-left: 12.81vw;
}
@media screen and (max-width: 768px) {
  .layout-right .items-txt-col {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.layout-small {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .layout-small {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.layout-small .items-txt-col {
  margin-top: min(156px, 11.42vw);
  margin-left: 9.2vw;
  flex: unset;
  width: 39.97vw;
}
@media screen and (max-width: 768px) {
  .layout-small .items-txt-col {
    margin-top: 0;
    width: 100%;
    margin-left: 0;
  }
}
.layout-small .items-photo-col {
  margin-left: 0;
  padding-left: 8.3vw;
}
.layout-small .items-photo {
  width: 29.28vw;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .layout-small .items-photo {
    width: 84vw;
    margin: 0 0 0 auto;
  }
}
.layout-small .link-box {
  margin-top: max(92px, 6.73vw);
}
@media screen and (max-width: 768px) {
  .layout-small .link-box {
    margin-top: 7.73vw;
  }
}

.layout-small-reverse {
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.layout-small-reverse .items-txt-col {
  margin-top: min(203px, 14.86vw);
  margin-left: 13.2vw;
}
@media screen and (max-width: 768px) {
  .layout-small-reverse .items-txt-col {
    margin-top: 0;
    width: 100%;
    margin-left: 0;
  }
}
.layout-small-reverse .items-photo-col {
  margin-left: 12.88vw;
  padding-left: 0;
}
.layout-small-reverse .items-photo {
  width: 29.28vw;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .layout-small-reverse .items-photo {
    width: 84vw;
    margin-top: 10.4vw;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .layout-sp-photo-reverse .items-photo {
    margin-left: 0;
    margin-right: auto;
  }
  .layout-sp-photo-reverse .items-wstyle {
    border-width: 1px 0 0 0;
    left: 86.4vw;
    padding-block: 2.2vw 0;
  }
}

/* おすすめ--------------------------- */
.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;
  }
}

/*f-banner*/
.f-banner {
  width: 100%;
  max-width: 600px;
  margin: min(19.03vw, 260px) auto 5% auto;
}
@media screen and (max-width: 768px) {
  .f-banner {
    margin-top: 45.33vw !important;
  }
}

.f-banner-list {
  width: 100%;
  margin: 0 auto;
}

.f-banner-list li {
  width: 100%;
  background: #fff;
  margin: 0 0 3% 0;
}

.f-banner-list li a {
  width: 100%;
  display: block;
  border: 1px solid #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .f-banner-list li a img {
    width: 90%;
    margin-inline: auto;
    display: block;
  }
}

.f-banner-list li a:hover {
  border: 1px solid #000;
  transition: 0.3s;
}

.f-banner-list li .txt {
  width: 100%;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 2em;
  text-align: center;
  margin: 2% 0 0 0;
}

/*f-banner02*/
.f-banner02 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 5% auto;
  padding: 0 0 0 0;
}

.f-banner02-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.f-banner02-list li {
  width: 47%;
  background: #fff;
}

.f-banner02-list li a {
  width: 100%;
  display: block;
  border: 1px solid #000;
  transition: 0.3s;
}

.f-banner02-list li a:hover {
  border: 1px solid #000;
  transition: 0.3s;
}

/*footer*/
.footer {
  color: #000;
  letter-spacing: 0.3em;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}

.footer .insta {
  display: block;
  width: 450px;
  border: 1px solid #eee;
  margin: 0 auto 3% auto;
  transition: 0.3s;
}

.footer .insta:hover {
  border: 1px solid #000;
  transition: 0.3s;
}

.footer_sns {
  margin: 26px 0 0;
}

.footer_snsNode {
  display: inline-block;
  margin: 0 10px;
  width: 30px;
}

.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}

.footer_copyright {
  font-family: "Helvetica", serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 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%);
}

.in-btn {
  width: 40px;
  margin: 0 auto 1% auto;
  display: block;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  /*f-banner*/
  .f-banner {
    width: 80%;
    margin: 15% auto 10% auto;
  }
  .f-banner-m {
    width: 80%;
    margin: 0 auto 15% auto !important;
  }
  .f-banner-list {
    width: 100%;
    margin: 0 auto;
  }
  .f-banner-list li {
    width: 100%;
    margin: 0 0 3% 0;
    background: #fff;
  }
  .f-banner-list li a {
    width: 100%;
    display: block;
    border: 1px solid #000000;
    transition: 0.3s;
  }
  .f-banner-list li a:hover {
    border: 1px solid #000000;
    transition: 0.3s;
  }
  /*f-banner02*/
  .f-banner02 {
    width: 100%;
    margin: 0 auto 5% auto;
  }
  .f-banner02-list {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .f-banner02-list li {
    width: 47%;
    background: #fff;
    margin: 0 0 5% 0 !important;
  }
  .f-banner02-list li a {
    width: 100%;
    display: block;
    border: 1px solid #000000;
    transition: 0.3s;
  }
  .f-banner02-list li a:hover {
    border: 1px solid #000000;
    transition: 0.3s;
  }
  /*footer*/
  .footer {
    color: #000;
    letter-spacing: 0.3em;
    padding: 0 0 20% 0;
    position: relative;
    text-align: center;
  }
  .footer .insta {
    display: block;
    width: 450px;
    border: 1px solid #eee;
    margin: 0 auto 3% auto;
    transition: 0.3s;
  }
  .footer .insta:hover {
    border: 1px solid #000;
    transition: 0.3s;
  }
  .footer_sns {
    margin: 0 0 0 0;
  }
  .footer_snsNode {
    display: inline-block;
    margin: 0 10px;
    width: 30px;
  }
  .f-ow {
    width: 120px;
    margin: 25px auto 0 auto;
  }
  .footer_copyright {
    font-family: "Helvetica", serif;
    font-size: 8px;
    letter-spacing: 0.02em;
    margin: 34px 0 0;
    color: #000000;
  }
  #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%);
  }
  .in-btn {
    width: 35px;
    margin: 0 auto 1% auto;
    display: block;
    opacity: 1;
  }
  .foot_fix_btn {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .foot_fix_btn.js_hide {
    transform: translateY(100%);
  }
  .foot_fix_btn ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0;
  }
  .foot_fix_btn ul li:nth-child(1) {
    width: 33.33%;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    border-right: 1px solid #eee;
  }
  .foot_fix_btn ul li:nth-child(2) {
    width: 33.33%;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    border-right: 1px solid #eee;
  }
  .foot_fix_btn ul li:nth-child(3) {
    width: 33.33%;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
  }
  .foot_fix_btn ul li a {
    display: block;
  }
  .order-sp {
    display: flex;
    flex-wrap: wrap;
  }
  .order-sp .data01 {
    order: 1;
    width: 100%;
  }
  .order-sp .data02 {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .pc-on {
    display: none !important;
  }
}

.sp-on {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-on {
    display: block !important;
  }
}

@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 */
