/***************************
 *
 * モジュール
 *
 **************************/

/*
一般
*/
img {
}
.clear {
	clear: both;
}
.clearfix:after {
	clear: both;
	height: 0px;
	display: block;
	content: ".";
	visibility: hidden;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.mlr-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.nrw {
	transform: scaleX(0.97);
	transform-origin: 0 0;
	/*width: 103%;*/
}

.shadow {
	text-shadow: white 2px 0px 2px, white -2px 0px 2px, white 0px -2px 2px, white -2px 0px 2px, white 2px 2px 2px, white -2px 2px 2px, white 2px -2px 2px, white -2px -2px 2px, white 1px 2px 2px,
		white -1px 2px 2px, white 1px -2px 2px, white -1px -2px 2px, white 2px 1px 2px, white -2px 1px 2px, white 2px -1px 2px, white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px,
		white 1px -1px 2px, white -1px -1px 2px;
}

.fx {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fx-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.fx-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fx-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}

.box-col-2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.box-col-2 > div {
	width: 50%;
	box-sizing: border-box;
}

/*
カラー
*/
.green {
	color: #6bca87 !important;
}

.red {
	color: #e3524e !important;
}
.pink {
	color: #f79ea6 !important;
}
.blue {
	color: #6cbae3 !important;
}
.navy {
	color: #31428b !important;
}
.yellow {
	color: #d7c749 !important;
}
.orange {
	color: #efa82d !important;
}

/*
OVER
*/

.over {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;
}

.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.3;
	-webkit-transition: 0s ease;
	-moz-transition: 0s ease;
	-ms-transition: 0s ease;
	-o-transition: 0s ease;
	transition: 0s ease;
}
/* 
.zoom {
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
} */

.underbar {
	width: 0;
	height: 1px;
	background: rgba(34, 34, 34, 0);
	top: 20px;
	position: absolute;
	-webkit-transition: 0.5s ease;
}

/*
フォント
*/
.type {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
}
.type-all * {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
}
/*
ボタン
*/
div.center {
	text-align: center;
}
.btn-gra-1 {
	width: 243px;
	margin: 35px auto;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease;
	border-radius: 30px;
}
.btn-gra-1:before {
	content: "";
	display: block;
	background: linear-gradient(to right, #97bc9e 0%, #2e8577 50%, #d8be3d 100%);
	width: 200%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.3s ease;
}
.btn-gra-1:hover:before {
	left: -100%;
}
.btn-gra-1 a {
	display: block;
	z-index: 3;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.075em;
	text-decoration: none;
	padding: 17px 17px 17px 30px;
	/* background: linear-gradient(to right, #97bc9e 0%, #2e8577 100%); */

	position: relative;
}
.btn-gra-1 a:hover {
	/* background: linear-gradient(to right, #2e8577 0%, #d8be3d 100%); */
	text-decoration: none !important;
}
.btn-gra-1 a:after {
	content: "";
	display: block;
	background: url(../img/btn-gra-1.png) 0 0 no-repeat;
	background-size: contain;
	width: 20px;
	height: 4px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -2px;
}
.btn-gra-2 {
	width: 243px;
	margin: 35px auto;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease;
	border-radius: 30px;
}
.btn-gra-2:before {
	content: "";
	display: block;
	background: linear-gradient(to right, #2e8577 0%, #50bba6 35%, #d5bd3e 70%, #50bba6 100%);

	width: 200%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.3s ease;
}
.btn-gra-2:hover:before {
	left: -100%;
}
.btn-gra-2 a {
	display: block;
	z-index: 3;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.075em;
	text-decoration: none;
	padding: 17px 17px 17px 30px;
	/* background: linear-gradient(to right, #97bc9e 0%, #2e8577 100%); */

	position: relative;
}
.btn-gra-2 a:hover {
	/* background: linear-gradient(to right, #2e8577 0%, #d8be3d 100%); */
	text-decoration: none !important;
}
.btn-gra-2 a:after {
	content: "";
	display: block;
	background: url(../img/btn-gra-1.png) 0 0 no-repeat;
	background-size: contain;
	width: 20px;
	height: 4px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -2px;
}

.btn-green {
	width: 156px;
	margin: 30px auto;
}
.btn-green a {
	display: block;
	text-align: left;
	color: white;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.075em;
	border-radius: 30px;
	background: #97bc9e;
	position: relative;
	transition: 0.4s ease;
	padding: 10px 10px 10px 24px;
}
.btn-green a:hover {
	background: #2e8577;
}
.btn-green a:after {
	content: "";
	display: block;
	background: url(../img/btn-gra-1.png) 0 0 no-repeat;
	background-size: contain;
	width: 20px;
	height: 4px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -2px;
}

.btn-yellow {
	width: 234px;
	margin: 30px auto;
}
.btn-yellow a {
	display: block;
	text-align: center;
	color: #2e8577;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	border-radius: 30px;
	background: #fcffd1;
	position: relative;
	transition: 0.4s ease;
	padding: 10px 10px 10px 10px;
}
.btn-yellow a:hover {
	background: #2e8577;
	color: #fff;
}

.btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
	margin: 55px auto;
}
.btns .btn {
	width: auto;
	margin: 0;
}
hr + .btns {
	margin-top: -50px;
}
.btn i {
	font-size: 1.3em;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

/*
BG
*/

/*
IMAGE
*/

/*
アイコン
*/

/*
ANIMATE
*/

@keyframes fade-in5 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0.5;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.tab {
	display: none;
	opacity: 0;
}
.tab.is-active {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;
}

/*
ボックス
*/
.box-content {
	max-width: 1240px;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.box-content-f {
	max-width: 1240px;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
@media all and (min-width: 1340px) {
	.box-content-f {
		max-width: 1468px;
		/* padding-left: 94px;
		padding-right: 94px; */
		box-sizing: border-box;
	}
}
.box-content-wide {
	margin: 0 auto;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
.box-700 {
	width: 700px;
	margin: 0 auto;
	position: relative;
}
.box-720 {
	width: 720px;
	margin: 0 auto;
	position: relative;
}
.box-800 {
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.box-840 {
	width: 840px;
	margin: 0 auto;
	position: relative;
}
.box-900 {
	width: 900px;
	margin: 0 auto;
	position: relative;
}
.box-960 {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.box-980 {
	width: 980px;
	margin: 0 auto;
	position: relative;
}
.box-1000 {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
.box-1024 {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}
.box-1040 {
	width: 1040px;
	margin: 0 auto;
	position: relative;
}
.box-1090 {
	width: 1090px;
	margin: 0 auto;
	position: relative;
}
.box-1100 {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.box-1200 {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

/*
ヘッダー
*/
.header-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 77px;
}
.header-logo {
	width: 275px;
	position: relative;
	margin-left: 24px;
}
.header-nav {
	display: flex;
	justify-content: flex-end;
	height: 77px;
	padding-left: 20px;
}
.list-header-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.list-header-nav li {
	position: relative;
	text-align: center;
}
.list-header-nav li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	transform: skew(-15deg);
	background: #2e8577;
	transform-origin: left center;
	transition: 0.3s ease;
	border-left: 1px solid black;
}
.is-rec .list-header-nav li:before {
	border-left: 1px solid #51bca7;
}
.list-header-nav li:hover:before {
	width: 100%;
}
/* .list-header-nav li:before {
	content: "";
	display: block;
	background: url(../img/sep.png) 0 0 no-repeat;
	background-size: contain;
	width: 14.5px;
	height: 31.5px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15.75px;
} */
.list-header-nav li a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #000000;
	display: block;
	padding-left: 22px;
	padding-right: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
	transition: 0.3s ease;
}
.list-header-nav li a:hover {
	color: white;
}
.header-nav-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 98px;
	margin-left: 15px;
}
.btn-rec {
	width: 134px;
}
.btn-rec a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	background: #97bc9e;
	height: 41px;
	text-align: center;
	transition: 0.4s ease;
}
.btn-rec a:hover {
	background: #2e8577;
}
.btn-ct {
	width: 134px;
}
.btn-ct a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #030303;
	font-size: 1.6rem;
	font-weight: 300;
	background: #fff;
	height: 41px;
	text-align: center;
	border: 1px solid #dbdbdb;
	transition: 0.4s ease;
}
.btn-ct a:hover {
	background: #2e8577;
	color: #fff;
}
.btn-ct a:hover .ic-ct {
	background: url(../img/ic-ct-w.png) 0 0 no-repeat;
	background-size: contain;
}
.ic-rec {
	display: inline-block;
	background: url(../img/ic-rec.png) 0 0 no-repeat;
	background-size: contain;
	width: 12px;
	height: 15.5px;
	margin-right: 8px;
}
.ic-ct {
	display: inline-block;
	background: url(../img/ic-ct.png) 0 0 no-repeat;
	background-size: contain;
	width: 18px;
	height: 12.5px;
	margin-right: 8px;
}

.l-header.is-front .header-nav {
	background: rgba(0, 0, 0, 0.6);
}
.l-header.is-front .header-nav .list-header-nav li a {
	color: #fff;
}
.l-header.is-front .header-nav .list-header-nav li:before {
	border-left: 1px solid white;
}

@media all and (max-width: 1300px) {
	.list-header-nav {
		flex-wrap: wrap;
	}
	.list-header-nav li a {
		padding-top: 1px;
		padding-bottom: 1px;
		padding-left: 16px;
		padding-right: 10px;
	}
}
@media all and (max-width: 1066px) {
	.list-header-nav {
		display: none;
	}
}

.menu-trigger {
	position: fixed;
	right: 0px;
	top: 0px;
	display: block;
	width: 77px;
	height: 77px;
	cursor: pointer;
	z-index: 205;
	transform: translateX(0);
	transition: all 0.5s;
	text-align: center;
	background: #97bc9e;
	border-bottom-left-radius: 15px;
	border: 1px solid #97bc9e;
}
.is-rec .menu-trigger {
	background: #51bca7;
}
.is-rec .btn-rec a {
	background: #51bca7;
}
.is-rec .btn-rec a:hover {
	background: #2e8577;
}
.menu-trigger.is-scroll {
	/* display: block;
	opacity: 1;
	animation-duration: 1s;
	animation-name: fade-in; */
}

.menu-trigger.is-active {
	z-index: 9999;
	background: #2e8577;
}
.is-rec .menu-trigger.is-active {
	z-index: 9999;
	background: #5fbfac;
}
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 27px;
	width: 23px;
	height: 1px;
	background: #fff;
	transition: 0.3s ease all;
}
.menu-trigger.is-active span {
}
.menu-trigger span:nth-of-type(1) {
	top: 28px;
}
.menu-trigger.is-active span:nth-of-type(1) {
	top: 37px;
	transform: rotate(45deg);
}

.menu-trigger span:nth-of-type(2) {
	top: 37px;
}
.menu-trigger.is-active span:nth-of-type(2) {
	top: 37px;
	transform: scaleX(0);
	transform-origin: center center;
}
.menu-trigger span:nth-of-type(3) {
	top: 46px;
}
.menu-trigger.is-active span:nth-of-type(3) {
	top: 37px;
	transform: rotate(-45deg);
}
.menu-trigger small {
	color: white;
	text-align: center;
	display: block;
	position: absolute;
	left: 0;
	bottom: 27px;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.15em;
}

@media all and (max-width: 1330px) {
}

/*
GLOBAL NAVI
*/
.overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(112, 112, 112, 0.7); */
	opacity: 0;
	display: none;
}
.l-nav.is-active .overlay {
	opacity: 1;
	display: block;
	animation-duration: 0.5s;
	animation-name: fade-in;
}
.nav-inner {
	transform: translateX(100%);
	position: fixed;
	right: 0;
	top: 0px;
	width: 375px;
	height: 100%;
	background: rgba(46, 133, 119, 0.9);
	transition: 0.4s ease;
}
.is-rec .nav-inner {
	background: rgba(95, 191, 172, 0.9);
}
.l-nav.is-active .nav-inner {
	transform: translateX(0%);
}
.nav-inner .header-logo {
	width: 180px;
	margin-top: 18px;
	margin-left: 21px;
}
.list-nav {
	position: relative;
	margin: 0 28px;
	margin-top: 47.5px;
	border-top: 1px solid #fff;
}
.list-nav > li {
	box-sizing: border-box;
	position: relative;
}
.list-nav > li > a {
	display: flex;
	align-items: center;
	position: relative;
	text-align: left;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	transition: 0.3s ease;
	font-weight: bold;
	padding: 17px 20px;
	border-bottom: 1px solid #fff;
}

.list-nav > li > a:hover {
	background: #74ae97;
}

/*
パンくず
*/
.bread {
	position: absolute;
	z-index: 5;
	left: 0px;
	bottom: 0px;
	background: #fff;
	display: inline-block;
	height: 37px;
	padding-left: 20px;
	padding-right: 20px;
	display: none;
}
.bread:after {
	content: "";
	display: block;
	position: absolute;
	left: 100%;
	bottom: 0;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 37px 0 0 5px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(0deg);
}
.l-main-simple .bread {
}
.bread ul {
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}

.bread li {
	font-size: 1.4rem;
	color: #0f2f7a;
	letter-spacing: 0.15em;
	display: inline-block;
}
.bread li span {
}
.bread li * {
	font-size: 1.4rem;
	color: #0f2f7a !important;
}
.bread li a {
	color: #0f2f7a !important;
	text-decoration: underline;
}
.bread li a span {
	color: #0f2f7a !important;
}
.bread li a:hover {
}
.bread i {
}
.bread li:first-child i {
}
.bread .bullet {
}
.bread li:after {
	content: "›";
	display: inline-block;
	width: 18px;
	text-align: center;
	height: 4px;
	margin: 10px auto;
	color: #0f2f7a;
}
.bread li:last-child:after {
	content: none;
}

/*
サイドバー
*/
.sidebar-title {
	font-weight: 500;
	font-size: 1.6rem;
	color: black;
	background: #fff;
	border-radius: 30px;
	padding: 8px 17px 8px;
	margin-bottom: 10px;
}
.box-side {
	background: #f4f6f4;
	border-radius: 20px;
	padding: 22px;
	border: 2px solid #b2cdb7;
	margin-bottom: 30px;
}

.list-cat {
}
.list-cat > li {
	display: block;
	border-bottom: 1px dashed #97bc9e;
}
.list-cat > li:last-child {
	border-bottom: none;
}
.list-cat > li a {
	color: #000000;
	font-size: 1.4rem;

	padding: 16px 16px;
	display: block;
}
.list-cat > li a time {
	display: block;
	margin-bottom: 10px;
	font-size: 1.2rem;
}
.list-cat > li a .count {
	display: none;
}
.list-cat > li a:hover {
	text-decoration: none;
	background: #dbe7dd;
}

.list-side {
}
.list-side > li {
	margin-bottom: 10px;
}
.list-side > li > a {
	font-size: 1.6rem;
	color: #444444;
}
.box-side .select-wrap {
	width: 100%;
	background: #fff;
	margin: 0 0 10px;
}
.box-side .select-wrap select {
	background: #fff;
	width: 100%;
	height: 40px;
	border-radius: 0;
	font-size: 1.4rem;
	color: var(--blue);
	font-weight: normal;
	border: 1px solid var(--blue);
	padding: 0 10px;
}

/*
フッター
*/
.page-top {
	position: fixed;
	bottom: 15px;
	right: 20px;
	width: 80px;
	z-index: 50;
	opacity: 0;
	display: none;
}
.page-top.is-active {
	opacity: 1;
	display: block;
	animation-duration: 0.5s;
	animation-name: fade-in;
}
.page-top.is-stick {
	position: absolute;
	bottom: auto;
	top: -30px;
	right: 20px;
}
.page-top:hover img {
	display: none;
}
.page-top a {
	display: block;
	width: 80px;
	height: 80px;
}
.page-top:hover a {
	display: block;
	background: url(../img/page-top-active.svg) 0 0 no-repeat;
	background-size: contain;
}
.l-footer .box-content {
	display: flex;
	justify-content: space-between;
	padding-top: 56px;
	position: relative;
}
.l-footer .box-content:before {
	content: "";
	display: block;
	position: absolute;
	left: -70px;
	top: -47.06px;
	background: url(../img/footer-wave.svg) 0 0 no-repeat;
	background-size: contain;
	width: 560.05px;
	height: 47.06px;
}
.l-footer.is-rec .box-content:before {
	background: url(../img/footer-wave-rec.svg) 0 0 no-repeat;
	background-size: contain;
}
.l-footer .l-footer-l {
}
.l-footer .l-footer-l .footer-logo {
	width: 349px;
	margin-bottom: 23px;
}
.l-footer .l-footer-l .footer-logo img {
	width: 100%;
}
.l-footer .l-footer-l .footer-addr {
	font-size: 1.4rem;
	line-height: 2em;
	margin-bottom: 5px;
}
.l-footer .l-footer-l .footer-tels {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 28px;
}
.l-footer .l-footer-l .footer-tels .footer-tel {
	position: relative;
	font-size: 1.4rem;
	line-height: 2em;
	padding-left: 45px;
}
.l-footer .l-footer-l .footer-tels .footer-tel span {
	position: absolute;
	left: 0;
	top: 0;
}
.footer-privacy {
	position: relative;
	width: 184px;
}
.footer-privacy a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #000000;
	display: block;
	padding-left: 22px;
	padding-right: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
	transition: 0.3s ease;
	z-index: 3;
}
.footer-privacy:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	transform: skew(-15deg);
	background: #97bc9e;
	transform-origin: left center;
	transition: 0.3s ease;
	border-left: 1px solid #97bc9e;
}
.footer-privacy:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 0%;
	height: 100%;
	transform: skew(-15deg);
	background: #97bc9e;
	transform-origin: left center;
	transition: 0.3s ease;
	border-right: 1px solid #97bc9e;
}
.footer-privacy a:hover {
	color: white;
}
.footer-privacy:hover:before {
	width: 100%;
}
.l-footer .l-footer-r {
	display: flex;
	justify-content: flex-end;
}
.footer-btns {
}
.btn-product {
	width: 275px;
	margin-bottom: 19px;
}
.btn-product a {
	display: block;
	text-align: center;
	background: #fff;
	color: black;
	border-radius: 30px;
	border: 1px solid #2e8577;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 20px 12px;
	transition: 0.4s ease;
}
.btn-product a:hover {
	color: #fff;
	background: #2e8577;
}
.btn-product .ic-product {
	display: inline-block;
	background: url(../img/ic-product.png) 0 0 no-repeat;
	background-size: contain;
	width: 29.5px;
	height: 20px;
	vertical-align: middle;
	margin-right: 15px;
}
.btn-product a:hover .ic-product {
	background: url(../img/ic-product-w.png) 0 0 no-repeat;
	background-size: contain;
}
.btn-footer-rec {
	width: 275px;
}
.btn-footer-rec a {
	display: block;
	text-align: center;
	background: linear-gradient(to right, #ecf2e1 0%, #c3e5bb 100%);

	color: black;
	border-radius: 30px;
	border: 1px solid #2e8577;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 12px 12px;
	transition: 0.4s ease;
}
.btn-footer-rec a:hover {
	color: #fff;
	background: #2e8577;
}
.btn-footer-rec .ic-footer-rec {
	display: inline-block;
	background: url(../img/ic-footer-rec.png) 0 0 no-repeat;
	background-size: contain;
	width: 43px;
	height: 43px;
	vertical-align: middle;
	margin-right: 10px;
}
.btn-yamagata {
	width: 240px;
	margin: 44px auto;
}
.footer-navs {
	position: relative;
	margin-left: 50px;
}
.list-footer-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	position: relative;
	margin-top: -10px;
}
.list-footer-nav > li {
}
.list-footer-nav > li a {
	display: block;
	text-align: center;
	font-size: 1.6rem;
	color: #000000;
	font-weight: 500;
	padding: 8px 5px;
	border-radius: 20px;
	transition: 0.4s ease;
}
.list-footer-nav > li a:hover {
	color: #fff;
	background: #2e8577;
}
.list-footer-nav > li.footer-nav-rec a {
	background: #d7e8da;
}
.is-rec .list-footer-nav > li.footer-nav-rec a {
	background: #fff;
}
.is-rec .list-footer-nav > li.footer-nav-rec a:hover {
	color: #2e8577;
}
.footer-sns {
	display: flex;
	justify-content: center;
	gap: 55px;
	margin-top: 40px;
	text-align: center;
}
.footer-sns a:nth-child(1) {
	width: 146px;
}
.footer-sns a:nth-child(2) {
	width: 146px;
}
.copyright {
	text-align: center;
	font-size: 1.2rem;
	margin-top: 58px;
}
/*
サイドバー
*/

/*
LIST NEWS
*/
.list-news {
	position: relative;
}
.list-news .news {
	position: relative;
	border-bottom: 1px dashed #cecece;
	padding: 18px 18px;
	padding-left: 120px;
	transition: 0.3s ease;
}
.list-news .news:hover {
	background: #fff;
}
.list-news .news .news-link {
	display: block;
	position: absolute;
	left: 0px;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.list-news .news .news-link:hover + .news-time {
	color: #d86214;
}
.list-news .news .news-link:hover + .news-time + .news-title a {
	color: #d86214;
}

.list-news .news .news-time {
	font-size: 1.4rem;
	display: block;
	position: absolute;
	left: 18px;
	top: 22px;
	color: #575757;
}
.list-news .news .news-cat {
	font-size: 1.4rem;
	display: block;
}
.list-news .news .news-cat a {
	color: var(--blue);
	display: inline-block;
	font-size: 1.2rem;
	line-height: 26px;
	background: #fff;
	border-radius: 10px;
	padding: 2px 15px;
	background: #fff597;
	position: relative;
	z-index: 3;
	margin-right: 3px;
	transition: 0.3s ease;
}
.list-news .news .news-cat a:hover {
	text-decoration: none;
	background: var(--blue);
	color: white;
}
.list-news .news .news-title {
	margin-bottom: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;

	position: relative;
}
.list-news .news .news-title a {
	font-size: 1.6rem;
	line-height: 1.875em;
	color: #000000;
	transition: 0.3s ease;
	display: inline-block;
	position: relative;
}
.list-news .news .news-title a:hover {
	text-decoration: underline;
	color: #d86214;
}
.list-news .news .news-title a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 0;
	height: 1px;
	background: #444;
	transition: 0.3s ease-in-out;
}
.list-news .news .news-title a:hover:after {
	width: 100%;
}

/*
CARDS
*/

/*
LIST ENTRY
*/
.list-entry {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	border-top: 1px dashed #b1b1b1;
}

.list-entry li {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 35px 20px;
	border-bottom: 1px dashed #b1b1b1;
	transition: 0.2s ease;
}
.list-entry .entry-link {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 3;
	position: absolute;
	left: 0;
	top: 0;
}

.list-entry .entry-link:hover + .entry-pic img {
	opacity: 0.7;
}
.list-entry .entry-pic {
	position: relative;
	line-height: 0;
	width: 250px;
}

.list-entry .entry-pic img {
	transition: 0.3s ease;
	width: 100%;
	height: 195px;
	object-fit: cover;
	border-radius: 15px;
}
.list-entry .entry-content {
	position: relative;
	width: calc(100% - 275px);
}
.list-entry .entry-time {
	font-size: 1.4rem;
	display: block;
	color: black;
	margin-bottom: 13px;
}
.list-entry .entry-content .entry-title {
	text-align: left;
	font-size: 2rem;
	font-weight: normal;
	line-height: 1.45em;
	margin-bottom: 22px;
}
.list-entry .entry-content .entry-title a {
	color: #000000;
}
.list-entry .entry-content .entry-cat {
	margin-top: 6px;
	margin-bottom: 10px;
}
.list-entry .entry-content .entry-cat a {
	font-size: 1.2rem;
	color: #2e8577;
	display: inline-block;
	background: #f0f5f1;
	padding: 5px 20px;
	border-radius: 30px;
	margin-right: 4px;
	transition: 0.3s ease;
}
.list-entry .entry-content .entry-cat a:hover {
	text-decoration: none !important;
	background: #2e8577;
	color: #fff;
}
.list-entry li:hover {
	background: #fcfbef;
}
.list-entry li:hover .entry-time,
.list-entry li:hover .entry-title a {
	color: #2e8577;
}
.list-entry li:hover .entry-cat a {
	background: #2e8577;
	color: #fff;
}
/*
	MAIN CP
	*/
.main-cp {
	position: relative;
	padding-bottom: 35px;
}
.main-cp-ac {
	padding-top: 85px;
}
.main-cp:before {
	content: "";
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(4, 146, 217, 70%);
}
.main-cp:after {
	content: "";
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	background: var(--yellow);
}
.main-cp .main-cp-header {
	background: #fff;
	width: 324px;
	height: 119px;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	padding-top: 10px;
	z-index: 3;
	position: relative;
	box-shadow: 0px 10px 0 rgba(4, 146, 217, 15%);
}

.main-cp .btn {
	z-index: 3;
}
.main-cp-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
	z-index: 3;
	margin-top: -10px;
}
.main-cp-content > .box-cp:nth-child(1) {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: flex-end; */
}
.main-cp-content > .box-cp:nth-child(2) {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: flex-end; */
	padding-left: 80px;
}
.box-cp {
	position: relative;
	margin-bottom: 20px;
}
.box-cp .cp-pic {
	margin-bottom: 28px;
	text-align: center;
}
.box-cp .cp-pic img {
	display: inline-block;
}
.box-cp .cp-content {
	display: flex;
}
.main-cp .main-cp-content > .box-cp:nth-child(1) .cp-content {
	justify-content: center;
}
.box-cp .cp-content .cp-select-title {
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 5%;
	margin-right: 10px;
}
.main-cp-content > .box-cp:nth-child(2) .cp-content .cp-select-title {
	color: var(--blue);
}
.box-cp .cp-content .select-wrap {
	width: 280px;
	margin-bottom: 0 !important;
}
.box-cp .cp-content .select-wrap select {
	width: 100%;
	outline: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	background: white;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 40px;
	padding: 0px 22px;
	border: none;
	color: var(--blue);
	width: 100%;
	border-radius: 10px;
	font-size: 1.6rem;
	letter-spacing: 5%;
	font-weight: bold;
	border: 2px solid var(--blue);
	background: #fff;
}

.button-search {
	margin-left: auto;
	margin-right: auto;
	z-index: 3;
	top: 60px;
	margin-bottom: 0;
	width: 270px;
	display: block;
	text-align: center;
	color: var(--blue) !important;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5em;
	text-decoration: none !important;
	position: relative;
	transition: none !important;
	background: none;
	border-radius: 40px;
	box-sizing: border-box;
	transition: 0.3s ease;
	padding: 12px 0;
	border: 2px solid var(--blue);
	box-shadow: 0px 4px 0px var(--blue);
	background: #fff;
	color: #fff !important;
	font-size: 2.1rem;
	font-weight: bold;
	background: var(--blue);
	border: 2px solid white;
	box-shadow: 0px 4px 0px white !important;
}
.button-search:after {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: 50%;
	background: url(../img/btn.png) 0 0 no-repeat;
	background-size: contain;
	width: 6px;
	height: 11px;
	margin-top: -5px;
	background: url(../img/btn-white.png) 0 0 no-repeat;
	background-size: contain;
}
.button-search:hover {
	background: #d73e52;
	box-shadow: none;
}
