@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 15px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #333;
	background-color: #fff;
	letter-spacing: 0.1em;
	overflow: hidden;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { float: right; margin: 0 0 40px 40px;}
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }


.en {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
.en_scrpt {
	font-family: "origins-smooth", sans-serif;
	font-weight: 400;
	font-style: normal;
}

@media screen and (max-width: 767px){
	.pcOnly{
		display: none !important;
	}
	
	.alignright { float: none; margin: 0 0 20px 0;}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none !important;
	}
}

#wrapper {
	width: 100%;
	position: relative;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	#wrapper {
		min-width: 100%;
	}
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/*------common-----*/

header {
	width: 100%;
	height: 100px;
	background: #f4efe4;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .logo {
}
header .logo a {
	width: 180px;
	display: block;
}
header .logo img {
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}
header .logo a img:hover {
	opacity: 0.6;
}
.btn_spmenu {
	position: fixed;
	right: 0px;
	top: 0px;
	display: block;
	width: 100px;
	height: 100px;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
.btn_spmenu .icon {
	content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	background: url("../img/heart.png") no-repeat 50% 50%;
	background-size: cover;
	position: absolute;
	right: 20px;
	top: 22px;
}
.menubtn {
	position: fixed;
	right: 0;
	top: 0;
}

.btn_close {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 100px;
	height: 100px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
.btn_spmenu span,
.btn_spmenu::before,
.btn_spmenu::after {
	content: '';
	width: 50px;
	height: 3px;
	position: absolute;
	top: 45px;
	left: 50%;
	margin-left: -25px;
	background: #ac8248;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.btn_spmenu::before {
	transform: translateY(-15px);
	width: 35px;
}
.btn_spmenu::after {
	transform: translateY(15px);
}
.btn_close span,
.btn_close::before,
.btn_close::after {
	content: '';
	width: 50px;
	height: 3px;
	position: absolute;
	top: 45px;
	left: 50%;
	margin-left: -25px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.btn_close span {
	opacity: 0;
}
.btn_close::before {
	transform: translateY(0) rotate(45deg);
}
.btn_close::after {
	transform: translateY(0) rotate(-45deg);
}

.sns {
	position: fixed;
	left: 50px;
	top: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 999;
}
.sns li {
	margin-bottom: 35px;
}
.sns li:last-child {
	margin-bottom: 0;
}
.sns img {
	width: 26px;
	transition: opacity 0.3s ease;
}
.sns img:hover {
	opacity: 0.6;
}

/*SP用メニュー*/

.g_navi {
	position: fixed;
	z-index: -9999;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #b2000d;
	color: #fff;
	transition: all .3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	opacity: 0;
	overflow: auto; /*追加*/
	-webkit-overflow-scrolling: touch; /*追加*/
}
.g_navi.is-active {
	z-index: 9999;
	opacity: 1;
}
.g_navi .left {
	width: 50%;
	height: 100%;
}
.g_navi .left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.g_navi .right {
	width: 50%;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.g_navi .right .in {
	width: 100%;
	max-width: 400px;
}
.g_navi {
	display: flex;
	justify-content: space-between;
}
.g_navi_sp {
	margin-bottom: 50px;
}
.g_navi_sp li {
	font-size: 30px;
	margin-bottom: 1em;
}
.g_navi_sp a {
	color: #fff;
	transition: opacity 0.3s ease;
	text-decoration: none !important;
}
.g_navi_sp a:hover {
	opacity: 0.6;
}

.g_navi .btn_apparel {
	display: block;
	margin: 0 auto 30px;
	background-color: #c4a77e;
	padding: 20px;
	width: 100%;
	text-align: center;
	transition: opacity 0.3s ease;
}
.g_navi .btn_apparel:hover {
	opacity: 0.6;
}
.g_navi .btn_apparel img {
	width: 256px;
}
.g_navi .ftr_sns {
	display: flex;
	margin-bottom: 50px;
}
.g_navi .ftr_sns li {
	margin: 0 20px 0 0;
}
.g_navi .ftr_sns img {
	width: 31px;
	transition: opacity 0.3s ease;
}
.g_navi .ftr_sns img:hover {
	opacity: 0.6;
}

@media screen and (max-width: 999px){

	.sns {
		left: 30px;
	}
	.sns li {
		margin-bottom: 20px;
	}
	.sns img {
		width: 20px;
	}
	
}
@media screen and (max-width: 767px){

	header {
		height: 60px;
	}
	header .logo a {
		width: 140px;
	}
	.btn_spmenu {
		width: 60px;
		height: 60px;
	}
	.btn_spmenu .icon {
		width: 13px;
		height: 13px;
		right: 9px;
		top: 11px;
	}
	.btn_close {
		width: 60px;
		height: 60px;
	}
	.btn_spmenu span,
	.btn_spmenu::before,
	.btn_spmenu::after {
		width: 40px;
		height: 2px;
		top: 30px;
		margin-left: -20px;
	}
	.btn_spmenu::before {
		transform: translateY(-10px);
		width: 25px;
	}
	.btn_spmenu::after {
		transform: translateY(10px);
	}
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		width: 40px;
		height: 2px;
		top: 30px;
		margin-left: -20px;
	}
	.sns {
		display: none;
	}

	/*SP用メニュー*/
	.g_navi .left {
		display: none;
	}
	.g_navi .right {
		width: 100%;
		padding: 0 30px;
	}
	.g_navi_sp {
		margin-bottom: 30px;
	}
	.g_navi_sp li {
		font-size: 24px;
	}
	.g_navi .btn_apparel {
		padding: 15px;
	}
	.g_navi .btn_apparel img {
		width: 100%;
		max-width: 200px;
	}
	.g_navi .ftr_sns {
		display: flex;
		margin-bottom: 30px;
	}
	.g_navi .ftr_sns li {
		margin: 0 25px 0 0;
	}
	
}

/*------フッター-----*/

.sec_contact {
	padding: 60px 100px;
	background: #f4efe4;
}
.sec_contact .inner {
	max-width: 1000px;
	margin: 0 auto;
}
.sec_contact .en_scrpt {
	text-align: center;
	font-size: 72px;
	color: #ac8248;
	margin-bottom: 20px;
}
.sec_contact h2 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: center;
}
.sec_contact ul {
	display: flex;
	justify-content: space-between;
}
.sec_contact li {
	width: calc( ( 100% - 30px ) / 2 );
	background-color: #fff;
	padding: 40px;
}
.sec_contact li h3 {
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
	font-size: 18px;
}
.sec_contact li p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 30px;
}
.sec_contact li a {
	background-color: #b2000d;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 50px;
	max-width: 260px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 auto;
	transition: opacity 0.3s ease;
}

.sec_contact li a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 999px){
	
	.sec_contact {
		padding: 50px 60px;
	}
	.sec_contact .en_scrpt {
		font-size: 60px;
		margin-bottom: 20px;
	}
	.sec_contact h2 {
		font-size: 16px;
		margin-bottom: 40px;
	}
	.sec_contact li {
		padding: 30px;
	}
	.sec_contact li h3 {
		font-size: 16px;
	}

}

@media screen and (max-width: 767px){
	
	.sec_contact {
		padding: 50px 30px;
	}
	.sec_contact .inner {
		max-width: 480px;
	}
	.sec_contact .en_scrpt {
		font-size: 48px;
		margin-bottom: 20px;
	}
	.sec_contact h2 {
		font-size: 16px;
		margin-bottom: 40px;
	}
	.sec_contact ul {
		display: block;
	}
	.sec_contact li {
		width: 100%;
		padding: 30px 20px;
		margin-bottom: 20px;
	}
	.sec_contact li:last-child {
		margin-bottom: 0;
	}
	.sec_contact li h3 {
		margin-bottom: 20px;
		font-size: 16px;
	}
	.sec_contact li p {
		margin-bottom: 20px;
	}
}

.footerlink {
	background-color: #c4a77e;
	padding: 60px 100px;
}
.footerlink .inner {
	max-width: 1000px;
	margin: 0 auto;
	color: #fff;
}
.footerlink a {
	color: #fff;
	text-decoration: none !important;
}
.footerlink .ftr_logo {
	margin: 0 auto 60px;
	display: block;
	width: 180px;
}
.footerlink .ftr_logo img {
	width: 100%;
}
.footerlink .link_box {
	max-width: 800px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between;
}
.footerlink .link_box > div {
	width: 23%;
}
.footerlink .link_box p {
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 2em;
}
.footerlink .link_box li {
	font-size: 13px;
	line-height: 1.3;
	margin-bottom: 1em;
}
.footerlink .link_box a:hover {
	text-decoration: underline !important;
}
.footerlink .btn_apparel {
	display: block;
	margin: 0 auto 50px;
	background-color: #fff;
	padding: 20px;
	text-align: center;
	max-width: 480px;
	transition: opacity 0.3s ease;
}
.footerlink .btn_apparel:hover {
	opacity: 0.6;
}
.footerlink .btn_apparel img {
	width: 256px;
}
.footerlink .ftr_sns {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
.footerlink .ftr_sns li {
	margin: 0 10px;
}
.footerlink .ftr_sns img {
	width: 31px;
	transition: opacity 0.3s ease;
}
.footerlink .ftr_sns img:hover {
	opacity: 0.6;
}
small {
	text-align: center;
	font-size: 12px;
	display: block;
}

@media screen and (max-width: 999px){
	
	.footerlink {
		padding: 50px 60px;
	}
	.footerlink .ftr_logo {
		margin: 0 auto 40px;
		width: 180px;
	}
	.footerlink .link_box {
		margin: 0 auto 30px;
	}
	.footerlink .link_box p {
		font-size: 14px;
	}
	.footerlink .link_box li {
		font-size: 12px;
	}
	.footerlink .btn_apparel {
		margin: 0 auto 40px;
	}
	.footerlink .ftr_sns {
		margin-bottom: 40px;
	}



}

@media screen and (max-width: 767px){
	
	.footerlink {
		padding: 50px 30px;
	}
	.footerlink .inner {
		max-width: 480px;
	}
	.footerlink .ftr_logo {
		margin: 0 auto 40px;
		width: 180px;
	}
	.footerlink .link_box {
		display: none;
	}
	.footerlink .btn_apparel {
		margin: 0 auto 40px;
		padding: 20px;
		max-width: 360px
	}
	.footerlink .btn_apparel img {
		width: 256px;
	}
	.footerlink .ftr_sns {
		margin-bottom: 40px;
	}

	small {
		font-size: 11px;
	}
}
/*--------------pageTop--------------*/

#pageTop{
	position: fixed;
	right: -60px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5) url(../img/common/pagetop.png) no-repeat 50% 50%;
	background-size: 14px;
	z-index: 9998;
	transition: all 0.3s ease;
	text-indent: -9999px;
}

#pageTop.showIn{
	right: 0;
}

@media screen and (min-width: 768px), print{
	#pageTop{
		right: 35px;
		bottom: -60px;
		width: 60px;
		height: 60px;
		background: rgba(0, 0, 0, 0.5) url(../img/common/pagetop.png) no-repeat 50% 50%;
		background-size: 27px;
	}
	
	#pageTop.showIn{
		right: 35px;
		bottom: 30px;
	}
}
