@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap');

/*--------------------------------------------------------------------*/
/*基本レイアウト設定*/
/*--------------------------------------------------------------------*/
img, iframe, video{
	max-width:100%;
	height:auto;
	vertical-align: bottom;
}

body{
	-webkit-text-size-adjust:100%;	/*文字サイズの自動調整オフに*/
	font-family: "Noto Sans JP", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
	background:#FFFFFF;
	color:#454545;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
}
a{
	color:#333333;
	text-decoration: none;
	transition: .3s;
}
a:hover{
	opacity: 0.7;
}

.wrapper{
	width: 100%;
	max-width: 1230px;
	margin-left: auto;
	margin-right:auto;
	padding-left: 15px;
	padding-right: 15px;
}

.txt-c{ text-align:center; }
.txt-l{ text-align:left; }
.txt-r{ text-align:right; }

.txt12{ font-size: 12px; }
.txt15{ font-size: 15px;
        font-weight: 600;}

.mb10{ margin-bottom: 10px; }
.mb15{ margin-bottom: 15px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }

.mt30{ margin-top: 30px;}

strong{ font-weight: 600;}

/*--------------------------------------------------------------------*/
/*ヘッダー　BSロゴ*/
/*--------------------------------------------------------------------*/
#header_hdqrs{
	padding: 6px 0;
	overflow: hidden;
	border-bottom:1px solid #cccccc;
	background: #FFFFFF;
	position: relative;
	z-index: 999;
}
#header_hdqrs .wrapper{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#header_hdqrs .header_hdqrs_menu{
	font-size: 0;
}
#header_hdqrs .header_hdqrs_menu li{
	display: inline-block;
	font-size: 12px;
	letter-spacing: -0.05em;
	margin-right: 25px;
	vertical-align: middle;
}
#header_hdqrs .header_hdqrs_logo{
	width: 100px;
}
@media screen and (max-width: 899px) {
	#header_hdqrs{
		padding: 4px 0;
	}
	#header_hdqrs .header_hdqrs_menu{
		display: none;
	}
}

/*--------------------------------------------------------------------*/
/*ヘッダー　本部グローバル*/
/*--------------------------------------------------------------------*/
#header_wrap {
	background-color:#F9F9F9;
	border-bottom: 1px solid #CCCCCC;
	position: sticky;
	top: 0;
	padding: 12px 0;
	z-index: 1000;
	/*height: 65px;*/
}
#header_wrap header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#header_wrap header .header_logo{
	width: 100px;
	padding: 0 6px;
}
#header_wrap header .gnav_hq{
	max-width: calc(100% - 120px);
}
#header_wrap header .gnav_hq ul{
	display: flex;
}
#header_wrap header .gnav_hq li,
#header_wrap header .gnav_hq li a{
	font-size: 13px;
	color:#454545;
}
#header_wrap header .gnav_hq li + li{
	margin-left: 30px;
}
#header_wrap header .header_shopname,
#header_wrap #toggle{
	display: none;
}
@media screen and (max-width: 899px) {
	#header_wrap {
		padding: 10px 0;
		height: auto;
		/*height: 58px;*/
	}
	#header_wrap .wrapper{
		padding-left: 10px;
		padding-right: 10px;
	}
	#header_wrap header .header_logo{
		width: 70px;
		padding: 0;
	}
	#header_wrap header .header_shopname{
		display: block;
		padding-left: 8px;
		font-size: 14px;
		letter-spacing: -0.05em;
		text-align: left;
		margin-right:auto;
	}
	#header_wrap header .gnav_hq{
		display: none;
	}
	#header_wrap #toggle{
		display: block;
	}
}

/*--------------------------------------------------------------------*/
/*スマホ用メニュー*/
/*--------------------------------------------------------------------*/
#gnav_sp_contents{
	display: none;
}
@media screen and (max-width: 899px) {
	#toggle{
		cursor: pointer;
		width: 26px;
		height:26px;
		position: relative;
		margin-top: -12px;
	}
	#toggle::before{
		content: "MENU";
		position: absolute;
		color: #454545;
		font-size: 9px;
		font-weight: 700;
		top: 100%;
		left: 0;
		width: 100%;
		text-align: center;
	}
	#toggle span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		height: 2px;
		border-radius: 2px;
		background-color: #454545;
		width: 100%;
	  }
	#toggle span:nth-of-type(1) {
		top:5px;	
	}
	#toggle span:nth-of-type(2) {
		top:14px;
	}
	#toggle span:nth-of-type(3) {
		top:23px;
	}
	#toggle.active span:nth-of-type(1) {
		top: 0;
		transform: translateY(13px) rotate(-45deg);
	}
	#toggle.active span:nth-of-type(2) {
		opacity: 0;
	}
	#toggle.active span:nth-of-type(3){
		left: 0;
		transform: translateY(-10px) rotate(45deg);
	}
	#gnav_sp.panelactive {
		position: fixed;
		z-index: 999;
		top: 0;
		width: 100%;
		height: 100vh;
	}
	.gnav_sp_bg {
		position: fixed;
		z-index: 3;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: #FFFFFF;
		transform: scale(0);
		top: calc(50% - 50px);
		left: calc(50% - 50px);
		transition: all .6s;
	}
	.gnav_sp_bg.circleactive {
		transform: scale(50);
	}
	#gnav_sp_contents {
		display: none;
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		padding: 100px 10px 30px 10px;
	}
	#gnav_sp.panelactive #gnav_sp_contents{
		display: block;
	}
	#gnav_sp.panelactive #gnav_sp_contents.row2{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	#gnav_sp #gnav_sp_contents.row2 .gnav_sp_menu{
		width: calc(50% - 8px);
	}
	#gnav_sp .gnav_sp_menu{
		opacity: 0;
		animation-name: gnaviAnime;
		animation-duration: 1s;
		animation-delay: .2s;
		animation-fill-mode: forwards;
		background: #FFFFFF;
		border-radius: 5px;
		padding: 15px 10px;
	}
	#gnav_sp .gnav_sp_menu_title{
		font-size: 15px;
		border-bottom: 1px solid #C6C6C6;
		padding:  0 5px 3px 5px;
	}
	#gnav_sp .gnav_sp_menu_title img{
		width: 20px;
		vertical-align: middle;
		margin-top: -2px;
		padding-right: 4px;
	}
	#gnav_sp .gnav_sp_menulist{
		padding-left: 10px;
		font-size: 13px;
	}
	#gnav_sp .gnav_sp_menulist li{
		border-bottom:1px solid #E9E9E9;
		letter-spacing: -0.05em;
	}
	#gnav_sp .gnav_sp_menulist li a{
		display: block;
		padding: 10px 5px 10px 12px;
		position: relative;
	}
	#gnav_sp .gnav_sp_menulist li a::before{
		content: "";
		width: 5px;
		height:5px;
		position: absolute;
		top: 17px;
		left: 0;
		border-left: 1px solid #999999;
		border-bottom: 1px solid #999999;
	}
	#gnav_sp .gnav_sp_link{
		padding-left: 10px;
		font-size: 12px;
		margin-top: 10px;
	}
	#gnav_sp .gnav_sp_link li + li{
		margin-top: 5px;
	}
	#gnav_sp .gnav_sp_link li a{
		display: block;
		padding: 10px 5px;
		background: #E4E4E4;
		text-align: center;
		border-radius: 2px;
		line-height: 1.2;
	}
}
@keyframes gnaviAnime {
	0% { opacity: 0; }
	100% { opacity: 1;	}
}




/*--------------------------------------------------------------------*/
/*フッター*/
/*--------------------------------------------------------------------*/
#footer_wrap{
	background: #F6F6F6;
	padding: 30px 0 60px 0;
}
#footer_wrap .wrapper{
	position: relative;
}
#footer_wrap #pagetop{
	width: 50px;
	height: 50px;
	position: absolute;
	right: -50px;
	top: -50px;
	cursor: pointer;
}
#footer_wrap .footer_snslink{
	padding: 20px 15px;
	text-align: center;
	font-size: 0;
	border-top: 1px solid #CCCCCC;
}
#footer_wrap .footer_snslink li{
	display: inline-block;
	width: 25px;
	margin: 0 25px;
}
#footer_wrap .footer_information_link{
	padding: 10px 0;
	border-top: 1px solid #CCCCCC;
}
#footer_wrap .footer_information_link ul{
	display: flex;
}
#footer_wrap .footer_information_link ul li{
	width: 50%;
	text-align: center;
}
#footer_wrap .footer_information_link ul li + li{
	border-left: 1px solid #E4E4E4;
}
#footer_wrap .footer_information_link ul li a{
	display: block;
	padding: 6px 10px;
}
#footer_wrap .footer_information_link ul li a span{
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 5px;
	width: 18px;
	font-size: 0;
}
#footer_wrap .footer_contact{
	padding: 20px 0;
	border-top: 1px solid #CCCCCC;
	display: flex;
	align-items: stretch;
}
#footer_wrap .footer_contact .footer_contact_box{
	width: 50%;
	padding: 10px 15px;
}
#footer_wrap .footer_contact .footer_contact_box + .footer_contact_box{
	border-left: 1px solid #E4E4E4;
}
#footer_wrap .footer_contact .footer_contact_box .title{
	text-align: center;
	font-size: 17px;
	margin-bottom: 20px;
}
#footer_wrap .footer_contact .footer_contact_box .linkbtn{
	text-align: center;
	margin-bottom: 20px;
}
#footer_wrap .footer_contact .footer_contact_box .linkbtn a{
	display: inline-block;
	font-size: 16px;
	background: #E4E4E4;
	border-radius: 5px;
	padding: 10px 15px;
	min-width: 260px;
}
#footer_wrap .footer_contact .footer_contact_box .linkbtn a span{
	font-size: 80%;
}
#footer_wrap .footer_contact .footer_contact_box .text{
	font-size: 13px;
	max-width: 510px;
	margin: 0 auto;
}
#footer_wrap .footer_contact .footer_contact_box .text p + p{
	margin-top: 15px;
}
#footer_wrap .footer_pagelink{
	padding: 20px 0;
	border-top: 1px solid #CCCCCC;
}
#footer_wrap .footer_pagelink ul.footer_pagelink_onsite{
	max-width: 940px;
	margin: 0 auto 20px auto;
	padding: 0 15px;
	font-size: 13px;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#footer_wrap .footer_pagelink ul.footer_pagelink_onsite li a{
	position: relative;
	padding-left: 15px;
}
#footer_wrap .footer_pagelink ul.footer_pagelink_onsite li a::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	transform: translateY(-50%) rotate(45deg);
	border-right: 1px solid #454545;
	border-top: 1px solid #454545;
	content: "";
}
#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal{
	max-width: 940px;
	margin: 0 auto;
	padding: 0 15px;
	font-size: 13px;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal li{
	position: relative;
	padding-left: 15px;
}
#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal li::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	transform: translateY(-50%) rotate(45deg);
	border-right: 1px solid #FF0000;
	border-top: 1px solid #FF0000;
	content: "";
}
#footer_wrap .footer_copyright{
	padding: 30px 15px;
	border-top: 1px solid #CCCCCC;
	text-align: center;
	font-size: 11px;
}
@media screen and (max-width: 1349px) {
	#footer_wrap #pagetop{
		display: none;
	}
}
@media screen and (max-width: 899px) {
	#footer_wrap{
		padding: 30px 0 110px 0;
	}
	#footer_wrap .footer_snslink{
		padding: 10px 15px;
	}
	#footer_wrap .footer_snslink li{
		margin: 0 20px;
	}
	#footer_wrap .footer_information_link{
		font-size: 13px;
	}
	#footer_wrap .footer_contact{
		padding: 20px 0;
		display: block;
	}
	#footer_wrap .footer_contact .footer_contact_box{
		width: 100%;
		padding: 10px 15px;
	}
	#footer_wrap .footer_contact .footer_contact_box + .footer_contact_box{
		border-left: none;
		margin-top: 20px;
	}
	#footer_wrap .footer_contact .footer_contact_box .title{
		font-size: 15px;
		margin-bottom: 10px;
	}
	#footer_wrap .footer_contact .footer_contact_box .linkbtn{
		margin-bottom: 10px;
	}
	#footer_wrap .footer_contact .footer_contact_box .linkbtn a{
		font-size: 14px;
		padding: 10px 15px;
		min-width: 200px;
	}
	#footer_wrap .footer_contact .footer_contact_box .text{
		font-size: 12px;
	}
	#footer_wrap .footer_contact .footer_contact_box .text p + p{
		margin-top: 10px;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_onsite{
		margin: 0 auto 15px auto;
		font-size: 11px;
		flex-wrap: wrap;
		justify-content: center;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_onsite li{
		padding: 4px 10px;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_onsite li a{
		padding-left: 12px;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal{
		margin: 0;
		padding-top: 15px;
		font-size: 11px;
		flex-wrap: wrap;
		justify-content: center;
		border-top: 1px solid #E4E4E4;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal li{
		padding: 4px 15px 4px 0;
	}
	#footer_wrap .footer_pagelink ul.footer_pagelink_extarnal li a{
		padding-left: 12px;
	}
}
	
/*--------------------------------------------------------------------*/
/*フッター固定ボタン*/
/*--------------------------------------------------------------------*/
#footer_fixed_wrap{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	background: #3E3E3E;
	color: #FFFFFF;
	z-index: 990;
}
#footer_fixed_wrap .wrapper{
	position: relative;
	text-align: center;
}
#footer_fixed_wrap a{
	color: #FFFFFF;
	font-size: 14px;
}
#footer_fixed_wrap .footer_btn_link{
	margin: 0 auto;
	padding: 7px 160px;
	display: flex;
}
#footer_fixed_wrap .footer_btn_link li{
	width:calc(50% - 5px);
}
#footer_fixed_wrap .footer_btn_link li + li{
	margin-left: 10px;
}
#footer_fixed_wrap .footer_btn_link li a{
	display: block;
	border: 1px solid #FFFFFF;
	border-radius: 4px;
	padding: 4px 15px;
}
#footer_fixed_wrap .footer_btn_link .icon_animation{
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 36px;
	margin-right: 3px;
}
#footer_fixed_wrap .footer_btn_shop_back{
	position: absolute;
	left: 15px;
	bottom: 0;
	width: 130px;
	background: url("../img/common/footer_btn_shop_back.png") no-repeat center 12px #3E3E3E;
	background-size: 13px auto;
	border-radius: 8px 8px 0 0;
	text-align: center;
}
#footer_fixed_wrap .footer_btn_shop_back a{
	display: block;
	padding: 35px 5px 15px 5px;
	font-size: 13px;
}
@media screen and (max-width: 899px) {
	#footer_fixed_wrap{
		height: auto;
		padding: 10px 0;
	}
	#footer_fixed_wrap a{
		font-size: 13px;
	}
	#footer_fixed_wrap .footer_btn_link{
		padding: 0;
	}
	#footer_fixed_wrap .footer_btn_link li a{
		padding: 6px 5px;
	}
	#footer_fixed_wrap .footer_btn_link .icon_animation{
		width: 26px;
		height: 26px;
	}
	#footer_fixed_wrap .footer_btn_shop_back{
		position: static;
		background-position:12px center;
		width: 100%;
		margin-top: 10px;
	}
	#footer_fixed_wrap .footer_btn_shop_back a{
		border: 1px solid #FFFFFF;
		border-radius: 4px;
		padding: 9px 35px;
	}
	#footer_fixed_wrap .footer_btn_shop_back br{
		display: none;
	}
}



/*--------------------------------------------------------------------*/
/*共通パーツ*/
/*--------------------------------------------------------------------*/
.sp{ display: none; }
@media screen and (max-width: 899px) {
	.sp{ display: block;}
}

.a_blank::after{
	content:"";
	width: 13px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-top: -2px;
	background: url("../img/common/a_blank.png") no-repeat center center;
	background-size: contain;
}

.wrapper h2{
	border-top: 1px solid #CCCCCC;
	font-size: 20px;
	text-align: center;
	padding: 10px 0 0 0;
	margin-bottom: 30px;
}
.wrapper h2 a{
	display: block;
	position: relative;
}
.wrapper h2 a::after{
	content: "";
	width: 40px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	background: url("../img/common/h2_a_cursor.png") no-repeat;
	background-size: contain;
}
.lp h2{
	border: 0;
	text-align: left;
	padding: 0;
	margin: 0;
}
.lp h2::after{
	display: none;
}
@media screen and (max-width: 899px) {
	.wrapper h2{
		font-size: 16px;
		padding: 10px 0 0 0;
		margin-bottom: 20px;
	}
	.wrapper h2 a::after{
		width: 32px;
		height: 24px;
	}
}
