/*------------------------------------------------------------------------
ルール
------------------------------------------------------------------------*/
@charset "utf-8";
:root {

    --main-color:#db2715;/*メインカラー*/
    --text-color:#80808;/*標準テキストカラー*/
    --bold-color:#111;/*太字テキストカラー*/
    --caption-color:#555;/*注釈やキャプションなどの目立つ必要のない場合のテキストカラー*/
    --blue-color:#1c2e7a;/*色文字　青*/
    --red-color:#d80000;/*色文字　赤*/
    --link-color:#1346a3;/*リンクテキストカラー*/
    --hover-color:#0052f0;/*hoverテキストカラー*/
    --background-color:#e8ecf2;/*背景色*/
    --button-default:#e9ecf3;/*通常ボタンhoverの背景色*/
    --button-action:#1d245f;/*アクションボタンカラー*/
    --button-action-hover:#314fa2;/*アクションボタンhoverカラー*/
    --button-sub:#426ed2;/*サブのボタンカラー*/
	--button-orange:#d93e12;/*JAFを呼ぶ*/
	--button-orange-hover:#b13515;/*JAFを呼ぶ*/
    --icon-background:#eff2f6;/*アイコンの背景カラー*/
    --line-color:#cdd0d5;/*罫線のカラー*/
    --table-line-color:#d0d1d3;/*表の罫線のカラー*/
    --table-head-color:#f0f2f8;/*表の標題の背景カラー*/
	
}

/*行間について
本文：1.8em
見出し、キャッチコピー、ラベルアイコン、ボタンテキストなど：1.3em
リード、注釈：1.5em
*/

/*画面幅について
PC：994px～1200px
モバイル：320px～767px
*/

/*見出し*/
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: bold;
	color:var(--bold-color);
	line-height: 1.3em;
}

/*PCとモバイル*/
@media (min-width:768px){
    .mobile{
        display: none;
    }
}
@media (max-width:767px){
    .desktopo{
        display: none;
    }
}
.tac{
	text-align: center !important;
}
.tar{
	text-align: right !important;
}
.mt10{
    margin-top:10px !important;
}
.mb10{
    margin-bottom:10px !important;
}
.red{
	color:var(--red-color);
}
/*------------------------------------------------------------------------
リセット
------------------------------------------------------------------------*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, table, th, td {
	margin:0;
	padding:0;
}
body,
form input{
	font:14px/1.5 "メイリオ", "Meiryo", ryumin,Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
	-webkit-text-size-adjust: 100%;
}
* html body {
	font-size: small;
	color:var(--text-color);
}
*:first-child+html body {
	font-size: small;
}
img {
	border: 0;
	vertical-align:top;
}
ul, dl, ol {
	text-indent:0;
}
ul li {
	list-style:none;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size: inherit;
	font-weight:inherit;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input{
	height: 36px;
}

* html input, * html textarea, * html select {
	font-size: 100%;
}
*:first-child+html+input, *:first-child html+textarea, *:first-child+html select {
	font-size: 100%;
}
table {
	border-collapse:collapse;
	border-spacing:0;
	font-size:inherit;
}
th, td {
	text-align:left;
	vertical-align:top;
}
caption {
	text-align:left;
}
pre, code, kbd, samp, tt {
	font-family: monospace;
}
* html code, * html kbd, * html samp, * html tt {
	font-size: 100%;
	line-height: 100%;
}
*:first-child+html pre, *:first-child html+code, *:first-child html+kbd, *:first-child+html+samp, *:first-child+html tt {
	font-size: 108%;
	line-height: 100%;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
a:link {
	color:var(--text-color);
	text-decoration: none;
}
a:visited {
	color:var(--text-color);
	text-decoration: none;
}
a:active {
	color:var(--text-color);
	text-decoration: none;
}
a:hover {
	color:var(--main-color);
	text-decoration: underline;
}
a {
	outline : 0;
}
a img{
	border : none;
}
a[target]:not([target="_self"]):not([target=""])>span:after {
    font-family: 'jafglyph';
    content: '\e80f';
    color: inherit;
    display: inline-block;
    padding-left: 0.2em;
    speak: none;
    font-weight: normal;
    text-transform: none;
    line-height: 1;
}