html { 
	font-size: 62.5%; /* 10px */
}
body, body *, body *::before, body *::after {
	outline:none;
}
body {
	font-family: 'Poppins','Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	font-style: normal;
}
#container *, #container *::after, #container *::before {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
a {
	-webkit-transition: all .4s cubic-bezier(.5, 0, .5, 1);
	-moz-transition: all .4s cubic-bezier(.5, 0, .5, 1);
	-ms-transition: all .4s cubic-bezier(.5, 0, .5, 1);
	-o-transition: all .4s cubic-bezier(.5, 0, .5, 1);
	transition: all .4s cubic-bezier(.5, 0, .5, 1);
}


/* =responsive
-------------------------------------------------------------- */
.pc {
	display:none;
}
.pctablet {
	display:none;
}
.tablet {
	display:none;
}

/* =animation
-------------------------------------------------------------- */

@-webkit-keyframes ring {
	from {
	    -webkit-transform: rotate(0);
	       -moz-transform: rotate(0);
	        -ms-transform: rotate(0);
	         -o-transform: rotate(0);
	            transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(-360deg);
	       -moz-transform: rotate(-360deg);
	        -ms-transform: rotate(-360deg);
	         -o-transform: rotate(-360deg);
	            transform: rotate(-360deg);
	}
}
@keyframes ring {
	from {
	    -webkit-transform: rotate(0);
	       -moz-transform: rotate(0);
	        -ms-transform: rotate(0);
	         -o-transform: rotate(0);
	            transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(-360deg);
	       -moz-transform: rotate(-360deg);
	        -ms-transform: rotate(-360deg);
	         -o-transform: rotate(-360deg);
	            transform: rotate(-360deg);
	}
}
@-webkit-keyframes txt2 {
	0% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
	30% {
		-webkit-transform: scale(1.2);
	       -moz-transform: scale(1.2);
	        -ms-transform: scale(1.2);
	         -o-transform: scale(1.2);
	            transform: scale(1.2);
	}
	100% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
}
@keyframes txt2 {
	0% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
	30% {
		-webkit-transform: scale(1.2);
	       -moz-transform: scale(1.2);
	        -ms-transform: scale(1.2);
	         -o-transform: scale(1.2);
	            transform: scale(1.2);
	}
	100% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
}
@-webkit-keyframes offerbtn {
	0% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
	10% {
		-webkit-transform: scale(1.15);
	       -moz-transform: scale(1.15);
	        -ms-transform: scale(1.15);
	         -o-transform: scale(1.15);
	            transform: scale(1.15);
	}
	20% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
}
@keyframes offerbtn {
	0% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
	10% {
		-webkit-transform: scale(1.15);
	       -moz-transform: scale(1.15);
	        -ms-transform: scale(1.15);
	         -o-transform: scale(1.15);
	            transform: scale(1.15);
	}
	20% {
	    -webkit-transform: scale(1);
	       -moz-transform: scale(1);
	        -ms-transform: scale(1);
	         -o-transform: scale(1);
	            transform: scale(1);
	}
}

/* =font
-------------------------------------------------------------- */
.crim {
	font-family: 'Crimson Text', serif;
}

/* =padding
-------------------------------------------------------------- */
.padd30 {
	padding-top:30px;
}
.padd50 {
	padding-top:50px;
}
.padd80 {
	padding-top:80px;
}
.padd100 {
	padding-top:100px;
}
.padd150 {
	padding-top:150px;
}
.paddb30 {
	padding-bottom:30px;
}
.paddb50 {
	padding-bottom:50px;
}
.paddb80 {
	padding-bottom:80px;
}
.paddb100 {
	padding-bottom:100px;
}
.paddb150 {
	padding-bottom:150px;
}

/* =structure
-------------------------------------------------------------- */
#container {
	overflow: hidden;
	width:100%;
	position: relative;
}
.contents {
	width:94%;
	max-width:900px;
	padding:0;
	margin:0 auto;
}
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
	-webkit-align-items: ﬂex-start;
	-moz-align-items: ﬂex-start;
	-ms-align-items: ﬂex-start;
	align-items: ﬂex-start;
}
img {
	display: block;
	width:100%;
	height:auto;
}

/* =ヘッダー
-------------------------------------------------------------- */
header {
	background:#FFF;
	padding:0 0 15px 0;
}
header h1 {
	font-size:10px;
	padding:2px 0 5px;
}
header .flex {
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
}
header .logo {
	width:52px;
	height:52px;
	margin:0 10px 0 0;
}
header .tokucho {
	width:calc(100% - 62px);
}

/* =トップ
-------------------------------------------------------------- */
.mv {
	width:100%;
	height:460px;
	background:url(../img/bg_sp.png) no-repeat center center;
	background-size:cover;
}
.ring {
	width:312px;
	height:100%;
	margin:0 auto;
	position: relative;
}
.ring::after {
	content:'';
	z-index:2;
	width:312px;
	height:312px;
	position: absolute;
	top:50%;
	left:50%;
	margin:-156px 0 0 -156px;
	background:url(../img/ring.svg) no-repeat center center;
	background-size:312px auto;
	animation: ring 10s linear infinite;
}
.ring .ring_inner {
	position: absolute;
	z-index:3;
	top:50%;
	left:0;
	width:100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.ring_inner .txt1 {
	font-size:1.8rem;
	font-weight: bold;
	color:#FFF;
	line-height: 1.3em;
}
.ring_inner .txt2 {
	font-weight:600;
	color:#FFF;
	padding:5px 0 0 0;
	animation: txt2 0.4s 1.5s cubic-bezier(.5, 0, .5, 1); infinite;
}
.ring_inner .txt2 .count {
	font-size:6.8rem;
	line-height: 1em;
}
.ring_inner .txt2 .par {
	font-size:3.6rem;
	line-height: 1em;
}
.ring_inner .txt3 {
	font-size:1.8rem;
	font-weight: bold;
	color:#FFF;
	line-height: 1.2em;
}
.ring_inner .mvbtn {
	display: block;
	width:188px;
	background:#FFF;
	font-size:1.5rem;
	font-weight:bold;
	border-radius: 35px;
	text-align: center;
	padding:10px 0;
	color:#4dba47;
	margin:15px auto;
}
.ring_inner .mvbtn:hover {
	background:#63845e;
	color:#FFF;
}

/*common title*/
.title {
	display: block;
	text-align: center;
	font-size:1.8rem;
	font-weight:bold;
	color:#4dba47;
	margin:40px auto 0;
}
.title span {
	border-bottom:2px solid #4dba47;
}

/*offer*/
.offertxt {
	text-align: center;
	font-size:2rem;
	font-weight: bold;
	padding:35px 0;
}
.offerbtn {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    margin:0 auto 50px;
}
.offerbtn li img {
	animation: offerbtn 4.5s cubic-bezier(.5, 0, .5, 1) infinite;
}
.offerbtn li img {
	animation-delay: calc(.4s * var(--tag-index) + 500ms);
}

/*covid-19*/
.covid-19 {
	border:1px solid #000;
	padding:25px;
	margin:0 auto 30px;
}
.covid-19 .left {
	width:60px;
	margin:0 auto;
}
.covid-19 .right {
	width:100%;
}
.covid-19 .right .covid1 {
	font-size:1.8rem;
	text-align: center;
	padding:15px 0;
}
.covid-19 .right .covid2 {
	font-size:1.2rem;
}

/*reason*/
.reason {
	background:#f5f5f5;
	padding:50px 0;
}
.reason .title {
	margin:0 auto;
}
.reason .manzokudo {
	text-align: center;
	color:#4dba47;
	font-weight:600;
	line-height: 1em;
}
.reason .js-num {
	font-size:11.6rem;
	line-height: 1em;
}
.reason .par {
	font-size:6.3rem;
}
.reasonbox {
	border:1px solid #4dba47;
	background:#FFF;
	position: relative;
	padding:25px;
	margin:25px auto 0;
}
.reasonbox h3 {
	font-size:2.1rem;
	font-weight:bold;
	text-align: center;
	padding:50px 0 0;
}
.reasonbox.reason1::after {
	content:'理由1';
	position: absolute;
	top:14px;
	left:0;
	width:86px;
	height:44px;
	background:#4dba47;
	color:#FFF;
	text-align: center;
	font-size:1.8rem;
	font-weight:bold;
	line-height:44px;
	border-radius:0 30px 30px 0;
}
.reasonbox.reason2::after {
	content:'理由2';
	position: absolute;
	top:14px;
	left:0;
	width:86px;
	height:44px;
	background:#4dba47;
	color:#FFF;
	text-align: center;
	font-size:1.8rem;
	font-weight:bold;
	line-height:44px;
	border-radius:0 30px 30px 0;
} 
.reasonbox.reason3::after {
	content:'理由3';
	position: absolute;
	top:14px;
	left:0;
	width:86px;
	height:44px;
	background:#4dba47;
	color:#FFF;
	text-align: center;
	font-size:1.8rem;
	font-weight:bold;
	line-height:44px;
	border-radius:0 30px 30px 0;
} 
.reasonbox .flex {
	padding:20px 0 0 0;
}
.reasonbox .thumb {
	width:80px;
	margin:0 auto 20px;
}
.reasonbox .reason_txt {
	width:100%;
	font-size:1.4rem;
	line-height:1.8em;
}
.reasonbox .reason_txt strong {
	font-weight:bold;
	text-decoration:underline;
	color:#4dba47;
}

/*nayami*/
.nayami {
	background:#e0ebfc;
	padding:40px 0;
	margin:0 auto 50px;
	position: relative;
}
.nayami::after {
	content:'';
	position: absolute;
	bottom:-36px;
	left:50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 36px 20px 0 20px;
	border-color: #e0ebfc transparent transparent transparent;
	margin:0 0 0 -20px;
}
.nayami .title {
	margin:0;
}
.nayami_comment {
	padding:25px 0 0 0;
}
/*solution*/
.sol_title {
	width:100%;
	margin:0 auto;
}
.sol_title .chara {
	width:88px;
}
.sol_title h3 {
	display: block;
	width:calc(100% - 98px);
	font-size:2rem;
	font-weight:bold;
	padding:0 0 0 10px;
}
.sol_txt1 {
	font-size:2.2rem;
	font-weight:bold;
	margin:30px auto;
	text-align: center;
	border:2px solid #000;
	padding:6px 0;
}
.sollist {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
    margin:0 auto 30px;
}
.sollist2 {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:10px;
    margin:0 auto 30px;
}
.sollist2 li {
	background:#f4eece;
}
.sollist2 .icon {
	width:60px;
	/* 縦方向中央揃え */
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: start;
	-moz-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
}
.sollist2 .txtbox {
	width:calc(100% - 60px);
	padding:10px 0;
}
.sollist2 .txtbox .txt1 {
	font-size:2rem;
	font-weight:bold;
}
.sollist2 .txtbox .txt2 {
	font-size:1.5rem;
	padding:2px 0 0 0;
}

/*price*/
.price {
	background:#f5f5f5;
	padding:40px 0 0;
}
.price .title {
	margin:0 auto;
}
.price .cam1 {
	color:#d91016;
	font-size:2.8rem;
	font-weight:bold;
	text-align: center;
	padding:25px 0 5px;
}
.price .cam2 {
	font-size:1.6rem;
	font-weight:bold;
	text-align: center;
}
.price .cam3 {
	font-size:2rem;
	font-weight:bold;
	text-align: center;
	color:#d91016;
	text-decoration:underline;
}
.pricelist {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
	margin:20px auto;
}
.comment {
	width:100%;
	margin:0 auto 50px;
}
.freevisit {
	width:100%;
	border:2px solid #4dba47;
	background:#FFF;
	margin:70px auto 0;
	position: relative;
	padding:60px 20px 20px;
}
.freevisit h3 {
	display: block;
	font-size:2.2rem;
	font-weight:bold;
	color:#4dba47;
}
.freevisit p {
	padding:15px 0 0 0;
	font-size:1.5rem;
}
.freevisit::after {
	content:'';
	position: absolute;
	width:108px;
	height:114px;
	left:50%;
	top:-60px;
	margin:0 0 0 -54px;
	background:url(../img/chara.png) no-repeat center center;
	background-size:108px 114px;
}

.komikomi {
	padding:45px 0;
}

/*attention*/
.attention {
	background:#000;
	border-top:5px solid #ffff00;
	border-bottom:5px solid #ffff00;
	padding:30px 0;
}
.attention_ti {
	text-align: center;
	color:#FFF;
	font-size:1.8rem;
	font-weight:bold;
}
.attention_txt {
	padding:10px 0 0 0;
	text-align: center;
	color:#FFF;
	font-size:1.2rem;
}

/*flow*/
.flow {
	margin:0 auto 50px;
}
.dlbox {
	margin:25px auto 0;
}
.dlbox_inner {
	margin:0 auto;
	border-bottom:2px solid #000;
}
.dlbox_inner.first {
	border-top:2px solid #000;
}
.dlbox_inner dt {
	width:60px;
	text-align: center;
	font-size:3rem;
	font-weight:600;
	padding:15px 0;
}
.dlbox_inner dd {
	width:calc(100% - 60px);
	padding:15px;
}
.dlbox_inner .dlbox_ti {
	font-size:1.8rem;
	font-weight:bold;
}
.dlbox_inner .dlbox_txt {
	font-size:1.4rem;
	padding:10px 0 0 0;
}
.dlbox_inner .dlbox_txt a {
	color:#0063d0;
	text-decoration:underline;
}
.creditcard {
	width:100%;
	padding:15px 0 0 0;
}

/* review */
.review {
	margin:0 auto 30px;
}
.reviewbox {
	margin:50px auto 0;
}
.review_inner li {
	width:300px;
	margin:0 30px;
}
.review_inner .customer {
	width:185px;
	margin:0 auto;
}
.review_inner .customerbox {
	border:2px solid #000;
	border-radius:10px;
	padding:20px;
}
.review_inner .left {
	width:35%;
}
.review_inner .right {
	width:60%;
	font-size:1.6rem;
	line-height:1.3em;
	padding:0 0 0 20px;
}
.review_inner .review_ti {
	font-size:1.6rem;
	font-weight:bold;
	padding:15px 0;
}
.review_inner .review_txt {
	font-size:1.3rem;
	line-height:1.5em;
}

/* ----dots--- */
.review_inner .slidedot {
	display:flex;
	justify-content:center;
	padding:40px 0 0 0;
}
.review_inner .slidedot li {
	width:8px;
	height:8px;
	margin:0 8px;
	border-radius:50%;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.review_inner .slidedot li button {
	width:8px;
	height:8px;
	background:#dddddd;
	text-indent:-9999px;
	border-radius:50%;
	border:none;
	padding:0;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.review_inner .slidedot li.slick-active,
.review_inner .slidedot li.slick-active button {
	background:#231815;
	border-radius:50%;
}

/*FAQ*/
.faq {
	background:#f5f5f5;
	padding:40px 0 10px 0;
}
.faq .title {
	margin:0;
}
.dlbox_inner .dlbox_answer {
	font-size:1.5rem;
	margin:10px 0 0 0;
	padding:10px 0 0 0;
}
.faq .dlbox {
	margin:25px auto 40px;
}

/*area*/
.area {
	margin:40px auto;
}
.area .left {
	width:40%;
	margin:0 auto;
}
.area .right {
	width:100%;
	font-size:1.6rem;
	line-height:2em;
	font-weight:bold;
	padding:20px 0 0 0;
}

/*form*/
.form {
	padding:25px 0 50px;
}
.formicon {
	width:55px;
	margin:0 auto 10px;
}
.form .title {
	margin:0 auto;
}
.formtxt {
	padding:25px 0 0 0;
	text-align: center;
	font-size:1.4rem;
	line-height:1.8em;
}
.formtxt a {
	color:#0063d0;
	text-decoration:underline;
}

.contactform {
	width:100%;
	max-width:730px;
	margin:50px auto;
}
.formwrap {
	margin:0 auto 20px;
}
.formwrap .koumoku {
	font-size:1.5rem;
	padding:0 0 10px 0;
}
.formwrap input[type="text"],
.formwrap input[type="tel"],
.formwrap input[type="email"],
.formwrap textarea {
	display: block;
	width:100%;
	border:1px solid #afafaf;
	padding:12px;
	font-size:1.8rem;
	-webkit-appearance:none;
	appearance:none;
}
.wpcf7-radio {
	padding:15px 0;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
}
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
	font-size:1.6rem;
}
.wpcf7-radio .wpcf7-list-item label,
.wpcf7-checkbox .wpcf7-list-item label {
	display: block;
}
.wpcf7-checkbox {
	padding:15px 0;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
}
.btn_send {
	display: block;
	width:90%;
	margin:15px auto 0;
	border-radius:50px;
	background:#4dba47;
	color:#FFF;
	font-size:2rem;
	font-weight:bold;
	text-align: center;
	padding:15px 0;
	-webkit-appearance:none;
	appearance:none;
	border:1px solid #4dba47;
	cursor: pointer;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

/* =固定ページ
-------------------------------------------------------------- */
#single {
	padding:0 0 100px 0;
}
#single .profile dt {
	width:30%;
	font-size:1.6rem;
	font-weight:normal;
	text-align:left;
	padding:20px 0;
	border-bottom:1px solid #777;
}
#single .profile dd {
	width:70%;
	font-size:1.6rem;
	font-weight:normal;
	padding:20px 0;
	border-bottom:1px solid #777;
}
#single h3 {
	display: block;
	border-left:4px solid #4dba47;
	font-size:2.2rem;
	line-height: 1.5em;
	padding:8px 0 8px 16px;
	margin:40px auto;
}
#single h4 {
	display: block;
	font-size:1.8rem;
	line-height: 1.5em;
	border-left:4px solid #999;
	padding:8px 0 8px 16px;
	margin:30px auto;
}
#single p {
	width:95%;
	font-size:1.4rem;
	line-height: 1.8em;
	margin:30px auto;
	color:#444;
}
#single.blogsingle {
	padding-bottom: 0;
}
#single.blogsingle .title {
	text-align: left;;
}
#single figure {
	padding:50px 0 0 0;
}
#single.blogsingle .contents {
	width:100%;
	max-width:100%;
	padding:50px 0;
}
#single.blogsingle time {
	font-size:20px;
	color:#4dba47;
}
#single.blogsingle h2 {
	display: block;
	font-size:2.5rem;
	font-weight: bold;
	line-height: 1.5em;
	margin:40px auto;
}
#single.blogsingle ul,
#single.blogsingle ol {
	width:95%;
	font-size:1.6rem;
	line-height: 1.8em;
	margin:30px auto;
	color:#444;
	background:#f5f5f5;
	padding:20px;
}
#single.blogsingle ul li {
	list-style: disc;
	margin:5px 0 5px 25px;
	background:#FFF;
	padding:10px;
	border-radius: 4px;
}
#single.blogsingle ol li {
	list-style:decimal-leading-zero;
	margin:5px 0 5px 25px;
	background:#FFF;
	padding:10px;
	border-radius: 4px;
}
#single.blogsingle p a {
	text-decoration: underline;
	color:#0063d0;
}
#single.blogsingle p strong {
	font-weight: bold;
	color: #4dba47;
}
#ez-toc-container {
	width:100%;
	margin:30px auto 0;
}
div#ez-toc-container .ez-toc-title {
	font-size:16px;
	font-weight:bold;
	line-height: 36px;
}
div#ez-toc-container ol,
div#ez-toc-container ul {
	width:100% !important;
	margin:15px auto 0 !important;
	padding:0 !important;
	background: #FFF !important;
}
div#ez-toc-container ol li,
div#ez-toc-container ul li {
	margin:0 !important;
	padding:0 0 0 20px !important;
	line-height: 2em !important;
}
div#ez-toc-container ol.ez-toc-list-level-3,
div#ez-toc-container ul.ez-toc-list-level-3,
div#ez-toc-container ol.ez-toc-list-level-4,
div#ez-toc-container ul.ez-toc-list-level-4 {
	margin:0 !important;
}


/* =footer
-------------------------------------------------------------- */
.copyright {
	font-size:14px;
	color:#FFF;
	background:#72b56b;
	text-align: center;
	padding:12px 0 82px;
}
.copyright a {
	color:#FFF;
}

.footnav {
	position:fixed;
	bottom:0;
	left:0;
	z-index:200;
	width:100%;
	height:70px;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:0px;
	background: rgb(73,185,0);
	background: -moz-linear-gradient(180deg, rgba(73,185,0,1) 0%, rgba(114,181,107,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(73,185,0,1) 0%, rgba(114,181,107,1) 100%);
	background: linear-gradient(180deg, rgba(73,185,0,1) 0%, rgba(114,181,107,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#49b900",endColorstr="#72b56b",GradientType=1);
}
.footnav li {
	border-left:1px solid #FFF;
	padding:10px 0;
}
.footnav li.first {
	border:none;
}
.footnav li .icon {
	width:28px;
	margin:0 auto;
}
.footnav li p {
	color:#FFF;
	padding:5px 0 0 0;
	font-size:10px;
	text-align: center;
	font-weight:bold;
}

#pagetop {
	position: fixed;
	z-index:6000;
	bottom:10px;
	right:8px;
	width:48px;
	height:48px;
	padding:17px 0 0 0;
	color:#333;
	text-align: center;
	border-radius:50%;
	background:#eee;
	font-size:14px;
}
.grecaptcha-badge { visibility: hidden; }


/* =blog
-------------------------------------------------------------- */
.blog_blc {
	overflow: hidden;
	padding:0 0 8rem 0;
}
.blog_blc.singlever {
	padding:0 0 8rem 0;
}
.blog_blc .swiper {
	overflow: visible;
	margin:4rem 0 0 0;
}
.blog_blc .swiper-slide {
	width:30rem;
	min-height:40rem;
	background: #FFF;
	box-shadow: 0.5rem 0.5rem 1rem rgba(0,0,0,0.15);
	border-radius: 1rem;
	overflow: hidden;
}
.blog_blc .swiper-slide figure {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.blog_blc .swiper-slide figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.blog_blc .swiper-slide .text {
	padding:25px;
}
.blog_blc .swiper-slide .text time {
	display: block;
	font-size:16px;
	color:#72b56b;
}
.blog_blc .swiper-slide .text .title {
	font-size:20px;
	font-weight: normal;
	line-height:1.6em;
	color:#000;
	text-align: left;
	margin:15px 0 0 0;
}
.blogbtn {
	padding:40px 0 0 0;
	text-align: center;
}
.blogbtn a {
	display: inline-block;
	color:#000;
	padding:0 0 7px 0;
	margin:0 auto;
	text-align: center;
	font-size:16px;
	border-bottom:1px solid #000;
}
.archive_post {
	padding:40px 0 80px;
	display: grid;
	grid-template-columns: 1fr;
	gap:30px;
}
.archive_post .post_box {
	width:100%;
	min-height:33rem;
	background: #FFF;
	box-shadow: 0.5rem 0.5rem 1rem rgba(0,0,0,0.15);
	border-radius: 1rem;
	overflow: hidden;
}
.archive_post figure {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.archive_post figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.archive_post .text {
	padding:25px;
}
.archive_post .text time {
	display: block;
	font-size:16px;
	color:#72b56b;
}
.archive_post .text .title {
	font-size:16px;
	font-weight: normal;
	line-height:1.5em;
	color:#000;
	text-align: left;
	margin:15px 0 0 0;
}
.tablenav {
	padding:0 0 80px 0;
}
.tablenav .pagenav {
	display: flex;
	justify-content: center;
	align-items: center;
}
.tablenav .pagenav .page-numbers {
	width:40px;
	height:40px;
	margin:0 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background:#72b56b;
	border:1px solid #72b56b;
	color:#FFF;
	font-size:20px;
}
.tablenav .pagenav .page-numbers.current {
	background: #FFF;
	color:#72b56b;
}
.tablenav .pagenav .page-numbers.prev,
.tablenav .pagenav .page-numbers.next {
	width:90px;
}