@charset "utf-8";
/* CSS Document */
/* 
====================================================================================================
* base *
------------------------------------------------------------------------------------------------- */
html, body {
	width: 100%;
	min-height: 100vh;
	min-width: 1080px;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	flex-direction: column;
}
.pc_wrapper {
	margin: 0 auto;
	width: 1080px;
	min-width: 1080px;
	box-sizing: border-box;
}
@media only screen and (max-width: 1079px) {
	html, body {
		min-width: 100%;
		min-height: 100vh;
		display: flex;
		display: -webkit-flex;
		display: -ms-flexbox;
		flex-direction: column;
	}
	.pc_wrapper {
		width: 100%;
		min-width: 100%;
	}
}
body {
	font-family: "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 24px!important;
	line-height: 1.5;
}
@media only screen and (max-width: 767px) {
	body {
		font-size: 3.75vw!important;
	}
}
img {
	max-width: 100%;
}
/* a */
a {
	-webkit-transition: ease-out 0.2s;
	-moz-transition: ease-out 0.2s;
	transition: ease-out 0.2s;
	color: #333;
}
a:link {
	text-decoration: none;
}
a.a_border {
	text-decoration: underline;
}
a.a_border:hover {
	text-decoration: none;
}
/* float */
.f-left {
	float: left;
}
.f-right {
	float: right;
}
/* clear */
.clearfix {
	width: 100%;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	overflow: hidden;
}
/* clear */
.linebreak {
	word-wrap: break-word;
	/* white-space: normal;
	display: block; */
}
/* 画面の大きさ */
.w100p {
	width: 100%;
}
.w80p {
	width: 80%;
}
.w70p {
	width: 70%;
}
.w60p {
	width: 60%;
}
.w50p {
	width: 50%;
}
.w45p {
	width: 45%;
}
.w40p {
	width: 40%;
}
.w30p {
	width: 30%;
}
.w20p {
	width: 20%;
}
@media only screen and (max-width: 767px) {
	.ws100p {
		width: 100%;
	}
	.w60p {
		width: 100%;
	}
	.ws60p {
		width: 60%;
	}
	.ws50p {
		width: 50%;
	}
	.ws45p {
		width: 45%;
	}
}
.centerBlock {
	margin-left: auto !important;
	margin-right: auto !important;
}
/* margin */
.mT15 {
	margin-top: 15px;
	box-sizing: border-box;
}
.mT30 {
	margin-top: 30px;
	box-sizing: border-box;
}
.mB15 {
	margin-bottom: 15px;
	box-sizing: border-box;
}
.mLR15 {
	margin: 0 15px;
	box-sizing: border-box;
}
.pLR15 {
	padding: 0 15px;
	box-sizing: border-box;
}
.pR10 {
	padding-right: 10px;
}
/* font */

.font-10 {
	font-size: 10px;
}
.font-11 {
	font-size: 11px;
}
.font-12 {
	font-size: 12px;
}
.font-14 {
	font-size: 14px;
}
.font-16 {
	font-size: 16px;
}
.font-18 {
	font-size: 18px;
}
.font-28 {
	font-size: 28px;
}
.thumbImg {
	height: auto !important;
	width: auto;
	position: absolute;
	top: 0;
	width: calc(100% - 20px);
}
.thumbImg2 {
    display: block;
	height: auto;
	width: 100%;
}
.thumbt{
	background-size: cover;
	position: absolute;
	height: calc(100% - 20px);
	background-position: top center;
	width: calc(100% - 20px);
	top: 10px;
}

@media only screen and (max-width: 767px) {
	.font-10 {
		font-size: 1.5625vw;
	}
	.font-11 {
		font-size: 1.71875vw;
	}
	.font-12 {
		font-size: 1.875vw;
	}
	.font-13 {
		font-size: 2.03125vw;
	}
	.font-14 {
		font-size: 2.1875vw;
	}
	.font-16 {
		font-size: 2.5vw;
	}
	.font-18 {
		font-size: 2.8125vw;
	}
	.font-20 {
		font-size: 3.125vw;
	}
	.font-22 {
		font-size: 3.4375vw;
	}
	.font-24 {
		font-size: 3.75vw;
	}
	.font-28 {
		font-size: 4.375vw;
	}
	.thumbImg {
		width: auto;
	}
	.thumbImg2 {
		width: auto;
	}
}
.text-bold {
	font-weight: bold;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
/* flex */
.display-flex {
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.display-image-flex {
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-direction: column;
	flex-direction: column;

}
/* button */
.buttonDeco {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 15px 0.8em;
	margin: 10px 0;
	text-align: center;
	box-shadow: 0px 0px 3px #999;
}
.buttonDeco:before {
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 3px;
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 2px;
}
.buttonDeco.b_long {
	padding: 5px 25px;
}
/* background-color */
.bg-blue {
	background-color: #000f7f !important;
}
.bg-darkblue {
	background-color: #0000cd !important;
}
.bg-sky {
	background-color: #00baff !important;
}
.bg-green {
	background-color: #00d451 !important;
}
.bg-orange {
	background-color: #ffac00 !important;
}
.bg-gray {
	background-color: #999999 !important;
}
.bg-odd {
	background-color: #66d6ff !important;
}
.bg-even {
	background-color: #00baff !important;
}
.bg-pink {
	background-color: #d06d8c !important;
}
.chartBox canvas {
	width: 100%;
}
/* *** header ***
-------------------------------------------------- */
#header {
	width: 100%;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	color: #fff;
	z-index: 900;
	height: 45px;
	overflow: inherit;
}
#header .bg-blue > .pc_wrapper {
	height: 45px;
	padding: 10px 15px;
	position: relative;
}
#header a {
	color: #fff;
}
#logo {
	position: absolute;
	margin: auto;
	height: 1em;
	top: 0;
	bottom: 0;
	line-height: 1;
	font-size:1.4em;
}
/* menu */
nav {
	width: 100%;
}
#slidetoggle_button {
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	width: 24px;
	height: 34px;
	margin: auto;
}
#slidetoggle_button span {
	height: 3px;
	margin: 5px 0;
	background-color: #fff;
	display: block;
	width: 30px;
}
#slidetoggle_menu {
	margin: 0px;
	padding: 0px;
	width: 100%;
	display: none;
}
.dropdown {
	background-color: rgba(0,15,127,0.8);
	color: #fff;
	border-bottom: 1px solid #ccc;
	width: 100%;
}
#slidetoggle_menu li {
	list-style-type: none;
}
#slidetoggle_menu a {
	display: block;
	padding: 9px 0 9px 40px;
	background-image: url(../images/menu.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
}
.active {
	display: block;
}
/* *** main ***
-------------------------------------------------- */
#main {
	padding: 30px 0 10px;
}
@media only screen and (max-width: 767px) {
	#main {
		padding: 30px 0 10px;
     }
}
/* *** footer ***
-------------------------------------------------- */
#footer {
	width: 100%;
	/* position: fixed; */
	/* bottom: 0; */
	padding: 0 5px;
	margin-top: auto;
	color: #fff;
	background: #000f7f;
	text-align: center;
	z-index: 900;
}
#footer a {
	color: #fff;
}
#devicefooter {
	width: 100%;
	/* position: fixed; */
	/* bottom: 0; */
	padding: 0 5px;
	margin-top: auto;
	color: #fff;
	background: #000f7f;
	text-align: center;
	z-index: 900;
}
#devicefooter a {
	color: #fff;
}
#page-top {
	position: fixed;
	bottom: -150px;
	right: 15px;
	background-image: url(../images/page-top.png);
	background-size: contain;
	width: 51px;
	height: 51px;
	margin-bottom: auto;
}
