/* "PC" Style Sheet */


/* =====================================================
▼ COMMON
===================================================== */
.inner1200 {
	width: 1200px;
	margin: 0 auto;
}
.inner800 {
	width: 800px;
	margin: 0 auto;
}
.fs-90 {
	font-size: 90%;
	line-height: 1.5em;
}
.fs-120 {
	font-size: 120%;
	line-height: 1.5em;
}
.fs-150 {
	font-size: 150%;
	line-height: 1.5em;
}
.fs-200 {
	font-size: 200%;
	line-height: 1.5em;
}
.fw-normal {
	font-weight: normal;
}
.fw-bold {
	font-weight: bold;
}
.fc-red {
	color: #B1272D;
}
.fc-blue {
	color: #172E87;
}
.bg-lblue {
	background-color: #F6FAFF;
}
.bg-grey-slash {
	background-image: url(../img/common/bg_grey_slash.png);
	background-repeat: repeat;
}
.sec-wrap {
	padding: 50px 0;
}
.box-wrap {
	padding: 30px;
}
.center-left {
	text-align: center;
}
.relative {
	position: relative;
}
.btn-link {
	display: inline-block;
	text-align: center;
}
.btn-link a {
	display: block;
	color: #3E3E3E;
	border: solid 1px #3E3E3E;
	padding: 5px 20px;
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
}
.btn-link a:hover {
	text-decoration: none;
	color: #FFF;
	background-color: #3E3E3E;
}
.btn-link.orange a {
	color: #F7931E;
}
.btn-link.orange a:hover {
	color: #FFF;
	border: solid 1px #F7931E;
	background-color: #F7931E;
}
.btn-link.green a {
	color: #22B573;
}
.btn-link.green a:hover {
	color: #FFF;
	border: solid 1px #22B573;
	background-color: #22B573;
}



/* =====================================================
▼ HEADER
===================================================== */
div#sticker.is-fixed {}
div#sticker.is-fixed header div.top-info {
	padding: 15px 0;
}
div#sticker.is-fixed header div.top-info div.logo-cont h1 img {
	width: 200px;
	height: auto;
}
div#sticker.is-fixed header div.top-info div.info-cont table.info-wrap {
	top: -100px;
}
div#sticker.is-fixed header div.top-info div.info-cont nav {
	margin-top: 0;
}
header {
	background-color: rgba(255,255,255,0.9);
}
header div.top-info {
	padding: 10px 0;
}
header div.top-info div.logo-cont {
	float: left;
}
header div.top-info div.logo-cont h1 {}
header div.top-info div.info-cont {
	float: right;
}
header div.top-info div.info-cont table.info-wrap {
	position: absolute;
	top: 10px;
	right: 0;
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
}
header div.top-info div.info-cont table.info-wrap tr {}
header div.top-info div.info-cont table.info-wrap tr td {
	color: #666;
}
header div.top-info div.info-cont table.info-wrap tr td.tel {}
header div.top-info div.info-cont table.info-wrap tr td.time {
	font-size: 90%;
	line-height: 1.5em;
	white-space: nowrap;
	border-right: solid 1px #666;
	padding: 0 20px;
}
header div.top-info div.info-cont table.info-wrap tr td.mail {
	font-size: 150%;
	line-height: 1em;
	padding: 0 20px;
}
header div.top-info div.info-cont table.info-wrap tr td.mail a {
	color: #666;
}
header div.top-info div.info-cont nav {
	margin-top: 30px;
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
}
header div.top-info div.info-cont nav ul {
	display: table;
	border-collapse: separate;
	width: 100%;
}
header div.top-info div.info-cont nav ul li {
	display: table-cell;
	vertical-align: top;
	font-weight: bold;
	text-align: center;
}
header div.top-info div.info-cont nav ul li a {
	display: block;
	color: #3E3E3E;
	border-bottom: solid 1px transparent;
	padding: 0 10px;
	padding-bottom: 3px;
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
}
header div.top-info div.info-cont nav ul li a:hover {
	text-decoration: none;
	border-bottom: solid 1px #3E3E3E;
}



/* =====================================================
▼ FOOTER
===================================================== */
footer {}
footer div.copyright {
	font-size: 80%;
	line-height: 1.5em;
	font-weight: 300;
	text-align: center;
	color: #FFF;
	background-color: #006934;
	padding: 10px;
}



/* =====================================================
▼ FORM TEMPLATE
===================================================== */
article section#form-sec {}
article section#form-sec table.form-list {
	border-collapse: separate;
	border-spacing: 0 10px;
	width: 100%;
}
article section#form-sec table.form-list tr {}
article section#form-sec table.form-list tr th {
	display: block;
	font-weight: normal;
	text-align: left;
	margin-bottom: 5px;
}
article section#form-sec table.form-list tr th.required:after {
	content: "必須";
	font-size: 80%;
	line-height: 1.5em;
	white-space: nowrap;
	color: #FFF;
	border-radius: 3px;
	background-color: #B1272D;
	padding: 3px 5px;
	margin-left: 5px;
}
article section#form-sec table.form-list tr td {
	display: block;
	margin-bottom: 15px;
}
article section#form-sec table.form-list tr td input[type="text"],
article section#form-sec table.form-list tr td input[type="email"],
article section#form-sec table.form-list tr td input[type="tel"] {
	width: 100%;
	border: solid 1px #CCC;
	border-radius: 3px;
	padding: 10px;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
}
article section#form-sec table.form-list tr td input[type="checkbox"] {
	margin-right: 0.5em;
}
article section#form-sec table.form-list tr td input[type="radio"] {
	margin-right: 0.5em;
}
article section#form-sec table.form-list tr td label {
	margin-right: 1em;
}
article section#form-sec table.form-list tr td select {
	height: 35px;
}
article section#form-sec table.form-list tr td textarea {
	width: 100%;
	height: 150px;
	border: solid 1px #CCC;
	border-radius: 3px;
	padding: 10px;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
}
article section#form-sec table.form-list tr td p.count {
	position: absolute;
	top: -2em;
	right: 0;
}
article section#form-sec input[type=reset],
article section#form-sec input[type=submit] {
	border: none;
	border-radius: 25px;
	padding: 10px 50px;
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
}
article section#form-sec input[type=reset] {
	text-decoration: none;
	color: #FFF;
	background-color: #B3B3B3;
}
article section#form-sec input[type=reset]:hover {
	background-color: #999;
}
article section#form-sec input[type=submit] {
	text-decoration: none;
	color: #FFF;
	background-color: #B1272D;
}
article section#form-sec input[type=submit]:hover {
	background-color: #8B120B;
}

.grecaptcha-badge {
	visibility: hidden;
}
.g-recaptcha,
.cf-turnstile {
	text-align: center;
}
.g-recaptcha > div,
.cf-turnstile > div {
	display: inline-block;
}



/* =====================================================
▼ CONTENTS "COMMON"
===================================================== */
article {}
article section {}
article section h1 {
	font-size: 200%;
	line-height: 1.5em;
	font-weight: normal;
	text-align: center;
	color: #006934;
	margin-bottom: 50px;
}
article section h1:after {
	content: "";
	display: block;
	width: 60px;
	border-bottom: solid 1px #3E3E3E;
	padding-top: 20px;
	margin: 0 auto;
}



/* =====================================================
▼ CONTENTS "HOME"
===================================================== */
div.kv-area {
	height: 500px;
	background-image: url(../img/home/img_kv_bg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
}
div.kv-area img {
	display: block;
	margin: 0 auto;
	padding-top: 120px;
}

div.security-area {
	margin-top: 30px;
}
div.security-area div.security-btn,
div.security-area div.cancel-btn {}
div.security-area div.security-btn a,
div.security-area div.cancel-btn a {
	color: #FFF;
	border: solid 1px #006934;
	background-color: #006934;
}
div.security-area div.security-btn a:hover,
div.security-area div.cancel-btn a:hover {
	color: #006934;
	background-color: transparent
}
div.security-area div.security-popup {
	position: fixed;
	top: calc(50% - 100px);
	left: 50%;
	max-width: 1000px;
	width: 100%;
	border-radius: 20px;
	background-color: #FFF;
	padding: 50px;
	padding-bottom: 130px;
	z-index: 2001;
	visibility: hidden;
	opacity: 0;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	
	transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
	
	transition: 0.3s ease-in-out;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
}
div.security-area div.cancel-btn {
	position: absolute;
	bottom: 50px;
	left: 50%;
	
	transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
}
div.security-area div.security-popup div.scroll-area {
	height: 380px;
	overflow: scroll;
}
div.security-area div.security-popup div.scroll-area ul.security-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 30px;
}
div.security-area div.security-popup div.scroll-area ul.security-list li {
	width: calc((100% - 50px) / 3);
	font-weight: bold;
	text-align: center;
	color: #006934;
	background-color: rgba(0,105,52,0.1);
	padding: 20px;
	margin-right: 25px;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
}
div.security-area div.security-popup div.scroll-area ul.security-list li:nth-of-type(3n) {
	margin-right: 0;
}
div.security-area div.security-popup div.scroll-area ul.security-list li:nth-of-type(n+4) {
	margin-top: 25px;
}
body.popup-open {}
body.popup-open:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	z-index: 2000;
}
body.popup-open div.security-area div.security-popup {
	top: 50%;
	visibility: visible;
	opacity: 1;
}

article#home {}
article#home section#news-sec {}
article#home section#news-sec table.news-list {
	border-collapse: separate;
	border-spacing: 30px 10px;
}
article#home section#news-sec table.news-list tr {}
article#home section#news-sec table.news-list tr th {
	vertical-align: top;
	font-weight: normal;
}
article#home section#news-sec table.news-list tr td {
	vertical-align: top;
}
article#home section#news-sec table.news-list tr td span.new {
	font-size: 80%;
	line-height: 1.5em;
	white-space: nowrap;
	color: #FFF;
	border-radius: 3px;
	background-color: #B1272D;
	padding: 3px 5px;
	margin-right: 5px;
}

article#home section#greeting-sec {}

article#home section#service-sec {}
article#home section#service-sec ul.service-list {}
article#home section#service-sec ul.service-list li {
	width: 48%;
	margin-right: 4%;
}
article#home section#service-sec ul.service-list li:nth-child(2n) {
	margin-right: 0;
}
article#home section#service-sec ul.service-list li:nth-child(n+3) {
	margin-top: 30px;
}
article#home section#service-sec div.service-title {
	display: table;
	margin-bottom: 20px;
}
article#home section#service-sec div.service-title div {
	display: table-cell;
	vertical-align: middle;
	font-size: 120%;
	line-height: 1.5em;
	font-weight: bold;
}
article#home section#service-sec div.service-title div.icon {
	padding-right: 15px;
}
article#home section#service-sec div#type-cont {}
article#home section#service-sec div#type-cont ul.type-list01 {}
article#home section#service-sec div#type-cont ul.type-list01 li {
	width: 49%;
	margin-right: 2%;
}
article#home section#service-sec div#type-cont ul.type-list01 li:nth-child(2n) {
	margin-right: 0;
}
article#home section#service-sec div#type-cont ul.type-list01 li:nth-child(n+3) {
	margin-top: 30px;
}
article#home section#service-sec div#type-cont ul.type-list01 li table {
	width: 100%;
}
article#home section#service-sec div#type-cont ul.type-list01 li table caption {
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
article#home section#service-sec div#type-cont ul.type-list01 li table tr {}
article#home section#service-sec div#type-cont ul.type-list01 li table tr th {
	vertical-align: top;
	padding-right: 10px;
}
article#home section#service-sec div#type-cont ul.type-list01 li table tr td {
	vertical-align: bottom;
}
article#home section#service-sec div#type-cont ul.type-list02 {}
article#home section#service-sec div#type-cont ul.type-list02 li {}
article#home section#service-sec div#type-cont ul.type-list02 li:nth-child(n+5) {
	margin-top: 30px;
}
article#home section#service-sec div#type-cont ul.type-list02 li table {
	width: 100%;
	margin-bottom: 10px;
}
article#home section#service-sec div#type-cont ul.type-list02 li table caption {
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
article#home section#service-sec div#type-cont ul.type-list02 li table tr {}
article#home section#service-sec div#type-cont ul.type-list02 li table tr th {
	text-align: center;
}
article#home section#service-sec div#type-cont ul.type-list02 li table tr td {}
article#home section#service-sec div#price-cont {}
article#home section#service-sec div#price-cont table.price-list {
	border-collapse: separate;
	border-spacing: 20px 10px;
	width: 100%;
	border: solid 1px #808080;
	background-color: #FFF;
}
article#home section#service-sec div#price-cont table.price-list tr {}
article#home section#service-sec div#price-cont table.price-list tr th {
	width: 25%;
}
article#home section#service-sec div#price-cont table.price-list tr td {}
article#home section#service-sec div#price-cont table.price-list tr td.price {
	width: 30%;
	font-size: 150%;
	line-height: 1.5em;
	font-weight: bold;
	color: #F7931E;
}
article#home section#service-sec div#price-cont table.price-list tr td.price small {
	font-size: 60%;
	line-height: 1.5em;
}
article#home section#service-sec div#price-cont table.price-list tr td.kome {
	width: 45%;
	font-size: 90%;
	line-height: 1.5em;
}
article#home section#service-sec div#flow-cont {}
article#home section#service-sec div#example-cont {}
article#home section#service-sec div#example-cont ul.example-list {}
article#home section#service-sec div#example-cont ul.example-list li {
	width: 48%;
	margin-right: 4%;
}
article#home section#service-sec div#example-cont ul.example-list li:nth-child(2n) {
	margin-right: 0;
}
article#home section#service-sec div#example-cont ul.example-list li:nth-child(n+3) {
	margin-top: 30px;
}
article#home section#service-sec div#example-cont ul.example-list li figure {}
article#home section#service-sec div#example-cont ul.example-list li figure img {
	margin-bottom: 10px;
}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption {}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption table {
	width: 100%;
	margin-bottom: 10px;
}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption table tr {}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption table tr th {
	border: solid 2px #3E3E3E;
	padding: 5px 10px;
}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption table tr td {
	width: 100%;
	border: solid 2px #3E3E3E;
	padding: 5px 10px;
}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption p.total {
	font-size: 150%;
	line-height: 1.5em;
	font-weight: bold;
	color: #B1272D;
}
article#home section#service-sec div#example-cont ul.example-list li figure figcaption strong {
	font-size: 120%;
	line-height: 1.5em;
}
article#home section#service-sec div#komon-cont {}
article#home section#service-sec div#komon-cont table.price-list {
	border-collapse: separate;
	border-spacing: 20px 10px;
	width: 100%;
	border: solid 1px #808080;
	background-color: #FFF;
}
article#home section#service-sec div#komon-cont table.price-list tr {}
article#home section#service-sec div#komon-cont table.price-list tr th {
	width: 25%;
}
article#home section#service-sec div#komon-cont table.price-list tr td {}
article#home section#service-sec div#komon-cont table.price-list tr td.price {
	width: 35%;
	font-size: 150%;
	line-height: 1.5em;
	font-weight: bold;
	color: #22B573;
}
article#home section#service-sec div#komon-cont table.price-list tr td.price small {
	font-size: 70%;
	line-height: 1.5em;
}
article#home section#service-sec div#komon-cont table.price-list tr td.kome {
	width: 40%;
	font-size: 90%;
	line-height: 1.5em;
}

article#home section#company-sec {
	background-image: url(../img/home/img_company_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
article#home section#company-sec table.prof-list {
	border-collapse: separate;
	border-spacing: 80px 20px;
}
article#home section#company-sec table.prof-list tr {}
article#home section#company-sec table.prof-list tr th {
	vertical-align: top;
	text-align: left;
	color: #006934;
}
article#home section#company-sec table.prof-list tr td {
	vertical-align: top;
}

article#home section#form-sec {}
article#home section#form-sec div.form-wrap {
	border: solid 5px #006934;
	border-radius: 10px;
	padding: 30px;
}



/* =====================================================
▼ CONTENTS "CONTACT"
===================================================== */
article#contact {}
article#contact section#form-sec {}



/* =====================================================
▼ CONTENTS "THANKS"
===================================================== */
article#thanks {}
article#thanks section#thanks-sec {}



/* =====================================================
▼ CONTENTS "POST LIST"
===================================================== */
article#postlist {}
article#postlist section#postlist-sec {}
article#postlist section#postlist-sec ul.post-list {}
article#postlist section#postlist-sec ul.post-list li {
	border-bottom: solid 1px #666;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
article#postlist section#postlist-sec ul.post-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
article#postlist section#postlist-sec ul.post-list li figure {}
article#postlist section#postlist-sec ul.post-list li figure img {}
article#postlist section#postlist-sec ul.post-list li figure figcaption {}
article#postlist section#postlist-sec ul.post-list li figure figcaption p.post-date {
	color: #666;
	margin-bottom: 3px;
}
article#postlist section#postlist-sec ul.post-list li figure figcaption p.post-title {
	font-weight: bold;
	margin-bottom: 5px;
}
article#postlist section#postlist-sec ul.post-list li figure figcaption p span.new {
	font-size: 80%;
	line-height: 1.5em;
	white-space: nowrap;
	color: #FFF;
	border-radius: 3px;
	background-color: #B1272D;
	padding: 3px 5px;
	margin-right: 5px;
}



/* =====================================================
▼ CONTENTS "POST DETAIL"
===================================================== */
article#postdtl {}
article#postdtl section#postdtl-sec {}
article#postdtl section#postdtl-sec h1 {
	font-size: 150%;
	line-height: 1.5em;
}
article#postdtl section#postdtl-sec p.post-date {
	color: #666;
	margin-bottom: 20px;
}
article#postdtl section#postdtl-sec div.detailUpfile {
	text-align: center;
}
article#postdtl section#postdtl-sec div.detailUpfile img {
	max-width: 800px;
	height: auto;
}



/* =====================================================
▼ CONTENTS "STEP COMMON"
===================================================== */
/* article#step {}
article#step section#form-sec {}
article#step section#form-sec table.form-list,
article#step section#form-sec table.form-list tbody,
article#step section#form-sec table.form-list tr {
	display: block;
}
article#step section#form-sec table.form-list tr th.step-q {
	position: relative;
	font-size: 120%;
	line-height: 1.5em;
	font-weight: bold;
	padding-left: 65px;
	margin-bottom: 50px;
}
article#step section#form-sec table.form-list tr th.step-q span {
	position: absolute;
	top: -10px;
	left: 0;
	display: block;
	width: 50px;
	height: 50px;
	font-size: 22px;
	line-height: 2.2em;
	font-weight: normal;
	text-align: center;
	color: #FFF;
	background-color: #006834;
}
article#step section#form-sec table.form-list tr:last-child td {
	margin-bottom: 0;
}
article#step section#form-sec table.form-list tr td label.col-2 {
	float: left;
	display: block;
	width: calc((100% - 10px) / 2);
	margin-right: 10px;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
}
article#step section#form-sec table.form-list tr td label.col-2:nth-child(2n) {
	margin-right: 0;
}
article#step section#form-sec table.form-list tr td label.col-2:nth-child(n+3) {
	margin-top: 10px;
}
article#step section#form-sec table.form-list tr td label.col-3 {
	float: left;
	display: block;
	width: calc((100% - 20px) / 3);
	margin-right: 10px;
	
	box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
}
article#step section#form-sec table.form-list tr td label.col-3:nth-child(3n) {
	margin-right: 0;
}
article#step section#form-sec table.form-list tr td label.col-3:nth-child(n+4) {
	margin-top: 10px;
}
article#step section#form-sec label {
	border-width: 2px !important;
	padding: 10px !important;
}
article#step section#form-sec input[type="submit"] {
	outline: none;
} */



/* =====================================================
▼ CONTENTS "STEP 1"
===================================================== */
/* article#step.step1 {}
article#step.step1 section#form-sec {} */



/* =====================================================
▼ CONTENTS "STEP 2"
===================================================== */
/* article#step.step2 {}
article#step.step2 section#form-sec {} */



/* =====================================================
▼ CONTENTS "STEP 3"
===================================================== */
/* article#step.step3 {}
article#step.step3 section#form-sec {} */



/* =====================================================
▼ CONTENTS "STEP RESULT"
===================================================== */
/* article#step.result {}
article#step.result section#form-sec {}
article#step.result section#form-sec p.price-txt {
	font-size: 300%;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	text-align: center;
	color: #006834;
	margin-bottom: 50px;
}
article#step.result section#form-sec p.price-txt span.marker {
	position: relative;
	background: linear-gradient(transparent 60%, #FCEE21 60%);
	padding: 10px 20px;
}
article#step.result section#form-sec p.price-txt span.big {
	font-size: 150%;
	line-height: 1.5em;
}
article#step.result section#form-sec p.price-txt span.count-txt {
	position: absolute;
	bottom: -15px;
	right: 0;
	font-size: 11px;
	line-height: 1em;
	color: #636E6F;
}
article#step.result section#form-sec p.attention-txt {
	font-size: 90%;
	line-height: 1.8em;
	text-align: center;
	color: #636E6F;
}
article#step.result section#form-sec div.result-dtl {
	margin-bottom: 50px;
}
article#step.result section#form-sec div.form-wrap {
	background-color: #FFF;
	padding: 50px;
} */



/* =====================================================
▼ CONTENTS "STEP THANKS"
===================================================== */
/* article#step.thanks {}
article#step.thanks section#thanks-sec {} */



/* =====================================================
▼ CONTENTS "STEP MIKANYU"
===================================================== */
/* article#step.mikanyu {} */














