@charset "UTF-8";
:root{
  --font-notosans: "Noto Sans JP", sans-serif;
  --font-notoserif: "Noto Serif JP", serif;
  --font-ShipporiMincho: "Shippori Mincho B1", serif;
  --font-ZenKakuGothic: "Zen Kaku Gothic New", sans-serif;
  --font-Inter-V: "Inter-V", serif;
  --color01: #1e928f;
  --color02: #6db7e6;
  --color03: #8c71bd;
  --color04: #fc5d60;
}

@font-face {
  src: url(../font/Inter-V.ttf) format(truetype);
  font-family: Inter-V;
  }

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  color: #000;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none;
}
ul, ol {
  margin: 0;
  padding: 0;
}
ul[role=list], ol[role=list] {
  list-style: none;
}
li {
  list-style: none;
}
a{
  text-decoration: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*animation*/
.rotaate-fadein{
  opacity: 0;
}
.rotaate-fadein.active{
  animation-name: rotaate-fadein;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform-origin: top;
  opacity: 0;
}
@keyframes rotaate-fadein {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(4deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
}
}
.clippath-bottom {
  opacity: 0;
}
.clippath-bottom.active {
  animation-name: clippath-bottom;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-bottom {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.clippath-left {
  opacity: 0;
}
.clippath-left.active {
  animation-name: clippath-left;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-left {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-center{
  opacity: 0;
}
.clippath-center.active{
  animation-name: clippath-center;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-center {
  0% {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
  }
  10%{
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.slide-right {
  opacity: 0;
  transform-origin: top right;
}
.slide-right.active {
  animation-name: slide-right;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-right {
  0% {
    opacity: 1;
    transform: translate(10%, 0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.slide-up {
  opacity: 0;
}
.slide-up.active {
  animation-name: slide-up;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-up02 {
  opacity: 0;
}
.slide-up02.active {
  animation-name: slide-up02;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-up02 {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down {
  opacity: 0;
}
.slide-down.active {
  animation-name: slide-down;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-down {
  0% {
    opacity: 1;
    transform: translateY(-14%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade {
  opacity: 0;
}
.fade.active {
  animation-name: fade;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomin{
  transform: scale(1.3);
  transform-origin: top;
  opacity: 0;
}
.zoomin.active {
  animation-name: zoomin;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  
}
@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  10%{
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.image{
  width: 100%;
}
.flex-box{
  display: flex;
}
.flex-reverse{
  flex-direction: row-reverse;
}
.slide-box{
  overflow: hidden;
}
/*header*/
.header {
  position: relative;
  aspect-ratio: 1280 / 718;
  width: 100%;
  background: rgb(38 162 233 / 0.4);
  overflow: hidden;
}
.header .photo02{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(550.4265 / 1280 * 100%);
}
.header .mask{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.header .icon01{
  position: absolute;
  top: 0;
  left: 0;
  width: calc(219 / 1280 * 100%);
}
.header .icon02{
  position: absolute;
  bottom: -2%;
  right: 0;
  width: calc(553.9106 / 1280 * 100%);
}
.header .title01{
  position: absolute;
  top: 28%;
  left: 27%;
  width: calc(682.5063 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 1s;
}
.header .title02{
  position: absolute;
  top: 59%;
  left: 49%;
  width: calc(377.0273 / 1280 * 100%);
  animation-duration: 0.6s;
  animation-delay: 1.4s;
}
.header .logo-box{
  position: absolute;
  top: 2%;
  right: 1%;
  width: calc(180 / 1280 * 100%);
  z-index: 3;
}
/* lead */
.lead{
  justify-content: space-between;
  align-items: center;
  width: calc(953.6671 / 1280 * 100%);
  margin: 1% auto 0;
}
.lead .text-box{
  width: calc(385.5635 / 953.6671 * 100%);
}
.lead .text{
  font-family: var(--font-ShipporiMincho);
  font-size: calc(16 / 1280 * 100vw);
  font-weight: 500;
  line-height: calc(31 / 16);
  letter-spacing: 0;
  white-space: nowrap;
}
.lead .text span{
  display: block;
  margin-top: 8%;
  font-size: calc(20 / 1280 * 100vw);
}
.lead .title01{
  width: calc(356.7593 / 385.5635 * 100%);
  margin: 3% 0;
}
.lead .photo-box{
  position: relative;
  width: calc(512.5689 / 953.6671 * 100%);
}
.lead .photo01{
  position: relative;
  width: calc(284 / 512.5689 * 100%);
  z-index: 2;
}
.lead .photo02{
  width: calc(403 / 512.5689 * 100%);
  margin: -44% -10% 0 auto;
}
.lead .title02{
  position: absolute;
  top: 14%;
  right: 9%;
  width: calc(287.8055 / 512.5689 * 100%);
  z-index: 3;
}
/* mainnav-------------------------- */
.mainnav{
  width: calc(1168 / 1280 * 100%);
  margin: 4% auto 0;
}
.mainnav .list{
  justify-content: space-between;
  flex-wrap: wrap;
}
.mainnav .list .item{
  position: relative;
  width: calc(576 / 1168 * 100%);
  margin-top: 1.5%;
}
.mainnav .list .item .image{
  border-radius: 20px;
}
.mainnav .list .item .number{
  position: absolute;
  top: 10%;
  width: calc(105.0801 / 576 * 100%);
}
.mainnav .list .item:nth-child(odd) .number{
  left: 6%;
}
.mainnav .list .item:nth-child(even) .number{
  right: 6%;
}
.mainnav .list .item:nth-child(4) .number{
  top: 4%;
  scale: 1.2;
}
.mainnav .list .item .title-box{
  position: absolute;
  bottom: 6%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
}
.mainnav .list .item .title-box .title01{
  text-align: center;
  color: #fff;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(18 / 1280 * 100vw);
  font-weight: bold;
  transition: 0.2s ease;
}
.mainnav .list .item .title-box .title02{
  margin-top: 2%;
  text-align: center;
  color: #fff;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(33 / 1280 * 100vw);
  font-weight: 600;
  transition: 0.2s ease;
}
.mainnav .list .item:hover .image{
  opacity: 0.4;
}
.mainnav .list .item:nth-child(1):hover .title01,
.mainnav .list .item:nth-child(1):hover .title02 {
  color: var(--color01);
}
.mainnav .list .item:nth-child(2):hover .title01,
.mainnav .list .item:nth-child(2):hover .title02 {
  color: var(--color02);
}
.mainnav .list .item:nth-child(3):hover .title01,
.mainnav .list .item:nth-child(3):hover .title02 {
  color: var(--color03);
}
.mainnav .list .item:nth-child(4):hover .title01,
.mainnav .list .item:nth-child(4):hover .title02 {
  color: var(--color04);
}
/*link----------------------------------*/
.link {
  position: relative;
  width: calc(300 / 500 * 100%);
  margin: 8% auto 0;
}
.link .cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link .cart:not(:last-child) {
  margin-bottom: 0.3em;
}
.link .cart__title,
.link .cart__brand {
  color: #000;
  font-family: var(--font-notosans);
  font-size: calc(12 / 1280 * 100vw);
  font-weight: 300;
  letter-spacing: 0.01rem;
  line-height: 1.3;
}
.link .size-area {
  margin-top: 0.35em;
  text-align: left;
  font-family: var(--font-notosans);
  font-size: calc(12 / 1280 * 100vw);
  font-weight: 300;
}
.link .cart__price-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.link .cart__price {
  display: flex;
  align-items: center;
  color: #000;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(14 / 1280 * 100vw);
  letter-spacing: 0.06rem;
}
.link .cart__price--btn {
  position: relative;
  margin-left: 0.5em;
  padding: 0.3em 0.8em;
  border: 1px solid ;
  font-family: var(--font-Inter-V);
  font-size: calc(10 / 1280 * 100vw);
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1;
}
.link .cart__price--btn span img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  width: 1em;
  transition: 0.4s ease-in;
}
.link .cart__price--btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.link .main {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #C2C2C2;
}
.link._02 .main{
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.link .main .cart__price--btn {
  color: #fff;
}
.layered01 .link .main .cart__price--btn{
  background: var(--color01);
  border: 1px solid var(--color01);
}
.layered02 .link .main .cart__price--btn{
  background: var(--color02);
  border: 1px solid var(--color02);
}
.layered03 .link .main .cart__price--btn{
  background: var(--color03);
  border: 1px solid var(--color03);
}
.layered04 .link .main .cart__price--btn{
  background: var(--color04);
  border: 1px solid var(--color04);
}
@media (hover: hover) and (pointer: fine){
  .link .cart:hover .cart__price--btn span {
    transform: translateX(-0.35em);
  }
  .link .cart:hover .cart__price--btn span img {
    opacity: 1;
    margin-right: -0.95em;
  }
}
.link .size-area:not(:last-child) {
  margin-bottom: 0.5em;
}
.link .size-area a:hover {
  border-bottom: 1px solid #000;
}
/* main-wrapper------------------------ */
.main-wrapper{
  margin-top: 4%;
}
/* layered-sectioin-------------------- */
.layered-sectioin .section-photo{
  position: relative;
}
.layered01 .section-photo{
  background: var(--color01);
}
.layered02 .section-photo{
  background: var(--color02);
}
.layered03 .section-photo{
  background: var(--color03);
}
.layered04 .section-photo{
  background: var(--color04);
}
.layered01 .section-photo .icon,
.layered03 .section-photo .icon{
  position: absolute;
  top: 0;
  left: 0;
  width: calc(420 / 1280 * 100%);
}
.layered02 .section-photo .icon,
.layered04 .section-photo .icon{
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(400 / 1280 * 100%);
}
.layered-sectioin .section-photo .number{
  position: absolute;
  top: 22%;
  width: calc(143.5047 / 1280 * 100%);
}
.layered01 .section-photo .number,
.layered03 .section-photo .number{
  left: 14%;
}
.layered02 .section-photo .number,
.layered04 .section-photo .number{
  top: 18%;
  left: 51%;
  scale: 1.1;
}
.layered-sectioin .section-photo .title{
  position: absolute;
  top: 42%;
}
.layered-sectioin .section-photo .title.active{
  animation-delay: 0.4s;
}
.layered01 .section-photo .title{
  left: 14%;
  width: calc(408.6456 / 1280 * 100%);
}
.layered02 .section-photo .title{
  left: 52%;
  width: calc(449.3977 / 1280 * 100%);
}
.layered03 .section-photo .title{
  left: 14%;
  width: calc(508.4854 / 1280 * 100%);
}
.layered04 .section-photo .title{
  left: 52%;
  width: calc(402.9457 / 1280 * 100%);
}
 /* fix-area------------------------ */
.fix-area{
  position: sticky;
  top: 2%;
  translate: 0 ;
  width: calc(405.263 / 1280 * 100%);
  margin-top: 6%;
  margin-left: calc(97 / 1280 * 100%);
}
.fix-area .title{
  width: 100%;
  margin-left: -4%;
}
.fix-area .list{
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 40%;
}
.fix-area .list .item{
  width: calc(120 / 392 * 100%);
  margin-bottom: 3%;
  overflow: hidden;
}
.fix-area .list .item .image{
  transition: 0.2s ease;
}
.fix-area .list .item:hover .image{
  scale: 1.1;
}
/*othernav*/
.othernav{
  position: sticky;
  top: 48%;
  right: 2%;
  translate: 0 -50%;
  margin: -22% 0 0 auto;
  width: calc(160 / 1280 * 100%);
  z-index: 9;
}
.layered01 .othernav{
  margin-top: -39%;
}
.layered02 .othernav{
  margin-top: -14%;
}
.layered03 .othernav{
  margin-top: -26%;
}
.layered04 .othernav{
  margin-top: -14%;
}
.othernav .title{
  width: calc(105.3676 / 160 * 100%);
  margin-inline: auto;
}
.othernav .item{
  position: relative;
  margin: 6% 0 0
}
.othernav .photo-link{
  position: relative;
  display: block;
}
.othernav .name{
  position: absolute;
  bottom: 6%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(18 / 1280 * 100vw);
  font-weight: 600;
  line-height: calc(22.3529 / 18);
}
.othernav .photo-link:hover .image{
  opacity: 0.4;
}
.othernav .item._01 .photo-link:hover .name{
  color: var(--color01);
}
.othernav .item._02 .photo-link:hover .name{
  color: var(--color02);
}
.othernav .item._03 .photo-link:hover .name{
  color: var(--color03);
}
.othernav .item._04 .photo-link:hover .name{
  color: var(--color04);
}
/* scroll-area------------------------ */
.scroll-area{
  width: calc(500 / 1280 * 100%);
  margin-top: -74%;
  margin-left: calc(546 / 1280 * 100%);
  padding-top: 3%;
  padding-bottom: 2%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
/* item-block--------------------------- */
.item-block{
  margin-bottom: 10%;
  padding-top: 3%;
}
.item-block .block-inner{
  width: calc(432 / 500 * 100%);
  margin-inline: auto;
}
.item-block .block-inner .number{
  width: 100%;
}
.item-block .block-inner .name{
  position: relative;
  margin-top: 0.3em;
  text-align: center;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(30 / 1280 * 100vw);
  font-weight: 800;
  line-height: 1.2;
}
.layered01 .item-block .block-inner .name{
  color: var(--color01);
}
.layered02 .item-block .block-inner .name{
  color: var(--color02);
}
.layered03 .item-block .block-inner .name{
  color: var(--color03);
}
.layered04 .item-block .block-inner .name{
  color: var(--color04);
}
.item-block .block-inner .name::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.25em;
}
.layered01 .item-block .block-inner .name::after{
  background: var(--color01);
}
.layered02 .item-block .block-inner .name::after{
  background: var(--color02);
}
.layered03 .item-block .block-inner .name::after{
  background: var(--color03);
}
.layered04 .item-block .block-inner .name::after{
  background: var(--color04);
}
.item-block .block-inner .text{
  margin-top: 6%;
  text-align: center;
  font-family: var(--font-notoserif);
  font-size: calc(15 / 1280 * 100vw);
  line-height: calc(28 / 15);
}
.item-block .block-inner .photo{
  margin-top: 4%;
  overflow: hidden;
}
.item-block .text-box {
  position: relative;
}
.item-block .text-box .bg{
  position: absolute;
  top: -75%;
  left: 0;
  display: block;
  width: 100%;
  height: 200%;
  clip-path: polygon(0 24%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}
.layered01 .item-block .text-box .bg{
  background: var(--color01);
}
.layered02 .item-block .text-box .bg{
  background: var(--color02);
}
.layered03 .item-block .text-box .bg{
  background: var(--color03);
}
.layered04 .item-block .text-box .bg{
  background: var(--color04);
}
.item-block .text-box .inner{
  width: calc(390 / 500 * 100%);
  margin-inline: auto;
}
.item-block .text-box .inner .name-title{
  width: 100%;
  margin-top: 6%;
}
.item-block .text-box .inner .point-line{
  width: 100%;
  margin-top: 4%;
}
.item-block .text-box .inner .text{
  margin-top: 2%;
  color: #fff;
  font-family: var(--font-notoserif);
  font-size: calc(16 / 1280 * 100vw);
  line-height: calc(27 / 16);
}
.item-block .text-box .link {
  margin-bottom: 12%;
}
.layered04 .item-block .text-box .link {
  margin-bottom: 14%;
}
.item-block .text-box .link .cart__title,
.item-block .text-box .link .cart__price,
.item-block .text-box .link .cart__price--btn,
.item-block .text-box .link .main,
.item-block .text-box .link .size-area
{
  color: #fff;
  border-color: #fff;
}
.item-block .text-box .link .main .cart__price--btn{
  background: #fff;
}
.layered01 .item-block .text-box .link .main .cart__price--btn{
  color: var(--color01);
}
.layered02 .item-block .text-box .link .main .cart__price--btn{
  color: var(--color02);
}
.layered03 .item-block .text-box .link .main .cart__price--btn{
  color: var(--color03);
}
.layered04 .item-block .text-box .link .main .cart__price--btn{
  color: var(--color04);
}
/* checkitem------------------- */
.checkitem{
  position: relative;
}
.checkitem .circle{
  width: calc(234.5769 / 500 * 100%);
  margin: -1% auto 0;
}
.layered01 .circle{
  margin-top: -3%;
}
.layered04 .circle{
  margin-top: -4%;
}
.checkitem .title{
  width: calc(128.7827 / 500 * 100%);
  margin: -21% auto 0;
}
.checkitem .checkitem{
  position: relative;
}
.checkitem .photo{
  width: calc(295 / 500 * 100%);
  margin: 0 auto 0;
}
.checkitem .icon-box{
  position: absolute;
  top: 15%;
  left: 12%;
  width: calc(100.8 / 500 * 100%);
}
.layered04 .checkitem .icon-box{
  left: 8%;
}
.checkitem .icon-box .inner{
  position: relative;
}
.checkitem .icon-box .inner .icon{
  animation-delay: 0.2s;
}
.checkitem .icon-box .inner .text{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  animation-delay: 0.6s;
}
.checkitem .item-title{
  text-align: center;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(18 / 1280 * 100vw);
  font-weight: 900;
  line-height: calc(26.1 / 18);
  letter-spacing: 0.02em;
}
.layered01 .checkitem .item-title{
  color: var(--color01);
}
.layered02 .checkitem .item-title{
  color: var(--color02);
}
.layered03 .checkitem .item-title{
  color: var(--color03);
}
.layered04 .checkitem .item-title{
  color: var(--color04);
}
.checkitem .link{
  margin-top: 3%;
}
.checkitem .link .main{
  border: none;
}
/* checkitem 02 ------------------ */
.checkitem._02{
  margin: 14% auto 0;
}
.checkitem._02 .photo-box{
  position: relative;
}
.checkitem._02 .photo{
  position: relative;
  left: 3%;
  width: calc(311.1055 / 500 * 100%);
  scale: 1.1;
}
.checkitem._02 .title{
  position: absolute;
  top: -3%;
  left: 13%;
  width: calc(157.8192 / 500 * 100%);
  margin: 0;
}
.checkitem._02 .arrow{
  position: absolute;
  top: -15%;
  right: 25%;
  width: calc(57.6995 / 500 * 100%);
}
.checkitem._02 .icon{
  position: absolute;
  top: 10%;
  right: 9%;
  width: calc(120.1904 / 500 * 100%);
}
.checkitem._02 .text{
  text-align: center;
  font-family: var(--font-notoserif);
  font-size: calc(15 / 1280 * 100vw);
  line-height: calc(27 / 15);
}
/* recommend------------------- */
.recommend{
  margin-top: 16%;
  padding-top: 16%;
  position: relative;
}
.recommend.active{
  animation-delay: 0.2s;
}
.layered01 .recommend{
  background: rgb(30 146 143 / 0.05);
}
.layered03 .recommend{
  background: rgb(140 113 189 / 0.05);
}
.recommend .circle{
  position: absolute;
  top: -7%;
  left: 50%;
  translate: -50% 0;
  width: calc(234.5769 / 500 * 100%);
}
.layered03 .recommend .circle{
  top: -12%;
}
.recommend .title{
  position: relative;
  width: calc(140.4707 / 500 * 100%);
  margin: -21% auto 0;
  z-index: 2;
}
.recommend .list-wrapper{
  position: relative;
  width: calc(350 / 500 * 100%);
  margin: 2% auto 0;
}
.recommend .slider{
  position: relative;
  width: 100%;
}
.recommend .item .image{
  width: 100%;
}
.recommend .item-title{
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(15 / 1280 * 100vw);
  font-weight: 600;
  text-align: center;
  line-height: calc(22 / 15);
  white-space: nowrap;
}
.layered01 .recommend .item-title{
  color: var(--color01);
}
.layered02 .recommend .item-title{
  color: var(--color02);
}
.layered03 .recommend .item-title{
  color: var(--color03);
}
.layered04 .recommend .item-title{
  color: var(--color04);
}
.recommend .link{
  width: calc(114.3622 / 175 * 100%);
  margin: 12% auto 0;
  padding-bottom: 3%;
}
.recommend .link .main{
  border: none;
}
.recommend .link .cart{
  display: block;
  margin-bottom: 0;
}
.recommend .link .cart__price--btn{
  margin: 6% 0 2% auto;
}
.recommend .link .size-area{
  margin-top: 0;
}
/* slider---------------------------- */
.slider .prev-arrow,
.slider .next-arrow {
  display: block;
  width: calc(16 / 350 * 100%);
  position: absolute;
  padding: 3%;
  background-size: cotain;
  background-repeat: no-repeat;
  transition: all .3s ease;
  cursor: pointer;
  z-index: 3;
}
.layered01 .slider .prev-arrow{
  background-image: url(../img/layered01-slidearrow01.svg);
}
.layered01 .slider .next-arrow{
  background-image: url(../img/layered01-slidearrow02.svg);
}
.layered02 .slider .prev-arrow{
  background-image: url(../img/layered02-slidearrow01.svg);
}
.layered02 .slider .next-arrow{
  background-image: url(../img/layered02-slidearrow02.svg);
}
.layered03 .slider .prev-arrow{
  background-image: url(../img/layered03-slidearrow01.svg);
}
.layered03 .slider .next-arrow{
  background-image: url(../img/layered03-slidearrow02.svg);
}
.slider01 .prev-arrow,
.slider01 .next-arrow{
  top: 24.5%;
}
.slider01 .prev-arrow{
  left: -6.5%;
}
.slider01 .next-arrow{
  right: -6.5%;
}
.slider02 .prev-arrow,
.slider02 .next-arrow{
  top: 40.5%;
}
.slider02 .prev-arrow{
  left: 12%;
}
.slider02 .next-arrow{
  right: 12%;
}


/* bottom-block------------------- */
.bottom-block{
  padding-top: 2%;
}
/* staff -------------------------------------*/
.staff{
  margin-top: 6%;
}
.staff .text {
  margin: 0 auto;
  font-size: min(12px, 0.8vw);
  font-family: "garamond", serif;
  letter-spacing: 1px;
  line-height: 2em;
  text-align: center;
}
/* banner ----------------------------------- */
.banner{
  width: calc(404.1905 / 1280 * 100%);
  margin: 4% auto 0;
}
.banner a{
  transition: 0.6s ease;
}
.banner a:hover{
  opacity: 0.7;
}
/*footer*/
.footer {
  margin-top: 3%;
  padding-bottom: 2%;
  text-align: center;
}
.footer-sns {
  display: block;
  width: 2.5%;
  min-width: 36px;
  margin: 0 auto 2%;
  opacity: 1;
  transition: 0.3s;
}
.footer-logo {
  display: block;
  width: calc(316.2825 / 1280 * 100%);
  margin: 2% auto 0 auto;
}
.footer-copyright {
  font-family: "Helvetica", serif;
  font-size: calc(8 / 1280 * 100vw);
  letter-spacing: 0.02em;
  margin: 1.5% 0 0;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}
@media (max-width: 768px){
  .otheritem .slider::before{
      width: 22%;
      height: 54%;
    }
}
@media (max-width: 767px){
  .otheritem .slider::before{
      width: 17%;
      height: 54%;
    }
}  
@media (max-width: 768px){
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* link------------------------ */
  .link{
    width: calc(315 / 375 * 100%);
    margin-top: 6%;
  }
  .link .cart__title,
  .link .cart__brand{
    font-size: calc(12 / 375 * 100vw);
    white-space: nowrap;
  }
  .link .cart__price{
    font-size: calc(14 / 375 * 100vw);
  }
  .link .cart__price--btn{
    margin-left: 0.5em;
    padding: 0.25em 0.75em;
    font-size: calc(10 / 375 * 100vw);
  }
  .link .other{
    margin-top: 0;
  }
  .link .size-area {
    font-size: calc(12 / 375 * 100vw);
  }
  /* header-box----------------------------- */
  .header-box{
    overflow: hidden;
  }
  /* header----------------------------- */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .photo01 .image{
    animation-duration: 1.4s;
    animation-delay: -0.4s;
  }
  .header .photo02{
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
  .header .photo02 .image{
    animation-duration: 1.4s;
    animation-delay: 0s;
  }
  .header .icon01{
    left: auto;
    right: 0;
    width: calc(229.527 / 375 * 100%);
  }
  .header .icon02{
    right: auto;
    left: 0;
    width: calc(344.0001 / 375 * 100%);
  }
  .header .title01{
    top: 35%;
    left: 8%;
    width: calc(313.6149 / 375 * 100%);
  }
  .header .title02{
    top: 70%;
    left: 7%;
    width: calc(175.3027 / 375 * 100%);
  }
  .header .logo-box {
    right: auto;
    top: 1%;
    right: 3%;
    width: calc(190.4297 / 375 * 100%);
  }
  /* lead-----------------------------  */
  .lead{
    width: 100%;
    flex-direction: column;
    margin-top: 8%;
    margin-bottom: 36%;
  }
  .lead .title-box{
    width: 100%;
  }
  .lead .text{
    text-align: center;
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(30 / 14);
  }
  .lead .text span{
    margin-top: 3%;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(38 / 16);
  }
  .lead .title01{
    width: calc(267.2007 / 375 * 100%);
    margin: 3% auto;
  }
  .lead .photo-box{
    margin-top: 22%;
    width: calc(334.8494 / 375 * 100%);
  }
  .lead .photo01{
    margin: 0 auto 0 -2%;
  }
  .lead .photo02{
    margin: -92% -6% 0 auto;
  }
  .lead .title02{
    top: 94%;
    right: 14%;
    width: calc(152.9204 / 334.8494 * 100%);
  }
  /* mainnav------------------------------- */
  .mainnav{
    width: calc(315 / 375 * 100%);
  }
  .mainnav .list{
    flex-direction: column;
  }
  .mainnav .list .item{
    width: 100%;
    margin-top: 3%;
  }
  .mainnav .list .item .image{
    border-radius: 10.9375px;
  }
  .mainnav .list .item .number{
    width: calc(63.6196 / 315 * 100%);
  }
  .mainnav .list .item .title-box .title01{
    font-size: calc(14 / 375 * 100vw);
  }
  .mainnav .list .item .title-box .title02{
    font-size: calc(22 / 375 * 100vw);
  }
  /* main-wrapper----------------- */
  .main-wrapper{
    margin-top: 20%;
  }
  /* layered-sectioin-------------------- */
  .layered01 .section-photo .icon,
  .layered03 .section-photo .icon{
    top: auto;
    bottom: 0;
    width: calc(220 / 375 * 100%);
  }
  .layered02 .section-photo .icon,
  .layered04 .section-photo .icon{
    width: calc(250 / 375 * 100%);
  }
  .layered-sectioin .section-photo .number{
    top: 5%;
    left: auto;
    right: 6%;
    width: calc(76.9858 / 375 * 100%);
  }  
  .layered02 .section-photo .number{
    top: 1%;
    right: 5%;
    width: calc(78.2603 / 375 * 100%);
  }
  div[class*="layered0"] .section-photo .title{
    top: auto;
    left: 50%;
    bottom: 13%;
    translate: -50% 0;
  }
  .layered-sectioin .section-photo .title.active{
    animation-delay: 0.2s;
  }
  .layered01 .section-photo .title{
    width: calc(314.8313 / 375 * 100%);
  }
  .layered02 .section-photo .title{
    width: calc(331.073 / 375 * 100%);
  }
  .layered03 .section-photo .title{
    width: calc(341.9023 / 375 * 100%);
  }
  .layered04 .section-photo .title{
    width: calc(297.0992 / 375 * 100%);
  }
  /* item-wrapper--------------------------- */
  .fix-area,
  .othernav{
    display: none;
  }
  /* scroll-area------------------- */
  .scroll-area{
    width: 100%;
    margin: 0 auto;
    padding-top: 6%;
    padding-bottom: 16%;
    box-shadow: none;
    overflow: hidden;
  }
  .layered04 .scroll-area{
    padding-bottom: 2%;
  }
  /* item-block---------------------- */
  .item-block{
    padding-top: 10%;
  }
  .item-block .block-inner{
    width: calc(315 / 375 * 100%);
  }
  .item-block .block-inner .number{
    scale: 1.4;
    margin: 0 auto 6%;
  }
  .item-block .block-inner .name{
    font-size: calc(26 / 375 * 100vw);
  }
  .item-block .block-inner .text{
    margin-top: 7%;
    text-align: justify;
    font-size: calc(15 / 375 * 100vw);
  }
  .item-block .text-box .inner{
    width: calc(315 / 375 * 100%);
  }
  .item-block .text-box .inner .text{
    font-size: calc(15 / 375 * 100vw);
    line-height: 2;
  }
  /* checkitem---------------------- */
  .checkitem .circle{
    width: calc(234.5769 / 375 * 100%);
    margin-top: 2%;
  }
  .layered04 .circle{
    margin-top: -4%;
  }
  .checkitem .title{
    width: calc(128.7827 / 375 * 100%);
    margin-top: -26%;
  }
  .checkitem .photo{
    width: calc(295 / 375 * 100%);
  }
  .checkitem .icon-box{
    left: 6%;
    width: calc(80 / 375 * 100%);
  }
  .layered04 .checkitem .icon-box{
    left: 6%;
  }
  .checkitem .icon-box .inner .icon{
    animation-delay: 0s;
  }
  .checkitem .icon-box .inner .text{
    animation-delay: 0.4s;
  }
  .checkitem .item-title{
    font-size: calc(18 / 375 * 100vw);
    line-height: 26 / 18;
  }
  .checkitem .link{
    margin-top: 6%;
  }
  /* checkitem02--------------------  */
  .checkitem._02 .photo{
    width: calc(248.8844 / 375 * 100%);
  }
  .checkitem._02 .title{
    width: calc(138.8809 / 375 * 100%);
  }
  .checkitem._02 .arrow{
    width: calc(46.1596 / 375 * 100%);
  }
  .checkitem._02 .icon{
    width: calc(96.1484 / 375 * 100%);
  }
  .checkitem._02 .text{
    width: calc(313.9951 / 375 * 100%);
    margin-inline: auto;
    text-align: justify;
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 15);
  }
  /* recommend---------------------- */
  .recommend .circle{
    width: calc(234.5769 / 375 * 100%);
  }
  .recommend .title{
    width: calc(140.4707 / 375 * 100%);
    margin-top: -21%;
  }
  .recommend .list-wrapper{
    width: calc(350 / 375 * 100%);
  }
  .recommend .item-title{
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(22 / 15);
    letter-spacing: 0.02em;
  }
  .recommend .link{
    width: calc(114.3622 / 175 * 100%);
  }
  /* slider------------------------------ */
  .slider01 .prev-arrow{
    left: 2%;
  }
  .slider01 .next-arrow{
    right: 2%;
  }
  .slider02 .prev-arrow{
    left: 6%;
  }
  .slider02 .next-arrow{
    right: 6%;
  }
  /* bottom-block-------------------- */
  .bottom-block{
    padding-top:0;
  }
  /* category------------------------ */
  .category .title{
    width: calc(196.9184 / 375 * 100%);
  }
  .category .list{
    width: 100%;
    margin-top: 3%;
  }
  .category .item::after{
    display: none;
  }
  /* footnav------------------------ */
  .staff{
    margin-top: 16%;
  }
  .staff .text {
    font-size: 3vw;
  }
  /* banner-------------------------- */
  .banner{
    width: calc(320 / 375 * 100%);
    margin-top: 10%;
  }
  /* footer------------------------ */
  .footer {
    margin-top: 10%;
    padding-bottom: 18%;
  }
  .footer-logo {
    width: 76%;
  }
  .footer-copyright {
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 3% 0 0 0;
  }
  /* footnav----------------------------- */
  .footnav{
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  .footnav .list{
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    width: calc(334 / 375 * 100%);
    background: rgb(255 255 255 / 1);
  }
  .footnav .list .item{
    width: calc(166 / 334 * 100%);
    background: rgb(0 0 0 / 0.7);
  }
  .footnav .list .item:nth-child(1) a.current{
    display: block;
    background: var(--color01);
  }
  .footnav .list .item:nth-child(2) a.current{
    display: block;
    background: var(--color02);
  }
  .footnav .list .item:nth-child(3) a.current{
    display: block;
    background: var(--color03);
  }
  .footnav .list .item:nth-child(4) a.current{
    display: block;
    background: var(--color04);
  }
  .pagetop {
    right: 0;
    bottom: 0;
    width: calc(42 / 375 * 100%);
  }
}