@charset "UTF-8";
@import url('reset.css');

body {
	font-family: Roboto,sans-serif,google, メイリオ, Meiryo,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro';
}

#container {
    width: 1024px;
    margin: 0 auto;
    border-left: 2px solid #0f0;
    border-right: 2px solid #0f0;
	border-bottom: 2px solid #0f0;
    background: #fff;
	box-sizing: border-box;
	font-size: .8em;
}

h1 {
	margin-top: 1em;
	margin-bottom: 1em;
}

#header {
	border-bottom: 1px solid #FE9A2E;
}

#footer {
	padding: 1em;
	text-align: center;
}

#formcontetnsLayout {
	padding: 0 1.5em;
}

#templateTable {
	width: 100%;
	border-collapse: collapse;
}

#templateTable td {
	border: 1px solid #555;
	vertical-align: top;
	text-align: center;
	padding: 5px 0 15px;
	color: #025296;
	width: 20%;
}

#templateTable img, #tempImg {
	width: 150px;
	height: 150px;
	object-fit: cover;
	object-position: 0 0;
}

.tempBtn {
	border: 0;
	border-radius: 5px;
	width: 100px;
	text-align: center;
	padding: 3px;
	font-size: 1.2em;
	background: #04b431;
	color: #fff;
	cursor: pointer;
	margin-top: 10px;
}

#tempTitle {
	font-size: 1.5em;
	padding: 5px;
	border-left: 10px solid #FE9A2E;
	border-bottom: 1px solid #FE9A2E;
	margin: 10px 0;
}

.sp_block {
	display: none;
}

#templateTable td.non_td {
	border: 0;
	display: none;
}

.template_title {
	color: #43a218;
	font-size: 1.5em;
	padding-top: .8em;
	font-weight: normal;
	text-align: left;
}

.template_comm {
	padding-bottom: 5px;
	font-weight: normal;
	text-align: left;
}

#page_comment {
	padding: 5px 20px;
	border: 1px solid #555;
	border-radius: 8px;
	margin-bottom: 5px;
}

#page_comment h3 {
	font-size: 1.5em;
	padding: 5px 0;
}

#page_comment .commTitle {
	padding: 5px 0;
}

#page_comment .commContents {
	padding-left: 1em;
}

#click_comm {
	color: #00f;
	font-weight: bold;
}

#page_top {
	position: fixed;
	bottom: 20px;
	right: 50px;
}

#page_top a {
	display: block;
	width: 50px;
	height: 50px;
	border: 2px solid #f00;
	border-radius: 30px;
	position: relative;
}

#page_top a:before {
	width: 18px;
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	transform: rotate(45deg);
	top: 23px;
	right: 10px;
	background: #f00;
}

#page_top a:after{
	width: 18px;
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	transform: rotate(135deg);
	top: 23px;
	left: 10px;
	background: #f00;
}

.W50 {
	width: 4em;
}

#tempSelect {
	overflow: hidden;
	margin-top: 2em;
}

#tempSelect h4 {
	font-size: 1.2em;
	border-left: .5em solid #f00;
	float: left;
	width: 200px;
	padding-left: .5em;
}

#tempSelect p {
	float: left;
	font-size: 1.2em;
}

.formTable {
	border-collapse: collapse;
	width: 100%;
	margin-top: 1.5em;
}
.formTable th {
	width: 200px;
	vertical-align: middle;
	text-align: left;
	height: 6em;
}

.formTable td {
	padding: .5em 1em;
	overflow: hidden;
	vertical-align: middle;
}

.formTable .item {
	padding-left: .5em;
	border-left: .5em solid #f00;
	font-size: 1.2em;
}

.formTable .exmp {
	font-weight: normal;
	font-size: .8em;
}

.formTable td.indispTd {
	width: 3em;
	padding: 0 1em;
}

.formTable input {
	border: 1px solid #555;
	border-radius: 5px;
	padding: .3em .5em;
}

#planTable {
	border-collapse: collapse;
	width: 55em;
	margin: .5em 0;
	display: none;
}

#planTable th, #planTable td {
	border: 1px solid #333;
	padding: .5em 1em;
}

#planTable th {
	text-align: left;
	width: 24em;
	background: #b0c4de;
}

#planTable td {
	text-align: center;
	width: 6em;
}

.okMsg {
	font-size: .8em;
	color: #3a0;
	padding-left: 5px;
	display: inline-block;
	margin-bottom: 7px;
	vertical-align: top;
}

.errMsg {
	font-size: .8em;
	color: #f00;
	padding-left: 5px;
	display: inline-block;
	margin-bottom: 7px;
	vertical-align: top;
}

.errMark {
	content: " ";
	width: 20px;
	height: 20px;
	background: #fff;
	position: relative;
	border-radius: 10px;
	display: inline-block;
	border: 2px solid #f00;
	box-sizing: border-box;
}

.errMark:before {
	content: "";
	height: 3px;
	width: 12px;
	background: #f00;
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 2px;
	transform: rotate(45deg);
}

.errMark:after {
	content: "";
	height: 3px;
	width: 12px;
	background: #f00;
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 2px;
	transform: rotate(135deg);
}

.okMark {
	content: " ";
	width: 20px;
	height: 20px;
	background: #fff;
	position: relative;
	border-radius: 10px;
	display: inline-block;
	border: 2px solid #3a0;
	box-sizing: border-box;
}

.okMark:before {
	content: "";
	height: 3px;
	width: 5px;
	background: #3a0;
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 2px;
	transform: rotate(45deg);
}

.okMark:after {
	content: "";
	height: 3px;
	width: 10px;
	background: #3a0;
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 4px;
	transform: rotate(135deg);
}

#url_msg {
	font-size: .85em;
	color: #f00;
}

.url_inp {
	margin: 0 0 10px;
}

.checkBtn {
	background: #2E9AFE;
	color: #fff;
	border: 0;
	width: 7em;
	height: 2em;
	text-align: center;
	border-radius: 10px;
	box-shadow: 3px 3px 0 #A9BCF5;
	cursor: pointer;
}

#const {
	margin-top: 10px;
	padding-right: 10px;
}

#thanks {
	font-size: 2em;
	text-align: center;
	color: #000000;
	margin-top: 2em;
}

.thanksMsg {
	text-align: center;
	margin: 2em 0;
}

.btnArea {
	text-align: center;
	margin-top: 1em;
}

#backBtn, #sendBtn, #topBtn, #inqBtn {
	display: inline-block;
	width: 10em;
	background: linear-gradient(#fee678, #fb9b34);
	font-size: 2em;
	color: #fff;
	padding: 10px 0;
	border-radius: 8px;
	text-decoration: none;
	position: relative;
}

#inqBtn {
	width: 15em;
	font-size: 1.5em;
	background: linear-gradient(#ff7f50,#ff4500);
}

#backBtn:after {
	content: "";
	display: block;
	position: absolute;
	left: .5em;
	top: .8em;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
	border-right: 15px solid #fff;
}

#sendBtn:after {
	content: "";
	display: block;
	position: absolute;
	right: .5em;
	top: .8em;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	border-right: 10px solid transparent;
}

.W250 {
	width: 25em;
}

.indisp {
	color: #FE9A2E;
	border: 1px solid #FE9A2E;
	border-radius: 4px;
	width: 3em;
	text-align: center;
	display: block;
	font-weight: bold;
}

.indispRight {
	float: left;
}

.errorTitle {
	border: 1px solid #f00;
	padding: .5em 1em;
	color: #f00;
	list-style-type: none;
}

#kiyaku {
	padding: 1em 1.5em;
	font-size: 1.2em;
}

#kiyaku h3{
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

#kiyaku p{
	font-size: 0.8em;
}

.style1 {
	margin-top: 1em;
	display: inline-block;
	font-weight: bold;
	font-size: 1.5rem;
	color: #ff6600;
}

.line {
	margin-bottom: 1em;
}

#security_img {
	display: none;
}

@media screen and (max-width: 768px) {
	input[type="submit"],	input[type="button"] { -webkit-box-sizing: content-box; -webkit-appearance: button; appearance: button; border: none; box-sizing: border-box; cursor: pointer; }
	input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration { display: none; }
	input[type="submit"]::focus, input[type="button"]::focus { outline-offset: -2px; }
	body { font-size: 16px; }
	.copy, #headerBottomLink { display: none; }
	#container { width: 100%; box-sizing: border-box; }
	h1 img, h2 img { width: 100%; }
	#templateTable td { display:block; width: 100%; }
	#header { border-bottom: solid 1px #ff9d34; }
	#formcontetnsLayout { margin: 0; }
	#formcontetnsLayout .titleMT { margin-top: 10px; }
	#templateTable img { width: calc(100% - 20px); height: 200px; }
	.tempBtn { width: 150px; padding: 5px; }
	.formTable th, .formTable td { display: block; width: 100%; box-sizing: border-box; }
	.formTable th { overflow: hidden; }
	.sp_none { display: none; }
	.sp_block { display: block; font-size: .8em; }
	input[type="text"] { border: 1px solid #555; padding: 5px 10px; border-radius: 5px; }
	.W50 { width: 3em; }
	.W250 { width: 100%; box-sizing: border-box; margin-right: 10px;}
	#backBtn { margin-bottom: 10px; display: inline-block; }
	#backBtn, #sendBtn { font-size: 1.5em; }
	#backBtn:after, #sendBtn:after { top: .5em; }
	#const { font-size: .65em; }
	.formTop { font-size: .8em; line-height: 1.5em; }
}
