@charset "utf-8";
/* CSS Document */

html{
	font-size: 62.5%;
}

body{
	font-family: "游ゴシック体",  "游ゴシック Medium", "Yu Gothic Medium",  'メイリオ', 'Meiryo', sans-serif;
	color: #707070;
}

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

a{
	color: #707070;
    text-decoration: none;
}

li{
	list-style: none;
}

h1{
	width: 120px;
	height: auto;
}

h2{
	font-family: serif;
	font-size: 4.5rem;
	letter-spacing: 0.125em;
	text-transform:capitalize;
	text-shadow: rgba(0,0,0,0.2) 0 1px 0;
	text-align: center;
}

h2 span{
	text-transform: none;
}

.sp{
	display: none !important;
}



/*-----------btn-----------*/
.btn{
	text-align: center;
}
.btn a{
	font-family: serif;
	color: #707070;
	font-weight: 450;
	letter-spacing: 0.1em;
	text-transform:capitalize;
	font-size: 2.8rem;
}

.btn a span{
	text-transform: none;
}

.btn_design{
	position:relative;
	top:0;
    padding:16px 74px;
	border-radius:30px;
    display: inline-block;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
}

/*hoverをしたらボックスに影がつき、上に上がる*/
.btn_design:hover {
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/*-----------/btn-----------*/

/*-----------page top-----------*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background-image: linear-gradient(to top, #a7a6cb 0%, #8989ba 52%, #8989ba 100%);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: capitalize; 
	text-decoration: none;
	font-size:1.3rem;
	transition:all 0.3s;
	padding: 5px;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/*-----------page top-----------*/

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

header{
	display: flex;
}

header .top-right{
	position: relative;
}

header .top-right p{
	font-family: serif;
	text-transform: capitalize;
	letter-spacing: 0.25em;
	color: #646363;
	font-size: 6.0rem;	
	text-shadow: rgba(0,0,0,0.2) 0 1px 0;
	position: absolute;
	top: 23%;
    left: 50%;
    transform: translate(-48%, -50%);
    text-align: center;
    width: 100%;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-30px;
	bottom:60px;
    /*テキストの形状*/
	color: #eee;
	font-size: 2.4rem;
	text-shadow: rgba(0,0,0,0.2) 0 1px 0;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 50px;
    right: -6px;
    /*矢印の形状*/
    width: 1.5px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
	text-shadow: rgba(0,0,0,0.2) 0 1px 0;
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:50px;
	right:0;
    /*矢印の形状*/
	width:1.5px;
	height: 50px;
	background:#eee;
	text-shadow: rgba(0,0,0,0.2) 0 1px 0;
}

/*------------------hamburger menu------------------*/
/*　ハンバーガーボタン　*/
.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 13px;
	top   : 12px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : #555;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition   : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}

	/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	background : #707070;
	-webkit-transform: rotate(315deg);
	-moz-transform   : rotate(315deg);
	transform        : rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	background : #707070;
	-webkit-transform: rotate(-315deg);
	-moz-transform   : rotate(-315deg);
	transform        : rotate(-315deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
	background-color:rgba(255,255,255,0.4);
	background-blend-mode:lighten;
	text-align: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
	background :#ddd;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #707070;
	font-family: serif;
	text-transform:capitalize;
	letter-spacing: 0.125em;
	font-size: 2.4rem;
	padding: 1em 0;
	text-decoration :none;
}
nav.globalMenuSp ul li a span{
	text-transform: none;
}

nav.globalMenuSp .first{
	margin-top: 30%;
}


	/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;

}


/*------------------/hamburger menu------------------*/

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

/*------------concept------------*/

.concept{
	padding-top: 105px;
	padding-bottom: 225px;
}

.concept_contents{
	display: flex;
	padding-top: 128px;
	padding-left: 80px;
	margin: 0 100px;
}
.concept_contents img{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	width: 50%;
	height: auto;
	object-fit: cover;
}

.concept_contents > div{
	padding-left: 70px;
}

.concept p{
	font-size: 1.4rem;
	line-height: 2.2;
}

.concept .title{
	font-size: 2.8rem;
	letter-spacing: 0.042em;
	padding: 70px 0 50px;
}

/*------------/concept------------*/

/*------------best sellers------------*/

.best-sellers{
	background-image: url( "../img/Best sellers_back.jpg");
	padding-top: 40px;
	padding-bottom: 200px;
}

.best-sellers h2{
	padding-bottom: 105px;
}

.best{
	text-align: center;
	max-width: 1000px;
    width: 100%;
	margin: auto;
	display: flex;
}

.best > a{
	flex: 0 0 30%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	transition: opacity 500ms ease-out;
}
.best > a:hover{
	opacity: 0.5;
}

.best > a:first-of-type{
	margin-right: auto;
}

.best > a:last-of-type{
	margin-left: auto;
}

.best_first{
	padding-bottom: 45px;
}

.best_second{
	padding-bottom: 65px;
}


/*------------/best sellers------------*/


/*------------line up------------*/

.line_up{
	padding-top: 100px;
	padding-bottom: 200px;
}

.line_up h2{
	padding-bottom: 105px;
}


/*-------slider箇所-------*/
.slick-slide{
	height:auto!important;
	margin-right: 8vw!important;
    margin-left: 8vw!important;
}

/*-----------矢印表示----------*/
.slick-next{
    right:50px!important;
}
.slick-prev{
    left:50px!important;
}
.slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slick-arrow:before{
    font-size: 40px!important;
}
/*-----------/矢印表示----------*/

/*-------/slider箇所-------*/

/*------------/line up------------*/


/*------------special------------*/
.special{
	background-image:url("../img/spexial_back.jpg");
	padding-top: 70px;
	padding-bottom: 200px;
}

.special_contents{
	display: flex;
}

.special_left{
	padding-top: 105px;
}

.special_right{
	padding-top: 230px;
}

.special_contents > img{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.special dl{
	display: table;
  	margin: 0 auto;
	padding-top: 35px;
	color: #707070;
}

.special dt{
	font-size: 2.0rem;
	letter-spacing: 0.06em;
}

.special dd{
	padding-top: 32px;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}


/*------------/special------------*/

/*------------news------------*/

.news{
	background-image:url("../img/spexial_back.jpg");
	padding-bottom: 200px;
}

.news h2{
	padding-bottom: 105px;
}

.article{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.article span{
	font-size: 1.4rem;
	letter-spacing: 0.06em;
}

.article span:first-of-type{
	padding-bottom: 26px;
}

.article span:last-of-type{
	padding-bottom: 65px;
}

.news_contents{
	display: flex;
	flex-direction: column;
	color: #707070;
}

/*------------/news------------*/


/*------------footer------------*/

footer{
	background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
	background-color:rgba(255,255,255,0.4);
	background-blend-mode:lighten;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
}

footer .contents{
	display: flex;
	justify-content: space-between;
	padding: 0 100px;
}

footer .right{
	letter-spacing: 0.06em;
	text-transform:capitalize;
	display: flex;
	align-items: end;
	flex-direction: column;
}

footer .right nav{
    font-size: 2.2rem;
	font-family: serif;
	display: flex;
    gap: 30px;
}

footer .right .guide{
    font-size: 1.6rem;
	display: flex;
    gap: 25px;
	padding-top: 40px;
}

footer h1 a{
	display: inline-block;
    width: 220px;
    height: auto;
}

small{
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	padding-left: 10px;
	padding-top: 60px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
}

.sns{
	width: 137px;
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
}
.sns a img{
	width: 30px;
	height: auto;
}

/*------------/footer------------*/


/*-----------------SP-----------------*/

@media (max-width: 767px){
		
		
	
		.sp{
			display: block !important;
		}
	

		/*------------header------------*/
		
		header{
			display: block;
			position: relative;
		}

		header .top-right p{
			letter-spacing: 0.25em;
			font-size: 4.0rem;	
			position: absolute;
			top: 20%;
		}

		
		/*-------------------------hamburger menu-------------------------*/
		
		.openbtn {
			position: fixed;
			z-index: 9999;
			top: 10px;
			right: 10px;
			cursor: pointer;
			width: 50px;
			height: 50px;
		}
	
		/*-------------------------/hamburger menu-------------------------*/
	

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

		/*------------concept------------*/

		.concept{
			padding-top: 80px;
			padding-bottom: 40px;
		}

		.concept_contents{
			display: block;
			padding-top: 30px;
			padding-left: 30px;
			margin: 0;
		}
		.concept_contents img{
			width: 100%;
			height: 100%;
		}

		.concept_contents > div{
			padding-left: 3%;
		}

		.concept p{
			font-size: 1.4rem;
			line-height: 2;
			letter-spacing: 0.07em;
		}

		.concept .title{
			font-size: 1.8rem;
			letter-spacing: 0.07em;
			line-height: 1.75;
			padding: 40px 0 20px;
		}

		/*------------/concept------------*/

		/*------------best sellers------------*/

		.best-sellers{
			background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
			background-color:rgba(255,255,255,0.6);
			background-blend-mode:lighten;
			padding-top: 70px;
			padding-bottom: 60px;
		}

		.best-sellers h2{
			padding-bottom: 40px;
		}

		.best{
			text-align: center;
			width: 80%;
			margin: auto;
			display: block;
		}

		.best > a{
			flex: 0 0 30%;
			box-shadow: none;
			transition: opacity 500ms ease-out;
		}

		.best img{
			padding-bottom: 45px;	
		}

		.best_first{
			padding-bottom: 0;
		}

		.best_second{
			padding-bottom: 0;
		}


		/*------------/best sellers------------*/

		/*------------line up------------*/

		.line_up{
			padding-top: 70px;
			padding-bottom: 30px;
		}

		.line_up h2{
			padding-bottom: 40px;
		}


		/*-------slider箇所-------*/
		.slick-slide{
			height:auto!important;
			margin-right: 2.5vw!important;
			margin-left: 2.5vw!important;
		}

		/*-----------矢印表示----------*/
		.slick-next{
			right:30px!important;
		}
		.slick-prev{
			left:30px!important;
		}
		.slick-arrow{
			width: initial!important;
			height: initial!important;
			z-index:2!important;
		}
		.slick-arrow:before{
			font-size: 40px!important;
		}
		/*-----------/矢印表示----------*/

		/*-------/slider箇所-------*/

		/*------------/line up------------*/
	
	
		/*------------special------------*/
		.special{
			background-image:url("../img/spexial_back.jpg");
			padding-top: 70px;
			padding-bottom: 100px;
		}

		.special_contents{
			display: block;
		}
		.special_contents > a{
			display: inline-block;
		}
		.special_left{
			padding-top: 40px;
		}

		.special_right{
			padding-top: 50px;
		}

		.special dl{
			display: table;
			margin: 0 auto;
			padding-top: 35px;
			color: #707070;
			padding-left: 10%;
		}

		.special dt{
			font-size: 1.8rem;
			letter-spacing: 0.06em;
		}

		.special dd{
			padding-top: 15px;
			font-size: 1.4rem;
			letter-spacing: 0.1em;
		}


		/*------------/special------------*/
	
		/*------------news------------*/

		.news{
			background-image:url("../img/spexial_back.jpg");
			padding-bottom: 70px;
			padding-right: 10%;
			padding-left: 10%;
		}

		.news h2{
			padding-bottom: 40px;
		}

		.article{
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.article span{
			font-size: 1.4rem;
			line-height: 2.6rem;
    		letter-spacing: 0.12em;
		}

		.article span:first-of-type{
			padding-bottom: 15px;
		}

		.article span:last-of-type{
			padding-bottom: 45px;
		}

	
		/*------------/news------------*/
	
		/*------------footer------------*/

				
		footer{
			padding-top: 50px;
		}

		footer .contents{
			flex-direction: row-reverse;
			justify-content: space-between;
			padding: 0 100px;
		}

		footer .right{
			letter-spacing: 0.06em;
			align-items: start;
			flex-direction: column;
		}

		footer .right nav{
			font-size: 2.2rem;
			flex-direction: column;
			gap: 25px;
		}

		footer .right .guide{
			font-size: 1.6rem;
			flex-direction: column;
			gap: 25px;
			padding-top: 60px;
		}

}

/*-----------------SP-----------------*/


/*-----------------tab-----------------*/
@media (min-width: 768px) and (max-width: 1000px){


		
		header .top-right p{
			font-size: 4.2rem;	
			top: 22%;
		}

		.concept_contents{
			padding-left: 50px;
		}

		.concept .title {
			padding: 70px 0 30px;
		}


		footer{
			padding-top: 50px;
		}

		footer .contents{
			flex-direction: row-reverse;
			justify-content: space-between;
			padding: 0 130px;
		}

		footer .right{
			letter-spacing: 0.06em;
			align-items: start;
			flex-direction: column;
		}

		footer .right nav{
			font-size: 2.2rem;
			flex-direction: column;
			gap: 25px;
		}

		footer .right .guide{
			font-size: 1.6rem;
			flex-direction: column;
			gap: 25px;
			padding-top: 60px;
		}


}
		

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