@charset "UTF-8";
@font-face {
     font-family: 'Barlow';
     src: url('../font/Barlow-Medium.ttf');
}
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
*,*:after,*:before{
	box-sizing: border-box;
}

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: normal;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	color: #000;
}
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: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
label{
	color: #666666;
}
select::-ms-expand {
	display: none;
}
textarea{
	resize: vertical;
}
input[type="button"],
input[type="submit"]{
	cursor: pointer;
}

a {
	color: #0e57a2;
	text-decoration: none;
}
img{
	vertical-align: bottom;
	max-width: 100%;
}

.en{
	font-family: 'Barlow', sans-serif;
}

@media screen and (min-width: 769px) {
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
	img{
/*		width: 100%;*/
	}
}

/* マウスオーバー
--------------------------------*/
/*
@media screen and (min-width: 769px) {
	a:hover{
		color: #007ac5;
	}
	.fade:hover,a:hover img{
		opacity: 0.7;
	}
	a,.fade,a img{
		transition: all 0.3s ease-out;
	}
}
*/
a:hover{
	color: #007ac5;
}
.fade:hover,a:hover img{
	opacity: 0.7;
}
a,.fade,a img{
	transition: all 0.3s ease-out;
}

/* base
--------------------------------*/
body {
	color: #000;
/*	min-width: 1100px;*/
	font-size: 1.0rem;
}
section {
	position: relative;
}
main{
	display: block;
	position: relative;
}
.wrap{
	width: 96%;
  max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
p,th,td,dt,dd,li,input,select,button,textarea {
	font-size: 1.4rem;
	line-height: 1.714;
}
.flex {
	display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
}
.left{
	float: left;
}
.right{
	float: right;
}
.center{
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.a_right{
  text-align: right;
}
.a_center{
  text-align: center;
}
.txt_small{
  font-size: 1.2rem;
}
.blue{
  color: #0e57a2;
}
.link_txt{
  text-decoration: underline;
  color: #c2003f;
}
.bold{
  font-weight: bold;
}
.indent{
	display: block;
	margin-left: 1em;
	text-indent: -1em;
}
.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  common
* --------------------------------------------------------------------------------------------------*/

ul.language{
	justify-content: center;
}
ul.language li a{
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	padding: 0 .9em;
	font-family: 'Barlow', sans-serif;
	height: 24px;
	line-height: 21px;
}
ul.language li.current a{
	border: 1px solid #0e57a2;
	border-radius: 12px;
}
ul.language li.current a:hover{
	border: 1px solid #007ac5;
}

.form dl>div {
	display: inline-block;
	width: 48%;
}
.form dl>div+div {
	margin-left: 4%;
}

.form dl dt{
	line-height: 1;
}
.form dl dd{
/*	border-bottom: 2px solid #0e57a2;*/
/*	padding: .5em 0;*/
	position: relative;
}

.form .must{
	color: #bf0000;
	font-size: 1.2rem;
	margin-left: .8em;
	position: relative;
	top: -1px;
}

.form dl dd input,
.form dl dd .select select{
	border-bottom: 2px solid #0e57a2;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="tel"],
.form select{
	width: 100%;
	height: 3em;
	line-height: 3em;
}
.form .select {
	display: block;
	position: relative;
	width: 100%;
}
.form .select::before{
	content: '';
	position: absolute;
	right: 5px;
	top: 16px;
	transform: rotate(-45deg);
	pointer-events: none;
	width: 10px;
	height: 10px;
	border-left: 2px solid #0e57a2;
	border-bottom: 2px solid #0e57a2;
}
.form .select.error::before{
	border-left: 2px solid #B40000;
	border-bottom: 2px solid #B40000;
}
.form .select select{
	padding-right: 20px;
}

.form .btnwrap .submitbtn,
.btnwrap .btn{
	display: inline-block;
	color: #fff;
	background: #0e57a2;
	border: 2px solid #0e57a2;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0 1.1em;
	border-radius: 17.5px;
	height: 35px;
	line-height: 31px;
	transition: all 0.3s ease-out;
}
.ie .form .btnwrap .submitbtn,
.ie .btnwrap .btn{
	line-height: 40px;
}

/*error*/
.form dl dd input.error,
.form dl dd .select select.error{
	border-bottom: 2px solid #B40000;
}
.form dl dd .errortxt, p.errortxt{
	color: #B40000;
	margin: .5em 0;
	letter-spacing: -0.01em;
}

/*confirm*/
.form .btnwrap .backtbtn{
	display: inline-block;
	color: #fff;
	background: #434343;
	border: 2px solid #434343;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0 1.1em;
	border-radius: 17.5px;
	margin-right: 23px;
	height: 35px;
	line-height: 31px;
	transition: all 0.3s ease-out;
}
.form.confirm dl dd,
dd.confirm{
	font-weight: bold;
	border-bottom: 2px solid #000;
	padding: .6em 0;
}

.form.confirm .select::before{
	display: none;
}
.ie .form .btnwrap .backtbtn{
	line-height: 40px;
}

.link_blank{
	font-size: 1.6rem;
	position: relative;
}
.link_blank::after{
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(../images/ico_blank.png) no-repeat center / 100% auto;
	margin-left: .5em;
	position: relative;
	bottom: -1px;
}

.passarea{
	position: relative;
}
.passarea .hideShowPassword-wrapper{
	width: 100%!important;
}
.passarea .hideShowPassword-toggle{
	position: absolute;
	width: 32px;
	height: 32px;
	right: 0;
	top: 3px!important;
	margin-top: 0!important;
	color: transparent;
}
.passarea .hideShowPassword-toggle::before{
	content: "\f06e";
  font-family: FontAwesome;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	color: #666;
	font-size: 1.6em;
}
.passarea .hideShowPassword-toggle.hideShowPassword-toggle-hide::before{
	content: "\f070";
}


.confirm .ico_pass::before{
	display: none;
}
/*
.password .pass_btn{
	width: 32px;
	height: 32px;
	position: absolute;
	right: 0;
	top: 6px;
	z-index: 1;
}
.password .pass_btn label{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
*/

.form .btnwrap .submitbtn:hover,
.btnwrap .btn:hover{
	color: #0e57a2;
	background: #fff;
}
.form .btnwrap .backtbtn:hover{
	color: #434343;
	background: #fff;
}


@media screen and (max-width: 380px) {
	.form .btnwrap .submitbtn,
	.btnwrap .btn,
	.form .btnwrap .backtbtn{
		padding: 0 .8em;
	}
	/*confirm*/
	.form .btnwrap .backtbtn{
		margin-right: 8px;
	}

}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
#header{
	border-bottom: 2px solid #0e57a2;
}
#header .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 21px 0 22px;
}
#header .h_menu{
	display: flex;
	align-items: center;
}
#header .h_menu .btn.login a{
	display: block;
	font-size: 1.5rem;
	line-height: 1.5;
	padding: 0 .6em;
	border: 1px solid #0e57a2;
	border-radius: 12px;
	margin-left: 30px;
	height: 24px;
	line-height: 22px;
}
.ie #header .h_menu .btn.login a{
	line-height: 30px;
}

#header .h_menu .btn.login a:hover{
	border: 1px solid #007ac5;
}

@media screen and (max-width: 768px) {
	#header .h_menu .btn.login a{
		margin-left: 10px;
		line-height: 22px;
	}
}
@media screen and (max-width: 500px) {
	#header .h_logo{
		width: 120px;
	}
	#header .h_menu ul.language li a{
		padding: 0 .5em;
	}
	#header .h_menu .btn.login a{
		margin-left: 6px;
		padding: 0 .5em;
	}
}

@media screen and (max-width: 380px) {
	#header .h_logo{
		width: 100px;
	}
	#header .h_menu ul.language li a{
		padding: 0 .4em;
	}
	#header .h_menu .btn.login a{
		margin-left: 4px;
		padding: 0 .4em;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
footer {
	width: 100%;
	padding: 22px 0;
}
footer .copyright{
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1;
}
footer ul{
  display: flex;
}
footer ul li{
  margin-right: 1em;
}
footer a{
	display: block;
	font-size: 1.1rem;
	line-height: 1;
}

@media screen and (max-width: 380px){
	footer .copyright,
	footer a{
		font-size: 1rem;
	}
}

/* ------------------------------
    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 */