@charset "utf-8";

body {
	position: relative;
	width: 100%;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
	font-size: 14px;
}

p.roboto {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}

/* -------------------- wrap container */

div.wrap {
	display: flex;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

div.wrap.season01 {
	background-image: url("../images/bk_pattern-spring.jpg");
	background-repeat: repeat;
}
div.wrap.season02 {
	background-image: url("../images/bk_pattern-summer.jpg");
	background-repeat: repeat;
}


@media screen and (min-width: 768px) {

	div.wrap {
		min-width: 980px;
	}

}

/* -------------------- container */

div.container {
	position: relative;
	z-index: 100;
	order: 2;
	width: 100%;
	background-color: #fff;
	margin: 0 auto;
}

figure.bk-left ,
figure.bk-right {
	display: none;
}

@media screen and (min-width: 767px) {
	div.container {	
		width: 50%;
	}

	figure.bk-left ,
	figure.bk-right {
		position: relative;
		display: block;
		width: 25%;
		height: auto;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}

	figure.bk-left {
		order: 1;
		background-image: url("../images/bk_Summer-left02.jpg");
		background-position-x: left;
		background-position-y: 78px;
	}
	figure.bk-right {
		order: 3;
		background-image: url("../images/bk_Summer-right02.jpg");
		background-position-x: right;
		background-position-y: 78px;
	}

	
	figure.bk-left img {
		position: fixed;
		width: 20%;
    bottom: 2%;
	}
	figure.bk-right img {
		position: fixed;
		top: 36%;
    width: 10%;
		left: 83%
	}

}
@media screen and (min-width: 1025px) {
	div.container {	
		width: 30%;
	}

	figure.bk-left ,
	figure.bk-right {
		width: 35%;
	}
	figure.bk-left {
		background-image: url("../images/bk_Summer-left01.jpg");
	}
	figure.bk-right {
		background-image: url("../images/bk_Summer-right01.jpg");
	}

	figure.bk-right img {
		left: 77%
	}

}

@media screen and (min-width: 1930px) {

	figure.bk-left {
		background-position-y: 0px;
	}
	figure.bk-right {
		background-position-y: 0px;
	}

	figure.bk-left ,
	figure.bk-right {
		background-size: 100%;
    background-attachment: local;
	}

}

/* -------------------- header */

div.header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 3% 0;
}
div.header figure:nth-of-type(1) {
	width: 27%;
	margin: 0 3% 0 0;
}
div.header figure:nth-of-type(2) {
	width: 7%;
	margin: 0 8% 0 0;
}
div.header figure:nth-of-type(3) {
	width: 24%;
}

@media screen and (min-width: 767px) {
	div.header figure:nth-of-type(1) {
		width: 26%;
	}
	div.header figure:nth-of-type(2) {
		width: 7.5%;
		margin: 0 6% 0 0;
	}
}

/* -------------------- kv */

div.kv div.splide__inner {
	padding: 0;
}

/* -------------------- intro */

div.intro {
	width: 100%;
	margin: 0 0 18% 0;
}
div.intro figure.midashi {
	width: 70%;
	margin: 0 auto 6% auto;
}
div.intro p.message {
	width: 100%;
	font-size: 3.9vw;
	line-height: 6.8vw;
	font-weight: 500;
	text-align: center;
}

@media screen and (min-width: 767px) {
	div.intro p.message {
		font-size: 2.0vw;
		line-height: 3.4vw;
	}
}
@media screen and (min-width: 1025px) {
	div.intro p.message {
		font-size: 1.1vw;
		line-height: 2.0vw;
	}
}

/* -------------------- tab */

div.tab {
	position: relative;
	bottom: -4px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

div.tab a {
	position: relative;
	z-index: 1;
	display: block;
	width: 46%;
	text-align: center;
}
div.wrap.season02 div.tab a.mens {
	border: 4px solid #00468A;
}
div.wrap.season02 div.tab a.womens {
	border: 4px solid #A00050;
}

div.tab a:after {
	content: "";
	position: absolute;
	left: -4px;
	bottom: -4px;
	display: block;
	width: calc(100% + 8px);
	height: 4px;
	margin: 0 auto;
}
div.wrap.season02 div.tab a.mens:after {
	background-color: #A00050;
}
div.wrap.season02 div.tab a.womens:after {
	background-color: #00468A;
}

div.tab a.active {
	z-index: 3;
}
div.wrap.season02 div.tab a.mens.active {
	background-color: #00468A;
}
div.wrap.season02 div.tab a.womens.active {
	background-color: #A00050;
}

div.tab a.active:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -29%;
	
	display: block;
  width: 12.5%;
	height: calc(tan(60deg) * 32% / 2);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	margin: 0 auto;
}
div.wrap.season02 div.tab a.mens.active:after {
	background-color: #00468A;
}
div.wrap.season02 div.tab a.womens.active:after {
	background-color: #A00050;
}

div.tab a:hover ,
div.tab a:active {
	opacity: 0.7;
}
div.tab a.active:hover ,
div.tab a.active:active {
	opacity: 1.0;
}

div.tab a p {
	position: relative;
	z-index: 2;
	width: 100%;
	color: #000;

	font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"wdth" 100;
	font-size: 5.0vw;
	font-weight: 900;

	text-align: center;
	padding: 10% 0 8% 0;
}
div.wrap.season02 div.tab a.mens p {
	color: #00468A;	
}
div.wrap.season02 div.tab a.womens p {
	color: #A00050;
}

div.wrap.season02 div.tab a.mens.active p ,
div.wrap.season02 div.tab a.womens.active p {
	color: #FFF;
}

@media screen and (min-width: 767px) {
	div.tab a {
		width: 44%;
	}
	div.tab a p {
		font-size: 2.6vw;
		padding: 4% 0 3% 0;
	}
}
@media screen and (min-width: 1025px) {
	div.tab a p {
		font-size: 1.6vw;
	}
}

/* -------------------- collection */

div.collection {
	width: 100%;
	padding: 11.5% 3% 18% 3%;
}

div.wrap.season02 div.collection.mens-02 {
	background-color: #00AFE5;
	border-top: 4px solid #00468A;
	border-bottom: 2px solid #00468A;
}
div.wrap.season02 div.collection.womens-02 {
	background-color: #D5529D;
	border-top: 4px solid #A00050;
	border-bottom: 2px solid #A00050;
}

div.wrap.season02 div.collection.mens {
	background-color: #E6FDFF;
	border-bottom: 2px solid #00468A;
}
div.wrap.season02 div.collection.womens {
	background-color: #FFE9FD;
	border-bottom: 2px solid #A00050;
}

p.title {
	width: 66%;
	margin: 0 auto 18% auto;
}
p.title img {
	width: 100%;
}

@media screen and (min-width: 767px) {
	div.collection {
		padding: 10.5% 5% 18% 5%;
	}
	p.title {
    width: 70%;
    margin: 0 auto 14% auto;
	}
}
@media screen and (min-width: 1025px) {
	p.title {
    width: 75%;
    margin: 0 auto 15% auto;
	}
}

/* splide > model */
div.splide__inner {
	width: 100%;
	padding: 4%;
	margin: 0 auto 6% auto;
}

div.splide__inner.model div.splide {
	width: 100%;
	padding: 2%;
}
div.wrap.season02 div.collection div.model div.splide {
	background-color: #00468A;
}
div.wrap.season02 div.collection.mens-02 div.model div.splide ,
div.wrap.season02 div.collection.womens-02 div.model div.splide {
	background-color: #FFF;
}

div.model div.splide .splide__pagination {
	bottom: 1em;
	left: unset;
	right: 1em;
	padding: 0.5em;
}
div.model div.splide .splide__pagination__page {
	background-color: #FFF;
}
div.model div.splide .splide__pagination__page.is-active {
	background: #00468A;
}

@media screen and (min-width: 767px) {
	div.splide__inner {
    margin: 0 auto 10% auto;
	}
}

/* splide > model > decoration */
div.style-left ,
div.style-right {
	position: relative;
}

div.style-left:before ,div.style-left:after ,
div.style-right:before ,div.style-right:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
}
div.style-left:before {
	width: 8%;
	height: 4px;
}
div.style-left:after {
	width: 4px;
	height: 6%;
}
div.style-right:before {
	width: 8%;
	height: 4px;
}
div.style-right:after {
	width: 4px;
	height: 10%;
}

div.style-left div.splide:before ,div.style-left div.splide:after ,
div.style-right div.splide:before ,div.style-right div.splide:after {
	content: "";
	position: absolute;
	bottom: -3%;
	left: -4%;
	display: block;
}
div.style-left div.splide:before {
	width: 8%;
	height: 4px;
}
div.style-left div.splide:after {
	width: 4px;
	height: 10%;
}
div.style-right div.splide:before {
	width: 8%;
	height: 4px;
}
div.style-right div.splide:after {
	width: 4px;
	height: 6%;
}

div.style-left figure {
	position: absolute;
	z-index: 1;
	top: -6%;
	left: 7%;
	width: 40%;
}
div.style-right figure {
	position: absolute;
	z-index: 1;
	top: -6%;
	right: 9%;
	width: 40%;
}

div.style-left.blue:before ,div.style-left.blue:after ,
div.style-right.blue:before ,div.style-right.blue:after {
	background-color: #00468A;
}
div.style-left.blue div.splide:before ,div.style-left.blue div.splide:after ,
div.style-right.blue div.splide:before ,div.style-right.blue div.splide:after {
	background-color: #00468A;
}

div.style-left.white:before ,div.style-left.white:after ,
div.style-right.white:before ,div.style-right.white:after {
	background-color: #FFF;
}
div.style-left.white div.splide:before ,div.style-left.white div.splide:after ,
div.style-right.white div.splide:before ,div.style-right.white div.splide:after {
	background-color: #FFF;
}

/* price */
div.price {
	width: 100%;
	font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"wdth" 100;
	font-size: 5.0vw;
	font-weight: 900;
	color: #00468A;
	padding: 0 2%;
	margin: 0 auto 10% auto;
}
div.collection.mens-02 div.price ,
div.collection.womens-02 div.price {
	color: #FFF;
}


div.price ul li {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 0 4% 0;
}
div.price ul li:last-child {
	margin: 0;
}

div.price ul li:before {
	content: "";
	display: block;
	width: 1vw;
	height: 1vw;
	border-radius: 50%;
	margin: 0 4% 0 2%;
}
div.wrap.season02 div.collection.mens-02 div.price ul li:before {
	background-color: #00468A;	
}
div.wrap.season02 div.collection.womens-02 div.price ul li:before {
	background-color: #00468A;	
}

div.wrap.season02 div.collection.mens div.price ul li:before {
	background-color: #00AFE5;	
}
div.wrap.season02 div.collection.womens div.price ul li:before {
	background-color: #D5529D;	
}

div.price ul li > span:nth-of-type(1) {
	font-size: 5.0vw;
	width: 31%;
}
div.price ul li > span:nth-of-type(2) {
	font-size: 2.6vw;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 600;
	font-style: normal;
	margin: 1% 2% 0 0;
}
div.price ul li > span:nth-of-type(3) {
	width: 25%;
	margin: 0 0 0 0;
}

div.price ul li a {
	position: relative;
	width: 28%;
	text-align: center;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 767px) {
	div.price ul li:before {
		width: 0.6vw;
		height: 0.6vw;
    margin: 0 4% 0 0;
	}
	div.price ul li > span:nth-of-type(1) {
		width: 31%;
		font-size: 2.4vw;
	}
	div.price ul li > span:nth-of-type(2) {
		font-size: 1.4vw;
	}
	div.price ul li > span:nth-of-type(3) {
		font-size: 2.4vw;
	}
}
@media screen and (min-width: 1025px) {
	div.price ul li:before {
		width: 0.3vw;
		height: 0.3vw;
	}
	div.price ul li > span:nth-of-type(1) {
		font-size: 1.5vw;
	}
	div.price ul li > span:nth-of-type(2) {
		font-size: 1.0vw;
	}
	div.price ul li > span:nth-of-type(3) {
		font-size: 1.5vw;
	}
}

/* item */

div.splide.item {
	width: 100%;
	margin: 0 auto 7% auto;
}

div.splide.item .splide__arrow--prev ,
div.splide.item .splide__arrow--next {
	top: 48.5%;
	width: 1.0em;
	height: calc(tan(60deg)* 1.6em / 2);
	border-radius: unset;
	background-color: #00468A;
	opacity: 1.0;
}

div.splide.item .splide__arrow--prev {
	left: 3%;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
div.splide.item .splide__arrow.splide__arrow--next {
	right: 3%;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

div.splide.item .splide__arrow--prev svg ,
div.splide.item .splide__arrow--next svg {
	display: none;
}

@media screen and (min-width: 767px) {
	div.splide.item .splide__arrow--prev ,
	div.splide.item .splide__arrow--next {
		width: 1.2em;
		height: calc(tan(60deg)* 1.8em / 2);
	}
}

@media screen and (min-width: 1025px) {
	div.splide.item .splide__arrow--prev ,
	div.splide.item .splide__arrow--next {
		width: 1.4em;
		height: calc(tan(60deg)* 2.0em / 2);
	}
}

/* -------------------- point */

p.point {
	width: 100%;
	color: #00468A;
	font-size: 3.9vw;
	font-weight: 500;
	line-height: 7.0vw;
	padding: 0 3.6%;
	margin: 0 0 23% 0;
}
div.collection.mens-02 p.point ,
div.collection.womens-02 p.point {
	color: #FFF;
}

p.point.end {
	margin: 0 0 0 0;
}

@media screen and (min-width: 767px) {
	p.point {
		font-size: 2.0vw;
    line-height: 3.4vw;
	}
}
@media screen and (min-width: 1025px) {
	p.point {
		font-size: 1.1vw;
		line-height: 2.0vw;
	}
}

div.sp-movie {
	width: 100%;
	padding: 11.5% 3% 18% 3%;
}
div.sp-movie figure.num {
	width: 100%;
	margin: 0 auto 8% auto;
}

@media screen and (min-width: 767px) {
	div.sp-movie {
		padding: 10.5% 5% 18% 5%;
	}
}


/* -------------------- sp-movie */

div.sp-movie div.playmovie {
	width: 100%;
	line-height: 1;
	margin: 0 auto 4% auto;
}

div.sp-movie div.playmovie {
	margin: 0 auto 12% auto;
}
div.sp-movie div.playmovie iframe {
	aspect-ratio: 9 / 16;
	width: 99.7%;
	height: 100%;
}

/* -------------------- banner */

a.new-items {
	display: block;
	width: 88%;
	margin: 0 auto;
	transition: 0.2s;
}

a.all-items {
	display: block;
	width: 88%;
	margin: 0 auto 8% auto;
	transition: 0.2s;
}

a.shop-list {
	display: block;
	width: 88%;
	margin: 0 auto;
	transition: 0.2s;
}

a.new-items:hover ,a.new-items:active ,
a.all-items:hover ,a.all-items:active ,
a.shop-list:hover ,a.shop-list:active {
	opacity: 0.7;
}

/* -------------------- sns */

div.sns {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #00468A;
	padding: 10% 21%;
}

div.sns a {
	width: 20.5%;
	transition: 0.2s;
}
div.sns a:hover ,
div.sns a:active {
	opacity: 0.7;
}

div.sns a img {
	width: 100%;
	height: auto;
}


div.footer {
	width: 100%;
	padding: 20% 0 8% 0;
}
div.footer p {
	color: #00468A;
  font-weight: 500;
  font-style: normal;
	text-align: center;
}


#categorySerch ,
#al-group-global-footer2021 {
	position: relative;
}




































































































































































































































/* -------------------- demo */

div.demo-head {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background-color: #000;
}