@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* 全体の設定 */

html {
	color: #222;
	}

body {
	width: 100%;
	font-family: 'Hiragino Sans', YuGothic, 'Yu Gothic medium', Meiryo, 'sans-serif';
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 16px;
	}

a {
	text-decoration: none;
	color: #222;
	cursor: pointer;
	}

p {
	color: #222;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.container {
    padding: 120px 0;
}
	
.wrapper {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}

.btn {
	display: block;
	width: 180px;
	height: 45px;
	line-height: 45px;
	color: #FFF;
	background-color: #24a33b;
	font-size: 14px;
	font-weight: 600;
	border-radius: 30px;
	padding-left: 20px;
	position: relative;
	transition: .2s;
}

.btn::after {
	display: inline-block;
	content: "→";
	text-align: center;
	line-height: 33px;
	font-size: 20px;
	color: #24a33b;
	background-color: #FFF;
	width: 33px;
	height: 33px;
	border-radius: 16px;
	position: absolute;
	right: 6px;
	top: 6px;
	transition: .2s;
}

.btn:hover {
	background-color: #d53739;
}

.btn:hover::after {
	color: #563116;
}

.h2 {
	font-size: 28px;
	font-weight: 600;
	color: #563116;
}

.h2--horizontal::before {
	display: inline-block;
	content: "";
	width: 28px;
	height: 24px;
	background-image: url("/img/common/icon_h2.png");
	background-size: cover;
	vertical-align: -2px;
	margin-right: 15px;
}

.h2--vertical {
	text-align: center;
	position: relative;
}

.h2--vertical::before {
	display: inline-block;
	content: "";
	width: 28px;
	height: 24px;
	background-image: url("/img/common/icon_h2.png");
	background-size: cover;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -30px;
}





/* header */
.header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	transition: .2s;
	z-index: 9000;
}

.header__logo {
	position: absolute;
	top: 15px;
	left: 1.5%;
	width: 100px;
	height: auto;
	transition: .2s;
}

.header__logo:hover {
	opacity: .8;
}

.globalNav {
	position: absolute;
	right: 0;
	top: 0;
}

.globalNav__box {
	display: flex;
	height: 100px;
	transition: .2s;
}

.globalNav__item {
	margin-left: 30px;
	height: 100px;
	display: flex;
	align-items: center;
	transition: .2s;
}

.globalNav__link {
	color: #FFF;
	font-weight: 600;
	transition: .2s;
}

.globalNav__link:hover,
.globalNav__link.current {
	color: #24a33b;
}

.globalNav__item:last-child .globalNav__link {
	display: flex;
	width: 180px;
	height: 100%;
	justify-content: center;
	align-items: center;
	background-color: #f39800;
	position: relative;
	padding-top: 30px;
	transition: .2s;
}

.globalNav__item:last-child .globalNav__link:hover {
	background-color: #d53739;
	color: #FFF;
}

.globalNav__item:last-child .globalNav__link::before {
	display: inline-block;
	content: "";
	width: 30px;
	height: 30px;
	background-image: url("/img/common/icon_contact.png");
	background-size: cover;
	position: absolute;
	top: 20px;
	right: 0;
	left: 0;
	margin: auto;
	transition: .2s;
}

.globalNav__line {
	width: 30px;
	height: 30px;
	background-image: url("/img/common/icon_line.png");
	background-size: cover;
	background-position: center center;
	transition: .2s;
}

.globalNav__line:hover {
	opacity: .8;
}

.scroll.header {
	background-color: #FFF;
	height: 80px;
}

.scroll .header__logo {
	width: 45px;
	top: 10px;
}

.scroll .globalNav__box,
.scroll .globalNav__item {
	height: 80px;
}

.scroll .globalNav__link {
	color: #222;
}

.scroll .globalNav__link:hover {
	color: #24a33b;
}

.scroll .globalNav__item:last-child .globalNav__link {
	color: #FFF;
	padding-top: 35px;
}

.scroll .globalNav__item:last-child .globalNav__link::before {
	top: 15px;
}



/* fixNav */
.fixNav {
	position: fixed;
	right: 2%;
	bottom: 30px;
	background-color: #24a33b;
	padding: 25px;
	border-radius: 10px;
	z-index: 1000;
}

.close.fixNav {
	display: none;
}

.fixNav__ttl {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
	position: relative;
	margin-bottom: 10px;
}

.fixNav__ttl::before {
	display: inline-block;
	content: "";
	width: 2px;
	height: 30px;
	background-color: #FFF;
	transform: rotate(-20deg);
	margin-right: 10px;
	vertical-align: -7px;
}

.fixNav__ttl::after {
	display: inline-block;
	content: "";
	width: 2px;
	height: 30px;
	background-color: #FFF;
	transform: rotate(20deg);
	margin-left: 10px;
	vertical-align: -7px;
}

.fixNav__btn {
	margin-bottom: 10px;
	width: 220px;
}

.fixNav__btn--mail {
	background-color: #F39800;
	color: #FFF;
}

.fixNav__btn--mail::after {
	color: #F39800;
}

.fixNav__btn--line {
	background-color: #FFF;
	color: #4cc764;
}

.fixNav__btn--line::after {
	color: #FFF;
	background-color: #4cc764;
}

.fixNav__btn--line:hover {
	color: #FFF;
}

.fixNav__btn--line:hover::after {
	background-color: #FFF;
}

.fixNav__btn--tel {
	font-size: 22px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
}

.fixNav__btn--tel::before {
	display: inline-block;
	content: "";
	width: 29px;
	height: 28px;
	background-image: url("/img/common/icon_fixNav.png");
	background-size: cover;
	vertical-align: -3px;
	margin-right: 7px;
}

.fixNav__close {
	width: 32px;
	height: 32px;
	background-color: rgba(130,130,130, .7);
	border-radius: 16px;
	position: absolute;
	right: -10px;
	top: -10px;
}

.fixNav__close::before {
	display: inline-block;
	content: "";
	width: 18px;
	height: 2px;
	background-color: #FFF;
	transform: rotate(45deg);
	position: absolute;
	top: 15px;
	left: 7px;
}

.fixNav__close::after {
	display: inline-block;
	content: "";
	width: 18px;
	height: 2px;
	background-color: #FFF;
	transform: rotate(-45deg);
	position: absolute;
	top: 15px;
	left: 7px;
}

.fixNav__close:hover {
	cursor: pointer;
}



/* mv */
.mv {
	width: 100%;
	height: calc(100vh - 50px);
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mv__h1 {
	font-size: 60px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	background:linear-gradient(transparent 75%, #24a33b 75%);
	line-height: 1.2;
}



/* breadcrumb */
.breadcrumb__box {
	display: flex;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item:not(:first-child)::before {
	content: ">";
	margin-right: 10px;
	font-size: 14px;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}





/* footer */
.footer__area-h2 {
	margin-bottom: 50px;
}

.footer__area {
	background-image: url("/img/common/bg_footer_area.jpg");
	background-size: cover;
	background-position: center center;
}

.footer__area-box {
	max-width: 600px;
	margin: 0 auto 35px auto;
	display: flex;
	justify-content: space-between;
}

.footer__area-item {
	width: 100%;
	background-color: #FFF;
	border: 2px solid #563116;
	border-radius: 10px;
	position: relative;
	padding: 50px 35px 40px 35px;
}

.footer__area-h3 {
	width: 250px;
	height: 50px;
	line-height: 50px;
	background-color: #24a33b;
	border-radius: 25px;
	position: absolute;
	left: 0;
	right: 0;
	top: -25px;
	margin: auto;
	font-size: 24px;
	color: #FFF;
	font-weight: 600;
	text-align: center;
}

.footer__area-item-txt {
	font-size: 20px;
	font-weight: 600;
	color: #563116;
}

.footer__area-txt {
	font-weight: 600;
	text-align: center;
}

.footer__map iframe {
	display: block;
}

.footer__contact {
	background: linear-gradient(rgba(77,77,77,.5), rgba(77,77,77,.5)),url("/img/common/bg_footer_contact.jpg");
	background-size: cover;
	background-position: center center;
}

.footer__contact-h2 {
	color: #FFF;
}

.footer__contact-h2::before {
	background-image: url("/img/common/icon_h2_white.png");
}

.footer__contact-box {
	width: 480px;
	margin: 50px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer__contact-btn {
	width: 220px;
	height: 220px;
	border: 7px solid #FFF;
	border-radius: 110px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #FFF;
	transition: .2s;
	position: relative;
	padding-top: 40px;
}

.footer__contact-btn span {
	display: inline-block;
	margin-top: 10px;
}

.footer__contact-btn--form {
	background-color: #f39800;
}

.footer__contact-btn--line {
	background-color: #4cc764;
}

.footer__contact-btn--form::before {
	display: block;
	content: "";
	width: 52px;
	height: 52px;
	background-image: url("/img/common/icon_contact_01.png");
	background-size: cover;
	margin: auto;
}

.footer__contact-btn--line::before {
	display: block;
	content: "";
	width: 52px;
	height: 52px;
	background-image: url("/img/common/icon_contact_02.png");
	background-size: cover;
	margin: auto;
}

.footer__contact-btn:hover {
	background-color: #d53739;
}

.footer__contact-tel {
	margin-top: 50px;
	text-align: center;
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
}

.footer__contact-time {
	font-size: 18px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	margin-top: 10px;
}

.footer {
	width: 100%;
	padding: 80px 0 30px 0;
	font-size: 13px;
	}

.footer__wrapper {
	display: flex;
}

.footer__left {
	width: 30%;
	height: 100%;
	padding-right: 50px;
	border-right: 1px solid #DDD;
	}

.footer__logo {
	display: inline-block;
	width: 100%;
	max-width: 60px;
	height: auto;
	margin-bottom: 20px;
	}

.footer__line {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 30px;
	vertical-align: 20px;
	background-image: url("/img/common/icon_line.png");
	background-size: cover;
	background-position: center center;
	transition: .2s;
}

.footer__instagram:hover {
	background-image: url("/img/common/icon_instagram_hover.png");
}

.footer__name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	}

.footer__link {
	font-size: 14px;
	margin-bottom: 20px;
	}

.footer__copyright {
	font-size: 14px;
	text-align: center;
	margin-top: 30px;
	}

.footer__right {
	width: 70%;
	padding-left: 50px;
	}

.footer__nav {
	display: flex;
}

.footer__right ul li {
	line-height: 2;
	}

.footer__right > ul > li {
	width: 25%;
	}

.footer__right > ul > li > ul > li {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 5px;
	}
	
.footer__right ul li ul li ul li {
	font-size: 12px;
	font-weight: normal;
	}

.footer__right ul li ul li ul li::before {
	content: "-";
	margin-right: 5px;
	}

.footer__right a:hover {
	text-decoration: underline;
}





/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}
	
	
	
/* header */
.globalNav__item {
	margin-left: 25px;
}
	
.globalNav__item:last-child .globalNav__link {
	width: 160px;
}


	
	

	
	

}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* 全体の設定 */
body {
	max-width: 959px;
	min-width: 100%;
	}
	
	
/* header */
.globalNav {
	display: none;
}
	
.scroll.header {
	height: 100px;
	background-color: transparent;
}
	
.scroll .header__logo {
	width: 55px;
	top: 15px;
}
	
	
	

	
/* footer */
.footer__wrapper {
	display: block;
}

.footer__left {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 30px;
	border-right: none;
	border-bottom: 1px solid #DDD;
	position: static;
	text-align: center;
	}

.footer__logo {
	display: block;
	margin: 0 auto 20px auto;
	}

.footer__name {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
	}

.footer__link {
	font-size: 12px;
	margin-bottom: 10px;
	}

.footer__copyright {
	width: 100%;
	font-size: 12px;
	text-align: center;
	margin-top: 50px;
	}

.footer__right {
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 30px;
	}

.footer__right ul li {
	line-height: 2;
	}

.footer__right > ul > li {
	float: left;
	width: 25%;
	}

.footer__right > ul > li > ul > li {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 5px;
	}
	

	

}

	
/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 14px;
	}
	
.container {
    padding: 60px 0;
}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
	
.btn {
	width: 200px;
	height: 40px;
	line-height: 40px;
}

.btn::after {
	line-height: 30px;
	font-size: 18px;
	width: 30px;
	height: 30px;
	right: 5px;
	top: 5px;
}

.h2 {
	font-size: 18px;
}

.h2--horizontal::before {
	width: 21px;
	height: 18px;
	vertical-align: -1px;
	margin-right: 10px;
}

.h2--vertical::before {
	width: 21px;
	height: 18px;
	top: -20px;
}


	
	
/* header */
.header__logo,
.scroll .header__logo {
	top: 10px;
	width: 60px;
}



/* fixNav */
.fixNav {
	width: 100%;
	right: 0;
	bottom: 0;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	display: flex;
}

.fixNav__ttl {
	display: none;
}

.fixNav__btn {
	margin-bottom: 0;
	border-radius: 0;
	width: 35%;
	padding: 0;
	text-align: center;
	font-size: 12px;
}
	
.fixNav__btn::after {
	display: none;
}

.fixNav__btn--line {
	background-color: #4cc764;
	color: #FFF;
}
	
.fixNav__btn--tel.pc {
	display: none;
}

.fixNav__btn--tel {
	width: 30%;
	background-color: #563116;
	font-size: 12px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}

.fixNav__btn--tel::before {
	display: none;
}
	
.fixNav__btn--tel:hover {
	background-color: #d53739;
}


.fixNav__close {
	display: none;
}
	
	
	
/* mv */
.mv {
	width: 100%;
	height: 250px;
}

.mv__h1 {
	font-size: 24px;
}



/* footer */
.footer__area-h2 {
	margin-bottom: 40px;
}

.footer__area-box {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

.footer__area-item {
	width: 100%;
	border-radius: 7px;
	position: relative;
	padding: 40px 30px 30px 30px;
}
	
.footer__area-item:first-child {
	margin-bottom: 40px;
}

.footer__area-h3 {
	width: 160px;
	height: 40px;
	line-height: 40px;
	top: -20px;
	margin: auto;
	font-size: 16px;
}

.footer__area-item-txt {
	font-size: 16px;
}

.footer__area-txt {
	font-weight: 600;
	text-align: center;
}
	
.footer__contact {
	padding: 80px 0 60px 0;
}

.footer__contact-box {
	width: 220px;
	margin: 30px auto 0 auto;
	display: block;
}

.footer__contact-btn {
	display: block;
	width: 220px;
	height: 40px;
	line-height: 40px;
	border: none;
	border-radius: 110px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
	transition: .2s;
	position: relative;
	padding-top: 0;
	margin-bottom: 10px;
	text-align: left;
	padding-left: 20px;
}
	
.footer__contact-btn span {
	margin-top: 0;
}

.footer__contact-btn--form::before {
	display: none;
}

.footer__contact-btn--line::before {
	display: none;
}

.footer__contact-btn:hover {
	background-color: #d53739;
}

.footer__contact-btn--tel {
	margin: 0 auto;
	background-color: #90d5f4;
}
	
.footer__contact-btn::after {
	display: inline-block;
	content: "→";
	position: absolute;
	border-radius: 15px;
	background-color: #FFF;
	line-height: 30px;
	font-size: 18px;
	width: 30px;
	height: 30px;
	right: 5px;
	top: 5px;
	text-align: center;
}
	
.footer__contact-btn--form::after {
	color: #F39800;
}
	
.footer__contact-btn--line::after {
	color: #4cc764;
}
	
.footer__contact-btn--tel::after {
	color: #90d5f4;
}
	
.footer__contact-btn:hover::after {
	color: #563116;
}

.footer__contact-time {
	font-size: 14px;
	margin-top: 20px;
}
	
.footer__map,
.footer__map iframe {
	height: 300px;
}
	
.footer {
	padding: 50px 0 60px 0;
	font-size: 12px;
	}

.footer__left {
	width: 100%;
	padding-bottom: 10px;
	border-bottom: none;
	text-align: center;
	}

.footer__logo {
	width: 50%;
	height: auto;
	margin: 0 auto 15px auto;
	}
	
.footer__line {
	width: 30px;
	height: 30px;
	margin-left: auto;
	vertical-align: middle;
	margin-bottom: 20px;
}

.footer__name {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
	}

.footer__copyright {
	width: 100%;
	font-size: 11px;
	text-align: center;
	margin-top: 0px;
	}

.footer__right {
	display: none;
	}


}