/* Reset
------------------------------------------------------------*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

address,
em {
	font-style: normal;
}

strong,
th {
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th {
	text-align: left;
}

hr,
legend {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

img,
fieldset {
	border: 0;
}

img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

li {
	list-style-type: none;
}

input[type="submit"],
button,
label,
select {
	cursor: pointer;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

/* link
------------------------------------------------------------*/

a {
	color: #333;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
}

button:hover {
	opacity: 0.8;
}

/* Fonts
------------------------------------------------------------*/

html {
	font-size: 62.5%;
}

/* 10px base */

body {
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-family: -apple-system, BlinkMacSystemFont, "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
	color: #333;
}

body > div,
input,
button,
textarea,
select {
	font-size: 14px;
	font-size: 1.4rem;
}

input,
button,
textarea,
select {
	line-height: 1.8;
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

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

select {
	padding: 10px;
	border-radius: 5px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
select {
	padding: 10px;
	border-radius: 5px;
	border: solid 1px #aaa;
}

textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
select.error {
	background-color: #fff2f2;
	border: solid 2px #E33E41;
}

/* radio
-------------*/

input[type="radio"] {
	display: none;
}

input[type="radio"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 24px;
	cursor: pointer;
	width: 100%;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after {
	content: '';
	top: 50%;
	position: absolute;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}

input[type="radio"] + label::before {
	width: 16px;
	height: 16px;
	margin-top: -9px;
	left: 0;
	background: #EEE;
	border: 1px solid #ccc;
}

input[type="radio"].error + label::before {
	border: 1px solid #E33E41;
	background-color: #fff2f2;
}

input[type="radio"] + label:hover::before {
	background: #FEFEFE;
}

input[type="radio"] + label::after {
	opacity: 0;
	left: 3px;
	width: 10px;
	height: 10px;
	margin-top: -6px;
	background: #3498DB;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498DB;
}

input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* checkbox
-------------*/

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}

input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	position: absolute;
	content: '';
}

input[type="checkbox"] + label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="checkbox"] + label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498DB;
	border-bottom: 2px solid #3498DB;
	-webkit-transform: rotate(-45deg) scale(0.5);
	-ms-transform: rotate(-45deg) scale(0.5);
	transform: rotate(-45deg) scale(0.5);
}

input[type="checkbox"] + label:hover::before {
	background: #fff;
}

input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498DB;
}

input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	-ms-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/*
#overview
base
*/

body {
	background-color: #ececec;
}

#header {
	background-color: #fff;
	border-top: solid 4px #e51400;
	box-shadow: #d2d2d2  0px 1px 0;
	padding: 20px 0;
}

#header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#header .siteTitle {
	font-weight: bold;
	color: #e51400;
	font-size: 26px;
	font-size: 2.6rem;
}

#header .btnBbs {
	width: 300px;
	text-align: right;
}

#header .btnBbs a {
	display: inline-block;
	padding: 8px 15px;
	background-color: #404040;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
	text-align: center;
}

#contents {
	padding: 40px 0;
}

#contents .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#contents .box {
	width: 48%;
}

#contents .box > .title {
	border-bottom: solid 3px #e51400;
	font-weight: bold;
	font-size: 22px;
	font-size: 2.2rem;
}

#contents .item {
	margin: 20px 0 0;
}

#contents .item a {
	display: block;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0 2px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	text-decoration: none;
}

#contents .item a:hover {
	opacity: 1;
	background-color: #ecfeec;
}

#contents .item .head {
	border-bottom: solid 1px #ececec;
	padding: 20px 30px;
}

#contents .item .title {
	margin-bottom: 5px;
	font-weight: bold;
	color: #008000;
	font-size: 18px;
	font-size: 1.8rem;
}

#contents .item .txt {
	line-height: 1.5;
}

#contents .item .info {
	padding: 15px 30px;
	color: #999999;
	font-size: 13px;
	font-size: 1.3rem;
}

#contents .item .info dl dt,
#contents .item .info dl dd {
	display: inline;
}

/*
#styleguide
container

```
<div class="container">
左右にpadding15pxつきます
</div>
```
*/

.container {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

#footer {
	background-color: #888888;
	padding: 15px 0;
}

#footer a {
	color: #fff;
	text-decoration: none;
}

/* CSS Document */

.container {
	max-width: 790px;
}

.modSpOnly {
	display: none;
}

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

.container {
	max-width: 750px;
}

.modPcOnly {
	display: none;
}

.modSpOnly {
	display: block;
}

}

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

#header {
	padding: 10px 0;
}

#header .siteTitle {
	font-size: 22px;
	font-size: 2.2rem;
}

#header .btnBbs {
	width: 120px;
}

#header .btnBbs a {
	padding: 8px 10px;
	font-size: 12px;
	font-size: 1.2rem;
}

#contents .container {
	display: block;
}

#contents .box {
	width: auto;
}

#contents .box + .box {
	margin-top: 30px;
}

#contents .box > .title {
	font-size: 18px;
	font-size: 1.8rem;
}

#contents .item .head {
	padding: 15px 20px;
}

#contents .item .title {
	font-size: 16px;
	font-size: 1.6rem;
}

#contents .item .txt {
	font-size: 12px;
	font-size: 1.2rem;
}

#contents .item .info {
	padding: 10px 20px;
	font-size: 12px;
	font-size: 1.2rem;
}

}


/*# sourceMappingURL=maps/common.css.map */
