/* ========================================
STORY PAGE
======================================== */

body{

    background:#FDF8F4;

    color:#4A433F;

    font-family:'Noto Sans JP',sans-serif;

    line-height:2;

    overflow-x:hidden;
}

.story-section{
    background:#FDF8F4;
}

.story-image img{

    width:100%;

    max-width:380px;

    height:460px;

    object-fit:cover;

    border-radius:36px;

    display:block;

    margin:auto;
}

.story-page section{

    padding:160px 0;
}

.story-card{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:100px;
    align-items:center;
}

.story-content h2{

    font-family:'Shippori Mincho',serif;

    font-size:clamp(24px,2.2vw,34px);

    line-height:1.9;

    margin:15px 0 25px;

    font-weight:500;
}

.story-content p{
    margin-bottom:20px;
    line-height:2.4;
}

.container{

    width:min(1200px,90%);

    margin:auto;
}

.center{
    text-align:center;
}

.white{
    color:#fff;
}

.mt30 {
    margin-top: 30px;
}
/* ======================================
HERO
======================================== */

.story-hero{

    position:relative;

    min-height:680px;

    padding:140px 0;

    display:flex;

    align-items:center;

    overflow:hidden;
}

.story-hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.story-hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 50%,
        rgba(0,0,0,.15) 100%
    );

    z-index:1;
}

.story-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.story-hero-en{
    display:block;
    margin-bottom:20px;

    font-size:13px;
    font-weight:700;

    letter-spacing:.35em;

    color:rgba(255,255,255,.85);
}

.story-hero h1{

    font-family:'Shippori Mincho',serif;

    font-size:clamp(25px,4vw,50px);

    line-height:1.7;

    margin-bottom:30px;
}

.story-hero p{

    font-size:17px;

    line-height:2.4;

    max-width:560px;

    color:rgba(255,255,255,.92);
}
/* ========================================
SECTION HEAD
======================================== */

.section-head{

    text-align:center;

    margin-bottom:80px;
}

.section-en{

    display:block;

    color:#E9967A;

    font-size:13px;

    font-weight:700;

    letter-spacing:.35em;

    text-transform:uppercase;

    margin-bottom:15px;
}

.section-title{
    font-family:'Shippori Mincho',serif;
    font-size:clamp(28px,3vw,40px);
    line-height:1.8;
}

.section-desc{

    margin-top:20px;

    font-size:17px;

    color:#777;
}

/* ========================================
PROFILE
======================================== */

.profile-section{

    background:#fff;
}

.profile-wrap{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:90px;
    align-items:center;
}

.profile-image{

    position:relative;
}

.profile-image::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:#fde7de;

    top:-40px;
    left:-40px;

    z-index:0;
}

.profile-image img{

    position:relative;

    z-index:1;

    width:100%;

    border-radius:40px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

.profile-content h3{

    color:#E9967A;

    letter-spacing:.2em;

    font-size:14px;

    margin-bottom:15px;
}

.profile-content h2{

    font-family:'Shippori Mincho',serif;

    font-size:clamp(36px,4vw,56px);

    margin-bottom:40px;

    line-height:1.6;
}

.profile-content p{

    margin-bottom:24px;

    font-size:16px;

    line-height:2.4;
}

/* ========================================
MESSAGE
======================================== */

.message-section{

    background:#fff;

    position:relative;
}

.message-box{

    max-width:760px;

    margin:auto;

    text-align:center;
}

.message-box h2{

    font-family:'Shippori Mincho',serif;

    font-size:clamp(24px,2.2vw,34px);

    line-height:2;

    margin:20px 0 50px;
}

.message-box p{

    font-size:16px;

    line-height:2.8;

    margin-bottom:24px;

    color:#666;
}
/* ========================================
GALLERY
======================================== */

.gallery-masonry{

    columns:2;

    column-gap:24px;

    max-width:900px;

    margin:auto;
}

.gallery-masonry img{

    width:100%;

    max-height:320px;

    object-fit:cover;

    margin-bottom:24px;

    border-radius:24px;

    display:block;

    transition:.4s;
}

.gallery-masonry img:hover{
    transform:scale(1.03);
}

/* ========================================
QUALIFICATION
======================================== */

.qualification-section{

    background:#fff;

    padding:80px 0;
}

.qualification-box{

    max-width:700px;

    margin:80px auto 0;

    text-align:center;
}

.qualification-item{

    position:relative;

    padding:35px 0;

    font-size:18px;

    letter-spacing:.08em;

    border-bottom:1px solid #EFE8E1;

    transition:.3s;
}

.qualification-item:first-child{

    border-top:1px solid #EFE8E1;
}

.qualification-item:hover{

    letter-spacing:.12em;

    color:#D88A72;
}

@media(max-width:768px){

    .qualification-box{

        margin-top:50px;
    }

    .qualification-item{

        font-size:16px;

        padding:26px 0;
    }

}

/* ========================================
CTA
======================================== */

.story-cta{
    padding:80px 0 120px;
}

.story-cta-box{

    background:
    linear-gradient(
        135deg,
        #F4E8DF 0%,
        #EFDCD0 100%
    );

    color:#4A433F;

    text-align:center;

    padding:70px 40px;

    border-radius:36px;

    max-width:900px;

    margin:auto;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}


.story-cta-box h2{

    font-family:'Shippori Mincho',serif;

    font-size:clamp(24px,2.4vw,34px);

    line-height:1.8;

    margin:15px 0 20px;
}

.story-cta-box p{

    max-width:520px;

    margin:auto;

    font-size:15px;

    line-height:2.2;

    color:#6A625C;
}

/* ========================================
BUTTON
======================================== */

.cta-bn{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    background:#D88A72;

    color:#fff;

    border-radius:999px;

    font-weight:600;

    font-size:15px;

    margin-top:28px;

    text-decoration:none;

    transition:.3s;
}

.cta-bn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px
    rgba(233,150,122,.25);
}

/* ========================================
SP
======================================== */

@media(max-width:768px){

    .story-page section{

        padding:90px 0;
    }

    .profile-wrap,
    .story-card,
    .message-grid,
    .license-grid{

        grid-template-columns:1fr;
        gap:50px;
    }

    .profile-image img{

        max-width:380px;

        margin:auto;
    }

    .license-grid{

        grid-template-columns:1fr;
    }

    .message-box h2{

        font-size:30px;
    }

    .message-box p{

        font-size:16px;

        line-height:2.4;
    }

    .story-cta-box{

        padding:70px 25px;
    }

    .story-image img,
    .message-image img{

        height:320px;
    }

    .gallery-masonry{

        columns:1;
    }
}