@charset "UTF-8";

/* SP・タブレット縦用 */
/* タブレット横用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
}

/* ------------------------------------------------------------------------------------------------------ 
	Base Layout
------------------------------------------------------------------------------------------------------ */
html {
	font-family: 'Quicksand', "小塚ゴシック Pr6N", "KozGoPr6N-Regular", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3" , "Hiragino Kaku Gothic ProN" , "Helvetica Neue", Helvetica, Arial, sans-serif;
/* スムーススクロール
	scroll-behavior: smooth;
 */
}


.pc { display: none; }
.sp { display: block; }
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.pc { display: block; }
	.sp { display: none; }
}
/* ------------------------------------------------------------------------------------------------------ 
	Tannossa Layout
------------------------------------------------------------------------------------------------------ */
body {
	-webkit-font-smoothing: antialiased;	/* 白文字が太くなる対策 */
}
#pagetop {
	width: 100%;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	position: relative;
}
#wrapper {
	width: 100%;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	position: relative;
}
/* タブレット横用 */
@media screen and (min-width: 481px) {
	body {
	}
}
/* PC用 */
@media screen and (min-width: 960px) {
	body {
	}
	#wrapper {
		width: 100%;
		height: 100vh !important;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		position: relative;
	}
}
/* ==================================
	Header Lyout
================================== */
header {
	width: 100%;
	height: auto;
	display: block;
	margin: auto;
	padding: 0px;
	text-align: center;
	font-size: 28px;
	line-height: 1em;
	position: absolute;
	top: -100px;
	left: 0;
	right: 0;
}
header .instagram a {
	color: #666;
	transition: all 0.5s;
	position: absolute;
	top: 10px;
	right: 10px;
}
header .instagram a:hover {
	opacity: 0.5;
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	header {
		display: none;
	}
	header .instagram a {
	}
	header .instagram a:hover {
	}
}
/* ==================================
	Main Lyout
================================== */
main {
	width: 100%;
	height: auto;
	display: block;
	margin: auto;
	padding: 0px;
	text-align: center;
}
@keyframes fade-in {
	0% {
		opacity: 0;
		transform: translate3d(0, 0px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, -10px, 0);
	}
}
/* タブレット横用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
}
/* ==================================
	parallax Lyout
================================== */
.parallax {
	height: 85vh;
	display:block;
}
.parallax.bg-01,
.parallax.bg-02,
.parallax.bg-03 {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: -1;
}
.parallax.bg-01:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index: -1;
	width:100%;
	height: 85vh;
	background:url(../img/picsp_26ss_shirts.jpg) center top no-repeat;
	background-size: 100% auto;
}
.parallax.bg-02:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	min-height: 85vh;
	background:url(../img/picsp_26ss_pants.jpg) center top no-repeat;
	background-size: 100% auto;
}
.parallax.bg-03:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index: -1;
	width:100%;
	min-height: 85vh;
	background-color: #fff;
	background-image:url(../img/picsp_26ss_cutsaw.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
/* 見出し */
.parallax .title {
	width: 100%;
	height: 80px;
	display: block;
	margin: auto;
	padding: 0px;
	font-size: 40px;
	font-weight: 300;
	line-height: 1em;
	letter-spacing: 0.125em;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	animation-name: fade-in;
	animation-duration: 1.5s; /* アニメーション時間 */
	animation-timing-function: ease-out; /* イージング */
	animation-delay: 1.0s; /* 開始させる時間 */
	animation-iteration-count: 1; /* 繰り返し回数 */
	animation-direction: normal; /* 往復処理 */
	animation-fill-mode: forwards; /* アニメーション後のスタイル */
}
/* タブレット横用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.parallax {
		min-height: 600px;
		background-position: center top;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		position: relative;
	}
	.parallax.bg-01 {
		background-image: url(../img/picpc_26ss_shirts.jpg);
	}
	.parallax.bg-02 {
		background-image: url(../img/picpc_26ss_pants.jpg);
	}
	.parallax.bg-03 {
		background-image: url(../img/picpc_26ss_cutsaw.jpg);
	}
	.parallax.bg-01:before,
	.parallax.bg-02:before,
	.parallax.bg-03:before {
		content: none;
	}
	/* 見出し */
	.parallax .title {
		width: 400px;
		height: 50px;
		display: block;
		margin: auto;
		padding: 0px;
		font-size: 50px;
		font-weight: 300;
		line-height: 1em;
		letter-spacing: 0.125em;
		color: #fff;
		text-align: center;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		opacity: 0;
		animation-name: fade-in;
		animation-duration: 1.5s; /* アニメーション時間 */
		animation-timing-function: ease-out; /* イージング */
		animation-delay: 1.0s; /* 開始させる時間 */
		animation-iteration-count: 1; /* 繰り返し回数 */
		animation-direction: normal; /* 往復処理 */
		animation-fill-mode: forwards; /* アニメーション後のスタイル */
	}
}
/* ==================================
	content-01 Lyout
================================== */
.content {
	padding: 0px;
	overflow: visible;
	position: relative; /* z-indexを効かせるため必須 */
	z-index: 1; /* 擬似要素よりも前面 */
}
.content-01 {
	height: 72vh;
}
/* ロゴ */
.content .logo {
	padding: 100px 0 0;
	overflow: hidden;
	height: 0px !important;
	height /**/: 100px;
	width: 150px;
	background: url(../img/logo.png) no-repeat left top;
	background-size: 100% auto;
	display: block;
	margin: 100px auto 0px;
	opacity: 0;
	animation-name: fade-in;
	animation-duration: 2s; /* アニメーション時間 */
	animation-timing-function: ease-out; /* イージング */
	animation-delay: 0.5s; /* 開始させる時間 */
	animation-iteration-count: 1; /* 繰り返し回数 */
	animation-direction: normal; /* 往復処理 */
	animation-fill-mode: forwards; /* アニメーション後のスタイル */
}
/* コンセプト */
.content .concept {
	width: 100%;
	height: auto;
	display: block;
	margin: 50px auto 0px;
	padding: 0px;
	font-size: 12px;
	line-height: 2.75em;
	letter-spacing: 0.125em;
	color: #444;
	text-align: center;
	opacity: 0;
	animation-name: fade-in;
	animation-duration: 1.5s; /* アニメーション時間 */
	animation-timing-function: ease-out; /* イージング */
	animation-delay: 1.0s; /* 開始させる時間 */
	animation-iteration-count: 1; /* 繰り返し回数 */
	animation-direction: normal; /* 往復処理 */
	animation-fill-mode: forwards; /* アニメーション後のスタイル */
}
.content .concept a {
	color: #000;
	text-decoration: none;
	margin: 0px 5px;
	padding: 0px 2px 4px 2px;
	border-bottom: 1px dotted #666;
	transition : all 0.3s;
}
.content .concept a:hover {
	color: #444;
	text-decoration: none;
	border-bottom: 1px dotted #444;
}
/* 下矢印 */
.content .arrow {
	width: 50px;
	height: 25px;
	display:block;
	margin: 100px auto 30px;
	-webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
footer .arrow2 {
	width: 50px;
	height: 25px;
	margin: auto;
	-webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	opacity: 0;
}
.parallax .arrow {
	width: 50px;
	height: 25px;
	margin: auto;
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	-webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2.0s infinite alternate;
	opacity: 0;
}
.content .arrow span,
footer .arrow2 span,
.parallax .arrow span {
	position: relative;
	display: block;
}
.content .arrow span:before,
.parallax .arrow span:before {
	content: '';
	width: 25px;
	height: 25px;
	border: 0;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
}
footer .arrow2 span:before {
	content: '';
	width: 25px;
	height: 25px;
	border: 0;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
}
@keyframes arrow {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		opacity: 0.5;
		-webkit-transform: translate3d(0, -8px, 0);
		transform: translate3d(0, -8px, 0);
	}
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.content-01 {
		height: 500px;
	}
	/* ロゴ */
	.content .logo {
		padding: 150px 0 0;
		overflow: hidden;
		height: 0px !important;
		height /**/: 150px;
		width: 220px;
		background: url(../img/logo_pc.png) no-repeat center top;
		background-size: 100% auto;
		display: block;
		margin: 14vh auto 0px;
		opacity: 0;
		animation-name: fade-in;
		animation-duration: 2s; /* アニメーション時間 */
		animation-timing-function: ease-out; /* イージング */
		animation-delay: 0.5s; /* 開始させる時間 */
		animation-iteration-count: 1; /* 繰り返し回数 */
		animation-direction: normal; /* 往復処理 */
		animation-fill-mode: forwards; /* アニメーション後のスタイル */
	}
	/* コンセプト */
	.content .concept {
		width: 100%;
		height: auto;
		display: block;
		margin: 50px auto 0px;
		padding: 0px;
		font-size: 12px;
		line-height: 2.75em;
		letter-spacing: 0.125em;
		color: #444;
		text-align: center;
		opacity: 0;
		animation-name: fade-in;
		animation-duration: 1.5s; /* アニメーション時間 */
		animation-timing-function: ease-out; /* イージング */
		animation-delay: 1.0s; /* 開始させる時間 */
		animation-iteration-count: 1; /* 繰り返し回数 */
		animation-direction: normal; /* 往復処理 */
		animation-fill-mode: forwards; /* アニメーション後のスタイル */
	}
	.content .concept a {
		color: #000;
		text-decoration: none;
		margin: 0px 5px;
		padding: 0px 2px 4px 2px;
		border-bottom: 1px dotted #666;
		transition : all 0.3s;
	}
	.content .concept a:hover {
		color: #444;
		text-decoration: none;
		border-bottom: 1px solid #444;
	}
}
/* ==================================
	content-01,02,03 Lyout
================================== */
.content ul {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto 0px;
	padding: 20% 0px;
	text-align: center;
	font-size: 0;
	background: #f2f1ef;
}
.content ul li {
	width: calc(100% / 3);
	height: auto;
	display: inline-block;
	margin: 0px auto;
	padding: 0px 0px;
	text-align: center;
	box-sizing: border-box;
}
.content ul li a {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px 0px;
	text-align: center;
	box-sizing: border-box;
	transition : all 0.3s;
}
.content ul li a:hover {
	opacity: 0.7;
}
.content ul li img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.effect-fade {
	opacity : 0;
	transform : translate(0,45px);
	transition : all 1.0s;
}
.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0,0);
}
.content img.lineup {
	display: none;
}
.content img.lineupSP {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto 0px;
	padding: 0px;
	text-align: center;
	background: #fff;
}
/* タブレット横用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	/* 2つ目の要素に200msのdelayをかける */
	.effect-fade.effect-scroll.delay1 {
		-moz-transition-delay: 0.3s;
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		-ms-transition-delay: 0.3s;
	}
	/* 3つ目の要素に400msのdelayをかける */
	.effect-fade.effect-scroll.delay2 {
		-moz-transition-delay: 0.5s;
		-webkit-transition-delay: 0.5s;
		-o-transition-delay: 0.5s;
		-ms-transition-delay: 0.5s;
	}
	.content img.lineup {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 0px;
		padding: 0px;
		text-align: center;
		background: #fff;
	}
	.content img.lineupSP {
		display: none;
	}
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.content ul {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 0px;
		padding: 3% 0px;
		text-align: center;
		font-size: 0;
		background: #f2f1ef;
	}
}
/* ==================================
	Footer Lyout
================================== */
#pagetop {
	width: 100%;
	height: 1px;
	display: block;
	margin: -100px auto 0px;
	padding: 100px 0px 0px;
	text-align: center;
}
footer {
	width: 94%;
	height: auto;
	display: block;
	margin: auto;
	padding: 50px 0px 30px;
	text-align: center;
	position: relative;
}
footer .instagram.sp a {
	width: 100%;
	height: auto;
	display: block;
	margin: 50px auto 0px;
	padding: 0px;
	font-size: 30px;
	line-height: 1em;
	color: #333;
	text-align: center;
	transition: all 0.5s;
}
footer .instagram a:hover {
	opacity: 0.5;
}
footer p {
	text-align: center;
}
footer p small {
	display: block;
	margin: 10px auto 0px;
	padding: 0px;
	font-size: 12px;
	line-height: 1em;
	font-weight: 400;
	text-align: center;
	color: #666;
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	#pagetop {
		width: 100%;
		height: 1px;
		display: block;
		margin: 0px auto 0px;
		padding: 0px;
		text-align: center;
	}
	footer {
		width: 94%;
		height: 300px;
		display: block;
		margin: 50px auto 0px;
		padding: 0px;
		text-align: center;
		position: relative;
		font-size: 0;
	}
	footer .instagram.pc a {
		font-size: 30px;
		line-height: 1em;
		color: #333;
		transition: all 0.5s;
		position: absolute;
		bottom: 35px;
		right: 7%;
	}
	footer .instagram a:hover {
		opacity: 0.5;
	}
	footer .flex-container {
		display: flex;
		width: 80%;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		center： 中央寄せ
		
		/*並び順*/
		/*
		flex-start：左寄せ（デフォルト）
		flex-end：右寄せ
		space-between：残り余白の均等割り 
		space-around：左右余白 ＋ 均等割り
		*/
		justify-content: center;
	}
	footer p.link {
		width: 100%;
		height: 50px;
		display: block;
		text-align: center;
		flex: 10;
	}
	footer p small {
		display: block;
		margin: 50px auto 0px;
		padding: 0px;
		font-size: 14px;
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		color: #666;
	}
}
/* ==================================
	Footer email Lyout
================================== */
footer .link {
	width: 100%;
	height: auto;
	margin: 15px auto 15px;
	padding: 0px;
	display: block;
	text-align: center;
}
footer .link a {
	width: 95%;
	height: auto;
	margin: 0px auto 0px;
	padding: 7px;
	box-sizing: border-box;
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 26px;
	text-decoration: none;
	letter-spacing: 0.0125em;
	color: #fff;
	background: #231815;
	transition: all 0.3s ease-out;
	position: relative;
}
footer .link a:hover {
	opacity: 0.6;
}
footer .link a:after {
	content: "";
	width: 11px;
	height: 11px;
	border: 1px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	transition: all 0.3s ease-out;
}
footer .link a:hover:after {
	right: 10px;
}
/* タブレット横用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	footer .link {
		width: 100%;
		max-width: 680px;
		height: auto;
		margin: 15px auto 15px;
		padding: 0px;
		display: block;
		text-align: center;
	}
	footer .link a {
		width: 95%;
		height: auto;
		margin: 0px auto 0px;
		padding: 7px;
		box-sizing: border-box;
		display: block;
		text-align: center;
		font-size: 13px;
		font-weight: 400;
		line-height: 26px;
		letter-spacing: 0.0125em;
		color: #fff;
		background: #231815;
		transition: all 0.3s ease-out;
		position: relative;
	}
	footer .link a:hover {
		opacity: 0.6;
	}
	footer .link a:after {
		content: "";
		width: 11px;
		height: 11px;
		border: 1px solid;
		border-color: #fff #fff transparent transparent;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto;
		transition: all 0.3s ease-out;
	}
	footer .link a:hover:after {
		right: 10px;
	}
}
/* ********* youtube Layout ********* */
.exhibition {
	width: 100vw;
	display: block;
	margin: 0px auto 0px;
	padding: 60px 0px 30px;
	text-align: center;
	background-color: #fff;
}
.exhibition h3 {
	width: 95%;
	display: block;
	margin: 30px auto 30px;
	padding: 0px;
	text-align: center;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #231815;
	letter-spacing: 0.025em;
}
@media screen and (min-width: 960px) {
	.exhibition h3 {
		width: 100%;
		display: block;
		margin: 30px auto 30px;
		padding: 0px;
		text-align: center;
		font-size: 20px;
		line-height: 28px;
		font-weight: 400;
		color: #231815;
		letter-spacing: 0.025em;
	}
}
/* ********* youtube swiper Layout ********* */
.exhibition .swiper {
	width: 100%;
	height: calc(450 / 750 * 100%);
	overflow: hidden;
	position: relative;
	padding: 0px 0px 30px;
}
.exhibition .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0px 30px 0px 0px;
}
.exhibition .swiper-slide img {
	display: block;
	width: 100%;
	height: calc(419 / 750 * 42%);
	-webkit-backface-visibility: hidden;
	position:relative;
	margin: auto;
}
.exhibition .swiper-slide img.icon {
	display: block;
	width: 52px;
	height: 52px;
	-webkit-backface-visibility: hidden;
	position: absolute;
	top: -26px;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.85;
}
.exhibition .swiper-slide a:hover img.icon {
	opacity: 1;
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.exhibition {
		width: 100%;
		display: block;
		margin: 100px auto 100px;
		padding: 0px;
		text-align: center;
		overflow: hidden;
	}
	.exhibition .swiper-slide {
		margin: 0px 30px;
	}
	.exhibition .swiper-slide img {
		display: block;
		width: 100%;
		height: auto;
		-webkit-backface-visibility: hidden;
		position:relative;
		margin: auto;
	}
}
/* ********* instagram Layout ********* */
.followus {
	width: 100%;
	display: block;
	margin: 0px auto 0px;
	padding: 30px 0px 30px;
	text-align: center;
	background-color: #fff;
	overflow: hidden!important;
}
.eapps-instagram-feed-title {
	width: 95%!important;
	display: block!important;
	margin: 0px auto 30px!important;
	padding: 0px!important;
	text-align: center!important;
	font-size: 16px!important;
	line-height: 22px!important;
	font-weight: 300!important;
	color: #231815!important;
	letter-spacing: 0.025em!important;
}
@media screen and (min-width: 960px) {
	.eapps-instagram-feed-title {
		width: 100%!important;
		display: block!important;
		margin: 30px auto 30px!important;
		padding: 0px!important;
		text-align: center!important;
		font-size: 20px!important;
		line-height: 28px!important;
		font-weight: 300!important;
		color: #231815!important;
		letter-spacing: 0.025em!important;
	}
}
/* 元々の設定 */
#eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more {
	background: rgb(0,0,0)!important;
}
/* タブレット用 */
@media screen and (min-width: 481px) {
}
/* PC用 */
@media screen and (min-width: 960px) {
	.followus {
		width: 90%;
		display: block;
		margin: 100px auto 100px;
		padding: 0px;
		text-align: center;
		overflow: hidden;
	}
}
