@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html{
	width: 100%;
	font-size: 2.66666vw; /* 画面幅375pxの時1rem=10px */
	font-weight: 500;
}
body{
	min-width: 320px;
	line-height: 1;
	position: relative;
	overflow-x: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-family: "Noto Sans JP","メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #1A1311;
	background: #F5F5EC;
}

@media print,screen and (min-width: 600px) {
	html{
		font-size: 0.69444vw; /* 画面幅1440pxの時1rem=10px */
	}
}
@media print,screen and (min-width: 1440px) {
	html{
		font-size: 10px;
	}
}

img{
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a{
	text-decoration: none;
	color:inherit;
}
svg{
	width: 100%;
	height: 100%;
}
a,
input, textarea, button, label, select,
.js--btn-hamburger,
.js--btn-ac, .js--btn-tab{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: 0;
}
::selection {
	background: rgba(41, 122, 44, .3);
}

/*====================================
Common
====================================*/
.anchor{
	display: block;
	width: 0;
	height: 0;
	padding-top: 6rem;
	margin-top: -6rem;
}
.width--cmn{
	margin-left: auto;
	margin-right: auto;
	width: 33.5rem;
}
.fw100{
	font-weight: 100;
}
.fw200{
	font-weight: 200;
}
.fw400{
	font-weight: 400;
}
.fw600{
	font-weight: 600;
}
.fw700{
	font-weight: 700;
}
.font--poppins{
	font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 599px) {
	.disp--pc{
		display: none !important;
	}
}

@media print,screen and (min-width: 600px) {
	.disp--sp{
		display: none !important;
	}
	.anchor{
		padding-top: 0;
		margin-top: 0;
	}
	.width--cmn{
		width: 112rem;
	}
}

/* アイコン
--------------------------------------*/
.icon--svg{
	display: block;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background: #000;
	transition: background .3s ease;
}
.icon--download{
	mask-image: url(../img/common/icon-download.svg);
	-webkit-mask-image: url(../img/common/icon-download.svg);
}
.icon--mail{
	mask-image: url(../img/common/icon-mail.svg);
	-webkit-mask-image: url(../img/common/icon-mail.svg);
}
.icon--new-tab{
	mask-image: url(../img/common/icon-new-tab.svg);
	-webkit-mask-image: url(../img/common/icon-new-tab.svg);
}
.icon--youtube{
	mask-image: url(../img/common/icon-youtube.svg);
	-webkit-mask-image: url(../img/common/icon-youtube.svg);
}
.icon--x{
	mask-image: url(../img/common/icon-x.svg);
	-webkit-mask-image: url(../img/common/icon-x.svg);
}
.icon--note{
	mask-image: url(../img/common/icon-note.svg);
	-webkit-mask-image: url(../img/common/icon-note.svg);
}

/* タイトル
--------------------------------------*/
.sec-pagettl .sec-inner{
	box-sizing: border-box;
	position: relative;
	min-height: 22rem;
	padding-top: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec-pagettl .e-txt{
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.sec-pagettl .j-txt{
	font-size: 3.2rem;
	line-height: 1.31;
}

@media print,screen and (min-width: 600px) {
	.sec-pagettl .sec-inner{
		min-height: 16.7rem;
		padding-top: 1.3rem;
	}
}

/* パンくず
--------------------------------------*/
.pnkz{
	font-size: 1.2rem;
	padding-top: 2rem;
	display: flex;
	justify-content: flex-end;
}
.pnkz span:nth-child(5),
.pnkz span:nth-child(7) {
	max-width: 40%;
}
.pnkz .txt--line-clamp{
	-webkit-line-clamp: 1;
	max-height: 1em;
}

/* 色
--------------------------------------*/
.c--white{
	color: #fff !important;
}
.c--black{
	color: #1A1311 !important;
}
.c--gray{
	color: #CCCCCC !important;
}
.c--green{
	color: #297A2C !important;
}
.c--red-orange{
	color: #FF3D00 !important;
}

.bg--white{
	background-color: #fff !important;
}
.bg--off-white{
	background-color: #EDEDDB !important;
}
.bg--black{
	background-color: #1A1311 !important;
}
.bg--yellow{
	background-color: #FFF000 !important;
}
.bg--pale-yellow{
	background-color: #F5F5EC !important;
}
.bg--green{
	background-color: #297A2B !important;
}
.bg--vivid-green{
	background-color: #00DF00 !important;
}

/* ホバー
--------------------------------------*/
@media print,screen and (min-width: 600px) {
	.hover--c-white,
	.hover--c-black{
		transition: color .3s ease;
	}
	a.hover--c-white:hover,
	a:hover .hover--c-white{
		color: #fff !important;
	}
		a.hover--c-black:hover,
	a:hover .hover--c-black{
		color: #1A1311 !important;
	}

	.hover--bg-white,
	.hover--bg-black,
	.hover--bg-green,
	.hover--bg-vivid-green{
		transition: background .3s ease, color .3s ease;
	}
	a.hover--bg-white:hover,
	a:hover .hover--bg-white{
		background-color: #fff !important;
	}
	a.hover--bg-black:hover,
	a:hover .hover--bg-black{
		background-color: #1A1311 !important;
	}
	a.hover--bg-green:hover,
	a:hover .hover--bg-green{
		background-color: #297A2B !important;
	}
	a.hover--bg-vivid-green:hover,
	a:hover .hover--bg-vivid-green{
		background-color: #00DF00 !important;
	}

	.hover--underline{
		background-position: right bottom;
		background-size: 0 100%;
		background-image: linear-gradient(to bottom, transparent calc(100% - 1px), currentColor 1px);
		background-repeat: no-repeat;
		transition: color .3s ease, background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}
	a.hover--underline:hover,
	a:hover .hover--underline,
	.has--dd:hover > .hover--underline,
	.js--btn-popup.hover--underline:hover,
	.js--btn-popup:hover .hover--underline{
		background-position: left bottom;
		background-size: 100% 100%;
	}

	.hover--opacity,
	.hover--img-opacity > img{
		transition: opacity .3s ease;
	}
	a.hover--opacity:hover,
	a.hover--img-opacity:hover > img,
	a:hover .hover--img-opacity > img{
		opacity: 0.5;
	}
	.hover--img-zoom{
		position: relative;
	}
	.hover--img-zoom > img{
		transition: transform .3s ease-in-out;
	}
	a.hover--img-zoom:hover > img,
	a:hover .hover--img-zoom > img{
		transform: scale(1.1);
	}
}

/* 画像
--------------------------------------*/
.img--fit img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* IE */
.browser--ie .img--fit{
	position: relative;
	overflow: hidden;
}
.browser--ie .img--fit img{
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img--posted{
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 74.92%;
}
.img--posted > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* テキスト
--------------------------------------*/
div.txt--i,
p.txt--i,
ul.txt--i > li,
li.txt--i{
	padding-left: 1em;
	text-indent: -1em;
}
.txt--u{
	text-decoration: underline;
}
.txt--center{
	text-align: center;
}

@media print,screen and (min-width: 600px) {
	.txt--u:hover{
		text-decoration: none;
	}
}

.txt--cmn{
	font-size: 1.6rem;
	line-height: 1.625;
}
.txt--cmn-p-margin p:not(:first-child){
	margin-top: 1.625em;
}

@media print,screen and (min-width: 600px) {
	.txt--cmn{
		line-height: 1.5;
	}
	.txt--cmn-p-margin p:not(:first-child){
		margin-top: 1.5em;
	}
}

.txt--line-clamp{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: calc(2.18em * 2);
	overflow: hidden;
}
.txt--line-clamp a{
	transition: color .3s ease;
}
.txt--line-clamp .hover--underline{
	transition: background-size 1.5s cubic-bezier(0.19, 1, 0.22, 1), color .3s ease;
}


/* effect
--------------------------------------*/
.effect--fadein.is--show,
.is--show .effect--fadein{
	opacity: 1 !important;
	transition: opacity .3s cubic-bezier(0.33, 1, 0.68, 1);
}
.effect--fadein-up.is--show,
.is--show .effect--fadein-up{
	opacity: 1 !important;
	transform: translate(0) !important;
	transition: opacity .3s cubic-bezier(0.33, 1, 0.68, 1), transform .5s cubic-bezier(0.33, 1, 0.68, 1);
}

@media only screen and (max-width: 599px) {
	.effect--fadein:not(.effect--pc-only){
		opacity: 0;
	}
	.effect--fadein-up:not(.effect--pc-only){
		opacity: 0;
		transform: translateY(1.5rem);
	}
}

@media print,screen and (min-width: 600px) {
	.effect--fadein:not(.effect--sp-only){
		opacity: 0;
	}
	.effect--fadein-up:not(.effect--sp-only){
		opacity: 0;
		transform: translateY(1.5rem);
	}
}


/* iframe処理
--------------------------------------*/
.gmap--wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 119.4%;
}
.gmap--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie--wrap{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*====================================
pagenavi
====================================*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last{
	box-sizing: border-box;
	height: 3.4rem;
	position: relative;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend{
	box-sizing: border-box;
	font-size: 1.5rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	background-color: #fff;
	border-radius: 100%;
	color: #297A2C;
}
.wp-pagenavi .current{
	background-color: #297A2C;
	color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	width: 1.4rem;
}
.wp-pagenavi .first,
.wp-pagenavi .last{
	width: 2.3rem;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink{
	margin-right: 1rem;
}
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink{
	margin-left: 1rem;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .last:before,
.wp-pagenavi .first:after,
.wp-pagenavi .last:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 1.9rem;
	height: 1.9rem;
	border-top: solid 1px #297A2C;
	top: 50%;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .first:after{
	border-left: solid 1px #297A2C;
}
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .last:before,
.wp-pagenavi .last:after{
	border-right: solid 1px #297A2C;
}
.wp-pagenavi .previouspostslink:before{
	left: 50%;
	transform: translate(-20%,-50%) rotate(-45deg);
}
.wp-pagenavi .first:before{
	left: 0.5rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .first:after{
	right: -0.8rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .nextpostslink:before{
	right: 50%;
	transform: translate(20%,-50%) rotate(45deg);
}
.wp-pagenavi .last:before{
	left: -0.8rem;
	transform: translateY(-50%) rotate(45deg);
}
.wp-pagenavi .last:after{
	right: 0.5rem;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 600px) {
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend,
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .first,
	.wp-pagenavi .last{
		width: 4rem;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend{
		margin-left: 1rem;
		margin-right: 1rem;
		height: 4rem;
	}
	.wp-pagenavi .page{
		transition: background .3s ease, color .3s ease, border .3s ease;
	}
	.wp-pagenavi a.page:hover{
		background-color: #297A2C;
		color: #fff;
	}
	.wp-pagenavi .first{
		margin-right: 2rem;
	}
	.wp-pagenavi .previouspostslink{
		margin-right: 4rem;
	}
	.wp-pagenavi .last{
		margin-left: 2rem;
	}
	.wp-pagenavi .nextpostslink{
		margin-left: 4rem;
	}
	.wp-pagenavi .previouspostslink:before,
	.wp-pagenavi .nextpostslink:before,
	.wp-pagenavi .first:before,
	.wp-pagenavi .last:before,
	.wp-pagenavi .first:after,
	.wp-pagenavi .last:after{
		transition: opacity .3s ease;
	}
	.wp-pagenavi .previouspostslink:hover:before,
	.wp-pagenavi .nextpostslink:hover:before,
	.wp-pagenavi .first:hover:before,
	.wp-pagenavi .last:hover:before,
	.wp-pagenavi .first:hover:after,
	.wp-pagenavi .last:hover:after{
		opacity: 0.5;
	}
}


/*====================================
parts
===================================*/
.ttl--unique1{
	margin-bottom: 4rem;
}
.ttl--unique1 .e-txt{
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.ttl--unique1 .j-txt{
	font-size: 3.2rem;
	line-height: 1.31;
}

.btn--cmn1{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.2rem solid #1A1311;
	border-radius: 10rem;
	height: 6rem;
	transition: background .3s ease, color .3s ease, border .3s ease;
}

/*====================================
form
====================================*/
/* common
--------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea,
select,
button{
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	background: none;
	border: none;
	font-family : inherit;
	color: inherit;
	box-sizing: border-box;
}

/* form--tbl
--------------------------------------*/
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"],
.form--tbl textarea,
.form--tbl .select--cmn1{
	width: 100%;
	background-color: #F6F6F6;
	border: 1px solid #EEEEEE;
	border-radius: 0.4rem;
	transition: background .3s ease;
}
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"],
.form--tbl .select--cmn1 select{
	height: 5rem;
	padding: 0 2rem;
}
.form--tbl input:placeholder-shown,
.form--tbl textarea:placeholder-shown {
	color: #a9a9a9;
}
.form--tbl input::-webkit-input-placeholder,
.form--tbl textarea::-webkit-input-placeholder {
	color: #a9a9a9;
}
.form--tbl textarea{
	padding: 2rem;
}

/* checkbox radio */
.form--tbl span.wpcf7-list-item{
	margin: 0;
}
.form--tbl .wpcf7-radio,
.form--tbl .wpcf7-checkbox{
	display: block;
	margin-top: -2rem;
	width: calc(100% + 1rem);
}
.form--tbl .wpcf7-radio .wpcf7-list-item,
.form--tbl .wpcf7-checkbox .wpcf7-list-item{
	margin-top: 1rem;
	margin-right: 2rem;
}
.form--tbl .wpcf7-radio input[type="radio"],
.form--tbl .wpcf7-checkbox input[type="checkbox"],
.form--tbl .wpcf7-acceptance input[type="checkbox"]{
	display: none;
}
.form--tbl .wpcf7-list-item label{
	cursor: pointer;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label{
	display: inline-block;
	position: relative;
	padding-left: 3rem;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before{
	width: 2rem;
	height: 2rem;
	left: 0;
	top: calc((1.625em - 2rem) / 2);
	background-color: #DDE9DD;
	transition: background .2s ease, border .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before{
	border-radius: 100%;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	opacity: 0;
	transition: opacity .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after{
	width: 1rem;
	height: 1rem;
	background-color: #fff;
	left: 0.5rem;
	top: calc((1.625em - 1rem) / 2);
	border-radius: 100%;
}
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	left: 0.6rem;
	width: 0.9rem;
	height: 1.2rem;
	top: calc((1.625em - 1.2rem) / 2 - 0.2rem);
	transform: rotate(40deg);
	border-bottom: 0.3rem solid #fff;
	border-right: 0.3rem solid #fff;
}
.form--tbl .wpcf7-radio input:checked + .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:before{
	background-color: #297A2C;
	border-color: #297A2C;
}
.form--tbl .wpcf7-radio input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:after{
	opacity: 1;
}

@media only screen and (max-width: 599px) {
	.form--tbl .wpcf7-radio .wpcf7-list-item,
	.form--tbl .wpcf7-checkbox .wpcf7-list-item{
		display: block;
	}
}

@media print,screen and (min-width: 600px) {
	.form--tbl .wpcf7-radio,
	.form--tbl .wpcf7-checkbox{
		margin-top: -1rem;
	}
	.form--tbl .wpcf7-radio .wpcf7-list-item,
	.form--tbl .wpcf7-checkbox .wpcf7-list-item{
		margin-top: 1rem;
	}
}

/* select */
select{
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
}
select::-ms-expand{
	display: none;
}
.select--cmn1{
	position: relative;
}
.select--cmn1:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 1.4rem;
	height: 0.8rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background-color: #2A7A2C;
	right: 2rem;
	top: calc((100% - 0.8rem) / 2);
	transition: background .3s ease, transform .3s ease;
}
.form--tbl .select--cmn1 > p{
	width: 100%;
	height: 100%;
}
.select--cmn1 select{
	width: 100%;
	height: 100%;
	padding: 0 5.5rem 0 2rem;
	cursor: pointer;
}

/* ボタン */
.btn--form{
	position: relative;
	margin: 6rem auto 0 auto;
	pointer-events: none;
	height: 5rem;
	padding: 0;
}
.btn--form > p{
	height: 100%;
	width: 100%;
}
.btn--form input{
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
	line-height: 1;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
	height: 5rem;
	font-size: 1.6rem;
	font-weight: 700;
	pointer-events: auto;
	color: #1A1311;
	transition: background .3s ease, color .3s ease, border .3s ease, opacity .3s ease;
}
.btn--form input:disabled{
	opacity: .3;
	pointer-events: none;
}

@media print,screen and (min-width: 600px) {
	.btn--form{
		width: 20rem;
	}
	.btn--form:hover{
		background-color: #1A1311;
	}
	.btn--form:hover input{
		color: #fff;
	}
}

.form--tbl{
	box-sizing: border-box;
	width: 100%;
}
.form--tbl p:not(:last-child){
	margin-bottom: 0;
}
.form--tbl th,
.form--tbl td{
	box-sizing: border-box;
}
.form--tbl th{
	font-weight: 700;
}
.form--tbl tr:not(:first-child) th{
	padding-top: 3rem;
}
.form--tbl td{
	font-weight: 400;
}
.form--tbl tr:not(:last-child) td{
	padding-bottom: 3rem;
	border-bottom: 1px solid #EEEEEE;
}

.form--tbl .req{
	box-sizing: border-box;
	color: #fff;
	background-color: #CB0211;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	padding: 0.6rem 1.5rem;
	margin-left: 1rem;
	border-radius: 2rem;
}
.form--tbl .req.ninni{
	background-color: #BBBBBB;
}
.form--tbl .td-block:not(:last-child){
	margin-bottom: 1.5rem;
}
.form--tbl .td-label{
	line-height: 1.2;
	margin-bottom: 1rem;
}
.form--tbl .td-detail-txt:not(:first-child){
	margin-top: 0.5rem;
}
.form--tbl .unit-wrap{
	display: flex;
	align-items: center;
}
.form--tbl .unit-wrap .unit:not(:last-child){
	margin-right: 1rem;
}

@media only screen and (max-width: 599px) {
	.form--tbl th,
	.form--tbl td{
		display: block;
	}
	.form--tbl th{
		padding-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	.form--tbl th{
		width: 23.8rem;
	}
	.form--tbl tr:not(:first-child) th{
		padding-top: 3rem;
	}
	.form--tbl tr:not(:last-child) th,
	.form--tbl tr:not(:last-child) td{
		border-bottom: 1px solid #EEEEEE;
	}
	.form--tbl tr:not(:last-child) th{
		padding-bottom: 3rem;
	}
	.form--tbl td{
		padding-left: 2rem;
	}
	.form--tbl tr:not(:first-child) td{
		padding-top: 2rem;
	}
	.form--tbl tr:not(:last-child) td{
		padding-bottom: 2rem;
	}

	.form--tbl .req-cell-inner > p{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.form--tbl .td-txt{
		margin-bottom: 1rem;
	}
}

/* response-output */
.wpcf7 form .wpcf7-response-output{
	padding: 2.4rem 2rem;
	border: none !important;
}
.wpcf7 form:not(.sent) .wpcf7-response-output{
	background-color: #980404;
	color: #fff;
}
.wpcf7 .recaptha-caption{
	margin-top: 10rem;
	font-size: 1.3rem;
	line-height: 1.69;
}
.wpcf7 .recaptha-caption a{
	text-decoration: underline;
}
.grecaptcha-badge { visibility: hidden; }
.wpcf7 form.sent .block-lead,
.wpcf7 form.sent .form--tbl,
.wpcf7 form.sent .btn--form,
.wpcf7 form.sent .recaptha-caption,
.wpcf7 form.sent .wpcf7-response-output{
	display: none;
}
.wpcf7 form .sent-thankyou-message{
	display: none;
}
.wpcf7 form.sent .sent-thankyou-message{
	display: block;
	padding: 3rem;
}
.wpcf7 form.sent .sent-thankyou-message .sec-ttl{
	font-size: 1.5em;
	margin-bottom: 3rem;
}

@media print,screen and (min-width: 600px) {
	.wpcf7 form.sent .sent-thankyou-message{
		padding: 6rem;
	}
}

/* unique */
.form--tbl .address-block-postcode{
	display: flex;
}
.form--tbl .address-block-postcode .btn-setaddress{
	width: 15rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-left: 1rem;
	background-color: #297A2C;
	color: #fff;
	border-radius: 0.4rem;
}
.form--tbl span[data-name="your-address"],
.form--tbl span[data-name="your-address2"]{
	display: block;
}
.form--tbl .tr-privacy .td-detail-txt{
	margin-top: 2.5rem;
}

@media screen and (max-width: 599px) {
	.form--tbl .address-block-postcode .unit-wrap{
		flex: 1;
	}
}

@media print,screen and (min-width: 600px) {
	.form--tbl .select--cmn1{
		width: 26rem;
	}
	.form--tbl input[name="your-tel"],
	.form--tbl input[name="your-fax"]{
		width: 46rem;
	}
	.form--tbl input[name="your-postcode"]{
		width: 15.5rem;
	}
	.form--tbl tr.tr-file td,
	.form--tbl tr.tr-privacy td{
		padding-top: 3rem;
	}
}


/*====================================
header
====================================*/
/* hamburger-btn
--------------------------------------*/
.hamburger-btn{
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	z-index: 1001;
	width: 3.5rem;
	height: 3.5rem;
	top: 3rem;
	right: 2rem;
	border-radius: 100%;
}
.hamburger-btn-inner{
	display: block;
	position: absolute;
	width: 1.5rem;
	height: 1rem;
	top: 1.2rem;
	right: 1rem;
	transition: transform 0.35s ease;
	z-index: 2;
}
.hamburger-btn span{
	position: absolute;
	top: 0;
	right: 0;
	width: 1.5rem;
	height: 0.15rem;
	border-radius: 1rem;
	transition: transform 0.35s ease, opacity 0.35s ease, background .3s ease;
}
.hamburger-btn span:nth-child(2){
	top: 0.45rem;
}
.hamburger-btn span:last-child{
	top: 0.9rem;
}

.hamburger-btn.is--open:before,
.hamburger-btn.is--open:after{
	opacity: 0;
}
.hamburger-btn.is--open .hamburger-btn-inner{
	transform: rotate(360deg);
}
.hamburger-btn.is--open span:first-child,
.hamburger-btn.is--open span:last-child{
	top: 50%;
}
.hamburger-btn.is--open span:first-child{
	transform: rotate(-45deg);
}
.hamburger-btn.is--open span:nth-child(2){
	opacity: 0;
}
.hamburger-btn.is--open span:last-child{
	transform: rotate(45deg);
}

/* hamburger menu
--------------------------------------*/
#hamburger-menu{
	z-index:1000;
	position: fixed;
	box-sizing: border-box;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}
#hamburger-menu.is--open{
	pointer-events: auto;
	opacity: 1;
}
#hamburger-menu .hamburger-logo{
	position: absolute;
	display: block;
	width: 12rem;
	top: 3rem;
	left: 2rem;
}
#hamburger-menu .menu-inner{
	box-sizing: border-box;
	overflow-y: scroll;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 6.5rem 1.5rem;
}
#hamburger-menu .hamburger-nav-container{
	padding: 13.5rem 0 12rem 0;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child){
	margin-bottom: 3rem;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt{
	font-size: 1.8rem;
}
#hamburger-menu .hamburger-btn-container .btn:not(:last-child){
	margin-bottom: 2rem;
}
#hamburger-menu .hamburger-btn-container .btn .icon{
	width: 1.7rem;
	height: 1.7rem;
	margin-right: 1rem;
}
#hamburger-menu .hamburger-btn-container .btn.contact .icon{
	width: 1.5rem;
	height: 1.2rem;
}

/* header
--------------------------------------*/
header{
	box-sizing: border-box;
	z-index: 1000;
	width: 100%;
	padding-top: 3rem;
}
.header-inner{
	box-sizing: border-box;
}
.header-logo-container{
	width: 12rem;
}
.header-logo-container .logo{
	display: block;
}

@media print,screen and (min-width: 600px) {
	header{
		padding-top: 4rem;
	}
	.header-inner{
		padding: 2rem 2rem 2rem 4rem;
		width: 136rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background-color: #fff;
		border-radius: 10rem;
	}
	.header-logo-container{
		width: 14.4rem;
	}
	.header-nav-container{
		display: flex;
		align-items: center;
	}
	.header-nav-container .gnav{
		display: flex;
		align-items: center;
	}
	.header-nav-container .gnav .nav-item:not(:last-child){
		margin-right: 3rem;
	}
	.header-nav-container .gnav .nav-item-txt{
		font-size: 1.5rem;
	}
	.header-nav-container .header-btn-block{
		display: flex;
		align-items: center;
		margin-left: 4rem;
	}
	.header-nav-container .header-btn-block .btn{
		width: 19rem;
		height: 5rem;
	}
	.header-nav-container .header-btn-block .btn:not(:last-child){
		margin-right: 1rem;
	}
	.header-nav-container .header-btn-block .btn .icon{
		width: 1.6rem;
		height: 1.6rem;
		margin-right: 1rem;
	}
	.header-nav-container .header-btn-block .btn .txt{
		font-size: 1.5rem;
	}
	.header-nav-container .header-btn-block .btn.contact .icon{
		width: 1.5rem;
		height: 1.2rem;
	}
}

/*===============================
footer
===============================*/
footer{
	padding: 1rem 0 6.5rem 0;
}
.footer-contact-container{
	width: calc(100% - 2rem);
	margin: 0 auto;
}
.footer-contact-container .contact-block{
	box-sizing: border-box;
	border-radius: 2rem;
	padding: 8rem 0;
}
.footer-contact-container .contact-block .box-ttl{
	margin-bottom: 3rem;
}
.footer-contact-container .contact-block .box-ttl .e-txt{
	font-size: 4rem;
}
.footer-contact-container .contact-block .box-ttl .j-txt{
	line-height: 1;
	margin-top: 1.5rem;
}
.footer-contact-container .contact-block .box-txt,
.footer-contact-container .contact-block .btn{
	width: 29.5rem;
	margin-left: auto;
	margin-right: auto;
}
.footer-contact-container .contact-block .box-txt{
	line-height: 1.43;
	margin-bottom: 3rem;
}
.footer-contact-container .contact-block .btn .icon{
	width: 1.5rem;
	height: 1.2rem;
	margin-right: 1rem;
}
.footer-contact-container .contact-block.download .btn .icon{
	width: 1.7rem;
	height: 1.7rem;
}
.footer-contact-container .contact-block.demo{
	background-color: #F1EFDE;
}

.footer-logo-container{
	padding-top: 6rem;
}
.footer-logo-container .logo-block .logo{
	display: block;
	width: 15.9rem;
}
.footer-logo-container .logo-block .box-link{
	margin-top: 3rem;
	display: flex;
}
.footer-logo-container .logo-block .box-link .link{
	display: inline-block;
	position: relative;
	padding-right: 1.6rem;
	font-size: 1.3rem;
}
.footer-logo-container .logo-block .box-link .link:not(:last-child){
	margin-right: 2rem;
}
.footer-logo-container .logo-block .box-link .link .icon{
	width: 1rem;
	height: 1rem;
	position: absolute;
	right: 0;
	top: calc((100% - 1rem) / 2);
}
.footer-logo-container .sns-block .box-sns{
	display: flex;
	align-items: center;
}
.footer-logo-container .sns-block .sns-item{
	width: 2.6rem;
	height: 2.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}
.footer-logo-container .sns-block .sns-item:not(:last-child){
	margin-right: 1rem;
}
.footer-logo-container .sns-block .sns-item .icon{
	width: 1rem;
	height: 1rem;
}
.footer-logo-container .sns-block .sns-item.youtube .icon{
	width: 1.2rem;
	height: 0.9rem;
}
.footer-logo-container .sns-block .box-copyright{
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}

@media only screen and (max-width: 599px) {
	.footer-contact-container .contact-block:not(:last-child){
		margin-bottom: 1rem;
	}

	.footer-logo-container .logo-block .logo{
		margin: 0 auto;
	}
	.footer-logo-container .logo-block .box-link{
		justify-content: center;
	}
	.footer-logo-container .sns-block{
		margin-top: 3rem;
	}
	.footer-logo-container .sns-block .box-sns{
		justify-content: center;
		margin-bottom: 2rem;
	}
	.footer-logo-container .sns-block .box-copyright{
		text-align: center;
	}
}

@media print,screen and (min-width: 600px) {
	footer{
		padding: 2rem 0 6rem 0;
	}
	.footer-contact-container{
		width: calc(100% - 4rem);
		display: flex;
	}
	.footer-contact-container .contact-block{
		width: calc((100% - 1.3rem * 2) / 3);
	}
	.footer-contact-container .contact-block:not(:nth-child(3n)){
		margin-right: 1.3rem;
	}
	.footer-contact-container .contact-block.download .btn .icon{
		width: 1.6rem;
		height: 1.6rem;
	}

	.footer-logo-container{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 120rem;
	}
	.footer-logo-container .logo-block .box-link .link:not(:last-child){
		margin-right: 3rem;
	}
	.footer-logo-container .sns-block{
		display: flex;
		align-items: center;
	}
	.footer-logo-container .sns-block .box-copyright{
		margin-left: 4rem;
	}
}

/*====================================
top
====================================*/
#top .sec-main{
	overflow: hidden;
	background: linear-gradient(to bottom,transparent calc(100% - 11rem), #fff calc(100% - 11rem));
}
#top .sec-main .container-catch{
	position: relative;
	z-index: 3;
	padding-top: 7.5rem;
	padding-bottom: 15rem;
}
#top .sec-main .container-catch .block-logo{
	margin-top: 3rem;
	position: relative;
	z-index: 2;
}
#top .sec-main .container-catch .block-logo .box-logo{
	width: 13.25rem;
}
#top .sec-main .container-catch .block-logo .box-btn .btn.download .icon{
	width: 1.7rem;
	height: 1.7rem;
	margin-right: 1rem;
}
#top .sec-main .container-catch .block-logo .box-btn .btn.note .icon-wrap{
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 100%;
	margin-left: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
#top .sec-main .container-catch .block-logo .box-btn .btn.note .icon{
	width: 0.8rem;
	height: 0.8rem;
}
#top .sec-main .container-catch .deco{
	pointer-events: none;
	position: absolute;
}
#top .sec-main .container-catch .deco1{
	width: 49.9rem;
	right: -10.7rem;
	bottom: -12rem;
	filter: drop-shadow(0.6rem 0.6rem 3rem rgba(0, 0, 0, .1));
}
#top .sec-main .container-catch .deco2{
	width: 13rem;
	bottom: -1.4rem;
	right: 17.5rem;
}

#top .sec-main .container-loop{
	position: relative;
	z-index: 2;
	overflow: hidden;
}
#top .sec-main .container-loop .loop-wrap{
	display: flex;
	width: 100vw;
	height: 23rem;
	overflow: hidden;
}
#top .sec-main .container-loop .loop-item{
	height: 100%;
}
#top .sec-main .container-loop .loop-item:first-child{
	animation: infinity-left-loop 60s -30s linear infinite;
}
#top .sec-main .container-loop .loop-item:last-child{
	animation: infinity-left-loop2 60s linear infinite;
}
#top .sec-main .container-loop .loop-wrap img{
	width: auto;
	height: 100%;
}

@keyframes infinity-left-loop {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes infinity-left-loop2 {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}

@media only screen and (max-width: 599px) {
	#top .sec-main .container-catch .block-logo .box-logo{
		margin: 0 auto 4rem auto;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	body.page--top .header-inner{
		padding: 0;
		background: none;
	}

	#top .sec-main{
		background: linear-gradient(to bottom,transparent calc(100% - 19rem), #fff calc(100% - 19rem));
	}
	#top .sec-main .container-catch{
		width: 120rem;
		padding-top: 9.3rem;
		padding-bottom: 11.3rem;
	}
	#top .sec-main .container-catch .block-catch .catch{
		width: 44rem;
	}
	#top .sec-main .container-catch .block-logo{
		margin-top: 2rem;
		display: flex;
		align-items: flex-end;
	}
	#top .sec-main .container-catch .block-logo .box-logo{
		width: 14.315rem;
		margin-right: 3rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn{
		display: flex;
		align-items: center;
		margin-bottom: 1rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn{
		width: 19rem;
		height: 5rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn:not(:last-child){
		margin-right: 1rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn.download{
		padding-right: 0.4rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn.download .icon{
		width: 1.6rem;
		height: 1.6rem;
	}
	#top .sec-main .container-catch .block-logo .box-btn .btn.note{
		width: 20rem;
		padding-left: 2rem;
	}
	#top .sec-main .container-catch .block-bg{
		pointer-events: none;
		position: absolute;
		right: 2rem;
		top: 9rem;
		font-size: 10rem;
		text-align: right;
	}
	#top .sec-main .container-catch .block-bg .txt1{
		padding-right: 5.5rem;
		margin-bottom: -0.4rem;
	}
	#top .sec-main .container-catch .block-bg .txt2{
		padding-right: 22.1rem;
		margin-bottom: -0.4rem;
	}
	#top .sec-main .container-catch .deco1{
		width: 70.6rem;
		right: -3.6rem;
		bottom: -12.1rem;
	}
	#top .sec-main .container-catch .deco2{
		width: 15rem;
		right: -3rem;
		bottom: -8.5rem;
	}

	#top .sec-main .container-loop .loop-wrap{
		height: 38rem;
	}
	#top .sec-main .container-loop .loop-item:first-child{
		animation: infinity-left-loop 80s -40s linear infinite;
	}
	#top .sec-main .container-loop .loop-item:last-child{
		animation: infinity-left-loop2 80s linear infinite;
	}
}

/* about
--------------------------------------*/
#top .sec-about{
	padding: 10rem 0;
}
#top .sec-about .sec-ttl .e-txt{
	margin-bottom: 0.5rem;
}
#top .sec-about .sec-ttl .j-txt{
	line-height: 1.56;
}
#top .sec-about .container-about .block-txt .box-catch{
	font-size: 2.4rem;
	line-height: 1.83;
}
#top .sec-about .container-about .block-txt .box-txt{
	margin-top: 4rem;
	line-height: 1.93;
}
#top .sec-about .container-about .block-img .movie{
	border-radius: 1rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-about .sec-ttl{
		margin-bottom: 6rem;
	}
	#top .sec-about .container-about .block-img{
		margin-top: 6rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-about{
		margin-top: -10.4rem;
		padding-top: 24.4rem;
		padding-bottom: 10rem;
		position: relative;
	}
	#top .sec-about .bg{
		pointer-events: none;
		position: absolute;
		top: 0;
		right: 0;
		height: 42rem;
		width: calc((100% - 112rem) / 2 + 34rem);
		border-radius: 0 0 0 1rem;
	}
	#top .sec-about .sec-ttl,
	#top .sec-about .container-about{
		position: relative;
		z-index: 2;
	}
	#top .sec-about .sec-ttl{
		text-align: center;
	}
	#top .sec-about .container-about{
		display: flex;
		align-items: center;
	}
	#top .sec-about .container-about .block-txt{
		flex: 1;
		order: 2;
		padding-left: 8rem;
	}
	#top .sec-about .container-about .block-txt .box-txt{
		line-height: 2.18;
	}
	#top .sec-about .container-about .block-img{
		width: 56rem;
	}
}

/* ba
--------------------------------------*/
#top .sec-ba .wrap-process .area-ttl{
	border-radius: 1rem 1rem 0 0;
	height: 4rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}
#top .sec-ba .wrap-process .area-content{
	padding: 3rem 4rem;
	border-radius: 0 0 1rem 1rem;
}
#top .sec-ba .wrap-process .flow-list{
	position: relative;
}
#top .sec-ba .wrap-process .flow-list .block-figure{
	position: absolute;
}
#top .sec-ba .wrap-process .flow-list .block-figure .border{
	position: relative;
}
#top .sec-ba .wrap-process .flow-list .block-figure .border:before,
#top .sec-ba .wrap-process .flow-list .block-figure .border:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
}
#top .sec-ba .wrap-process .flow-list .block-figure .box-txt{
	position: absolute;
	border-radius: 0.4rem;
}
#top .sec-ba .wrap-process .flow-list .block-figure .box-txt .item-txt{
	font-size: 1.6rem;
}
#top .sec-ba .wrap-process .flow-list .block-figure .box-txt .item-num{
	box-sizing: border-box;
	width: 3.5rem;
	height: 3.5rem;
	border: 0.2rem solid #1A1311;
	border-radius: 100%;
	font-size: 1.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
#top .sec-ba .wrap-process .flow-block .box-img img{
	border-radius: 0.6rem;
}
#top .sec-ba .wrap-process .flow-block .box-txt{
	margin-top: 1rem;
	font-size: 1.4rem;
	line-height: 1.71;
}

#top .sec-ba .wrap-process1 .flow-block{
	position: relative;
	padding-top: 0.5rem;
}
#top .sec-ba .wrap-process1 .flow-block .box-img{
	position: relative;
}
#top .sec-ba .wrap-process1 .flow-block:not(:last-child):before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
}
#top .sec-ba .wrap-process1 .flow-block .box-img .num{
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	position: absolute;
	top: -0.5rem;
	left: -0.5rem;
}

#top .sec-ba .outer-before{
	padding-top: 10rem;
}
#top .sec-ba .outer-before .outer-ttl{
	font-size: 2.6rem;
	line-height: 1.38;
	margin-bottom: 4rem;
}
#top .sec-ba .outer-before .wrap-process .flow-list .block-figure{
	left: -7.5rem;
	height: 100%;
	width: 3.5rem;
}
#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border{
	width: 0.3rem;
	height: 100%;
	margin: 0 auto;
}
#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:before,
#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:after{
	width: 2.9rem;
	height: 0.3rem;
	background-color: #1A1311;
}
#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt{
	position: absolute;
	width: 2.6rem;
	height: 22.2rem;
	left: 0.45rem;
}
#top .sec-ba .outer-before .wrap-process .flow-block:not(:last-child):before{
	width: 1.4rem;
	height: 1rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	right: calc((100% - 1.4rem) / 2);
	background-color: #1A1311;
}
#top .sec-ba .outer-before .wrap-process2 .flow-block{
	width: 18rem;
	margin: 0 auto;
}

#top .sec-ba .outer-after{
	background: url(../img/top/ba-after-bg-sp.jpg) no-repeat center top;
	background-size: cover;
	padding-top: 18rem;
	padding-bottom: 12rem;
	position: relative;
}
#top .sec-ba .outer-after .bg-triangle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#top .sec-ba .outer-after .outer-ttl{
	font-size: 3.2rem;
	margin-bottom: 4rem;
}
#top .sec-ba .outer-after .outer-ttl .large{
	font-size: 5rem;
}
#top .sec-ba .outer-after .wrap-process1 .area-content{
	padding: 2.5rem 2rem 9.7rem 2rem;
}
#top .sec-ba .outer-after .wrap-process .flow-list{
	display: flex;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure{
	position: absolute;
	left: 0;
	bottom: -5.4rem;
	width: 100%;
	height: 2.5rem;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border{
	width: 100%;
	height: 0.2rem;
	margin: calc((2.5rem - 0.2rem) / 2) 0 0 0;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border:before,
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border:after{
	width: 0.2rem;
	height: 1.9rem;
	bottom: 0;
	background-color: #297A2C;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border:after{
	right: 0;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .box-txt{
	width: 19.4rem;
	height: 2.5rem;
	left: calc((100% - 19.4rem) / 2);
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .box-txt .item-num{
	font-size: 2rem;
	margin: -0.5rem 0.2rem 0 0.2rem;
	border-color: #297A2C;
}
#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .box-txt .item-kome{
	font-size: 1.2rem;
	position: absolute;
	right: 0.5rem;
	top: 0;
}
#top .sec-ba .outer-after .wrap-process1 .flow-block{
	width: calc((100% - 3rem) / 2);
}
#top .sec-ba .outer-after .wrap-process1 .flow-block:not(:last-child){
	margin-right: 3rem;
}
#top .sec-ba .outer-after .wrap-process1 .flow-block:not(:last-child):before{
	width: 1.2rem;
	height: 1.8rem;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	top: 4.65rem;
	right: -1.9rem;
	background-color: #297A2C;
}
#top .sec-ba .outer-after .wrap-process1 .block-kome{
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	font-size: 1.3rem;
}
#top .sec-ba .outer-after .wrap-process2 .area-content{
	padding: 2.8rem 1.3rem 3rem 1.3rem;
}
#top .sec-ba .outer-after .wrap-process2 .box-txt{
	margin-top: 2.4rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-ba .wrap-process2{
		margin-top: 3rem;
	}

	#top .sec-ba .outer-before{
		padding-bottom: 6rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list{
		width: 18rem;
		margin-left: auto;
		margin-right: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure{
		top: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:before,
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:after{
		left: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:before{
		top: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:after{
		bottom: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt{
		top: calc((100% - 22.2rem) / 2);
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt .item-txt{
		writing-mode: vertical-rl;
		text-orientation: upright;
		margin: 0 auto;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt .item-txt.txt1{
		letter-spacing: 0.35em;
		margin-top: 0.5rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt .item-num{
		margin-left: -0.45rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt .item-txt.txt2{
		margin-top: 0.5rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-block:not(:last-child){
		margin-bottom: 3rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-block:not(:last-child):before{
		bottom: -2rem;
	}
	#top .sec-ba .outer-before .wrap-process2 .flow-block .box-txt{
		width: calc(100% + 2em);
		margin-left: -1em;
	}

	#top .sec-ba .outer-after .wrap-process2 .box-txt{
		margin-left: 1.5rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-ba .wrap-process{
		display: flex;
		flex-direction: column;
	}
	#top .sec-ba .wrap-process .area-content{
		padding: 2rem 4rem 10.2rem 4rem;
		flex: 1;
	}
	#top .sec-ba .wrap-process .flow-block .box-img .num{
		width: 2.4rem;
		height: 2.4rem;
		top: -0.6rem;
		left: -0.6rem;
		font-size: 1.2rem;
	}

	#top .sec-ba .outer-before{
		padding-top: 8rem;
		position: relative;
		z-index: 2;
	}
	#top .sec-ba .outer-before .container-before,
	#top .sec-ba .outer-after .container-after{
		display: flex;
		justify-content: space-between;
	}
	#top .sec-ba .outer-before .wrap-process1{
		width: 87rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list{
		display: flex;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure{
		left: 0;
		bottom: -5.4rem;
		width: 100%;
		height: 2.8rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border{
		width: 100%;
		height: 0.2rem;
		margin: calc((2.8rem - 0.2rem) / 2) 0 0 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:before,
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:after{
		width: 0.2rem;
		height: 3rem;
		bottom: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .border:after{
		right: 0;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt{
		width: 18rem;
		height: 2.8rem;
		left: calc((100% - 18rem) / 2);
		bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#top .sec-ba .outer-before .wrap-process .flow-list .block-figure .box-txt .item-num{
		width: 3.4rem;
		height: 3.4rem;
		font-size: 2rem;
		margin: -0.3rem 0.2rem 0 0.2rem;
	}
	#top .sec-ba .outer-before .wrap-process1 .flow-block{
		width: calc((100% - 2.4rem * 3) / 4);
	}
	#top .sec-ba .outer-before .wrap-process1 .flow-block:not(:last-child){
		margin-right: 2.4rem;
	}
	#top .sec-ba .outer-before .wrap-process1 .flow-block:not(:last-child):before{
		width: 1rem;
		height: 1.4rem;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		top: 6.3rem;
		right: -1.7rem;
	}
	#top .sec-ba .outer-before .wrap-process .flow-block .box-txt{
		margin-top: 1.2rem;
	}
	#top .sec-ba .outer-before .wrap-process2{
		width: 24rem;
	}
	#top .sec-ba .outer-before .wrap-process2 .area-content{
		padding: 2.6rem 3rem 3rem 3rem;
	}

	#top .sec-ba .outer-after{
		margin-top: -6.1rem;
		background-image: url(../img/top/ba-after-bg-pc.jpg);
		padding-bottom: 10rem;
	}
	#top .sec-ba .outer-after .bg-triangle{
		height: 10rem;
		top: -0.1rem;
	}
	#top .sec-ba .outer-after .wrap-process{
		width: calc((100% - 2rem) / 2);
	}
	#top .sec-ba .outer-after .wrap-process1 .area-content{
		padding: 2rem 4rem 10.2rem 4rem;
	}
	#top .sec-ba .outer-after .wrap-process .flow-list .block-figure{
		height: 2.8rem;
	}
	#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border{
		margin: calc((2.8rem - 0.2rem) / 2) 0 0 0;
	}
	#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border:before,
	#top .sec-ba .outer-after .wrap-process .flow-list .block-figure .border:after{
		height: 3rem;
	}
	#top .sec-ba .outer-after .wrap-process1 .flow-block:not(:last-child):before{
		right: -2.1rem;
		top: 6.3rem;
	}
	#top .sec-ba .outer-after .wrap-process1 .block-kome{
		right: 4rem;
	}
	#top .sec-ba .outer-after .wrap-process2 .area-content{
		padding: 4.1rem 5.5rem 4rem 5.5rem;
	}
	#top .sec-ba .outer-after .wrap-process2 .box-txt{
		margin-top: 2.1rem;
		display: flex;
		justify-content: center;
	}
}

/* advantage
--------------------------------------*/
#top .sec-advantage .outer-effect{
	padding-top: 10rem;
}
#top .sec-advantage .outer-effect .container-effect{
	padding-top: 1.9rem;
}
#top .sec-advantage .outer-effect .block-effect{
	box-sizing: border-box;
	position: relative;
	border-radius: 1rem;
	padding: 3.5rem 2rem 4rem 2rem;
}
#top .sec-advantage .outer-effect .block-effect .box-ttl-wrap{
	position: absolute;
	top: -1.9rem;
	left: 0;
	width: 100%;
	height: 3.8rem;
	display: flex;
	justify-content: center;
}
#top .sec-advantage .outer-effect .block-effect .box-ttl{
	box-sizing: border-box;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 1.5rem;
	font-size: 2.2rem;
	letter-spacing: 0.02em;
	border-radius: 0.4rem;
}
#top .sec-advantage .outer-effect .block-effect .box-img{
	border: 1px solid #EEEEEE;
	border-radius: 1rem;
	width: 100%;
	height: 20rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
}
#top .sec-advantage .outer-effect .block-effect .box-img img{
	width: 26.27rem;
}
#top .sec-advantage .outer-effect .block-effect.block2 .box-img img{
	width: 27.55rem;
}
#top .sec-advantage .outer-effect .block-effect .box-subttl{
	font-size: 1.8rem;
	line-height: 1.44;
}
#top .sec-advantage .outer-effect .block-effect .box-txt{
	margin-top: 2rem;
}
#top .sec-advantage .outer-effect .block-effect .num-line{
	display: flex;
	align-items: flex-start;
}
#top .sec-advantage .outer-effect .block-effect .num-line:not(:last-child){
	margin-bottom: 1rem;
}
#top .sec-advantage .outer-effect .block-effect .num-line .num{
	width: 2rem;
	height: 2rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-top: 0.3rem;
}
#top .sec-advantage .outer-effect .block-effect .num-line .txt{
	flex: 1;
	padding-left: 0.8rem;
}

#top .sec-advantage .outer-achieve{
	padding-top: 14rem;
	padding-bottom: 15.5rem;
	position: relative;
	overflow: hidden;
}
#top .sec-advantage .outer-achieve .bg-triangle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#top .sec-advantage .outer-achieve .outer-ttl{
	margin-bottom: 4rem;
}
#top .sec-advantage .outer-achieve .outer-ttl .e-txt{
	font-size: 2rem;
	line-height: 1.45;
	margin-bottom: 2rem;
}
#top .sec-advantage .outer-achieve .outer-ttl .j-txt{
	font-size: 3.2rem;
	line-height: 1.34;
}
#top .sec-advantage .outer-achieve .outer-ttl .j-txt .small{
	font-size: 2.4rem;
}
#top .sec-advantage .outer-achieve .block-img{
	box-sizing: border-box;
	position: relative;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, .38);
	padding: 3rem 1.8rem 5rem 1.8rem;
}
#top .sec-advantage .outer-achieve .block-img .box-baloon{
	position: absolute;
	box-sizing: border-box;
	bottom: -7.4rem;
	width: 14rem;
	border: 1px solid #297A2C;
	border-radius: 0.8rem;
	padding: 2rem 1rem;
}
#top .sec-advantage .outer-achieve .block-img .box-baloon.baloon1{
	left: 2.2rem;
}
#top .sec-advantage .outer-achieve .block-img .box-baloon.baloon2{
	right: 2.2rem;
}
#top .sec-advantage .outer-achieve .block-img .box-baloon .item-txt{
	font-size: 1.3rem;
	line-height: 1.38;
	margin-top: 0.9rem;
}
#top .sec-advantage .outer-achieve .block-achieve{
	margin-top: 10.4rem;
}
#top .sec-advantage .outer-achieve .block-achieve .box1 .item-ttl{
	display: inline-block;
	padding: 0.7rem 1.5rem;
	border-radius: 0.4rem;
	font-size: 2.2rem;
	letter-spacing: 0.02em;
}
#top .sec-advantage .outer-achieve .block-achieve .box1 .item-txt{
	margin-top: 1.5rem;
	font-size: 1.3rem;
}
#top .sec-advantage .outer-achieve .block-achieve .box1 .item-triangle{
	width: 2.5rem;
	height: 1.2rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	margin: 1rem auto 1.5rem auto;
}
#top .sec-advantage .outer-achieve .block-achieve .box2{
	font-size: 1.8rem;
	line-height: 1.44;
}
#top .sec-advantage .outer-achieve .block-bg-txt{
	position: absolute;
	bottom: 3rem;
	left: 0;
}
#top .sec-advantage .outer-achieve .block-bg-txt .loop-wrap{
	display: flex;
	width: 100vw;
	overflow: hidden;
}
#top .sec-advantage .outer-achieve .block-bg-txt .loop-item{
	font-size: 8rem;
	line-height: 1.3;
	display: flex;
}
#top .sec-advantage .outer-achieve .block-bg-txt .loop-item:first-child{
	animation: infinity-left-loop 60s -30s linear infinite;
}
#top .sec-advantage .outer-achieve .block-bg-txt .loop-item:last-child{
	animation: infinity-left-loop2 60s linear infinite;
}
#top .sec-advantage .outer-achieve .deco{
	position: absolute;
	pointer-events: none;
	width: 24.5rem;
	bottom: 5.55rem;
	right: -3.25rem;
	filter: drop-shadow(0.6rem 0.6rem 3rem rgba(0, 0, 0, .1));
}

@media only screen and (max-width: 599px) {
	#top .sec-advantage .outer-effect{
		padding-bottom: 6rem;
	}
	#top .sec-advantage .outer-effect .block-effect:not(:last-child){
		margin-bottom: 5.9rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-advantage .outer-effect{
		position: relative;
		z-index: 2;
	}
	#top .sec-advantage .outer-effect .container-effect{
		padding-top: 2.2rem;
		display: flex;
		justify-content: space-between;
	}
	#top .sec-advantage .outer-effect .block-effect{
		width: calc((100% - 2rem) / 2);
		padding: 6.2rem 4rem 4rem 4rem;
	}
	#top .sec-advantage .outer-effect .block-effect .box-ttl-wrap{
		top: -2.2rem;
		height: 4.4rem;
	}
	#top .sec-advantage .outer-effect .block-effect .box-ttl{
		padding: 0 2rem;
	}
	#top .sec-advantage .outer-effect .block-effect .box-img{
		margin-bottom: 4rem;
		height: 20rem;
		text-align: center;
	}
	#top .sec-advantage .outer-effect .block-effect .box-img img{
		width: 28.026rem;
	}
	#top .sec-advantage .outer-effect .block-effect.block2 .box-img img{
		width: 34.484rem;
	}

	#top .sec-advantage .outer-achieve{
		margin-top: -5.2rem;
		padding-bottom: 19.5rem;
	}
	#top .sec-advantage .outer-achieve .bg-triangle{
		height: 10rem;
	}
	#top .sec-advantage .outer-achieve .block-img{
		width: 88rem;
		padding: 4.1rem 7.97rem 5.2rem 5.5rem;
	}
	#top .sec-advantage .outer-achieve .block-img .box-baloon{
		border-radius: 100%;
		width: 17rem;
		height: 17rem;
		padding: 3.8rem 1.8rem 0 1.8rem;
		bottom: -3rem;
	}
	#top .sec-advantage .outer-achieve .block-img .box-baloon.baloon1{
		left: 2rem;
	}
	#top .sec-advantage .outer-achieve .block-img .box-baloon.baloon2{
		right: 2rem;
	}
	#top .sec-advantage .outer-achieve .block-achieve{
		position: relative;
		z-index: 2;
		margin-top: -2.2rem;
	}
	#top .sec-advantage .outer-achieve .block-achieve .box1 .item-ttl{
		padding: 1.1rem 2rem;
	}
	#top .sec-advantage .outer-achieve .block-bg-txt{
		bottom: 6rem;
	}
	#top .sec-advantage .outer-achieve .block-bg-txt .loop-item{
		font-size: 11rem;
	}
	#top .sec-advantage .outer-achieve .deco{
		width: 66.6rem;
		bottom: 7rem;
		right: calc((100vw - 144rem) / 2 - 6.3rem);
	}
	#top .sec-advantage .outer-achieve .block-bg-txt .loop-item:first-child{
		animation: infinity-left-loop 80s -40s linear infinite;
	}
	#top .sec-advantage .outer-achieve .block-bg-txt .loop-item:last-child{
		animation: infinity-left-loop2 80s linear infinite;
	}
}

/* flow
--------------------------------------*/
#top .sec-flow{
	padding: 10rem 0;
}
#top .sec-flow .flow-block{
	padding-top: 0.9rem;
	position: relative;
}
#top .sec-flow .flow-block:not(:last-child):before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 2.3rem;
	height: 1.5rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	right: calc((100% - 2.3rem) / 2);
	background-color: #297A2C;
}
#top .sec-flow .flow-block .box-img{
	position: relative;
	box-sizing: border-box;
	width: 29.5rem;
	height: 29.5rem;
	border: 0.2rem solid #297A2C;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#top .sec-flow .flow-block .box-img img{
	width: 16rem;
}
#top .sec-flow .flow-block.block3 .box-img img{
	width: 14.414rem;
}
#top .sec-flow .flow-block .box-img .item-ttl{
	position: absolute;
	width: 9rem;
	height: 3rem;
	border-radius: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -0.9rem;
	left: calc((100% - 9rem) / 2);
}
#top .sec-flow .flow-block .box-txt{
	margin-top: 2rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-flow .flow-block:not(:last-child){
		margin-bottom: 5.5rem;
	}
	#top .sec-flow .flow-block:not(:last-child):before{
		bottom: -3.5rem;
	}
	#top .sec-flow .flow-block .box-img{
		margin: 0 auto;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-flow .container-flow{
		display: flex;
	}
	#top .sec-flow .flow-block{
		padding-top: 1.5rem;
		width: calc((100% - 2.6rem * 3) / 4);
	}
	#top .sec-flow .flow-block:not(:last-child){
		margin-right: 2.6rem;
	}
	#top .sec-flow .flow-block:not(:last-child):before{
		width: 1.1rem;
		height: 2.4rem;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		right: -1.9rem;
		top: 13.4rem;
	}
	#top .sec-flow .flow-block .box-img{
		width: 26rem;
		height: 26rem;
	}
	#top .sec-flow .flow-block.block2 .box-img img{
		width: 18rem;
	}
	#top .sec-flow .flow-block.block3 .box-img img{
		width: 14.8rem;
	}
	#top .sec-flow .flow-block .box-img .item-ttl{
		width: 8.8rem;
		height: 3.1rem;
		top: -1.5rem;
		left: calc((100% - 8.8rem) / 2);
	}
}

/* faq
--------------------------------------*/
#top .sec-faq{
	padding: 10rem 0;
}
#top .sec-faq .faq-item{
	position: relative;
	padding: 2.2rem 2rem 2rem 2rem;
	border: 1px solid transparent;
	border-radius: 1rem;
	transition: border .3s ease;
	cursor: pointer;
}
#top .sec-faq .faq-item:not(:last-child){
	margin-bottom: 1rem;
}
#top .sec-faq .faq-item .q-box,
#top .sec-faq .faq-item .a-box{
	display: flex;
	align-items: flex-start;
}
#top .sec-faq .faq-item .q-icon,
#top .sec-faq .faq-item .a-icon{
	font-size: 2rem;
	margin-top: 0.3rem;
}
#top .sec-faq .faq-item .q-txt,
#top .sec-faq .faq-item .a-txt{
	flex: 1;
	padding-left: 1rem;
}
#top .sec-faq .faq-item .a-box{
	margin-top: 1.5rem;
}
#top .sec-faq .faq-item .btn{
	width: 100%;
	height: 1.6rem;
	position: relative;
}
#top .sec-faq .faq-item .btn:before,
#top .sec-faq .faq-item .btn:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #297A2C;
	width: 0.2rem;
	height: 100%;
	border-radius: 0.1rem;
	left: calc((100% - 0.2rem) / 2);
	top: 0;
	transition: opacity .3s ease, transform .3s ease;
}
#top .sec-faq .faq-item .btn:after{
	transform: rotate(90deg);
}

#top .sec-faq .faq-item.is--open{
	border-color: #297A2C;
}
#top .sec-faq .faq-item.is--open .btn:before{
	transform: rotate(90deg);
	opacity: 0;
}

@media only screen and (max-width: 599px) {
	#top .sec-faq .faq-item .btn{
		margin-top: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-faq .container-faq{
		width: 88rem;
	}
	#top .sec-faq .faq-item{
		padding: 2.3rem 5.6rem 2.3rem 3rem;
	}
	#top .sec-faq .faq-item .q-txt,
	#top .sec-faq .faq-item .a-txt{
		padding-left: 1.4rem;
	}
	#top .sec-faq .faq-item .btn{
		position: absolute;
		right: 1.5rem;
		top: 2.2rem;
		width: 2.6rem;
		height: 2.6rem;
	}
	#top .sec-faq .faq-item .btn:before,
	#top .sec-faq .faq-item .btn:after{
		height: 1.6rem;
		top: 0.5rem;
	}
}

/* spec
--------------------------------------*/
#top .sec-spec{
	background: url(../img/top/spec-bg-sp.jpg) no-repeat center center;
	background-size: cover;
	padding: 10rem 0;
}
#top .sec-spec .container-spec{
	box-sizing: border-box;
	padding: 3rem 2rem 6rem 2rem;
	border-radius: 1rem;
}
#top .sec-spec .container-spec .tbl-line{
	display: flex;
	position: relative;
}
#top .sec-spec .container-spec .tbl-line:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background: linear-gradient(to right,#297A2C 3rem, #EEEEEE 3rem);
}
#top .sec-spec .container-spec .tbl-th,
#top .sec-spec .container-spec .tbl-td{
	padding-bottom: 1.3rem;
}
#top .sec-spec .container-spec .tbl-line:not(:first-child) .tbl-th,
#top .sec-spec .container-spec .tbl-line:not(:first-child) .tbl-td{
	padding-top: 1.7rem;
}
#top .sec-spec .container-spec .tbl-th{
	width: 9rem;
}
#top .sec-spec .container-spec .tbl-td{
	flex: 1;
}
#top .sec-spec .container-spec sub{
	font-size: 0.7em;
}
#top .sec-spec .container-spec .btn{
	margin-top: 4rem;
}
#top .sec-spec .container-spec .btn .icon{
	width: 1.7rem;
	height: 1.7rem;
	margin-right: 1rem;
}

@media print,screen and (min-width: 600px) {
	#top .sec-spec{
		background-image: url(../img/top/spec-bg-pc.jpg);
	}
	#top .sec-spec .container-spec{
		width: 88rem;
		padding: 4rem 6rem 6rem 6rem;
	}
	#top .sec-spec .container-spec .tbl-th,
	#top .sec-spec .container-spec .tbl-td{
		padding-bottom: 1.5rem;
	}
	#top .sec-spec .container-spec .tbl-line:not(:first-child) .tbl-th,
	#top .sec-spec .container-spec .tbl-line:not(:first-child) .tbl-td{
		padding-top: 2rem;
	}
	#top .sec-spec .container-spec .tbl-th{
		width: 17rem;
	}
	#top .sec-spec .container-spec .btn{
		width: 19rem;
		height: 5rem;
		margin-left: auto;
		margin-right: auto;
	}
}

/*====================================
404
====================================*/
#page404 .sec-404{
	padding-bottom: 10rem;
}
#page404 .sec-404 .btn{
	margin-top: 4rem;
}

@media print,screen and (min-width: 600px) {
	#page404 .sec-404 .btn{
		width: 19rem;
		height: 5rem;
		margin-left: auto;
		margin-right: auto;
	}
}

/*====================================
contact
====================================*/
#contact .sec-lead{
	padding-bottom: 6rem;
}

#contact .sec-form .container-form{
	box-sizing: border-box;
	padding-top: 4.5rem;
	padding-bottom: 10rem;
}

@media only screen and (max-width: 599px) {
	#contact .sec-form .container-form{
		width: 100%;
	}
}

@media print,screen and (min-width: 600px) {
	#contact .sec-lead{
		padding-bottom: 4rem;
	}

	#contact .sec-form{
		padding-bottom: 10rem;
	}
	#contact .sec-form .container-form{
		width: 104rem;
		padding: 8rem;
		border-radius: 1rem;
	}
	#contact .sec-form .container-form .container-inner{
		width: 100%;
	}
}

/*====================================
document
====================================*/
/* archive
--------------------------------------*/
#document .sec-archive{
	padding-bottom: 10rem;
}
#document .sec-archive .article-card{
	box-sizing: border-box;
	border-radius: 1rem;
	padding: 3.9rem 2rem 6rem 2rem;
}
#document .sec-archive .article-img{
	width: 100%;
	height: 34rem;
}
#document .sec-archive .article-img:not(.img--dummy) img{
	width: auto;
	height: 100%;
}
#document .sec-archive .article-img.img--dummy{
	background-color: #F6F6F6;
	border: 1px solid #EEEEEE;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
#document .sec-archive .article-img.img--dummy img{
	width: 60%;
	height: auto;
	opacity: 0.3;
}
#document .sec-archive .article-ttl{
	font-size: 1.8rem;
	line-height: 1.44;
	margin: 2rem 0 3rem 0;
}
#document .sec-archive .article-btn .icon{
	width: 1.7rem;
	height: 1.7rem;
	margin-right: 1rem;
}

@media only screen and (max-width: 599px) {
	#document .sec-archive .article-card:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#document .sec-archive{
		padding-top: 2rem;
	}
	#document .sec-archive .container-article{
		display: flex;
		flex-wrap: wrap;
	}
	#document .sec-archive .article-card{
		width: calc((100% - 2rem * 2) / 3);
	}
	#document .sec-archive .article-card:not(:nth-child(3n)){
		margin-right: 2rem;
	}
	#document .sec-archive .article-card:nth-child(n+4){
		margin-top: 2rem;
		padding: 3rem 3rem 6rem 3rem;
	}
	#document .sec-archive .article-btn{
		width: 19rem;
		height: 5rem;
		margin: 0 auto;
	}
}

/* single
--------------------------------------*/
#document .sec-main{
	padding-bottom: 10rem;
}
#document .sec-main .container-main{
	box-sizing: border-box;
	padding: 4rem 2rem 6rem 2rem;
	border-radius: 1rem;
}
#document .sec-main .container-main .block-img{
	width: 100%;
	height: 34rem;
}
#document .sec-main .container-main .block-img img{
	width: auto;
	height: 100%;
}
#document .sec-main .container-main .single-ttl{
	position: relative;
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
}
#document .sec-main .container-main .single-ttl:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background: linear-gradient(to right,#297A2C 3rem, #EEEEEE 3rem);
}

#document .sec-form{
	padding: 10rem 0;
}

@media only screen and (max-width: 599px) {
	#document .sec-main .container-main .block-img{
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#document .sec-main{
		padding-top: 1rem;
	}
	#document .sec-main .container-main{
		display: flex;
		align-items: flex-start;
		padding: 6rem;
	}
	#document .sec-main .container-main .block-img{
		width: 30rem;
		margin-right: 6rem;
	}
	#document .sec-main .container-main .block-txt{
		flex: 1;
		padding-top: 2rem;
	}
	#document .sec-main .container-main .single-ttl{
		font-size: 1.8rem;
		padding-bottom: 1rem;
		padding-bottom: 1.7rem;
	}

	#document .sec-form .sec-ttl{
		margin-bottom: 6rem;
	}
	#document .sec-form .container-form{
		width: 88rem;
	}
}

/*====================================
download
====================================*/
#download .sec-download{
	padding-bottom: 10rem;
}
#download .sec-download .container-download{
	box-sizing: border-box;
	padding: 6rem 2rem;
	border-radius: 1rem;
}
#download .sec-download .sec-ttl{
	font-size: 1.8rem;
	line-height: 1.72;
	margin-bottom: 4rem;
}
#download .sec-download .btn .icon{
	width: 1.7rem;
	height: 1.7rem;
	margin-right: 1rem;
}
#download .sec-download .block-detail{
	margin-top: 2rem;
	margin-bottom: 4rem;
}

@media print,screen and (min-width: 600px) {
	#download .sec-download{
		padding-top: 2rem;
	}
	#download .sec-download .container-download{
		width: 88rem;
		padding: 6rem;
	}
	#download .sec-download .btn{
		width: 19rem;
		height: 5rem;
		margin: 0 auto;
	}
	#download .sec-download .block-detail{
		margin-bottom: 6rem;
	}
}

/*====================================

====================================*/

/*
--------------------------------------*/

@media only screen and (max-width: 599px) {
}

@media print,screen and (min-width: 600px) {
}


