@charset "utf-8";

/* ****************************************************************** 

	--common.css--
	
	0. BoxModel change

	1. Common setting
		1-1. Reset styles
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-5. Button styles
		1-6. TextLink styles
		1-7. Table styles
		1-8. Form styles
		1-9. Other styles
		1-99. VisualFormattingModel styles

****************************************************************** */

/*==================================================================
	0. BoxModel change
===================================================================*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Reset styles
-------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure { 
	margin: 0;
	padding: 0;
}
fieldset { 
	border: 0;
}
img { 
	border-style: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
ol,ul {
	list-style: none;
}
caption {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
q:before,q:after {
	content: '';
}
abbr,acronym { 
	border: 0;
}
table {
	width: 100%;
}

/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 12px;}
.f14 { font-size: 14px;}
.f16 { font-size: 16px;}
.f18 { font-size: 18px;}
.f20 { font-size: 20px;}
.f22 { font-size: 22px;}
.f24 { font-size: 24px;}
.f26 { font-size: 26px;}
.f28 { font-size: 28px;}
.f30 { font-size: 30px;}
.lh12 { line-height: 1.2;}
.lh14 { line-height: 1.4;}
.lh16 { line-height: 1.6;}
.lh18 { line-height: 1.8;}
.lh20 { line-height: 2;}

.f_color_base { color: #00b0f2;}/* KEY_COLOR */

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-6. TextLink styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: inherit;
	vertical-align: middle;
}
select::-ms-expand {
	display: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	transition: all 0.5s;
}

/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #7E7E7E;
}
input::-moz-placeholder {
	color: #7E7E7E;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #7E7E7E;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text {
	background: #fff;
	border: 1px solid #fff;
	padding: 10px;
	width: 100%;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn_wrap {
	text-align: center;
	margin: 8% 0;
}
.form_btn {
	background: -moz-linear-gradient(top, #ffae00, #ffc900);
	background: -webkit-linear-gradient(top, #ffae00, #ffc900);
	background: linear-gradient(to bottom, #ffae00, #ffc900);
	border-radius: 100vh;
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	display: inline-block;
	padding: 5% 0;
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	color: #FFF;
	text-shadow:
		-2px -2px 1px #f49a0d,
		 2px -2px 1px #f49a0d,
		-2px 2px 1px #f49a0d,
		 2px 2px 1px #f49a0d,
		 0 -2px 1px #f49a0d,
		 2px 0 1px #f49a0d,
		 0 2px 1px #f49a0d,
		-2px 0 1px #f49a0d;
}

/* disabled状態 */
/*.form_btn:disabled {
	background: #2E4967;
	border: 2px solid #2E4967;
	box-shadow: none;
	color: #C2D3E6;
	cursor: not-allowed;
}*/

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
	margin-top: 8px;
	font-size: 14px;
	color: #333;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
.form_error {
	margin-top: 8px;
	font-weight: 700;
	color: #FF0000;
}

/* ------------------------------------
	CLEARFIX
------------------------------------*/
.cf:after {
	content: "";
	display: block;
	clear: both;
}





















