@charset "UTF-8";

/*--------------------------------------------------
  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, 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: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align:left;
}
img {
  vertical-align: top;
  font-size:0;
  line-height: 0;
	width: 100%;
}
textarea{
	vertical-align: top;
}





/*--------------------------------------------------
  body
--------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #1e468f;
  font-size: 16px;
	font-family: "A-OTF 新ゴ Pro", "A-OTF Shin Go Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	display: block;
	color: #1e468f;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

body, html {
	height: 100%;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.cl01 {
	color: #00a1ec;
}

.cl02 {
	color: #fffd62;
}

h2,
h3,
h4,
h5,
.cc {
	font-weight: bold;
	line-height: 1.3;
}
h2 span,
h3 span,
h4 span,
h5 span,
.cc span {
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}





/*--------------------------------------
　Header
---------------------------------------*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1100px;
	padding: 20px 35px;
	box-sizing: border-box;
	z-index: 1;
}

header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	width: 370px;
	box-sizing: border-box;
}

header .btn {
	width: 330px;
	box-sizing: border-box;
}
header .btn a {
	background: #20b716;
	max-width: 100%;
	padding: 12px 15px 12px 50px;
	box-sizing: border-box;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	border-radius: 8px;
	box-shadow: 0 5px 0 0 #185a13;
	position: relative;
}
header .btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
	background: url("../img/icon_link_01.png") left top no-repeat;
	background-size: 100% auto;
	width: 40px;
	height: 40px;
}
header .btn span {
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	header {
		min-width: 100%;
		padding: 8px 10px;
	}

	header .logo {
		width: 45%;
	}

	header .btn {
		width: 45%;
	}
	header .btn a {
		max-width: 100%;
		padding: 8px 10px 8px 22%;
		font-size: 1.5vw;
		border-radius: 4px;
		box-shadow: 0 3px 0 0 #843020;
	}
	header .btn a::before {
		left: 10px;
		transform: translate(0,-50%);
		background: url("../img/icon_link_01.png") left top no-repeat;
		background-size: contain;
		width: 18%;
		height: 0;
		padding-top: 18%;
	}
	header .btn span {
		font-size: 2.6vw;
	}
}





/*--------------------------------------
　footer
---------------------------------------*/
footer {
	background: #1e468f;
	width: 100%;
	min-width: 1100px;
	padding: 15px 0;
	box-sizing: border-box;
}

footer .footer_inner {
	max-width: 1100px;
	margin: auto;
}

footer .copy {
	color: #fff;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	footer {
		min-width: 100%;
		padding: 10px 10px 15%;
	}

	footer .footer_inner {
		max-width: 100%;
	}

	footer .copy {
		font-size: 10px;
	}
}

