@charset "utf-8";

/*==================================================
    レスポンシブCSS
===================================*/

/*========= ヘッダーレイアウトのためのCSS ===============*/
/* 土台 */
#header {
    position: fixed !important;
    z-index: 999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

#header .inner {
    padding: 0 4%;
    height: 100%;
}

.pc-nav {
    display: none;
}

/* ヘッダーロゴ */
.header-logo {
    max-width: 100px;
    line-height: 70px;
}

.header-logo a {
    display: inline-block;
}

.header-logo a img {
    vertical-align: middle;
}

/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
    left: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #C79E96;
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .8s;
}

.circle-bg.circleactive{
	transform: scale(50);
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
    margin: 0;
    padding: 0;
}

/* 背景が出現後にナビゲーション li を表示 */
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}

/*リストのレイアウト設定*/
#g-nav li{
	text-align: center;
	list-style: none;
}

#g-nav li:last-child {
    margin-bottom: 0;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
    font-size: 16px;
	letter-spacing: 0.1em;
}

#g-nav li a span {
    display: block;
    font-size: 12px;
    margin-top: 7px;
    font-family: "yu-mincho-pr6n", sans-serif !important;
}

.pc-nav ul ul{
	display: block;
}

/*下の階層を持っているulの指定*/
.pc-nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:47%;
	top:100px;
	z-index: 4;
    /*形状を指定*/
	background:#fff;
	width:240px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
.pc-nav li.has-child:hover > ul,
.pc-nav li.has-child ul li:hover > ul,
.pc-nav li.has-child:active > ul,
.pc-nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}

/*ナビゲーションaタグの形状*/
.pc-nav li.has-child ul li a{
    display: block;
	color: #fff;
}

.pc-nav li.has-child ul li:last-child > a{
    border-bottom:none;
}

.pc-nav li.has-child ul li a:hover,
.pc-nav li.has-child ul li a:active{
	background:#C79E96;
    color: #fff !important;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:0;
	right: 0;
	z-index: 9999;
	cursor: pointer;
    width: 70px;
    height:70px;
    background-color: #C79E96;
    border-radius: 0 0 0 15px;
}

/*×に変化*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 21px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
    width: 43%;
}

.openbtn span:nth-of-type(1) {
	top:25px;
}

.openbtn span:nth-of-type(2) {
	top:33px;
}

.openbtn span:nth-of-type(3) {
	top:41px;
}

.openbtn.active span {
    background-color: #fff;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 28px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 28px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ヒーロー */
.hero {
    position: relative;
}

.hero-content {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.hero .inner {
    position: relative;
    height: 100vh;
}

.catch-wrap {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}

.catch-wrap h1 {
    position: relative;
    margin: 0 0 60px 0;
    letter-spacing: .1em;
    font-size: 8vw;
    //color: #fff;
    text-shadow: 1px 1px 3px #fff;
}

.catch-wrap h1::before {
    position: absolute;
    bottom: -30px;
    left: 0;
    content: "";
    width: 20%;
    height: 3px;
    background-color: #D9C0BB;
}

.catch-text {
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: .05em;
    font-size: 1.125em;
    text-shadow: 1px 1px 3px #fff;
	//color: #fff;
}

.check ul {
    margin: 0;
    padding: 30px;
    list-style: none;
    background-color: #C79E96;
    border-radius: 10px;
}

.check ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    color: #fff;
    letter-spacing: .05em;
}

.check ul li:last-child {
    margin-bottom: 0;
}

.check ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/square-rounded-check-filled.png);
    background-size: cover;
}

/*==================================================
    タブレットCSS
===================================*/

@media(min-width:600px) {
    .catch-wrap h1 {
        font-size: 3.875em;
    }

    .check {
        max-width: 350px;
    }
}

/*==================================================
    デスクトップCSS
===================================*/

@media(min-width:1025px) {
    #header {
        height: 80px;
        border-radius: 0 0 40px 40px;
    }

    #header .inner {
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        line-height: 100px;
    }

    .openbtn {
        display: none;
    }

    #g-nav {
        display: none;
    }

    .circle-bg {
        display: none;
    }

    .pc-nav {
        display: block;
    }

    .pc-nav ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pc-nav ul li a {
        display: inline-block;
        margin-right: 70px;
        text-align: center;
        letter-spacing: .05em;
        font-size: 14px;
        text-decoration: none;
        color: #655B46 !important;
        transition: all .4s;
    }

    .pc-nav ul li a span {
        display: block;
        font-size: 10px;
        letter-spacing: .05em;
        margin-top: 2px;
        font-family: noto-sans-cjk-jp, sans-serif !important;
    }

    .pc-nav ul li a:hover {
        color: #C79E96 !important;
    }

    .pc-nav ul li ul li a {
        margin-right: 0;
        text-align: start;
        padding: 15px;
        border-bottom: 1px solid #eee !important;
    }

    .pc-nav ul li ul li a

    /* メインビジュアル */
    .hero .inner {
        padding: 0;
    }

    .hero-content.vegas-container {
        width: 80% !important;
        border-radius: 0 0 0 300px;
        left: auto;
        right: 0;
        height: 90vh !important;
    }

    .hero::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100vh;
        content: "";
        background-color: #E6E0DE;
    }
}