@charset "UTF-8";

html {
    font-size: 100%; /*16px*/
}

body {
    background-color: #E6E2D7;
    color: #000;
    font-family: "Noto Serif JP", serif;
}

a {
    color: #FFF;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.wrapper {
    width: 100%;
    max-width: 1024px;
    padding: 0 20px;
    margin: 0 auto;
}

/*ヘッダー*/
.site-title {
    line-height: 1px;
    margin-left: 60px;
}

.site-title a {
    display: block;
}

.site-title img {
    width: 40px;
}

#header {
    width: 100%;
    height: 100vh;
    background-image: url(img/mainvisual-pc.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 60px 80px;
    margin-bottom: 180px;
    position: relative;
    writing-mode: vertical-rl;    
}

#header .onlinestore {
    background: rgba(255,255,255,0.2);
    padding: 8px;
    position: absolute;
    left: 40px;
    bottom: 30px
}

#header .onlinestore a {
    display: block;
    border: solid 1px #CCC;
    padding: 30px 18px;
}

#header .onlinestore a:hover {
    opacity: 0.7;
}

#nav li {
    margin-left: 25px;
}

/*お知らせ*/
#news {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 180px;
}

#news .section_title {
    font-weight: normal;
    line-height: 1;
    writing-mode: vertical-rl;
}

#news .section_title .en {
    display: block;
    font-size: 0.875rem; /*14px*/
    margin-left: 15px;
}

#news .section_title .ja {
    display: block;
    font-size: 2.25rem; /*36px*/
    letter-spacing: 0.1em; /*36px x 0.1 = 3.6px*/
}

#news .list {
    padding: 80px 100px 0 0;
    writing-mode: vertical-rl;
}

#news .list dt {
    border-right: solid 1px #000;
    font-size: 0.75rem; /*12px*/
    padding: 15px 30px 15px 5px;
}

#news .list dd {
    padding: 15px 0 15px 30px;
}

#news .list dd:last-child {
    border-left: solid 1px #000;
}

/*商品のご紹介*/
.products {
    display: flex;
    margin-bottom: 180px;
}

.products .section_title {
    font-weight: normal;
    line-height: 1;
}

.products .section_title .ja {
    font-size: 2rem; /*32px*/
    letter-spacing: 0.1em; /*3.2px*/
    margin-bottom: 18px;    
}

.products .section_title .en {
    font-size: 0.875rem; /*14px*/
}

.products .img {
    width: 65%;
    margin-top: 100px;
    position: relative;
}

.products .text {
    width: 56%;
    color: #FFF;
    padding: 50px 0;
    text-align: center;
    position: absolute;
    bottom: -20px;
}

#products1 {
    flex-direction: row-reverse;
}

#products1 .section_title {
    margin-left: 20px;
    writing-mode: vertical-lr;
}

#products1 .text {
    background: rgba(249, 233, 6, 0.6);
    left: -20px;
}

#products2 .section_title {
    margin-right: 20px;
    writing-mode: vertical-rl;
}

#products2 .text {
    background: rgba(149, 42, 38, 0.6);
    right: -20px;
}

/*店舗のご案内*/
#shop iframe {
    width: 100%;
    vertical-align: bottom;
}

/*フッター*/
#footer {
    background-color: #000;
    color: #FFF;
    padding: 80px 80px 30px 30px;
}

#footer .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem; /*14px*/
    margin-bottom: 10px;
}

#footer .inner .left,
#footer .inner .right {
    writing-mode: vertical-rl;
}

#footer .inner .logo {
    width: 40px;
    margin-left: 60px;
}

#footer .inner .info {
    line-height: 2;
}

#footer .menu {
    font-size: 1rem; /*16px*/
    margin-right: 60px;
}

#footer .menu li {
    margin-left: 25px;
}

#footer .copyright {
    font-size: 0.625rem; /*10px*/
    text-align: center;
}

/*レスポンシブ*/
@media screen and (max-width: 768px) {
    .wrapper {
        max-width: 100%;
        padding: 0;
    }

    /*ヘッダー*/
    #header {
        background-image: url(img/mainvisual-sp.jpg);
        padding: 20px;
        margin-bottom: 80px;
    }

    #header .onlinestore {
        left: 20px;
        bottom: 20px;
    }

    /*お知らせ*/
    #news {
        margin-bottom: 80px;
    }

    #news .section_title .ja {
        font-size: 1.75rem; /*28px*/
    }

    #news .list {
        padding: 20px 30px 0 0;
    }

    #news .list dt {
        padding: 15px 12px 15px 5px;
    }
    #news .list dt:nth-of-type(n + 4) {
        display: none;
    }
    #news .list dd {
        padding: 15px 0 15px 12px;
    }
    #news .list dd:nth-of-type(3) {
        border-left: solid 1px #000;
    }

    #news .list dd:nth-of-type(n + 4) {
        display: none;
    }

    /*商品のご紹介*/
    .products {
        margin-bottom: 100px;
    }

    .products .section_title .ja {
        font-size: 1.5rem; /*24px*/
    }

    .products .section_title .en {
        display: none;
    }

    .products .img {
        width: 80%;
        margin-top: 70px;
    }

    .products .text {
        width: 64%;
        font-size: 0.875rem; /*14px*/
        padding: 30px 0;
    }

    #products1 .section_title {
        margin-left: 10px;
    }

    #products .section_title {
        margin-right: 10px;
    }
    
    /*フッター*/
    #footer {
        padding: 40px 20px 30px 20px;
    }

    #footer .inner .logo {
        margin-left: 25px;
    }

    #footer .menu li {
        margin-left: 10px;
    }

    .footer .menu {
        font-size: 0.875rem; /*14px*/
        margin-right: 25px;
    }
}
