/* ==========================================
   natural hair STAR
   style.css
   Part1
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat','Noto Serif JP',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.8;
    overflow-x:hidden;
}

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

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

ul{
    list-style:none;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}

section{
    padding:120px 0;
}

/* ===========================
HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.72);
    border-bottom:1px solid rgba(255,255,255,.4);
    transition:.4s;
}

.header-inner{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.logo-small{

    font-size:13px;

    letter-spacing:4px;

    color:#888;

}

.logo-large{

    font-size:34px;

    font-weight:700;

    letter-spacing:6px;

}

nav ul{

    display:flex;

    gap:45px;

}

nav a{

    font-size:13px;

    letter-spacing:3px;

    transition:.3s;

}

nav a:hover{

    color:#9aa886;

}

/* ===========================
HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.15),

        rgba(0,0,0,.45)

    );

}

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    text-align:center;

    width:90%;

}

.since{

    letter-spacing:8px;

    font-size:14px;

    margin-bottom:18px;

}

.hero h1{

    font-size:72px;

    font-weight:700;

    letter-spacing:6px;

    line-height:1.1;

}

.hero h1 span{

    display:block;

}

.hero h2{

    margin-top:30px;

    font-family:'Noto Serif JP';

    font-size:42px;

    font-weight:500;

}

.lead{

    margin-top:30px;

    font-size:18px;

    opacity:.9;

}

.main-button{

    display:inline-block;

    margin-top:45px;

    padding:18px 48px;

    background:#8ea084;

    color:#fff;

    border-radius:50px;

    font-size:15px;

    letter-spacing:2px;

    transition:.35s;

}

.main-button:hover{

    background:#76866d;

    transform:translateY(-3px);

}

.scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:12px;

    letter-spacing:4px;

}

.scroll span{

    display:block;

    width:1px;

    height:70px;

    background:#fff;

    margin:0 auto 12px;

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        transform:scaleY(0);

        transform-origin:top;

    }

    50%{

        transform:scaleY(1);

        transform-origin:top;

    }

    51%{

        transform-origin:bottom;

    }

    100%{

        transform:scaleY(0);

        transform-origin:bottom;

    }

}

/* ===========================
SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title p{

    color:#8ea084;

    letter-spacing:6px;

    font-size:13px;

    margin-bottom:10px;

}

.section-title h2{

    font-family:'Noto Serif JP';

    font-size:42px;

    font-weight:500;

}

/* ==========================================
   ABOUT
========================================== */

.about{
    background:#faf9f7;
}

.about-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    transition:.8s;
}

.about-image:hover img{
    transform:scale(1.06);
}

.about-text p{
    margin-bottom:24px;
    color:#555;
    font-size:17px;
    line-height:2.2;
}

.about-text p:last-child{
    margin-bottom:0;
}

/* ==========================================
   GALLERY
========================================== */

.gallery{
    background:#fff;
}

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

.gallery-grid div{
    overflow:hidden;
    border-radius:18px;
    position:relative;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.gallery-grid img:hover{
    transform:scale(1.08);
}

/* ==========================================
   MENU
========================================== */

.menu{
    background:#f8f8f8;
}

.menu-group{
    max-width:820px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.menu-group h3{
    margin-top:45px;
    margin-bottom:18px;
    color:#8ea084;
    font-size:24px;
    letter-spacing:2px;
}

.menu-group h3:first-child{
    margin-top:0;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #ececec;
    gap:20px;
}

.menu-item span:first-child{
    color:#444;
    line-height:1.8;
}

.menu-item span:last-child{
    font-weight:700;
    white-space:nowrap;
}

.menu-note{
    margin-top:35px;
    font-size:14px;
    color:#777;
    line-height:2;
}

/* ==========================================
   SHAVING
========================================== */

.shaving{
    background:#ffffff;
}

.shaving-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.shaving-image{
    overflow:hidden;
    border-radius:20px;
}

.shaving-image img{
    transition:.7s;
}

.shaving-image:hover img{
    transform:scale(1.05);
}

.sub{
    color:#8ea084;
    letter-spacing:5px;
    font-size:13px;
    margin-bottom:15px;
}

.shaving-text h2{
    font-family:'Noto Serif JP';
    font-size:38px;
    font-weight:500;
    line-height:1.6;
    margin-bottom:25px;
}

.shaving-text p{
    color:#555;
    line-height:2;
    margin-bottom:20px;
}

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

.message{
    background:#8ea084;
    color:#fff;
    text-align:center;
}

.message .container{
    max-width:800px;
}

.message-en{
    letter-spacing:8px;
    font-size:13px;
    opacity:.8;
    margin-bottom:20px;
}

.message h2{
    font-family:'Noto Serif JP';
    font-size:46px;
    font-weight:500;
    margin-bottom:35px;
}

.message p{
    font-size:18px;
    line-height:2.2;
    opacity:.95;
}


/* ==========================================
   ACCESS
========================================== */

.access{
    background:#f8f8f8;
}

.access-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.access-info{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.access-info h3{
    font-size:34px;
    margin-bottom:35px;
    font-family:'Noto Serif JP';
}

.access-info dl{
    display:grid;
    grid-template-columns:120px 1fr;
    row-gap:24px;
}

.access-info dt{
    font-weight:700;
    color:#8ea084;
}

.access-info dd{
    color:#555;
    line-height:1.9;
}

.access-info a{
    color:#333;
}

.access-map{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.access-map iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
}


/* ==========================================
   CONTACT
========================================== */

.contact{
    background:#fff;
    text-align:center;
}

.contact-sub{
    color:#8ea084;
    letter-spacing:6px;
    margin-bottom:15px;
    font-size:13px;
}

.contact h2{
    font-family:'Noto Serif JP';
    font-size:38px;
    font-weight:500;
    margin-bottom:40px;
}

.contact-button{
    display:inline-block;
    padding:22px 60px;
    background:#8ea084;
    color:#fff;
    border-radius:999px;
    font-size:24px;
    font-weight:700;
    transition:.35s;
}

.contact-button:hover{
    background:#75856d;
    transform:translateY(-4px);
}


/* ==========================================
   FOOTER
========================================== */

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

footer h2{
    font-size:38px;
    margin-bottom:15px;
    letter-spacing:3px;
}

footer p{
    opacity:.8;
    margin:8px 0;
}

.footer-nav{
    margin:40px 0;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.footer-nav a{
    transition:.3s;
    letter-spacing:2px;
}

.footer-nav a:hover{
    color:#8ea084;
}

.copyright{
    margin-top:30px;
    font-size:13px;
    opacity:.6;
}


/* ==========================================
   FIXED TEL BUTTON
========================================== */

.fixed-tel{

    position:fixed;

    left:50%;

    transform:translateX(-50%);

    bottom:25px;

    background:#8ea084;

    color:#fff;

    padding:18px 42px;

    border-radius:999px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.fixed-tel:hover{

    background:#75856d;

    transform:translateX(-50%) translateY(-3px);

}

/* ==========================================
   Responsive
========================================== */

@media (max-width:900px){

section{
    padding:90px 0;
}

.header-inner{
    height:70px;
}

nav{
    display:none;
}

.hero h1{
    font-size:48px;
}

.hero h2{
    font-size:30px;
}

.lead{
    font-size:16px;
}

.about-wrap,
.shaving-wrap,
.access-wrap{
    grid-template-columns:1fr;
    gap:40px;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-grid img{
    height:220px;
}

.menu-group{
    padding:35px;
}

.menu-item{
    flex-direction:column;
    align-items:flex-start;
}

.access-info{
    padding:30px;
}

.access-info dl{
    grid-template-columns:1fr;
    row-gap:8px;
}

.access-info dt{
    margin-top:18px;
}

.access-map iframe{
    min-height:350px;
}

.contact h2{
    font-size:30px;
}

.message h2{
    font-size:34px;
}

.footer-nav{
    gap:20px;
}

.fixed-tel{
    left:15px;
    right:15px;
    bottom:15px;
    transform:none;
    text-align:center;
    padding:18px;
}

.fixed-tel:hover{
    transform:none;
}

}

@media (max-width:600px){

.hero h1{
    font-size:38px;
}

.hero h2{
    font-size:24px;
}

.since{
    font-size:12px;
    letter-spacing:5px;
}

.section-title h2{
    font-size:30px;
}

.about-text p,
.shaving-text p,
.message p{
    font-size:15px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-grid img{
    height:250px;
}

.menu-group h3{
    font-size:20px;
}

.contact-button{
    width:100%;
    padding:18px;
    font-size:20px;
}

footer h2{
    font-size:30px;
}

}


/* ==========================================
   Animation
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================
   Selection
========================================== */

::selection{

    background:#8ea084;

    color:#fff;

}


/* ==========================================
   Scroll Bar
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:#8ea084;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#708066;

}