@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html, body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	text-align: left;
	color: #000000;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #000000;
}

textarea {
	resize: vertical;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
	font-size: 1.5rem;
	line-height: 1.87;
}

body {
	min-width: 1200px;
}

.wrap {
	max-width: 1200px;
	width: 98%;
	margin: 0 auto;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.tac {
	text-align: center !important;
}

.tar {
	text-align: right !important;
}

.tal {
	text-align: left !important;
}

.opensans {
	font-family: "Open Sans", sans-serif;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.header .top {
	padding-top: 30px;
}
.header .top .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 65px;
	max-width: 95%;
	position: relative;
}
.header .top .logo_s {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.header .top .logo_s:hover {
	opacity: 0.7;
}
.header .top .logo {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	left: 50%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.header .top .logo:hover {
	opacity: 0.7;
}
.header .gnav .wrap {
	max-width: 1120px;
}
.header .gnav .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.header .gnav .list li {
	font-size: 1.6rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
}
.header .gnav .list li a {
	padding: 20px 10px;
	display: inline-block;
	position: relative;
}
.header .gnav .list li a::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #1968B3;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.header .gnav .list li a:hover::before {
	opacity: 1;
}
.header .gnav .list li.is-current a::before {
	opacity: 1;
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* margin
--------------------------------*/
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}
.mt60 {
	margin-top: 60px;
}
.mt70 {
	margin-top: 70px;
}
.mt80 {
	margin-top: 80px;
}
.mt90 {
	margin-top: 90px;
}
.mt100 {
	margin-top: 100px;
}
.mt110 {
	margin-top: 110px;
}
.mt120 {
	margin-top: 120px;
}

/* button
--------------------------------*/
.button-type1 .button_link {
	color: #FFFFFF;
	text-align: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background: #1968B3;
	border: 1px solid #1968B3;
	width: 132px;
	height: 48px;
	border-radius: 5px;
	-webkit-transition: color 0.3s, background 0.3s;
	transition: color 0.3s, background 0.3s;
}
.button-type1 .button_link .icon {
	line-height: 1;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.button-type1 .button_link .icon img {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.button-type1 .button_link .icon img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.button-type1 .button_link:hover {
	background: #FFFFFF;
	color: #1968B3;
}
.button-type1 .button_link:hover .icon img:nth-child(1) {
	opacity: 0;
}
.button-type1 .button_link:hover .icon img:nth-child(2) {
	opacity: 1;
}

.button-type2 {
	text-align: center;
}
.button-type2 .button_link {
	color: #FFFFFF;
	text-align: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 1px solid #FFFFFF;
	min-width: 280px;
	height: 45px;
	-webkit-transition: color 0.3s, background 0.3s;
	transition: color 0.3s, background 0.3s;
}
.button-type2 .button_link:hover {
	background: #FFFFFF;
	color: #1968B3;
}

.button-type3 .button_link {
	color: #999999;
	text-align: center;
	width: 150px;
	padding: 5px 10px;
	background: #FFFFFF;
	border: 1px solid #999999;
	border-radius: 50px;
	cursor: pointer;
	display: block;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.button-type3 .button_link .icon {
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 5px;
}
.button-type3 .button_link .icon-target {
	margin-top: -4px;
	margin-right: 0;
	margin-left: 5px;
}
.button-type3 .button_link:hover {
	opacity: 0.7;
}
.button-type3.button-cancel .button_link {
	color: #999999;
	border-color: #999999;
	background: transparent;
	-webkit-transition: color 0.3s, background 0.3s;
	transition: color 0.3s, background 0.3s;
}
.button-type3.button-cancel .button_link:hover {
	color: #FFFFFF;
	background: #999999;
	opacity: 1;
}
.button-type3.button-submit .button_link {
	padding: 10px 10px;
	color: #FFFFFF;
	background: #1968B3;
	border: 1px solid #1968B3;
	-webkit-transition: color 0.3s, background 0.3s;
	transition: color 0.3s, background 0.3s;
}
.button-type3.button-submit .button_link:hover {
	color: #1968B3;
	background: #FFFFFF;
	opacity: 1;
}

/* grid
--------------------------------*/
.grid3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.grid3 > * {
	width: 31.7%;
	margin-right: 2.45%;
}
.grid3 > *:nth-child(3n) {
	margin-right: 0;
}
.grid3 > *:nth-hild(n+4) {
	margin-top: 4%;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.footer {
	margin-top: 120px;
	padding: 30px 0 40px;
	background: #dfebfc;
	background: linear-gradient(135deg, #dfebfc 0%, #ebebeb 100%);
}
.footer .pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 10;
}
.footer .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer .copy {
	font-size: 4rem;
	line-height: 2;
	color: #1968B3;
}
.footer .copy2 {
	font-size: 2.6rem;
	line-height: 1;
	color: #1968B3;
	margin-left: -0.5em;
	margin-top: 30px;
}
.footer .copy3 {
	font-size: 1.6rem;
	line-height: 1;
	color: #1968B3;
	margin-top: 15px;
	font-weight: 300;
}
.footer .logo_s {
	text-align: right;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.footer .logo_s:hover {
	opacity: 0.7;
}
.footer .logo {
	text-align: right;
	margin-top: 15px;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.footer .logo:hover {
	opacity: 0.7;
}
.footer .link {
	font-size: 1.4rem;
	color: #1968B3;
	margin-top: 15px;
}
.footer .link a:hover {
	text-decoration: underline;
}
.footer .copyright {
	font-size: 1.4rem;
	color: #1968B3;
	margin-top: 5px;
}

/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */