@charset "utf-8";
/*
Theme Name: のむちゃん農園 NEW Theme
Theme URI: nomuchannouenn.com
Description: のむちゃん農園の新しいテーマファイルです
Version: 1.0
Author: EF kobaishi
*/


/*------------------------------------------------------

   common
   
  base-color #313131
  orange-color #ec570d

-------------------------------------------------------*/
:root {
	--base-color:   #313131;
	--orange-color: #ec570d;
}

body {
	position: relative;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--base-color);
	min-width: 1140px;
}
.sp {
	display: none !important;
}

input, select, textarea, radio, checkbox, button {
	font-family: 'Noto Sans JP', sans-serif;
}

.inner {
	padding: 0 20px;
	max-width: 1140px;
	margin:auto;
	position: relative;
	z-index: 10;
}

/* off */
.off a {
    cursor: default !important;
    color: #ccc !important;
}

/* nav-line */
.nav-line a {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    border-top:solid 1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}


.abs-fig {
	position: absolute;
}

/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#global-header {
    width: 100%;
    background-image: url("./assets/img/cmn/header_bg.png");
	background-position: center bottom;
	background-size: auto 220px;
	position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-fig {
	top:0;
	z-index: 1;
}
.header-fig.left {
	max-width: 26%;
	left:0;
}
.header-fig.right {
	max-width: 22%;
	right:0;
}
#global-header .inner {
    height: 220px;
	padding-top: 40px;
}
.site-title {
	width: 316px;
	line-height: 1;
    margin: auto;
}
.site-title a {
	display: inline-block;
}

#main-nav {
	margin-top: 30px;
}
.main-nav__list {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.main-nav__list > li {
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
}
.main-nav__list > li a{
	color: var(--base-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.main-nav__list > li.current a,
.main-nav__list > li a:hover {
	color: var(--orange-color);
}
.main-nav__list > li a:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent var(--orange-color);
	vertical-align: 1px;
	margin-right: 5px;
}


/* ----------------------------
   contents
-------------------------------*/




/* ----------------------------
   contents
-------------------------------*/
#container {
	min-height: 500px;
}
.contents {
    position: relative;
	padding: 100px 0;
	margin-top: -10px;
}
.cmn-title {
	margin-bottom: 50px;
	text-align:center;
}
.cmn-title h2 {
	line-height: 1;
}
.cmn-desc {
	text-align:center;
	line-height: 1.8;
	margin-bottom: 50px;
}

.more {
	text-align:center;
	margin-top: 60px;
}
.more a {
	display: inline-block;
	line-height: 1;
}


/*------------------------------------------------
   footer style
--------------------------------------------------*/
#global-footer {
	margin-top: 10px;
    background-image: url("./assets/img/cmn/bk_craft.jpg");
	background-position: center top;
	background-size: auto 100%;
    position: relative;
    z-index: 10;
}
#global-footer:before {
	content: '';
	display:block;
	width: 100%;
	height: 10px;
    background: url("./assets/img/cmn/wave_craft.png");
    transform: rotate(180deg);
    position: absolute;
    left: 0;
    top: -10px;
	z-index: 11;
}
.footer__in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
}
.footer-logo {
    margin-right: 50px;
    text-align: center;
}
.ft-shop {
    margin-top: 10px;
}
.ft-shop a {
    color: #fff;
    background: var(--orange-color);
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10000px;
    text-align: center;
    border: solid 1px;
    padding: 10px 20px;
}
.ft-shop a i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("./assets/img/cmn/icon_shop_w.png") no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-right: 15px;
}
.footer-address {
    font-size: 18px;
    line-height: 1.5;
}
.footer-link {
	margin-left: auto;
}
.footer-link__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-link__list > li:not(:first-child) {
    margin-left: 20px;
}

.copyright {
	color: #fff;
	font-size: 16px;
	text-align:center;
	padding: 5px 0;
	background: #362e2b;
}


/* backtotop */
#backtotop {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align:center;
	color: #fff;
	width: 118px;
	height: 121px;
	cursor:pointer;
	background-image: url("./assets/img/cmn/baktotop_bg.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	visibility: hidden;
	opacity: 0;
	position:fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 20px;
}




/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1600px) {


	.header-fig.left {
		max-width: 20%;
	}
	.header-fig.right {
		max-width: 18%;
	}

}


/* 815x 以下 */
@media (max-width: 815px) {

	body {
		font-size: 14px;
		min-width: 320px;
	}

	body.menu-fix {
		overflow: hidden;
	}

	.sp { display: block !important; }
	.pc { display: none !important; }

	#global-header .inner {
		height: 70px;
		padding-top: 15px;
	}
	.site-title {
		width: 200px;
	}
	#menu-btn {
		width: 35px;
		height: 15px;
		cursor: pointer;
		position: fixed;
		right: 15px;
		top: 25px;
		z-index: 999991
	}
	#menu-btn span {
		display: block;
		width: 100%;
		height: 3px;
		background: var(--base-color);
		position: absolute;
		left: 0;
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-moz-transition: all 300ms ease-in-out 0s;
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		-ms-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}
	#menu-btn span.t {
		top: 0;
	}
	#menu-btn span.b {
		bottom: 0;
	}
	#menu-btn.active span.t {
		top: 6px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#menu-btn.active span.m {
		width: 0;
	}
	#menu-btn.active span.b {
		bottom: 6px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#sp-nav {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	    height: 100%;
		padding: 100px 0 0;
		background: #fff;
		overflow: auto;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
	}
	#sp-nav.active {
		background: #fff;
		visibility: visible;
		opacity: 1;
	}
	.sp-nav__list {
		width: 100%;
	}
	.sp-nav__list > li {
		font-size: 16px;
		font-weight: 500;
		margin: 0 auto 15px;
		padding-bottom: 15px;
		border-bottom: dotted 1px;
	}
	.sp-nav__list > li a {
		color: var(--base-color);
	}
	.sp-nav__list > li.current a,
	.sp-nav__list > li a:hover {
		color: var(--orange-color);
	}



/* contents */
	.contents {
		padding: 50px 0;
	}

	.cmn-desc {
		text-align: left;
	}

/* footer */
	.footer__in {
		display: block;
	}
	.footer-logo {
		margin: 0 auto 20px;
		text-align: center;
	}
	.footer-logo img {
		max-width: 240px;
	}
    .ft-shop {
        margin-top: 25px;
    }
    .ft-shop a {
        display: inline-block;
    }
	.footer-address {
		font-size: 14px;
		text-align: center;
		margin: 0 auto 20px;
	}
	.footer-link__list {
		justify-content: center;
	}
	.copyright {
		font-size: 12px;
	}

	#backtotop {
		font-size: 12px;
		width: 70px;
		height: 72px;
	}
	
}




/* 480px 以下 */
@media (max-width: 480px) {

	
}