@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');

@import url('css-reset.css');

/*
font-family: 'Noto Serif JP', serif;
font-family: 'Roboto', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Oswald', sans-serif;


1536px
1366px
1112px
750px

*/

/*============================
　基本
============================*/

body{
	position: relative;
	width: 100%;
	font-family:'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
	font-size: 100%;
	line-height: 1.75;
	color: #444444;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
	@media (max-width:1112px) {
		body{
			font-size: 87.5%;
		}
	}
	@media (max-width:750px) {
		body{
			font-size: 81.25%;
		}
	}
img{
	line-height: 1.0;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
a{
	text-decoration: none;
	color: #444444;
	transition : all .5s;
	-webkit-transition: all .5s;
}
a.link{
	color: #df7503;
	text-decoration: underline;
}
a.link-green{
	color: #87a300;
	text-decoration: underline;
}
a.link-white{
	color: #fff;
	text-decoration: underline;
}
a.underline{
	text-decoration: underline;
}
a.link-arw{
	color: #df7503;
	background: url(../images/common/icon-arw-orange.svg) no-repeat left .25em;
	background-size: 1em auto;
	padding-left: 1.5em;
}
a.link-arw-blue{
	color: #44659e;
	background: url(../images/common/icon-arw-blue.svg) no-repeat left .25em;
	background-size: 1em auto;
	padding-left: 1.5em;
}
a.btn-arw-green{
	display: block;
	color: #fff;
	background: #9fb61b url(../images/common/icon-arw-cha.svg) no-repeat calc(100% - 1em) center;
	background-size: 1em auto;
	padding: 1em;
	border-radius: 10em;
	-moz-border-radius: 10em;
	-webkit-border-radius: 10em;
}
a.btn-arw-white-small{
	display: inline-block;
	color: #fff;
	background: #df7503 url(../images/common/icon-arw-white.svg) no-repeat calc(100% - 1em) center;
	background-size: 1em auto;
	padding: 1em 3em 1em 1em;
	border-radius: 10em;
	-moz-border-radius: 10em;
	-webkit-border-radius: 10em;
}
a.link-jump-orange{
	color: #df7503;
	background: url(../images/common/icon-jump-link-orange.png) no-repeat left center;
	background-size: 1em auto;
	padding-left: 1.25em;
}
/*============================
　改行基本
============================*/
/* 幅に入りきらないときに囲った要素ごと改行する */
.inline-b{
	display: inline-block;
}

	@media (max-width:750px) {
		/*SPだけ span で囲った部分を顔行*/
		.sp-br{
			display: block;
		}
		/*SPだけ br を消してインライン化*/
		.br-inline{
			display: none;
		}
	}

/*============================
　文字基本
============================*/

.em{
	font-weight: bold;
}
.em500{
	font-weight: 500;
}
.xx-small{
	font-size: .6875em;
}
.x-small{
	font-size: .75em;
}
.small{
	font-size: .875em;
}
.medium{
	font-size: .9375em;
}
.large{
	font-size: 1.125em;
}
.x-large{
	font-size: 1.1875em;
}
.xx-large{
	font-size: 1.25em;
}
.xxx-large{
	font-size: 1.3125em;
}

/*============================
　リスト
============================*/
.list-disc li{
	list-style: disc;
	list-style-position: outside;
	margin-left: 1.375rem;
}
.list-decimal li{
	list-style: decimal;
	list-style-position: outside;
	margin-left: 1.375rem;
}
.list-note li{
	position: relative;
	padding-left: 1em;
}
.list-note li:before{
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
/*============================
　flex
============================*/
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
}
.row-reverse{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.space-between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.space-around{
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.align-center{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.align-end{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.flex-list-wrap li{
	padding-right: 1rem;
}

/*============================
　CSSアニメーション
============================*/
.fadein{
	opacity : 0;
	transform : translate(0, 2.5rem);
	transition : all .7s;
	-webkit-transition: all .7s;
}
.fadein.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}

/*============================
　ヘッダー ロゴ
============================*/
header{
	position: relative;
	z-index: 2;
}
#logo{
	position: fixed;
	top: 0;
	left: 1.25em;
}
a.header-logo{
	margin-left: auto;
	margin-right: auto;
	width: 348px;
	display: block;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	padding: 1.75em 0 1.25em;
}
a.header-logo:hover{
	opacity: .6;
}

/*  Scroll js  */
a.header-logo.isSmall{
	width: 224px!important;
}
	@media (max-width:1112px) {
		a.header-logo{
			width: 280px;
		}
		a.header-logo.isSmall{
			width: 224px!important;
		}
	}
	@media (max-width:750px) {
		#logo{
			top: .75em;
			left: .75em;
		}
		a.header-logo{
			width: 187px;
			padding:0;
		}
		a.header-logo.isSmall{
			width: 150px!important;
		}
	}

/*============================
　chat bot
============================*/
.chatbox-none{
	display: none;
}
	@media (max-width:750px) {
		#miracle-chatbot-button-area{
			margin-bottom: 40px;
		}
	}
#miracle-chatbot-area{
	opacity : 0;
	transition : all 1s;
	-webkit-transition: all 1s;
}
#miracle-chatbot-area.scrollin{
	opacity : 1;
}

/*============================
　ヘッダー ナビゲーション　トリガー共通
============================*/
input#trigger--pc,
input#trigger--sp{
	display: none;
}
.stop{
	overflow: hidden;
	height: 100%;
}
/*============================
　PCナビゲーション トリガー
============================*/
nav#pc-nav{
	position: relative;
}

	@media (max-width:750px) {
		nav#pc-nav{
			display: none;
		}
	}

nav#pc-nav .overlay{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	opacity: 0;
	transform: scale(0);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
nav#pc-nav  input:checked ~ .overlay{
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	overflow: auto;
}
nav#pc-nav .modal_trigger{
	position: absolute;
	width: 100%;
	height: 100%;
}

nav#pc-nav .modalcontent{
	align-self: flex-start;
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	transition: all .5s;
	-webkit-transition: all .5s;
	-webkit-overflow-scrolling: touch;
	position: relative;
}
nav#pc-nav .humberger{
	position: fixed;
	top: .75em;
	right: 1.5em;
	width: 4em;
	height: 4em;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	cursor: pointer;
	background: #726f60;
	z-index: 1000;
}

nav#pc-nav .humberger:before,
nav#pc-nav .humberger:after {
	content: "";
	position: absolute;
	left: 50%;
	width:  60%;
	margin-left: -30%;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
nav#pc-nav .humberger:before{
	top: 40%;
}
nav#pc-nav .humberger:after {
	top: 60%;
}

nav#pc-nav input:checked ~ .humberger:before{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 50%;
}

nav#pc-nav input:checked ~ .humberger:after{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 50%;
}
/*============================
　ハンバーガーナビ　共通スタイル部分
============================*/
.pagelink,
.menu-item-other a{
	font-size: 1.25em;
	font-weight: bold;
	display: block;
	color: #726f60;
	margin-bottom: .375em;
	letter-spacing: 1px;
}
	.sp-nav-section .pagelink,
	.sp-nav-section .menu-item-other a{
		font-size: 1.14285em;
	}
	.sp-nav-section .pagelink{
		border-bottom: 1px solid #726f60;
		margin-bottom: .5em;
	}

.menu-item{
	margin-bottom: 1.375em;
}
.menu-item-other{
	margin-top: 1.5em;
}
.navi-submenu a{
	display: block;
	padding-left: 1.25em;
	position: relative;
	color: #726f60;
}
.navi-submenu a:before{
	position: absolute;
	top: 0;
	left: 0;
	margin-top: .875em;
	width: .5em;
	height: 1px;
	background: #df7503;
	content: "";
}
.icon-arw{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-arw-orange.svg);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-first{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-first-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-schedule{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-schedule-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-webyoyaku{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-webyoyaku-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-tel{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-tel-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-trimming{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-trimming-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-pethotel{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-pethotel-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-seminar{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-seminar-orange.png);
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
.icon-time{
	padding-left: 1.75em;
	background-image: url(../images/common/icon-time-cha.png);
	background-size: 1em auto;
	background-size: 1.25em auto;
	background-repeat: no-repeat;
	background-position: left center;
}
/* hover */
.pc-nav-flex a:hover{
	opacity: .6;
}

/*============================
　PCハンバーガーナビ　スタイル
============================*/
.pc-nav-flex{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	flex-wrap: wrap;
}
/* イメージ　＋　メニュー幅 */
.pc-nav-flex .backimg{
	background: url(../images/common/pc-nav-bg.png) no-repeat 45% center;
	width: 23%;
	background-size: cover;
}
.pc-nav-menu{
	width: calc(100% - 23%);
}
	@media (max-width:1112px) {
		.pc-nav-flex .backimg{
			width: 12%;
		}
		.pc-nav-menu{
			width: calc(100% - 12%);
		}
	}

/* ロゴマーク */
.pc-nav-eng-logo{
	width: 60%;
	max-width: 580px;
	padding: 3em 0 3em 4em;
}
.pc-nav-ja-logo{
	width: 95%;
	max-width: 330px;
	margin-bottom: 2em;
	position: relative;
	left: -3px;
}
	@media (max-width:1112px) {
		.pc-nav-eng-logo{
			padding-left: 2.5em;
		}
	}

/* メニュー＋その他　左右幅 */
.pc-main-item{
	width: calc(100% - 42%);
}
.pc-other-item{
	width: 42%;
}


/* インナー */
.pc-main-inner{
	padding: 0 3em 5em 4em;
	border-right: 1px solid #dcdcd8;
}
.pc-other-inner{
	padding: 0 3em 3em 3em;
}
	@media (max-width:1112px) {
		.pc-main-inner{
			padding: 0 1em 3em 2.5em;
		}
		.pc-other-inner{
			padding: 0 2em 3em 2em;
		}
	}

/* メインメニュー 左右幅 */
.pc-main-inner .left-item,
.pc-main-inner .right-item{
	width: 50%;
}

/*　外観 装飾*/
a.gaikan-access {
	display: block;
	position: relative;
	margin-bottom: .75em;
}
.gaikan-access img{
	border-radius: 1em;
	-moz-border-radius: 1em;
	-ewbkit-border-radius: 1em;
}
a.gaikan-access div{
	background: #fff url(../images/common/icon-access-cha.png) no-repeat .5em 55%;
	background-size: auto 1.5em;
	padding: .5em 0 .5em 2.25em;
	font-weight: bold;
	color: #726f60;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 1em 0 0 0;
	-moz-border-radius: 1em 0 0 0;
	-ewbkit-border-radius: 1em 0 0 0;
}

/* その他メニュー装飾 */
.pc-nav-other-link{
	position: relative;
}
.pc-nav-other-link li{
	margin-bottom: .5em;
}
.pc-nav-other-link a{
	font-weight: bold;
	display: inline-block;
	color: #726f60;
}
.pc-navlink{
	margin-top: 1.75em;
	width: 100%;
}
.pc-navlink a{
	display: block;
	width: calc(50% - 1em - .25em);
	background: #eae9e7 url(../images/common/icon-arw-cha.svg) no-repeat 92% center;
	background-size: 1em auto; 
	padding: .75em 0 .75em 1em;
	font-size: .9375em;
	font-weight: bold;
	color: #726f60;
	border-radius: 5em;
	-moz-border-radius: 5em;
	-webkit-border-radius: 5em;
}
.pc-navlink a.link-oizumi{
	display: block;
	width: 100%;
	background: #eae9e7 url(../images/common/point-mark-shiro.png) no-repeat 97% center;
	background-size: auto 2em; 
	padding: .75em 0 .75em 1em;
	font-size: .875em;
	font-weight: bold;
	color: #726f60;
	border-radius: 5em;
	-moz-border-radius: 5em;
	-webkit-border-radius: 5em;
	margin-top: 1em;
}
.pc-navsns{
	position: absolute;
	right: 0;
	top: 0;
}
.pc-navsns img{
	width: 28px;
	margin-left: .375em;
}
	@media (max-width:1112px) {
		.pc-navsns img{
			width: 24px;
			margin-left: .25em;
		}
	}


/*============================
　SPナビゲーション トリガー
============================*/
#sp-nav-fixed{
	display: none;
}
	@media (max-width:750px) {
		#sp-nav-fixed{
			display: block;
		}
		.header-sp-nav{
			position: fixed;
			width: 100%;
			bottom: 0;
		}
		.bottom-iconbar{
			width: 100%;
			height: 66px;
			display: flex;
			display: -webkit-flex;
			display: -moz-flex;
			display: -ms-flex;
			display: -o-flex;
			background: #726f60;
			position: relative;
			z-index: 100001;
		}
		.bottom-iconbar > a{
			width: 25%;
			display: block;
		}
		.bottom-iconbar > a img{
			height: 48px;
			padding: 9px 0;
			display: block;
			margin: 0 auto;
		}
		.humberger-sp {
			position: fixed;
			bottom: 0;
			right: 0;
			display: flex;
			height: 66px;
			width: 25%;
			justify-content: center;
			-webkit-box-align: center;
			-ms-flex-align: center;
			align-items: center;
			z-index: 100001;
		}
		.humberger-sp span,
		.humberger-sp span:before,
		.humberger-sp span:after {
			content: '';
			display: block;
			height: 3px;
			width: 25px;
			border-radius: 3px;
			background-color: #ffffff;
			position: absolute;
		}
		.humberger-sp span:before {
			bottom: 8px;
		}
		.humberger-sp span:after {
			top: 8px;
		}
		/* menu */
		.menu-content {
			width: 100%;
			height: 100vh;
			position: fixed;
			top: 0;
			left: 100%;
			background-color: #fff;
			transition: all 0.5s;
			-webkit-transition: all 0.5s;
			overflow: scroll;
			overflow-scrolling: touch;
			-webkit-overflow-scrolling: touch;
			z-index: 100000!important;
		}
		#trigger--sp:checked ~ .menu-content {
			left: 0;
		}
		.scroll{
			width: 100%;
			margin: 0;
			padding: 1.5em 0 13rem;
		}
	}
	@media (max-width:374px) {
		.scroll{
			font-size: .92857em;
		}
	}

/*============================
　SPナビゲーション レイアウトスタイル
============================*/
/*上部メニュー*/
.sp-nav-section{
	width: 88%;
	margin: 0 auto;
}
.sp-nav-flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.sp-nav-flex .left-item{
	width: 46%;
}
.sp-nav-flex .right-item{
	width: 44%;
}
.sp-nav-section .menu-item a,
.sp-nav-section .menu-item-sns a{
	display: block;
}
.sp-nav-section a.navi-page,
.sp-nav-section .menu-item-sns a{
	font-size: 1.14285em;
	font-weight: bold;
	margin-bottom: .5em;
}
.sp-nav-section a.navi-page{
	border-bottom: 1px solid #726f60;
}

/*下部メニュー*/
.sp-nav-other {
	border: 1px solid #726f60;
	width: 88%;
	margin: .5em auto 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
	border-radius: .5em;
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
}
.sp-nav-other li{
	width: calc(50% - 1px);
	text-align: center;
}
.sp-nav-other li:nth-child(odd){
	border-right: 1px solid #726f60;
}
.sp-nav-other li:nth-child(-n + 2){
	border-bottom: 1px solid #726f60;
}
.sp-nav-other li a{
	display: block;
	padding: .75em 0;
	font-weight: bold;
	color: #726f60;
}
.sp-nav-other li a.sp-nav-access{
	background: url(../images/common/icon-access-cha.png) no-repeat 1em center;
	background-size: 1.25em auto;
}
.sp-nav-other li a.sp-nav-first{
	padding-left: 1.5em;
	background: url(../images/common/icon-first-cha.png) no-repeat 1em center;
	background-size: 1.25em auto;
}
.sp-nav-other li a.sp-nav-arw{
	background: url(../images/common/icon-arw-cha.svg) no-repeat 1em center;
	background-size: 1.25em auto;
}
.sp-nav-other li:nth-child(4) a{
	padding-left: 1.5em;
}

/*SNSリンク*/
.sp-navlink-flex{
	width: 88%;
	margin: 1.5em auto 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.sp-navlink{
	width: 50%;
}
.sp-navlink a{
	position: relative;
	font-weight: bold;
	color: #726f60;
	display: block;
	padding-left: 1.5em;
	background: url(../images/common/icon-arw-cha.svg)no-repeat left center;
	background-size: 1em auto;
}
.sp-navsns{
	width: 50%;
	text-align: right;
}
.sp-navsns img{
	width: 28px;
	height: auto;
	margin-left: .75em;
}
/*============================
　フッター
============================*/
footer{
	position: relative;
	background: #fff;
	font-size: .9375em;
}
.footer-info-inner{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	padding: 4.5em 0 2.5em;
}
.footer-info{
	width: calc(100% - 400px);
	line-height: 1.5;
}
.footer-thumbnail{
	display: block;
	width: 400px;
	height: 281px;
	background: url(../images/common/footer-gaikan.jpg) no-repeat 58% center;
	background-size: cover;
	position: relative;
}
.footer-info-flex{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
}
.footer-info-flex .footer-logo{
	max-width: 236px;
}
.footer-info-flex ul{
	width: calc(100% - 236px - 4rem);
	padding: 0 2rem;
}
.footer-info li{
	padding: 1.5em 0;
	border-bottom: 1px solid #dfdfdc;
}
.footer-info li:first-child{
	padding-top: 0;
}
.footer-info li:last-child{
	border-bottom: 0;
}
	@media (min-width:1536px) {
		.footer-info-inner{
			max-width: 1349px;
		}
	}
	@media (max-width:1112px) {
		.footer-info-inner{
			width: 95%;
			margin-left: 5%;
		}
		.footer-info{
			width: calc(100% - 33.3333%);
		}
		.footer-thumbnail{
			width: 33.3333%;
			height: 230px;
		}
		.footer-info-flex .footer-logo{
			max-width: 30%;
		}
		.footer-info-flex ul{
			width: calc(100% - 30% - 4rem);
		}
	}
	@media (max-width:750px) {
		.footer-info-inner{
			width: 78%;
			margin: 0 auto;
			padding: 2.5em 0;
		}
		.footer-info{
			width: 100%;
		}
		.footer-thumbnail{
			width: 100%;
			height: 0;
			padding-top: 70%;
		}
		.footer-info-flex .footer-logo{
			max-width: 60%;
			margin: 0 auto 1em auto;

		}
		.footer-info-flex ul{
			width: 100%;
			padding: 0;
			margin-bottom: .5em;
		}
		.footer-info li{
			padding: 1em 0;
		}

	}

.footer-info a.googlemap{
	display: inline-block;
	text-decoration: underline;
}
.footer-info a.icon-access{
	margin-left: 1.5em;
}
a.icon-access{
	padding-left: 1em;
	color: #df7503;
	text-decoration: underline;
	background: url(../images/common/icon-access-orange.png) no-repeat left center;
	background-size: auto 1em;
}
.footer-tel{
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	margin-top: .25em;
}
.footer-tel span.link-tel{
	font-size: 1.75em;
	margin-left: .5em;
	display: inline-block;
	text-decoration:none;
}
.link-bunin img{
	width: auto;
	height: 54px;
	margin-left: .75em;
}
	@media (max-width:1112px) {
		.link-bunin img{
			height: 40px;
		}
	}

/*フッターナビゲーション -----------------*/
.footer-pagenavi{
	background: #9fb61b;
	line-height: 1.5;
}
.footer-pagenavi-inner{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding-top: 3em;
}
	@media (min-width:1536px) {
		.footer-pagenavi-inner{
			max-width: 1124px;
		}
	}
.footer-menu{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap:wrap;
}
.footer-menu li{
	width: calc(20% - 2em);
	padding-right: 2em;
}
	@media (max-width:750px) {
		.footer-menu{
			width: 95%;
			margin: 0 auto;
		}
		.footer-menu li{
			width: 100%;
			padding-right: 0;
		}
	}

/*PC用 -----------------*/
.trigger-check {
	display: none;
}
.footer-menu .menu-item{
	margin-bottom: 1.25em;
}
.foot-label a,
.foot-nolabel a{
	background: url(../images/common/icon-arw-white.svg) no-repeat left center;
	background-size: 1em auto;
	color: #fff;
	font-weight: bold;
	position: relative;
	display: block;
	margin-bottom: .5em;
	padding-left: 1.5em;

}
.foot-label{
	color: #fff;
	font-weight: bold;
	position: relative;
	display: block;
	margin-bottom: .5em;
}
.foot-submenu a{
	position: relative;
	color: #fff;
	display: block;
	font-size: .9375em;
	padding-left: 1.75em;
	margin-bottom: .5em;
}
.foot-submenu a:before{
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 1em;
	height: 1px;
	background: #d9e2a5;
	content: "";
}
/*SP用 ----------------*/
	@media (max-width:750px) {
		.footer-menu{
			border-bottom: 1px solid #b8c957;
		}
		.footer-menu .menu-item{
			margin-bottom: 0;
		}
		.foot-label,
		.foot-label a,
		.foot-nolabel a{
			margin-bottom: 0;
		}

		.foot-label a{
			display: inline;
		}
		.foot-label a,
		.foot-nolabel a{
			background: none;
			padding-left: 0;
		}

		.foot-label,
		.foot-nolabel{
			border-top: 1px solid #b8c957;
			padding: 1em 0;
		}
		.foot-label::after {
			position: absolute;
			top: 50%;
			right: 1px;
			height: 100%;
			color: #d9e2a5;
			text-align: center;
			font-size: 1rem;
			content: '＋';
			margin-top: -.875em;
		}
		.foot-submenu {
			height: 0;
			overflow: hidden;
			opacity: 0;
			transition: all .5s;
		}
		.trigger-check:checked~.foot-submenu {
			height: auto;
			opacity: 1;
			padding-top: .25em;
			padding-bottom: 1.75em;
		}
		.trigger-check:checked+.foot-label:after {
			content: 'ー';
		}
		.foot-submenu {
			width: 100%;
			display: -webkit-flex;
			display: -moz-flex;
			display: -ms-flex;
			display: -o-flex;
			display: flex;
			flex-wrap:wrap;
		}
		.foot-submenu a{
			width: calc(50% - 1.25em);
			margin: .5em 0;
		}
		.foot-submenu a:before{
			left: .25em;
		}
	}

.footer-description{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	color: #fff;
	font-size: .75rem;
	border-top: 1px solid #d9e2a5;
	padding: 2em 0;
	margin-top: 2em;
	color: #d9e2a5;
}
	@media (min-width:1536px) {
		.footer-description{
			max-width: 1349px;
		}
	}
	@media (max-width:750px) {
		.footer-description{
			border-top: none;
			margin-top: 0;
			padding-bottom: 8em;
		}
	}

.copylight{
	font-size: .875em;
	color: #fff;
	text-align: right;
	margin-top: 1.75em;
	color: #d9e2a5;
}
	@media (max-width:750px) {
		.copylight{
			font-size: .675em;
		}
	}


