/* CSS Document */

@charset "utf-8";
/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&display=swap');
*/

html,.font_sizebase{
	font-size:12pt;
	line-height:100%;
}
/* @media screen and (max-width: 999px){} */
html *{
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	word-break: break-all;
}
body {
	margin: 0px;
	padding: 0px;
	font-size:100%;
	color:#4D4D4D;
	font-family:"游ゴシック体", "Yu Gothic", YuGothic,"メイリオ", sans-serif;
	/* font-family: 'Noto Sans JP', sans-serif; */
	/* font-family:'Noto Serif JP',"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
	line-height:100%;
	overflow-x: hidden;
}
body > div[align=center]{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,h7,p,form,hr{
	margin: 0px;
	padding: 0px;
}
span{display: inline-block;}
a{color:inherit;text-decoration:none;}
a:hover{/* text-decoration: underline; */}
a img{border:none;}
a.ov_fade > *{
	-webkit-transition: 0.5s;
	-moz-transition		: 0.5s;
	-o-transition			: 0.5s;
	-ms-transition		: 0.5s;
	transition				: 0.5s;
}
a.ov_fade:hover > *{opacity:0.5;}
.bright:hover,.bright:hover img{
	-webkit-filter: brightness(115%);
  -moz-filter: brightness(115%);
  -o-filter: brightness(115%);
  -ms-filter:brightness(115%);
  filter: brightness(115%);
}
.bright.BN110:hover,.bright.BN110:hover img{
	-webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
  -o-filter: brightness(110%);
  -ms-filter:brightness(110%);
  filter: brightness(110%);
}
.bright.BN105:hover,.bright.BN105:hover img{
	-webkit-filter: brightness(105%);
  -moz-filter: brightness(105%);
  -o-filter: brightness(105%);
  -ms-filter:brightness(105%);
  filter: brightness(105%);
}
.bright:hover > * img{
	-webkit-filter:none;
  -moz-filter:none;
  -o-filter:none;
  -ms-filter:none;
  filter:none;
}
ul,li{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
ul:after,
ul::after{clear:both;}
hr{
	border-top:solid 1px #CCC;
	border-bottom:none;
	border-left:none;
	border-right:none;
	margin:15px auto;
	padding:0;
}
hr.dashline{
	border-top:dashed 1px rgba(0,0,0,0.5);
	margin:3em auto;
}
img{max-width:100%;min-width:10px;display:block;}
img[src*=".svg"],svg{width: 100%;}
.anchor{
	position:absolute;
	top:-130px;
	left:0;
}
@media screen and (max-width: 999px) {
	/* .anchor{top:-80px;} */
}

/* ----- */

.H_head{height:130px;}
/*
@media screen and (max-width: 999px) {
	.H_head{}
	div[align=center] > .H_head{}
}
*/

header h1,a.logo{
	font-size: 100%;
	font-weight: normal;
}
a.logo *{line-height: 125%;}
a.logo > *:nth-child(1){
	margin-bottom: 0.25em;
}
a.logo > *:nth-child(2){
	font-size: 200%;
	display: flex;
	align-items: center;
	font-weight: bold;
}
a.logo > *:nth-child(2) > *{
	font-size: 50%;
	margin-right: 0.5em;
}
@media screen and (max-width: 999px) {
	a.logo{font-size: 95%;}
}

header{}
header .bg,
header .hmenu{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	margin:auto;
}
header .bg{
	z-index:997;
	mix-blend-mode: multiply;
}
header .bg.fade,
header .bg.fade *{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
/*
header .bg.bg_col{
	background: rgba(150,200,255,1);
}
*/
header .bg .grad{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:-moz-linear-gradient(top, rgba(150,200,255,1), rgba(150,200,255,0.5) 30%, rgba(150,200,255,0));
  background:-webkit-linear-gradient(top, rgba(150,200,255,1), rgba(150,200,255,0.5) 30%, rgba(150,200,255,0));
  background:linear-gradient(to bottom, rgba(150,200,255,1), rgba(150,200,255,0.5) 30%, rgba(150,200,255,0));
}
header .hmenu{
	z-index:998;
	color:#FFF;
}
header .hmenu > *{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo{
	display: flex;
	flex-direction: column;
	margin-right: auto;
	text-align: left;
}
header .hmenu .menu{
	display: flex;
	align-items: center;
	font-weight: bold;
	transform-origin: top;
}
header .hmenu .menu a{
	display: block;
}
header .menubtn{
	position: fixed;
	top:0;
	right:0;
	width: 76px;
	height: 66px;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
}
header .menubtn > *:nth-child(1){
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:32px;
	height:30px;
	margin: auto;
}
header .menubtn > *:nth-child(1),
header .menubtn span{
	-webkit-transition: 0.5s ease, background-color 0.5s;
	-moz-transition: 0.5s ease, background-color 0.5s;
	-o-transition: 0.5s ease, background-color 0.5s;
	-ms-transition: 0.5s ease, background-color 0.5s;
	transition: 0.5s ease, background-color 0.5s;
}
header .menubtn span{
	position: absolute;
	left: 0;
	right: 0;
	margin:auto;
	display:block;
	width: 100%;
	height: 6px;
	background-color: #FFF;
}
header .menubtn.active span{}
header .menubtn span:nth-of-type(1){
	top: 0;
	bottom:100%;
}
header .menubtn span:nth-of-type(2){
	top: 0;
	bottom: 0;
	opacity:1;
}
header .menubtn span:nth-of-type(3){
	top:100%;
	bottom: 0;
}
header .menubtn.active > *:nth-child(1){
	-webkit-transform:scale(1.25);
 	transform:scale(1.25);
}
header .menubtn.active span:nth-of-type(1){
	bottom: 0;
	-webkit-transform:rotate(45deg);
 	transform:rotate(45deg);
}
header .menubtn.active span:nth-of-type(2){
	opacity:0;
}
header .menubtn.active span:nth-of-type(3){
	top: 0;
	-webkit-transform:rotate(-45deg);
 	transform:rotate(-45deg);
}
@media screen and (min-width: 1000px) {
	header .hmenu .menu a{margin-right: 4em;}
	header .menubtn{display: none;}
}
@media screen and (max-width: 999px) {
	header .hmenu.fade .logo{
		-webkit-transition: opacity 0.5s;
		-moz-transition: opacity 0.5s;
		-o-transition: opacity 0.5s;
		-ms-transition: opacity 0.5s;
		transition: opacity 0.5s;
	}
	header .hmenu.fade .menu{
		-webkit-transition: 0.5s ease;
		-moz-transition: 0.5s ease;
		-o-transition: 0.5s ease;
		-ms-transition: 0.5s ease;
		transition: 0.5s ease;
	}
	header .hmenu.active .logo{opacity: 0;}
	header .hmenu .menu{
		flex-direction: column;
		position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(116,198,92,0.7);
		padding-top: 230px;
	}
	header .hmenu:not(.active) .menu{transform:scaleY(0);}
	header .hmenu .menu a{
		font-size: 125%;
		line-height: 100%;
	}
	header .hmenu .menu a:nth-child(n+2){
		margin-top: 50px;
	}
}

.con_box{padding: 0 15px;}
.con_box h2{
	text-align: center;
	font-size: 25px;
	line-height: 125%;
	font-weight: normal;
}
.con_box .text_cmn{
	text-align: left;
	font-size: 14px;
	line-height: 150%;
}
.btn_contact{}
.btn_contact .btn{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
}
.btn_contact a{
	background-color: #FBB03B;
	width:100%;
	max-width:400px;
	height:60px;
}
.btn_contact a img{width:292px;}
@media screen and (max-width: 999px) {
	.btn_contact a img{width: 256px;}
}

/*
.con_subt{
	color:#003C78;
	font-size: 175%;
	line-height: 150%;
	font-weight: normal;
	position: relative;
	text-align: left;
	padding-bottom: 0.5em;
}
.con_subt .bar{
	position: absolute;
	bottom:0;
	left:0;
	width:1.75em;
	border-bottom: solid 3px #003C78;
}
.con_subt.colW{color:#FFF;}
.con_subt.colW .bar{border-color:#FFF;}
.con_subt.typeC{text-align: center;margin-bottom: 50px;}
.con_subt.typeC .bar{right:0;margin: auto;}
@media screen and (max-width: 999px) {
	.con_subt.sp_typeC{text-align: center;}
	.con_subt.sp_typeC .bar,
	.con_subt.sp_barC .bar{right:0;margin: auto;}
}
*/

/*
.con_animebtn{
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	background-color: #E5EBF1;
	padding: 10px 30px;
	text-align: center;
	outline: none;
	transition: ease .2s;
}
.con_animebtn span{
	display: flex;
	justify-content: center;
	align-items: center;
  position: relative;
  z-index: 3;
  color:#003C78;
	font-size: 90%;
	line-height: 100%;
}
.con_animebtn.type2{
	background-color: #003C78;
	padding: 1em 0;
	width:100%;
	max-width: 260px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 3px 3px 0px 0px #333333;
	-webkit-box-shadow: 3px 3px 0px 0px #333333;
	-moz-box-shadow: 3px 3px 0px 0px #333333;
}
.con_animebtn span,
.con_animebtn span *{transition: ease .6s;}
.con_animebtn:hover span{color:#fff;}
.con_animebtn.type2 span{color:#fff;}
.con_animebtn.type2:hover span{color:#003C78;}
.con_animebtn span svg{width:8px;height:16px;margin-left: 0.5em;}
.con_animebtn span svg path{fill:#003C78;}
.con_animebtn:hover span svg path{fill:#fff;}
.con_animebtn:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background:#003C78;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.con_animebtn:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.con_animebtn.type2:before{background-color: #E5EBF1;}
.con_animebtn.colW{background-color: rgba(255,255,255,0.4);}
.con_animebtn.colW span{color:#fff;}
.con_animebtn.colW:hover span{color:#003C78;}
.con_animebtn.colW span svg path{fill:#fff;}
.con_animebtn.colW:hover span svg path{fill:#003C78;}
.con_animebtn.colW:before{background:#fff;}
*/

.pan{}
.pan > div{
	max-width: 100%;
	padding: 3em 0;
	font-size: 75%;
	text-align: left;
	/*
	border-bottom: solid 1px rgba(35,24,21,0.50);
	*/
}
.pan .arrow{
	display: inline-block;
	padding: 0 0.5em;
}
@media screen and (max-width: 999px) {
	.pan > div{padding: 1.5em 0;}
}

.footer_mgn{margin-top: auto;}
footer{
	background-color: #FFF;
	color:#754C24;
}
footer > *{
	text-align: left;
	padding-top: 55px;
	padding-bottom: 15px;
}
footer .flex{
	display: flex;
	justify-content: space-between;
	padding-bottom: 80px;
}
footer .info{}
footer .info .logo{}
footer .info .logo + *,
footer .info .logo + *{
	font-size: 14px;
	line-height: 125%;
	margin-top: 1em;
}
footer .menu{
	display: flex;
	flex-direction: column;
	font-weight: bold;
}
footer .menu a{display: block;}
footer .menu a:nth-child(n+2){margin-top: 1.5em;}
footer .copy{
	text-align: center;
	font-size: 50%;
	line-height: 100%;
}
@media screen and (max-width: 999px) {
	footer > *{padding-top: 50px;}
	footer .flex{
		flex-direction: column;
    align-items: center;
		padding-bottom: 20px;
	}
	footer .info{
		order:2;
		margin-top: 80px;
	}
	footer .info .logo + *{font-size: 75%;}
	footer .menu{order:1;}
}

#pagetop_btn{
	position: fixed;
	left:0;
	right: 0;
	bottom: 0;
	margin:auto;
	display:block;
	width:100%;
	min-width: 375px;
	z-index:997;
}
#pagetop_btn a{
	position:absolute;
	right: 30px;
	bottom: -50px;
	display:block;
	background-color: #333;
	background-image:url(../images/common/pagetop.svg);
	width: 50px;
	height: 50px;
	text-align: center;
	/*
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	*/
}
#pagetop_btn a:not(.no_trans){
	-webkit-transition:bottom 0.2s;
	-moz-transition:bottom 0.2s;
	-o-transition:bottom 0.2s;
	-ms-transition:bottom 0.2s;
	transition:bottom 0.2s;
}
#pagetop_btn a.active,
#pagetop_btn.static a{bottom:30px;}
#pagetop_btn.static{position: relative;}
/*
@media screen and (max-width: 999px) {
	#pagetop_btn a{right: 20px;}
	#pagetop_btn a.active{bottom:15px;}
	#pagetop_btn.static a{bottom: -65px;}
}
*/

/*
.sp_bottom_bnr{
	position: fixed;
	bottom:0;
	left:0;
	width:100%;
	height:50px;
	display: flex;
}
@media screen and (min-width: 1000px) {
	.sp_bottom_bnr{display: none;}
}
*/

/* 横幅下限 */
body > div[align=center],
header,
footer{min-width:375px;}

/* ----- */


.pc_vanish{}
.sp_vanish{}
.im_vanish{display:none!important;}
.pc_br_del{}
.sp_br_del{}
.vanish_branch{}
@media screen and (min-width: 1000px) {
	.pc_vanish,
	.pc_br_del br,
	.pc_div_del div,
	.vanish_branch img[src*="-sp."]{display:none!important;}
}
@media screen and (max-width: 999px) {
	.sp_vanish,
	.sp_br_del br,
	.sp_div_del div,
	.vanish_branch img[src*="-pc."]{display:none!important;}
}
.v_hidden{visibility:hidden;}

.fade_gimmick .motion,
.fade_chain .motion{
	transform:translateY(2em);
	opacity:0;
}
.motion{
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	transition: 0.3s ease;
}
.motion.trans05{
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	transition: 0.5s ease;
}
.show{
	transform:translateX(0)!important;
	transform:translateY(0)!important;
	filter:alpha(opacity=100)!important;
	-moz-opacity:1!important;
	opacity:1!important;
}

.W50per{width:50%;}
.W100per{width:100%;}
.Wmax90per{max-width:90%;}
.Wmax100per{max-width:100%;}
.sp_Wmax90per{}
.Wbase{
	width:100%;
	max-width:1000px;
	margin: auto;
}
.Wbase.W700{max-width:700px;}
.Wbase.W800{max-width:800px;}
.Wbase.W890{max-width:890px;}
.Wbase.W900{max-width:900px;}
.Wbase.W940{max-width:940px;}
.Wbase.W1100{max-width:1100px;}
.Wbase.W1280{max-width:1280px;}
.Wbase.W13660{max-width:1366px;}
@media screen and (min-width: 1000px) {
	.Wbase.pc_W940{max-width:940px;}
}
@media screen and (max-width: 999px) {
	.Wbase.sp_W375{max-width:375px;}
}

.mgnLRmn0_25em{margin-left:-0.25em; margin-right:-0.25em;}
.mgnLRmn0_33em{margin-left:-0.33em; margin-right:-0.33em;}
.mgnLRmn0_5em{margin-left:-0.5em; margin-right:-0.5em;}
.mgnR1em{margin-right:1em;}
.mgnLRAuto{margin-left:auto; margin-right:auto;}
.mgnAuto{margin:auto;}
.sp_mgnLRAuto,
.sp_mgnAuto,
.sp_mgnLRmn0_5em{}
.sp_padLR1em{}
@media screen and (max-width: 999px) {
	.sp_mgnLR50{margin-left:50px; margin-right:50px;}
	.sp_mgnLRAuto{margin-left:auto; margin-right:auto;}
	.sp_mgnAuto{margin:auto;}
	.sp_mgnLRmn0_5em{margin-left:-0.5em; margin-right:-0.5em;}
	.sp_padLR1em{padding-left: 1em; padding-right: 1em;}
}

.fontP050{font-size:50%;}
.fontP060{font-size:60%;}
.fontP070{font-size:70%;}
.fontP075{font-size:75%;}
.fontP080{font-size:80%;}
.fontP087{font-size:87.75%;}
.fontP090{font-size:90%;}
.fontP100{font-size:100%;}
.fontP110{font-size:110%;}
.fontP115{font-size:115%;}
.fontP120{font-size:120%;}
.fontP125{font-size:125%;}
.fontP130{font-size:130%;}
.fontP140{font-size:140%;}
.fontP150{font-size:150%;}
.fontP160{font-size:160%;}
.fontP170{font-size:170%;}
.fontP175{font-size:175%;}
.fontP180{font-size:180%;}
.fontP190{font-size:190%;}
.fontP200{font-size:200%;}
.fontP225{font-size:225%;}
.fontP250{font-size:250%;}
.fontP300{font-size:300%;}
.fontP400{font-size:400%;}
.sp_fontP050{}
.sp_fontP060{}
.sp_fontP070{}
.sp_fontP075{}
.sp_fontP080{}
.sp_fontP087{}
.sp_fontP090{}
.sp_fontP100{}
.sp_fontP110{}
.sp_fontP115{}
.sp_fontP120{}
.sp_fontP125{}
.sp_fontP130{}
.sp_fontP140{}
.sp_fontP150{}
.sp_fontP160{}
.sp_fontP170{}
.sp_fontP175{}
.sp_fontP180{}
.sp_fontP190{}
.sp_fontP200{}
.sp_fontP250{}
.sp_fontP300{}
@media screen and (max-width: 999px) {
	.sp_fontP050{font-size:50%;}
	.sp_fontP060{font-size:60%;}
	.sp_fontP070{font-size:70%;}
	.sp_fontP075{font-size:75%;}
	.sp_fontP080{font-size:80%;}
	.sp_fontP087{font-size:87.75%;}
	.sp_fontP090{font-size:90%;}
	.sp_fontP100{font-size:100%;}
	.sp_fontP110{font-size:110%;}
	.sp_fontP115{font-size:115%;}
	.sp_fontP120{font-size:120%;}
	.sp_fontP125{font-size:125%;}
	.sp_fontP130{font-size:130%;}
	.sp_fontP140{font-size:140%;}
	.sp_fontP150{font-size:150%;}
	.sp_fontP160{font-size:160%;}
	.sp_fontP170{font-size:170%;}
	.sp_fontP175{font-size:175%;}
	.sp_fontP180{font-size:180%;}
	.sp_fontP190{font-size:190%;}
	.sp_fontP200{font-size:200%;}
	.sp_fontP225{font-size:225%;}
	.sp_fontP250{font-size:250%;}
	.sp_fontP300{font-size:300%;}
}

.font_W80{transform:scale(0.80,1);margin:0 -0.1em;}

.font_weight100{font-weight:100;}
.font_thin{font-weight:normal;}
.font_bold{font-weight:bold;}
.font_gothic{
	font-family:"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.font_min{
	/*
	font-family:'Noto Serif JP',"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	*/
	font-family:'游明朝体',"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.font_meiryo{
	font-family:"メイリオ", Meiryo, sans-serif;
}
.font_yugo{
	font-family:"游ゴシック体", "Yu Gothic", YuGothic,"メイリオ", sans-serif;
}
/*
.font_notosans{font-family: 'Noto Sans JP', sans-serif;}
@media screen and (min-width: 1000px) {
	.pc_font_notosans{font-family: 'Noto Sans JP', sans-serif;}
}
*/

.LH100,.LH100 *{line-height:100%;}
.LH125,.LH125 *{line-height:125%;}
.LH133,.LH133 *{line-height:133%;}
.LH150,.LH150 *{line-height:150%;}
.LH175,.LH175 *{line-height:175%;}
.LH200,.LH200 *{line-height:200%;}
.LH_normal,.LH_normal *{line-height:normal;}
.LH_inherit,.LH_inherit *{line-height:inherit;}
@media screen and (max-width: 999px) {
	.sp_LH100,.sp_LH100 *{line-height:100%;}
	.sp_LH150,.sp_LH150 *{line-height:150%;}
	.sp_LH200,.sp_LH200 *{line-height:200%;}
}

.LH150.mgnTmn{margin-top:-0.25em;}
.LH175.mgnTmn{margin-top:-0.375em;}
.LH200.mgnTmn{margin-top:-0.5em;}
.LS0_1em{letter-spacing:0.1em; margin-right:-0.1em;}
.LS0_25em{letter-spacing:0.25em; margin-right:-0.25em;}
.LS0_5em{letter-spacing:0.5em; margin-right:-0.5em;}
.LS1em{letter-spacing:1em; margin-right:-1em;}

.indent_mn0_5np{
	text-indent:-0.5em;
}
.indent_mn{
	text-indent:-1em;
	padding-left:1em;
}
.indent_mn1_25{
	text-indent:-1.25em;
	padding-left:1.25em;
}

.dpB{display:block;}
.dpI{display:inline;}
.dpIB{display:inline-block;}
.dpN{display:none;}
.dpF{display:flex;}
@media screen and (max-width: 999px) {
	.sp_dpIB{display:inline-block;}
	.sp_dpB{display:block;}
}

.floatL,
.floatL_pc{float:left;}
.floatR,
.floatR_pc{float:right;}
.clear{clear:both;}
@media screen and (max-width: 999px) {
	.floatL_pc,
	.floatR_pc{float:none;}
	.floatL_sp{float:left;}
	.floatR_sp{float:right;}
}

.textL{text-align:left;}
.textR{text-align:right;}
.textC{text-align:center;}
.textJ{text-align:justify;
text-align-last:justify;
text-justify:distribute;}
.sp_textL{}
.sp_textC{}
@media screen and (max-width: 999px) {
	.sp_textL{text-align:left;}
	.sp_textC{text-align:center;}
}
.deco_underline{text-decoration:underline;}
.cur_pointer{cursor:pointer;}
.va_middle > *{vertical-align: middle;}
.va_bottom > *{vertical-align: text-bottom;}

.bg_cover,.bg_cover *{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}
.bg_coverT,.bg_coverT *{
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
}
.bg_coverB,.bg_coverB *{
	background-position:center bottom;
	background-repeat:no-repeat;
	background-size:cover;
}
.bg_contain,.bg_contain *{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
}
.bg_containT,.bg_containT *{
	background-position:center top;
	background-repeat:no-repeat;
	background-size:contain;
}
.bg_containB,.bg_containB *{
	background-position:center bottom;
	background-repeat:no-repeat;
	background-size:contain;
}
.bg_W90,.bg_W90 *{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:90% auto;
}
@media screen and (max-width: 999px) {
}
/* Edge のみ*/
/*
@supports (-ms-ime-align:auto) {
	.bg_H120_edge,.bg_H120_edge *{
		background-size:auto 120%;
	}
}
*/

/*
要素まるごとブレンド
mix-blend-mode: multiply;

背景色ブレンド（同一タグ内のみ）
background-blend-mode: multiply;
*/

.col_000{color:#000;}
.col_F00{color:#F00;}
.col_742{color:#754C24;}/* 茶 */
.col_FFF{color:#FFF;}

.bg_clear{background-color:transparent;}
.bg_000{background-color:#000;}
.bg_FFE{background-color:#F9F7EE;}
.bg_FFF{background-color:#FFF;}

/*
.bg_white_grad{
	background:-moz-linear-gradient(left, #FFFFFF, rgba(255,255,255,0));
  background:-webkit-linear-gradient(left, #FFFFFF, rgba(255,255,255,0));
  background:linear-gradient(to right, #FFFFFF, rgba(255,255,255,0));
}
.bg_paperO{
	background-image: url(../images/common/bg-paper-O.png);
	background-position: center top;
	background-repeat: repeat;
}
*/

.pc_tblbreak{}
.sp_tblbreak{}
@media screen and (min-width: 1000px) {
	.pc_tblbreak,
	.pc_tblbreak tbody,
	.pc_tblbreak tr,
	.pc_tblbreak th,
	.pc_tblbreak td{display:block;}
}
@media screen and (max-width: 999px) {
	.sp_tblbreak,
	.sp_tblbreak tbody,
	.sp_tblbreak tr,
	.sp_tblbreak th,
	.sp_tblbreak td{display:block;}
	.sp_tblbreak_limited,
	.sp_tblbreak_limited > tbody,
	.sp_tblbreak_limited > tbody > tr,
	.sp_tblbreak_limited > tr,
	.sp_tblbreak_limited > tbody > tr > th,
	.sp_tblbreak_limited > tr > th,
	.sp_tblbreak_limited > tbody > tr > td,
	.sp_tblbreak_limited > tr > td{display:block;}
}

.pos_rel{position:relative;}
.pos_abs{position:absolute;}
.pos_fix{position:fixed;}

.pos_abs.mgnAuto{
	top:0;
	bottom:0;
	left:0;
	right:0;
	height:auto;
}

.radius05{
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;}
.radius10{
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;}
.radius20{
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;}
.radius30{
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;}
.radius50{
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;}
.radius100per{
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;}

.shadow01{
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.2);}
.shadow02{
	box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.2);}
.shadow04{
	box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);}
.shadow01bo{
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.5);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.5);}
.shadow04bo{
	box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.2);}

.rotation90{
	-moz-transform:	rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform:	 rotate(90deg);
	transform:		 rotate(90deg);
}

.borderbox,.borderbox *{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 印刷用CSS */
/*
@media print{
  印刷用CSSの定義を指定する
}
※印刷時は
「@media screen and (min-width: 1000px)」
「@media screen and (max-width: 999px)」内のスタイルは効かなくなる
*/
@media print{
	body > div .H_head,
	.pc_vanish{
		display:none!important;
	}
	header{position:relative;}
}