*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#050505;

    color:#f5e6c8;

    font-family:

    "Yu Mincho",

    serif;

    overflow-x:hidden;

    line-height:2;

}

/* =====================

   HEADER

===================== */

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:35px 80px;

    border-bottom:

    1px solid rgba(216,180,123,.15);

}

.logo{

    font-size:38px;

    color:#d8b47b;

    letter-spacing:2px;

}

nav{

    display:flex;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:#f5e6c8;

    font-size:14px;

    letter-spacing:2px;

    transition:.3s;

}

nav a:hover{

    color:#d8b47b;

}

/* =====================

   HERO

===================== */

.hero{

    text-align:center;

    padding:140px 20px 120px;

}

.hero h1{

    font-size:120px;

    font-weight:300;

    color:#d8b47b;

    letter-spacing:8px;

}

.hero p{

    margin-top:20px;

    font-size:24px;

    letter-spacing:2px;

}

/* =====================

   STAFF

===================== */

.staff-section{

    max-width:1200px;

    margin:0 auto;

    padding:180px 40px;

    text-align:center;

    border-top:

    1px solid rgba(216,180,123,.15);

}

/* 写真 */

.staff-photo{

    width:100%;

    max-width:750px;

    height:900px;

    object-fit:cover;

    object-position:center;

    display:block;

    margin:0 auto 70px;

    border:

    1px solid rgba(216,180,123,.15);

}

/* 役職 */

.staff-role{

    color:#d8b47b;

    font-size:20px;

    letter-spacing:4px;

    margin-bottom:20px;

}

/* 名前 */

.staff-section h2{

    font-size:64px;

    font-weight:400;

    margin-bottom:40px;

    color:#f5e6c8;

}

/* ライン */

.line{

    width:220px;

    height:1px;

    background:#d8b47b;

    margin:0 auto 60px;

}

/* 本文 */

.staff-message{

    max-width:850px;

    margin:0 auto;

}

.staff-message p{

    font-size:18px;

    line-height:2.8;

    letter-spacing:.05em;

    margin-bottom:35px;

    color:#ddd;

}

/* =====================

   MESSAGE

===================== */

.message{

    text-align:center;

    padding:180px 20px;

    border-top:

    1px solid rgba(216,180,123,.15);

}

.message span{

    color:#d8b47b;

    font-size:18px;

    letter-spacing:5px;

}

.message h2{

    margin:40px 0;

    font-size:64px;

    font-weight:400;

    line-height:1.8;

}

.message p{

    font-size:24px;

    letter-spacing:2px;

}

/* =====================

   FOOTER

===================== */

footer{

    text-align:center;

    padding:100px 20px;

    border-top:

    1px solid rgba(216,180,123,.15);

}

footer p{

    color:#d8b47b;

    margin-bottom:20px;

}

footer h2{

    font-size:50px;

    color:#d8b47b;

    font-weight:400;

}

/* =====================

   MOBILE

===================== */

@media(max-width:900px){

.page-header{
    padding:15px 0;
    background:#050505;
}

.hero-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px 20px;
    width:90%;
    margin:0 auto;
}

.hero-nav a{
    display:block;
    text-align:center;
    color:#f5e6c8;
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    font-family:serif;
}

.hero{

    padding:100px 20px 80px;

}

.hero h1{

    font-size:70px;

}

.hero p{

    font-size:18px;

}

.staff-section{

    padding:100px 25px;

}

.staff-photo{
    width:100%;
    height:450px;
    object-fit:cover;
    object-position:center 70%;
}

.staff-role{
    font-size:15px;
    line-height:1.8;
    letter-spacing:2px;
    margin-bottom:18px;
}

.staff-section h2{
    font-size:42px;
    margin-bottom:28px;
}

.line{
    width:140px;
    margin:0 auto 35px;
}

.staff-message{
    max-width:92%;
}

.staff-message p{
    font-size:14px;
    line-height:2.2;
    margin-bottom:28px;
    letter-spacing:0;

    word-break:break-word;
    overflow-wrap:anywhere;
}

.message{

    padding:120px 25px;

}

.message h2{

    font-size:40px;

}

.message p{

    font-size:18px;

}

}