@charset "utf-8";

*:focus {
  outline: none;
}
body{
    margin: 0;
    padding: 0;
}

.sticky__container{
	display: flex;
	background: #e3e6e8;
	min-height: 100vh;
	/*justify-content: center;*/
}

.title_logo {
	position: absolute;
	top: 20px;
	right: 20px;
	width:  4%;
	z-index: 100;
}

.title_logo img {
	width:  100%;
}

.subtitle_logo {
	position: absolute;
	top: 45px;
	right: 20px;
	width:  4%;
	z-index: 100;
}

.subtitle_logo img {
	width:  100%;
}

.sub_no {
	position: absolute;
	top: 34px;
	left: 10px;
	width:  15%;
	z-index: 100;
}

.sub_no img {
	width:  100%;
}

/*画像スライド*/

.container{
  width: 100%;
  position: relative;
  aspect-ratio: 2 / 3;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 2 / 3;
  width: 100%;
  
  animation: image-switch-animation 15s infinite;
}

    .src1 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_1.jpg"); }
    .src2 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_2.jpg"); }
    .src3 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_3.jpg"); }
    .src4 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_4.jpg"); }
    .src5 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_5.jpg"); }
    .src6 { background-image: url("https://www.dot-st.com/static/docs/jeanasis/pages/260605_pants/images/main_6.jpg"); }

@keyframes image-switch-animation {
0% { opacity: 0; pointer-events: none; }
      /* 最初の0.5秒（全体の3.33%）で前の画像の上にフェードイン */
      7.33% { opacity: 1; pointer-events: auto; }
      /* 2.5秒（16.66%）の終点まで不透明度1を維持（次の画像が重なり始める） */
      16.66% { opacity: 1; }
      /* 次の画像がフェードインし終える（20%時点）まで、背後で不透明度を維持しながらフェードアウト */
      30% { opacity: 0; pointer-events: none; }
      100% { opacity: 0; pointer-events: none; }
    }
}

.image:nth-of-type(1) { animation-delay: 0s; }
    .image:nth-of-type(2) { animation-delay: -12.5s; }
    .image:nth-of-type(3) { animation-delay: -10s; }
    .image:nth-of-type(4) { animation-delay: -7.5s; }
    .image:nth-of-type(5) { animation-delay: -5s; }
    .image:nth-of-type(6) { animation-delay: -2.5s; }


#lp_wrap{
	max-width: 550px;
    width: 100%;
	text-align: center;
	margin: 0% auto;
	padding: 0;
	display: block;
    color: #333;
	background-color: #FFFFFF;
    font-weight: 400;
    overflow: hidden;
    line-height: 1.6em;
    letter-spacing: .5px;
	padding-bottom: 5%;
    font-family: "Noto Sans JP", sans-serif;
	border-left: 0px solid #000;
	border-right: 0px solid #000;
    
}
#lp_wrap img{
    width: 100%;
    vertical-align: bottom;
    line-height: 0;
    border: none;
}
#lp_wrap ul,#lp_wrap li{
	padding: 0;
	/*overflow: hidden;*/
    list-style: none;
}
#lp_wrap a,#lp_wrap a:hover,#lp_wrap a:link{
    text-decoration: none;
    opacity: 1;
}

/* ==================================== 
header
======================================= */
#lp_head{
	width: 100%;
    margin: 0% auto;
	display: block;
	padding: 0;
	position: relative;
}
.head{
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	position: relative;
}
#lp_head .visual{
	width: 100%;
	position: relative;
	display: inline-block;
	z-index: 2;
	overflow: hidden;
}
#lp_head .visual{
    filter: blur(15px);
    opacity: 0;
    animation: blurFadeIn 1.5s ease-out forwards;
    margin: auto;
}
@keyframes blurFadeIn {
  0% {
    filter: blur(15px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
#lp_head .title{
	position: absolute;
	width: 50%;
	right: 5%;
	top: 5%;
	z-index: 5;
}
#lp_head .heading{
	font-size:30px;
	text-align: center;
	margin: 10% auto;
	font-weight: 500;
	position: relative;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 700;
	font-style: normal;
}
#lp_head .heading:before {
  content: '';
  position: absolute;
  bottom: -50px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
.lead{
    width: 100%;
    font-size:14px;
    text-align: center;
    margin:7% auto 3%;
    position: relative;
    display: inline-block;
    line-height: 2.6em;
	font-weight: 400;
}
#lp_head .lead span{
	font-weight: 500;
	font-size: 110%;
}
#lp_head .title{
    opacity: 0;
	transform: translateY(50px);
	transition: 1.5s all 0.4s ease;
}
#lp_head .heading{
    opacity: 0;
	transform: translateY(50px);
	transition: 1.5s all 0.2s ease;
}
#lp_head.ac .title,#lp_head.ac .heading{
	opacity: 1;
    transform: translate(0);
    
}

/* ======================================================================== 
　　Contents
=========================================================================== */

#lp_contents{
    width: 100%;
    text-align: center;
    position:relative;
    margin: 0 auto;
    display: block;
}

#lp_contents .list_box .list .credit{
	font-size: 16px;
	text-align: center;
	margin: 0 auto;
	position: relative;
}

.credit_list a{
	font-size: 12px;
	text-align: left;
	position: absolute;
	left: 0;
	color: #000;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.credit_list2 a{
	width: 100%;
	font-size: 12px;
	text-align: right;
	position: absolute;
	left: 0;
	color: #000;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.credit_list3 a{
	width: 100%;
	font-size: 12px;
	text-align: center;
	position: absolute;
	left: 0;
	color: #000;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
}

#lp_contents section{
	width: 100%;
	display:inline-block;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

#lp_contents section .item_tex2{
	width: 94%;
	text-align: center;
	margin: 4% auto 0;
	padding-bottom: 4%;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
}

#lp_contents section .item_tex .credit2 {
    position: relative;
	margin: 1% auto;
    text-align: left;
	padding-bottom: 2%;
}
#lp_contents section .item_tex .credit2 a{
	color: #000;
    font-size: 10px;
	line-height: 1.3em;
	letter-spacing: 0px;
}
#lp_contents section .item_tex .credit2 a::after {
    width: 80px;
    content: "CHECK";
    position: absolute;
    top:50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 10px;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
	background: #333;
	color: #fff;
	line-height: 2em;
	border-radius: 0px;

}

#lp_contents section .item_tex2 .credit {
    position: relative;
	margin: 1% auto;
    text-align: left;
	padding-bottom: 2%;
}
#lp_contents section .item_tex2 .credit a{
	color: #000;
    font-size: 15px;
	line-height: 1.3em;
	letter-spacing: 0px;
}
#lp_contents section .item_tex2 .credit a::after {
    width: 80px;
    content: "BUY";
    position: absolute;
    top:45%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 14px;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
    text-align: center;
	background: #333;
	color: #fff;
	padding: 0.9% 1% 1.2%;
	border-radius: 0px;
	letter-spacing: 0.1em;

}

#lp_contents section .item_tex2 .credit2 {
    position: relative;
	margin: 1% auto;
    text-align: left;
	padding-bottom: 2%;
}
#lp_contents section .item_tex2 .credit2 a{
	color: #000;
    font-size: 10px;
	line-height: 1.3em;
	letter-spacing: 0px;
}
#lp_contents section .item_tex2 .credit2 a::after {
    width: 80px;
    content: "CHECK";
    position: absolute;
    top:50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 10px;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
	background: #333;
	color: #fff;
	line-height: 2em;
	border-radius: 0px;

}

#lp_contents section .style_box{
	width: 100%;
	overflow: hidden;
	text-align: center;
	margin: 0% auto;
	position: relative;
}

#lp_contents section .style_box ul li:nth-of-type(1){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(2){
	width: 50%;
	float: left;
	margin: 2% 2% 8% 3%;
	position: relative;
	z-index: 100;
}
#lp_contents section .style_box ul li:nth-of-type(3){
	width: 50%;
	float: left;
	margin: 40% 2% 8% -8%;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(4){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(5){
	width: 40%;
	float: left;
	margin: 45% 2% 8% 3%;
	position: relative;
	z-index: 100;
}
#lp_contents section .style_box ul li:nth-of-type(6){
	width: 60%;
	float: left;
	margin: 0% 2% 8% -8%;
	position: relative;
	z-index: 1;
}

#lp_contents section .style_box ul li:nth-of-type(7){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(8){
	width: 40%;
	float: left;
	margin: 2% 0 8% 10%;
	position: relative;
	z-index: 100;
}
#lp_contents section .style_box ul li:nth-of-type(9){
	width: 40%;
	float: left;
	margin: 2% 10% 8% 0;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(10){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(11){
	width: 50%;
	float: left;
	margin: 2% 2% 8% 3%;
	position: relative;
	z-index: 100;
}
#lp_contents section .style_box ul li:nth-of-type(12){
	width: 50%;
	float: left;
	margin: 40% 2% 8% -8%;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(13){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(14){
	width: 54%;
	float: left;
	margin: 0% 2% 8% 3%;
	position: relative;
	z-index: 1;
}
#lp_contents section .style_box ul li:nth-of-type(15){
	width: 40%;
	float: left;
	margin: 40% 2% 8% -2%;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(16){
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 6;
}
#lp_contents section .style_box ul li:nth-of-type(17){
	width: 40%;
	float: left;
	margin: 2% 0 2% 10%;
	position: relative;
	z-index: 100;
}
#lp_contents section .style_box ul li:nth-of-type(18){
	width: 40.1%;
	float: left;
	margin: 2% 10% 2% -0.1%;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(19){
	width: 100%;
	margin: 2% 0% 10%;
	position: relative;
	z-index: 100;
}

#lp_contents section .style_box ul li:nth-of-type(20){
	width: 80%;
	margin: 15% auto 0%;
	position: relative;
	z-index: 100;
	font-family: "bahnschrift-semicondensed", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 11px;
	text-align: center;
	line-height: 1.8em;
}

#lp_contents section .style_box ul li:nth-of-type(20) img{
	width: 55%;
	margin: 0 auto 10%;
}


/*=====ボタンall=====*/
.btn_all a{
	background: #fff;
	color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% auto 7%;
    width: 50%;
    padding: 1.5% 0%;
    transition: 0.3s ease-in-out;
    font-size: 22px;
    line-height: 1.5em;
    font-family: "bahnschrift-semicondensed", sans-serif;
    font-weight: 700;
    font-style: normal;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
}
.btn_all a:hover {
	opacity: 0.7;
    font-weight: 700;
}
.btn_all a:after {
	background: #fff;
	color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0% auto 5%;
    width: 50%;
    padding: 1.5% 0%;
    transition: 0.3s ease-in-out;
    font-size: 22px;
    line-height: 1.5em;
    font-family: "bahnschrift-semicondensed", sans-serif;
    font-weight: 700;
    font-style: normal;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
}
.btn_all_series a:hover:after {
    border-color: #FFFFFF;
}


.pc{
    display:block;
}
.sp {
	display:none;
}
.clear{
    clear: both;
}
.Left{
    float: left;
}
.Right{
    float: right;
}


/**********************************************
　　　　　　　　　　　　SP
**********************************************/

@media only screen and (max-width:768px){
	#lp_wrap {
		width: 100%;
		padding-bottom: 10%;
	}
	#lp_head .title{
		width: 50%;
		right: 5%;
	}
	#lp_head .heading{
		font-size: 20px;
	}
	#lp_head .heading:before{
		bottom: -35px;
	}
	#lp_head .lead{
		font-size: 12px;
	}
	#lp_contentul s .list_box .ttl{
		font-size: 30px;
	}
	#lp_contents .list_box{
		padding: 10% 0;
	}
	#lp_contents .list_box .list{
		width: 95%;
	}
	#lp_contents .list_box .list .credit{
		font-size: 16px;
		letter-spacing: 0px;
	}
	
.credit_list a{
	font-size: 12px;
}
	
.credit_list2 a{
	font-size: 12px;
}
	
.credit_list3 a{
	font-size: 12px;
}

	.btn_all a{
		width: 65%;
		font-size: 20px;
		padding: 3.2% 0%;
	}
	
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
	
	#lp_contents section .item_tex .credit2 {
		position: relative;
		margin: 1% auto;
		text-align: left;
		padding-bottom: 2%;
		padding-top: 5%;
	}
	
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }

}

.fade01{
	opacity: 0;
	transition: 1.5s all 0s ease;
}
.fade02{
	opacity: 0;
	transition: 1.8s all 0.4s ease;
}
.fade03{
	opacity: 0;
	transition: 2s all 0.6s ease;
}
.fade04{
	opacity: 0;
	transition: 1.8s all 0.8s ease;
}
.fade01.ac,.fade02.ac,.fade03.ac,.fade04.ac{
	opacity: 1;
    transform: translate(0);
}

.anim01 {
    opacity: 0;
    transform: translateY(-50px);
    transition: 1.5s all 0.4s ease;
}
.anim02 {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.5s all 0.4s ease;
}

.anim03 {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1.5s all 0.4s ease;
}

.anim04 {
    opacity: 0;
    transform: translateX(50px);
    transition: 1.5s all 0.4s ease;
}

.anim01.ac,.anim02.ac {
	opacity: 1;
    transform: translate(0);
}


