@charset "utf-8";

/* 共通（リセット）
-------------------------------------------------- */
*{
	margin: 0;
	padding: 0;
	line-height: 1.6em;
}

body{
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #333333;
}

body.fixed{
	height: 100vh;
	overflow: hidden;
}

img{
	vertical-align: bottom;
}

li{
	list-style-type: none;
}

/* PC
-------------------------------------------------- */
@media screen and (min-width:1200px){
	header{
		width: 100%;
		position: sticky;
		top: 0;
		left: 0;
		z-index: 1000;
		box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
		background: #ffffff;
	}

	.h_inner{
		box-sizing: border-box;
		padding: 10px 0;
		height: 60px;
		width: 100%;
		max-width: 1200px;
		margin: auto;
		display: flex;
		justify-content: space-between;
	}

	.h_inner .logo a{
		display: block;
	}

	.h_inner .logo img{
		height: 100%;
		max-height: 40px;
		width: auto;
	}

	/* ドロワーメニュー > ボタン
	------------------------------ */
	.open-btn1{
		position: relative;
		cursor: pointer;
		width: 30px;
		height: 40px;
		z-index: 10;
	}

	.open-btn1 span{
		display: inline-block;
		transition: all 0.4s;
		position: absolute;
		left: 0;
		height: 5px;
		transform: scaleY(0.5) translateY(1px);
		background: #333333;
		width: 100%;
	}

	.open-btn1 span:nth-of-type(1){top: 8px;}
	.open-btn1 span:nth-of-type(2){top: 18px;}
	.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

	.open-btn1.active span:nth-of-type(1){
		top: 13px;
		right: 0;
		transform: translateY(6px) rotate(-45deg);
		width: 120%;
		height: 3px;
	}

	.open-btn1.active span:nth-of-type(2){
		opacity: 0;
	}

	.open-btn1.active span:nth-of-type(3){
		top: 25px;
		right: 0px;
		transform: translateY(-6px) rotate(45deg);
		width: 120%;
		height: 3px;
	}

	/* ドロワーメニュー > 背景
	------------------------------ */
	.nav-bg{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.6);
		transition: all 0.3s;
	}

	.nav-bg.bg-active{
		display: block;
		transition: all 0.3s;
	}

	#sp-g-nav{display: none;}

	.navWrap{
		display: block;
		box-sizing: border-box;
		position: fixed;
		z-index: 10;
		background-color: #f1f1f1;
		font-size: 16px;
		font-weight: 300;
		line-height: 1.3;
		width: 100%;
		top: 0;
		right: -100%;
		transition: all 0.3s;
		padding: 80px 0 0;
	}

	.navWrap.panel-active{
		width: 100%;
		height: 100vh;
		top: 0;
		right: 0;
		transition: all 0.3s;
		padding: 80px 0 0;
	}

	/* ドロワーメニュー > 内部
	------------------------------ */
	.navInner{
		display: block;
		box-sizing: border-box;
		padding: 40px;
		background: #ffffff;
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.navInner h2{
		display: block;
		box-sizing: border-box;
		padding: 15px 0;;
		font-weight: 700;
		font-size: 16px;
		position: relative;
		z-index: 1;
		cursor: pointer;
		border-bottom: 1px solid #cccccc;
	}
	
	.navInner h2 a{
		display: block;
		text-decoration: none;
		color: #333333;
	}

	.navInner h2.accordion::before{
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 6px;
		width: 2px;
		height: 14px;
		margin-top: -7px;
		background-color: #cc0000;
		transition: 0.2s;
	}
	.navInner h2.accordion.open::before{
		transform: rotate(90deg);
		opacity: 0;
	}

	.navInner h2.accordion::after{
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 0px;
		width: 14px;
		height: 2px;
		margin-top: -1px;
		background-color: #cc0000;
	}

	.navInner ul{
		display: none;
		margin-bottom: 20px;
	}
	
	.navInner li{
		border-bottom: 1px solid #cccccc;
		padding-left: 1em;
	}
	
	.navInner li a{
		display: block;
		box-sizing: border-box;
		padding: 1rem 0;
		font-size: 16px;
		color: #000000;
		position: relative;
		z-index: 1;
		text-decoration: none;
	}
	
	.navInner i{
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		z-index: 1;
		margin-top: -8px;
	}
	.navInner a:hover{
		text-decoration: underline;
	}

	.linkFlex{
		display: flex;
		justify-content: center;
		margin-top: 30px;
		padding-top: 30px;
	}

	.linkFlex a.item,
	.linkFlex a.shop{
		display: block;
		width: 35%;
		text-align: center;
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		border-radius: 5px;
		text-decoration: none;
		padding: 15px 0;
		position: relative;
		z-index: 1;
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
		margin: 10px 20px;
	}

	.linkFlex a.item{background: #cc0000;}
	.linkFlex a.shop{background: #065fd4;}

	.linkFlex a.item:hover,
	.linkFlex a.shop:hover{
		margin: 13px 20px 7px;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
	}

	.linkFlex a i{
		position: absolute;
		top: 50%;
		right: 20px;
	}

	.linkFlex a.item i{
		font-size: 20px;
		margin-top: -10px;
	}

	.linkFlex a.shop i{
		font-size: 16px;
		margin-top: -8px;
	}
	
	footer{
		display: none;
	}
	
	.copyright{
		background: #333333;
		color: #ffffff;
		font-size: clamp(14px, 1.3vw, 16px);
		text-align: center;
		padding: 10px 0;
	}
}

@media screen and (max-width:1199px){
	header{
		width: 100%;
		position: sticky;
		top: 0;
		left: 0;
		z-index: 1000;
		box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
		background: #ffffff;
	}

	.h_inner{
		box-sizing: border-box;
		padding: 10px 20px;
		height: 60px;
		width: 100%;
		max-width: 1300px;
		margin: auto;
		display: flex;
		justify-content: space-between;
	}

	.h_inner .logo a{
		display: block;
	}

	.h_inner .logo img{
		height: 100%;
		max-height: 40px;
		width: auto;
	}

	/* ドロワーメニュー > ボタン
	------------------------------ */
	.open-btn1{
		position: relative;
		cursor: pointer;
		width: 30px;
		height: 40px;
		z-index: 10;
	}

	.open-btn1 span{
		display: inline-block;
		transition: all 0.4s;
		position: absolute;
		left: 0;
		height: 5px;
		transform: scaleY(0.5) translateY(1px);
		background: #333333;
		width: 100%;
	}

	.open-btn1 span:nth-of-type(1){top: 8px;}
	.open-btn1 span:nth-of-type(2){top: 18px;}
	.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

	.open-btn1.active span:nth-of-type(1){
		top: 13px;
		right: 0;
		transform: translateY(6px) rotate(-45deg);
		width: 120%;
		height: 3px;
	}

	.open-btn1.active span:nth-of-type(2){
		opacity: 0;
	}

	.open-btn1.active span:nth-of-type(3){
		top: 25px;
		right: 0px;
		transform: translateY(-6px) rotate(45deg);
		width: 120%;
		height: 3px;
	}

	/* ドロワーメニュー > 背景
	------------------------------ */
	.nav-bg{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.6);
		transition: all 0.3s;
	}

	.nav-bg.bg-active{
		display: block;
		transition: all 0.3s;
	}

	#sp-g-nav{display: none;}

	.navWrap{
		display: block;
		box-sizing: border-box;
		position: fixed;
		z-index: 10;
		background-color: #f1f1f1;
		font-size: 16px;
		font-weight: 300;
		line-height: 1.3;
		width: 100%;
		top: 0;
		right: -100%;
		transition: all 0.3s;
		padding: 80px 0 0;
	}
	
	.navWrap.panel-active{
		width: 100%;
		height: 100vh;
		top: 0;
		right: 0;
	}

	/* ドロワーメニュー > 内部
	------------------------------ */
	.navInner{
		box-sizing: border-box;
		padding: 5px 20px 20px;
		background: #ffffff;
		width: 90%;
		margin: 0 auto;
		box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
	}

	.navInner h2{
		display: block;
		box-sizing: border-box;
		padding: 15px 0 15px;
		font-weight: 600;
		font-size: 16px;
		position: relative;
		z-index: 1;
		border-bottom: 1px solid #cccccc;
	}
	
	.navInner h2 a{
		display: block;
		text-decoration: none;
		color: #333333;
		position: relative;
	}

	.navInner h2.accordion::before{
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 6px;
		width: 2px;
		height: 14px;
		margin-top: -6px;
		background-color: #cc0000;
		transition: 0.2s;
	}
	.navInner h2.accordion.open::before{
		transform: rotate(90deg);
		opacity: 0;
	}

	.navInner h2.accordion::after{
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 0px;
		width: 14px;
		height: 2px;
		margin-top: 0;
		background-color: #cc0000;
	}

	.navInner ul{
		display: none;
	}

	.navInner li a{
		display: block;
		box-sizing: border-box;
		position: relative;
		padding: 15px 0 15px 1em !important;
		font-size: 14px;
		font-weight: 400;
		border-bottom: 1px solid #cccccc;
		color: #333333;
		text-decoration: none;
	}

	.navInner i{
		position: absolute;
		right: 0;
		top: 50%;
		font-size: 14px;
		margin-top: -7px;
	}

	.navInner li span{
		font-size: 13px;
		margin-left: 5px;
	}

	.linkFlex{
		margin-top: 30px;
	}

	.linkFlex a.item,
	.linkFlex a.shop{
		display: block;
		box-sizing: border-box;
		width: 100%;
		text-align: center;
		color: #ffffff;
		font-size: 14px;
		font-weight: 500;
		border-radius: 5px;
		text-decoration: none;
		padding: 15px 0;
		position: relative;
		z-index: 1;
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
		margin-bottom: 20px;
	}

	.linkFlex a.item{background: #cc0000;}
	.linkFlex a.shop{background: #065fd4;}

	.linkFlex a i{
		position: absolute;
		top: 50%;
		right: 20px;
	}

	.linkFlex a.item i{
		font-size: 18px;
		margin-top: -9px;
	}

	.linkFlex a.shop i{
		font-size: 14px;
		margin-top: -7px;
	}
	
	footer{
		padding: 40px 20px;
		background: #000000;
	}
	
	.f_inner{
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.f_inner > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
		box-sizing: border-box;
		width: 100%;
		background: #ffffff;
		border-radius: 5px;
		margin-bottom: 20px;
		padding: 15px 20px;
		text-decoration: none;
		font-size: clamp(16px, 1.5vw, 18px);
		color: #333333;
		font-weight: 600;
	}

	.f_inner > a i{
		font-size: 24px;
	}

	.sns{
		display: flex;
		box-sizing: border-box;
		justify-content: space-between;
		padding: 0 20px;
		margin-top: 40px;
	}

	.sns li{
		width: 18%;
	}

	.sns li a{
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		border-radius: 100%;
		background: #333333;
		aspect-ratio: 1;
	}

	.sns li a img{height: 60%;}
	.sns li:nth-child(1) a img{height: 50%;}

	.official_app{
		font-size: clamp(16px, 1.5vw, 18px);
		color: #ffffff;
		font-weight: 600;
		margin-top: 40px;
		text-align: center;
	}

	.download{
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.download a{
		display: block;
		margin: 0 10px;
	}

	.download img{
		width: 100%;
		height: 80px;
		object-fit: contain;
	}

	.copyright{
		background: #333333;
		color: #ffffff;
		font-size: clamp(14px, 1.3vw, 16px);
		text-align: center;
		padding: 10px 0;
	}
}