@charset "UTF-8";

/**********************
共通
**********************/
/**clearfix**/
.cf:before,
.cf:after {
    content:"";
    display:table;
} 
.cf:after {
    clear:both;
}
.cf {
    zoom:1;
}


/**common**/
.sp {
	display: none;
}
.fa {
	font-family: FontAwesome !important;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.center {
	text-align: center;
	display: block;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: Quicksand, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;
	color: #333333;
	-webkit-text-size-adjust: 100%;
	background: #fbf7eb;
	width: 100%;
	height: 100%;
	font-size: 16px;
}
main {
	width: 980px;
	height: 100%;
	margin: auto;
}
.row {
	width: 980px;
	margin: auto;
}
.main-box {
	background: #FFF;
	padding: 40px;
}
header {
	background: #00aebb;
}
header .row {
	position: relative;
	padding: 20px 0;
}
header .logo img {
	display: block;
}
header button.logout {
	font-size: 16px;
	border: 1px solid #FFF;
	color: #FFF;
	padding: 8px 30px 8px 40px;
	border-radius: 4px;
	top: 12px;
	right: 0;
	position: absolute;
}
header button.logout:before {
	content: "\f08b";
	font-size: 16px;
	color: #FFF;
	left: 15px;
	top: 8px;
}
header button.logout:hover:before {
	left: 20px;
}
h1 {
	font-size: 32px;
}
h1 span {
	font-size: 18px;
	background: #ebe5d5;
	padding: 10px 30px 7px;
	border-radius: 20px;
	text-align: center;
	font-weight: normal!important;
	margin-left: 15px;
}
h1 span b {
	font-size: 24px;
	font-weight: bold;
}
h2 {
	background: #def3f3;
	font-size: 18px;
	border-left: 6px solid #00aebb;
	padding: 5px 10px 3px 15px;
	margin-top: 45px;
}
h3 {
	font-size: 18px;
	border-left: 6px solid #00aebb;
	padding: 3px 10px 1px 15px;
	margin-top: 35px;
}
a {
	color: #00aebb;
	outline: none;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
a img {
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
a:hover img {
	opacity: 0.8;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 15px;
}
ul {
	padding-left: 0;
	margin: 0 0 15px;
}
li {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 5px;
	list-style: none;
}
li:before {
	content: "・";
	color: #00aebb;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #dae7e8;
	margin: 40px;
}
input{
	border: 1px solid #bbbbbb;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
	behavior: url(/css/PIE.htc);
	position:relative;
	padding:10px 15px;
	background: #fafafa;
}
input:focus {
    border:solid 1px #dfcc32;
	background: #fffef4!important;
}
input.error {
    border:solid 1px #cb4c00;
	background: #fff8f4!important;
}
.error-text {
    color: #cc0000;
	margin-top: 10px;
}
::-webkit-input-placeholder { /* Chrome */
  color: #c4c4c4;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #c4c4c4;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #c4c4c4;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #c4c4c4;
  opacity: 1;
}
.select {
    position: relative;
	display: inline-block;
}
.select label {
    position: relative;
}
.select label:after {
    background: url("/img/select-arrow.png") no-repeat;
    content: " ";
    display: block;
    height: 10px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 3px;
    width: 16px;
}
.select select {
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #c1c1c1;
	border-radius: 6px;
	background: #FFF;
	position: relative;
	cursor: pointer;
	margin-right: 5px;
	margin-left: 0;
	height: 38px;
	width: 190px;
	text-align: left;
}
iframe {
	width: 100%;
	min-height: 250px;
	border: none;
	background: #fafafa;
	margin: 0 0 15px;
}
i {
	margin-right: 5px;
}
button {
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	line-height: 1;
}
button:before {
	position: absolute;
	font-family: FontAwesome !important;
	transition: 0.3s;
}
button:hover {
	transition: 0.3s;
	opacity: 0.8;
}
button:hover:before {
	transition: 0.3s;
}

button.type01 {
	font-size: 22px;
	font-weight: bold;
	background: #00aebb;
	box-shadow: 0px 0px 8px 0px rgba(6, 0, 1, 0.21);
	border: none;
	color: #FFF;
	padding: 20px 60px;
	margin: 20px 0;
	min-width: 380px;
	transition: 0.3s;
	position: relative;
}
button.type01:before {
	content: "\f138";
	font-family: FontAwesome !important;
	font-size: 30px;
	color: #FFF;
	top: 16px;
	left: 15px;
}
button.type02 {
	font-size: 18px;
	font-weight: bold;
	background: #00aebb;
	box-shadow: 0px 0px 8px 0px rgba(6, 0, 1, 0.21);
	border: none;
	color: #FFF;
	padding: 15px 50px;
	margin: 0 auto 20px;
	min-width: 300px;
	transition: 0.3s;
	position: relative;
}
button.type02:before {
	content: "\f054";
	font-family: FontAwesome !important;
	font-size: 18px;
	color: #FFF;
	top: 16px;
	left: 20px;
}
button.type03 {
	font-size: 16px;
	background: #00aebb;
	border: none;
	color: #FFF;
	min-width: 110px;
	transition: 0.3s;
	position: relative;
	border-radius: 6px;
	height: 34px;
	margin-top: 2px;
}
button.type03:before {
	content: "\f105";
	font-family: FontAwesome !important;
	font-size: 20px;
	color: #FFF;
	top: 7px;
	left: 15px;
}
footer {
	font-size: 12px;
	color: #666666;
	margin: 40px 0 0;
	padding: 15px 0;
	text-align: center;
	background: #dfdfdf;
}





/**********************
TOP
**********************/
.top {
	position:relative;
	height:100vh;
	text-align: center;
}
.top .main-box {
	width: 980px;
	position:absolute;
  	top:50%;
	transform:translateY(-50%);
}
.top p {
	font-size: 16px;
}
.top table {
	margin: auto;
	text-align: left;
	margin-bottom: 20px;
}
.top table td {
	font-weight: bold;
	padding: 10px;
}

.top input{
    width: 400px;
}
.top p.pass {
	text-align: center;
}
.top p.pass a {
	position: relative;
	padding-left: 20px;
}
.top p.pass a:before {
	position: absolute;
	top: -3px;
	left: 0;
	content: "\f138";
	font-family: Fontawesome;
	text-decoration: none;
}

.footer p {
	font-size: 12px;
	color: #666666;
	position: absolute;
	bottom: -70px;
	text-align: center;
	width: 900px;
}
.footer {
	margin: 0;
}




/**********************
PAGE
**********************/
.page table {
	width: 100%;
	line-height: 1.3;
	margin-bottom: 25px;
	text-align: left;
}
.page table a {
	display: block;
}
.page tr {
    font-size: 14px;
	vertical-align: middle;
}
.page th {
    background-color: #f4f7f7;
    font-weight: bold;
    border: 1px solid #e4e4e4;
	padding: 10px 10px;
}
.page td {
	padding: 20px 10px;
	border: 1px solid #e4e4e4;
	line-height: 1.5;
	word-break: break-all;
}
.page form th, .page form tr, .page form td {
	border: none;
	padding: 10px;
}
.alert {
	color: #f2790d;
	font-size: 18px;
	position: relative;
	padding-left: 40px;
	margin: 0 0 20px;
}
.alert:before {
	content: url(/img/alert-ico.png);
	margin-right: 5px;
	position: absolute;
	top: 2px;
	left: 0;
}


.form-menu {
	margin-top: 30px;
	margin-bottom: 30px;
}
.form-menu .cf select, .form-menu .cf button {
}
.form-menu tr {
	border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}
.form-menu th {
	width: 15%;
	border: none;
	text-align: center;
}
.page form .form-menu td {
	padding-right: 0;
	width: 100%;
	border: none;
}
.nbtn button {
	border-style: solid;
	border-width: 1px;
	border-color: rgb(153, 153, 153);
	border-radius: 6px;
	background-image: -moz-linear-gradient( 90deg, rgb(245,245,245) 0%, rgb(255,255,255) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(245,245,245) 0%, rgb(255,255,255) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(245,245,245) 0%, rgb(255,255,255) 100%);
	z-index: 139;
	cursor: pointer;
	padding: 0 20px;
}
.nbtn button:hover {
	background-image: -moz-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(245,245,245) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(245,245,245) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(245,245,245) 100%);
	opacity: 1;
}
.btn-box {
}
.btn-box button {
	margin-left: 5px;
	min-width: 120px;
	height: 38px;
}
.form-sub-menu {
	margin-bottom: 20px;
}
.form-sub-menu button {
	height: 38px;
}
.page table td.address {
	overflow-x: auto;
	word-break: normal;
	width: 160px;
	white-space: nowrap;
	display: block;
}
table .address .nbtn button {
	padding: 6px 20px 10px;
	margin-top: 10px;
}
table tr.unpaid {
	background: #fff6f1;
}
table .unpaid .payment {
	font-weight: bold;
	color: #f2790d;
}
table th.ac,table td.ac {
	text-align: center;
}
table span.kana {
	font-size: 80%;
}
table.horizon tr {
	text-align: left;
	padding: 10px 15px;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
}
table.horizon th, table.horizon td {
	text-align: left;
	padding: 10px 15px;
	border: none;
}


@media screen and (max-width: 667px){
	/**********************
	TOP
	**********************/
	.top {
		position: static;
		padding: 15px;
	}
	.top hr {
		margin: 20px;
	}
	.top main {
		width: 100%;
	}
	.top .main-box {
		width: 100%;
		padding: 15px;
		position: static;
		transform: none;
	}
	.top .main-box img {
		width: 100%;
	}
	.top table {
		width: 100%;
	}
	.top table tbody tr {
		margin-bottom: 20px;
		display: block;
	}
	.top table tbody tr:last-child {
		margin-bottom: 0;
	}
	.top table td {
		display: block;
		padding: 0;
	}
	.top input {
		width: 100%;
	}
	.top button.type01 {
		width: 100%;
		min-width: 100%;
		font-size: 16px;
		padding: 20px 35px 18px;
	}
	.top button.type01:before {
		font-size: 24px;
		top: 17px;
	}
	.footer {
		margin-top: 20px;
	}
	.footer p {
		font-size: 12px;
		position: static;
		width: 100%;
	}
	
	
}

