@charset "utf-8";

/* ===================================================================
SETTING
=================================================================== */

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

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

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

body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="submit"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
button, 
textarea, 
select {
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none; 
	text-overflow: '';
	border-radius: 0;
	border: none; 
	outline: none;
	resize: none;
	font: unset;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  	display: none;
}

select::-ms-expand {
	display: none;
}

* a {
	text-decoration: none;
	color: inherit;
	font-size: inherit; 
	font-weight: inherit;
	font-family: inherit;
	text-align: inherit;
	line-height: inherit;
	outline: none;
	cursor: pointer;
}

* a img {
	border-style: none;
	outline: none;
	cursor: pointer;
}

img {
	vertical-align: middle;
	width: 100%;
	max-width: 100%;
}

/* BODY
--------------------*/

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-size: 15px;
	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	background: #EAEAEA;
	overflow-x: hidden;
}

/* DISPLAY
--------------------*/

.sp {
	display: none !important;
}

.pc {
	display: block !important;
}

.in-sp {
	display: none !important;
}

.in-pc {
	display: inline !important;
}

@media screen and (max-width: 1000px) {

	.sp {
		display: block !important;
	}
	
	.pc {
		display: none !important;
	}

	.in-sp {
		display: inline !important;
	}
	
	.in-pc {
		display: none !important;
	}
	
}

/* WRAPPER
--------------------*/

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

/* MAIN
--------------------*/

main {
	position: relative;
	display: block;
}

/* CONTAINER
--------------------*/

.container {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}

/* HEADER
--------------------*/

header {
	padding: 20px;
	color: #FFF;
	font-size: 24px;
    background: #666;
}

/* MAIN
--------------------*/

main {
	padding: 40px 0;
}

.c-heading {
	margin: 0 0 20px;
	padding: 20px;
	font-size: 18px;
	background: #FFF;
	border-radius: 4px;
	box-shadow: 0 4px 8px 0 #2533481F;
}

.c-table {
	box-shadow: 0 4px 8px 0 #2533481F;
}

.c-table table {
    position: relative;
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
}

.c-table table tr th,
.c-table table tr td {
    padding: 15px;
    border: 1px solid #BBB;
    vertical-align: middle;
}

.c-table table tr th {
	width: 18%;
	text-align: center;
	letter-spacing: 3px;
}

.c-table table tr td {
	width: 82%;
	text-align: left;
}

.c-table table tr:nth-of-type(even) th {
	background: rgba(220, 200, 200, .25);
}

.c-table table tr:nth-of-type(even) td {
	background: #FAFAFA;
}

.c-table table tr:nth-of-type(odd) th {
	background: rgba(240, 200, 200, .25);
}

.c-table table tr:nth-of-type(odd) td {
	background: #FFF;
}

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

footer {
	margin: auto 0 0;
	padding: 10px;
	color: #FFF;
	text-align: center;
    background: #333;
}

@media screen and (max-width: 1000px) {

	/* ===================================================================
	SETTING
	=================================================================== */

	/* CONTAINER
	--------------------*/

	.container {
		max-width: 540px;
	}

	/* MAIN
	--------------------*/

	.c-table table tr th,
	.c-table table tr td {
		display: block;
		width: 100%;
	}

	.c-table table tr:nth-of-type(even) th,
	.c-table table tr:nth-of-type(odd) th {
		background: rgba(240, 200, 200, .25);
	}

	.c-table table tr:nth-of-type(even) td,
	.c-table table tr:nth-of-type(odd) td {
		background: #FFF;
	}

}