/* ---------------
 RESET CSS
--------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: #287FF7;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}


/* ---------------
 COMMON
--------------- */

:root{
	--primary-color: #FF0000;
	--primary-hover: #af0202;
	--black: #222;
	--semiblack: #333;
	--dark-gray: #999;
	--gray: #ccc;
	--light-gray :#f1f1f1;
	--white: #fff;
	--text-link: #287FF7;
}

body{
	background: #fff;
	color: #222;
	line-height:1;
	font-size: 16px;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.fl_ctabx {
	position: fixed;
	top: 30px;
	right: 20px;
	transition: .2s all;
	z-index: 2;
}
.fl_cta {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 50px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
.fl_cta:hover {
	box-shadow: 0 0px 10px rgb(0 0 0 / 20%);
}
.fl_cta.register {
	background: #FF0000;
	color: #fff;
}
.fl_cta.register:hover {
	background: #af0202;
}
.fl_cta.login {
	background: #FFF;
	color: #000;
}
.fl_cta.login:hover {
	background: #EEE;
}
br.small {
	display: none;
}
br.medium {
	display: block;
}
br.large {
	display: block;
}
@media screen and (max-width: 1024px) {
	br.medium {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.fl_ctabx {
		top: 20px;
		right: 10px;
		width: 100px;
	}
	.fl_cta {
		margin-bottom: 10px;
		padding: 6px 12px;
	}
	br.small {
		display: block;
	}
	br.medium {
		display: block;
	}
	br.large {
		display: none;
	}
}

.sp {
	display: none;
}
::placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
::-webkit-input-placeholder {
	color: #ccc;
}
::marker {
	color: #333;
}
@media screen and (max-width: 480px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* ---------------
 HEADER
--------------- */
#header {
	padding: 16px 0;
	background: #222;
}
.header_bx {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	margin: auto;
	box-sizing: border-box;
}
.header_logo {
	width: 300px;
	transition: .2s opacity;
}
.header_logo:hover {
	opacity: .8;
}
@media screen and (max-width: 1024px) {
	.header_bx {
		width: 100%;
		padding: 0 16px;
	}
	.header_logo {
		width: 200px;
	}
	.header_top {
		font-size: 12px;
	}
}


/* ---------------
 FOOTER
--------------- */

#footer {
	width: 100%;
	padding: 72px 16px 32px;
	box-sizing: border-box;
	background: #f1f1f1;
}
.footer_logo {
	width: 300px;
}
.footer_mark {
	width: 80px;
	height: 80px
}
.footer_b {
	width: 1000px;
	margin: auto;
}
.footer_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_lili {
	display: flex;
	justify-content: space-between;
	margin-top: 48px;
}
.footer_lili_wr {
	display: inline-block;
	margin: 0 8px;
}
.footer_lili_wr:first-child {
	margin: 0;
}
.footer_lili_link {
	color: #222;
	font-size: 12px;
	text-decoration: none;
	transition: .2s font-weight;
}
.footer_lili_link:hover {
	text-decoration: underline;
}
.footer_copy {
	display: block;
	margin-top: 56px;
	color: #aaa;
	font-size: 12px;
}
@media screen and (max-width: 1024px) {
	.footer_b{
		max-width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#footer {
		padding: 60px 0 32px;
	}
	.footer_logo {
		display: block;
		margin: auto;
	}
	.footer_lili{
		margin-top: 36px;
	}
	.footer_lili_wr:first-child {
		margin: 0 16px ;
	}
	.footer_lili_wr {
		display: block;
		margin: 0 16px;
		padding:  8px 0;
		box-sizing: border-box;
	}
	.footer_lili_link {
		font-size: 12px;
	}
	.footer_copy {
		text-align: center;
	}
}

/* ---------------
 COMMON CONTENT
--------------- */
.wrap {
	max-width: 900px;
	margin: 0 auto 100px;
	box-sizing: border-box;
	word-break: break-all;
}
.hl1 {
	line-height: 1.4;
	margin: 32px 0;
	font-size: 32px;
	font-weight: bold;
}
.hl2 {
	line-height: 1.4;
	margin: 24px 0;
	font-size: 22px;
	font-weight: bold;
}
.hl3 {
	line-height: 1.4;
	margin: 24px 0;
	font-size: 24px;
	font-weight: bold;
}
.bx_img {
	display: block;
	max-width: 600px;
	margin: auto;
	border: 1px solid #ccc;
}
.txt {
	line-height: 1.6;
	margin: 16px 0;
	font-size: 16px;
	word-break: break-all;
}
.tblk {
	margin: 24px 0;
	padding: 0 16px;
	background: #f1f1f1;
	border: 1px solid transparent;
}
.sbtxt {
	line-height: 1.6;
	margin: 24px 0;
	color : #999;
	font-size: 14px;
}
.lst{
	padding-left: 1.2em;
	margin: 16px 0;
}
.lst li{
	margin: 8px 0;
	line-height: 1.6;
	word-break: break-all;
}
.tbl {
	border: 1px solid #ccc;
	font-size: .8em;
	word-break: break-all;
}
.tbl th{
	border: solid 1px #f1f1f1;
	padding: 16px;
	box-sizing: border-box;
	background-color: #f1f1f1;
}
.tbl td{
	padding: 16px 8px;
	line-height: 1.6;
	box-sizing: border-box;
	border: solid 1px #f1f1f1;
}
.ipt_t {
	width: 100%;
	margin: 8px 0 24px 0;
	padding:  8px;
	border: 2px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
}
.ipt_t:focus {
	border-color: #287FF7;
}

.submitbtn {
	min-width: 150px;
	margin: 16px 0;
	padding: 12px;
	border-radius: 50px;
	border: none;
	background: #222;
	color: #fff;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
@media screen and (max-width: 1024px) {
	.wrap {
		width: 100%;
		padding: 0 16px;
	}
	.wrap_tbl {
		overflow-x: scroll;
	}
	.wrap_tbl .tbl {
		width: 1200px;
	}
	.tbl td:last-child {
		width: 100%;
		border-bottom: solid 1px #f1f1f1;
	}
	.wrap_tbl .tbl td:last-child {
		width: auto;
	}
	.tbl td,
	.tbl th {
		padding: 12px 8px;
		vertical-align: middle;
	}
	.tbl th {
		font-size: 0.8em;
		text-align: left;
	}
	.tbl th {
		width: 70px;
	}
	.wrap_tbl .tbl th {
		width: auto;
	}

}
/* ---------------
 start
--------------- */

.start {
	width: 100%;
	padding: 100px 16px 76px;
	box-sizing: border-box;
	text-align: center;
	background: #333;
	color: #fff;
}
.start_h {
	font-weight: bold;
	font-size: 30px;
}
.start_c {
	margin-top: 20px;
	line-height: 1.6;
}
.start_cta {
	display: inline-block;
	width: 400px;
	margin-top: 32px;
	padding: 36px 0;
	border-radius: 50px;
	box-sizing: border-box;
	background-color: #FF0000;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2221%22%20viewBox%3D%220%200%2013%2021%22%3E%3Cpath%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-width%3A%202px%3B%22%20d%3D%22M1.814%2C19.458%2C10.771%2C10.5%2C1.814%2C1.542%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-position: top 50% right 16px;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
	transition: .2s background-color;
	box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
.start_cta:hover {
	background-color: #af0202;
	box-shadow: 0 0px 10px rgb(0 0 0 / 20%);
}
.start_k {
	margin-top: 56px;
	line-height: 1.6;
	font-weight: bold;
	font-size: 18px;
	white-space: nowrap;
}
@media screen and (max-width: 480px) {
	.start_cta {
		width: 100%;
	}
	.start_c {
		font-size: 14px;
	}
	.start_k {
		font-size: 18px;
	}
}

/* ---------------
 PR
--------------- */

#pr {
	padding: 42px 16px;
	text-align: center;
	background-color: #222;
}
.pr_img {
	transition: .2s all;
	max-width: 100%;
}
.pr_img:hover {
	opacity: .8;
}

/* ---------------
 MARGIN
--------------- */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.25rem; }
.mt-5 { margin-top: 1.5rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }

/* ---------------
 UTIL
--------------- */
.label-blue {
	background: #2d80d8;
	color: #ffffff;
	border-radius: 5px;
	font-size: 0.6rem;
	padding: 5px;
}

.list-none {
	list-style: none;
}
