body {
	width: 100%;
	font-family: "NotoSans","メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic",Arial,sans-serif, Osaka;
	font-size: 100%;
	line-height: 1.6;
	color: #333333;
	-webkit-text-size-adjust: none;
	background-color: #EDF4DF;
}
body img {
	width: 100%;
}

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

.pc_line {
	display: inline-block!important;
}
@media only screen and (max-width: 750px) {
	.pc_line {
		display: none !important;
	}
}
.sp_line {
	display: none !important;
}
@media only screen and (max-width: 750px) {
	.sp_line {
		display: inline-block!important;
	}
}
.landscape_line {
	display: none !important;
}
@media screen and (orientation: landscape) {
	.landscape_line {
		display: inline-block!important;
	}
}

.pagelink_contents {
	padding-top: 170px;
	margin-top: -170px;
}
@media only screen and (max-width: 750px) {
	.pagelink_contents {
		padding-top: 80px;
		margin-top: -80px;
	}
}


/*---------------
header
------------------*/
.l-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	padding: 15px;
	z-index: 100;
}

.l-header__logo {
	width: 90px;
}
@media only screen and (max-width: 750px) {
	.l-header__logo {
		width: 60px;
	}
}

.l-header__button a {
	display: inline-block;
	background-color: #85B61D;
	border: 4px solid #4C6900;
	border-radius: 30px;
	height: 60px;
	line-height: 56px;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 0 30px;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-header__button a {
		border: 2px solid #4C6900;
		border-radius: 18px;
		height: 36px;
		line-height: 32px;
		font-size: 16px;
		padding: 0 18px;
	}
}

.l-header__button a:hover {
	background-color: #4C6900;
	border: 4px solid #4C6900;
}
@media only screen and (max-width: 750px) {
	.l-header__button a:hover {
		border: 2px solid #4C6900;
	}
}
/*---------------
kv
------------------*/
.l-kv {
	width: 100%;
	height: 650px;
	background: url(../images/img_kv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 5%;
	box-sizing: border-box;
	position: relative;
}
@media only screen and (max-width: 750px) {
	.l-kv {
		width: 100%;
		height: 400px;
	}
}

.l-kv__logo {
	position: absolute;
	top: 20px;
	left: 15px;
	width: 150px;
	z-index: 1000;
}
@media only screen and (max-width: 750px) {
	.l-kv__logo {
		position: absolute;
		top: 15px;
		left: 10px;
		width: clamp(4.375rem, 2.049rem + 11.628vw, 7.5rem);
	}
}

.l-kv__txt {
	width: 100%;
}
@media only screen and (max-width: 750px) {
	.l-kv__txt {
		width: 100%;
	}
}

.l-kv__txt h1 {
	font-size: 44px;
	text-shadow:
	3px  3px 1px #f4f6f1,
	-3px  3px 1px #f4f6f1,
	3px -3px 1px #f4f6f1,
-3px -3px 1px #f4f6f1,
	3px  0px 1px #f4f6f1,
	0px  3px 1px #f4f6f1,
-3px  0px 1px #f4f6f1,
	0px -3px 1px #f4f6f1;
	font-weight: bold;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-kv__txt h1 {
		font-size: 22px;
	}
}

.l-kv__txt p {
	font-size: 16px;
	line-height: 2.4;
	margin-top: 50px;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-kv__txt p {
		font-size: 11px;
		line-height: 1.8;
		margin-top: 30px;
	}
}

/*---------------
紹介部分
------------------*/
.l-intro {
	width: 100%;
	background: url(../images/bg_whitelline.png);
	background-repeat: no-repeat;
	background-position: top;
	padding: 0 0 140px;
	border-top: 4px solid #85B61D;
	box-sizing: border-box;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-intro {
		background: url(../images/bg_whitelline.png);
		background-repeat: no-repeat;
		background-position: top -50px center;
		padding: 0 0 60px;
	}
}

.l-intro__slide {
	width: 100%;
	position: relative;
	margin: -70px auto 0;
	height: 300px;
	overflow: hidden;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-intro__slide {
		width: 100%;
		height: auto;
		margin: -60px auto 0;
	}
}

.l-intro__slide__inner {
	width: 1204px;
	position: relative;
	margin: 0 auto;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-intro__slide__inner {
		width: 100%;
	}
}

.l-slide__container {
	position: absolute;
	left: 307px;
	bottom: 0;
	width: 100%;
	height: 180px;
}
@media only screen and (max-width: 750px) {
	.l-slide__container {
		position: static;
		height: auto;
		margin-top: 10px;
	}
}

.l-slide {
	width: 100%;
	height: 180px;
}

.l-slidebox {
	width: 580px;
	height: 180px;
	box-sizing: border-box;
	border: 3px solid #333;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-slidebox {
		width: 90%;
		border-radius: 10px;
		padding: 10px;
		margin: 0 5%;
	}
}

.l-slidebox__people {
	width: 25%;
}
@media only screen and (max-width: 750px) {
	.l-slidebox__people {
		width: 30%;
	}
}

.l-slidebox__people__img {
	width: 70%;
	margin: 0 auto;
	text-align: center;
}

.l-slidebox__people__txt {
	margin-top: 10px;
	text-align: center;
	color: #333;
	font-size: 12px;
	font-weight: bold;
}

.l-slidebox__txt {
	width: 70%;
	color: #333;
	font-size: 14px;
	line-height: 1.8;
}
@media only screen and (max-width: 750px) {
	.l-slidebox__txt {
		width: 65%;
		font-size: 12px;
		line-height: 1.6;
	}
}

.l-intro__slide h3 {
	width: 277px;
}
@media only screen and (max-width: 750px) {
	.l-intro__slide h3 {
		width: 90%;
		margin: 0 auto;
	}
}

.l-intro__catch {
	width: 100%;
	max-width: 1204px;
	height: 190px;
	background-color: #fff;
	box-sizing: border-box;
	border: 4px solid #85B61D;
	border-radius: 40px;
	padding: 30px;
	margin: 60px auto 0;
	text-align: center;
	color: #333;
	font-size: 38px;
	font-weight: bold;
	box-sizing: border-box;
	transition:all 0.5s ease;
}
@media only screen and (max-width: 1000px) {
	.l-intro__catch {
		width: 90%;
		height: auto;
		margin: 40px auto 0;
		border-radius: 20px;
		padding: 20px;
		font-size: 24px;
	}
}

.l-intro__arrow {
	width: 62px;
	margin: 40px auto 20px;
}
@media only screen and (max-width: 750px) {
	.l-intro__arrow {
		width: 40px;
		margin: 20px auto 20px;
	}
}

.l-intro__detail {
	width: 100%;
	max-width: 1204px;
	background-color: #fff;
	box-sizing: border-box;
	border: 4px solid #85B61D;
	border-radius: 40px;
	padding: 0 30px 30px;
	margin: 70px auto 0;
	text-align: center;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail {
		width: 90%;
		border-radius: 20px;
		padding: 0 20px 20px;
		margin: 50px auto 0;
	}
}

.l-intro__detail h2 {
	width: 100%;
	max-width: 400px;
	margin: -65px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail h2 {
		width: 60%;
		margin: -30px auto 0;
	}
}

.l-intro__solution {
	width: 260px;
	margin: 40px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__solution {
		width: 60%;
		margin: 20px auto 0;
	}
}

.l-intro__detail__catch01 {
	max-width: 774px;
	color: #333;
	font-size: 38px;
	font-weight: bold;
	margin: 20px auto 0;
	padding-top: 20px;
	border-top: 1px solid #85B61D;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__catch01 {
		font-size: 22px;
	}
}

.l-intro__detail__catch02 {
	display: inline-block;
	background-color: #85B61D;
	border-radius: 30px;
	height: 60px;
	line-height: 60px;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	padding: 0 30px;
	margin: 50px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__catch02 {
		display: block;
		background-color: #85B61D;
		border-radius: 20px;
		height: auto;
		line-height: 1.6;
		font-size: 18px;
		font-weight: bold;
		padding: 20px;
		margin: 25px auto 0;
	}
}

.l-intro__detail__txt01 {
	color: #333;
	font-size: 18px;
	margin: 50px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__txt01 {
		font-size: 14px;
		margin: 25px auto 0;
		text-align: left;
	}
}

.l-intro__detail__logo {
	max-width: 880px;
	margin: 50px auto 0;
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo {
		width: 100%;;
		margin: 25px auto 0;
		flex-flow: column;
	}
}

.l-intro__detail__logo li:nth-child(1),
.l-intro__detail__logo li:nth-child(3) { width: 45%;}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo li:nth-child(1),
	.l-intro__detail__logo li:nth-child(3) { width: 100%;}
}

.l-intro__detail__logo li:nth-child(2) {
	width: 10%;
	display: flex;
	align-items: flex-end;
	padding-bottom: 36px;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo li:nth-child(2) {
		width: 100%;
		padding-bottom: 0;
	}
}

.l-intro__detail__logo li:nth-child(2) p {
	width: 40%;
	margin: 0 auto;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo li:nth-child(2) p {
		width: 10%;
		margin: 0 auto 15px;
	}
}

.l-intro__detail__logo__txt {
	text-align: center;
	color: #333;
	font-size: 20px;
	font-weight: bold;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo__txt {
		font-size: 14px;
	}
}

.l-intro__detail__logo__img {
	width: 90%;
	margin: 10px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__logo li:nth-child(1) .l-intro__detail__logo__img {
		margin: 0 auto;
	}
}

.l-intro__detail__txt02 {
	color: #333;
	font-size: 28px;
	font-weight: bold;
	margin: 40px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__detail__txt02 {
		font-size: 20px;
		margin: 20px auto 0;
		text-align: left;
	}
}

.l-intro__checkbox {
	width: 100%;
	max-width: 1204px;
	background-color: #fff;
	box-sizing: border-box;
	border: 4px dotted #85B61D;
	border-radius: 40px;
	padding: 30px 10px 30px 40px;
	margin: 40px auto 0;
}
@media only screen and (max-width: 750px) {
	.l-intro__checkbox {
		width: 90%;
		border-radius: 20px;
		padding: 20px;
	}
}

.l-intro__checkbox li {
	font-size: 34px;
	color: #85B61D;
	font-weight: bold;
	padding: 10px 0 10px 76px;
	position: relative;
	background: url(../images/img_check.png) left 0px top 8px no-repeat;
	background-size: 56px auto;
}
@media only screen and (max-width: 750px) {
	.l-intro__checkbox li {
		font-size: 20px;
		padding: 10px 0 10px 40px;
		background: url(../images/img_check.png) left 0px top 8px no-repeat;
		background-size: 30px auto;
	}
}

.l-intro__check__note {
	width: 100%;
	max-width: 1204px;
	margin: 20px auto 0;
	color: #333;
	font-size: 14px;
	padding-left: 40px;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-intro__check__note {
		width: 90%;
		font-size: 12px;
		margin: 10px auto 0;
		padding-left: 0;
	}
}

/*---------------
ポイントリンク
------------------*/
.l-pointlink {
	width: 100%;
	background-color: #fff;
	border-top: 4px solid #85B61D;
	border-bottom: 4px solid #85B61D;
	padding: 20px 10px 20px;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-pointlink {
		width: 100%;
		padding: 20px;
	}
}

.l-pointlink__ttl {
	width: 100%;
	max-width: 580px;
	margin: -40px auto 0;
	background: url(../images/ttl_pointlink.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.l-pointlink__ttl__inner {
	width: 100%;
	padding-top: 23.75%;
	position: relative;
}

.l-pointlink__ttl__inner p {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 10%;
	font-size: 38px;
	font-weight: bold;
	color: #fff;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__ttl__inner p {
		font-size: 20px;
		bottom: 12%;
	}
}

.l-pointlink__list {
	width: 100%;
	max-width: 1080px;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__list {
		margin: 10px auto 0;
		display: flex;
		justify-content: flex-start;
		flex-flow: column;
	}
}

.l-pointlink__button {
	display: block;
	border-radius: 20px;
	overflow: hidden;
	width: 328px;
	height: 328px;
	margin: 0 10px 10px 0;
	box-shadow: 10px 10px 0 0 rgb(82, 114, 12);
	transition:all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__button {
		width: 100%;
		height: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 20px 0 0;
		box-shadow: 5px 5px 0 0 rgb(82, 114, 12);
	}
}

.l-pointlink__button:hover {
	margin: 10px 0 0 10px;
	box-shadow: 0 0 0 0 rgb(82, 114, 12);
}
@media only screen and (max-width: 750px) {
	.l-pointlink__button:hover {
		margin: 20px 0 0;
		box-shadow: 5px 5px 0 0 rgb(82, 114, 12);
	}
}

.l-pointlink__img {
	width: 100%;
	height: 266px;
	background-color: #C0E7F9;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__img {
		width: 35%;
		height: 100px;
		padding: 10px;
		box-sizing: border-box;
	}
}

.l-pointlink__list li:nth-child(1) .l-pointlink__img p {  width: 62.5%; margin-left: 15%; }
.l-pointlink__list li:nth-child(2) .l-pointlink__img p {  width: 69.2%; }
.l-pointlink__list li:nth-child(3) .l-pointlink__img p {  width: 55.1%; }

.l-pointlink__txt {
	width: 100%;
	height: 62px;
	background-color: #fff;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__txt {
		width: 65%;
		height: auto;
		font-size: 16px;
		padding: 10px;
		box-sizing: border-box;
	}
}


.l-pointlink__arrow {
	width: 54px;
	margin: 0 auto 30px;
	padding-top: 30px;
}
@media only screen and (max-width: 750px) {
	.l-pointlink__arrow {
		display: none;
	}
}


/*---------------
ポイント詳細
------------------*/
.l-point {
	width: 100%;
	background: url(../images/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 120px 0 100px;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-point {
		padding: 60px 0 50px;
	}
}

.l-point__box {
	width: 100%;
	position: relative;
	margin-bottom: 50px;
}

#point01.l-point__box,
#point03.l-point__box {
	background: url(../images/bg_lightgreen.png);
	background-repeat: no-repeat;
	background-size: 50% 446px;
	background-position: top 30px right 0;
}
@media only screen and (max-width: 750px) {
	#point01.l-point__box,
	#point03.l-point__box {
		background: url(none);
	}
}

#point02.l-point__box {
	background: url(../images/bg_lightgreen.png);
	background-repeat: no-repeat;
	background-size: 50% 446px;
	background-position: top 30px left 0;
}
@media only screen and (max-width: 750px) {
	#point02.l-point__box {
		background: url(none);
	}
}

.l-point__img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
	max-width: 792px;
	height: 446px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	z-index: 0;
}
@media only screen and (max-width: 750px) {
	.l-point__img {
		position: relative;
		height: auto;
		border-radius: 0;
	}
}

#point01 .l-point__img,
#point03 .l-point__img {
	box-shadow: 30px 30px 0px 0 rgb(133, 182, 29);
}
@media only screen and (max-width: 750px) {
	#point01 .l-point__img,
	#point03 .l-point__img {
		box-shadow: 40px 15px 0px 0 rgb(133, 182, 29);
	}
}

#point02 .l-point__img {
	box-shadow: -30px 30px 0px 0 rgb(133, 182, 29);
}
@media only screen and (max-width: 750px) {
	#point02 .l-point__img {
		box-shadow: -40px 15px 0px 0 rgb(133, 182, 29);
	}
}

#point01 .l-point__img {
	background-color: #52BFDF;
}

#point02 .l-point__img {
	background-color: #fff;
}

#point03 .l-point__img {
	background-color: #F1F8FF;
}

.l-point__box__inner {
	max-width: 1040px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	padding-top: 100px;
}
@media only screen and (max-width: 750px) {
	.l-point__box__inner {
		padding-top: 0;
		margin-top: -20px;
	}
}

#point01 .l-point__box__inner,
#point03 .l-point__box__inner {
	display: flex;
	justify-content: flex-end;
}
@media only screen and (max-width: 750px) {
	#point01 .l-point__box__inner,
	#point02 .l-point__box__inner,
	#point03 .l-point__box__inner {
		display: flex;
		justify-content: center;
	}
}

.l-point__txtbox {
	width: 480px;
	padding: 40px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
@media only screen and (max-width: 750px) {
	.l-point__txtbox {
		width: 90%;
		border-radius: 10px;
		padding: 20px;
	}
}

.l-point__txtbox h3 {
	font-size: 28px;
	color: #85B61D;
	font-weight: bold;
}
@media only screen and (max-width: 750px) {
	.l-point__txtbox h3 {
		font-size: 20px;
	}
}

.l-point__txtbox p {
	font-size: 16px;
	margin-top: 40px;
	line-height: 2;
}
@media only screen and (max-width: 750px) {
	.l-point__txtbox p {
		font-size: 14px;
		margin-top: 20px;
	}
}

.l-point__plus {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
@media only screen and (max-width: 750px) {
	.l-point__plus {
		width: 90%;
	}
}

.l-point__plus h3 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding-top: 18.27%;
	background: url(../images/ttl_plus.png);
	background-repeat: no-repeat;
	background-size: contain;
}
@media only screen and (max-width: 750px) {
	.l-point__plus h3 {
		padding-top: 29.92%;
		background: url(../images/ttl_plus_sp.png);
		background-repeat: no-repeat;
		background-size: contain;
	}
}

.l-point__plus h3 p {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 5%;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	transition: all 0.5s ease;
}
@media only screen and (max-width: 1020px) {
	.l-point__plus h3 p {
		font-size: 20px;
		bottom: 5%;
		text-align: center;
		line-height: 1.4;
	}
}
@media only screen and (max-width: 750px) {
	.l-point__plus h3 p {
		font-size: 12px;
		bottom: 3%;
		text-align: center;
		line-height: 1.4;
	}
}

.l-point__plus__txt {
	padding: 50px 10px;
	border-radius: 0 0 40px 40px;
	background-color: #fff;
	border-bottom: 6px solid #FFBA00 ;
	border-right: 6px solid #FFBA00 ;
	border-left: 6px solid #FFBA00 ;
	box-sizing: border-box;
	text-align: center;
}
@media only screen and (max-width: 750px) {
	.l-point__plus__txt {
		padding: 25px 10px;
	}
}

.l-point__plus__txt__catch {
	display: inline-block;
	color: #85B61D;
	font-size: 36px;
	padding-bottom: 20px;
	border-bottom: 1px solid #85B61D;
	font-weight: bold;
}
@media only screen and (max-width: 750px) {
	.l-point__plus__txt__catch {
		font-size: 22px;
		padding-bottom: 10px;
	}
}

.l-point__plus__txtbox {
	color: #333;
	font-size: 16px;
	margin-top: 25px;
}
@media only screen and (max-width: 750px) {
	.l-point__plus__txtbox {
		font-size: 14px;
		margin-top: 15px;
	}
}

.l-point__plus__txtbox span {
	color: #85B61D;
	font-size: 28px;
}
@media only screen and (max-width: 750px) {
	.l-point__plus__txtbox span {
		font-size: 20px;
	}
}

/*---------------
button
------------------*/
.l-button {
	display: block;
	width: 100%;
	max-width: 700px;
	background-color: #85B61D;
	border: 4px solid #4C6900;
	border-radius: 50px;
	height: 100px;
	margin: 60px auto 0;
	line-height: 100px;
	box-sizing: border-box;
	transition: all 0.5s ease;
}
@media only screen and (max-width: 750px) {
	.l-button {
		width: 90%;
		border-radius: 30px;
		height: 60px;
		margin: 30px auto 0;
		line-height: 56px;
	}
}

.l-button:hover {
	background-color: #4C6900;
	border: 4px solid #4C6900;
}

.l-button p {
	color: #fff;
	font-size: 38px;
	font-weight: bold;
	text-align: center;
}
@media only screen and (max-width: 750px) {
	.l-button p {
		font-size: 20px;
	}
}

/*---------------
footer
------------------*/
.l-footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-footer {
		display: flex;
		justify-content: flex-start;
		flex-flow: column;
	}
}

.l-footer__txt {
	width: 50%;
	background-color: #85B61D;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-footer__txt {
		width: 100%;
		padding: 20px;
	}
}

.l-footer__txt__inr > p:first-child {
	color: #fff;
	font-size: 28px;
	text-align: center;
	font-weight: bold;
}
@media only screen and (max-width: 750px) {
	.l-footer__txt__inr > p:first-child {
		font-size: 20px;
	}
}

.l-footer__txt__inr p:last-child {
	color: #fff;
	font-size: 16px;
	text-align: center;
	margin-top: 40px;
}
@media only screen and (max-width: 750px) {
	.l-footer__txt__inr p:last-child {
		font-size: 14px;
		margin-top: 20px;
	}
}

.l-footer__notes {
	margin-top: 15px;
	font-size: 14px;
	@media only screen and (max-width: 750px) {
		font-size: 12px;
	}
}
.l-footer__notes-item {
	position: relative;
	padding-left: 1em;
	&::before {
		position: absolute;
		top: 0;
		left: 0;
		content: "※";
	}
}

.l-footer__img {
	width: 50%;
}
@media only screen and (max-width: 750px) {
	.l-footer__img {
		width: 100%;
	}
}

.l-copyright {
	width: 100%;
	background-color: #333;
	text-align: center;
	padding: 40px 10px;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.l-copyright {
		padding: 20px 10px;
	}
}

.l-copyright p {
	color: #fff;
	font-weight: bold;
	font-size: 16px;
}
@media only screen and (max-width: 750px) {
	.l-copyright p {
		font-size: 12px;
	}
}
