@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/* product.css */

/* header */
.h_top {
    background: none;
}

/* main */

/* main_visual */
#main_visual {
    justify-content: right;
    align-items: flex-end;
}

.main_v img{
    width:100%;
    height:100%;
}

.suv_nav {
    width: 16px;
    padding: 0 10px 0 30px;
}

.suv_nav li {
    font-size: 1rem;
    color: #ada8ae;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

.suv_nav li a {
    display: inline-block;
    color: #ada8ae;
    font-size: 0.875rem;
    letter-spacing: .1em;
}

.suv_nav li::before {
    content: ">";
    display: inline-block;
    padding: 8px 0px;
}

.suv_nav li:last-child {
    margin: 0;
}

.suv_nav li:last-child::before {
    display: none;
}

/* product */
#product {
    padding: 102px 82px 0 172px;
    background: url(../images/product/bg.png) no-repeat;
    background-position: top 0px left 0px;
}

#product h2 {
    font-size: 2.0625rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: center;
    padding-bottom: 145px;
}

/* contents */
#contents{
    padding-bottom:160px;
}

.box {
    padding: 60px 0;
    box-sizing: border-box;
    border-bottom: 2px solid #000;
}

.box:last-of-type{
    border: none;
}

.box .image {
    width: 230px;
    height: 230px;
    padding-right: 130px;
}

.box .image img {
    width: 230px;
    object-fit: cover;
}

.text h3{
    font-size:1.375rem;
    font-weight: 500;
    letter-spacing: .1em;
    padding-bottom: 35px;
}

.margin{
    margin-bottom: 20px;
}

.price{
    font-size:0.875rem;
    font-weight: 500;
    padding-bottom: 35px;
}

.ex{
    font-weight: 500;
}

.annotation{
    color:#ada8ae;
    font-weight: 500;
    padding-top: 60px;
}

/* footer */
footer {
    height: 574px;
    background: url(../images/common/ul_f_bg.png) no-repeat;
    background-position: top 0px left 0px;
}

/* text_box */
#text_box {
    padding: 82px 0 55px 130px;
}

#text_box p {
    color: #ada8ae;
    font-size: .9375rem;
    font-weight: 500;
    line-height: 2em;
}


/* totop */
#totop {
    width: 30px;
    height: 169px;
    position: relative;
    z-index: 999;
    top: 90px;
    left: 65px;
}

.f_logo {
    padding: 95px 92px 114px 0;
    text-align: right;
}

.f_logo p {
    font-size: 2.125rem;
    line-height: 1.5em;
}

small {
    display: block;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: right;
    padding-right: 24px;
}

/* ----------------------------------------------------------------------- */

/* レスポンシブ */

@media screen and (max-width:480px) {

    .wrapper {
        width: 100%;
    }

    /* main_visual */
    #main_visual {
        flex-direction: column-reverse;
    }


    .suv_nav {
        width: 100%;
        padding: 10px 0 0 30px;
        box-sizing: border-box;
    }

    .suv_nav ol {
        display: flex;
        justify-content: left;
        flex-direction: row-reverse;
        box-sizing: border-box;
    }

    .suv_nav li {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
    }

    .suv_nav li::before {
        padding: 0px 8px;
    }

    .main_v {
        height: 200px;
        box-sizing: border-box;
    }

    .main_v img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 56%;
    }

    /* product */
    #product {
        width: 100%;
        padding: 60px 30px 0;
        background-image: none;
        box-sizing: border-box;
    }

    #product h2 {
        padding-bottom: 40px;
    }

    .box{
        flex-direction: column;
    }

    .box .image{
        margin: 0 auto;
        padding:0;
        padding-bottom: 20px;
    }

    .box .image img{
        width:100%;
    }

    .text{
        padding:0 20px;
        box-sizing: border-box;
    }

    .text h3{
        font-size: 1.25rem;
        font-weight: 600;
        text-align: center;
    }

    /* footer */
    #totop {
        width: 30px;
        position: relative;
        top: 0px;
        left: 30px;
        z-index: 999;
    }

    footer {
        width: 100%;
        height: auto;
        background-position: top 140px right 0px;
    }

    .f_logo {
        padding: 120px 40px 50px 0;
        box-sizing: border-box;
    }

    small {
        font-size: 0.75rem;
        text-align: center;
        padding: 0;
        padding-bottom: 5px;
        box-sizing: border-box;
    }

}