/*============================
common
============================*/
html {
	scroll-behavior: smooth;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	padding: 3px 10px;
}

#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	display: none;
}

.entry-content {
	margin-bottom: 100px;
}

.spinner {
	width: 40px;
	height: 40px;
	margin: 100px auto;
	background-color: #6CB82D;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0)
	}

	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
	}
}

@media(min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

body {
	counter-reset: number 0;
	/* number のカウンタを 0 にセット */
}

.uk-container {}

.uk-align-center {
	text-align: center;
}

.memo {
	font-size: 0.8em;
	color: #666;
	/* margin: 0 ; */
	line-height: 1.5em;
}

/* block */
.block-title {
	text-align: center;
}

.base-title {
	padding: 20px 0;
	font-weight: 700;
	font-size: 1.9rem;
}

.base-title span {
	color: #1B5D22;
	font-size: 0.8em;
	display: block;
	border-top: 2px solid #1B5D22;
	width: 150px;
	margin: 6px auto 0;
	padding-top: 5px;
}

.base-block {
	padding: 100px 0;
}

.entry-description {
	text-align: center;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.pc {
		display: block;
	}

	.sp {
		display: none;
	}

	.base-block {
		padding: 100px 0;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.base-block {
		padding: 30px 0;
	}

	.base-title {
		font-size: 1.4rem;
	}
}

/* btn */
.btn,
.btn:visited {
	background: #eee;
	display: inline-block;
	margin: 0 auto;
	padding: 15px 40px;
	line-height: 1.6;
	border-radius: 5px;
	font-weight: bold;
	color: #333;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background: #eee;
	text-decoration: none;
}

.primary-btn,
.primary-btn:visited {
	background-color: #FAF109;
	color: #333;
	transition: all 0.2s;
	min-width: 180px;
	position: relative;
}

.primary-btn:hover {
	color: #333;
	background-color: #FAF109;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.primary-btn:after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 50%;
	margin-top: -5px;
}

.fix-cta-btn a {
	background-color: #FAF109;
	color: #333;
	transition: all 0.2s;
	width: 120px;
	height: 120px;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 25px;
	bottom: 25px;
	display: flex;
	border-radius: 50%;
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
	box-shadow: 0 3px 6px rgb(0 0 0 / 30%);
	z-index: 10;
}

.fix-cta-btn a:after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(135deg);
	position: absolute;
	right: 50%;
	bottom: 22px;
	margin-right: -5px;
}

.fix-cta-btn a:hover {
	text-decoration: none;
	bottom: 20px;
}

.fix-cta-btn {
	display: none;
}

.fix-cta-btn.show {
	display: block;
}

@media (min-width: 768px) {
	/*幅768px以上で適用されるスタイル*/
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.fix-cta-btn a {
		width: 100px;
		height: 100px;
		font-size: 14px;
	}

	.fix-cta-btn a:after {
		bottom: 18px;
	}
}

/*scrolldown*/
.scrolldown {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	left: 50%;
	bottom: 10px;
	/*全体の高さ*/
	height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
	/*描画位置*/
	position: absolute;
	left: -15px;
	top: -15px;
	/*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}

/* form */
.form-btn-wrap {
	text-align: center;
	margin: 30px 0;
}

.label-span {
	background-color: #0000FF;
	color: #fff;
	padding: 3px 5px;
	font-size: 0.7em;
	position: relative;
	border-radius: 0;
	margin-left: 10px;
}

.label-span.required {
	background-color: #FF7F00;
	font-weight: 400;
}

.uk-form-horizontal .uk-form-label {
	font-weight: 700;
}

@media (min-width: 960px) {

	/*幅768px以上で適用されるスタイル*/
	.uk-form-horizontal .uk-form-label {
		width: 220px;
	}

	.uk-form-horizontal .uk-form-controls {
		margin-left: 247px;
	}
}

.mw_wp_form_confirm {}

.mw_wp_form_confirm .memo {
	display: none;

}

.uk-form-horizontal>div {
	clear: both;
}

@media (min-width: 959px) {

	/*幅768px以上で適用されるスタイル*/
	.uk-form-horizontal .uk-form-label {
		text-align: right;
	}

	.label-span {
		float: right;
	}
}

@media (max-width: 959px) {
	/*幅767px以下で適用されるスタイル*/

	.form-btn-wrap {}

	.btn {
		min-width: 180px;
		box-sizing: border-box;
		width: 100%;
		margin: 0 0 15px;
	}

	.scrolldown {
		display: none;
	}

	.uk-form-horizontal>div {
		margin: 0 0 20px;
	}

	.uk-form-horizontal p {
		margin: 0;
		padding: 0;
	}

	.mw_wp_form_confirm .uk-form-horizontal>div {
		margin: 0;
		border-bottom: 1px solid #eee;
		padding: 13px 0;
	}

}

/*============================
.Frame
============================*/
/* header */
.site-header {
	padding: 20px 25px;
}

.site-header.fix-header {
	position: absolute;
	z-index: 1;
	margin: 0;
	padding: 20px 25px;
}

.header-logo {
	margin: 0;
	padding: 0;
}

.full-width-title {
	background-color: #eee;
	background-size: cover;
	text-align: center;
	padding: 120px 0;
	position: relative;
}

.full-width-title .entry-title {
	color: #fff;
	font-weight: 700;
	letter-spacing: 2px;
}

.entry-title {
	text-align: center;
	font-weight: 700;
	margin: 50px 0;
}

@media (min-width: 768px) {
	/*幅768px以上で適用されるスタイル*/
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.site-header.fix-header {
		padding: 10px 25px;
	}

	.site-header {
		width: 100%;
		padding: 15px 25px;
	}

	.header-logo {
		margin: 0 auto;
		max-width: 200px;
	}

	.site-info {
		text-align: center;
		margin-top: 15px;
	}

	.full-width-title {
		padding: 40px 0;
	}
}

/* #footer */
.cta-block {
	background-color: #eee;
	background-image: url(./img/cta_bg.jpg);
	background-size: cover;
	background-position: center center;
	text-align: center;
	padding: 80px 0 70px;
	position: relative;
	color: #fff;

}

.cta-block .cta-title {
	font-size: 29px;
	font-weight: 700;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1.4;
}

.cta-block .cta-title::before {
	transform: rotate(-20deg);
	margin-right: 20px;
}

.cta-block .cta-title::after {
	transform: rotate(20deg);
	margin-left: 20px;
}

.cta-block .cta-title::before,
.cta-block .cta-title::after {
	content: '';
	display: block;
	width: 1px;
	height: 35px;
	background: #fff;
}

.cta-block .cta-btn {
	margin: 20px 0;
}

.cta-block .cta-tel {}

.cta-block .cta-tel img {
	filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

footer.site-footer {}

footer.site-footer a {
	color: #333;
	text-decoration: none;
}

footer.site-footer a:hover {
	text-decoration: underline;
}

.footer-logo {
	background-color: #1B5D22;
	text-align: center;
	padding: 20px 0;
	margin-bottom: 10px;
}

footer.site-footer .uk-container {
	font-size: 0.9rem;
}

footer.site-footer .footer-link {}

footer.site-footer .footer-link ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

footer.site-footer .footer-link ul li {
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 0;
}

.cta-block .cta-btn .btn {
	letter-spacing: 2px;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	footer.site-footer .uk-container {
		display: flex;
		justify-content: space-between;
		font-size: 0.9rem;
	}

	.cta-block .cta-btn .btn {
		font-size: 22px;
		min-width: 560px;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.cta-block {
		padding: 25px 15px 20px;
	}

	footer.site-footer .uk-container {
		font-size: 0.7rem;
	}

	.cta-block .cta-btn .btn {
		font-size: 15px;
		margin: 0 auto 15px;
	}
}

/*============================
アニメーション
============================*/
.poyopoyo {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

@keyframes poyopoyo {

	0%,
	40%,
	60%,
	80% {
		transform: scale(1.0);
	}

	50%,
	70% {
		transform: scale(0.98);
	}
}

/*============================
Index
============================*/

/* .Main-img */
/* .Main-img {
	background-color: #eee;
	background-image: url(./img/main_img_bg.jpg);
	background-size: cover;
	text-align: center;
	padding: 110px 0 120px;
	position: relative;
} */
.Main-img {
	/* background-color: #1F891D; */
	background: rgb(31, 137, 29);
	background: linear-gradient(169deg, rgba(31, 137, 29, 1) 30%, rgba(10, 74, 8, 1) 100%);
	padding: 50px 0 90px;
	position: relative;
	text-align: center;
}

.Main-img .mainimg-title {}

.Main-img .mainimg-pop {
	position: absolute;
	left: 50%;
	top: 66px;
	margin-left: 152px;
}

.Main-img .mainimg-txt {
	margin: -40px 0 5px;
}

.Main-img ul.mainimg-point {
	list-style: none;
	margin: 0 10px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Main-img ul.mainimg-point li {
	margin: 15px 0 0;
	padding: 0;
}

.Main-img .mainimg-txt02 {
	margin: 15px 0 4px;
}

.Main-img img {
	margin: 0 auto;
}

.Main-img .mainimg-btn a {
	font-size: 19px;
	box-sizing: border-box;
	padding: 10px 15px;
	letter-spacing: 2px;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.mainimg_ico {
		position: absolute;
		right: 10px;
		bottom: 11px;
	}

	.Main-img .mainimg-btn a {
		min-width: 480px;
		padding: 15px 40px;
	}

	.Main-img ul.mainimg-point li.point02 {
		margin-left: -18px;
		margin-right: -18px;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.Main-img {
		padding: 60px 0 40px;
	}

	.Main-img .mainimg-pop {
		display: none;
	}

	.Main-img .mainimg-title {
		margin: 0 0px;
	}

	.mainimg_ico {
		width: 150px;
		margin: 26px auto 0;
	}

	.Main-img .mainimg-txt {
		margin: -9px 0 0;
	}

	.Main-img .mainimg-txt02 {
		margin-left: 20px;
		margin-right: 20px;
	}

	.Main-img ul.mainimg-point {
		flex-wrap: wrap;
	}

	.Main-img .uk-container {
		padding: 0 20px;
	}

	.Main-img ul.mainimg-point li.point01 {
		width: 100%;
	}

	.Main-img ul.mainimg-point li.point02 {
		margin-right: -7px;
	}

	.Main-img ul.mainimg-point li.point02,
	.Main-img ul.mainimg-point li.point03 {
		width: 50%;
	}
}
/* Logistic_price-block */
#Logistic_price-block {
	margin-top: 70px;
}
.brn-Logistic_price {
	border-radius: 5px;
	border: 1px solid #bf0000;
	padding: 60px 80px;
	max-width: 780px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.brn-Logistic_price {
	}
}

@media screen and (max-width: 768px) {
	.brn-Logistic_price {
		padding: 20px 25px;
	}
}

/*#Outline-block*/
.Outline-block {
	text-align: center;
	padding: 70px 0;
	background-image: url(./img/silhouette_japan.jpg);
	background-repeat: no-repeat;
	background-position: top 0% left 10%;
}

.Outline-block .block-movie {
	margin-top: 20px;
	margin-bottom: 50px;
}

.Outline-block .block-title {
	text-align: center;
	font-size: 30px;
	line-height: 1.6;
	font-weight: 700;
	margin-bottom: 20px;
}

.Outline-block .block-content {}

.Outline-block .block-ico-list {
	margin-top: 50px;
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: center;
	align-items: baseline;
	height: 100%;
	margin: 50px -5px 0;
}

@media screen and (max-width: 768px) {
	.Outline-block .block-ico-list {
		flex-wrap: wrap;
	}
}

.Outline-block .block-ico-list dl {
	width: 20%;
	height: 20%;
}

@media screen and (min-width: 769px) {
	.Outline-block .block-ico-list dl {
		margin: 0 5px 20px;
	}
}

@media screen and (max-width: 768px) {
	.Outline-block .block-ico-list dl {
		width: 33.3%;
	}
}

.Outline-block .block-ico-list dt {
	margin-bottom: 10px;
}

.Outline-block .block-ico-list dd {
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.5em;
}

.Outline-block .block-ico-list dl:nth-of-type(2) dd {
	letter-spacing: 0;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.Outline-block .block-content {
		font-size: 18px;
	}

	.Outline-block .block-ico-list {
		/* width: 600px; */

	}

	.Outline-block .block-ico-list dl {
		width: 20%;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.Outline-block .block-title {
		font-size: 1.3rem;
		margin-bottom: 10px;
	}

	.Outline-block {
		padding: 40px 0;
	}

	.Outline-block .block-ico-list dl {
		width: 33.3%;
	}

}

.Outline-block .block-ico-list a {
	color: #404040;
}

/* #Trouble-block */
#Trouble-block {
	background-color: #eee;
	background-image: url(./img/faq_bg.jpg);
	background-size: cover;
	overflow: hidden;
	position: relative;
}

#Trouble-block::after {
	content: url(./img/faq_person.png);
	position: absolute;
	bottom: -15px;
	left: 64%;
}

#Trouble-block .block-title-wrap {
	text-align: center;
	background-color: #138B1E;
	padding: 38px 15px 28px;
	position: relative;
	margin-bottom: 70px;
	line-height: 1.6;
	font-weight: 600;
}

#Trouble-block .block-title-wrap:after {
	content: "";
	position: absolute;
	top: 100%;
	box-sizing: border-box;
	border-right: 50vw solid transparent;
	border-left: 50vw solid transparent;
	border-top: 20px solid #138B1E;
	left: 0;
	margin-top: -1px;
}

#Trouble-block .block-title {
	color: #FAF109;
	font-size: 1.45rem;
	margin-bottom: 10px;
}

#Trouble-block .block-txt {
	font-size: 2.0rem;
	color: #fff;
	line-height: 1.4;
}

ul.trouble-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.trouble-list li {
	border-bottom: 1px dotted #707070;
	padding: 10px;
	margin: 0;
	position: relative;
	margin-left: 25px;
	font-weight: 700;
	font-size: 1.5rem;
}

ul.trouble-list li:before {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 18px;
	height: 9px;
	margin-top: -9px;
	top: 50%;
	left: -25px;
	transform: rotate(-45deg);
	border-bottom: 3px solid;
	border-left: 3px solid;
	border-color: #13891D;
}

#Trouble-block {}

.Trouble-answer-sub {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 40px 0;
}

.Trouble-answer {
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 700;
	margin: 50px 0;
	color: #1B5D22;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

.Trouble-answer::before {
	transform: rotate(-20deg);
	margin-right: 20px;
}

.Trouble-answer::after {
	transform: rotate(20deg);
	margin-left: 20px;
}

.Trouble-answer::before,
.Trouble-answer::after {
	content: '';
	display: block;
	width: 1px;
	height: 20px;
	background: #1B5D22;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	#Trouble-block .uk-container {
		position: relative;
		display: flex;
		width: 950px;
	}

	#Trouble-block .trouble-alpha {
		width: 73%;
		position: relative;
		z-index: 1;
	}

	#Trouble-block .trouble-beta {
		width: 27%;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	#Trouble-block .block-title-wrap {
		margin-bottom: 50px;
	}

	#Trouble-block .block-txt {
		font-size: 1.5rem;
	}

	ul.trouble-list li:before {
		width: 12px;
		height: 7px;
		left: -15px;
	}

	ul.trouble-list li {
		font-size: 1.0rem;
		margin-left: 22px;
	}

	.Trouble-answer-sub {
		padding-right: 104px;
		padding-top: 30px;
		font-size: 1.2rem;
	}

	.Trouble-answer {
		margin: 20px 10px;
	}

	.Trouble-answer::before,
	.Trouble-answer::after {
		height: 70px;
	}

	#Trouble-block::after {
		content: url(./img/faq_person.png);
		position: absolute;
		bottom: -138px;
		left: 31px;
		transform: scale(0.25, 0.25);
	}
}

/* #Point-block */
#Point-block.Point-block {
	padding-bottom: 0;
}

#Point-block.Point-block .block-title {
	margin-bottom: 20px;
}

#Point-block.Point-block .block-inlink {}

#Point-block.Point-block .block-inlink ul {
	border-top: 1px solid #D5D5D5;
	margin: 0;
	padding: 0;
}

#Point-block.Point-block .block-inlink ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#Point-block.Point-block .block-inlink ul li a {
	display: flex;
	border-bottom: 1px solid #D5D5D5;
	color: #333;
	padding: 22px 10px;
}

#Point-block.Point-block .block-inlink ul li a:hover {
	text-decoration: none;
}

#Point-block.Point-block .block-inlink ul li a .box-point {
	width: 100px;
	color: #13891D;
	font-size: 1.0rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}

#Point-block.Point-block .block-inlink ul li a .box-point span {
	display: block;
	font-size: 36px;

}

#Point-block.Point-block .block-inlink ul li a .box-title {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.5;
}

#Point-block.Point-block .block-content {}

#point-point01.point-box {}

.point-box {}

.point-box .box-img {
	background-position: center center;
	background-size: cover;
}

.point-box .box-detail {}

.point-box .box-detail .box-point {
	color: #13891D;
	font-size: 1.3rem;
	font-weight: 700;
}

.point-box .box-detail .box-point span {
	font-size: 3rem;
	margin-left: 10px;
}

.point-box .box-title {
	font-size: 29px;
	font-weight: 700;
	margin: 0 0 14px;
	line-height: normal;
}

.point-box .box-txt {
	font-size: 18px;
}

.point-box.point-odd-box {
	flex-direction: row-reverse;
}

#point-point01.point-box .box-img {
	background-image: url(./img/point1-bg.svg);
}

#point-point02.point-box .box-img {
	background-image: url(./img/point-img02.jpg);
}

#point-point03.point-box .box-img {
	background-image: url(./img/point3-bg.jpg);
}

#point-point04.point-box .box-img {
	background-image: url(./img/point4-bg.svg);
}

#point-point05.point-box .box-img {
	background-image: url(./img/point5-bg.jpg);
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.point-box {
		display: flex;
	}

	.point-box * {
		box-sizing: border-box;
	}

	.point-box .box-img {
		width: 50%;
	}

	.point-box .box-detail {
		width: 50%;
		padding: 15px 0 50px 40px;
	}

	.point-box.point-odd-box .box-detail {
		padding: 15px 40px 50px 0;
	}

	#Point-block.Point-block .block-inlink ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		list-style: none;
	}

	#Point-block.Point-block .block-inlink ul li {
		width: 50%;
	}

	#Point-block.Point-block .block-inlink ul li:nth-child(odd) a {
		border-right: 1px solid #D5D5D5;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.point-box {
		margin: 0 0 50px;
	}

	.Point-block .block-content {
		margin: 0 15px;
	}

	.point-box .box-img {
		height: 150px;
	}

	#Point-block.Point-block .block-title {
		max-width: 200px;
		margin: 0 auto;
	}

	#Point-block.Point-block .block-inlink ul li a .box-title {
		padding-left: 10px;
	}
}

/* #Trust-block */
#Trust-block {
	background-color: #eee;
	padding-top: 0;
}

#Trust-block .title-bg {
	background-image: url(./img/trust_title_bg.jpg);
	background-image: url(./img/trust_title_bg.jpg);
	padding: 60px 15px 70px;
	font-weight: bold;
	margin-top: 90px;
}

#Trust-block .block-title {
	color: #FAF109;
	font-size: 26px;
	text-shadow: 0 3px 6px rgb(0 0 0 / 30%);
	letter-spacing: 3px;
}

#Trust-block .block-txt {
	text-align: center;
	color: #FFFFFF;
	text-align: center;
	margin: 0 0 33px;
	font-size: 40px;
	line-height: 1.4;
	text-shadow: 0 3px 6px rgb(0 0 0 / 30%);
}

#Trust-block .uk-container {
	position: relative;
	top: -56px;
	max-width: 1000px;
}

.trust-box {
	text-align: center;
	background-color: #fff;
	margin-bottom: 30px;
}

.trust-box .box-title {
	color: #fff;
	background-color: #1B5D22;
	padding: 10px;
	font-weight: 700;
	font-size: 23px;
	text-align: center;
	letter-spacing: 2px;
}

.trust-box .box-content {
	padding: 20px 40px;
}

@media screen and (max-width: 768px) {
	.trust-box .ato-content img {
		max-width: 70%;
		width: 100%;
	}

}

.trust-answer {
	text-align: center;
	margin: 50px 0;
	font-size: 1.5rem;
	font-weight: bold;
}

.trust-txt-box {
	background: #fff;
	margin: 0 0 20px;
}

.trust-txt-box .box-img {}

.trust-txt-box .box-img img {
	width: 100%;
}

.trust-txt-box .box-detail .box-title {
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 700;
	margin: 0 0 5px;
	color: #1B5D22;
}

.trust-txt-box .box-detail .box-content {
	line-height: 1.8;
	font-size: 1.1rem;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.trust-txt-box {
		display: flex;
	}

	.trust-txt-box .box-img {
		width: 40%;
		flex-basis: 40%;
	}

	.trust-txt-box .box-detail {
		width: 55%;
		flex-basis: 55%;
		padding: 30px 30px;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.trust-box .box-title {
		font-size: 1.0rem;
	}

	#Trust-block .block-txt {
		font-size: 21px;
	}

	.trust-answer {
		font-size: 1.2rem;
	}

	.trust-txt-box .box-detail {
		padding: 15px;
	}

	.trust-txt-box .box-detail .box-title {
		font-size: 1.3rem;
	}
}

/* #Voice-block */
#Voice-block {}

#Voice-block .block-title {}

#Voice-block .block-title span {}

#Voice-block .block-txt {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 30px 20px 50px;
	color: #1B5D22;
}

#Voice-block .block-content {}


.voice-box .box-alpha .box-img {}

.voice-box .box-alpha .box-name {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
}

.voice-box .box-beta {
	background-color: #F0F8F0;
	position: relative;
}

.voice-box .box-beta:before {
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	pointer-events: none;
	position: absolute;
	border-color: rgba(90, 230, 40, 0);
	border-top-width: 0px;
	border-bottom-width: 31px;
	border-left-width: 40px;
	border-right-width: 40px;
	margin-top: -10px;
	border-right-color: #F0F8F0;
	right: 100%;
	top: 50px;
}

.voice-box .box-beta .box-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 14px;
	line-height: 1.6;
}

.voice-box .box-beta .box-cmt {}

.voice-box.voice-odd-box {
	flex-direction: row-reverse;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.voice-box {
		display: flex;
		justify-content: space-between;
		margin-bottom: 70px;
	}

	.voice-box .box-alpha {
		width: 25%;
		text-align: center;
	}

	.voice-box .box-beta {
		width: 60%;
		padding: 45px 50px;
	}

	.voice-box.voice-odd-box .box-beta:before {
		left: 100%;
		border-right-color: transparent;
		border-left-color: #F0F8F0;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.voice-box {
		margin-bottom: 40px;
	}

	.voice-box .box-alpha {
		display: flex;
		margin-bottom: 15px;
		padding: 0 10px;
		align-items: center;
	}

	.voice-box .box-alpha .box-img {
		width: 80px;
		padding-right: 15px;
	}

	.voice-box .box-alpha .box-name {
		font-size: 0.8rem;
	}

	.voice-box .box-beta .box-title {
		font-size: 1.2rem;
	}

	.voice-box .box-beta {
		padding: 25px;
	}

	.voice-box .box-beta:before {
		border-top-width: 0;
		border-bottom-width: 30px;
		border-left-width: 15px;
		margin-top: -10px;
		border-bottom-color: #F0F8F0;
		border-right: 15px transparent;
		right: 65%;
		top: -10px;
		transform: rotate(-40deg);
	}
}

/* #Flow-block */
#Flow-block {
	background-color: #eee;
	counter-reset: number 0;
}

.flow-box {
	background: #fff;
	margin: 0 auto 15px;
	background: #fff;
	padding: 20px 15px;
	position: relative;
	min-height: 90px;
}

.flow-box:before {
	counter-increment: number 1;
	content: "0" counter(number);
	display: block;
	background-color: #1B5D22;
	color: #fff;
	height: 100px;
	line-height: 100px;
	width: 100px;
	text-align: center;
	position: absolute;
	left: -10px;
	font-size: 25px;
	font-weight: 400;
}

.flow-box:after {
	content: "";
	border-style: solid;
	border-width: 50px 0 50px 10px;
	position: absolute;
	border-color: transparent transparent transparent #1B5D22;
	left: 90px;
}

.flow-box .box-title {
	font-size: 24px;
	font-weight: bold;
	color: #1B5D22;
}

.flow-box .box-detail {
	font-size: 1.2em;
}

.flow-box.flow-last:before {
	background-color: #FFB100;
}

.flow-box.flow-last:after {
	border-color: transparent transparent transparent #FFB100;
}

.flow-box.flow-last .box-title {
	color: #FFB100;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.flow-box {
		display: flex;
		align-items: center;
		min-height: 85px;
		width: 100%;
	}

	.flow-box .box-title {
		width: 25%;
		padding-left: 110px;
		border-right: 1px solid #707070;
	}

	.flow-box .box-detail {
		width: 75%;
		padding-left: 30px;
		padding-right: 10px;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	.flow-box .box-title {
		padding-left: 45px;
		font-size: 21px;
		margin-bottom: 15px;
	}

	.flow-box:before {
		height: 50px;
		line-height: 50px;
		width: 50px;
		top: 13px;
		left: -10px;
		font-size: 15px;
		font-weight: 400;
	}

	.flow-box:after {
		border-width: 25px 0 25px 5px;
		z-index: 1;
		left: 40px;
		top: 13px;
	}

	.flow-box .box-detail {
		font-size: 1.0em;
	}

}


/* #Faq-block */
#Faq-block {}

#Faq-block .block-title {}

#Faq-block .block-title span {}

#Faq-block .block-content {
	background-color: #fff;
}

#Faq-block .block-content-title {
	color: #fff;
	background-color: #1B5D22;
	padding: 20px 10px;
	font-weight: 700;
	font-size: 22px;
	text-align: center;
}

.faq-box {
	padding: 20px 5px 20px 50px;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
}

.faq-box .box-q {
	font-weight: bold;
	font-size: 22px;
	margin: 0 0 0px;
	line-height: normal;
}

.faq-box .box-q:before {
	content: "Q";
	color: #1B5D22;
	width: 52px;
	font-size: 1.3rem;
	position: absolute;
	left: 0px;
	padding-right: 5px;
	counter-increment: number 1;
	/* number カウンタの増加数をセット */
	content: "Q" counter(number)".";
	/* 表示形式を指定 */
}

.faq-box .box-a {
	font-size: 18px;
}

#Faq-block .block-content .box-answer {
	text-align: center;
	padding: 20px 15px 54px;
	color: #1B5D22;
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.4;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

#Faq-block .block-content .box-answer::before {
	transform: rotate(-20deg);
	margin-right: 20px;
}

#Faq-block .block-content .box-answer::after {
	transform: rotate(20deg);
	margin-left: 20px;
}

#Faq-block .block-content .box-answer::before,
#Faq-block .block-content .box-answer::after {
	content: '';
	display: block;
	width: 1px;
	height: 35px;
	background: #1B5D22;
}

.faq-box-list {
	counter-reset: number 0;
}

@media (min-width: 768px) {

	/*幅768px以上で適用されるスタイル*/
	.faq-box-list {
		padding: 20px 40px;
		max-width: 760px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {

	/*幅767px以下で適用されるスタイル*/
	#Faq-block .block-content-title {
		font-size: 1.0rem;
	}

	.faq-box-list {
		padding: 15px;
	}

	.faq-box .box-q:before {
		font-size: 1.1rem;
	}

	.faq-box .box-q {
		font-size: 1.1rem;
		line-height: 1.5;
	}

	#Faq-block .block-content .box-answer {
		margin: 0 20px;
		font-size: 1.2rem;
	}

	#Faq-block .block-content .box-answer::before,
	#Faq-block .block-content .box-answer::after {
		height: 70px;
	}
}


/*============================
#contact
============================*/
.page-id-10 .full-width-title {
	background-image: url(./img/cta_bg.jpg);
	background-position: center center;
}

.page-id-10 .full-width-title .entry-title:after {
	content: "CONTACT";
	display: block;
	font-size: 0.7em;
	;
	margin-top: 10px;
}

.page-tel-block {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 20px 15px;
	margin: 30px 10px 50px;
	text-align: center;
}

.page-tel-block img {}

@media (min-width: 768px) {
	/*幅768px以上で適用されるスタイル*/
}

@media (max-width: 767px) {
	/*幅767px以下で適用されるスタイル*/
}
