*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    background:#050505;

    color:#f5e6c8;

    font-family:

    "Yu Mincho",

    serif;

    overflow-x:hidden;

}

/* HERO */

.access-hero{

    position:relative;

    height:350px;

    background:

    linear-gradient(

    rgba(0,0,0,.6),

    rgba(0,0,0,.7)

    ),

    url("access-bg.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

}

.header{

    position:relative;

    z-index:10;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:40px 80px;

}

.logo{

    font-size:42px;

    color:#e0c07a;

    letter-spacing:3px;

}

.nav{

    display:flex;

    gap:45px;

}

.nav a{

    text-decoration:none;

    color:#f5e6c8;

    font-size:14px;

    letter-spacing:3px;

}

.nav a:hover{

    color:#d8b47b;

}

.hero-title{

    position:relative;

    z-index:10;

    text-align:center;

    margin-top:40px;

}

.hero-title h1{

    font-size:90px;

    font-weight:400;

    color:#d8b47b;

}

.hero-title p{

    margin-top:15px;

    font-size:18px;

    color:#ddd;

}

/* ACCESS */

.access-section{

    max-width:1400px;

    margin:auto;

    padding:100px 60px;

    display:grid;

    grid-template-columns:

    1fr 1.2fr;

    gap:70px;

}

/* LEFT */

.access-left h2{

    font-size:64px;

    font-weight:400;

    line-height:1.6;

    color:#e6c486;

    margin-bottom:60px;

}

.info{

    padding:25px 0;

    border-bottom:

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

}

.info h3{

    color:#d8b47b;

    margin-bottom:10px;

    font-size:22px;

    font-weight:400;

}

.info p{

    color:#ddd;

    line-height:2;

    font-size:18px;

}

/* RIGHT */

.access-right{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.map-box{

    width:100%;

    height:420px;

    border:

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

    overflow:hidden;

}

.shop-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    border:

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

}

/* FOOTER */

footer{

    margin-top:80px;

    background:#080808;

}

.footer-inner{

    text-align:center;

    padding:80px 20px;

}

.footer-inner p{

    font-size:22px;

    margin-bottom:25px;

    color:#ddd;

}

.footer-inner h2{

    font-size:42px;

    font-weight:400;

    color:#d8b47b;

}

/* スマホ */

@media screen and (max-width:768px){

.logo{
    display:none;
}

.header{
    padding:20px 0;
    justify-content:center;
}

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

.nav a{
    display:block;
    text-align:center;
    font-size:13px;
    letter-spacing:2px;
}

.access-hero{
    height:250px;
}

.hero-title{
    margin-top:35px;
}

.hero-title h1{
    font-size:58px;
    letter-spacing:3px;
}

.hero-title p{
    font-size:15px;
}

.access-section{
    grid-template-columns:1fr;
    gap:40px;
    padding:60px 20px;
}

.access-left h2{
    font-size:36px;
    line-height:1.5;
    margin-bottom:35px;
    text-align:center;
}

.info{
    padding:18px 0;
}

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

.info p{
    font-size:15px;
    line-height:1.9;
}

.access-right{
    gap:20px;
}

.map-box{
    height:300px;
}

.shop-image img{
    height:220px;
}

.footer-inner{
    padding:60px 20px;
}

.footer-inner p{
    font-size:16px;
    line-height:1.8;
}

.footer-inner h2{
    font-size:32px;
    line-height:1.5;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}
}