@charset "utf-8";
/**----------------------------------------------------------
 *CSS information
 *
 * file name	: common.css Version:1.0
 -----------------------------------------------------------*/
/*
base setting
------------------------------*/
html {font-size: 62.5%;}
body {
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.4; /* 基本の行間 */
  padding:0;
}

/*
link color
------------------------------------------------------------*/
a:link {
  color: #007449;
  text-decoration: underline;}
a:visited {
  color: #007449;
  text-decoration: underline;}
a:hover,
a:active,
a:focus {opacity: 0.7;}


/*-----------------
WRAP
-------------------*/
#wrap {
  min-height: 100vh;
  position: relative;
  padding-bottom: 46px;
  box-sizing: border-box;
}


/*-----------------
HEADER
-------------------*/
#header_wrap{
  height: 95px;
	padding:10px 0 28px;
  box-sizing: border-box;
	background:url(../../images/common/header_bg.gif) repeat-x bottom;
}

#header {
	width:940px;
	margin: auto;
  display: flex;
  justify-content: space-between;
}

#header a{
	padding-right:20px;
	width:274px;
  height:50px;
  background: url(../../images/common/logo.gif) no-repeat right 20px top 0;
  display: block;
  text-indent: -9999px;
	}

#header_ttl{
  font-size:2.4em;
  font-weight:bold;
  width:auto;
	padding-top:12px;}


/*-----------------
MYPAGE MENU
-------------------*/
#menu {
  height: 40px;
  background: #eee;
  margin:0;
}

#menu a {
  font-size:1.4em;
  text-decoration: none;
}

ul#menu_inner {
	width:940px;
	margin:0 auto;
  padding:0;
  list-style: none;
  display: flex;
}

ul#menu_inner li {
  list-style: none;
  height:40px;
  padding:0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul#menu_inner li.current {background: #008a54;}
ul#menu_inner li.current a {color:#fff;}
ul#menu_inner li:last-child {margin-left:auto;}





/*-----------------
★CONTENTS
-------------------*/
#contents_wrap {
	width:940px;
	margin-left:auto;
	margin-right:auto;
	padding-top:40px;
	padding-bottom:40px;}

#contents_wrap h1 {
  font-size:2.4em;
  text-align: center;
}

.box {
  border:1px solid #d4d4d4;
  border-radius: 5px;
  padding:40px 40px 80px;
}

.caution_box {
  margin-top:60px;
  font-size:1.4em;
  border:2px solid #eb5244;
  border-radius: 5px;
  text-align: center;
}

.caution_box h2 {
  font-size:1.2em;
  color: #eb5244;
}

.err_box {
  margin:0px;
  color:#eb5244;
  margin-left:auto;
	margin-right:auto;
  text-align:center;
}
.err_box .txtError {
  display: inline-block;
}

/*table*/
table {
  font-size:1.4em;
  width:800px;
  margin: auto;
  border-top:1px solid #d4d4d4;
  border-left:1px solid #d4d4d4;
}

table th,
table td {
  border-bottom:1px solid #d4d4d4;
  border-right:1px solid #d4d4d4;}


table th {
  text-align: right;
  width:186px;
  background: #f1f1f1;padding:20px;
  vertical-align: middle;
  font-weight: normal;
  font-size: 0.9em;
}

table td {
  padding:15px;
}

/*Layout */
.flex {
  display: flex;
  align-items: center;}

.center {
  display: block;
  margin: auto;
  text-align: center;
}

/* color */
.red {color:#eb5244;}

/**/
.annotation {margin:5px 0 0;font-size:0.8em;}


/*-----------------
FOOTER
-------------------*/
#footer_wrap {
  width: 100%;
  height:46px;
	background-color:#EAEAEA;
  position: absolute;
  bottom:0;
}

#footer {
	width:940px;
  color: #777;
  text-align: right;
	margin: 15px auto auto;}






/*
form
------------------------------------------------------------*/

label {
  font-size:1.4em;
  font-weight: bold;
  color:#666;
  display: block;
}

input[type="text"]
 {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/* formを何もない状態にする */
button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  outline: 0;
  margin: 0;
  background: #fff;}

input[type="number"],
input[type="text"],
input[type="password"]{
  height: 38px;
  color:#333;
  background: #f7f7f7;
  box-sizing: border-box;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  padding: 10px;
  margin:0;
  font-size:1.2em;
  width:400px;
  display:inline;
  }




/* デフォルトのradio、checkboxは非表示 */
input[type=checkbox] {display: none;}


/***** チェックボックス *****/
.form-checkbox {
  margin:0 5px;
  list-style: none;
  padding: 5px 0 0;
  width:auto;
}

.form-checkbox li {
  margin:0 5px 0 0;
  padding:0;
  line-height: 100%;}


.form-checkbox label {
  font-weight: normal;
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0 0 0 30px;}

.form-checkbox label::before,
.form-checkbox label::after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  box-sizing: border-box;
}

.form-checkbox label::before {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius:3px;
}

.form-checkbox input[type=checkbox]+label::after {
  top: calc(50% - 11px);
  left:5px;
}

.form-checkbox input[type=checkbox]:checked+label::after {
  width: 11px;
  height: 15px;
  border-right: 3px solid #008a54;
  border-bottom: 3px solid #008a54;
  content: '';
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




/* select */


/* for firefox */
select {
  text-indent: 0.01px;
  text-overflow: '';}

/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */
select::-ms-expand {display: none;}

.select {
	overflow: hidden;
	position: relative;
	border: 1px solid #d4d4d4;
	border-radius: 3px;
	background: #f7f7f7;
}
.select select {
  font-size:1.2em;
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 10px 30px 10px 10px;
	color: #666666;
}
.select select::-ms-expand {display: none;}

.select::before {
	position: absolute;
	top: 16px;
	right: 5px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #333;
	pointer-events: none;
}

/*
button
------------------------------------------------------------*/

button {
  border:none;
  cursor: pointer;
  background: #008a54;
  color:#fff;
  font-size:1.6em;
  border-radius: 3px;
  display:block;
  margin: auto;
}

button:hover {opacity: 0.5 ;}


button.login,
button.regist,
button.update,
button.back {
  margin-top:20px;
  min-width:200px;
  height:40px;
}

button.update {margin-top:40px;}
button.back {background: #888;}

button.link {
  margin-top:50px;
  min-width:300px;
  padding:0 20px;
  height: 40px;}

button.UserInformationUpdateMail {
  margin:0 0 0 10px;
  font-size:1em;
  width:72px;
  height:40px;}


.button_box {
  width: 420px;
  margin:40px auto;
  display: flex;
  justify-content: space-between;
}