@charset "UTF-8";
/* CSS Document */
/*------------------------------
共通
------------------------------*/
* {
	box-sizing: border-box
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0px;
	padding: 0px;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
}
img {
	vertical-align:bottom;
    max-width: 100%;
	height: auto;
}
blockquote,q {
	quotes: none;
}
ul li{
	list-style-type: none;
}
ol li{
	list-style-type: none;
}
i {
    font-style: normal;
}
a {
	color: #333;
	text-decoration: none;
}

/*------------------------------
float
------------------------------*/
.floL { 
	float:left;
}
.floR {
	float:right;
}
.clear {
	clear:both;
	margin:0;
	padding:0;
	height:0;
	line-height:0;
	font-size:0;
}
/* float解除 */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}

/*------------------------------
common
------------------------------*/
.pc-only {
	display:block;
}
.sp-only {
	display:none;
}
.u580-only {
	display:none;
}

/* color 背景 */
.c-white {
	color: #fff;
}
.c-blue {
	color: #005EAE;
}
.bg-blue {
	background-color: #066BBC;
}
.bg-skyblue {
	background-color: #F2F9FF;
}
.bg-light_gray {
	background-color: #F7F7F7;
}
.bg-gray {
	background-color: #F0F0F0;
}
.bg-whie {
    background-color: #fff;
}

/* CTAボタン */
.btn-orange {
	color: #fff;
    font-weight: bold;
    background-color: #FF7300;
	border: solid 1px #FF7300;
	position: relative;
}
.btn-orange::before {
	content: "";
	border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}
.btn-orange:hover {
	border: solid 1px #FF7300;
	color: #FF7300;
	background: #fff;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-orange:hover::before {
	border-top: solid 2px #FF7300;
  	border-right: solid 2px #FF7300;
	transition: 0.3s;
}

/* 青枠ボタン */
.btn-line {
	color: #066BBC;
    font-weight: bold;
    background-color: #fff;
	border: solid 1px #066BBC;
	position: relative;
}
.btn-line::before {
	content: "";
	border: 0px;
    border-top: solid 2px #066BBC;
    border-right: solid 2px #066BBC;
	-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}
.btn-line:hover {
	border: solid 1px #066BBC;
	color: #fff;
	background: #066BBC;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-line:hover::before {
	border-top: solid 2px #fff;
  	border-right: solid 2px #fff;
	transition: 0.3s;
}

/* テキストリンク */
.btn-txt {
	color: #066BBC;
    font-weight: bold;
	position: relative;
}
.btn-txt::before {
	content: "";
	border: 0px;
    border-top: solid 2px #066BBC;
    border-right: solid 2px #066BBC;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}
.btn-txt:hover {
	border-bottom: 2px solid #066BBC;
}
@media (max-width: 768px) {
	.pc-only {
		display:none;
	}
	.sp-only {
		display:block;
	}
}
@media (max-width: 580px) {
	.u580-only {
		display:block;
	}
}

/*------------------------------
フォント
------------------------------*/
.bold { font-weight:bold; }


/*------------------------------
text-align
------------------------------*/
.al { text-align: left; }
.ar { text-align: right; }
.ac { text-align: center; }

