@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Ubuntu:wght@400;500;700&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #fff;
	color: #000000;
	padding-top: 99px;
	background-image: url("https://8gen-kouta.com/system_panel/uploads/images/bg-item.png");
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 100% auto;
}
.font-ubuntu{
	font-family: "Ubuntu","Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.font-medium{font-weight: 500;}
.font-bold{font-weight: 700;}
.font-black{font-weight: 900;}

.shadow{
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3)!important;
}

/* ---------- other ---------- */
.logo{
	max-width: 80px;
}
.main-contents{
	padding: 0 100px;
}
.page-title{
	position: relative;
	margin-bottom: 200px;
}
.page-title::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,0.3);
}
.page-title .title-box{
	position: absolute;
	font-size: 80px;
	font-weight: 700;
	z-index: 2;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
}

.more a{
	display: inline-block;
	border-width: 2px;
	border-style: solid;
	border-radius: 100px;
	padding: 5px 50px;
	position: relative;
	transition: ease 0.3s;
	overflow: hidden;
	min-width: 180px;
	box-sizing: border-box;
	text-align: center;
}
.more a::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: ease 0.3s;
}
.more a:hover::after{
	transform: translateX(0);
}
.more a i,.more a p{
	position: relative;
	z-index: 2;
	transition: ease 0.3s;
	font-weight: 700;
}
.more a i{
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: ease 0.3s;
}
.more a:hover i{
	transform: translateY(-50%) translateX(3px);
}
.more1 a{
	border-color: #98794a;
}
.more1 a::after{
	background-color: #98794a;
}
.more1 a i,.more1 a p{
	color: #98794a;
}
.more1 a:hover i,.more1 a:hover p{color: #ffffff;}
.more2 a{
	border-color: #ffffff;
}
.more2 a::after{
	background-color: #ffffff;
}
.more2 a i,.more2 a p{
	color: #ffffff;
}
.more2 a:hover i,.more2 a:hover p{color: #000000;}
.more3 a{
	border-color: #000000;
}
.more3 a::after{
	background-color: #000000;
}
.more3 a i,.more3 a p{
	color: #000000;
}
.more3 a:hover i,.more3 a:hover p{color: #ffffff;}
.more3 a i{
	left: 20px;
	right: auto;
}
.more3 a:hover i{
	transform: translateY(-50%) translateX(-3px);
}

.noimg{
	background-color: rgb(152,121,74);
	background-color: linear-gradient(90deg, rgba(152,121,74,1) 0%, rgba(166,128,109,1) 100%);
}

/* ---------- header ---------- */
.header{
	padding: 10px 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.header a i,.header a p,.header .menu-bt p{
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 1px;
}
.header a i,.header a p{display: inline-block;}
.header .head-shoplink,.header .head-contactlink{
	margin-right: 50px;
	transition: ease 0.3s;
}
.header .head-shoplink:hover,.header .head-contactlink:hover{
	opacity: 0.5;
}
.header a i{
	font-size: 22px;
	margin-right: 10px;
}
.header .menu-bt{
	text-align: center;
	cursor: pointer;
}
.header .menu-bt .line{
	width: 30px;
	height: 21px;
	position: relative;
	margin: 0 auto;
}
.header .menu-bt .line div{
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	border-radius: 3px;
	background-color: #ffffff;
	transition: ease 0.3s;
}
.header .menu-bt .line div:nth-of-type(1){
	top: 50%;
	transform: translateY(-50%)
}
.header .menu-bt .line div:nth-of-type(2){
	top: 0;
}
.header .menu-bt .line div:nth-of-type(3){
	bottom: 0;
}
.header .menu-bt.active .line div:nth-of-type(1){
	opacity: 0;
}
.header .menu-bt.active .line div:nth-of-type(2){
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.header .menu-bt.active .line div:nth-of-type(3){
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}
.menu-wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 98;
	box-sizing: border-box;
	padding: 150px 100px 30px;
	overflow: auto;
	opacity: 0;
}
.menu-wrap.on{opacity: 1;}
.menu-wrap .menu-list{
	width: 70%;
}
.menu-wrap .menu-list > div{
	position: relative;
}
.menu-wrap .menu-list > div::after{
	content: "";
	width: 0;
	height: 1px;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: ease 1s;
}
.menu-wrap.active .menu-list > div::after{
	width: 100%;
}
.menu-wrap .menu-list > div:not(:last-of-type){
	margin-bottom: 20px;
}
.menu-wrap .menu-list > div:nth-of-type(1){
	width: 65%;
}
.menu-wrap .menu-list > div:nth-of-type(2){
	width: 70%;
}
.menu-wrap .menu-list > div:nth-of-type(3){
	width: 75%;
}
.menu-wrap .menu-list > div:nth-of-type(4){
	width: 80%;
}
.menu-wrap .menu-list > div:nth-of-type(5){
	width: 85%;
}
.menu-wrap .menu-list > div:nth-of-type(6){
	width: 90%;
}
.menu-wrap .menu-list > div:nth-of-type(7){
	width: 95%;
}
.menu-wrap .menu-list > div:nth-of-type(8){
	width: 100%;
}
.menu-wrap a{
	transition: ease 0.3s;
}
.menu-wrap a:hover{
	opacity: 0.5;
	letter-spacing: 2px;
}
.menu-wrap a p{
	font-family: "Ubuntu","Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 36px;
}
/* ---------- footer ---------- */
.onlineshop-contents{
	background-image: url("https://8gen-kouta.com/system_panel/uploads/images/pagetitle08.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
	padding: 100px 0;
}
.onlineshop-contents::after{
	content: "";
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.onlineshop-contents > div{
	position: relative;
	z-index: 2;
	text-align: center;
}
.onlineshop-contents .font-ubuntu{
	font-size: 60px;
	font-weight: 900;
}

.footer{}
.footer .sns-links a{
	transition: ease 0.3s;
}
.footer .sns-links a:hover{
	opacity: 0.5;
}
.footer .sns-links a:not(:last-of-type) {
	margin-right: 30px;
}
.footer .sns-links a i{
	color: #ffffff;
	font-size: 24px;
}
.footer .right-box{
	position: relative;
}
.footer .right-box iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	left: 0;
}

.copyright{
	padding: 20px;
}

/* ANIME */

/* color */
.txt-color-nomal{color: #000000;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #98794a}
.txt-color2{color: #f3e6d6}
.txt-color3{color: #cccccc}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #98794a}
.bg-color2{background-color: #f3e6d6}
.bg-color3{background-color: #cccccc}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #98794a}
.border-color2{border-color: #f3e6d6}
.border-color3{border-color: #cccccc}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-nomal:hover{color: #000000;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #98794a}
.hvr-txt-color2:hover{color: #f3e6d6}
.hvr-txt-color3:hover{color: #cccccc}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #98794a}
.hvr-bg-color2:hover{background-color: #f3e6d6}
.hvr-bg-color3:hover{background-color: #cccccc}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #98794a}
.hvr-border-color2:hover{border-color: #f3e6d6}
.hvr-border-color3:hover{border-color: #cccccc}
.hvr-border-color4:hover{border-color: #EBF5E5}

.bg-gradation{
	background: rgb(152,121,74);
	background: linear-gradient(90deg, rgba(152,121,74,1) 0%, rgba(166,128,109,1) 100%);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.page-title .title-box{
		font-size: 70px;
	}
	.menu-wrap a p{
		font-size: 24px;
	}
}
/* ---------- 1000px ~ ---------- */
@media screen and (max-width: 1000px){
	.page-title .title-box{
		font-size: 60px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	body{
		padding-top: 90px;
	}
	
	.logo{max-width: 70px;}
	
	.main-contents{
		padding: 0 50px;
	}
	.page-title{
		margin-bottom: 100px;
	}
	.page-title .title-box{
		font-size: 50px;
	}

	.header{
		padding: 10px 30px;
	}
	.header a p{
		font-size: 14px;
	}
	
	.menu-wrap .menu-list{
		width: 100%;
	}
	
	.onlineshop-contents .font-ubuntu{
		font-size: 50px;
	}
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	body{padding-top: 60px;}
	.shadow{
		box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	}
	.logo{max-width: 50px;}
	.main-contents{
		padding: 0 30px;
	}
	.page-title .title-box{
		font-size: 30px;
	}
	.header{
		padding: 5px 10px;
	}
	.header a p{
		display: none;
	}
	.header a i{
		font-size: 18px;
		margin-right: 0;
	}
	.header .head-shoplink{
		margin-right: 30px;
	}
	.header .head-contactlink{
		margin-right: 50px;
	}
	.header .menu-bt p{
		font-size: 12px;
	}
	
	.menu-wrap{
		padding: 80px 30px;
	}
	.menu-wrap a p{
		font-size: 20px;
	}
	
	.onlineshop-contents .font-ubuntu{
		font-size: 40px;
	}
	.footer .left-box{
		order: 2;
	}
	.footer .right-box{
		height: 300px;
		order: 1;
	}
	.copyright{
		padding: 10px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}