@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; } 
*{ box-sizing: border-box; }
body {
    --max-width: 900px;
    --c-base: #272727;
    --c-main: #246A2B;
    --c-accent: #F6AB39;
    --ff-main:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    --ff-en: "Oswald", 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: #272727;
    letter-spacing:0.05em;
    background: #ffffff;
    }
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){body {font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 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: #e61927 !important; }
.--c-white{ color: #fff !important; }
.--c-yellow{ color: #F6AB39 !important; }
.--c-blue{ color: #103589 !important; }
.--c-green{ color: #246A2B !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{color: var(--c-accent); transition: 0.5s}

/* 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; }
}
._Inview{
	opacity: 0;
	transition: 1.5s ease .5s;
}
._Inview.in{ opacity: 1; }
._Inview.-slide{ transform: translateX(-20px); }
._Inview.-slide.in{ transform: translateX(0); }
._Inview.-up{ transform: translateY(20px); }
._Inview.-up.in{ transform: translateY(0); }
._Inview.-img{ position: relative; opacity: 1; }
._Inview.-img img{ opacity: 0; }
._Inview.-img.in img{ animation: inview_img 1s ease .5s forwards; }
._Inview.-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--c-main);
    transform: scaleX(0);
    z-index: 2;
    }
._Inview.-img.in::before{animation: inview_img_before 1s ease .5s forwards;}
/* SP */
@media screen and (max-width: 480px) {
	._Inview{ transition-delay: 0s; }
	._Inview.-img.in img,
	._Inview.-img.in::before{ animation-delay: 0s; }
}

/* 共通 */
.cntInner,
._Inner{
    width: 100%;
    margin: 0 auto;
    }
._Title{margin-bottom: 50px;}
._Title .en{
    display: block;
    font-family: var(--ff-en);
    font-size: 10.0rem;
    letter-spacing: .05em;
    text-transform: capitalize;
    line-height: 1.2;
    }
._Title .en::first-letter{
    color: var(--c-main);
    }
._Title .ja{
    font-family: var(--ff-main);
    font-size: 2.0rem;
    letter-spacing: .05em;
    }

._Title02{
    font-family: var(--ff-main);
    font-size: 3.0rem;
    margin-bottom: 50px;
    letter-spacing: .05em;
    }

/* TAB */
@media screen and (max-width: 899px) {
._Title{margin-bottom: 40px;}
._Title .en{
    font-size: 8.0rem;
    line-height: 1.2;
    }
._Title .ja{
    font-size: 1.8rem;
    }
._Title02{
    font-size: 2.2rem;
    margin-bottom: 25px;
    }  
}

/* SP */
@media screen and (max-width: 480px) {
._Title{margin-bottom: 25px;}
._Title .en{
    font-size: 6.0rem;
    letter-spacing: 0;
    line-height: 1.2;
    }
._Title .ja{
    font-size: 1.5rem;
    letter-spacing: .05em;
    }
._Title02{
    font-size: 1.8rem;
    margin-bottom: 15px;
    }
}

._Box .cntInner{
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    }
._Box .cntText{
    font-weight: 600;
    letter-spacing: .075em;
    line-height: 1.8;
    }
.cntBtn{
    width: 100%;
    max-width: 185px;
    margin:40px auto 0;
    background: url("../img/cmn/arw_wht2.png")no-repeat 100% center;
    padding: 10px 0;
    transition: 0.7s;
    }
.cntBtn:hover{background: url("../img/cmn/arw_wht.png")no-repeat 100% center;}
.cntBtn.--ta-r{margin:40px 0 0 auto;}
.cntBtn.--ta-l{margin:40px auto 0 0;}
.cntBtn a{
    position: relative;
    font-size: 1.8rem;
    letter-spacing: .05em;
    display: block;
    width: 100%;
    text-align: left;
    margin: auto;
    transition: 0.7s;
    padding: 10px 0;
    }
.cntBtn a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #222;
    bottom: 0;
    left: 0;
    right: 0;
    }
.cntBtn a:hover{
    }

.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;
    }
._Box .cntList.row{flex-direction: column-reverse;flex-direction: row-reverse;}

@media screen and (max-width: 1350px) {}
/* TAB */
@media screen and (max-width: 899px) {
._Box .cntText{
    font-size: 1.5rem;
    letter-spacing: .075em;
    line-height: 1.6;
    }
}
/* SP */
@media screen and (max-width: 480px) {
._Box .cntInner{width: 90%;}
.cntBtn{
    max-width: 100%;
    margin:20px auto 0;
    background: url("../img/cmn/arw_wht2.png")no-repeat 100% center;
    background-size: 45px;
    }
.cntBtn:hover{
    background: url("../img/cmn/arw_wht.png")no-repeat 100% center;
    background-size: 45px;
    }
.cntBtn.--ta-r{margin:10px 0 0 auto;}
.cntBtn.--ta-l{margin:10px auto 0 0;}
.cntBtn a{
    font-size: 1.5rem;
    padding: 15px 10px;
    }
.cntBtn02{max-width: 90%;margin:auto;}
.cntBtn02 a{font-size: 1.5rem;}
._Box .cntText{
    letter-spacing: .05em;
    line-height: 1.6;
    }
}

/* ローディング */
#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: 96%;
    padding:20px 0;
    margin: 0 auto;
    }
#headerLogo{
    width: 35%;
    }
#header .cntBox{
    width: 64%;
    max-width: 920px;
    }
#header .cntList{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    }
#header .cntList li{width: 15%;}
#header .cntList li:nth-child(2){width: 25%;}
#header .cntList .item,
#header .cntList .init-bottom{
    display: block;
    text-align: center;
    letter-spacing: .025em;
    font-weight: 700;
    transition: 0.7s;
    position: relative;
    }
/*#header .cntList .item::after{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(13,93,199,0);
    border-radius: 100%;
    top: -12px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
    }*/
#header .cntList .item .jp,
#header .cntList .init-bottom .jp{
    font-family: var(--ff-main);
    font-size:1.7rem;
    }
#header .cntList .item .en,
#header .cntList .init-bottom .en{
    display: block;
    font-family: var(--ff-en);
    color: var(--c-main);
    font-size:1.5rem;
    text-transform: uppercase;
    letter-spacing: 0;
    }

#header .cntList .item.current,
#header .cntList .item:hover{
    opacity: 0.8;
    color: var(--c-accent);
    transition: 0.5s;
    font-size: 1.6rem;
    }

#header .cntList .item:hover::after,
#header .cntList .item.current::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--c-main);
    border-radius: 100%;
    top: -15px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
}
/*#header .cntList .item:hover::after,
#header .cntList .item.current::after{background: #fff;}*/
#header .cntList li:last-child{width: 20%;transition: 0.5s;}
#header .cntList li:last-child .item .en{
    font-family: var(--ff-en);
    font-size: 2.0rem;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    }
#header .cntList li:last-child a{
    display: block;
    width: 100%;
    background: var(--c-accent);
    border: 2px solid var(--c-accent);
    border-radius: 4px;
    padding: 12px 0;
    letter-spacing: 0;
    color: #fff;
    box-sizing: border-box;
    transition: 0.5s;
    }
#header .cntList li:last-child:hover a{background: #fff;}
#header .cntList li:last-child:hover .item .en{color: var(--c-accent);}
#header .cntList li:last-child .item::after{
    position: static;
    display: none;
    }

/*#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: 1220px) {
#headerLogo {width: 30%;padding: 0}
#header .cntBox{width:68%;}
#header .cntList .item,
#header .cntList .init-bottom{line-height: 1.1}
#header .cntList .item .jp,
#header .cntList .init-bottom .jp{font-size: 1.4rem;letter-spacing: 0;}
#header .cntList .item .en,
#header .cntList .init-bottom .en{font-size:1.3rem;}
#header .cntList li:last-child .item .en{font-size: 1.7rem;}
}


/* TAB */
@media screen and (max-width: 899px) {
#header {width: 100%;}
#header .cntInner{padding: 10px 0;}
#headerLogo{width:250px;}
  
#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{}
#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) {
#headerLogo{width: 230px;}
}

/* スマホナビ */
#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{}
#footer .cntInner{
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    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;
    align-content: center;
    align-items: center;
    }
#footer #footerLogo{
    text-align: left;
    max-width: 427px;
    width: 60%;
    margin: 0;
    }
#footer #footerLogo p{display: block;}
#footer .cntList .footerNav{
    width:30%;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    }
#footer .cntList ul li{margin-bottom: 5px;}
#footer .cntList li a{}


#copyright{
    background: #f6f6f6;
    display: block;
    font-size: 1.1rem;
    margin: auto;
    text-align: center;
    padding:10px 0;
    }

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

/* TAB */
@media screen and (max-width: 899px){
#footer #footerLogo{
    text-align: center;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    } 
    #footer .cntList .footerNav{display: none;}
#footer #footerLogo p{font-size: 1.4rem;padding-top: 5px;}
/* トップへ戻るボタン */
#top{width: 30px;}
}
/* SP */
@media screen and (max-width: 480px) {
#footer .cntInner{padding: 30px 0;}
#footer #footerLogo img{max-width: 250px;}  
#footer #footerLogo p{font-size: 1.3rem;padding-top: 10px;}
}




/*------------------------------------------------------------
	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;
	}


