@charset "UTF-8";
/************************************************************
 * reset
 ************************************************************/
*, *::before, *::after {
  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, 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: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	background: transparent;
	word-break: break-all;
	color: #002870;
}
a, img {
	border: none;
	vertical-align: top;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	line-height: 1.2;
	-webkit-text-size-adjust: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
li {
	list-style: none;
}
ul, ol, li {
	list-style-position: outside;
	vertical-align: bottom;
}
/* clearfix */
/************************************************************
 * common style
 ************************************************************/
html {
	font-size: 62.5%;
}
html, body {
	overflow-x: hidden;
}
/************************************************************
 * base style
 ************************************************************/
body{
	width: 100%;
	background: #fff;
	font-family: "Arial", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	color: #000;
	font-size: 1.8rem;
	line-height: 1.8;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	letter-spacing: 0.01em;
}
.f-small{
	font-size: 80%!important;
}
.f-large{
	font-size: 120%!important;
}
.alignleft{
	text-align: left;
}
.alignright{
	text-align: right;
}
.aligncenter{
	text-align: center;
}
.bold{
	font-weight: bold;
}
.c-bl{
	color: #002870;
}
.c-red{
	color: #FC0F3A;
}
.dispflex{
	display: flex;
}
.dispinblock{
	display: inline-block;
}
.u-line{
	text-decoration: underline;
}
.u-line:hover{
	text-decoration: none;
}
/* layout */
.inner{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
/* hover */
.hov{
	-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	-webkit-transition: .3s ease-in;
	-moz-transition: .3s ease-in;
	-ms-transition: .3s ease-in;
	transition: .3s ease-in;
	opacity: 1;
	filter: alpha(opacity=100);
}
.hov:hover{
	filter: alpha(opacity=70);
	opacity: .7;
	text-decoration: none;
	cursor: pointer!important;
}
.hov:hover a{
	text-decoration: none;
}
/* margin */
.mb1{
	margin-bottom: 1rem;
}
.mb2{
	margin-bottom: 3rem;
}
.mb3{
	margin-bottom: 6rem;
}
/* btn */
a.btn{
	display: inline-block;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #30ab9b;
	-webkit-border-radius: 6rem;
	        border-radius: 6rem;
	padding: 2rem 5.5rem;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
a.btn::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  transform: rotate(45deg);
}
a.link-tex{
	display: block;
	text-decoration: underline;
	margin-bottom: 1.5rem;
	font-weight: bold;
}
a.link-tex:hover{
	text-decoration: none;
}

/* header
========================= */
.header {
  width: 100%;
  background: #002870;
  padding: 4rem 0 0;
}
.support-nav{
	gap: 10px;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
.support-nav li{
	width: 100%;
}
.support-nav a{
	line-height: 1;
	font-weight: bold;
	background: #6c8dc8;
	color: #fff;
	display: block;
	padding: 2rem 0;
	-webkit-border-radius: 10px 10px 0 0;
	        border-radius: 10px 10px 0 0;
}
.support-nav li.current a{
	background: #FFF;
	color: #002870;
}
/* fix-menu
========================= */
.fix-menu{
	position: fixed;
	background: #FFF;
	top: 240px;
	right: 0;
	width: 160px;
	box-shadow: 0px 0px 20px 0px rgba(25, 25, 25, 0.2);
	text-align: left;
	padding: 2rem 1rem;
	-webkit-border-radius: 20px 0 0 20px;
	        border-radius: 20px 0 0 20px;
	z-index: 1;
}
.fix-menu a{
	font-size: 1.6rem;
	color: #000;
}
.fix-menu li{
	padding: .3rem 0;
}
/* foot
========================= */
footer{
	margin-top: 6rem;
	padding: 4rem 0;
	background: #002870;
	color: #fff;
}
footer .copy{
	font-size: 1.2rem;
}