﻿
/*------------------------------------------------------------
	共通
------------------------------------------------------------*/

h2 {
	font-size: 1.6rem;
	font-family: 'Trenda Semibold';
	font-style: italic;
	letter-spacing: 1px;
	line-height: 1;
	color: #105028;
	text-align: center;
	margin-bottom: 10px;
}

h3 {
	font-size: 1.4rem;
	font-weight: 500;
	color: #000;
	letter-spacing: 0.3px;
	margin-bottom: 38px;
	position: relative;
	text-align: center;
}

h3:after {
	background: #000;
	content: '';
	width: 60px;
	height: 1px;
	position: absolute;
	bottom: -12px;
	left: 50%;
	margin-left: -30px;
}

@media only screen and (min-width: 737px) {
	
	h2 {
		font-size: 2.4rem;
		letter-spacing: 2px;
		margin-bottom: 30px;
	}
	
	h3 {
		font-size: 2rem;
		letter-spacing: 0.5px;
		margin-bottom: 60px;
	}
	
	h3:after {
		top: 70px;
	}
		
}

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/

main {
    width: 100%;
	height: 100vh;
	min-height: 600px;
	position: relative;
	margin: 0;/*reset*/
}

#mainInner {
	width: 92vw;
	height: 155px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 10;
}

#mainInner h1 {
	font-size: 2.2rem;
	font-family: "Noto Sans Japanese";
	font-weight: 300;
	font-style: normal;
	text-align: left;
	color: #000;
	margin-bottom: 6px;
}

#mainInner h1:after{
	content: none;
}

#mainInner p {
	font-size: 1.2rem;
	font-family: "Noto Sans Japanese";
	font-weight: 200;
	letter-spacing: 0.5px;
	color: #4c4c4c;
}

div.imgHolder01 {
	background: url(../image/main_01_sp2.jpg) left center no-repeat;
	background-size: cover;
	width: 90%;
	height: 32%;
	position: absolute;
	top: 70px;
	left: 0;
}

div.imgHolder02 {
	background: url(../image/main_02_sp2.jpg) right center no-repeat;
	background-size: cover;
	width: 90%;
	height: 28%;
	position: absolute;
	top: auto;
	bottom: 75px;
	right: 0;
}


@media only screen and (min-width: 737px) {
	
	main {
		height:100vh;
		margin-top: 0;
	}
	
	#mainInner {
		width: 900px;
		height: 190px;
	}
	
	#mainInner h1 {
		font-size: 3.4rem;
		font-weight: 200;
		letter-spacing: 2px;
		line-height: 1.6;
		text-align: center;
	}
	
	#mainInner p {
		font-size: 1.6rem;
		line-height: 2;
		text-align: center;
	}
	
	div.imgHolder01 {
		background: url(../picture/itoshiro_correction_2208-2-2.webp) left top no-repeat;
		background-size: cover;
		width: 43%;
		height: 80%;
		top: 10%;
	}
	
	div.imgHolder02 {
		background: url(../picture/collection_wool_2023.webp) right top no-repeat;
		background-size: cover;
		width: 40%;
		height: 60%;
		top: 20%;
	}
		
}


/*------------------------------------------------------------
	スクロールアニメーション
------------------------------------------------------------*/

@media only screen and (min-width: 737px) {
		
	a.scroll {
		position: absolute;
		bottom: 80px;
		left: 50%;
		z-index: 2;
		margin-left: -15px;
		font-size: 1rem;
		color: #000;
		display: inline-block;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		text-decoration: none;
		padding-top: 60px;
	}
	
	a.scroll span {
		position: absolute;
		top: 85px;
		left: 50%;
		width: 30px;
		height: 50px;
		margin-left: -15px;
		border: 2px solid #000;
		border-radius: 50px;
		box-sizing: border-box;
	}
	
	a.scroll span::before {
		position: absolute;
		top: 10px;
		left: 50%;
		content: '';
		width: 6px;
		height: 6px;
		margin-left: -3px;
		background-color: #000;
		border-radius: 100%;
		-webkit-animation: sdb 2s infinite;
		animation: sdb 2s infinite;
		box-sizing: border-box;
	}
	
	@-webkit-keyframes sdb {
		0% {
			-webkit-transform: translate(0, 0);
			opacity: 0;
		}
		40% {
			opacity: 1;
		}
		80% {
			-webkit-transform: translate(0, 20px);
			opacity: 0;
		}
		100% {
			opacity: 0;
		}
	}
	@keyframes sdb {
		0% {
			transform: translate(0, 0);
			opacity: 0;
		}
		40% {
			opacity: 1;
		}
		80% {
			transform: translate(0, 20px);
			opacity: 0;
		}
		100% {
			opacity: 0;
		}
	}


}

/*------------------------------------------------------------
	MENU AREA
------------------------------------------------------------*/

#menuArea {
	background: #fff;
}

#menuArea .oneFourth {
	height: 120px;
	overflow: hidden;
	position: relative;
}

#menuArea .oneFourth a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#menuArea .oneFourth a figure:after {
	background: rgba(0,0,0,0.5);
	content: '';
	width: 100%;
	height: 100%;
	-webkit-transition:0.3s ease-in-out;
	transition:0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#menuArea .oneFourth a:hover figure:after {
	background: rgba(0,0,0,0.7);
}

#menuArea .oneFourth figcaption {
	width: 100%;
	height: 46px;
	font-size: 1.4rem;
	line-height: 1.6;
	font-family: 'Trenda Semibold';
	letter-spacing: 1px;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 44px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 100;
}

#menuArea .oneFourth figcaption:after {
	content: '';
	background: url('../image/icon_1.svg');
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -12px;
}

#menuArea .oneFourth:nth-child(2) figcaption:after {
	background: url('../image/icon_2.svg');
	background-size: contain;
}

#menuArea .oneFourth:nth-child(3) figcaption:after {
	background: url('../image/icon_3.svg');
	background-size: contain;
}

#menuArea .oneFourth:nth-child(4) figcaption:after {
	background: url('../image/icon_4.svg');
	background-size: contain;
}

#menuArea .oneFourth figcaption span {
	font-size: 1rem;
	font-weight: 400;
	display: block;
	font-family: "游ゴシック","Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

#menuArea .oneFourth a img {
	max-width: 100%;
	height: auto;
	-webkit-transition:0.3s ease-in-out;
	transition:0.3s ease-in-out;
	-webkit-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}

#menuArea .oneFourth a:hover img {
	-webkit-transform:scale(1,1);
	transform:scale(1,1);
}

@media only screen and (min-width: 737px) {
	
	#menuArea .oneFourth {
		height: 200px;
	}
	
	#menuArea .oneFourth figcaption {
		height: 50px;
		font-size: 1.6rem;
		letter-spacing: 2px;
	}
	
	#menuArea .oneFourth figcaption span {
		font-size: 1.1rem;
	}
		
}


/*------------------------------------------------------------
	ABOUT AREA
------------------------------------------------------------*/

figure.image01 {
	background: url(../picture/itoshiro_PC_2504-1.webp) center top no-repeat;
	background-size:cover;
	height: 300px;	
}

#aboutArea div.contents p {
	margin-bottom: 5px;
}

#aboutArea div.contents p:last-of-type {
	margin-bottom: 15px;
}

@media only screen and (min-width: 737px) {
	
	figure.image01 {
		height: 300px;	
		background-attachment:fixed;
	}
	
	#aboutArea div.contents {
		padding: 20px 0 40px;
	}
	
	#aboutArea div.contents p {
		font-size: 1.4rem;
		line-height: 2.2;
	}
	
	#aboutArea div.contents p:last-of-type {
		margin-bottom: 20px;
	}
	
	#aboutArea div.contents div.fullwidth {
		max-width: 500px;
		margin: 0 auto;
	}
}


/*------------------------------------------------------------
	CONCEPT AREA
------------------------------------------------------------*/


figure.image02 {
	background: url(../picture/itoshiro_PC_2504-3b.webp) center bottom no-repeat;
	background-size:cover;
	height: 300px;	
}

@media only screen and (min-width: 737px) {
	
	figure.image02 {
		height: 300px;	
		background-attachment:fixed;
	}
}



/*------------------------------------------------------------
	HAIR STYLE
------------------------------------------------------------*/

#hariStyleArea h2 {
	margin-bottom: 20px;
}

#hariStyleArea div.carusel div.slick-slide {
	width: 180px;
    height: 172px;
    overflow: hidden;
}

#hariStyleArea div.carusel figure {
	overflow: hidden;
	position: relative;
}

#hariStyleArea div.carusel div p {
	display: block;
	background: #000;
	font-size: 1.2rem;
	line-height: 1;
	color: #ccc;
	padding: 8px 15px;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
	margin-left: 1.5%;
}

@media only screen and (min-width: 737px) {
	
	#hariStyleArea h2 {
		margin-bottom: 30px;
	}
	
	#hariStyleArea div.carusel div.slick-slide {
		width: 260px;
		height: 250px;
	}
		
}


/*------------------------------------------------------------
	NEWS AREA
------------------------------------------------------------*/

#newsArea h4 {
	font-size: 1.6rem;
	font-family: 'Trenda Semibold';
	text-align: center;
	letter-spacing: 3px;
	position: relative;
	padding-bottom: 30px;
}

#newsArea h4 span {
	display: block;
	font-size: 1.1rem;
	font-family: "游ゴシック","Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

#newsArea h4:after {
	content: '';
	background: #000;
	width: 80px;
	height: 1px;
	position: absolute;
	top: 65px;
	left: 50%;
	margin-left: -40px;
}

#newsArea article {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 12px;
}

#newsArea article p.date {
	font-size: 1.1rem;
}

#newsArea article dl dt {
	font-size: 1.3rem;
	color: 	#105028;
	font-weight: bold;
}

#newsArea article dl dd {
	color: #555;
}

@media only screen and (max-width: 736px) {
	
	#newsArea div.oneHalf.visual,
	#newsArea div.oneThird {
		display: none;
	}
	
}

@media only screen and (min-width: 737px) {
	
	#newsArea article dl dt {
		font-size: 1.4rem;
	}
	
	#newsArea article dl dd {
		font-size: 1.3rem;
	}
	
	#newsArea .contents:first-of-type {
		margin-bottom: 30px;
	}
}


/*------------------------------------------------------------
	GoogleMap
------------------------------------------------------------*/


div#mapCanvas {
	height: 300px;
}


@media only screen and (min-width: 737px) {
	
	div#mapCanvas {
		height: 500px;
	}
	
}
