@charset "utf-8";

/*--------------------
		全体
--------------------*/
html {
  font-size: 62.5%;
  /* 10px */
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}

body {
  font-family: 游ゴシック体, 'Yu Gothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}
a {
	color: #009cd5;
	text-decoration: underline;
}
a:link,
a:visited,
a:active {
	color: #009cd5;
}

img{
	width: auto;
	max-width: 100%;
}
.wrapper {
	margin: 0 auto;
    max-width: 1000px;
}
.inner{
	width: calc(100% - 20px);
	max-width: 1000px;
    margin: 0 auto;
}
.bold {
	font-weight: bold;
}
.clearfix {
	clear: both;
}
#loading{
	width: 10%;
	max-width: 100px;
}

/*-------------------------
PCでスマホコンテンツ隠す用
-------------------------*/
.pc{
	display: block;
}
.sp,
.sp_br,
.pc_none {
	display: none;
}
footer {
    padding: 20px 0 10px;
    background-color: #e5e5e5;
    font-size: 1.4rem;
}
footer .inner {
	width: calc(100% - 20px);
	margin: 0 auto 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer li{
  padding: 0 1em 0.5em;
}
footer li a{
  color: #333 !important;
}
.fade_off {
    opacity: 0;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.fade_on {
    opacity: 1;
}
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 11;
}
#page-top a {
	background: #fff;
	text-decoration: none;
	width: 100px;
	padding: 38px 0 22px;
	text-align: center;
	display: block;
	border-radius: 5px;
	color: #004098;
	font-weight: 700;
	position: relative;
	font-size: 1.2em;
}
#page-top a:before{
	content: "";
	border: 10px solid transparent;
	border-bottom: 10px solid #004098;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
}
#page-top a:hover {
	opacity: .8;
}
@media screen and (max-width: 768px){
	#page-top {
		bottom: 15px;
		right: 15px;
	}
	#page-top a {
		width: 70px;
		padding: 30px 0 12px;
		border-radius: 7px;
		font-size: 11px;
		line-height: 1;
	}
	#page-top a:before{
		top: 2px;
	}
}

@media screen and (max-width: 768px){
	.pc,
	.pc-inline{
		display: none;
	}
	.sp{
		display: block;
	}
	.submit_btn_box #form_box input[type="button"]{
		padding: 10px 0;
	    margin-bottom: 10px;
	}
	footer .inner {
		display: block;
	}
}