/* ----------
	common
---------- */
body {
	background: #fafafa;
	color: #333;
	font-family: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
}
@media (min-width: 768px) {
	body {
		min-width: 1200px;
	}
}
.container {
	overflow-x: hidden;
	width: 100%;
}

.b {
	font-weight: bold;
}
.big {
	font-size: 1.25em;
}
.small {
	font-size: .8em;
}

mark {
	background: linear-gradient(transparent 0%, #ebce56 0%);
}

@media screen and (min-width: 768px){
.br-sp {display: none; }
}

@media screen and (max-width: 767px){
.br-pc {display: none; }
}


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

#site-header {
	background: rgba(250,250,250,.85);
	display: flex;
	justify-content: space-between;
	padding: 24px;
	width: 100%;
}
@media (max-width: 767px) {
	#site-header {
		align-items: center;
		filter: drop-shadow(0 3px 3px rgba(0,0,0,.2));
		left: 0;
		padding: 24px 12px;
		position: fixed;
		top: 0;
		z-index: 999;
	}
}

.kv .brand img{
	width: 200px;
	/*z-index: 10;*/
}
@media (max-width: 767px) {
	.kv .brand img{
		width: 100px;
	}
}

#site-header #nav-switch,
#site-header #nav-close {
	display: none;
}

@media (max-width: 767px) {
	#site-header #nav-switch {
		color: #ebce56;
		display: block;
		font-size: 24px;
		transition: .3s;
		position: fixed;
		right: 12px;
		top: 8px;
	}

	#site-header nav {
		background: #ebce56;
		bottom: 0;
		filter: opacity(.9);
		min-height: 100vh;
		padding: 40px 20px;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: .5s;
		width: 50%;
		z-index: 1000;
	}


	#site-header #nav-close {
		color: #fff;
		display: block;
		font-size: 24px;
		position: absolute;
		right: 12px;
		top: 8px;
	}

	/* open */
	#site-header #nav-switch.open {
		filter: opacity(0);
	}
	#site-header nav.open {
		transform: translateX(0);
	}
}

#site-header ul {
	display: flex;
	height: 100%;
	margin-left: 400px;
}
@media (max-width: 767px) {
	#site-header ul {
		align-content: flex-start;
		flex-wrap: wrap;
		margin: 0;
	}
	#site-header li {
		width: 100%;
	}
}

#site-header li a {
	align-items: center;
	color: #222;
	display: flex;
	justify-content: center;
	height: 100%;
	padding: 0 25px;
	text-decoration: none;
	font-size: .9rem;
}


@media (max-width: 767px) {
	#site-header li a {
		color: #fff;
		justify-content: flex-start;
		margin: 0 0 20px;
		padding: 0 20px;
	}

	#site-header ul li:nth-child(n+7){
		filter: grayscale(100%);
		filter: brightness(50%);
		width: 50%;
	}
}

#site-header li a:hover {
	color: #ebce56;
}
#site-header .contact a {
	border: 2px solid #ebce56;
	border-radius: 4px;
	color: #ebce56;
	cursor: pointer;
	margin-left: 40px;
	transition: .3s;
}
@media (max-width: 767px) {
	#site-header .contact a {
		color: #fff;
		margin-left: 0;
	}
}

#site-header .contact a:hover {
	background: #ebce56;
	color: #fff;
}


/* ----------
	footer
---------- */
#site-footer {
	padding: 30px;
	text-align: center;
	width: 100%;
	height: 200px;
	background: #ebce56;
}


/* ----------
	index
---------- */

/* common */
.index section {
	padding: 80px 0;
}
.index .tit {
	text-align: center;
}
.index .tit .en {
	color: #ebce56;
	font-family: 'Lato', sans-serif;
	font-size: 24px;
}

.index .en {
	font-family: 'Lato', sans-serif;
}

@media (max-width: 767px) {
	.index .tit .en {
		font-size: 5vw;
	}
}

.index h2 {
	font-size: 36px;
	margin: 20px 0 0;
}

@media (max-width: 767px) {
	.index h2 {
		font-size: 6vw;
	}
}

.index .body {
	padding: 0 200px;
	max-width: 1200px;
}
@media (max-width: 767px) {
	.index .body {
		padding: 0 20px;
	}
}

.index .txt p {
	line-height: 200%;
}

@media (max-width: 767px) {
	.index .txt p {
	font-size: 3.5vw;
	}
}

/*フワッとさせたい*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.fadein-left {
  opacity : 0;
  transform: translateX(-1400px);
  transition: all 1.5s;
}

.fadein-load {
  opacity : 0;
  transition: all 2s;
}


/* /common */

.index .kv {
	height: 700px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 767px) {
	.index .kv {
	height: 100%;
	position: relative;
	overflow: hidden;
	}
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.index .kv .tit {
	color: #fff;
	left: 50%;
	position: absolute;
	top: 90%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
@media (max-width: 767px) {
	.index .kv .tit {
		top: 55%;
		width: 100%;
	}
}

.index .kv h1 {
	font-family: 'Lato', sans-serif;
	font-size: 30px;
	font-weight: normal;
	margin: 0 auto;
}


@media (max-width: 767px) {
	.index .kv h1 {
		height: 120px;
		width: 50%;
		margin-top: 90%;
		font-size: 5vw;
	}
}

.index .kv .img img{
		width: 300px;
}

@media (max-width: 767px) {
	.index .kv .img img{
		height: 60%;
		width: 60%;
	}
}

.sample-box {
    position: relative;
}

.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 10%;
    left: 5%;
}

@media (max-width: 767px){
	.brand {
    top: 30%;
    left: 30%;
	}
}


.index .content #goto-cart-black a {
	align-items: center;
	background: #222222;
	border: 2px solid #222222;
	color: #ebce56;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	text-decoration: none;
	width: 180px;
	position: fixed;
    right: 0;
    top: 200px;
    z-index: 10000;
}

.index .content #goto-cart-black a::after{
		content: '';
	    display: inline-block;
	    width: 20px;
	    height: 20px;
	    vertical-align: middle;
	    background: url(../img/img-cart.png) no-repeat;
	    background-size: 20px 20px;
	    margin-left: 7px;	
	    z-index: 10000;	
}

.index .content .fade:hover{
    transform: translateX(100%);
}

@media (max-width: 767px) {
	.index .content #goto-cart-black a{
		width: 80px;
		top: 8px;
		font-size: 2vw;
		right: 45px;
		background: none;
		border: none;
	}
}

@media (max-width: 767px) {
	.index .content #goto-cart-black a::after{
		content: '';
	    display: inline-block;
	    width: 15px;
	    height: 15px;
	    vertical-align: middle;
	    background: url(../img/img-cart.png) no-repeat;
	    background-size: 15px 15px;
	    margin-left: 5px;		
	}
}


.index .content #goto-cart-70 a {
	align-items: center;
	background: #222222;
	border: 2px solid #222222;
	color: #ebce56;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	text-decoration: none;
	width: 180px;
	position: fixed;
    right: 0;
    top: 200px;
    z-index: 1000;
    filter: opacity(0.7);
}

.index .content #goto-cart-70 a::after{
		content: '';
	    display: inline-block;
	    width: 20px;
	    height: 20px;
	    vertical-align: middle;
	    background: url(../img/img-cart.png) no-repeat;
	    background-size: 20px 20px;
	    margin-left: 7px;
	    z-index: 1000;		
}

@media (max-width: 767px) {
	.index .content #goto-cart-70 a{
		display: none;
	}
}


/* section-1 */
.index #section-1 img{
	width: 500px;
	display: block;
	margin: 0 auto;
}

@media (max-width: 767px){
	.index #section-1 img{
	width: 300px;
	}
}


/* section-2 */
.index #section-2 {
	padding: 0 0 80px;
}

@media (max-width: 767px){
	.index #section-2 {
	padding: 0 0 40px;
	}
}


.index #section-2 .body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.index #section-2 .body .group{
		display: flex;
		flex-wrap: wrap;
	}
}

.index #section-2 .group {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.index #section-2 .img {
	flex-shrink: 0;
	margin-left: 80px;
	order: 1;
	width: 480px;
	height: 323.33px;
}

@media (max-width: 767px) {
	.index #section-2 .body .group .img{
		width: 325px;
		height: 216.656px;
		margin-bottom: 10px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.index #section-2 .body .group-1 .img{
		order: 1;
	}
	.index #section-2 .body .group-1 .box{
		order: 2;
	}
	.index #section-2 .body .group-2 .img{
		order: 3;
	}
	.index #section-2 .body .group-2 .box{
		order: 4;
	}
	.index #section-2 .body .group-3 .img{
		order: 5;
	}
	.index #section-2 .body .group-3 .box{
		order: 6;
	}
}

.index #section-2 .tit {
	text-align: center;	
}
.index #section-2 h2 {
	font-size: 24px;
	padding: 10px;
	background: #ebce56;
}

@media (max-width: 767px) {
	.index #section-2 h2 {
	font-size: 6vw;
	}
}


.index #section-2 .txt {
	margin-top: 10px;
}

.box{
	width: 400px;
	height: 200px;
}

.index #section-2 .group-1 .box {
	margin-left: -25%;
	margin-top: 15%;
	background: #fafafa;
	padding: 0 0 0 20px;
}

@media (max-width: 767px){
	.index #section-2 .group-1 .box {
	margin-top: 0%;
	margin-left: -5%;
	}
}


.index #section-2 .group-1 .img {
	margin-left: 0;
	margin-right: 80px;
	order: 0;
}


.index #section-2 .group-2 {
	margin-top: 80px;
}

@media (max-width: 767px){
	.index #section-2 .group-2 {
	margin-top: 40px;
	}
}

.index #section-2 .group-2 .box {
	margin-right: -25%;
	margin-top: 8%;
	z-index: 10;
	background: #fafafa;
	padding: 0 20px 0 0;
}

@media (max-width: 767px){
	.index #section-2 .group-2 .box {
	margin-top: 0%;
	margin-right: -5%;
	}
}

.index #section-2 .group-3 {
	margin-top: 80px;
}

@media (max-width: 767px){
	.index #section-2 .group-3 {
	margin-top: 40px;
	}
}

.index #section-2 .group-3 .box {
	margin-left: -25%;
	margin-top: 5%;
	background: #fafafa;
	padding: 0 0 0 20px;
}

@media (max-width: 767px){
	.index #section-2 .group-3 .box {
	margin-left: -5%;
	margin-top: 0%;
	}
}


.index #section-2 .group-3 .img {
	margin-left: 0;
	margin-right: 80px;
	order: 0;
}



.red{
	color: #f95757;
}

/* section-3 */

.index #section-3 {
	background: #f3f3f3;
	background-size: 10px 10px;
	padding: 80px 0 250px;
	position: relative;
}

.index #section-3 .background-yellow{
	background: #ebce56;
	background-size: 10px 10px;
	width: 100%;
	height: 45%;
	position: absolute;
	top: 0px;
}

@media (max-width: 767px){
	.index #section-3 .background-yellow{
	height: 100%;
	}
}


.index #section-3 .tit .img{
	position: relative;
	width: 120px;
	display: block;
	margin: 0 auto;
	z-index: 100;
}
@media (max-width: 767px){
	.index #section-3 .tit .img{
	position: relative;
	width: 120px;
	margin: 10px auto;
	top: 80px;
	}
}


.index #section-3 .illust-1{
	position: absolute;
	top: 30px;
    left: -70px;
}

@media (max-width: 767px){
	.index #section-3 .illust-1{
	width: 70%;
	}
}

.index #section-3 .illust-2{
	position: absolute;
	top: 650px;
    right: -80px;
}

@media (max-width: 767px){
	.index #section-3 .illust-2{
	top: 1150px;
	width: 45%;
	}
}

.index #section-3 .illust-3{
	position: absolute;
	top: 1250px;
    left: 50px;
}

@media (max-width: 767px){
	.index #section-3 .illust-3{
	top: 1840px;
	width: 45%;
	}
}

.index #section-3 .body {
	margin: 64px auto 0;
}

.index #section-3 ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: auto;
	padding: 0;
}
.index #section-3 li {
	margin-top: 60px;
	margin-bottom: 40px;
	padding: 12px 40px 24px;
	width: 48%;
}
@media (max-width: 767px) {
	.index #section-3 li {
		margin-top: 80px;
		padding: 12px 20px 20px;
		width: 100%;
	}
	.index #section-3 li:last-child {
		margin-bottom: 0;
	}
}

.index #section-3 h3 {
	align-items: center;
	font-size: 20px;
	margin: 0;
	text-align: left;
}

.index #section-3 .group {
	position: relative;
}

.index #section-3 .group .tit{
	position: absolute;
	font-size: 22px;
    top: 188px;
    left: 10px;
}

@media (max-width: 767px){
	.index #section-3 .group .tit{
	font-size: 22px;
    top: 182px;
	}
}

.index #section-3 .group .txt{
	position: absolute;
    top: 210px;
    left: 210px;
}

@media (max-width: 767px){
	.index #section-3 .group .txt{
	position: absolute;
    top: 208px;
	}
}


.index #section-3 .group .btn a {
	align-items: center;
	background: #434343;
	border: 2px solid #434343;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	text-decoration: none;
	transition: .3s;
	width: 180px;
	position: absolute;
    top: 280px;
    left: 55px;
}

@media (max-width: 767px) {
	.index #section-3 .group .btn a {
    top: 250px;
	}
}

.index #section-3 .group .btn a::after {
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background: url(../img/cart-img.png) no-repeat;
    background-size: 20px 20px;
    margin-left: 7px;		
}

.index #section-3 .btn a:hover {
	background: #fafafa;
	color: #434343;
}

.index #section-3 .group .btn-look a {
	align-items: center;
	background: #ebce56;
	border: 2px solid #ebce56;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	text-decoration: none;
	transition: .3s;
	width: 200px;
	position: absolute;
    top: 400px;
    left: -160px;
}

@media (max-width: 767px) {
	.index #section-3 .group .btn-look a {
		border: 2px solid #fff;
		top: 380px;
		left: 55px;
		width: 180px;
	}
}

.index #section-3 .group .btn-look a::after {
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background: url(../img/scope-img.png) no-repeat;
    background-size: 20px 20px;
    margin-left: 7px;		
}

.index #section-3 .btn-look a:hover{
	background: #fafafa;
	color: #ebce56;
}


@media (max-width: 767px) {
	.index #section-3 .group {
		flex-wrap: wrap;
		justify-content: center;
	}
}


@media (max-width: 767px) {
	.index #section-3 .img {
		margin-right: 0;
	}
}


/* section-4 */
.index #section-4 img{
	width: 100px;
	display: block;
	margin: auto;
}

@media (max-width: 767px){
	.index #section-4 img{
	width: 90px;
	margin: 0 auto;
	}
}


.index #section-4 .body {
	margin: 64px auto 0;
}
.index #section-4 ul {
	list-style: none;
	padding: 0;
}
.index #section-4 li {
	display: flex;
	padding: 24px 24px 24px 150px;
}
@media (max-width: 767px) {
	.index #section-4 li {
		font-size: 14px;
		padding: 24px 12px;
	}
}

.index #section-4 time {
	color: #ebce56;
	flex-shrink: 0;
	font-weight: bold;
	margin-right: 40px;
	width: 100px;
}
@media (max-width: 767px) {
	.index #section-4 time {
		width: 70px;
		margin-right: 30px;
	}
}

.index #section-4 .btn a {
	align-items: center;
	background: #ebce56;
	border: 2px solid #ebce56;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
	padding: 16px 0;
	text-decoration: none;
	transition: .3s;
	width: 300px;
}
.index #section-4 .btn a:hover {
	background: #fafafa;
	color: #ebce56;
}


/* contact */
#contact{
	background: #f3f3f3;
}

#contact .tit {
	color: #fff;
	position: relative;
	z-index: 2;
}

#contact .tit img{
	width: 120px;
	display: block;
	margin: auto;
}

@media (max-width: 767px){
	#contact .tit img{
	width: 100px;
	margin: 100px auto 0;
	}
}


#contact .body {
	margin: 64px auto 0;
	position: relative;
	text-align: left;
	z-index: 2;
}

#contact .body .group img {
	margin: 0 auto 0 0px;
	position: relative;
	width: 90%;
}

#contact .group {
	align-items: center;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 16px 0;
}
@media (max-width: 767px) {
	#contact .group {
		flex-wrap: wrap;	
	}
}

.index #contact .btn a {
	align-items: center;
	background: #434343;
	border: 2px solid #434343;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
	padding: 16px 0;
	text-decoration: none;
	transition: .3s;
	width: 300px;
}

.index #contact .btn a::after {
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background: url(../img/designner-icon.png) no-repeat;
    background-size: 20px 20px;
    margin-left: 7px;		
}
.index #contact .btn a:hover {
	background: #fafafa;
	color: #434343;
}