@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; } 
*{ box-sizing: border-box; }
body {
    --max-width: 900px;
    --c-base: #000000;
    --c-main: #318838;
    --c-accent: #f4f4f4;
    --ff-main:"Noto Sans JP", sans-serif;
    --ff-en: "Poppins", sans-serif;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--ff-main);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color: #000000;
    letter-spacing:0.05em;
    background: #ffffff;
    }
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){body {font-family:"Noto Sans JP", sans-serif;}}
a{
    display: inline-block;
    color: inherit;
    font-weight: inherit;
    }
a:hover{cursor: pointer;}
body.userAgent-pc a[href^="tel:"]{pointer-events: none;}
img, svg{
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
    }
select{
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    }

.--ff-en{ font-family: var(--ff-en); }
.--ff-g{ font-family: var(--ff-main); }
.--c-red{ color: #d61518 !important; }
.--c-white{ color: #fff !important; }
.--c-yellow{ color: #fff000 !important; }
.--c-blue{ color: #323cb9 !important; }
.--c-green{ color: #318838 !important; }
.--center{ text-align: center !important; }
.--ta-l{ text-align: left !important; }
.--ta-r{ text-align: right !important; }
.--ta-justify{ text-justify: inter-ideograph; text-align: justify; text-align-last: left; }
.--bold{ font-weight: bold !important; }
.--thin{ font-weight: 100 !important; }
.--nowrap{ white-space: nowrap; }
.--kerning{ font-feature-settings: "palt"; }

.--overflow-ellipsis{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }
.--under{ border-bottom: 1px solid #888; }
.--img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
.--img-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
    }
.--clearfix::after{
    content: "";
    display: block;
    clear: both;
    }
.--d-ib{ display: inline-block !important; }
.--d-n{ display: none !important; }
.--d-f{ display: flex !important; }
.--justify-center{ display: flex; justify-content: center; }

a.--h-opacity, .--h-opacity a{transition: opacity .3s;}
a.--h-opacity:hover, .--h-opacity a:hover{opacity: .6;}

/* PC */
@media (min-width: 900px){
	.--tab{ display: none !important; }
	.--sp{ display: none !important; }
	.--tab-sp{ display: none !important; }
}
/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
	.--pc{ display: none !important; }
	.--sp{ display: none !important; }
	.--pc-sp{ display: none !important; }
}
/* SP */
@media screen and (max-width: 480px) {
	.--pc{ display: none !important; }
	.--tab{ display: none !important; }
	.--pc-tab{ display: none !important; }
}

/* アニメーション */
@keyframes inview_img_before{
	0%{
    transform-origin: left;
    transform: scaleX(0);
	}
	50%{
		transform-origin: left;
		transform: scaleX(1);
	}
	51%{
		transform-origin: right;
	}
	100%{
		transform-origin: right;
		transform: scaleX(0);
	}
}
@keyframes inview_img{
	0%{ opacity: 0; }
	50%{ opacity: 0; }
	100%{ opacity: 1; }
    }

/* 共通 */
.cntInner,
._Inner{
    width: 100%;
    margin: 0 auto;
    }
._Title{}
._Title .en{
    display: block;
    font-family: var(--ff-en);
    font-size: 9.4rem;
    letter-spacing: 0;
    text-transform: capitalize;
    line-height: 1.0;
    }
._Title .ja{
    font-family: var(--ff-main);
    font-size: 3.3rem;
    letter-spacing: .05em;
    }
._Title02{}
._Title02 .en{
    display: block;
    font-family: var(--ff-en);
    font-size: 2.4rem;
    letter-spacing: 0;
    text-transform: capitalize;
    line-height: 1.0;
    color:var(--c-main);
    position: relative;
    padding: 2px 0 2px 13px;
    }
._Title02 .en::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 11px;
    left: 0;
    background: var(--c-main);
    border-radius: 100px;
    }
._Title02 .ja{font-size: 3.8rem}
/* TAB */
@media screen and (max-width: 899px) {
._Title .en{font-size: 6.0rem;}
._Title .ja{font-size: 1.8rem;}
._Title02 .en{font-size: 2.0rem;}
._Title02 .ja{font-size: 3.0rem}
}

/* SP */
@media screen and (max-width: 480px) {
._Title .en{font-size: 3.8rem;}
._Title .ja{font-size: 1.5rem;letter-spacing: 0;}
._Title02{}
}

._Box .cntInner{
    max-width: 1280px;
    width: 96%;
    margin: 0 auto;
    }
._Box .cntText{
    font-weight: 600;
    letter-spacing: .075em;
    line-height: 1.8;
    }

.cntBtn{
    width: 100%;
    max-width: 280px;
    margin:35px auto 0 0;
    text-align: left;
    }
.cntBtn.--ta-r{margin:35px 0 0 auto;text-align: left;padding-right:80px;}
.cntBtn.--center{margin:35px auto 0;text-align: left;}
.cntBtn a {
    display: block;
    width: 100%;
    position: relative;
    font-size: 1.8rem;
    text-transform: uppercase;
    transition: 0.7s;
    background: var(--c-main);
    border: 2px solid var(--c-main);
    border-radius: 100px;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    box-sizing: border-box;
    }
.cntBtn a:hover{
    background: #fff;
    color: var(--c-main);
    }

.cntDiv{}
.cntImg{}
._Box.-inver .cntDiv{}
._Box.-inver .cntImg .inner{ }
._Box .cntList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap:         wrap;
    justify-content:space-between;
    }


@media screen and (max-width: 1290px) {}
/* TAB */
@media screen and (max-width: 899px) {
    .cntBtn a {font-size: 1.6rem;}
}
/* SP */
@media screen and (max-width: 480px) {
    ._Box .cntInner{width: 90%;}
    .cntBtn a {font-size: 1.4rem;}
}

/* ローディング */
#loading{
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 999;
}


/* ヘッダー */
#header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 101;
    }
#header .cntInner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding:0;
    margin: 0 auto;
    }
#headerLogo{width: 20%;}
#headerLogo img{border-radius:0 0 20px 0;}
#header .cntBox{
    width: 80%;
    padding: 0 10px 20px 0;
    box-sizing: border-box;
    }

#header .cntList{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    }
#header .cntList li{}
#header .cntList .item{
    display: block;
    text-align: center;
    letter-spacing: .025em;
    font-weight: 700;
    transition: 0.7s;
    padding: 0 16px;
    }
#header .cntList .item .jp{
    font-family: var(--ff-main);
    font-size:1.8rem
    }

#header .cntList .item:hover,
#header .cntList .item.current{
    opacity: 1;
    background: var(--c-main);
    color: #fff;
    border-radius: 100px;
    
}




/*#header .cntList ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    }
#header .cntList .menu__second-level li {padding:6px 0;}
#header .cntList .menu__second-level li a:hover {color: #93814f}
#header .cntList li.menu__single {position: relative;}
#header .cntList li.menu__single ul.menu__second-level {
    position: absolute;
    top: 10px;
    width: 220%;
    max-width: 180px;
    background:rgba(255,255,255,0.7); 
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #333;
    padding:6px;
    box-sizing: border-box;
    text-align: center;
    left: 0;
    font-size: 1.4rem;
    }
#header .cntList li.menu__single:hover ul.menu__second-level {
    top: 22px;
    visibility: visible;
    opacity: 1;
    }*/

@media screen and (max-width: 1290px) {
    #headerLogo {width: 12%;}
    #header .cntBox{width:85%;}
    #header .cntList .item{
    letter-spacing: .02em;
    padding: 0 14px 2px;
    }
    #header .cntList .item .jp{font-size:1.6rem}
    }
@media screen and (max-width: 1000px) {
    #header .cntList .item{
    letter-spacing: 0;
    padding: 0 14px 2px;
    }
    #header .cntList .item .jp{font-size:1.4rem}
}
/* TAB */
@media screen and (max-width: 899px) {
    #header {width: 100%;}
    #header .cntInner{}
    #headerLogo{width:100px;}
#headerLogo img{border-radius:0 0 10px 0;}
    #header .cntBox{
        width: auto;
        background: none;
        border: none;
        padding: 0;
        }
    #headerBtn{
        position: absolute;
        top: 8px;
        right: 0;
        width: 50px;
        height: 35px;
        cursor: pointer;
        z-index: 999;
        }
    #headerBtn span{
        position: absolute;
        left: 10px;
        display: inline-block;
        width: calc(100% - 20px);
        height: 3px;
        transition: all .5s;
        background:var(--c-main);
        border-radius: 100px;
        }
    #headerBtn span:nth-of-type(1){top: 10px;}
    #headerBtn span:nth-of-type(2){
        top: 50%;
        transform: translateY(-1px);
        }
    #headerBtn span:nth-of-type(3){bottom: 8px;}
    #headerBtn.active span{background:var(--c-main);}
    #headerBtn.active span:nth-of-type(1){transform: translateY(6px) rotate(45deg);}
    #headerBtn.active span:nth-of-type(2){opacity: 0;}
    #headerBtn.active span:nth-of-type(3){transform: translateY(-7px) rotate(-45deg);}
}

/* SP */
@media screen and (max-width: 480px) {}

/* スマホナビ */
#nav{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    padding-bottom: 70px;
    background: #fff;
    z-index: 100;
    color: #333;
    }
#nav .cntInner{
    text-align: center;
    padding: 70px 20px 0;
    }
#nav .cntList .item{
    margin-top: 24px;
    line-height: 1.2;
    letter-spacing: .075em;
    }
#nav .cntList{
    font-weight: 600;
    display: block;
    }
#nav .cntList .current{color:var(--c-main);}
#nav .cntList li.mail{text-transform: uppercase;}





/* フッター */
#footer{background:#fff;}
#footer .cntInner{
    z-index: 2;
    max-width: 1280px;
    width: 96%;
    margin: 0 auto;
    padding: 70px 0;
    }
#footer .cntInner .cntList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap:         wrap;
    justify-content:space-between;
    }
#footer #footerLogo{
    text-align: left;
    max-width: 480px;
    width: 55%;
    margin: 0;
    }
#footer #footerLogo p{
    margin-top: 20px;
    display: block;
    font-size: 1.4rem;
    letter-spacing: .05em;
    line-height: 1.6;
    font-weight: 400;
    }

#footer .cntList .footerNav{
    width:45%;
    max-width: 400px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .05em;
    }
#footer .cntList .footerNav .cntList ul{width: 50%}
#footer .cntList ul li{
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 8px;
    }
#footer .cntList li a{
    transition: 0.5s;
    padding: 0 15px 1px;
    border-radius: 100px;
    }
#footer .cntList ul li:hover a,
#footer .cntList ul li a.current{
    background: var(--c-main);
    color: #fff;
    }
#footer .cntList:last-child{
    align-items: flex-end;
    }
#footer .ftBnr{margin: 10px 0 0 15px;}
#footer .ftBnr a{
    font-size: 1.6rem;
    font-weight: 500;
    background: url("../img/cmn/arw04.png")no-repeat right center;
    padding: 0 15px 0 0;
}
#footer #copyright{
    display: block;
    font-size: 1.0rem;
    text-align: left;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0;
    padding:0;
    margin-top: 20px;
    }

/* トップへ戻るボタン */
#top{
	position: fixed;
	bottom: 0;
	right: 0;
	width: 52px;
	z-index: 100;
    }

/* TAB */
@media screen and (max-width: 899px){
#footer .cntInner .cntList:first-child{}
#footer #footerLogo{
    text-align: center;
    width: 100%;
    margin: 0 auto;
    } 
#footer #footerLogo p{font-size: 1.4rem;}
#footer .cntList .footerNav{display: none;}
#footer #copyright{text-align: center;}
#top{width: 40px;}
}
/* SP */
@media screen and (max-width: 480px) {
#footer .cntInner{padding: 30px 0 20px;}
#footer .cntInner .cntList:first-child{margin-bottom: 30px;}
#footer #footerLogo img{max-width: 150px;}  
#footer #footerLogo p{
    max-width: 240px;
    margin:10px auto 0;
    font-size: 1.3rem;
    line-height: 1.5;
    }
#footer .cntList:last-child{display: block;}  
#top{width: 30px;}
}




/*------------------------------------------------------------
	over_effect
------------------------------------------------------------*/
.over_effect {width: 100%;overflow: hidden;}
.over_effect a {text-decoration: none;}
.over_effect img{transition: 0.7s;}
.over_effect a:hover img {
	display: block;
	transform: scale(1.1, 1.1);
	transition-duration: 0.8s;
	}


