@charset "utf-8";

.sp {
	display: none !important;
}


#menu-button {
	display: none;
}

#wrap {
	padding-top: 80px;
}
main {
	min-height: 100vh;
}


#about,
#flow,
#faq,
#contact
{
	scroll-margin-top: 40px;	
}


#wrap > header {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid #ddd;
	background: #fff;
}
#wrap > header .inner {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 0 16px;
}

#wrap > header .logo {
	width: 289px;
}
#wrap > header .logo img {
	width: 100%;
	height: auto;
}

#wrap > header #menu .extra,
#wrap > header #menu ul {
	display: flex;
	align-items: center;
}

#wrap > header .login a {
	box-sizing: border-box;
	display: flex;
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: flex-end;
	padding: 0 0 11px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: #44b156 url(../img/icon_login.svg) 50% 30% no-repeat;
	background-size: 24px auto;
	transition: all 300ms ease-out;
}
#wrap > header .login a:hover {
	opacity: 0.7;
}

#wrap > header #menu ul {
	margin-right: 40px;
}
#wrap > header li a {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	color: #000;
}
#wrap > header li + li {
	margin-left: 32px;
}
#wrap > header li a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -1px;
	background: #000;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
#wrap > header li a:hover::after {
	transform: scaleX(1);
}

/*
body.home #wrap > header li.about a::after,
body.plan #wrap > header li.plan a::after {
	transform: scaleX(1);
}
*/





#floting-menu {
	box-sizing: border-box;
	position: fixed;
	width: 80px;
	height: 484px;
	right: 0;
	top: calc(50% - 242px);
	z-index: 900;
	padding: 8px;
	border-radius: 10px 0 0 10px;
	background: #027FD9;
}
#floting-menu dt {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 18px 0 0 2px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 4px;
	writing-mode: vertical-rl; 
}
#floting-menu dd {
	margin: 26px 0 0;
}
#floting-menu dd li + li {
	margin-top: 8px;
}
#floting-menu dd li a {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 72px;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	border-radius: 8px 0 0 8px;
	transition: all 300ms ease-out;
	cursor: pointer;
}
#floting-menu dd li.tel a {
	height: 72px;
	color: #fff;
	background: #FF8027;
}
#floting-menu dd li.web a {
	height: 72px;
	background: #fff;
}
#floting-menu dd li.plan a {
	height: 165px;
	background: #fff;
}

#floting-menu dd li.tel a img {
	width: 27px;
	height: auto;
	margin-bottom: 6px;
}
#floting-menu dd li.web a img {
	width: 24px;
	height: auto;
	margin-bottom: 7px;
}
#floting-menu dd li.plan a img {
	width: 25px;
	height: auto;
	margin-bottom: 16px;
}

#floting-menu dd li.plan strong {
	letter-spacing: 4px;
	writing-mode: vertical-rl; 
}

#floting-menu dd li a:hover {
	opacity: 0.8;
}







#wrap > footer {
	position: relative;
	padding: 70px 0;
	color: #fff;
	background: #44B156;
}
#wrap > footer .inner {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
#wrap > footer a {
	color: #fff;
}
#wrap > footer a:hover {
	text-decoration: underline;
}
#wrap > footer ul {
	display: flex;
	justify-content: center;
}

#wrap > footer .menu li + li {
	margin-left: 65px;
}
#wrap > footer .menu a {
	font-size: 16px;
	font-weight: 700;
}

#wrap > footer .submenu {
	margin: 60px 0 0;
}
#wrap > footer .submenu li + li {
	margin-left: 40px;
}
#wrap > footer .submenu a {
	font-size: 14px;
}

#wrap > footer .logo {
	margin: 80px 0 0;
	text-align: center;
}
#wrap > footer .logo a {
	display: block;
	width: 423px;
	margin: 0 auto;
}
#wrap > footer .logo img {
	width: 100%;
	height: auto;
}
#wrap > footer .copyright {
	margin: 30px 0 0;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}


#scroll-top {
	position: fixed;;
	width: 74px;
	height: 74px;
	right: 40px;
	bottom: 40px;
	z-index: 999;
	transform: translateY(115px);
	transition: all 300ms ease-out;
}
#scroll-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 74px;
	height: 74px;
	border-radius: 37px;
	background: #fff;
	cursor: pointer;
}
#scroll-top a img {
	width: 20px;
	height: 12px;
	transition: all 300ms ease-out;
}
#scroll-top a:hover img {
	transform: translateY(-5px);
}
body.scrolled #scroll-top {
	transform: translateY(0px);
}






#banner {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px 0;
	background: #E3FBE7;
}
#banner a {
	display: block;
	width: 540px;
}
#banner img {
	width: 100%;
	height: auto;
}


#kv {
	min-height: 534px;
	background: url(../img/kv_pc.jpg?2), linear-gradient(to right, #f6fcff, #edf0f4);
	background-size: auto 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
#kv .inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 1180px;
	min-height: 534px;
	margin: 0 auto;
	padding: 0 40px;
}
#kv .inner img {
	width: 100%;
	height: auto;
}

#kv .sign {
	position: absolute;
	width: 82px;
	left: 51.5%;
	bottom: 50px;
}

#kv h1 {
	width: 472px;
}
#kv .promo {
	position: relative;
	width: 498px;
	left: -26px;
	margin: 25px 0 0;
}
#kv .note {
	width: 500px;
	margin: 25px 0 0;
	font-size: 11px;
	line-height: 2;
}


#top-contact {
	color: #fff;
	background: #3FB252;
}
#top-contact .inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1180px;
	min-height: 100px;
	margin: 0 auto;
	padding: 0 40px;
}
#top-contact .button {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 288px;
	height: 60px;
	padding: 0 0 4px 28px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: #FF8027 url(../img/icon_check_white.svg) left 25px top 50% no-repeat;
	background-size: 30px auto;
	border-radius: 30px;
}
#top-contact .tel {
	width: calc(100% - 288px - 30px);
}
#top-contact dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#top-contact dt a {
	display: inline-block;
	padding: 0 0 8px 70px;
	font-size: 64px;
	font-weight: 700;
	background: url(../img/icon_phone_large.svg) 0 45% no-repeat;
}
#top-contact dt a:hover {
	text-decoration: underline;
}
#top-contact dd {
	margin: 0 40px 0 30px;
	font-size: 20px;
	font-weight: 700;
}



.column .inner {
	box-sizing: border-box;
	max-width: 1180px;
	margin: 0 auto;
	padding: 80px 40px 100px;
}

.column h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.column h2 span {
	position: relative;
	display: inline-block;
}
.column h2 span::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	left: 0;
	bottom: 0;
	background: #000;
}
.column h2 span.keycolor,
.column h2 span em {
	color: #3FB252;
}
.column h2 span.keycolor::after {
}


.column h3 {
	text-align: center;
}
.column h3.deco {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
}
.column h3.deco span {
	position: relative;
	display: inline-block;
}
.column h3.deco span::before,
.column h3.deco span::after {
	position: absolute;
	content: "";
	display: block;
	width: 4px;
	height: 45px;
	bottom: -10px;
	background: #000;
}
.column h3.deco span::before {
	left: -35px;
	transform: rotate(-30deg);
}
.column h3.deco span::after {
	right: -35px;
	transform: rotate(30deg);
}


.column.accent {
	background: #E3FBE7;
}



a.button-large {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 64px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: #3FB252;
	border-radius: 8px;
	transition: all 300ms ease-out;
}
a.button-large::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 17px;
	right: 20px;
	top: calc(50% - 9px);
	background: url(../img/arrow.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
a.button-large:hover {
	opacity: 0.7;
}



a.button-blue {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 64px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: #027FD9;
	border-radius: 8px;
	transition: all 300ms ease-out;
}
a.button-blue:hover {
	opacity: 0.7;
}







#about h2 + h3 {
	margin-top: 64px;
}
#about .lead {
	margin: 50px 0 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}
#about .figure {
	width: 800px;
	display: flex;
	justify-content: space-between;
	margin: 40px auto 0;
	background: url(../img/tri.svg) 50% 103px no-repeat;
	background-size: 47px auto;
}
#about .figure .pict {
	text-align: center;
}
#about .figure .pict span {
	display: block;
	width: 352px;
	text-align: center;
}
#about .figure .pict span img {
	width: 244px;
	height: auto;
}
#about .figure .pict:nth-child(1) span img {
	border-radius: 10px;
	overflow: hidden;
}
#about .figure .pict .text {
	margin: 20px 0 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}
#about .figure .pict:nth-child(2) .text {
	color: #FF8027;
}
#about .figure .pict .note {
	margin: 20px 0 0;
	font-size: 14px;
}

#about .figure + h3 {
	margin-top: 64px;
}

#about .zero {
	box-sizing: border-box;
	width: 640px;
	margin: 60px auto 0;
	padding: 30px 44px 30px 36px;
	border: 5px solid #3FB252;
}
#about .zero img {
	width: 100%;
	height: auto;
}
#about .zero .note {
	margin: 24px 0 0;
	font-size: 10px;
	line-height: 2;
}
#about .zero + .note {
	max-width: 900px;
	margin: 64px auto 0;
	font-size: 14px;
	line-height: 2;
}







#value {
}
#value .figure {
	display: flex;
	justify-content: space-between;
	margin: 50px auto 0;
}
#value .feature {
	box-sizing: border-box;
	position: relative;
	width: calc((100% - 76px) / 3);
	padding: 26px 26px 26px;
	background: #fff;
	border-radius: 8px;
}
#value .feature::after {
	position: absolute;
	content: "";
	display: block;
	width: 53px;
	height: 53px;
	left: -16px;
	top: -16px;
	background: url(../img/checkbox.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#value .feature dl {
	height: 110px;
}
#value .feature dt {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	color: #FF8027;
}
#value .feature dd {
	margin: 15px 0 0;
	font-size: 15px;
	line-height: 1.8;
}
#value .feature strong {
	display: block;
	font-weight: 500;
	text-align: right;
}
#value .feature span {
	display: block;
	margin: 5px 0 0;
}
#value .feature span img {
	width: 100%;
	height: auto;
}




#price {
}
#price .box {
	box-sizing: border-box;
	width: 640px;
	margin: 50px auto 0;
	padding: 40px 30px 25px;
	border: 5px solid #3FB252;
}
#price .box .note {
	margin: 30px 0 0;
	font-size: 10px;
	line-height: 2;
}
#price .box dl {
	display: flex;
	align-items: flex-end;
	font-weight: 700;
	line-height: 28px;
	white-space: nowrap;
}
#price .box dt {
	font-size: 28px;
	color: #3FB252;
}
#price .box dt span {
	position: relative;
	font-size: 42px;
}
#price .box dt span i {
	position: absolute;
	left: 0;
	top: -14px;
	font-weight: 400;
}
#price .box dd {
	position: relative;
	font-size: 28px;
}
#price .box dd div {
	display: inline;
}
#price .box dd span {
	position: relative;
	top: 4px;
	margin-left: 4px;
	font-size: 100px;
}
#price .box dd i {
	position: absolute;
	font-size: 20px;
	font-weight: 400;
	right: 3px;
}
#price .box dd span,
#price .box dd b,
#price .box dd i {
	color: #3FB252;
}


#price h3 {
	margin: 40px 0 0;
	white-space: nowrap;
}
#price h3 em {
	font-size: 24px;
}
#price h3 strong {
	margin-left: 10px;
	color: #FF8027;
}
#price h3 b {
	position: relative;
	top: -2px;
	margin-right: -10px;
	font-size: 20px;
	font-weight: 900;
	color: #FF8027;
	vertical-align: super;
}
#price .button {
	width: 550px;
	margin: 35px auto 0;
}
#price .inner > .note {
	margin: 40px 0 0;
	font-size: 16px;
	text-align: center;
}





#howmatch {
}
#howmatch .tab {
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: 40px auto 0;
}
#howmatch .tab a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 48px) / 3);
	height: 64px;
	font-size: 18px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #3FB252;
	border-radius: 8px;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#howmatch .tab a:hover {
	opacity: 0.7;
}

#howmatch .tab a.active {
	color: #fff;
	background: #3FB252;
}
#howmatch .figure {
	position: relative;
	margin: 20px 0 0;
	overflow: hidden;
}
#howmatch .type {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
#howmatch h3 {
	position: absolute;
	width: 900px;
	left: calc(50% - 450px);
	top: 0;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
#howmatch dl {
	display: flex;
	align-items: center;
	width: 760px;
	margin: 30px auto 0;
}
#howmatch dt {
	width: 300px;
	height: 240px;
	text-align: center;
}
#howmatch dt img {
	width: 240px;
	height: auto;
}
#howmatch dd {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 382px;
	min-height: 188px;
	padding: 0 0 10px 60px;
	font-size: 28px;
	font-weight: 700;
	line-height: 58px;
	background: url(../img/balloon_right.svg) 0 100% no-repeat;
}
#howmatch dd em {
	margin-right: 5px;
	color: #FF8027;
}
#howmatch dd strong  {
	position: relative;
	top: 4px;
	margin: 0 3px;
	font-size: 82px;
	font-weight: 600;
}
#howmatch dd span  {
	font-size: 14px;
	font-weight: 400;
}
#howmatch .text {
	width: 900px;
	margin: 20px auto 0;
	font-size: 14px;
	line-height: 2;
}

#howmatch .type {
	visibility: hidden;
	opacity: 0;
	transition: all 300ms ease-out;
}
#howmatch .type.active {
	opacity: 1;
	visibility: visible;
	transition-delay: 300ms;
}








#troubleless {
}
#troubleless .figure {
	width: 760px;
	margin: 50px auto 0;
}
#troubleless .figure img {
	width: 100%;
	height: auto;
}
#troubleless .text {
	margin: 40px 0 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}
#troubleless .text strong {
	color: #FF8027;
}





#cancelable {
}
#cancelable .text {
	margin: 50px 0 0;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
#cancelable .text strong {
	font-weight: 700;
	color: #FF8027;
}
#cancelable .figure {
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: 50px auto 0;
}
#cancelable .point {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 430px;
	height: 126px;
	background: #fff;
	border-radius: 10px;
}
#cancelable .point::after {
	position: absolute;
	content: "";
	display: block;
	width: 53px;
	height: 53px;
	left: -16px;
	top: -16px;
	background: url(../img/checkbox.svg) 0 0 no-repeat;
	background-size: 100% auto;
}

#cancelable .point span {
	font-size: 26px;
	font-weight: 700;
	line-height: 26px;
}
#cancelable .point strong {
	position: relative;
	font-weight: 600;
	color: #FF8027;
}
#cancelable .point:nth-child(1) {
	padding-top: 8px;
}
#cancelable .point:nth-child(1) strong {
	font-size: 64px;
}
#cancelable .point:nth-child(2) strong {
	font-size: 90px;
	top: 5px;
	margin-left: 6px;
}
#cancelable .point .yen {
	font-size: 26px;
	margin-left: 2px;
}
#cancelable .point b {
	position: relative;
	font-weight: 600;
}
#cancelable .point i {
	position: absolute;
	left: 16px;
	top: -6px;
	font-size: 35px;
	letter-spacing: 30px;
}
#cancelable .note {
	margin: 64px 0 0;
	font-size: 14px;
	line-height: 2;
	text-align: center;
}







#flow {
}
#flow .text {
	margin: 50px 0 0;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
#flow .text strong {
	color: #FF8027;
}
#flow .figure {
	display: flex;
	justify-content: space-between;
	margin: 50px auto 0;
}
#flow .step {
	box-sizing: border-box;
	position: relative;
	width: calc((100% - 76px) / 3);
	padding: 24px 30px 30px;
	border: 5px solid #3FB252;
}
#flow .step + .step::before {
	position: absolute;
	content: "";
	display: block;
	width: 26px;
	height: 31px;
	left: -36px;
	top: calc(50% - 15px);
	background: url(../img/tri.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#flow .step dt {
	padding-left: 30px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #FF8027;
}
#flow .step dt em {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	left: 16px;
	top: 18px;
	padding: 0 0 4px 2px;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	background: #3FB252;
	border-radius: 24px;
}
#flow .step dt + dd {
	width: 124px;
	height: 140px;
	margin: 25px auto;
}
#flow .step dt + dd img {
	width: 100%;
	height: auto;
}
#flow .step dd + dd {
	font-size: 15px;
	line-height: 1.8;
}

#flow .contact {
	width: 900px;
	margin: 50px auto 0;	
}
#flow .contact > dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 660px;
	margin: 0 auto;
}
#flow .contact > dl dt {
	box-sizing: border-box;
	width: 386px;
	min-height: 151px;
	padding: 10px 0 0 25px;
	font-size: 24px;
	font-weight: 500;
	line-height: 38px;
	background: url(../img/balloon_left.svg) 0 100% no-repeat;
	background-size: 100% auto;
}
#flow .contact > dl dt strong {
	position: relative;
	padding-left: 2px;
	font-size: 42px;
	font-weight: 700;
	color: #FF8027;
}
#flow .contact > dl dt i {
	font-size: 24px;
	font-weight: 400;
}
#flow .contact > dl dt b {
	position: absolute;
	right: 8px;
	top: -2px;
	font-size: 16px;
	font-weight: 900;
}
#flow .contact > dl dd {
	width: 250px;
	text-align: center;
}
#flow .contact > dl dd img {
	width: 100%;
	height: auto;
}

#flow .tel {
	margin: 50px 0 0;
	text-align: center;
}
#flow .tel dt {
	position: relative;
	display: block;
}
#flow .tel a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 108px;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	background: #FF8027;
	border-radius: 8px;
	transition: all 300ms ease-out;
}
#flow .tel a::before {
	position: absolute;
	content: "";
	display: inline-block;
	width: 52px;
	height: 52px;
	left: 28px;
	top: calc(50% - 26px);
	margin-right: 10px;
	background: url(../img/icon_phone.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#flow .tel a::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 17px;
	right: 24px;
	top: calc(50% - 9px);
	background: url(../img/arrow.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#flow .tel a:hover {
	opacity: 0.8;
}

#flow .tel dd {
	margin: 15px 0 0;
	font-size: 24px;
	font-weight: 500;
}

#flow .note {
	margin: 40px 0 0;
	font-size: 16px;
	text-align: center;
}



#case .lead {
	margin: 60px 0 0;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
}
#case .lead strong {
	font-weight: 700;
	color: #FF8027;
}

#case .figure1 {
	position: relative;
	width: 900px;
	margin: 40px auto 0;
}
#case .figure2,
#case .figure3 {
	box-sizing: border-box;
	position: relative;
	width: 900px;
	margin: 40px auto 0;
	padding: 40px;
	background: #fff;
	border-radius: 8px;
}

#case .number {
	position: absolute;
	width: 96px;
	height: 92px;
	left: -30px;
	top: -132px;
}
#case .number img {
	width: 100%;
	height: auto;
}

#case h3 {
	margin-top: 70px;
}
#case .lead h3 {
	margin-top: 50px;
}

#case .text {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}
#case .text strong {
	font-weight: 700;
	color: #FF8027;
}


#case .figure1 {
	display: flex;
	justify-content: space-between;
}
#case .figure1 .pict {
	box-sizing: border-box;
	width: calc(50% - 20px);
	padding: 35px 26px 25px;
	background: #fff;
	border-radius: 8px;
}
#case .figure1 dt {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #FF8027;
}
#case .figure1 dd {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
#case .figure1 dd strong {
	position: relative;
	top: 3px;
	margin: 0 8px;
	font-size: 60px;
	color: #3FB252;
}
#case .figure1 dd strong em {
	font-size: 40px;
}
#case .figure1 dd .note {
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}

#case .figure1 dd.image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0 0;
	height: 125px;
	text-align: center;
}
#case .figure1 .pict:nth-child(2) dd img {
	width: auto;
	height: 105px;
}
#case .figure1 .pict:nth-child(3) dd img {
	width: auto;
	height: 125px;
}

#case .figure1 .pict:nth-child(2) dd + dd {
	margin-left: -10px;
	margin-right: -10px;
}
#case .figure1 .pict:nth-child(3) dt + dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	vertical-align: baseline;
}

/*
#case .figure1 .pict:nth-child(3) dt + dd {
	margin-top: -20px;
}
#case .figure1 .pict:nth-child(3) dd + dd {
	margin: 20px 0 0;
}
*/
#case .figure1 .pict:nth-child(3) dt + dd b {
	display: block;
}






#case .figure2 .box {
	width: 480px;
	margin: 30px auto 0;
}
#case .figure2 .box span {
	display: block;
}
#case .figure2 .box span img {
	width: 100%;
	height: auto;
}

#case .figure3 .box {
	display: flex;
	width: 714px;
	margin: 30px auto 0;
}
#case .figure3 .box span {
	display: block;
	width: calc(100% / 3);
}
#case .figure3 .box span img {
	width: 100%;
	height: auto;
}
#case .figure3 .button {
	width: 550px;
	margin: 40px auto 0;
}





#news .entry-list {
	width: 900px;
	margin: 50px auto 0;
	border-top: 1px solid #ccc;
}
#news .entry {
	border-bottom: 1px solid #ccc;
}
#news .entry a {
	box-sizing: border-box;
	display: flex;
	padding: 30px 80px 30px 32px;
	background: url(../img/arrow_green.svg) right 30px top 50% no-repeat;
	background-size: 12px auto;
	cursor: pointer;
}
#news .entry .date {
	position: relative;
	width: 140px;
	top: 2px;
	font-size: 18px;
	font-weight: 700;
	color: #999;
}
#news .entry .summary {
	width: calc(100% - 140px);
	font-size: 16px;
	line-height: 2;
	color: #000;
}
#news .entry a:hover .summary {
	text-decoration: underline;
}





#company .company-detail {
	width: 900px;
	margin: 50px auto 0;
	border-top: 1px solid #ccc;
}
#company .company-detail dl {
	box-sizing: border-box;
	display: flex;
	padding: 30px 35px;
	border-bottom: 1px solid #ccc;
}
#company .company-detail dt {
	position: relative;
	width: 175px;
	top: 2px;
	font-size: 18px;
	font-weight: 700;
}
#company .company-detail dd {
	width: calc(100% - 175px);
	font-size: 16px;
	line-height: 2;
}





#faq .faq-list {
	width: 900px;
	margin: 50px auto 0;
}
#faq .faq {
	box-sizing: border-box;
	padding: 32px 32px 0;
	background: #E3FBE7;
	border-radius: 8px;
}
#faq .faq + .faq {
	margin-top: 16px;
}
#faq .question {
}
#faq .question a {
	position: relative;
	display: block;
	padding: 0 0 33px 42px;
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
	cursor: pointer;
}
#faq .question a::before {
	position: absolute;
	content: "Q.";
	left: 5px;
	top: -8px;
	font-size: 24px;
	font-weight: 700;
}
#faq .question a::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 12px;
	right: 0;
	top: 12px;
	background: url(../img/arrow_down.svg) 0 0 no-repeat;
	background-size: 100% auto;
}

#faq .answer .extra {
	position: relative;
	padding: 30px 0 32px 42px;
	border-top: 1px solid #ccc;
}
#faq .answer .extra::before {
	position: absolute;
	content: "A.";
	left: 5px;
	top: 25px;
	font-size: 24px;
	font-weight: 700;
}
#faq .answer .extra p {
	font-size: 16px;
	line-height: 2;
}

#faq .answer {
	height: 0;
	overflow: hidden;
	transition: all 400ms ease-out;
}
#faq .question a::after {
	transition: all 400ms ease-out;
}
#faq .opened .question a::after {
	transform: rotate(180deg);
}
#faq .question a:hover {
	text-decoration: underline;
}
#faq .answer p + p {
	margin-top: 20px;
}





#contact h2 {
	position: relative;
	width: 900px;
	margin: 0 auto;
}
#contact h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 170px;
	height: 73px;
	left: 0;
	margin-top: 8px;
	background: url(../img/balloon_5min.svg) 0 0 no-repeat;
	background-size: 100% auto;
}

#contact .tel {
	margin: 50px 0 0;
	text-align: center;
}
#contact .tel dt {
	position: relative;
	width: 900px;
	margin: 0 auto;
}
#contact .tel a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 108px;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	background: #FF8027;
	border-radius: 8px;
	transition: all 300ms ease-out;
}
#contact .tel a::before {
	position: absolute;
	content: "";
	display: inline-block;
	width: 52px;
	height: 52px;
	left: 28px;
	top: calc(50% - 26px);
	margin-right: 10px;
	background: url(../img/icon_phone.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#contact .tel a::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 17px;
	right: 24px;
	top: calc(50% - 9px);
	background: url(../img/arrow.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#contact .tel a:hover {
	opacity: 0.8;
}

#contact .tel dd {
	margin: 20px 0 0;
	font-size: 24px;
	font-weight: 500;
}

#contact h3 {
	margin: 80px 0 0;
	white-space: nowrap;
}
#contact h3 em {
	margin-right: -20px;
	font-size: 24px;
}
#contact .button {
	display: flex;
	justify-content: center;
	width: 900px;
	margin: 50px auto 0;
}
#contact .button a {
	display: block;
	padding: 0 25px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	text-decoration: underline;
}
#contact .button a:hover {
	text-decoration: none;
}

/*
#contact .button .now::before {
	position: absolute;
	content: "";
	display: block;
	width: 26px;
	height: 35px;
	left: 19px;
	top: calc(50% - 18px);
	background: url(../img/icon_marker.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
#contact .button .future::before {
	position: absolute;
	content: "";
	display: block;
	width: 41px;
	height: 27px;
	left: 20px;
	top: calc(50% - 14px);
	background: url(../img/icon_track.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
*/








#plan .box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 840px;
	margin: 90px auto 0;
}

#plan .box .pict {
	width: 304px;
}
#plan .box .pict img {
	width: 100%;
	height: auto;
}

#plan .box .text {
	width: 475px;
	padding: 30px 0 0;
}
#plan .box dl {
	font-weight: 700;
	line-height: 28px;
	white-space: nowrap;
}
#plan .box dt {
	font-size: 40px;
}
#plan .box dt span {
	position: relative;
	margin-right: 4px;
	font-size: 58px;
	color: #3FB252;
}
#plan .box dt span i {
	position: absolute;
	left: 0;
	top: -14px;
	font-weight: 100;
}
#plan .box dd {
	position: relative;
	top: -22px;
	font-size: 40px;
}
#plan .box dd div {
	display: inline;
}
#plan .box dd span {
	position: relative;
	top: 4px;
	margin-left: 4px;
	font-size: 160px;
}
#plan .box dd b {
	font-size: 58px;
}
#plan .box dd span,
#plan .box dd b {
	color: #3FB252;
}
#plan .box .note {
	font-size: 14px;
	text-align: right;
}
#plan .text p {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.75;
}

#plan h3 {
	margin: 70px 0 0;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	color: #3FB252;
}
#plan .select {
	margin: 26px 0 0;
	font-size: 24px;
	text-align: center;
}
#plan .tab {
	width: 900px;
	margin: 26px auto 0;
}
#plan .tab .extra {
	display: flex;
	justify-content: space-between;
}
#plan .tab a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - (8px * 7)) / 8);
	height: 64px;
	font-size: 18px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #3FB252;
	border-radius: 8px;
	transition: all 300ms ease-out;
	cursor: pointer;
}
#plan .tab a.active {
	color: #fff;
	background: #3FB252;
}

#plan .price-list {
	position: relative;
	width: 900px;
	margin: 32px auto 0;
}
#plan .price-list .area {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	visibility: hidden;
}
#plan .price-list .area.active {
	visibility: visible;
}

#plan h4 {
	margin: 0 0 38px;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
#plan .price-list .table {
	border: 1px solid #3FB252;
}
#plan .price-list .table > dl + dl {
	border-top: 1px solid #3FB252;
}
#plan .price-list .table > dl {
	display: flex;
}
#plan .price-list .table > dl > dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #3FB252;
	background: #ECF7EE;
}
#plan .price-list .table > dl > dd {
	width: calc(100% - 350px);
}
#plan .price-list .table ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#plan .price-list .table ul + ul {
	border-top: 1px solid #3FB252;
}
#plan .price-list .table li {
	box-sizing: border-box;
	padding: 16px;
	font-size: 16px;
}
#plan .price-list .table li + li {
	border-left: 1px solid #3FB252;
}
#plan .price-list .table li:nth-child(1) {
	width: 40px;
}
#plan .price-list .table li:nth-child(2) {
	width: calc(100% - 40px - 190px);
	text-align: center;
}
#plan .price-list .table li:nth-child(3) {
	width: 190px;
	text-align: right;
	font-weight: 700;
	color: #808080;
}

#plan .price-list .table ul.focus li {
	font-weight: 700;
	color: #FF8027;
}

#plan .notice {
	width: 900px;
	margin: 32px auto 0;
}
#plan .notice li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 14px;
	line-height: 2;
}
#plan .notice li::before {
	content: "・";
	text-indent: 0;
}




#other-plan .logo {
	width: 331px;
	margin: 80px auto 0;
}
#other-plan .logo img {
	width: 100%;
	height: auto;
}
#other-plan .text {
	margin: 32px 0 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}
#other-plan .text strong {
	font-weight: 700;
	color: #FF8027;
}
#other-plan .more {
	margin: 44px 0 0;
	text-align: center;
}
#other-plan .more a {
	font-size: 24px;
	font-weight: 700;
	text-decoration: underline;
	color: #3FB252;
}
#other-plan .more a:hover {
	text-decoration: none;
}

#other-plan .box {
	box-sizing: border-box;
	width: 640px;
	margin: 70px auto 0;
	padding: 24px 24px 30px;
	background: #fff;
	border-radius: 8px;
}
#other-plan .box h3 {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
#other-plan .box h3 + dl {
	margin-top: 30px;
}
#other-plan .box dl + dl {
	margin-top: 30px;
}

#other-plan .box dl {
	text-align: center;
}
#other-plan .box dt {
	font-size: 24px;
	font-weight: 700;
	color: #44B156;
}
#other-plan .box dd {
	margin: 15px 0 0;
	font-size: 18px;
	line-height: 1.7;
}
#other-plan .box dd .note {
	margin-top: 8px;
	font-size: 14px;
}






























