@charset "UTF-8";

/* CSS Document */

/* -------------------------------- 

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@-ms-viewport {
	width: auto!important;
	initial-scale: 1;
}

body.overflow-hidden {
  overflow: hidden;
}

a {
  color: white;
  text-decoration: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
html{
	overflow: hidden;
}

html, body {
  height: 100%;
}

header {
  position: fixed;
  width: 100%;
  background: transparent;
  z-index: 100;
  transition:  0.2s;
	height: 80px;
	top: 0;
	left: 0;
	z-index: 100!important;
	background: #fff;
}

header.change-color {
  background: rgba(255,255,255,0.9);
	border-bottom: 1px solid #ccc;
  transition: 0.3s;
}

.head .logo{
	position: absolute;
	top: 0;
	left: 0px;
	width: 25%;
	max-width: 350px;
	z-index: 5;
}
.head .logo img{
	width: 100%;
	height: auto;
}
@media (max-width: 960px) {
.head .logo {
	left: 0;
	margin: auto;
	max-width: 200px;
	width: 60%;
  }

}

/*==================================================

container
=================================================*/

body {
    position: relative;
    left: 0;
	}
section{
	position: relative;
}
article{
	position: relative;
}

img {
width:100%;
max-width: 100%;
height: auto;
}

.tC{
	text-align: center;
}
.tS{
	font-size: 86%;
}

.selector {
  font-feature-settings: "palt";
}
#wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}


/*==================================================

header
=================================================*/

/* -------------------------------- 

Main components 

-------------------------------- */
/*html, body {
  height: 100%;
}*/

@media (min-width: 961px) {
header{
	height: 80px;
}
	
nav{
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	z-index: 100;
	position: relative;
	margin: 0 0 0 30%;
}
nav > .navinner > ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 80px;
}
nav > .navinner > ul > li{
	text-align: center;
	position: relative;
	padding: 20px 5px;
	width: 20%;
}
	
nav > .navinner > ul > li > a{
	text-decoration: none;
	color: #000000;
	line-height: 50px;
	display: block;
	font-weight: 900;
	font-size: 4.0rem;
	padding: 0 10px;
	color: #668742;
	text-align: center;
	line-height: 1.6em;
	font-size: clamp(14px, 2vw, 20px);
} 

nav > .navinner > ul > li > a .hw{
	font-size: clamp(12px, 1.3vw, 13px);
	display: block;
	color: #2b1f1b;
	margin: auto;
	width: 90%;
	border:1px solid #2b1f1b;
	border-radius: 0 0 10px 0;
	line-height: 1.3em;
	font-weight: 400;
}
nav > .navinner > ul > li.navcon > a{
	color: #fff;
	background: #ff7155;
	border-radius: 0 0 0 30px;
	font-size: clamp(13px, 1.4vw, 14px);
	font-weight: 500;
	height: 80px;
	text-align: center;
}
	nav > .navinner > ul > li.navcon > a .ico{
		width: 50px;
		display: block;
		margin: auto;
		padding: 10px 5px 5px;
	}
	
nav > .navinner > ul > li > a:hover{
	color:#ff7155;
}	
nav > .navinner > ul > li.navcon > a:hover{
	color:#ffffff;
}
}




@media (max-width: 1260px) {


	
}
@media (max-width: 1080px) {

	
}

@media (max-width: 960px) {

header {
	height: 60px;
	}
nav{
	display: none;
}



/** メニュー開閉ボタン */
    .navopen {
        position: fixed;
        top: 0; right: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: auto;
		background: rgba(68,160,72,0.9);
        transition: 0.2s;
        z-index: 100;
    }
    .navopen:hover {
	background: rgba(68,160,72,0.7);
    }
    .navopen .icon {
        display: block;
        position: relative;
        width: 30%;
        height: 2px;
        border-radius: 2px;
        background: white;
    }
    .navopen .icon::before,
    .navopen .icon::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: white;
        transition: top 0.2s, transform 0.2s;
    }
    .navopen .icon::before { top: -6px; }
    .navopen .icon::after { top: 6px; }

    .navopen.active .icon { height: 0; }
    .navopen.active .icon::before { top: 0; transform: rotate(45deg); }
    .navopen.active .icon::after { top: 0; transform: rotate(-45deg); }

	
	.NavPhoto{
		display: none;
	}
	
/** ナビ */
    nav {
        display: block;
        width: 350px;
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        perspective: 1000px;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1000;
        pointer-events: none;
    }
    nav.active {
        opacity: 1;
        pointer-events: all;
    }
	
	
nav > .navinner > ul > li > a{
	font-size: 2rem;
	font-weight: 900;
	color: #668742;
	}
nav > .navinner > ul > li > a span.hw{
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #111;
	
} 
	nav > .navinner > ul > li.navcon a{
		background: #ff7155;
		color: #fff;
		font-size: 1.5rem;
		border-radius: 15px 0 15px 0;
	}	
	nav > .navinner > ul > li.navcon a .ico{
		width: 30px;
		display: inline-block;
		margin-right: 10px;
	}
    nav .navinner {
        width: 100%;
        height: 100%;
        padding: 30px 30px;
        color: white;
		background: rgba(255,255,255,1);
        font-size: 16px;
        font-weight: 300;
        transform: rotateY(90deg);
        transform-origin: right center;
        transition: transform 0.3s;
		border:3px solid #44a048;
		border-radius: 25px 0 0 0;
    }
    nav.active .navinner {
        transform: none;
    }
    nav li ul {
        display: none;
    }
	nav > .navinner > ul > li > a{
	padding: 15px;
		font-weight: 700;
	
}
    nav li a {
        display: block;
        position: relative;
        padding: 15px 20px;
        line-height: 1.7;
		color: #111;
		text-decoration: none;
    }
    nav li a:hover {
		color: #ff7155;
    }
   /* nav li a:not(.expand)::before {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 1px; bottom: 0;
        width: 5px;
        height: 5px;
        margin: auto;
        border-top: 1px solid white;
        border-right: 1px solid white;
        transform: rotate(45deg);
    }
    nav li a.expand::before {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 0; bottom: 0;
        width: 9px;
        height: 1px;
        margin: auto;
        background: white;
    }
    nav li a.expand::after {
        content: "";
        display: block;
        position: absolute;
        top: 1px; left: 4px; bottom: 0;
        width: 1px;
        height: 9px;
        margin: auto;
        background: white;
    }
    nav li a.expand + ul {
        display: block;
        position: absolute;
        top: 0; right: 350px; bottom: 0;
        padding: 20px 10px 20px 30px;
        width: 350px;
	background: rgba(255,255,255,0.7);
        transform: rotateY(90deg);
        transform-origin: right center;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }*/
    nav li a.expand.active + ul {
        opacity: 1;
        transform: none;
        visibility: visible;
        overflow: auto;
    }
    nav li a.expand + ul li {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.2s 0.2s;
    }
    nav li a.expand.active + ul > * {
        opacity: 1;
        transform: none;
    }

	nav > .navinner > ul > li > ul > li > a{
	font-weight: 400;
		
	}
nav > .navinner > ul > li > ul > li > a > h3{
	font-size: 1.6rem;
	font-weight: 400;
	
} 
	

}
@media (max-width: 767px) {

        nav {
            width: calc(100% - 10px);
        top: 60px;
        }
        nav .navinner {
            padding: 10px;
        }
        nav li a.expand + ul {
            left: 35px;
            width: calc(100% - 35px);
	background: rgba(255,255,255,0.95);
            z-index: 150;
        }
		
	
	}


@media print, screen and (min-width:1px) and (max-width: 960px) {

	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
}

@media print{
	header,.navopen{
		position: absolute;
	}
}


/*FOOTER*/

.fcontact{
	background: #efede4;
	border-top: 30px solid #44a048;
	padding: 0;
}

.fcontact .ftree{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 18%;
	max-width: 180px;
}

.fcontact .Flexbox{
	width: 80%;
	margin: 0 0 0 auto;
	padding: 6% 0;
}
.fcontact .ftel{
	width: 50%;
	padding: 10px;
}


footer{
	background: #fff url("../img/common/footer.svg") right bottom no-repeat;
	padding-bottom: 4%;
	position: relative;
}

.footer-inner{
	max-width: 1280px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.8em;
	font-weight: 500;
	padding: 3% 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
.footer-info{
	width: 40%;
	padding: 0 10px;
	margin: 0px auto;
}
.footer-info .flogo{
	max-width: 300px;
	text-align: left;
	margin: 0 auto 10px 0;
}
.footer-info .finfo{
	text-align: left;
	margin-bottom: 20px;
}
.footer-info .flogo{
	width: 220px;
	margin-bottom: 20px;
	
}
.fnav{
	width: 60%;
	margin: 10px auto;
}
.fnav ul{
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.fnav li{
	width: 50%;
}
.fnav li a{
	padding: 5px 10px 5px 18px;
	text-decoration: none;
	display: block;
	position: relative;
	color: #333;
}
.fnav li a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 1px #668742;
  border-right: solid 1px #668742;
  position: absolute;
  left: 0px;
  top: 14px;
  transform: rotate(45deg);
}

.fnav li a:hover{
	color: #668742;
}


.copyright{
	color: #fff;
	text-align: left;
	position: absolute;
	bottom: 8px;
	left: 3%;
}

@media print, screen and (min-width:1px) and (max-width: 960px) {

.footer-info{
	width: 50%;
	padding: 0 10px;
	margin: 0px auto;
}
.fnav{
	width: 50%;
	margin: 0px auto;
}
footer{
	background: #fff url("../img/common/footer.svg") right bottom no-repeat;
	padding-bottom: 15%;
	position: relative;
}
.copyright{
	color: #44a048;
	bottom: 10%;
	left: 20px;
	font-size: 0.9em;
}

}
@media print, screen and (min-width:1px) and (max-width: 768px) {

.fcontact .Flexbox{
	width: 80%;
	margin: 0 0 0 auto;
	padding: 3% 0;
}
.fcontact .ftel{
	width: 80%;
	padding: 10px;
	margin: auto;
}
.fcontact .ftree{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 22%;
	max-width: 180px;
}

.footer-info{
	width: 100%;
	padding: 0 10px;
	margin: 0px auto;
}
.fnav{
	width: 100%;
	margin: 0px auto;
}
}
@media print, screen and (min-width:1px) and (max-width: 480px) {
.fcontact .Flexbox{
	width: 80%;
	margin: 0 0 0 auto;
	padding: 10px 0 10px 20px;
}
.fcontact .ftel{
	width: 100%;
	padding: 10px;
	margin: auto;
}
.fcontact .ftree{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 22%;
	max-width: 180px;
}
	
}