@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; } 
*{ box-sizing: border-box; }
body {
    --max-width: 900px;
    --c-base: #131313;
    --c-main: #be817f;
    --c-accent: #86957b;
    --ff-main:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    --ff-en: "Ubuntu", 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: #131313;
    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: #be817f !important; }
.--c-white{ color: #fff !important; }
.--c-yellow{ color: #979657 !important; }
.--c-blue{ color: #64688a !important; }
.--c-green{ color: #86957b !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.0rem;
    letter-spacing: .025em;
    text-transform: capitalize;
    line-height: 1.1;
    }
._Title .ja{
    font-family: var(--ff-main);
    font-size: 3.0rem;
    letter-spacing: .05em;
    }

/* TAB */
@media screen and (max-width: 899px) {
._Title .en{font-size: 6.0rem;}
._Title .ja{font-size: 1.8rem;}
}

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

._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: 145px;
    margin:10px auto 0;
    padding: 10px 0;
    transition: 0.7s;
    }
.cntBtn:hover{}
.cntBtn.--ta-r{margin:10px 0 0 auto;}
.cntBtn.--ta-l{margin:10px auto 0 0;}
.cntBtn a{
    position: relative;
    font-size: 1.5rem;
    letter-spacing: .05em;
    display: block;
    width: 100%;
    text-align: left;
    margin: auto;
    transition: 0.7s;
    padding: 17px 0;
    }
.cntBtn a::before{
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: #222;
    top: 50%;
    left: 55px;
    z-index: 2;
    transition: 0.7s;
    }
.cntBtn a::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background:var(--c-main);
    top:0;
    right: 0;
    border-radius: 100px;
    z-index: 1;
    transition: 0.7s;
    }
.cntBtn a:hover::before{width: 70px;}
.cntBtn a:hover::after{background:var(--c-accent);}

.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: 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 a{padding: 12px 0;}
.cntBtn a::after{
    width: 50px;
    height: 50px;
    }
._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: 100%;
    padding:0;
    margin: 0 auto;
    }
#headerLogo{
    width: 35%;
    padding: 10px;
    box-sizing: border-box;
    }
#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 .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: 45px;
    height: 1px;
    background: rgba(13,93,199,0);
    bottom: -10px;
    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.4rem;
    }
#header .cntList .item .en,
#header .cntList .init-bottom .en{
    display: block;
    font-family: var(--ff-en);
    color: var(--c-accent);
    font-size:2.4rem;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.1;
    font-weight: 500;
    transition: 0.7s;
    }
#header .cntList .item.current .en,
#header .cntList .item:hover .en{color: var(--c-main);}
#header .cntList .item:hover{opacity: 1;}
#header .cntList .item:hover::after,
#header .cntList .item.current::after{background: var(--c-main);}


#header .cntList li:last-child{width: 20%;transition: 0.5s;}
#header .cntList li:last-child .item .en{
    font-family: var(--ff-en);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    background: url("../img/cmn/contact_icon_mail.png")no-repeat top center;
    padding-top:25px;
    }
#header .cntList li:last-child a{
    display: block;
    width: 100%;
    background: var(--c-main);
    padding: 35px 0;
    letter-spacing: 0;
    color: #fff;
    box-sizing: border-box;
    transition: 0.5s;
    }
#header .cntList li:last-child:hover a{background:var(--c-accent);}
#header .cntList li:last-child:hover .item .en{}
#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: 25%;}
    #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.6rem;}
    #header .cntList li:last-child .item .en{font-size: 1.4rem;}
    #header .cntList li:last-child a{padding: 25px 0;}
    }
/* TAB */
@media screen and (max-width: 899px) {
    #header {width: 100%;}
    #header .cntInner{}
    #headerLogo{width:230px;}

    #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: 200px;}}

/* スマホナビ */
#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: var(--c-accent);
    }
#footer .cntInner{
    z-index: 2;
    max-width: 1280px;
    width: 96%;
    margin: 0 auto;
    color: #fff;
    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: 420px;
    width: 45%;
    margin: 0;
    }
#footer #footerLogo p{
    margin-top: 20px;
    display: block;
    font-size: 1.3rem;
    letter-spacing: .05em;
    line-height: 1.8;
    }
#footer .cntList .footerNav{
    width:55%;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .05em;
    }
#footer .cntList ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap:         wrap;
    justify-content:space-between;
    align-content: center;
    align-items: center;
    }
#footer .cntList ul li{
    position: relative;
    width: 20%;
    text-align: center;
    }
#footer .cntList ul li::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    }
#footer .cntList ul li:first-child::after{display: none;}
#footer .cntList li a{}


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

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

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




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


