@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@font-face {
	font-family: 'DINEngschriftStd';
	src: url("../fonts/DINEngschriftStd.eot");
	src: url("../fonts/DINEngschriftStd.eot?") format('embedded-opentype'),
	     url("../fonts/DINEngschriftStd.woff") format('woff'),
	     url('../fonts/DINEngschriftStd.otf') format('opentype');
}

/* ------------------------------
    reset
------------------------------ */

html {
	font-size: 62.5%;
	overflow-y: scroll;
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
	html {
		font-size: calc(100vw * 10 / 1200);
	}
}
@media screen and (max-width : 768px) {
	html {
		font-size: 2.2vw;
	}
}
*, *::before, *::after {
	box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP',メイリオ,Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	word-wrap : break-word;
	overflow-wrap : break-word;
	-webkit-text-size-adjust: 100%;
}
input, button, textarea, select  {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}
select::-ms-expand {
	display: none;
}
button:hover {
	cursor: pointer;
}
a {
	color: #000;
	text-decoration: none;
	transition: opacity 0.3s ease;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:hover {
	opacity: .6;
	cursor: pointer;
}
img, object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
.DINEngschriftStd {
	font-family: 'DINEngschriftStd';
}

/* ------------------------------
    base
------------------------------ */

body {
	color: #000;
	font-size: 1.0rem;
	text-align: left;
}
section {
	position: relative;
}
main {
	display: block;
}
.wrap {
	width: 128rem;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.wrap.small {
	width: 100rem;
}
p,th,td,dt,dd,li,input,button,textarea {
	font-size: 1.6rem;
	line-height: 1.8;
}
.fade {
	transition: opacity 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.fade img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.fade:hover {
	opacity: .6;
	cursor: pointer;
}
.h-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%)translateZ(0);
}
.v-center {
	position: absolute;
	top: 50%;
	transform: translateY(-50%)translateZ(0);
}
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)translateZ(0);
}
.flex {
	display: flex;
	justify-content: space-between;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}
.tac {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.sup {
	font-size: 10px;
	vertical-align: top;
}
.preload *, .preload *::before, .preload *::after {
	transition: none !important;
}

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

	body {
		min-width: inherit;
	}
	.wrap,
	.wrap.small {
		width: 90%;
		padding: 0;
	}
	input,textarea,select,.select {
		font-size: 16px!important;
	}
	#container {
		overflow: hidden;
	}
	.sup {
		font-size: 1.2rem;
	}

}

/* ------------------------------
    header
------------------------------ */

#header {
	padding: 2rem;
}
#header .wrap {
	max-width: 1400px;
	width: 100%;
}
#header .flex {
	align-items: center;
}

#head_nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
	z-index: 100;
	transform: translateY(-150%);
	transition: transform .5s ease;
}
#head_nav.active {
	transform: translateY(0);
}
#head_nav .nav {
	display: flex;
}
#head_nav .nav .item {
	flex: 1;
}
#head_nav .nav .item a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .8em 0 1.3em;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
	white-space: nowrap;
	color: #598e35;
	background: #fff;
	border: 1px solid #598e35;
	position: relative;
	transition: color .3s ease, background-color .3s ease;
}
#head_nav .nav .item a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%)rotate(45deg);
	width: .5em;
	height: .5em;
	border-right: 3px solid #598e35;
	border-bottom: 3px solid #598e35;
}
#head_nav .nav .item a:hover {
	background: #598e35;
	color: #fff;
	opacity: 1;
}
#head_nav .nav .item a:hover::after {
	border-right-color: #fff;
	border-bottom-color: #fff;
}

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

	#head_nav .nav {
		flex-wrap: wrap;
	}
	#head_nav .nav .item {
		flex: 0 0 auto;
		width: calc( 100% / 3 );
	}
	#head_nav .nav .item:nth-child(4),
	#head_nav .nav .item:nth-child(5) {
		width: calc( 100% / 2 );
	}
	#head_nav .nav .item a {
		font-size: 1.2rem;
	}
	#head_nav .nav .item a::after {
		bottom: .5rem;
		border-right-width: 1px;
		border-bottom-width: 1px;
	}

}

/* ------------------------------
    footer
------------------------------ */

#footer {
	text-align: center;
	margin-top: 8rem;
}
#footer #pagetop a {
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	background: #fff;
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 100%;
	z-index: 100;
}
#footer #pagetop a img {
	margin-bottom: .3em;
	width: 1.7rem;
}
#footer #pagetop a span {
	color: #007c64;
	background: linear-gradient( to left, #90d40c, #20cc0c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: bold;
}
.ie #footer #pagetop a span {
	background: transparent;
}
#footer .btn_pagetop a {
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	margin: 0 auto 5rem;
	width: 48rem;
	height: 8.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	border-radius: 100px;
}
#footer .btn_pagetop a span {
	color: #007c64;
	background: linear-gradient( to left, #90d40c, #20cc0c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 2.6rem;
	font-weight: bold;
}
.ie #footer .btn_pagetop a span {
	background: transparent;
}
#footer .guide a {
	border-bottom: 2px solid #007c64;
	color: #007c64;
	padding-bottom: .2em;
	font-size: 2.2rem;
	font-weight: bold;
}
#footer .guide a img {
	width: auto;
	height: 1em;
	vertical-align: middle;
	margin-right: .3em;
}
#footer .copy {
	background: linear-gradient( 10deg, #57ac49, #007c64);
	color: #fff;
	padding: 1.5em 0;
	margin-top: 6rem;
}
#footer .num {
	background: #373737;
	color: #fff;
	padding: .5em 0;
	font-size: 1.2rem;
}

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

	#footer {
		padding-bottom: 60px;
	}
	#footer.no-padding {
		padding-bottom: 0;
	}
	#footer #pagetop a {
		right: 5vw;
		bottom: calc( 3vw + 60px );
		width: 6rem;
		height: 6rem;
	}
	#footer.no-padding #pagetop a {
		bottom: 5vw;
	}
	#footer #pagetop a img {
		width: 1rem;
	}
	#footer #pagetop a span {
		font-size: 1.2rem;
	}
	#footer .btn_pagetop a {
		box-shadow: 0 0 10px rgba(0, 0, 0, .3);
		width: 100%;
		height: 6rem;
	}
	#footer .btn_pagetop a span {
		font-size: 2.4rem;
	}
	#footer .guide a {
		border-bottom-width: 1px;
		font-size: 1.8rem;
	}
	#footer .copy {
		padding: 1em 0;
		font-size: 1.2rem;
		line-height: 1.4;
	}

}

.foot_btn {
	background: linear-gradient( to right, #f5a569, #f19a96);
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 5px;
}
.foot_btn .btn {
	flex: 1 1 auto;
	margin-right: 5px;
	padding-left: 50px;
}
.foot_btn .btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #f19a96;
	height: 50px;
	font-size: 20px;
	text-align: center;
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}
.foot_btn .btn a .ico {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1em;
}
.foot_btn .close {
	flex: 0 0 auto;
	border: 2px solid #fff;
	height: 50px;
	width: 50px;
	position: relative;
}
.foot_btn .close::before,
.foot_btn .close::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%)rotate(45deg);
	width: 25px;
	height: 2px;
	background: #fff;
}
.foot_btn .close::after {
	transform: translate(-50%,-50%)rotate(-45deg);
}

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

	.foot_btn .btn {
		padding-left: 0;
		opacity: 1 !important;
	}
	.foot_btn .btn a {
		max-width: 100%;
		opacity: 1 !important;
	}
	.foot_btn .close:hover {
		opacity: 1;
	}

}

.foot_btn._02 {
	background: #fff;
	height: 60px;
	justify-content: space-between;
	align-items: center;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}
.foot_btn._02.scrolled {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.foot_btn._02 .btn_grad {
	width: 48%;
	height: 40px;
}
.foot_btn._02 .btn_grad a {
	font-size: 10px;
	height: 100%;
}
.foot_btn._02 .btn_grad a::after {
	border-width: 1px;
	width: 6px;
	height: 6px;
	right: 15px;
}
.foot_btn._02 .btn_grad._01 a {
	font-size: 14px;
}
.foot_btn._02 .btn_grad._02 a {
	background: linear-gradient( to right, #ff9d32, #ff7022);
}
.foot_btn._02 .close {
	position: absolute;
	right: 5px;
	top: 0;
	transform: translateY(-50%);
	border: none;
	background: #000;
	width: 20px;
	height: 20px;
	border-radius: 100%;
}
.foot_btn._02 .close::before,
.foot_btn._02 .close::after {
	width: 10px;
	height: 2px;
}


/* ------------------------------
    index
------------------------------ */

/* common */

.btn_grad a {
	background: linear-gradient( to right, #8bad25, #598e35);
	color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10rem;
	width: 67rem;
	font-size: 3.0rem;
	line-height: 1.4;
	border-radius: 100px;
	position: relative;
	margin: 0 auto;
}
.btn_grad a::after {
	content: '';
	position: absolute;
	right: 3rem;
	top: 50%;
	transform: translateY(-50%)rotate(45deg);
	width: .5em;
	height: .5em;
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
}

.sec_ttl {
	text-align: center;
}
.sec_ttl .en {
	color: #598e35;
	font-size: 4.2rem;
	line-height: 1;
}
.sec_ttl .en span {
	display: inline-block;
	position: relative;
	padding: 0 5rem;
}
.sec_ttl .en span::before,
.sec_ttl .en span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 40%;
	height: 3px;
	width: 3rem;
	background: #598e35;
	transform: translateY(-50%);
}
.sec_ttl .en span::after {
	left: auto;
	right: 0;
}
.win .sec_ttl .en span::before,
.win .sec_ttl .en span::after {
	top: 50%;
}
.sec_ttl .ttl {
	font-size: 5.0rem;
	line-height: 1.2;
	font-weight: bold;
}
.sec_ttl .txt {
	font-size: 2.2rem;
	line-height: 2;
	margin-top: .5em;
}

.attention_wrap {
	position: relative;
	border: 4px solid #ef7a47;
	background: #fff;
	border-radius: 1rem;
}
.attention_wrap .ttl {
	background: linear-gradient( to right, #8bad25, #598e35);
	color: #fff;
	margin: -4px;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding: .5em;
	border-radius: 1rem;
	position: relative;
}
.attention_wrap .acd {
	cursor: pointer;
}
.attention_wrap .ttl .ico {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -.1em;
	margin-right: .3em;
}
.attention_wrap .ttl .btn {
	background: #fff;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
}
.attention_wrap .ttl .btn::before,
.attention_wrap .ttl .btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	height: 4px;
	width: 1.8rem;
	background: #e6002d;
	transition: transform .3s ease;
}
.attention_wrap .ttl .btn::after {
	transform: translate(-50%,-50%)rotate(90deg);
}
.attention_wrap .ttl.acd-open .btn::after {
	transform: translate(-50%,-50%)rotate(360deg);
}
.attention_wrap .ttl.acd-open {
	border-radius: 1rem 1rem 0 0;
}
.attention_wrap .detail {
	padding: 3rem;
}
.attention_wrap .detail .note {
	counter-reset: item;
}
.attention_wrap .detail .note li {
	padding-left: 3em;
	font-size: 1.4rem;
	position: relative;
}
.attention_wrap .detail .note li::before {
	position: absolute;
	left: 0;
	top: 0;
	counter-increment: item;
	content: '※'counter(item);
	width: 3em;
}
.attention_wrap .detail .note li + li {
	margin-top: .8em;
}
.attention_wrap .detail .dot li {
	padding-left: 1em;
	text-indent: -1rem;
	font-size: 1.4rem;
	position: relative;
}
.attention_wrap .detail .dot li::before {
	content: '・';
}

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

	.btn_grad a {
		width: 100%;
		max-width: 90vw;
		font-size: 2.4rem;
		height: 8rem;
	}
	.btn_grad a::after {
		border-width: 2px;
	}

	.sec_ttl .en {
		font-size: 2.6rem;
	}
	.sec_ttl .en span {
		padding: 0 3rem;
	}
	.sec_ttl .en span::before,
	.sec_ttl .en span::after {
		height: 2px;
		width: 1.5rem;
	}
	.sec_ttl .ttl {
		font-size: 4.0rem;
	}
	.sec_ttl .txt {
		font-size: 1.8rem;
	}

	.attention_wrap {
		border-width: 2px;
	}
	.attention_wrap .ttl {
		margin: -2px;
	}
	.attention_wrap .ttl .ico {
		position: absolute;
		left: 2rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.attention_wrap .ttl .btn::before,
	.attention_wrap .ttl .btn::after {
		height: 2px;
	}

}


/* sec_mv */

#sec_mv > .wrap {
	max-width: 1400px;
	width: 100%;
}
#sec_mv .txt {
	margin: -4rem 0 3rem;
}
#sec_mv .nav_wrap {
	background: #f4f4f4;
	padding: 6rem 0;
	margin-top: 6rem;
}
#sec_mv .nav_wrap .nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#sec_mv .nav_wrap .nav .item {
	width: calc( ( 100% - 8rem ) / 3 );
	margin-left: 3rem;
}
#sec_mv .nav_wrap .nav .item:nth-child(3n) {
	margin-left: 0;
}
#sec_mv .nav_wrap .nav .item:nth-child(n+3) {
	margin-top: 3rem;
}
#sec_mv .nav_wrap .nav .item:nth-child(1) {
	margin-left: 3rem;
}
#sec_mv .nav_wrap .nav .item:nth-child(2) {
	margin-right: 3rem;
}
#sec_mv .nav_wrap .nav .item a {
	background: #fff;
	color: #598e35;
	border: 2px solid #598e35;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 9.4rem;
	width: 100%;
	font-size: 2.4rem;
	line-height: 1.4;
	border-radius: 100px;
	position: relative;
	margin: 0 auto;
}
#sec_mv .nav_wrap .nav .item a::after {
	content: '';
	position: absolute;
	right: 3rem;
	top: 50%;
	transform: translateY(-50%)rotate(45deg);
	width: .5em;
	height: .5em;
	border-right: 3px solid #598e35;
	border-bottom: 3px solid #598e35;
}

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

	#sec_mv .nav_wrap .wrap {
		max-width: 1280px;
		width: 110rem;
	}
	#sec_mv .nav_wrap .nav .item a {
		height: 8rem;
		font-size: 2.0rem;
	}
	#sec_mv .nav_wrap .nav .item a::after {
		border-width: 2px;
	}

}

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

	#sec_mv .nav_wrap {
		padding: 2.5rem 0;
		margin-top: 2.5rem;
	}
	#sec_mv .nav_wrap .wrap {
		width: 90%;
	}
	#sec_mv .nav_wrap .nav .item {
		margin-left: 2rem;
	}
	#sec_mv .nav_wrap .nav .item:nth-child(n+3) {
		margin-top: 2rem;
	}
	#sec_mv .nav_wrap .nav .item {
		width: 27vw;
	}
	#sec_mv .nav_wrap .nav .item a {
		box-shadow: 0 0 5px rgba(0, 0, 0, .3);
		border-width: 1px;
		height: 8rem;
		border-radius: 1rem;
		font-size: 1.2rem;
		text-align: center;
		padding-bottom: .5em;
		font-weight: bold;
	}
	#sec_mv .nav_wrap .nav .item a::after {
		left: 50%;
		right: auto;
		top: auto;
		bottom: .8rem;
		transform: translateX(-50%)rotate(45deg);
		border-width: 1px;
	}

}


/* sec_point */

#sec_point {
	padding: 6rem 0;
}
#sec_point .flex {
	margin-top: 8rem;
	justify-content: center;
	flex-wrap: wrap;
}
#sec_point .flex .item {
	width: 48%;
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	padding: 4rem 2rem;
	position: relative;
	text-align: center;
	margin: 0 1rem;
}
#sec_point .flex .item .num {
	background: linear-gradient( to right, #8bad25, #598e35);
	color: #fff;
	font-size: 3.2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.8em;
	height: 1.8em;
	border-radius: 100%;
	padding-top: .2em;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
}
#sec_point .flex .item .txt {
	font-size: 1.9em;
	line-height: 1.6;
	font-weight: bold;
}
#sec_point .flex .item .txt strong {
	color: #e6002d;
	font-size: 3.2rem;
	border-bottom: 2px solid #e6002d;
}
#sec_point .flex .item .small {
	font-size: 1.3rem;
	margin-top: .5em;
}
#sec_point .flex .item .red {
	color: #e6002d;
	font-weight: bold;
}
#sec_point .flex .item.big {
	width: 100%;
	margin-top: 4rem;
	padding: 1rem;
}
#sec_point .flex .item.big .inner {
	background: #f4f4f4;
	padding: 4rem 2rem;
	position: relative;
}
#sec_point .flex .item.big .btn {
	background: linear-gradient( to right, #ee7034, #e7364a);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	position: absolute;
	right: 3rem;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
#sec_point .flex .item.big .btn span::before,
#sec_point .flex .item.big .btn span::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	height: 2px;
	width: 2rem;
	background: #fff;
	transition: transform .3s ease;
}
#sec_point .flex .item.big .btn span::after {
	transform: translate(-50%,-50%)rotate(90deg);
}
#sec_point .flex .item.big .btn.acd-open span::after {
	transform: translate(-50%,-50%)rotate(360deg);
}
#sec_point .flex .item.big .detail {
	padding: 0 3rem 2rem;
}
#sec_point .flex .item.big .flex {
	justify-content: space-between;
	flex-wrap: nowrap;
	margin-top: 4rem;
}
#sec_point .flex .item.big .flex > * {
	flex: 0 0 auto;
	width: 49%;
	border: 1px dashed #ccc;
	padding: 3rem 2rem;
	position: relative;
}
#sec_point .flex .item.big .flex .num {
	background: #e7364a;
	font-size: 2.0rem;
	border-radius: 100px;
	width: 4em;
	padding: 0;
}
#sec_point .flex .item.big .flex .ttl {
	font-weight: bold;
	font-size: 2.0rem;
	line-height: 1.6;
}
#sec_point .flex .item.big .flex .txt {
	font-size: 1.3rem;
}
#sec_point .flex .item.big .kome {
	margin-top: 2rem;
	text-align: center;
}
#sec_point .flex .item.big .kome li {
	font-size: 1.3rem;
	padding-left: 1em;
	text-indent: -1em;
}
#sec_point .flex .item.big .kome li::before {
	content: '※';
}

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

	#sec_point .flex {
		display: block;
		margin-top: 6rem;
	}
	#sec_point .flex .item {
		box-shadow: 0 0 5px rgba(0, 0, 0, .3);
		width: 100%;
		padding: 4rem 0 3rem;
		margin: 0;
	}
	#sec_point .flex .item + .item {
		margin-top: 5rem;
	}
	#sec_point .flex .item .num {
		font-size: 3.4rem;
		padding-top: .4em;
	}
	#sec_point .flex .item .txt {
		font-size: 2.0rem;
	}
	#sec_point .flex .item .txt strong {
		font-size: 3.0rem;
		border-bottom-width: 1px;
	}
	#sec_point .flex .item.big .btn {
		width: 4rem;
		height: 100%;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 0;
	}
	#sec_point .flex .item.big .btn span {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 3rem;
		height: 3rem;
		border-radius: 100%;
		background: #fff;
	}
	#sec_point .flex .item.big .btn span::before,
	#sec_point .flex .item.big .btn span::after {
		background: #e7364a;
	}
	#sec_point .flex .item.big .detail {
		padding: 0 1rem 2rem;
	}
	#sec_point .flex .item.big .flex {
		margin: 0;
	}
	#sec_point .flex .item.big .flex > * {
		width: 100%;
		margin-top: 3rem;
	}
	#sec_point .flex .item.big .flex .ttl,
	#sec_point .flex .item.big .flex .txt {
		/*display: inline-block;*/
		/*text-align: left;*/
	}
	#sec_point .flex .item.big .kome {
		text-align: left;
	}

}



/* sec_coverage */

#sec_coverage {
	background: #f4f4f4;
	padding: 6rem 0;
}
#sec_coverage .note_wrap {
	margin: 4rem auto;
}
#sec_coverage .note_wrap .red {
	color: #e6002d;
}
#sec_coverage .note_wrap .note li {
	margin: .5em 0;
	padding-left: 2em;
	text-indent: -2em;
}
#sec_coverage .note_wrap .note li::before {
	content: '●';
	margin-right: 1em;
}
#sec_coverage .note_wrap .note li ul li {
	font-size: 1.4rem;
	margin: 0;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#sec_coverage .note_wrap .note li ul li::before {
	content: '※';
	margin-right: .5em;
}
#sec_coverage .note_wrap .acd {
	background: #fff;
	border: 1px solid #598e35;
	color: #598e35;
	text-align: center;
	position: relative;
	margin: 1em 0;
	padding: .5em;
}
#sec_coverage .note_wrap .acd::before,
#sec_coverage .note_wrap .acd::after {
	content: '';
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	width: 1.5rem;
	background: #598e35;
	transition: transform .3s ease;
}
#sec_coverage .note_wrap .acd::after {
	transform: translateY(-50%)rotate(90deg);
}
#sec_coverage .note_wrap .acd.acd-open::after {
	transform: translateY(-50%)rotate(360deg);
}
#sec_coverage .pict_wrap .box {
	margin-top: 4rem;
}
#sec_coverage .pict_wrap .box .sttl {
	background: #fff;
	width: 49rem;
	text-align: center;
	position: relative;
	border-radius: 3rem 3rem 0 0;
	margin: 0 auto;
	padding: .5em 0 0;
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
#sec_coverage .pict_wrap .box .sttl::after {
	content: '';
	position: absolute;
	top: 99%;
	left: 0;
	height: 1rem;
	width: 100%;
	background: #fff;
}
#sec_coverage .pict_wrap .box .bg {
	background: #fff;
	padding: 4rem;
	margin-bottom: 1rem;
	border-radius: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
#sec_coverage .tokuyaku_wrap {
	margin-top: 8rem;
}
#sec_coverage .tokuyaku_wrap .ttl_wrap {
	background: #fff;
	width: 49rem;
	text-align: center;
	position: relative;
	border-radius: 1rem 1rem 0 0;
	margin: 0 auto;
}
#sec_coverage .tokuyaku_wrap .ttl_wrap .ttl {
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
	padding-top: .5em;
}
#sec_coverage .tokuyaku_wrap .ttl_wrap .check {
	background: linear-gradient( to right, #b2d216, #90c31f);
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	padding-top: .3em;
	width: 6.8rem;
	height: 6.8rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
#sec_coverage .tokuyaku_wrap .detail {
	background: #fff;
	padding: 3rem;
}
#sec_coverage .tokuyaku_wrap .detail .ttl {
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 4rem;
}
#sec_coverage .tokuyaku_wrap .detail .maru li {
	padding-left: 1em;
	text-indent: -1em;
}
#sec_coverage .tokuyaku_wrap .detail .maru li::before {
	content: '●';
}
#sec_coverage .tokuyaku_wrap .detail .box {
	text-align: center;
	border: 2px solid #50a108;
	padding: 3rem;
	position: relative;
	margin-top: 5rem;
}
#sec_coverage .tokuyaku_wrap .detail .box .anchor {
	position: absolute;
	top: -5rem;
	left: 0;
}
#sec_coverage .tokuyaku_wrap .detail .box .sttl {
	background: #fff;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	padding: 0 1em;
	font-size: 2.6rem;
	line-height: 1.4;
	font-weight: bold;
	white-space: nowrap;
}
#sec_coverage .tokuyaku_wrap .detail .box .txt {
	height: 100%;
	text-align: left;
	line-height: 2.2;
}
#sec_coverage .tokuyaku_wrap .detail .box .txt .small{
	font-size: 1.2rem;
}
#sec_coverage .tokuyaku_wrap .detail .box .kome {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.2rem;
	text-align: left;
}
#sec_coverage .tokuyaku_wrap .detail hr {
	border: none;
	margin: 4rem -3rem 0;
}

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

	#sec_coverage .note_wrap .acd {
		font-size: 1.8rem;
		padding: .5em;
	}
	#sec_coverage .pict_wrap .box .sttl {
		width: 80%;
		border-radius: 2rem 2rem 0 0;
	}
	#sec_coverage .pict_wrap .box .bg {
		padding: 3rem 2rem;
	}
	#sec_coverage .tokuyaku_wrap .ttl_wrap {
		width: 20em;
	}
	#sec_coverage .tokuyaku_wrap .ttl_wrap .ttl {
		font-size: 2.4rem;
	}
	#sec_coverage .tokuyaku_wrap .ttl_wrap .check {
		font-size: 1.4rem;
		width: 4rem;
		height: 4rem;
	}
	#sec_coverage .tokuyaku_wrap .detail {
		padding: 2rem;
	}
	#sec_coverage .tokuyaku_wrap .detail .flex > * {
		width: 100%;
		margin-left: 0;
	}
	#sec_coverage .tokuyaku_wrap .detail .flex > *:nth-child(n+2) {
		margin-top: 0;
	}
	#sec_coverage .tokuyaku_wrap .detail .box {
		padding: 3rem 2rem;
		margin-top: 3rem;
	}
	#sec_coverage .tokuyaku_wrap .detail .box .anchor {
		top: -3rem;
	}
	#sec_coverage .tokuyaku_wrap .detail .box .sttl {
		font-size: 2.0rem;
	}
	#sec_coverage .tokuyaku_wrap .detail .box .txt {
		display: block;
		font-size: 1.8rem;
	}
	#sec_coverage .tokuyaku_wrap .detail hr {
		margin: 3rem -2rem 0;
	}
	#sec_coverage .tokuyaku_wrap .detail .small {
		font-size: 1.4rem;
	}
}


/* sec_case */

#sec_case {
	padding: 0 0 6rem;
	background-color: #f4f4f4;
}
#sec_case .case_wrap {
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	background: #fff;
	padding: 4rem;
	margin: 3rem auto 0;
}
#sec_case .case_wrap .flex._01 {
	align-items: center;
	justify-content: center;
}
#sec_case .case_wrap .flex._01 .flex_l {
	flex: 0 0 auto;
	margin-right: 3rem;
}
#sec_case .case_wrap .flex._01 .ttl {
	font-size: 3.0rem;
	font-weight: bold;
	padding-bottom: 1em;
	margin-bottom: 1em;
	position: relative;
}
#sec_case .case_wrap .flex._01 .ttl::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(50%);
	width: 6rem;
	height: .6rem;
	background: #e84566;
}
#sec_case .case_wrap .flex._01 .flex_r .txt {
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_case .case_wrap .flex._02 {
	margin: 6rem 0 3rem;
}
#sec_case .case_wrap .flex._02 > * {
	width: 45%;
	border: 1px dashed #aaa;
	padding: 3rem 3rem 2rem;
	display: flex;
	justify-content: center;
	position: relative;
}
#sec_case .case_wrap .flex._02 .ttl {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	background: #e84566;
	color: #fff;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	width: 16rem;
	padding: .3em 1em;
	border-radius: 100px;
}
#sec_case .case_wrap .flex._02 .flex_r .ttl {
	background: #ef7a47;
}
#sec_case .case_wrap .flex._02 .txt {
	line-height: 2.2;
}
#sec_case .case_wrap .sttl {
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding-bottom: .5em;
	margin-bottom: 1em;
	position: relative;
}
#sec_case .case_wrap .sttl::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 6rem;
	height: .6rem;
	background: #ef7a47;
}
#sec_case .case_wrap .sttl .small {
	font-size: 1.8rem;
}
#sec_case .case_wrap .flex._03 {
	align-items: flex-end;
	margin: 3rem 0 2rem;
}
#sec_case .case_wrap .flex._03 > * {
	display: flex;
}
#sec_case .case_wrap .flex._03 .img {
	position: relative;
}
#sec_case .case_wrap .flex._03 .img span {
	background: linear-gradient( to right, #ef7a47, #e84566);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.2;
	width: 6.8rem;
	height: 6.8rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-50%);
}
#sec_case .case_wrap .flex._03 table {
	border-collapse: collapse;
	height: 100%;
}
#sec_case .case_wrap .flex._03 table th,
#sec_case .case_wrap .flex._03 table td {
	border: 1px solid #aaa;
	font-size: 2.0rem;
	line-height: 1.4;
	padding: 1em 1.5em;
	vertical-align: middle;
	text-align: center;
}
#sec_case .case_wrap .flex._03 table th {
	background: #e4e4e4;
}
#sec_case .case_wrap .small {
	font-size: 1.4rem;
	font-weight: bold;
}
#sec_case .tokuyaku_wrap .ttl_wrap {
	background: #fff;
	width: 49rem;
	text-align: center;
	position: relative;
	border-radius: 1rem 1rem 0 0;
	margin: 0 auto;
}
#sec_case .tokuyaku_wrap .ttl_wrap .ttl {
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
	padding-top: .5em;
}
#sec_case .tokuyaku_wrap .ttl_wrap .check {
	background: linear-gradient( to right, #8bad25, #598e35);
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	padding-top: .3em;
	width: 6.8rem;
	height: 6.8rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
#sec_case .tokuyaku_wrap .detail {
	background: #fff;
	padding: 3rem;
}
#sec_case .tokuyaku_wrap .detail .red{
	color: #e6002d;
	border-bottom: 2px solid #e6002d;
}
#sec_case .tokuyaku_wrap .detail .ttl {
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 4rem;
}
#sec_case .tokuyaku_wrap .detail .box {
	text-align: center;
	border: 2px solid #50a108;
	padding: 3rem;
	position: relative;
	margin-top: 5rem;
}
#sec_case .tokuyaku_wrap .detail .box .sttl {
	background: #fff;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	padding: 0 1em;
	font-size: 2.6rem;
	line-height: 1.4;
	font-weight: bold;
	white-space: nowrap;
}
#sec_case .tokuyaku_wrap .detail .box .txt {
	height: 100%;
	text-align: left;
	line-height: 2.2;
}

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

	#sec_case .case_wrap {
		box-shadow: 0 0 5px rgba(0, 0, 0, .3);
		padding: 2rem 2rem 3rem;
	}
	#sec_case .case_wrap .flex {
		display: block;
		text-align: center;
	}
	#sec_case .case_wrap .flex._01 .ttl {
		font-size: 2.4rem;
		padding-bottom: .8em;
		margin-bottom: 1.5em;
	}
	#sec_case .case_wrap .flex._01 .ttl::before {
		left: 50%;
		transform: translate(-50%,50%);
		width: 6rem;
		height: .6rem;
	}
	#sec_case .case_wrap .flex._01 .img {
		width: 60%;
		margin: 0 auto;
	}
	#sec_case .case_wrap .flex._01 .flex_l {
		margin: 0 0 2rem;
	}
	#sec_case .case_wrap .flex._01 .flex_r .txt {
		font-size: 2.4rem;
	}
	#sec_case .case_wrap .flex._02 {
		margin: 4rem 0 3rem;
	}
	#sec_case .case_wrap .flex._02 > * {
		width: 100%;
		text-align: left;
	}
	#sec_case .case_wrap .flex._02 .ttl {
		font-size: 1.8rem;
		width: 12rem;
	}
	#sec_case .case_wrap .flex._02 .flex_l {
		border-bottom: none;
		padding-bottom: 3rem;
	}
	#sec_case .case_wrap .flex._03 {
		margin: 3rem 0 1rem;
	}
	#sec_case .case_wrap .flex._03 .flex_r {
		margin-top: 2rem;
	}
	#sec_case .case_wrap .flex._03 .img {
		width: 35%;
		flex: 0 0 auto;
	}
	#sec_case .case_wrap .flex._03 .img img {
		width: 100%;
	}
	#sec_case .case_wrap .flex._03 .img span {
		width: 6rem;
		height: 6rem;
	}
	#sec_case .case_wrap .flex._03 table th,
	#sec_case .case_wrap .flex._03 table td {
		font-size: 1.8rem;
		padding: .8em 1.4em;
		white-space: nowrap;
	}
	#sec_case .tokuyaku_wrap .ttl_wrap {
		width: 20em;
	}
	#sec_case .tokuyaku_wrap .ttl_wrap .ttl {
		font-size: 2.4rem;
	}
	#sec_case .tokuyaku_wrap .ttl_wrap .check {
		font-size: 1.4rem;
		width: 4rem;
		height: 4rem;
	}
	#sec_case .tokuyaku_wrap .detail {
		padding: 2rem;
	}
	#sec_case .tokuyaku_wrap .detail .box {
		padding: 3rem 2rem;
		margin-top: 3rem;
	}
	#sec_case .tokuyaku_wrap .detail .box .sttl {
		font-size: 2.0rem;
	}
	#sec_case .tokuyaku_wrap .detail .box .txt {
		display: block;
		font-size: 1.8rem;
	}

}


/* sec_simulation */

#sec_simulation label {
	display: inline-block;
	font-size: 2.0rem;
	line-height: 1.8;
}
#sec_simulation input[type='text'],
#sec_simulation input[type='email'],
#sec_simulation input[type='tel'],
#sec_simulation textarea,
#sec_simulation select {
	font-size: 2.0rem;
}
#sec_simulation input[type='text'],
#sec_simulation input[type='email'],
#sec_simulation input[type='tel'],
#sec_simulation textarea,
#sec_simulation select {
	background: #fff;
	padding: 0 1em;
}
#sec_simulation textarea {
	line-height: 1.8em;
	padding: 1em;
}
#sec_simulation input[type='text'],
#sec_simulation input[type='email'],
#sec_simulation input[type='tel'],
#sec_simulation select {
	line-height: 2.4em;
	height: 2.4em;
}
#sec_simulation input[type='radio'],
#sec_simulation input[type='checkbox'] {
	visibility: hidden;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
#sec_simulation input[type='radio'] + span,
#sec_simulation input[type='checkbox'] + span {
	position: relative;
	padding-left: 1.5em;
	background: url(../img_new/radio_off.png) no-repeat left center / 1.2em auto;
}
#sec_simulation input[type='radio']:checked + span,
#sec_simulation input[type='checkbox']:checked + span {
	background-image: url(../img_new/radio_on.png);
}
#sec_simulation .select {
	display: inline-block;
	position: relative;
}
#sec_simulation select {
	background: #fff;
	padding-right: 2em;
}

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

	#sec_simulation input[type='text'],
	#sec_simulation input[type='email'],
	#sec_simulation input[type='tel'],
	#sec_simulation textarea,
	#sec_simulation select {
		font-size: 16px;
		padding: 0 .5em;
	}
	#sec_simulation textarea {
		padding: .5em;
	}
	#sec_simulation input[type='text'],
	#sec_simulation input[type='email'],
	#sec_simulation input[type='tel'],
	#sec_simulation select {
		line-height: 2.2em;
		height: 2.2em;
	}
	#sec_simulation select {
		padding-right: 2em;
	}

}

#sec_simulation {
	background: #f4f4f4;
}
#sec_simulation .border_box {
	border-bottom: 2px solid #aaa;
	padding: 6rem 0;
}
#sec_simulation > .wrap {
	padding: 6rem 0;
}
#sec_simulation .sec_ttl .sttl span {
	display: inline-block;
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 1.5em;
	position: relative;
}
#sec_simulation .sec_ttl .sttl span::before,
#sec_simulation .sec_ttl .sttl span::after {
	content: '';
	background: url(../img_new/simulation_sttl.png) no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8rem;
	height: 4.2rem;
}
#sec_simulation .sec_ttl .sttl span::after {
	left: auto;
	right: 0;
	transform: translateY(-50%)scale(-1,1);
}
#sec_simulation .guide_wrap {
	background: #eaeaea;
	padding: 2rem;
	margin: 3rem 0 2rem;
}
#sec_simulation .guide_wrap .kome li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.4rem;
}
#sec_simulation .guide_wrap .kome li::before {
	content: '※';
}
#sec_simulation .input_form table {
	width: 100%;
	border-collapse: collapse;
	margin: 3rem 0 4rem;
	background: #fff;
}
#sec_simulation .input_form table th {
	background: linear-gradient( to right, #57ac49, #007c64);
	color: #fff;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	padding: 1.5em;
	width: 30%;
	border-bottom: 3px solid #fff;
}
#sec_simulation .input_form table tr:last-child th {
	border-bottom: none;
}
#sec_simulation .input_form table td .inner {
	border: 3px solid #57ac49;
	border-left: none;
	border-bottom: none;
	font-size: 2.0rem;
	line-height: 1.6;
	padding: 1.5em 3em;
}
#sec_simulation .input_form table tr:last-child td .inner {
	border-bottom: 3px solid #57ac49;
}
#sec_simulation .input_form .select {
	margin-right: .5em;
	vertical-align: bottom;
}
#sec_simulation .input_form .select::after {
	content: '';
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .8rem .6rem 0 .6rem;
	border-color: #ccc transparent transparent transparent;
	pointer-events: none;
}
#sec_simulation .input_form select {
	border: 1px solid #ccc;
	border-radius: 1rem;
	padding: 0 1.5em;
}
#sec_simulation .input_form .age_wrap {
	border-top: 1px dashed #aaa;
	margin-top: 2rem;
	padding-top: 2rem;
	text-align: center;
	font-weight: bold;
}
#sec_simulation .input_form .age_wrap .big {
	font-size: 3.0rem;
}
#sec_simulation .input_form .age_wrap .red {
	color: #e60031;
	font-size: 1.4rem;
}
#sec_simulation .input_form .btn_grad a {
	background: linear-gradient( to right, #f2940a, #f55600);
	width: 54rem;
	height: 8.6rem;
	font-size: 2.8rem;
}

#sec_simulation .result_wrap {
	background: #fff;
	border: 3px solid #f55600;
	padding: 10rem 3rem 3rem;
	margin: 3rem 0 6rem;
}
#sec_simulation .result_wrap .ttl {
	color: #fff;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
#sec_simulation .result_wrap .resultOK {
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px dashed #aaa;
}
#sec_simulation .result_wrap .resultOK p {
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
#sec_simulation .result_wrap .resultOK p .big {
	font-size: 150%;
	color: #e6002d;
}
#sec_simulation .result_wrap .resultOK .invisible {
	display: none;
}
#sec_simulation .result_wrap .resultError p {
	margin: 1rem 0 4rem;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
#sec_simulation .result_wrap table {
	width: 100%;
	border-collapse: collapse;
}
#sec_simulation .result_wrap table th,
#sec_simulation .result_wrap table td {
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: left;
	padding: 1em 2em;
	border: 1px solid #aaa;
}
#sec_simulation .result_wrap table th {
	background: #ee7573;
	color: #fff;
	width: 35%;
	font-weight: bold;
}
#sec_simulation .result_wrap table thead th,
#sec_simulation .result_wrap table thead td {
	background: #ea5350;
	color: #fff;
	font-size: 2.0rem;
	padding: .5em;
	text-align: center;
	vertical-align: middle;
}
#sec_simulation .result_wrap table th .flex {
	align-items: center;
}
#sec_simulation .result_wrap table th .hatena {
	width: 2.2rem;
	height: auto;
}
#sec_simulation .result_wrap label {
	font-size: 1.6rem;
}
#sec_simulation .result_wrap label + label {
	margin-left: 2em;
}
#sec_simulation .result_wrap input[type='text'],
#sec_simulation .result_wrap input[type='email'],
#sec_simulation .result_wrap input[type='tel'],
#sec_simulation .result_wrap textarea,
#sec_simulation .result_wrap select {
	font-size: 1.6rem;
}
#sec_simulation .result_wrap .select::after {
	content: '';
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .8rem .6rem 0 .6rem;
	border-color: #ff8e14 transparent transparent transparent;
	pointer-events: none;
}
#sec_simulation .result_wrap select {
	background: #f4f4f4;
	width: 28rem;
}
#sec_simulation .result_form .btn_grad a {
	background: url("../img_new/simulation_result_btn.png") no-repeat center / contain;
	width: 54rem;
	height: 8.6rem;
	font-size: 2.8rem;
}
#sec_simulation .result_form .btn_grad a::after {
	left: 3rem;
	transform: translateY(-50%)scale(-1,1)rotate(45deg);
}
#sec_simulation .result_form .print_txt {
	text-align: center;
	margin: 2rem 0;
}
#sec_simulation .result_form .print_txt a {
	display: inline-block;
	border-bottom: 2px solid #007c64;
	color: #007c64;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_simulation .result_form .print_txt a .ico {
	width: 1em;
	height: 1em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: .3em;
}
#sec_simulation .result_form .note {
	margin: 4rem 3rem 0;
}
#sec_simulation .result_form .note li {
	font-size: 1.4rem;
	margin: 0;
	padding-left: 1em;
	text-indent: -1em;
}
#sec_simulation .result_form .note li::before {
	content: '※';
}
#sec_simulation .result_form .note li .no-padding {
	display: block;
	text-indent: 0;
	margin-left: -1rem;
}
#sec_simulation .bg_grey {
	background: #fff;
	padding: 6rem 0;
}
#sec_simulation .bg_grey .bnr {
	margin-top: 6rem;
}
#sec_simulation .bg_grey .note {
	margin-top: 3rem;
}
#sec_simulation .bg_grey .note li {
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#sec_simulation .bg_grey .note li + li {
	margin-top: .5em;
}
#sec_simulation .bg_grey .note li::before {
	content: '●';
	margin-right: .5em;
}

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

	#sec_simulation .sec_ttl .sttl span {
		font-size: 2.2rem;
	}
	#sec_simulation .sec_ttl .sttl span::before,
	#sec_simulation .sec_ttl .sttl span::after {
		width: 2rem;
		height: 3rem;
	}
	#sec_simulation .input_form table,
	#sec_simulation .input_form table tbody,
	#sec_simulation .input_form table thead,
	#sec_simulation .input_form table tr,
	#sec_simulation .input_form table th,
	#sec_simulation .input_form table td {
		display: block;
		width: 100%;
	}
	#sec_simulation .input_form table th {
		font-size: 2.4rem;
		padding: .5em;
		border: none;
	}
	#sec_simulation .input_form table td .inner {
		border-left: 3px solid #57ac49;
		border-top: none;
		padding: 3rem;
	}
	#sec_simulation .input_form table .flex {
		flex-wrap: wrap;
	}
	#sec_simulation .input_form table .flex > *:nth-child(n+2) {
		margin-top: 1em;
	}
	#sec_simulation .input_form table .flex > *:first-child select {
		padding: 0 3.5em;
	}
	#sec_simulation .input_form table td:last-child {
		text-align: center;
	}
	#sec_simulation .input_form table td:last-child label {
		margin: 0 1em;
	}
	#sec_simulation .input_form .btn_grad a,
	#sec_simulation .result_form .btn_grad a {
		font-size: 2.0rem;
		width: 90%;
		height: 7rem;
	}
	#sec_simulation .result_form .btn_grad a {
		background: linear-gradient( to right, #57ac49, #007c64);
		font-size: 2.0rem;
		width: 90%;
		height: 7rem;
	}
	#sec_simulation .result_wrap {
		padding-top: 8rem;
		margin-bottom: 3rem;
	}
	#sec_simulation .result_wrap .ttl {
		background: linear-gradient( to right, #f2940a, #f55600); */
		font-size: 2.5rem;
		line-height: 1.568;
		padding: .336em;
	}
	#sec_simulation .result_wrap .resultOK p {
		font-size: 2.8rem;
	}
	#sec_simulation .result_wrap .resultOK p .big {
		font-size: 130%;
	}
	#sec_simulation .result_wrap table th,
	#sec_simulation .result_wrap table td {
		/*font-size: 16px;*/
		padding: .8em;
		white-space: nowrap;
	}
	#sec_simulation .result_wrap table th {
		white-space: nowrap;
		width: auto;
		text-align: center;
	}
	#sec_simulation .result_wrap table th .flex {
		justify-content: center;
	}
	#sec_simulation .result_wrap table th .hatena {
		margin-left: .3em;
	}
	#sec_simulation .result_wrap .select {
		display: block;
	}
	#sec_simulation .result_wrap select {
		width: 100%;
	}
	#sec_simulation .result_wrap label + label {
		margin-left: .5em;
	}
	#sec_simulation .result_form .note {
		margin: 4rem 0 0;
	}

}


/* sec_contact */

#sec_contact .bg_wrap .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: calc( 50vw + 320px );
	height: 30rem;
	background: linear-gradient( 40deg, #007c64, #57ac49);
	z-index: -1;
}
#sec_contact .bg_wrap .ttl_wrap {
	max-width: 90rem;
	margin: 0 auto;
	padding-top: 22rem;
	position: relative;
}
#sec_contact .bg_wrap .ttl_wrap .img {
	position: absolute;
	right: 0;
	top: 0;
	max-width: 50rem;
}
#sec_contact .bg_wrap .ttl_wrap .ttl {
	display: inline-block;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	padding: 3rem;
	position: relative;
	z-index: 1;
}
#sec_contact .bg_wrap .ttl_wrap .ttl img {
	width: 48rem;
}
#sec_contact .bg_wrap .ttl_wrap .ttl .txt {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_contact .tel_wrap {
	margin: 6rem 0 8rem;
}
#sec_contact .tel_wrap .sttl {
	color: #f65e2a;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 4rem 0 2rem;
}
#sec_contact .tel_wrap .sttl::before,
#sec_contact .tel_wrap .sttl::after {
	content: '▼';
	color: #ff9800;
	margin: 0 .3em;
}
#sec_contact .tel_wrap .btn.tel {
	border: 1px solid #ddd;
	border-radius: 1rem;
	overflow: hidden;
	margin: 0 auto;
	width: 85rem;
	height: 9rem;
	display: flex;
	align-items: center;
}
#sec_contact .tel_wrap .btn.tel .ttl {
	background: linear-gradient( 10deg, #007c64, #57ac49);
	color: #fff;
	flex: 0 0 auto;
	font-size: 2.6rem;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55%;
	position: relative;
}
#sec_contact .tel_wrap .btn.tel .ttl small {
	font-size: 1.6rem;
}
#sec_contact .tel_wrap .btn.tel .ttl::before,
#sec_contact .tel_wrap .btn.tel .ttl::after {
	content: '';
	position: absolute;
	right: -1px;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 4.5rem 4.5rem 0;
	border-color: transparent #fff transparent transparent;
}
#sec_contact .tel_wrap .btn.tel .ttl::after {
	top: auto;
	bottom: 0;
	transform: scale(1,-1);
}
#sec_contact .tel_wrap .btn.tel a {
	flex: 1 1 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	pointer-events: none;
}
#sec_contact .tel_wrap .btn.tel .ico{
	width: 3.2rem;
}
#sec_contact .tel_wrap .btn.tel .txt {
	color: #007c64;
	background: linear-gradient( to left, #007c64, #57ac49);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 3.0rem;
	margin-left: .5em;
	font-weight: bold;
}
.ie #sec_contact .tel_wrap .btn.tel .txt {
	background: transparent;
}
#sec_contact .tel_wrap .btn.tel._02 .ttl {
	background: linear-gradient( 10deg, #f65e2a, #ff9800);
}
#sec_contact .tel_wrap .btn.tel._02 .txt {
	color: #f65e2a;
	background-image: linear-gradient( to left, #f65e2a, #ff9800);
}
#sec_contact .tel_wrap .small {
	max-width: 85rem;
	margin: .5em auto 0;
	font-size: 1.4rem;
	line-height: 1.2;
}
#sec_contact .btn.mail a {
	margin: 3rem auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	overflow: hidden;
	width: 85rem;
	height: 9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	border-radius: 100px;
}
#sec_contact .btn.mail .ico {
	width: 3.6rem;
	position: absolute;
	left: 4rem;
	top: 50%;
	transform: translateY(-50%);
}
#sec_contact .btn.mail .txt {
	display: inline-block;
	color: #007c64;
	background: linear-gradient( to left, #007c64, #57ac49);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 3.0rem;
	margin-left: .5em;
	font-weight: bold;
}
.ie #sec_contact .btn.mail .txt {
	background: transparent;
}
#sec_contact .time {
	max-width: 100rem;
	margin: 7rem auto 0;
	padding: 3rem 0;
	text-align: center;
	border-top: 2px solid #57ac49;
	border-bottom: 2px solid #57ac49;
	position: relative;
}
#sec_contact .time .ttl {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-50%);
	width: 100%;
}
#sec_contact .time .ttl span {
	display: inline-block;
	background: #fff;
	padding: 0 1em;
	font-size: 3.0rem;
	font-weight: bold;
}
#sec_contact .time .big {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: .5em;
}
#sec_contact .time .big .pc {
	margin-left: -.6em;
}
#sec_contact .time .note li {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.4rem;
	margin: .3em 0;
}
#sec_contact .time .note li::before {
	content: '※';
}

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

	#sec_contact .bg_wrap {
		padding-top: 6rem;
	}
	#sec_contact .bg_wrap .bg {
		width: 100%;
		height: 40rem;
	}
	#sec_contact .bg_wrap .ttl_wrap {
		padding-top: 22rem;
	}
	#sec_contact .bg_wrap .ttl_wrap .img {
		width: 80%;
	}
	#sec_contact .bg_wrap .ttl_wrap .ttl {
		width: 80%;
		padding: 2rem;
	}
	#sec_contact .bg_wrap .ttl_wrap .ttl .txt {
		font-size: 2.1rem;
	}
	#sec_contact .tel_wrap .sttl {
		font-size: 2.0rem;
	}
	#sec_contact .tel_wrap .btn.tel {
		display: block;
		width: 100%;
		height: auto;
		border: none;
		overflow: inherit;
	}
	#sec_contact .tel_wrap .btn.tel .ttl {
		background: #fff !important;
		color: #000;
		width: 100%;
		text-align: center;
	}
	#sec_contact .tel_wrap .btn.tel .ttl::before,
	#sec_contact .tel_wrap .btn.tel .ttl::after {
		display: none;
	}
	#sec_contact .tel_wrap .btn.tel a {
		margin: 2rem auto;
		box-shadow: 0 0 15px rgba(0, 0, 0, .3);
		overflow: hidden;
		width: 85rem;
		height: 9rem;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		position: relative;
		border-radius: 100px;
		pointer-events: auto;
	}
	#sec_contact .tel_wrap .btn.tel .ico {
		width: 3.6rem;
		position: absolute;
		left: 4rem;
		top: 50%;
		transform: translateY(-50%);
	}
	#sec_contact .tel_wrap .btn.tel .txt {
		display: inline-block;
		font-size: 3.0rem;
		margin-left: .5em;
		font-weight: bold;
	}
	#sec_contact .tel_wrap .btn.tel a,
	#sec_contact .btn.mail a {
		box-shadow: 0 0 10px rgba(0, 0, 0, .3);
		width: 100%;
		height: 8rem;
	}
	#sec_contact .tel_wrap .btn.tel .ico,
	#sec_contact .btn.mail .ico {
		width: 2.5rem;
	}
	#sec_contact .tel_wrap .btn.tel .txt,
	#sec_contact .btn.mail .txt {
		font-size: 2.0rem;
		line-height: 1.4;
		letter-spacing: .05em;
	}
	#sec_contact .time {
		border-width: 1px;
	}
	#sec_contact .time .ttl span {
		font-size: 2.2rem;
	}
	#sec_contact .time .big {
		font-size: 2.2rem;
		text-align: left;
		padding: 0 2rem;
	}
	#sec_contact .time .note {
		padding: 0 2rem;
	}
	#sec_contact .time .note li {
		font-size: 1.2rem;
		text-align: left;
	}

}

/* sec_link */

#sec_link {
	margin: 8rem 0;
}
#sec_link .wrap {
	max-width: 100rem;
}
#sec_link .link_wrap {
	background: #ededed;
	padding: 4rem;
	text-align: center;
	margin-bottom: 8rem;
}
#sec_link .link_wrap .ttl {
	font-size: 4.0rem;
	font-weight: bold;
}
#sec_link .link_wrap .flex {
	margin-top: 1.5rem;
	justify-content: center;
}
#sec_link .link_wrap .flex p {
	margin: 0 1.5rem;
}
#sec_link .note li {
	text-indent: -2em;
	padding-left: 2em;
	font-size: 1.4rem;
	margin: .3em 0;
}
#sec_link .note li::before {
	content: '●';
	margin-right: 1em;
}

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

	#sec_link .link_wrap {
		margin: 0 -5vw 8rem;
	}
	#sec_link .link_wrap .ttl {
		font-size: 3.0rem;
	}
	#sec_link .link_wrap .flex {
		display: block;
	}
	#sec_link .link_wrap .flex p {
		margin: 1.5rem 0;
	}
	#sec_link .link_wrap .flex p:last-child {
		margin-bottom: 0;
	}

}

/* popup */

.popup_wrap {
	background: #fff;
	max-width: 100rem;
	width: 90%;
	border-radius: 1rem;
	padding: 4rem 6rem 6rem;
	margin: 0 auto;
	position: relative;
}
.popup_wrap .ttl {
	font-size: 4.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding-bottom: .7em;
	margin-bottom: .7em;
	position: relative;
}
.popup_wrap .ttl::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 6rem;
	height: 6px;
	background: #e6002d;
}
.popup_wrap .note li {
	padding-left: 1.5em;
	text-indent: -1.5em;
	font-size: 1.6rem;
}
.popup_wrap .note li::before {
	content: '●';
	margin-right: .5em;
}
.popup_wrap .note a {
	color: #e6002d;
	border-bottom: 1px solid #e6002d;
}
.mfp-close {
	transform: translateY(-100%);
	top: -2rem;
	font-size: 0;
	color: transparent;
	opacity: 1;
	transition: opacity .3s ease;
}
.mfp-close:active {
	top: -2rem;
}
.mfp-close:hover {
	opacity: .6;
}
.mfp-close::before,
.mfp-close::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%)rotate(45deg);
	width: 5px;
	height: 5rem;
	background: #fff;
}
.mfp-close::after {
	transform: translate(-50%,-50%)rotate(-45deg);
}
.mfp-close-btn-in .mfp-close {
	color: #fff;
}

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

	.popup_wrap {
		padding: 3rem;
	}
	.popup_wrap .ttl {
		font-size: 3.0rem;
	}
	.popup_wrap .ttl::after {
		height: 3px;
	}

}


/* ------------------------------
    responsive
------------------------------ */

@media screen and (min-width : 769px) {

	.sp {
		display:none!important;
	}

}

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

	.pc {
		display:none!important;
	}

}


/* ------------------------------
    clearfix
------------------------------ */

.cf {
  zoom:1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}

.sec_cta {
	background: url(../img_new/cta_bg.png);
	padding: 3rem 0;
}

.sec_cta .wrap {
	background: #fff;
	position: relative;
	padding: 3rem;
	text-align: center;
}

.sec_cta .corner {
	position: absolute;
	width: 6vw;
	height: 6vw;
}

.sec_cta .corner.lt {
	left: -3px;
	top: -3px;
	border-top: 4px double #333;
	border-left: 4px double #333;
}

.sec_cta .corner.rt {
	right: -3px;
	top: -3px;
	border-top: 4px double #333;
	border-right: 4px double #333;
}

.sec_cta .corner.lb {
	left: -3px;
	bottom: -3px;
	border-bottom: 4px double #333;
	border-left: 4px double #333;
}

.sec_cta .corner.rb {
	right: -3px;
	bottom: -3px;
	border-bottom: 4px double #333;
	border-right: 4px double #333;
}

.sec_cta .ttl {
	margin-bottom: 1em;
}

.sec_cta .btn_grad a {
	width: 100%;
	height: 6rem;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	#sec_case .case_wrap .flex._03 .flex_l table td:nth-of-type(2) {
		padding: 0.8em 1.12em;
	}
}