/* 全体に反映 */
*{
    margin: 0;
    padding: 0;
}

body {
    color: #242424;
    font-family: "Zen Old Mincho", serif; 
}

a {
    text-decoration: none;
}

li{
    list-style: none;
}
.wrapper{
    max-width: 960px;
    margin: 0 auto 100px auto;
}
.detail-bt{
    /* margin-top: 30px; */
    font-size: 30px;
    transition: .3s;
    width: 30%;
    margin: 30px auto 0 auto;
    text-align: center;
}
.detail-bt:hover{
    opacity: .7;
}

/* header */
.header{
    position: fixed;
    height: 70px;
    background-color: #fff;
    opacity: .7;
    display: flex;
    width: 100%;
    padding: 0 10vw;
    justify-content: space-between;
    z-index: 15;
}
.header-icon{
    height: 100%;
    margin-left: 10px;
}
.header-img{
    height: 100%;
}
.header-content{
    display: flex;
    margin: auto;
}
.header-menu{
    a{
        color: #242424;
    }
    font-size: 25px;
    margin: 0 10px; 
    transition: 0.3s;
}
.header-menu:hover{
    border-bottom: #242424 solid 1px;
}

/* ホーム画面 */
#face{
    width: 100%;
    height: 100vh;
    max-height: 71.1vw;
    background-color:#222222;
    /* align-items: center; */
    text-align: center;
    /* justify-content: center; */
    position: relative;
}
.face-content{
    /* margin: auto; */
    /* display: flex; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sakegin-logo{
    /* padding-top: 12vh; */
    /* position: absolute; */
    img{
        height: 50vh;
    }
}
.face-title{
    font-size: 100px;
    padding-top: vh;
    padding-bottom: 40px;
}
.face-sentence{
    font-size: 30px;
}
.glowing-bar {
    margin: auto;
    width: 90vw; /* 左右40vwずつのぼかし + 中心10vw = 合計90vw */
    height: 100vh;
            /* 中心の10vw (#eeeeee) から、
               左右40vwかけて透明 (transparent) になるグラデーション 
            */
    background: linear-gradient(
        to right, 
        transparent 0%, 
        #eeeeee 44.4%, 
        #eeeeee 55.6%, 
        transparent 100%
    );
}

/* about section */
#about{
    background-color: rgb(55, 55, 55);
    padding: 100px 0 50px 0;
}
.about-content{
    color: #fff;
    text-align: center;
}
.about-title{
    font-size: 50px;
    margin-bottom: 20px;
}
.about-sentence{
    font-size: 20px;
    margin-bottom: 50px;
}
.about-imgs{
    justify-content: space-between;
    display: flex;
    img{
        width: 31%;
    }
}
.about-d{
    color: #fff;
}
.about-d:hover{
    border-bottom: #fff 1px solid;
}

/* news section */
#news{
    padding: 100px 0;
    align-items: center;
    justify-content: center;
}
.news-hl{
    font-size: 70px;
    text-align: center;
    margin-bottom: 40px;
}
.news-content{
    display: flex;
    /* justify-content: space-between; */
    border-bottom: #242424 2px solid;
    margin-bottom: 25px;

}
.news-img{
    width: 230px;
    height: 230px;
    object-fit: cover;
    margin-right: 50px;
    img{
        width: 100%;
    }
}
.news-p{
    padding-top: 10px;
}
.news-date{
    color: #0d7200;
    font-size: 20px;
    margin-bottom: 15px;
}
.news-title{
    font-size: 30px;
    font-weight: 600;
    color: #242424;
}
.news-sentence{
    font-size: 22px;
    color: #242424;
}
.news-d{
    color: #242424;
    margin: auto;
}
.news-d:hover{
    border-bottom: #242424 1px solid;
}

/* making section */
.making-title{
    text-align: center;
    font-size: 50px;
    margin-bottom: 30px;
}
.making-con{
    display: flex;
    margin-bottom: 20px;
    img {
        width: 330px;
        height: auto;
    }
}
.making-sentence{
    font-size: 24px;
    margin: auto;
}
.joryu-sentence{
    margin-left: 30px;
}
.botanical-sentence{
    margin-right: 30px;
}

/* 商品一覧 */

/* others */

/* footer */
.footer{
    background-color: #242424;
    color: #fff;
}
.logo{
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: #535353 1px solid;
    img{
        width: 300px;
        /* margin-right: 15px; */
    }
    div{
        margin: auto 0;
        /* font-family: "Yuji Mai", serif; */
        font-size: 40px;
        /* margin-left: 15px; */
    }
}
.contact{
    text-align: center;
    margin-bottom: 20px;
    /* border-bottom: #535353 1px solid; */
}
.footer-links{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: #535353 1px solid;
}
.copylight{
    text-align: center;
    padding: 7px;
}

/* for smart phone */
@media screen and (max-width: 600px){
    .wrapper{
        max-width: 92vw;
        margin: 0 auto 50px auto;
    }

    .detail-bt{
        font-size: 20px;
        width: 50%;
    }
    
    .header{
        display: none;
    }

    #face{
        height: 100vh;
        width: auto;
        max-height: 100vh;
    }
    .face-content{
        width: 95%;
    }
    .face-title{
        font-size: 30px;
    }
    .face-sentence{
        font-size: 20px;
        width: 80%;
        margin: auto;
    }

    .about-title{
        font-size: 7.6vw;
    }

    .news-hl{
        font-size: 35px;
        margin-bottom: 20px;
    }
    .news-content{
        margin-bottom: 20px;
        height: 110px;
    }
    .news-img{
        width: 30%;
    }
    /* .news-p{
        padding-top: 10px;
    } */
    .news-date{
        color: #0d7200;
        font-size: 13px;
        margin-bottom: 3px;
    }
    .news-title{
        font-size: 20px;
        font-weight: 400;
        color: #242424;
    }
    .news-sentence{
        font-size: 15px;
        color: #242424;
    }

    .making-title{
        font-size: 40px;
    }
    .making-sentence{
        font-size: 15px;
    }
    .making-con{
        img{
            width: 30%;
            object-fit: contain;
        }
    }
}