@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@media (prefers-reduced-motion: no-preference) {
html:focus-within {
	scroll-behavior: smooth;
	}
}

* {
	box-sizing: border-box;
}

html {
	color: #333;
	font-family: "Roboto","Noto Sans JP",  sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	color: #009944;
	text-decoration: none;
	transition: .3s ease;
	}

a:hover {
	color: #44b0ff;
	}

img {
	display: block;
	width: 100%;
}

.sp {
	display: none;
	}

/* headerここから */
.header {
	display: none;
}
/* headerここまで */

/* footerここから */
footer {
	position: relative;
	display: block;
	padding: 100px 0 30px;
	text-align: center;
	background: #2E9F92;
}

footer .logo {
	width: 312.54px;
	height: 50px;
	margin: 0 auto 70px;
}

footer p {
	margin: 0 0 70px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
/* footerここまで */

/* mainここから */
main {
	position: relative;
	display: block;
}
/* mainここまで */

/* 共通ボタンここから */
a.bt {
	display: block;
	width: 120px;
	margin: 0 auto 20px;
	padding: 8px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #1B9FFF;
	border: 1px solid #1B9FFF;
	border-radius: 15px;
	transition: .3s ease;
}

a.bt:hover {
	color: #1B9FFF;
	background: #fff;
	border: 1px solid #1B9FFF;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	margin: 0;
	padding: 50px 4vw;
	background: #fff;
}
.bt_cv a {
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 28px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #009944;
	border: 1px solid #009944;
	border-radius: 50px;
	transition: .3s ease;
}
.bt_cv a:hover {
	color: #009944;
	background: #fff;
	border: 1px solid #009944;
}
/* CVボタンここまで */

.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 40px;
	width: 40px;
	background: #fff;
	border: solid 2px #009944;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
.pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #009944;
	border-right: 3px solid #009944;
	transform: translateY(20%) rotate(-45deg);
}



/* タブレットここから */
@media screen and (max-width: 1024px) {
}
/* タブレットここまで */



/* スマホここから */
@media screen and (max-width: 600px) {

.header {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 50px;
	z-index: +1;
	}

.hamburger-menu {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
	z-index: 99999;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 2px;
	background: #333;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: .5s;
}
.hamburger-menu__bar:first-child {
	top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
	top: 24px;
}
.hamburger-menu__bar:last-child {
	top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
	background: #fff;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: #009944;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	padding: 0;
	z-index: 9999;
}

.navigation__list {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation__list li {
	display: block;
	margin: 0;
	padding: 0;
	height: auto;
	border-bottom: solid 1px #ccc;
}

.navigation__list li a {
	display: block;
	color: #fff;
	background: none;
	font-size: 16px;
	font-weight: 400;
	padding: 24px 20px;
	transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
	.navigation__list li a:hover {
		color: #fff;
		background: #1B9FFF;
	}
}

.navigation__list li a i {
	display: inline;
	margin-right: 5px;
}

.subnav_list {
	display: block;
	position: relative;
	left: auto;
	top: auto;
	padding-bottom: 20px;
	opacity: 1;
}

.navigation__list-item:hover .subnav_list {
	top: 0px;
}

.subnav_list-item a {
	display: block;
	margin: 0;
	padding: 10px 24px;
	color: #1B9FFF;
	background: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
	transition: .3s ease;
}

footer {
	padding: 50px 0 20px;
}

footer ul {
	display: none;
}

footer p {
	margin: 0 0 50px;
	font-size: 14px;
	line-height: 2em;
}

footer p span {
	display: none;
}

.sp {
	display: inline;
	}

/* 共通ボタンここから */
a.bt {
	width: 200px;
	margin: 0 auto 40px;
	padding: 16px 0;
	font-size: 16px;
	border-radius: 30px;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	padding: 10vw 4vw;
}
.bt_cv a {
	width: 270px;
	padding: 18px 0;
	font-size: 4vw;
}
/* CVボタンここまで */

}
/* スマホここまで */





#mv {
	background: url("../img/mv_bg.jpg") center top no-repeat #fff100;
	background-size: auto 100%;
}
@media screen and (max-width: 600px) {
#mv {
	background: url("../img/mv_bg.jpg") center top 30px no-repeat #fff100;
	background-size: 150% auto;
	}
}
#mv .inner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 550px;
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width: 1024px) {
#mv .inner {
	height: 440px;
	}
}
@media screen and (max-width: 600px) {
#mv .inner {
	height: 480px;
	}
}
#mv h1 {
	position: absolute;
	left: 0px;
	top: 90px;
	display: block;
	width: 650px;
	margin: 0;
	padding: 0;
	z-index: +1;
}
@media screen and (max-width: 1024px) {
#mv h1 {
	top: 70px;
	left: 10px;
	width: 550px;
	}
}
@media screen and (max-width: 600px) {
#mv h1 {
	top: 70px;
	width: 96%;
	z-index: 0;
	}
}
#mv p {
	position: absolute;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
#mv img {
	display: block;
	width: 100%;
}
#mv .company_logo {
	position: absolute;
	left: 0px;
	top: 30px;
	width: 300px;
	height: 48px;
}
@media screen and (max-width: 1024px) {
#mv .company_logo {
	left: 20px;
	top: 20px;
	width: 200px;
	height: 32px;
	}
}
@media screen and (max-width: 600px) {
#mv .company_logo {
	left: 4vw;
	top: 4vw;
	}
}
#mv .package {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 410px;
}
@media screen and (max-width: 1024px) {
#mv .package {
	width: 330px;
	}
}
@media screen and (max-width: 600px) {
#mv .package {
	top: auto;
	bottom: 0px;
	width: 220px;
	}
}
#mv p.copy1 {
	left: 20px;
	top: 190px;
	width: 600px;
}
@media screen and (max-width: 1024px) {
#mv p.copy1 {
	left: 25px;
	top: 160px;
	width: 490px;
	}
}
@media screen and (max-width: 600px) {
#mv p.copy1 {
	top: 140px;
	width: 87%;
	}
}
#mv p.house {
	left: 20px;
	bottom: 20px;
	width: 240px;
}
@media screen and (max-width: 1024px) {
#mv p.house {
	width: 180px;
	}
}
@media screen and (max-width: 600px) {
#mv p.house {
	top: 310px;
	width: 120px;
	}
}
#mv p.point {
	left: 150px;
	bottom: 5px;
	width: 220px;
}
@media screen and (max-width: 1024px) {
#mv p.point {
	width: 180px;
	}
}
@media screen and (max-width: 600px) {
#mv p.point {
	left: 20px;
	width: 150px;
	}
}

#mv nav {
	padding: 20px 0;
	background: rgba(255,255,255,.5);
}
#mv nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#mv nav ul li {
	display: block;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 600px) {
#mv nav ul li {
	min-width: 45%;
	}
}
#mv nav ul li a {
	display: block;
	margin: 0;
	padding: 10px 20px;
	color: #333;
	font-size: 16px;
	text-align: center;
	background: #fff;
	border: 2px solid #FFB700;
	border-radius: 30px;
}
@media screen and (max-width: 600px) {
#mv nav ul li a {
	font-size: 4vw;
	}
}
#mv nav ul li a i {
	color: #FFB700;
}

#problem {
	padding: 50px 4vw;
	background: #4C4C4C;
	}
#problem h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#problem h2 {
	font-size: 5vw;
	}
}
#problem p {
	display: block;
	margin: 0;
	padding: 0 0 30px;
	color: #fff;
	line-height: 1.8em;
	text-align: center;
}
#problem div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#problem div h3 {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 20px;
	padding: 10px;
	color: #fff;
	background: #828282;
	border-radius: 5px;
	}
#problem div div {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	box-shadow: none;
	}
#problem div:nth-of-type(even) div {
	flex-direction: row-reverse;
	}
#problem div div p {
	display: block;
	width: 58%;
	margin: 0 0 .25em;
	padding: 0;
	color: #333;
	font-size: 16px;
	line-height: 2em;
	text-align: left;
	}
@media screen and (max-width: 600px) {
#problem div div p {
	width: 100%;
	font-size: 4vw;
	}
}
#problem div div p span {
	font-weight: 600;
	}
#problem div img {
	display: block;
	width: 40%;
	}
@media screen and (max-width: 600px) {
#problem div img {
	width: 100%;
	}
}

#problem div.problem5 .inner {
	width: 60%;
	margin: 0 auto;
	}
@media screen and (max-width: 600px) {
#problem div.problem5 .inner {
	width: 100%;
	}
#problem div.problem5 .inner p {
	width: 70%;
	margin: 0 auto;
	}
#problem div.problem5 .inner img {
	width: 70%;
	margin: 20px auto 0;
	}
}

#feature {
	padding: 50px 4vw;
	background: #FFF880;
	}
#feature h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#feature h2 {
	font-size: 5vw;
	}
}
#feature p {
	display: block;
	margin: 0 0 2em;
	padding: 0;
	color: #333;
	line-height: 1.8em;
	text-align: center;
}
#feature div.feature1,
#feature div.feature2,
#feature div.feature3 {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#feature div h3 {
	position: relative;
	display: block;
	margin: 0 0 20px;
	background: #FFE500;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	}
#feature div img {
	display: block;
	}
@media screen and (max-width: 600px) {
#feature div img {
	width: 100%;
	}
}
#feature div .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
#feature div ul {
	display: block;
	width: 50%;
	margin: 0;
	padding: 10px 20px 0;
	}
@media screen and (max-width: 600px) {
#feature div ul {
	width: 100%;
	padding: 0 0 10px 10px;
	}
}
#feature div ul li {
	display: block;
	margin: 0;
	padding: 0 0 .5em 1em;
	text-indent: -1em;
	line-height: 1.5em;
	}
@media screen and (max-width: 600px) {
#feature div ul li {
	}
}
#feature div .inner img {
	width: 50%;
	}
@media screen and (max-width: 600px) {
#feature div .inner img {
	width: 100%;
	}
}
#feature div.feature3 img {
	width: 70%;
	margin: 0 auto;
	}
@media screen and (max-width: 600px) {
#feature div.feature3 img {
	width: 100%;
	}
}

#device {
	padding: 50px 4vw;
	background: #FFE500;
	}
#device h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#device h2 {
	font-size: 5vw;
	}
}
#device div {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	background: #fff;
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#device img {
	display: block;
	}
#device img.device1 {
	width: 49%;
	margin-bottom: 10px;
	}
@media screen and (max-width: 600px) {
#device img.device1 {
	width: 100%;
	}
}
#device img.device2 {
	width: 49%;
	margin-bottom: 10px;
	}
@media screen and (max-width: 600px) {
#device img.device2 {
	width: 100%;
	}
}
#device img.device3 {
	width: 69%;
	}
@media screen and (max-width: 600px) {
#device img.device3 {
	width: 100%;
	margin-bottom: 10px;
	}
}
#device img.device4 {
	width: 30%;
	margin-top: auto;
	}
@media screen and (max-width: 600px) {
#device img.device4 {
	width: 70%;
	margin: 0 auto;
	}
}

#spec {
	padding: 50px 4vw;
	background: #FFF880;
	}
#spec h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#spec h2 {
	font-size: 5vw;
	}
}
#spec div.package {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto 30px;
	}
#spec div.box img {
	display: block;
	}
#spec table {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	background: #FFE500;
	border: 0;
	border-collapse: collapse;
	}
#spec tr:nth-child(even) {
	background: #fff;
	}
#spec table th,
#spec table td {
	padding: 20px;
	font-size: 16px;
	line-height: 1.8em;
	}

#spec table th {
	display: block;
	white-space: nowrap;
	}

#spec table th span {
	display: block;
	font-size: 12px;
	font-weight: 300;
	}

#spec table td span.notice {
	font-size:  .7em;
	}

#spec table td ul {
	display: block;
	margin: 0;
	padding: 0;
	}

#spec table td ul li {
	display: block;
	margin: 0;
	padding: 0;
	}

#spec table td ul li::before {
	color: #FFE500;
	content: "●";
	text-indent: -1em;
	}

#download {
	padding: 50px 4vw;
	background: #FFE500;
}
#download h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#download h2 {
	font-size: 5vw;
	}
}
#download p {
	display: block;
	margin: 0 0 30px;
	padding: 0;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 600px) {
#download p {
	font-size: 4vw;
	line-height: 1.8em;
	}
}
#download div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
}
#download div a {
	display: block;
	width: 45%;
}
#download div img {
	display: block;
	width: 100%;
	box-shadow: 0 3px 5px rgba(0,0,0,.8);
}


#pagetitle {
	margin: 0;
	padding: 0;
	background: url("../img/mv_bg.jpg") center center no-repeat;
	background-size: cover;
	}
#pagetitle div {
	position: relative;
	width: 100%;
	padding: 70px 0;
	text-align: center;
	background: rgba(255,255,255,.7);
	}
@media screen and (max-width: 600px) {
#pagetitle div {
	padding: 80px 0 30px;
	}
}
#pagetitle h1 {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 32px;
	line-height: 1em;
	letter-spacing: .1em;
	}
@media screen and (max-width: 600px) {
#pagetitle h1 {
	font-size: 6vw;
	}
}
#pagetitle img {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 200px;
	}
@media screen and (max-width: 600px) {
#pagetitle img {
	width: 150px;
	}
}


#case {
	padding: 50px 4vw;
	background: #FEFFEA;
	}
#case h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#case h2 {
	font-size: 5vw;
	}
}
#case p.intro {
	display: block;
	margin: 0 0 2em;
	text-align: center;
	}
#case div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#case div h3 {
	position: relative;
	display: block;
	margin: 0 0 20px;
	color: #fff;
	background: #2E9F92;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	}
#case div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	height: 100%;
	padding: 10px;
	text-align: center;
	background: #007DC5;
	border-radius: 10px 0 0 10px;
	}
#case div div {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	box-shadow: none;
	}
#case div div p {
	display: block;
	margin: 0 0 20px;
	padding: 0;
	width: 100%;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width: 600px) {
#case div div p {
	margin-bottom: .5rem;
	font-size: 4vw;
	}
}
#case div div .notice {
	font-size: 12px;
	}
@media screen and (max-width: 600px) {
#case div div .notice {
	font-size: 3vw;
	}
}
#case div img {
	display: block;
	width: 100%;
	}
#case div p img {
	width: 100%;
	}
#case div div p a {
	position: relative;
	display: block;
	width: 350px;
	margin: 20px 0 0 0;
	padding: 5px 10px 10px 50px;
	color: #fff;
	font-size: 20px;
	line-height: 1em;
	background: #009F41;
	border: 2px solid #009F41;
	border-radius: 30px;
	transition: .3s ease;
	}
@media screen and (max-width: 600px) {
#case div div p a {
	width: 300px;
	margin: 20px auto;
	font-size: 4vw;
	}
}
#case div div p a:hover {
	color: #009F41;
	background: #fff;
	border: 2px solid #009F41;
	}
#case div div p a span {
	display: block;
	font-size: 10px;
	}
#case div div p a i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	font-size: 30px;
	}


#howto {
	padding: 50px 4vw;
	background: #FEFFEA;
	}
#howto h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#howto h2 {
	font-size: 5vw;
	}
}
#howto h3 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#howto h3 {
	font-size: 5vw;
	}
}
#howto p {
	display: block;
	margin: 0 0 2em;
	line-height: 1.8em;
	text-align: center;
	}
#howto table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	font-size: 16px;
	line-height: 1.5em;
	text-align: center;
	border-collapse: collapse;
	border: 1px solid #333;
	background: #fff;
}
#howto th {
	padding: 10px;
	color: #fff;
	background: #009944;
	border: 1px solid #333;
}
#howto td {
	padding: 10px;
	border: 1px solid #333;
}


#faq {
	padding: 50px 4vw;
	background: #fff;
	}
#faq h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#faq h2 {
	font-size: 5vw;
	}
}
#faq h3 {
	display: block;
	margin: 0;
	padding: 50px 0 20px;
	color: #333;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#howto h3 {
	font-size: 5vw;
	}
}
#faq .checkbox {
	display: none;
}
#faq div {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 10px;
}
#faq dl {
	display: block;
	margin: 0;
	padding: 0;
}
#faq dt {
	color: #fff;
	background-color: #559B0B;
	border-radius: 10px 10px;
}
#faq dt label {
	position: relative;
	display: block;
	padding: 10px 40px;
	line-height: 1.5em;
	cursor: pointer;
}
#faq dt label::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	content: 'Q';
	color: #fff;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
#faq dt label::after {
	content:'';
	display: block;
	border-left:7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	transition:.4s .4s;
}
#faq dd {
	position: relative;
	height: 0;
	transition:.4s;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0 20px 0 40px;
	font-size: 16px;
	line-height: 1.8em;
	background: #fff;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#faq .checkbox:checked ~ dl dd::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	content: 'A';
	color: #559B0B;
	text-align: center;
	opacity: 0;
	transition: .4s .4s;
}
#faq .checkbox:checked ~ dl dt {
	border-radius: 10px 10px 0 0;
}
#faq .checkbox:checked ~ dl dt label::before {
	border-radius: 10px 0 0 0;
}
#faq .checkbox:checked ~ dl dt label::after {
	transform: translate(0,-50%) rotate(-180deg);  
}
#faq .checkbox:checked ~ dl dd {
	height: auto;
	padding: 10px 20px 10px 40px;
}
#faq .checkbox:checked ~ dl dd::before {
	opacity: 1;
}


#column {
	padding: 50px 4vw;
	background: #FEFFEA;
	}
#column h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#column h2 {
	font-size: 5vw;
	}
}
#column img {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 2em;
	}
#column div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#column div h3 {
	position: relative;
	display: block;
	margin: 0 0 20px;
	padding: 10px;
	color: #fff;
	background: #019C41;
	width: 100%;
	border-radius: 5px;
	}
#column div p {
	display: block;
	margin: 0 0 20px;
	padding: 0;
	width: 100%;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width: 600px) {
#column div div p {
	width: 100%;
	margin-bottom: .5rem;
	font-size: 4vw;
	}
}
#column div img {
	display: block;
	width: 100%;
	}
@media screen and (max-width: 600px) {
#column div img {
	width: 100%;
	}
}
#column div p img {
	width: 100%;
	}
#column div div p a {
	position: relative;
	display: block;
	width: 350px;
	margin: 20px 0 0 0;
	padding: 5px 10px 10px 50px;
	color: #fff;
	font-size: 20px;
	line-height: 1em;
	background: #009F41;
	border: 2px solid #009F41;
	border-radius: 30px;
	transition: .3s ease;
	}
@media screen and (max-width: 600px) {
#column div div p a {
	width: 300px;
	margin: 20px auto;
	font-size: 4vw;
	}
}
#column div div p a:hover {
	color: #009F41;
	background: #fff;
	border: 2px solid #009F41;
	}
#column div div p a span {
	display: block;
	font-size: 10px;
	}
#column div div p a i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	font-size: 30px;
	}
