@charset "utf-8";
/* -----------------------------------------
common.css
サイト共通設定用css

＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス、モジュール：「.c_xxx」（common）
・フレームモジュール：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */


/* reset
----------------------------------------- */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0px;
	padding: 0px;
}

h1,h2,h3,h4,h5,h6,th,input,textarea,select {
	font-family: inherit;
	font-size: 100%;
	font-weight: normal;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

table,th,td {
	text-align: left;
	border: none;
}

ol,ul,li {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
	max-width: 100%;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #999;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

select::-ms-expand{
	display:none;
}

/* 初期設定
----------------------------------------- */

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	min-width: 320px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
	font-size: 1.4rem;
	color: #333;
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
p a{
	text-decoration: underline;
}

em, strong {
	font-weight: bold;
}

sub, sup {
	white-space: nowrap;
}

*,
*:before,
*:after{
	box-sizing: border-box;
}
/* 汎用クラス
----------------------------------------- */

.c_fontL  { font-size: 1.6rem !important; }
.c_fontLL { font-size: 1.8rem !important; }
.c_fontXL { font-size: 2.0rem !important; }
.c_fontM { font-size: 1.4rem !important; }
.c_fontS  { font-size: 1.2rem !important; }
.c_fontSS  { font-size: 1.1rem !important; }
.c_fontXS { font-size: 1.0rem !important; }

.c_fontBold { font-weight: bold !important; }
.c_fontNormal { font-weight: normal !important; }
.c_colorRed { color: #cc0000 !important; }
.c_colorBk  { color: #333333 !important; }
.c_colorGr  { color: #379000 !important; }
.c_colorWh  { color: #ffffff !important; }
.c_colorBlue { color: rgb(0,112,192) !important; }

.c_clearfix { zoom: 1; }
.c_clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0.01px;
}
.c_floatL { float: left; }
.c_floatR { float: right; }
.c_ofHidden { overflow: hidden; }

.c_taLeft { text-align: left !important; }
.c_taCenter { text-align: center !important; }
.c_taRight { text-align: right !important; }
@media screen and (max-width: 767px){
	.c_spTaLeft { text-align: left !important; }
	.c_spTaCenter { text-align: center !important; }
	.c_spTaRight { text-align: right !important; }
}

.c_tdNon { text-decoration: none !important; }
.c_tdUnder { text-decoration: underline !important; }
.c_tdOver { text-decoration: line-through !important; }

.c_vaTop { vertical-align: top !important; }
.c_vaMdl { vertical-align: middle !important; }
.c_vaBtm { vertical-align: bottom !important; }

.c_bder0  { border-width: 0 !important; }
.c_bderT0 { border-top-width: 0 !important; }
.c_bderL0 { border-left-width: 0 !important; }
.c_bderR0 { border-right-width: 0 !important; }
.c_bderB0 { border-bottom-width: 0 !important; }

.c_wmRL {
	-webkit-writing-mode: vertical-rl !important;
	-ms-writing-mode: tb-rl !important;
	writing-mode: vertical-rl !important;
	margin: 0 auto;
	white-space: nowrap;
	width: 1em; /* firefox対策 */
	line-height: 1em; /* firefox対策 */
	text-orientation: mixed;
}

.c_bgWh { background-color: #fff !important; }
.c_bgOr { background-color: #ef8715 !important; }
.c_bgYe { background-color: #ffffeb !important; }
.c_bgGy { background-color: #eee !important; }
.c_bgDk { background-color: #5a5a5a !important; }

.c_bgErr { background-color: #f4dcdc !important; }
.c_bgNone { background: none !important; }

.c_w7em { width: 7em !important; }
.c_w4em { width: 4em !important; }

.c_maxW500 { max-width: 500px;}
.c_minW320 { min-width: 320px;}

.c_borW3px { border-width: 3px !important; }

@media screen and (max-width: 767px){
	.c_spMinW767 { min-width: 767px;}
	.c_spMinW700 { min-width: 700px;}
	.c_spMinW600 { min-width: 600px;}
	.c_spMinW500 { min-width: 500px;}
	.c_spMinWauto { min-width: auto !important;}
	.c_spWauto { width: auto !important;}
	.c_spWliquid { width: 100% !important;}
}

.c_mt0  { margin-top:  0px !important; }
.c_mt3  { margin-top:  3px !important; }
.c_mt5  { margin-top:  5px !important; }
.c_mt10 { margin-top: 10px !important; }
.c_mt15 { margin-top: 15px !important; }
.c_mt20 { margin-top: 20px !important; }
.c_mt25 { margin-top: 25px !important; }
.c_mt30 { margin-top: 30px !important; }
.c_mt35 { margin-top: 35px !important; }
.c_mt40 { margin-top: 40px !important; }
.c_mt45 { margin-top: 45px !important; }
.c_mt50 { margin-top: 50px !important; }
.c_mt60 { margin-top: 60px !important; }
.c_mt70 { margin-top: 70px !important; }
.c_mt80 { margin-top: 80px !important; }
.c_mt90 { margin-top: 90px !important; }

.c_ml0  { margin-left:  0px !important; }
.c_ml3  { margin-left:  3px !important; }
.c_ml5  { margin-left:  5px !important; }
.c_ml10 { margin-left: 10px !important; }
.c_ml15 { margin-left: 15px !important; }
.c_ml20 { margin-left: 20px !important; }
.c_ml25 { margin-left: 25px !important; }
.c_ml30 { margin-left: 30px !important; }
.c_ml35 { margin-left: 35px !important; }
.c_ml40 { margin-left: 40px !important; }
.c_ml45 { margin-left: 45px !important; }
.c_ml50 { margin-left: 50px !important; }
.c_ml60 { margin-left: 60px !important; }
.c_ml70 { margin-left: 70px !important; }
.c_ml80 { margin-left: 80px !important; }
.c_ml90 { margin-left: 90px !important; }

.c_mr0  { margin-right:  0px !important; }
.c_mr3  { margin-right:  3px !important; }
.c_mr5  { margin-right:  5px !important; }
.c_mr10 { margin-right: 10px !important; }
.c_mr15 { margin-right: 15px !important; }
.c_mr20 { margin-right: 20px !important; }
.c_mr25 { margin-right: 25px !important; }
.c_mr30 { margin-right: 30px !important; }
.c_mr35 { margin-right: 35px !important; }
.c_mr40 { margin-right: 40px !important; }
.c_mr45 { margin-right: 45px !important; }
.c_mr50 { margin-right: 50px !important; }
.c_mr60 { margin-right: 60px !important; }
.c_mr70 { margin-right: 70px !important; }
.c_mr80 { margin-right: 80px !important; }
.c_mr90 { margin-right: 90px !important; }

.c_mb0  { margin-bottom:  0px !important; }
.c_mb3  { margin-bottom:  3px !important; }
.c_mb5  { margin-bottom:  5px !important; }
.c_mb10 { margin-bottom: 10px !important; }
.c_mb15 { margin-bottom: 15px !important; }
.c_mb20 { margin-bottom: 20px !important; }
.c_mb25 { margin-bottom: 25px !important; }
.c_mb30 { margin-bottom: 30px !important; }
.c_mb35 { margin-bottom: 35px !important; }
.c_mb40 { margin-bottom: 40px !important; }
.c_mb45 { margin-bottom: 45px !important; }
.c_mb50 { margin-bottom: 50px !important; }
.c_mb60 { margin-bottom: 60px !important; }
.c_mb70 { margin-bottom: 70px !important; }
.c_mb80 { margin-bottom: 80px !important; }
.c_mb90 { margin-bottom: 90px !important; }

@media screen and (max-width:767px) {
	.c_spMt0  { margin-top:  0px !important; }
	.c_spMt3  { margin-top:  3px !important; }
	.c_spMt5  { margin-top:  5px !important; }
	.c_spMt10 { margin-top: 10px !important; }
	.c_spMt15 { margin-top: 15px !important; }
	.c_spMt20 { margin-top: 20px !important; }
	.c_spMt25 { margin-top: 25px !important; }
	.c_spMt30 { margin-top: 30px !important; }
	.c_spMt35 { margin-top: 35px !important; }
	.c_spMt40 { margin-top: 40px !important; }
	.c_spMt45 { margin-top: 45px !important; }
	.c_spMt50 { margin-top: 50px !important; }
	.c_spMt60 { margin-top: 60px !important; }
	.c_spMt70 { margin-top: 70px !important; }
	.c_spMt80 { margin-top: 80px !important; }
	.c_spMt90 { margin-top: 90px !important; }

	.c_spMl0  { margin-left:  0px !important; }
	.c_spMl3  { margin-left:  3px !important; }
	.c_spMl5  { margin-left:  5px !important; }
	.c_spMl10 { margin-left: 10px !important; }
	.c_spMl15 { margin-left: 15px !important; }
	.c_spMl20 { margin-left: 20px !important; }
	.c_spMl25 { margin-left: 25px !important; }
	.c_spMl30 { margin-left: 30px !important; }
	.c_spMl35 { margin-left: 35px !important; }
	.c_spMl40 { margin-left: 40px !important; }
	.c_spMl45 { margin-left: 45px !important; }
	.c_spMl50 { margin-left: 50px !important; }
	.c_spMl60 { margin-left: 60px !important; }
	.c_spMl70 { margin-left: 70px !important; }
	.c_spMl80 { margin-left: 80px !important; }
	.c_spMl90 { margin-left: 90px !important; }

	.c_spMr0  { margin-right:  0px !important; }
	.c_spMr3  { margin-right:  3px !important; }
	.c_spMr5  { margin-right:  5px !important; }
	.c_spMr10 { margin-right: 10px !important; }
	.c_spMr15 { margin-right: 15px !important; }
	.c_spMr20 { margin-right: 20px !important; }
	.c_spMr25 { margin-right: 25px !important; }
	.c_spMr30 { margin-right: 30px !important; }
	.c_spMr35 { margin-right: 35px !important; }
	.c_spMr40 { margin-right: 40px !important; }
	.c_spMr45 { margin-right: 45px !important; }
	.c_spMr50 { margin-right: 50px !important; }
	.c_spMr60 { margin-right: 60px !important; }
	.c_spMr70 { margin-right: 70px !important; }
	.c_spMr80 { margin-right: 80px !important; }
	.c_spMr90 { margin-right: 90px !important; }

	.c_spMb0  { margin-bottom:  0px !important; }
	.c_spMb3  { margin-bottom:  3px !important; }
	.c_spMb5  { margin-bottom:  5px !important; }
	.c_spMb10 { margin-bottom: 10px !important; }
	.c_spMb15 { margin-bottom: 15px !important; }
	.c_spMb20 { margin-bottom: 20px !important; }
	.c_spMb25 { margin-bottom: 25px !important; }
	.c_spMb30 { margin-bottom: 30px !important; }
	.c_spMb35 { margin-bottom: 35px !important; }
	.c_spMb40 { margin-bottom: 40px !important; }
	.c_spMb45 { margin-bottom: 45px !important; }
	.c_spMb50 { margin-bottom: 50px !important; }
	.c_spMb60 { margin-bottom: 60px !important; }
	.c_spMb70 { margin-bottom: 70px !important; }
	.c_spMb80 { margin-bottom: 80px !important; }
	.c_spMb90 { margin-bottom: 90px !important; }
}

.c_pt0 { padding-top: 0 !important; }
.c_pl0 { padding-left: 0 !important; }
.c_pr0 { padding-right: 0 !important; }
.c_pb0 { padding-bottom: 0 !important; }
.c_pb10 { padding-bottom: 10px !important; }

@media screen and (min-width: 768px){
	.c_pcMt0 { margin-top: 0px !important; }
}
@media screen and (max-width:767px) {
	.c_spMl25 { margin-left: 25px !important; }
}

.c_hide { display: none !important; }
.c_iBlock { display: inline-block; }

.c_liquid { width: 100%; }
.c_liquidH { height: 100%; }

.c_breakall {
	word-wrap: break-word;
	word-break: break-all;
}
.c_wordNormal {
	word-wrap: normal;
	word-break: normal;
}
.c_nowrap { white-space: nowrap; }
.c_bracket { text-indent: -0.5em; }

.c_over {
	transition: opacity 0.2s;
}
.c_over:hover {
	opacity: 0.7;
}

@media screen and (min-width: 768px){
	.c_overLink:hover { color: #0070c0;}
}
.c_cursorDef { cursor: default !important; }
.c_cursorPoi { cursor: pointer !important; }


/* モジュール
----------------------------------------- */

html.s_noScroll {
	overflow: hidden;
}
html.s_noScroll body {
	overflow-y: scroll;
}

.m_frame {
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}
.m_frame.s_relative {
	position: relative;
}
.m_frameS {
	max-width: 850px;
	padding: 0 20px;
	margin: 0 auto;
}
.m_frameSS {
	max-width: 680px;
	margin-left: auto !important;
	margin-right: auto !important;
}
@media screen and (max-width: 767px){
	.m_frame {
		padding: 0px 15px;
	}
	.m_frameS {
		padding: 0 10px;
	}
	.m_frame.s_widthSP {
		padding-left: 0;
		padding-right: 0;
	}
}

.s_onlyS {
	display: none;
}
@media screen and (max-width: 767px){
	.s_onlyS {
		display: block;
	}
	br.s_onlyS {
		display: inline;
	}
	.s_spCenter {
		text-align: center;
	}
	.s_spTaLeft {
		text-align: left!important;
	}
}
@media screen and (max-width: 889px){
	.s_onlyL {
		display: none;
	}
}
@media screen and (max-width: 1100px){ .c_ov1100 { display: none !important; } }
@media screen and (max-width: 1000px){ .c_ov1000 { display: none !important; } }
@media screen and (max-width: 900px){ .c_ov900 { display: none !important; } }
@media screen and (max-width: 800px){ .c_ov800 { display: none !important; } }
@media screen and (max-width: 767px){ .c_ov767 { display: none !important; } }
@media screen and (max-width: 700px){ .c_ov700 { display: none !important; } }
@media screen and (max-width: 600px){ .c_ov600 { display: none !important; } }
@media screen and (max-width: 500px){ .c_ov500 { display: none !important; } }
@media screen and (max-width: 400px){ .c_ov400 { display: none !important; } }
@media screen and (max-width: 374px){ .c_ov374 { display: none !important; } }
@media screen and (min-width: 1101px){ .c_un1100 { display: none !important; } }
@media screen and (min-width: 1001px){ .c_un1000 { display: none !important; } }
@media screen and (min-width: 901px){ .c_un900 { display: none !important; } }
@media screen and (min-width: 801px){ .c_un800 { display: none !important; } }
@media screen and (min-width: 768px){ .c_un767 { display: none !important; } }
@media screen and (min-width: 701px){ .c_un700 { display: none !important; } }
@media screen and (min-width: 601px){ .c_un600 { display: none !important; } }
@media screen and (min-width: 501px){ .c_un500 { display: none !important; } }
@media screen and (min-width: 401px){ .c_un400 { display: none !important; } }
@media screen and (min-width: 375px){ .c_un374 { display: none !important; } }
