@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
html {
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font-family:  'Zen Kaku Gothic New',"Noto Sans JP","メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-size: 18px;
	font-size: 1.8em;
	color: #404040;
	line-height: 200%;
	letter-spacing: 0.02rem;
	font-feature-settings: "palt";
	font-weight: 500;
	background: #f1f6f9;
	margin: 0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	z-index: 999;
}
.en{
	font-family: 'Outfit', sans-serif;
}
.min{
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-weight: 600;
}
/* other */
::selection {
	background: #333;
	color: #fff;
}
//Firefox
::-moz-selection {
	background: #333;
	color: #fff;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* clearfix */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/* img,a */
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color:#333434;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
	color:#333434;
	text-decoration:none;
}
a img{
	transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
}
a:hover img {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

/* フォント */
.fs_gc {
	font-family: 'Noto Sans JP', sans-serif;
}
.fs_min {
	font-family: 'Noto Serif JP', serif;
}

/* フレックスボックス */
.row_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* 中央寄せ */
.center_box {
	margin-right: auto;
	margin-left: auto;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
    outline-offset: -2px;
}

/* device */
.sp {
	display:none !important;
}
.tab {
	display:none !important;
}
.pc {
	display:block !important;
}

/* コンテンツ */
.contents_inner{
	width: 1100px;
	margin: 0 auto;
}

/* パーツ */
.h2_style {
	font-size: 20px;
	text-align: center;
}
.h2_style span {
	display: block;
	font-size: 40px;
	font-weight: 800;
	color: #464646;
	text-align: center;
	margin-bottom: 15px;
	font-family: 'Raleway', sans-serif;
}
.link_btn {
	display: block;
	width: 360px;
	font-size: 18px;
	text-align: center;
	color: #fff !important;
	padding: 30px 0;
	background: #3B4144;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	margin-top: 70px;
	position: relative;
}
.link_btn::before {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.2s;
}
.link_btn:hover {
	background-color: #171717;
}
.link_btn:hover::before{
	right: 40px;
}

@media screen and (max-width: 1130px) {
	.contents_inner{
		width: 87%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 840px) {

	body {
		font-size: 16px;
		font-size: 1.6em;
		letter-spacing: 0.05rem;
	}

/* device */
		.pc{
			display:none !important;
		}
		.sp{
			display:none !important;
		}
		.tab{
			display:block !important;
		}


}

@media screen and (max-width: 640px) {

	body {
		font-size: 14px;
		font-size: 1.4em;
	}

/* device */
	.pc{
		display:none !important;
	}
	.tab{
		display:none !important;
	}
	.sp{
		display:block !important;
	}

/* パーツ */
	.h2_style {
		font-size: 16px;
	}
	.h2_style span{
		font-size: 24px;
		margin-bottom: 10px;
	}


	.link_btn {
		width: 260px;
		font-size: 15px;
		margin-top: 30px;
		padding: 20px 0;
	}

}

/* tel */
	a[href*="tel:"] {
		pointer-events: none;
	}

@media screen and (max-width: 840px) {
	a[href*="tel:"] {
		pointer-events: initial;
	}
}


/*-----------------------------------
	header
-----------------------------------*/
header {
	background: #fff;
	padding: 10px 0;

}
header h1 img{
	width: 160px;
}

@media screen and (max-width: 640px) {

	header h1 img{
		width: 120px;
	}

}

/*-----------------------------------
	fixed_btn
-----------------------------------*/
.fixed_btn{
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 999;
}
.fixed_btn img{
	width: 120px;
}
@media screen and (max-width: 840px) {

	.fixed_btn img{
		width: 100px;
	}

}
@media screen and (max-width: 640px) {

	.fixed_btn{
		top: 10px;
		right: 10px;
	}
	.fixed_btn img{
		width: 80px;
	}

}


/* スマホ時表示下部固定メニュー */
.sp_under_menu{
	display: none;
}
@media screen and (max-width: 550px) {

	/* スマホ時表示下部固定メニュー */
	.sp_under_menu{
		display: block;
		position: fixed;
		bottom:0;
		left: 0;
		z-index: 1;
		width: 100%;
	}
	.sp_under_menu ul{
		width: 100%;
	}
	.sp_under_menu li{
		width: 50%;
		height: 60px;
		display: flex;
		align-items:center;
		justify-content:center;
	}
	.sp_under_menu li:first-child{
		background: #90c132;
	}
	.sp_under_menu li:nth-child(2){
		background: #54b18c;
	}
	.sp_under_menu li a img{
		display: block;
		height: 25px;
		margin: 0 auto;
		margin-bottom: 5px;
	}
	.sp_under_menu li a{
		color: #fff;
		font-size: 11px;
		line-height: 100%;
		display: block;
		text-align: center;
	}

}



/*-----------------------------------
	drawer上書き用
-----------------------------------*/

/* drawer */
.drawer--right.drawer-open .drawer-hamburger{
	right: 10px !important;
}
.drawer--right .drawer-nav{
	right: -100%;
}
.drawer-nav{
	width: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.drawer-hamburger {
	top: 9px;
	right: 10px !important;
	width: 50px !important;
	height: 50px !important;
	display: block;
	display: none !important;
	padding: 0 10px;
	background: #8dbf2d !important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	box-sizing: border-box;
}
.drawer-hamburger-icon {
	margin-top: 0 !important;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before{
	background-color: #fff !important;
}
.drawer-open .drawer-hamburger-icon{
	background-color: transparent !important;
}


/* 中身 */
.drawer .drawer-menu a{
	display: inline-block;
}
.drawer .drawer-menu .inner_menu a{
	display: block;
}
ul.drawer-menu{
	padding: 20px;
}

/* ロゴ部分 */
ul.drawer-menu li:first-child{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: solid 1px #e7e7e7;
}
ul.drawer-menu li:first-child a{
	padding-left: 0;
}
ul.drawer-menu li:first-child a::before{
	display: none;
}
ul.drawer-menu li:first-child img{
	width: 200px;
}


/* drawer-menu */
ul.drawer-menu li a{
	font-size: 13.5px;
	margin-bottom: 0.5em;
}
ul.drawer-menu a{
    position: relative;
    padding-left: 20px;
}
ul.drawer-menu a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #99b95a;
	border-right: 2px solid #99b95a;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: 0.2s;
}
ul.drawer-menu a.green{
	color: #99b95a;
}

/* inner_menu */
ul.drawer-menu .inner_menu{
	display: none;
}
ul.drawer-menu .inner_menu{
	padding-left: 1.5em;
}
ul.drawer-menu .inner_menu a{
	display: block;
	margin-bottom: 0.2em;
}
/* inner_menu > inner_inner */
ul.drawer-menu .inner_menu a.inner_inner{
	padding-left: 3em;
	font-size: 0.95em;
	font-weight: normal;
	margin-bottom: 1.5em;
}
ul.drawer-menu a.inner_inner::before{
	display: none;
	left:20px;
}

/*sub-menu*/
ul.sub-menu{
	padding: 0 20px;
}
ul.sub-menu li,
ul.sub-menu li a{
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px;
}
ul.sub-menu li a{
	font-size: 12.5px;
	text-align: center;
	padding: 0.2em;
	border: solid 1px #8dbf2d;
	margin-bottom: 0.7em;
}
ul.sub-menu li.contact{
	background-color: #8dbf2d;
}
ul.sub-menu li.contact a{
	color: #fff;
	font-size: 15px;
}
ul.sub-menu li.contact a span{
	display: block;
	border-top: solid 1px #fff;
	font-size: 12px;
}

@media screen and (max-width: 840px) {

	.drawer-hamburger {
		display: block !important;
	}

}


/*-----------------------------------

	contents

-----------------------------------*/

/* lower_img */
.lower_img {
	background: #e37878;
}
.lower_img .contents_inner {
	padding: 50px 0;
	background-size: cover;
	background-repeat: no-repeat;
}
.lower_img h2 {
	font-size: 18px;
	color: #fff;
}
.lower_img h2 span {
	font-size: 34px;
	display: block;
	color: #fff;
	margin-bottom: 15px;
}

/* breadcrumb */
#breadcrumb {
	width: 100%;
	font-size: 12.5px;
	font-weight: 500;
	color: #4d4d4d;
	padding: 8px 0;
	box-sizing: border-box;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	border-top: 1px solid #f4f4f4;
}
#breadcrumb .breadcrumb_text{
	display: inline-block;
	padding-left: 5px;
}
#breadcrumb .breadcrumb_link{
	display: inline-block;
	color: #cdcdcd;
}
#breadcrumb .breadcrumb_link:nth-child(1) a{
	font-family: 'akrobat';
	font-weight: 800;
}
#breadcrumb .breadcrumb_link a{
	margin: 0 8px;
	color: #c73434;
}
#breadcrumb .breadcrumb_link a:hover{
	opacity: 0.8;
}
#breadcrumb::-webkit-scrollbar {
	height: 5px;
}
#breadcrumb::-webkit-scrollbar-track {
	background-color: #FFF;
}
#breadcrumb::-webkit-scrollbar-thumb {
	background-color: rgba( 238, 238, 238, 0.8);
}

@media screen and (max-width: 840px) {

	.lower_img .contents_inner {
		width: 100%;
		padding: 50px 4%;
	}

}

@media screen and (max-width: 640px) {

/* breadcrumb */
	#breadcrumb{
		font-size: 11px;
		height: auto;
	}
	#breadcrumb ul li{
		font-size: 11px;
		font-size: 1.1rem;
	}

/* lower_img */
	.lower_img .contents_inner {
		padding: 25px 5% 22px;
	}
	.lower_img h2 {
		font-size: 12px;
	}
	.lower_img h2 span {
		font-size: 16px;
		margin-bottom: 2px;
	}
}




/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
	width: 60px;
	height: 55px;
	background: #404040;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	position: fixed;
	right: 25px;
	bottom: 50px;
	cursor: pointer;
	z-index: 999;
}
#pagetop img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
}
#pagetop_sp{
	display:none;
}
#pagetop:hover {
	opacity: 1;
}

@media screen and (max-width: 640px) {

	#pagetop{
		display:none !important;
	}
	#pagetop_sp{
		height: 55px;
		background: url(../img/common/pagetop.svg) #333;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		transition-duration: 0.3s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
		-webkit-transition-duration: 0.3s;
		cursor: pointer;
		display:block;
	}

}


/*-----------------------------------

	footer

-----------------------------------*/

footer {
	padding-bottom: 10px;
	background: #313638;
	/*グラデ背景*/
	background: #e61673; /* Old browsers */
	background: -moz-linear-gradient(top,  #e61673 0%, #f39800 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #e61673 0%,#f39800 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #e61673 0%,#f39800 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e61673', endColorstr='#f39800',GradientType=0 ); /* IE6-9 */
}
footer img.footer_logo{
	display: block;
	margin: 0 auto;
	padding: 60px 0 0;
}
footer ul{
	width: 560px;
	margin: 0 auto;
	padding: 50px 0 60px;

}
footer ul li a{
	font-size: 16px;
	color: #fff !important;
}
footer ul li a:hover{
	text-decoration: underline;
}
footer p.copyright{
	color: #fff !important;
	text-align: center;
	font-size: 12px;
	line-height: 100%;
}

@media screen and (max-width: 840px) {

	footer img.footer_logo{
		width: 150px;
	}

	footer ul li a{
		font-size: 1em;
	}

}

@media screen and (max-width: 640px) {

	footer ul li{
		width: 100%;
		text-align: center;
		margin-bottom: 1em;
	}
	footer ul{
		width: 100%;
	}


}


/*-----------------------------------

	アニメーション

-----------------------------------*/
/*透明にしておく*/
.js-fadeUp,.js-fadeIn,.js-fadeIn_2{
    opacity: 0;
}
.slow{ slow
	animation-delay: 0.5s;
}

/* js-fadeUp */
.js-fadeUp-active{
  animation-name: fadeUp;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity:0;
}
@keyframes fadeUp{
  from {
    opacity:0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*js-fadeIn*/
.js-fadeIn-active{
	animation-name:fadeIn;
	animation-duration: 1s;
	animation-fill-mode:forwards;
	opacity:0;
}
/* fadeIn */
@keyframes fadeIn{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
