*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}


@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');


*:focus{
  outline: none;
}
body,a,p{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    text-decoration: none;
	font-size: clamp(14px, 0.9vw, 20px);
    line-height: 1.8;
}

ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
img{
  width: 100%;
}
h1{}
h2{}
h3{font-size: clamp(16px, 1.1vw, 30px); font-weight: 500; line-height: 2rem;margin-top: 1rem;}
h4{}
h5{}

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bold{
  font-weight: bold;
}

/* header */

/* Animation */

.bgi-slide01.active{
  animation: bgi-slide01;
  animation-duration: 3s;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes bgi-slide01{
  0%{
    top: 0;
    left: 0;
  }
  100%{
    top: 30%;
    left: 30%;
  }
}
.bgi-slide02.active{
  animation: bgi-slide02;
  animation-duration: 2s;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes bgi-slide02{
  0%{
    top: 0;
    left: 0;
  }
  100%{
    top: 12%;
    left: -20%;
  }
}
.bgi-slide03.active{
  animation: bgi-slide03;
  animation-duration: 2s;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes bgi-slide03{
  0%{
    top: 0;
    left: 0;
  }
  100%{
    top: 10%;
    left: 12%;
  }
}
.bgi-slide04.active{
  animation: bgi-slide04;
  animation-duration: 2s;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes bgi-slide04{
  0%{
    top: 0;
    left: 0;
  }
  100%{
    top: 10%;
    left: 10%;
  }
}

.fade-out{
  opacity: 1;
}
.fade-out.active,
.fadeout{
  will-change: transform;
  animation: fadeout;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
@keyframes fadeout{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

.zoomin{
  opacity: 0;
}
.fadezoomin,
.zoomin.active{
  animation: fadezoomin 2s ease-out 0.4s 1 forwards;
  opacity: 0;
}

@keyframes fadezoomin{
  0% {
    filter: blur(4px);
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
.fadezoom{
  animation: fadezoom 1.8s ease-out 0.4s 1 forwards;
  opacity: 0;
  filter: blur(4px);
}
@keyframes fadezoom{
  0% {
    opacity: 0;
  }
  100% {
    filter: blur(0);
  }
  80%, 100% {
    opacity: 1;
  }
}
.fade-in{
  opacity: 0;
}
.fade-in{
  will-change: transform;
  animation: fadein;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
@keyframes fadein{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.fadeUp{
  opacity: 0;
}
.fadeUp.active{
  will-change: transform;
  animation: fadeinUp;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp{
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeDown{
  opacity: 0;
}
.fadeDown.active{
  will-change: transform;
  animation: fadeDown;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeDown{
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeLeft{
  opacity: 0;
}
.fadeLeft.active{
  will-change: transform;
  animation: fadeinLeft;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeinLeft{
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeRight{
  will-change: transform;
  opacity: 0;
}
.fadeRight.active{
  animation: fadeinRight;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}

@keyframes fadeinRight{
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
	
}
.clippath{
  animation: clippath;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath{
  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);
  }
}
.clippath02{
  animation: clippath02;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath02{
  0%{
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  }
  100%{
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/* slide */
.slide{
  will-change: transform;
  animation-name: slide;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slide{
  0%{
    opacity: 0;
    transform: translateY(20px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
/* fade */
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 2.0s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
/* header-slideup */
.header-slideup,
.slideup{
  opacity: 0;
}
.header-slideup,
.slideup.active{
  animation-name: slideup;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: transform;
}
@keyframes slideup{
  0%{
    opacity: 0;
    transform: translate( 0, 10px);
  }
  100%{
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* slideup */
.slideup{
  opacity: 0;
}
.slideup.active{
  animation-name: slideup;
animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: transform;
}
@keyframes slideup{
  0%{
    opacity: 0;
    transform: translateY(20px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/* slideleft */
.slideleft{
  opacity: 0;
}
.slideleft.active{
  animation-name: slideleft;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slideleft{
  0%{
    opacity: 0;
    transform: translateX(-60px);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

/* slideright */
.slideright{
  opacity: 0;
}
.slideright.active{
  animation-name: slideright;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slideright{
  0%{
    opacity: 0;
    transform: translateX(60px);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

/* clip-path01 */
.clip-path01{
  opacity: 0;
}
.clip-path01.active{
  animation-name: clip-path01;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clip-path01{
  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);
  }
 }

/* clip-path02 */
 .clip-path02{
  opacity: 0;
}
.clip-path02.active{
  animation-name: clip-path02;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clip-path02{
  0%{
    opacity: 0;
    -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);
  }
 }


.marker{
  display: inline;
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 40%;
  transition: all 1s ease-in-out;
  opacity: 1;
}
.marker.active{
  background-size: 100% 40%;
  transition-delay: 0.4s;
}
.flex-box{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.flex-box01{
  justify-content: flex-end;
}
.flex-box02{
  justify-content: center;
}
/* header */
.logo {
    width: 15%;
    margin: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

header{
  position: relative;
  margin-bottom: 6%;
  overflow: hidden;
}
/** KV **/
.pc_kv_img {
	position: relative;
	width: 100%;
}


.kv_title01 {
    position: absolute;
    top: 55%;
    left: 33.5%;
    width: 21%;
    z-index: 3;
    animation-duration: 1.2s;
    animation-delay: 0.6s;
}
.kv_title02 {
position: absolute;
    top: 39%;
    left: 51.5%;
    width: 16%;
    z-index: 3;
	    animation-duration: 1.4s;
    animation-delay: 1.2s;
}
.kv_title03 {
	  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	display: block;
	width: 40%;
	z-index: 1;	
	animation-duration: 1.2s;
    animation-delay: 0.4s;
}

/* lead */
.lead{
  margin-bottom: 3%;
  text-align: center;
}
/*.lead img{
	max-width: 560px;
	margin: 0 auto 3rem;
}*/
.lead-text_img{width: 80%; margin: 0 auto 8rem;
}
.lead-text_img img{max-width: 740px; margin: 0 auto;}
.lead-text {font-family: 'Shippori Mincho', serif;font-size: clamp(13px, 1.05vw, 22px);letter-spacing: 0.1rem;line-height: 2;}
.lead-text span {font-size: clamp(24px,1.7vw,40px);letter-spacing: 0.2rem;line-height: 2;}
/* lineup */
.lineup .inner{
background-color: #FCFCF6;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 0;
    position: relative;
}
.lineup .title01{
  margin: 0 auto;
	max-width: 300px;
    position: relative;
    bottom: -2.5rem;
    z-index: 1;
}

.lineup .title02{
  width: 28%;
  margin: 0 auto 5%;
}
.lineup ul{
  margin-bottom: 6%;
  justify-content: center;
}
.lineup ul:last-child{
  margin-bottom: 0;
}
.lineup li{
    width: 16.5%;
    margin-right: 7%;
}
.lineup li:nth-child(2){
  animation-delay: 0.2s;
}
.lineup li:nth-child(3){
  animation-delay: 0.4s;
}
.lineup li:nth-child(4){
  animation-delay: 0.6s;
}
.lineup li:nth-child(5){
  animation-delay: 0.8s;
}
.lineup li:nth-child(6){
  animation-delay: 1.0s;
}
.lineup li:nth-child(7){
  animation-delay: 1.2s;
}
.lineup li:last-child{
  margin-right: 0;
}
.lineup a{
  transition: 0.6s ease-in-out; 
}
.lineup a:hover{
  opacity: 0.8;
}
/* item_box共通 */
.item-box{
	width: 100%;
	margin: 2rem auto;
	overflow: hidden;
	display: flex;
	padding: 0 50px 50px;
  }
.item-box .mono-area{
  position: relative;
}
.item-box .mono{
  position: absolute;
  top: 0;
  z-index: 2;
}
.item-box .mono.active{
  animation-duration: 0.5s;
  animation-delay: 1.2s;
}
/* style.01 */
#style01 {margin: 8% 0 0 0;padding: 2% 0 0 0;}
#style01 h3{margin-left: 40px;}
#style01 .tittle01{}
#style01 .tittle01 img{position: relative; width: 200px; margin-left: 40px;}
#style01 .box1{position: relative;width: 50%;}
#style01 .item-img01{position: relative; width: 70%; margin: 40px 0px 0px 0px;}
#style01 .item-img02{position: relative; width: 70%; margin: 40px 0 0 auto;}
#style01 .box2{width: 50%; margin: 0 3%;}
#style01 .tittle01 p{max-width: 590px;margin: 4rem 40px 9rem;text-align: justify;}
#style01 .color_pacth{margin: 7rem 40px;}
#style01 .color_pacth p{width: 40%; }
#style01 .color_pacth ul{display: flex;}
#style01 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style01 .photo03 {position: absolute;top: 0%;left: 0%;z-index: -1;opacity: 0.3;filter: blur(3px); width: 100%;}
/* style.02 */
#style02 {position: relative; margin: 8% 0 0 0;padding: 2% 0 0 0; padding: 1rem 0;}
#style02 .item-box {}
#style02 h3{margin-left: 40px;}
#style02 .tittle01{}
#style02 .tittle01 img{width: 200px; margin-left: 40px;}
#style02 .box1{max-width: 623px; margin: 0 0 0 auto;}
#style02 .item-img01{position: relative;width: 82%; margin: 40px 0 40px -40px;}
#style02 .item-img02{width: 76%; margin: 0 0 0 auto;}
#style02 .box2{width: 50%; margin: 0 3%;}
#style02 .tittle01 p{max-width: 590px;margin: 4rem 40px 9rem;text-align: justify;}
#style02 .color_pacth{margin: 7rem 40px;}
#style02 .color_pacth p{width: 40%; }
#style02 .color_pacth ul{display: flex;}
#style02 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style02 .photo03 {position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3;filter: blur(4px);}
#style02 .box02 .photo-area .photo03, .item-box .mono.active, .bgi-slide01.active, .bgi-slide02.active{animation-delay: 1s;}
#style02 .bg-section {background-color: #DDE3EC; position: absolute;top: 30%;width: 100%;height: 70%;z-index: -1;}
/* style.03 */
#style03 {margin: 8% 0 0 0;padding: 2% 0 0 0;}
#style03 h3{margin-left: 40px;}
#style03 .tittle01{}
#style03 .tittle01 img{width: 200px; margin-left: 40px;}
#style03 .box1{max-width: 777px; margin: 0 auto 0 0;}
#style03 .item-img01{position: relative; width: 90%; margin: 40px auto 40px 0;}
#style03 .item-img02{position: relative; width: 70%; margin: 0 0 0 auto;}
#style03 .box2{width: 50%; margin: 0 auto 3% 0;}
#style03 .tittle01 p{max-width: 590px; margin: 4rem 40px 9rem; text-align: justify;}
#style03 .color_pacth{margin: 7rem 40px;}
#style03 .color_pacth p{width: 40%; }
#style03 .color_pacth ul{display: flex;}
#style03 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style03 .bg-gry{background-color: #eef2ff;width: 100%; height: 100%;}
#style03 .photo03 {position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3; filter: blur(3px); width: 100%;}
/* style.04 */
#style04 {position: relative;margin: 8% 0 0 0;padding: 2% 0 0 0;padding: 1rem 0;}
#style04 h3{margin-left: 40px;}
#style04 .tittle01{}
#style04 .tittle01 img{width: 200px; margin-left: 40px;}
#style04 .box1{width: 39%; margin: 40px 3% 0 auto;}
#style04 .item-img01{position: relative;width: 100%; margin: 0px auto 40px 0px;}
#style04 .item-img02{width: 80%; margin: 0 auto 0 0;position: relative;}
#style04 .box2{width: 58%; margin: 0 auto 3% 0;}
#style04 .tittle01 p{max-width: 590px; margin: 4rem 40px 9rem; text-align: justify;}
#style04 .color_pacth{margin: 7rem 40px;}
#style04 .color_pacth p{width: 40%; }
#style04 .color_pacth ul{display: flex;}
#style04 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style04 .photo03 {width: 100%; position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3; filter: blur(3px);}
#style04 .box02 .photo-area .photo03, .item-box .mono.active, .bgi-slide01.active, .bgi-slide02.active{animation-delay: 1s;}
#style04 .bg-section {background-color: #DDE3EC; position: absolute;top: 30%;width: 100%;height: 70%;z-index: -1;}
/* style.05 */
#style05 {margin: 8% 0 0 0;padding: 2% 0 0 0;}
#style05 h3{margin-left: 40px;}
#style05 .tittle01{}
#style05 .tittle01 img{width: 200px; margin-left: 40px;}
#style05 .box1{width: 50%; margin: 0 3% 0 auto;}
#style05 .item-img01{width: 80%; margin: 40px 0 40px auto;position: relative;}
#style05 .item-img02{width: 75%; margin: -10% auto 0 -10%;z-index: 1; position: relative;}
#style05 .box2{width: 50%; margin: 0 auto 3% 3%;}
#style05 .tittle01 p{max-width: 590px; margin: 4rem 40px 9rem; text-align: justify;}
#style05 .color_pacth{margin: 7rem 40px;}
#style05 .color_pacth p{width: 40%; }
#style05 .color_pacth ul{display: flex;}
#style05 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style05 .bg-gry{background-color: #eef2ff;width: 100%; height: 100%;}
#style05 .photo03 {position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3;}
/* style.06 */
#style06 {position: relative;margin: 8% 0 0 0;padding: 2% 0 0 0;padding: 1rem 0;}
#style06 h3{margin-left: 40px;}
#style06 .tittle01{}
#style06 .tittle01 img{width: 200px; margin-left: 40px;}
#style06 .box1{max-width: 623px; margin: 0 3% 0 auto;}
#style06 .item-img01{width: 90%; margin: 40px 0 70px auto;}
#style06 .item-img02{position: relative;width: 70%; margin: 0 auto 0 0;}
#style06 .box2{width: 50%; margin: 0 auto 3% 0;}
#style06 .tittle01 p{max-width: 590px; margin: 4rem 40px 9rem; text-align: justify;}
#style06 .color_pacth{margin: 7rem 40px;}
#style06 .color_pacth p{width: 40%; }
#style06 .color_pacth ul{display: flex;}
#style06 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style06 .photo03 {position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3; filter: blur(3px); width: 100%;}
#style06 .bg-section {background-color: #DDE3EC; position: absolute;top: 30%;width: 100%;height: 70%;z-index: -1;}
/* style.07 */
#style07 {margin: 8% 0 0 0;padding: 2% 0 0 0;}
#style07 h3{margin-left: 40px;}
#style07 .tittle01{}
#style07 .tittle01 img{width: 200px; margin-left: 40px;}
#style07 .box1{width: 50%; margin: 0 3% 0 auto;}
#style07 .item-img01{position: relative;width: 100%; margin: 0px 0 40px 0px;}
#style07 .item-img02{width: 75%; margin: 0% auto 0 0;z-index: 1; position: relative;}
#style07 .box2{width: 50%; margin: 0 auto 3% 3%;}
#style07 .tittle01 p{max-width: 590px; margin: 4rem 40px 9rem; text-align: justify;}
#style07 .color_pacth{margin: 7rem 40px;}
#style07 .color_pacth p{width: 40%; }
#style07 .color_pacth ul{display: flex;}
#style07 .color_pacth li{width: 30px;margin: 2rem 10px 10px;}
#style07 .bg-gry{background-color: #eef2ff;width: 100%; height: 100%;}
#style07 .photo03 {width: 100%; position: absolute;top: 0;left: 0;z-index: -1;opacity: 0.3;}
#style07 .box02 .photo-area .photo03, .item-box .mono.active, .bgi-slide01.active, .bgi-slide02.active{animation-delay: 1s;}
/* slick */
.slick-prev:before{
  content: url(../../../200230608/anyfam_summer_list/img/stylingitem-arrow001.svg) !important;
  width: 5vw;
  height: 5vw;
}
.slick-next:before{
  content: url(../../../200230608/anyfam_summer_list/img/stylingitem-arrow002.svg) !important;
  width: 5vw;
  height: 5vw;
}
.slick-prev, .slick-next{
  width: 2.5vw !important;
  height: 2.5vw !important;
}
.slick-prev{
  top: 85% !important;
  left: -3vw !important;
  padding: 10px 0 10px 10px !important;
}
.slick-next{
  top: 85% !important;
  right: -3vw !important;
  padding: 10px 10px 10px 0 !important;
}





/* カート */
.link-box{
  max-width: 590px;
	margin: 4rem 40px 9rem;
}
.link-box .main{
  padding:0 70px 1%;
border-bottom: 1px solid #000;
}
.link-box .mix{
  padding: 2% 70px 2%;
}
.link-box p{
  text-align: left;
  line-height: 1.8;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.25rem;
}
.cart-title{
  position: relative;
  width: 60%;
  font-size: clamp(14px, 1.2vw, 20px);
  text-transform: uppercase;
	letter-spacing: 2px;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: clamp(13.5px, 1vw, 21px);
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 0.9vw, 21px);
  margin: 0 0.5rem 1px 0;
}
.cart-yen.price-space img{
  margin-right: 1rem;
}
.cart-yen span{
  margin: 0 0 -4px 5px;
  font-size: clamp(14px, 1vw, 16px);
}
.cart-btm .btn{
  padding: 0.8% 5.25%;
  margin: 0 0 0 20px;
  color: #fff;
  font-size: clamp(9px, 0.6vw, 12px);
}
.main .cart-btm .btn{
  box-sizing: border-box;
  border: 1px solid #A5B1C5;
  background: #A5B1C5;
  color: #fff;
}
.mix .cart-btm .btn{
  box-sizing: border-box;
  border: 1px solid #707070;
  background: #fff;
  color: #000000;
}
.btn-arrow{
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  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 .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  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;
}
.btn-arrow img *{
  stroke-width: 5;
  stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -1rem;
}
.l-icon::before {
content: url(../img/l-size.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: 24px 24px;
    margin: 0 10px 0 0;
    position: relative;
    top: 1px;
}

/* category */
.category{
  width: 32%;
  margin: 0 auto 8%;
}
.category .title{
  width: 100%;
  margin: 0 auto 6%;
}
.category .flex-box{
  justify-content: space-between;
  width: 100%;
}
.category .flex-box a{
  width: 46%;
  transition: 0.6s ease-in-out;
}
.category .flex-box a:hover{
  opacity: 0.8;
}
/*  */
.end-box{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4% auto;
}
.end-box .txt {
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 4.2em;
    text-align: center;
    color: #534949;
    font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.end-box div{display: flex; width: 100%; margin: 25% auto 15%; justify-content: center;}

/*footer */
.banner-block{
	display: flex;
  width: 100%;
  max-width: 525px;
  margin: 0 auto 16%;
  position: relative;
  z-index: 1;
}

.foot_info {display: flex;margin-bottom: 6%;}
.foot_info div p{font-size: clamp(12px, 1.0vw, 16px); margin: 6% 1%; line-height: 2rem; letter-spacing: 1px;}
.foot_info div {width: 50%;}
.foot_info div ul{margin: 50px 25%;}
.foot_info div ul li{text-align: left;border-bottom: 1px solid #000;margin-bottom: 1rem;}
.foot_info div ul li a{font-family: system-ui;font-size: clamp(10px, 0.9vw, 14px);}
footer{
    color: #000;
    letter-spacing: 0.3em;
    padding: 16% 0 3% 0;
    position: relative;
    text-align: center;
}
footer a{
  transition: 0.3s ease-in-out;
}
footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  width: 36px;
  margin: 20px auto;
}
.f-ow {
  width: 120px;
  margin: 0px auto 0 auto;
}
.copyright {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin: 140px 0 0;
}

#pagetop{
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 50px;
  z-index: 99;
}

/* ナビ */
#nav{
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5vw;
  max-width: 180px;
  margin-top: -0.8vw;
  z-index: 99;
}
#nav .flex-box{
  flex-direction: column;
}
#nav ul li{
  width: 100%;
  margin: 0;
}
#nav ul li:not(:last-child){
  margin-bottom: 0;
}
#nav ul li .photo{
  position: relative;
}
#nav ul li .photo::after{
  content: "";
  display: block;
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#nav ul li .photo img{
  transition: 0.6s ease-in-out;
}
#nav ul li a span{
  position: absolute;
  top: 0;
  display: block;
  height: 0;
  width: 100%;
  opacity: 0;
  padding-top: 130%;
  transition: 0.6s ease-in-out;
}

#nav ul li a:hover .photo img{
  filter: grayscale(100);
}
#nav ul li a:hover span{
  opacity: 0.2;
}
#nav .text{
  margin-bottom: 1%;
}
/* sidenav-point */
.sidenav-point{
  position: fixed;
  top: 20%;
  left: 3%;
  width: 3vw;
  z-index: 3;
}
.sidenav-point img{
  width: 1.9vw;
  margin-bottom: 0.5em;
}
.step{
  display: flex;
  flex-direction: column;
  margin-left: 0.5em;
}
.step li{
  line-height: 1;
}
.step li:not(:last-child){
  margin-bottom: 0.5em;
}
.step a {
  display: inline-block;
	color: #B6B6B6;
	transform: rotate(90deg);
	    font-size: 1.4rem;
}
.step a:hover{
  color: #000;
}
.step a.current{
  color: #000;
}

@media screen and (min-width:768px) and (max-width:1279px){






  .styling{
    width: 80%;
    min-width: inherit;
  }
  .styling .slide-title{
    font-size: 1.8vw;
  }
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
	@keyframes bgi-slide01{
    0%{
      top: 0;
      left: 0;
    }
    100%{
      top: 7%;
      left: 8%;
    }
  }
	
  @keyframes bgi-slide02{
    0%{
      top: 0;
      right: 0;
    }
    100%{
      top: 10%;
      left: -20%;
    }
  }
	@keyframes bgi-slide03{
    0%{
      top: 0;
      left: 0;
    }
    100%{
      top: 7%;
      left: 8%;
    }
  }
		@keyframes bgi-slide04{
    0%{
      top: 0;
      left: 0;
    }
    100%{
      top: 10%;
      left: -20%;
    }
  }
  .flex-box{
    flex-direction: column;
	  flex-wrap: wrap;
	  width: 100%;
	  margin: 2rem auto;
  }
  /*  */
  .item .icon.fade.active,
  .clip-path02.active,
  .link-box.fade.active{
    animation-delay: 0s;
  }
.logo {
width: 36%;
    margin: 0.2rem;
    position: absolute;
    top: 0;
    right: 0;
}
  /* header */
  header .header_logo img{
    position: static;
    width: 66%;
    margin: auto;
    padding: 3% 0 2%;
    top: auto;
    right: auto;
  }
header .sp_logo{
    position: absolute;
    top: 3%;
    width: 30%;
    left: 3%;
}	
  header .photo-box{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  header .title01{
    width: 100%;
    bottom: 0;
    animation-delay: 1.2s;
  }
  header .title02{
    top: auto;
    bottom: 5.5%;
    left: 3%;
    width: 94%;
    animation-duration: 1.2s;
    animation-delay: 2s;
  }

.kv_title01 {top: 47.5%;
    left: 22%;
    width: 35%;}
.kv_title02 {    top: 38.5%;    left: 51%;    width: 32%;}
.kv_title03 {width: 70%; top: 45%;}
	
/* lead */
.lead{padding: 5% 2% 0;}
.lead img {width: 100%;}	
.lead-text_img {width: 90%;}
.lead-text_img{width: 90%; margin: 0 auto 3rem;}
.lead-text span {font-size: 1.2rem;line-height: 2rem;letter-spacing: 0;}
/* main-nav   */
  .main-nav{
    width: 90%;
  }
  .main-nav li{
    width: 100%;
    margin-bottom: 5%;
  }
/* lineup   */

.lineup{
    width: 100%;
    padding: 8% 0 4%;
  }
.lineup .inner{padding: 1.5rem 0;}
	
  .lineup .title01{
    width: 33%;
    margin-bottom: 6%;
	  bottom: -2.5rem;
  }
  .lineup .title02{
    width: 44%;
  }
  /* swiper */
  .lineup .swiper-wrapper{
    padding: 10% 0;
  }
  .lineup .swiper-slide{
    transform: scale(0.7);
  }
  .lineup .swiper-slide.swiper-slide-active,
  .lineup .swiper-slide-duplicate-active{
    transform: scale(1.1);
    -webkit-transition: 1s 0s ease;
    transition: 1s 0s ease;
  }
  .lineup .swiper-rtl .swiper-button-prev:after,
  .lineup .swiper-button-prev:after{
    content: url(../img/swiper-prev.svg) !important;
    width: 4.5vw;
    height: 4.5vw;
    margin-left: 10vw;
  }
  .lineup .swiper-button-next:after,
  .lineup .swiper-rtl .swiper-button-next:after{
    content: url(../img/swiper-next.svg) !important;
    width: 4.5vw;
    height: 4.5vw;
    margin-right: 10vw;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 0 !important;
    width: 22vw !important;
    height: 56% !important;
    top: 27% !important;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: 0% !important;
    width: 22vw !important;
    height: 56% !important;
    top: 27% !important;
  }

  /* style */

  .slick-prev,
  .slick-next{
    top: 50% !important;
    padding: 0 !important;
    width: 5vw !important;
    height: 5vw !important;
  }
  .slick-prev{
    left: -6% !important;
  }
  .slick-next{
    right: -6% !important;
  }
  .styling .cross{
    width: 24%;
    margin: 6% auto 3%;
  }
	
.item-box{
	width: 95%;
	margin: 2rem auto;
	overflow: hidden;
	display: block;
	padding: 0;
  }
h3 {margin-top: 1.8rem; text-align: center;}	
/* style.01 */
#style01 .box1{width: 100%;}
#style01 .box2{width: 100%;margin: 0;}
#style01 .tittle01 img {width: 125px; margin: 0 auto;}
#style01 h3 {margin: 2.8rem auto;}
#style01 h3 span{color: #35BBE5;font-weight: 900;font-size: 1.2rem;}
#style01 .item-img01 {width: 68.5%;}
#style01 .item-img02 {width: 69.8%;}
#style01 .tittle01 p {margin: 3rem 9% 4rem;}
#style01 .color_pacth {margin: 2rem 5%;}
#style01 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style01 .color_pacth p {width: 35%;}

/* style.02 */
#style02 .box1{width: 100%;}	
#style02 .box2 {width: 100%; margin: 0;}	
#style02 .item-box{display: flex; flex-direction: column-reverse;}	
#style02 .tittle01 img {width: 125px; margin: 0 auto;}
#style02 h3 {margin: 2.8rem auto;}
#style02 h3 span{color: #000;font-weight: 900;font-size: 1.2rem;}	
#style02 .item-img01 {width: 94.133%; margin: 40px 0 40px auto;}
#style02 .item-img02 {width: 75%; margin: 0 auto 0 0;}
#style02 .tittle01 p {margin: 3rem 9% 4rem;}
#style02 .color_pacth {margin: 2rem 5%;}
#style02 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style02 .color_pacth p {width: 35%;}
#style02 .bg-section {top: 4%;height: 96%;}
/* style.03 */
#style03 .box1{width: 100%;}
#style03 .box2{width: 100%;margin: 0;}
#style03 .tittle01 img {width: 125px; margin: 0 auto;}
#style03 h3 {margin: 2.8rem auto;}
#style03 h3 span{color: #F17F8F;font-weight: 900;font-size: 1.2rem;}	
#style03 .item-img01 {width: 100%;}
#style03 .item-img02 {width: 80%;}
#style03 .tittle01 p {margin: 3rem 9% 4rem;}
#style03 .color_pacth {margin: 2rem 5%;}
#style03 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style03 .color_pacth p {width: 35%;}	
/* style.04 */
#style04 .box1{width: 100%;margin: 0px 3% 0 auto;}	
#style04 .box2 {width: 100%; margin: 0;}	
#style04 .item-box{display: flex; flex-direction: column-reverse;}	
#style04 .tittle01 img {width: 125px; margin: 0 auto;}
#style04 h3 {margin: 2.8rem auto;}
#style04 h3 span{color: #371F50;font-weight: 900;font-size: 1.2rem;}	
#style04 .item-img01 {width: 100%; margin: 40px 0 40px auto;}
#style04 .item-img02 {width: 86%; margin: 40px 0 0 auto; z-index: 1; position: relative;}
#style04 .tittle01 p {margin: 3rem 9% 4rem;}
#style04 .color_pacth {margin: 2rem 5%;}
#style04 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style04 .color_pacth p {width: 35%;}	
#style04 .bg-section {top: 3.7%;height: 96.3%;}
/* style.05 */
#style05 .box1{width: 100%;}
#style05 .box2{width: 100%;margin: 0;}
#style05 .tittle01 img {width: 125px; margin: 0 auto;}
#style05 h3 {margin: 2.8rem auto;}
#style05 h3 span{color: #2E5FFF;font-weight: 900;font-size: 1.2rem;}	
#style05 .item-img01 {width: 100%;}
#style05 .item-img02 {width: 88%; margin: 0 0 0 auto;}
#style05 .tittle01 p {margin: 3rem 9% 4rem;}
#style05 .color_pacth {margin: 2rem 5%;}
#style05 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style05 .color_pacth p {width: 35%;}		
/* style.06 */
#style06 .box1{width: 100%;}	
#style06 .box2 {width: 100%; margin: 0;}	
#style06 .item-box{display: flex; flex-direction: column-reverse;}	
#style06 .tittle01 img {width: 125px; margin: 0 auto;}
#style06 h3 {margin: 2.8rem auto;}
#style06 h3 span{color: #FFB5B5;font-weight: 900;font-size: 1.2rem;}	
#style06 .item-img01 {width: 100%; margin: 40px 0 70px 0px;}
#style06 .item-img02 {width: 76%; margin: 0px 0 0 auto;}
#style06 .tittle01 p {margin: 3rem 9% 4rem;}
#style06 .color_pacth {margin: 2rem 5%;}
#style06 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style06 .color_pacth p {width: 35%;}		
#style06 .bg-section {top: 4%;height: 96%;}
/* style.07 */
#style07 .box1{width: 100%;}
#style07 .box2{width: 100%;margin: 0;}
#style07 .tittle01 img {width: 125px; margin: 0 auto;}
#style07 h3 {margin: 2.8rem auto;}
#style07 h3 span{color: #EF9A07;font-weight: 900;font-size: 1.2rem;}	
#style07 .item-img01 {width: 100%; margin: 40px auto;}
#style07 .item-img02 {width: 88%; margin: 0 0 0 auto;}
#style07 .tittle01 p {margin: 3rem 9% 4rem;}
#style07 .color_pacth {margin: 2rem 5%;}
#style07 .color_pacth li {width: 24px; margin: 2rem 6px 10px;}
#style07 .color_pacth p {width: 35%;}	
	

/* sidenav */
  .sidenav-point{
    top: 30vh;
    left: 2%;
  }
  .sidenav-point img{
    width: 3vw;
  }
.step{margin-left: 0.05em;}
.step a{font-size: 1.2rem;}
.step li:not(:last-child) {margin-bottom: 0;}
	
/* */
  .link-box{
    width: 98%;
    min-width: inherit;
    margin: auto;
  }
  .link-box .main{
	  padding: 0 20px 2%;
    padding-bottom: 2%;
  }
  .link-box .mix{
	  padding: 0 20px 2%;
    padding-top: 5%;
  }
  .link-box .cart-btm{
    align-items: space-between;
    margin-bottom: 3%;
    border-bottom: 1px solid rgba(0,0,0,0);
  }
  .cart-title{
    width: 42%;
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.06rem;
  }
  .cart-title span{
    margin-left: 3em;
  }
  .cart-yen{
    width: 38%;
    font-size: 0.975rem;
    line-height: initial;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: 0.95rem;
    margin: 0 0.3rem 0 0;
  }
  .cart-yen.price img{
    margin-right: 0.82rem
  }
  .cart-yen span{
    font-size: 0.6rem;
    margin: 2px;
  }
  .cart-btm .btn{
    margin-left: 2%;
    padding: 1.4% 7.6%;
    font-size: 0.75rem;
  }
  .size-area{
    margin: -1em auto 0.25em;
    font-size: 0.9rem;
  }
.l-icon::before {width: 24px;height: 24px; background-size: 24px 24px;top: 0px;}

/* footer */
.end-box{margin-bottom: 4rem;}
.end-box .txt {font-size: 13px;	line-height: 3.2em;}
.end-box div {display: block;width: 30%;}
.end-box div a img{margin-bottom: 30%;}
.banner-block {display: block;width: 69.8%;}
.foot_info{display: block;}
.foot_info div { width: 100%;}
.foot_info div p{line-height: 1.5rem;margin: 18% 1%;}	
.foot_info div ul {display: flex; flex-wrap: wrap;justify-content: center;margin: 50px 0;}	
.foot_info div ul li {text-align: left; width: 90%;}	
	.footer{
    margin-bottom: 2%;
    padding-bottom: 20%;
  }
  .in-btn{
    margin-bottom: 2rem;
  }
  .f-ow{width: 25%; margin-top: 1.5rem;}
  .footer_copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 3% 0 0 0;
  }

  #footnav{
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 99;
  }

}


.bg-section {
    background-color: #DDE3EC;
    position: absolute;
    top: 4%;
    width: 100%;
    height: 96%;
    z-index: -1;
}
	

