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

body{
    font-family:"Noto Serif JP",serif;
    background:#fcf9f7;
    color:#383838;
    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,253,250,.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #eadde1;
}

.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:48px;
    letter-spacing:8px;
    color:#8a2d45;
    font-weight:700;
}

.logo-sub{
    margin-top:8px;
    font-size:12px;
    letter-spacing:3px;
    color:#b96a81;
}

.gnav{
    display:flex;
    gap:24px;
}

.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:-7px;
    width:0;
    height:1px;
    background:#8a2d45;
    transition:.3s;
}

.gnav a:hover{
    color:#8a2d45;
}

.gnav a:hover::after{
    width:100%;
}

/* Hero */

.hero{
    background:#fffdfa;
}

.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:42px;
    color:#8a2d45;
    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;
    box-shadow:0 12px 35px rgba(138,45,69,.08);
}

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

.cast-info{
    padding:24px 10px 30px;
    text-align:center;
}

.cast-info h3{
    font-size:23px;
    font-weight:500;
    letter-spacing:3px;
    color:#383838;
}

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

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

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

.cast-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 45px rgba(138,45,69,.16);
}

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

/* Ranking */

.ranking{
    background:#fffdfa;
}

.ranking-list{
    max-width:820px;
    margin:auto;
    display:grid;
    gap:18px;
}

.ranking-item{
    display:grid;
    grid-template-columns:70px 90px 1fr;
    align-items:center;
    gap:22px;
    background:#fff;
    padding:18px;
    box-shadow:0 10px 28px rgba(138,45,69,.08);
}

.rank{
    font-family:"Cormorant Garamond",serif;
    font-size:38px;
    color:#8a2d45;
}

.ranking-item img{
    width:90px;
    height:120px;
    object-fit:cover;
}

.ranking-item h3{
    font-size:23px;
    font-weight:500;
    letter-spacing:3px;
}

.ranking-item p{
    color:#999;
    font-family:"Cormorant Garamond",serif;
    font-size:18px;
}

/* New Face */

.newface{
    background:#f7f3ef;
}

.newface-box{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;
    background:#fff;
    padding:42px;
    box-shadow:0 14px 40px rgba(138,45,69,.1);
}

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

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

.newface-text h3{
    font-size:38px;
    font-weight:500;
    letter-spacing:5px;
    margin-bottom:22px;
}

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

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

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

/* News */

.news ul{
    max-width:860px;
    margin:auto;
    list-style:none;
    background:#fff;
    padding:18px 34px;
    box-shadow:0 10px 28px rgba(138,45,69,.06);
}

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

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

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

/* Footer */

.footer{
    padding:65px 0;
    background:#8a2d45;
    color:#fff;
    text-align:center;
}

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

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

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

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

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

    .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;
    }

    .ranking-item{
        grid-template-columns:50px 70px 1fr;
        gap:14px;
        padding:14px;
    }

    .ranking-item img{
        width:70px;
        height:95px;
    }

    .rank{
        font-size:30px;
    }

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

/*==================================================
ハンバーガーボタン
==================================================*/
.menu-button{
	display:none;
	width:48px;
	height:48px;
	padding:0;
	border:1px solid #8a2d45;
	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:#8a2d45;
	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(56,20,30,.55);
	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:#fffdfa;
		border-left:1px solid #eadde1;
		flex-direction:column;
		gap:0;
		overflow-y:auto;
		z-index:1050;
		box-shadow:-15px 0 40px rgba(138,45,69,.18);
		transition:right .4s ease;
	}
	.gnav.is-open{
		right:0;
	}
	.gnav a{
		width:100%;
		padding:18px 0;
		border-bottom:1px solid #eadde1;
		flex-direction:row;
		justify-content:flex-start;
		gap:16px;
		color:#383838 !important;
	}
	.gnav a span,
	.gnav a small{
		color:#383838 !important;
	}
	.gnav a::after{
		display:none;
	}
	.header-inner{
		flex-direction:row;
		justify-content:space-between;
		height:auto;
		padding:18px 0;
	}
}