*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Noto Sans JP",sans-serif;
    background:#f7f4ef;
    color:#333;
    line-height:1.9;
}

img{
    display:block;
    max-width:100%;
}

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

.container{
    width:min(1180px,94%);
    margin:auto;
}

/* Header */
.header-info{
	display:flex;
	justify-content:flex-end;
	gap:25px;
	padding:8px 0 12px;
	font-size:14px;
	color:#ccc;
}

.header-info i{
	color:#d4af37;
	margin-right:5px;
}
.header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #e5ded4;
}

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

.logo{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-main{
    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    letter-spacing:8px;
    font-weight:600;
}

.logo-sub{
    margin-top:8px;
    font-size:11px;
    letter-spacing:3px;
    color:#9b826a;
}

.gnav{
    display:flex;
    gap:26px;
}
.gnav a{
    font-size:12px;
    letter-spacing:2px;
    color:#555;
    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.gnav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:#c9a889;
    transition:.3s;
}
.gnav a:hover::after{
    width:100%;
}

/* Hero */

.hero{
    background:#fff;
}

.hero img{
    width:100%;
    height:auto;
}

/* Section */

.section{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:block;
    font-family:"Cormorant Garamond",serif;
    font-size:38px;
    color:#c9a889;
    letter-spacing:3px;
}

.section-heading h2{
    margin-top:6px;
    font-size:15px;
    font-weight:400;
    letter-spacing:4px;
    color:#777;
}

/* Cast */

.cast-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.cast-card{
    background:#fff;
    transition:.35s;
}

.cast-card img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
}

.cast-info{
    padding:22px 8px 28px;
    text-align:center;
}

.cast-info h3{
    font-size:22px;
    font-weight:400;
    letter-spacing:3px;
}

.cast-info p{
    color:#888;
    font-size:13px;
}

.cast-info p:nth-of-type(1){
    font-family:"Cormorant Garamond",serif;
    color:#b59a82;
    font-size:18px;
    margin:2px 0 8px;
}

.cast-btn{
    display:inline-block;
    margin-top:18px;
    padding:10px 34px;
    border:1px solid #d8c7b8;
    color:#8b735d;
    font-size:12px;
    letter-spacing:2px;
    transition:.3s;
}

.cast-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(120,100,80,.14);
}

.cast-btn:hover{
    background:#c9a889;
    color:#fff;
    border-color:#c9a889;
}

/* New Face */

.newface{
    background:#fff;
}

.newface-box{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;
}

.newface-box img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
}

.label{
    display:inline-block;
    margin-bottom:18px;
    color:#c9a889;
    font-size:12px;
    letter-spacing:4px;
}

.newface-text h3{
    font-size:36px;
    font-weight:400;
    letter-spacing:5px;
    margin-bottom:20px;
}

.newface-text p{
    color:#777;
    margin-bottom:30px;
    max-width:620px;
}

.main-btn{
    display:inline-block;
    padding:12px 42px;
    border:1px solid #c9a889;
    color:#8b735d;
    letter-spacing:2px;
    transition:.3s;
}

.main-btn:hover{
    background:#c9a889;
    color:#fff;
}

/* News */

.news ul{
    max-width:860px;
    margin:auto;
    list-style:none;
    background:#fff;
    padding:18px 34px;
}

.news li{
    padding:17px 0;
    border-bottom:1px solid #eee7df;
    color:#666;
}

.news li:last-child{
    border-bottom:none;
}

.news li span{
    display:inline-block;
    width:150px;
    color:#b59a82;
}

/* Footer */

.footer{
    padding:65px 0;
    background:#fff;
    text-align:center;
    border-top:1px solid #e5ded4;
}

.footer h2{
    font-family:"Cormorant Garamond",serif;
    font-size:44px;
    letter-spacing:8px;
    font-weight:600;
}

.footer p{
    color:#9b826a;
    letter-spacing:3px;
}

.footer small{
    display:block;
    margin-top:14px;
    color:#aaa;
}

/* Responsive */

@media(max-width:1000px){
    .header-inner{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:18px;
    }

    .gnav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .cast-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .newface-box{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){
    .section{
        padding:60px 0;
    }

    .logo-main{
        font-size:38px;
    }

    .section-heading span{
        font-size:32px;
    }

    .cast-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .cast-info{
        padding:16px 6px 22px;
    }

    .cast-info h3{
        font-size:18px;
    }

    .cast-info p{
        font-size:11px;
    }

    .cast-btn{
        padding:8px 18px;
        font-size:11px;
    }

    .news li span{
        display:block;
        width:auto;
        margin-bottom:4px;
    }
}

/*==================================================
ハンバーガーボタン
==================================================*/
.menu-button{
	display:none;
	width:48px;
	height:48px;
	padding:0;
	border:1px solid #d8c7b8;
	border-radius:0;
	background:#fff;
	cursor:pointer;
	position:fixed;
	top:16px;
	right:16px;
	z-index:1100;
}
.menu-button span{
	position:absolute;
	left:13px;
	width:22px;
	height:1px;
	background:#8b735d;
	transition:.3s;
}
.menu-button span:nth-child(1){ top:17px; }
.menu-button span:nth-child(2){ top:24px; }
.menu-button span:nth-child(3){ top:31px; }

.menu-button.is-active span:nth-child(1){
	top:24px;
	transform:rotate(45deg);
}
.menu-button.is-active span:nth-child(2){
	opacity:0;
}
.menu-button.is-active span:nth-child(3){
	top:24px;
	transform:rotate(-45deg);
}

/*==================================================
オーバーレイ
==================================================*/
.menu-overlay{
	visibility:hidden;
	opacity:0;
	position:fixed;
	inset:0;
	background:rgba(60,48,38,.5);
	z-index:900;
	transition:.3s;
}
.menu-overlay.is-visible{
	visibility:visible;
	opacity:1;
}
body.menu-open{
	overflow:hidden;
}

/*==================================================
スマホ表示
==================================================*/
@media(max-width:768px){
	.menu-button{
		display:block;
	}
	.header-info{
		display:none;
	}
	.gnav{
		position:fixed;
		top:0;
		right:-100%;
		width:min(320px,85%);
		height:100dvh;
		padding:100px 30px 40px;
		background:#f7f4ef;
		border-left:1px solid #e5ded4;
		flex-direction:column;
		gap:0;
		overflow-y:auto;
		z-index:1050;
		box-shadow:-15px 0 40px rgba(60,48,38,.18);
		transition:right .4s ease;
	}
	.gnav.is-open{
		right:0;
	}
	.gnav a{
		width:100%;
		padding:18px 0;
		border-bottom:1px solid #e5ded4;
		flex-direction:row;
		justify-content:flex-start;
		gap:16px;
		color:#555 !important;
	}
	.gnav a span,
	.gnav a small{
		color:#555 !important;
	}
	.gnav a::after{
		display:none;
	}
	.header-inner{
		flex-direction:row;
		justify-content:space-between;
		height:auto;
		padding:18px 0;
	}
}