/* page all */

* {
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    width: 1366px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a,
a:hover,
a:visited {
    color: inherit;
}

.container {
    padding-left: 98px;
    padding-right: 98px;
}

ul {
    list-style: none;
    padding-left: 0;
}

/* header */
.wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-fixed {
    max-width: 1366px;
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 74px;
    justify-content: space-between;
    padding: 0 20px 0 20px;
    letter-spacing: 0.2em;
}

.slide-menu {
    display: flex;
    gap: 50px;
    padding-top: 20px;
}


/* nav hover */

/*ナビゲーションのスタイル*/

.gNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 0;
}

.gNav ul li {
    font-size: 16px;
    font-family: 'Manjari', sans-serif;
}

.gNav ul li a {
    position: relative;
}

/*ホバーエフェクト*/
.gNav ul li a::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333333;
    bottom: -7px;
    left: 0;
    /*横方向0で非表示にする*/
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    /*左を基点にアニメーション*/
    -webkit-transform-origin: left top;
    transform-origin: left top;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gNav ul li a:hover::after {
    /*横方向等倍まで拡大*/
    transform: scale(1, 1);
}

.cart-header img {
    width: 30px;
    height: auto;
}

/* hamburger */
.btn-gNav {
    display: none;
}

.header-fixed .btn-gNav {
    position: fixed;
    top: 25px;
    right: 66px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    align-items: center;
}

.header-fixed .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333333;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.header-fixed .btn-gNav span:nth-child(1) {
    top: 0;
}

.header-fixed .btn-gNav span:nth-child(2) {
    top: 10px;
}

.header-fixed .btn-gNav span:nth-child(3) {
    top: 20px;
}

.header-fixed .btn-gNav.open span:nth-child(1) {
    background: #333333;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-fixed .btn-gNav.open span:nth-child(2),
.header-fixed .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #333333;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.gNav .nav-list {
    display: flex;
    justify-content: space-between;
}

.gNav .nav-list li {
    margin: 0 auto;
}

/* mv */
.img-mv img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: 0% 0%;
}

/* concept */
.concept {
    padding-top: 100px;
    padding-bottom: 100px;
}

.concept-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 64px;
    letter-spacing: 0.2em;
}

.concept-image-box {
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: end;
    padding-top: 70px;
}

.concept-image-1 img {
    width: 30vw;
    height: auto;
    object-fit: cover;
}

.concept-image-2 img {
    width: 20vw;
    height: auto;
    object-fit: cover;
}

.concept-text {
    padding-top: 70px;
    line-height: 32px;
    letter-spacing: 0.1em;
}

/* features */

.features {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #c7b099;
}

.title-box {
    position: relative;
}

.title-small {
    font-family: 'Manjari', sans-serif;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.title-big {
    position: absolute;
    top: -20px;
    font-size: 72px;
    font-weight: bold;
    letter-spacing: 0.2em;
    opacity: 0.1;
}

.features-flex {
    display: flex;
    justify-content: space-between;
    padding-top: 90px;
}

.features-box {
    background-color: #fff;
    width: 24vw;
    padding: 20px;
    border-radius: 20px;
}

.features-image img {
    width: 10vw;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.features-title {
    padding-top: 20px;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    text-align: center;
}

.features-text {
    padding-top: 20px;
    letter-spacing: 0.1em;
}

/* product */
.product {
    padding-top: 100px;
}

.product-box {
    padding-top: 90px;
    display: flex;
    gap: 70px;
    align-items: end;
}

.product-image-box {
    display: flex;
    align-items: end;
    width: 40vw;
}

.product-image-1 img {
    width: 450px;
    min-width: 290px;
    height: auto;
    object-fit: cover;
}

.product-image-2 img {
    width: 110px;
    min-width: 110px;
    height: auto;
    object-fit: cover;
}

.product-title {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.2em;
}

.product-weight {
    padding-top: 10px;
    letter-spacing: 0.1em;
}

.product-price {
    padding-top: 10px;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.2em;
}

.product-text {
    letter-spacing: 0.1em;
    padding-top: 50px;
    padding-bottom: 50px;
    line-height: 32px;
}

.buy {
    width: 30vw;
    height: 60px;
    background-color: #333333;
    color: #fff;
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
}

.buy::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url(../images/image-8.png) no-repeat;
    background-size: contain;
    margin-right: 1rem;
}

.buy:hover {
    background-color: #666666;
    transition: 0.3s;
}

.button-center{
    text-align: center;
}


/* message */
.message {
    padding-top: 150px;
    padding-bottom: 100px;
}

.message-box {
    padding-top: 90px;
    display: flex;
    gap: 70px;
    align-items: start;
}

.message-image img {
    width: 500px;
    height: 800px;
    object-fit: cover;
    object-position: 24% 50%;
}

.message-title {
    font-size: 24px;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.message-text {
    letter-spacing: 0.1em;
    padding-top: 50px;
}

.message-name {
    letter-spacing: 0.1em;
    padding-top: 50px;
}

footer {
    background-color: #c7b099;
    padding-top: 100px;
    padding-bottom: 100px;
}

.logo-footer img {
    width: 300px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.sns-icon-box {
    padding-top: 30px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.sns-icon {
    width: 30px;
    height: auto;
    object-fit: cover;
}

.sns-icon:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.footer-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    letter-spacing: 0.1em;
    font-size: 12px;
}

.footer-list li:hover {
    opacity: 0.5;
    transition: 0.3s;
}

/* ------------------------- レスポンシブ タブレット ------------------------- */

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

    .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }


    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 600px;
        background-color: #fff;
        font-size: 16px;
        box-sizing: border-box;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .slide-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .slide-menu li {
        width: 86%;
        padding: 15px;

    }

    .gNav .slide-menu {
        display: flex;
        height: auto;
    }

    .img-mv img{
        object-position: 40%;
    }

    .concept-title{
        font-size: 26px;
        line-height: 52px;
    }

    .concept-image-box{
        flex-direction: column;
    }

    .concept-image-1 img{
        width:80vw;
        height: auto;
        object-fit: cover;
    }

    .concept-image-1{
        margin: 0 auto;
    }

    .concept-image-2 img{
        width:60vw;
        height: auto;
        object-fit: cover;
    }

    .concept-image-2{
        margin: 0 auto;
    }

    .features-flex{
        flex-direction: column;
        gap:50px;
    }

    .features-box{
        width:60vw;
        margin: 0 auto;
    }

    .product-box{
        flex-direction: column;
        align-items: center;
    }

    .product-image-box{
        justify-content: center;
    }

    .buy{
        width:50vw;
    }

    .message-box{
        flex-direction: column;
    }

    .message-image{
        margin: 0 auto;
    }

}

  /* ------------------------- レスポンシブ SP ------------------------- */

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

    .title-big{
        font-size: 48px;
        top:0px;
    }

    .features-box{
    width: 70vw;
    }

    .product-image-1 img{
        min-width: 240px;
    }

    .buy{
        width: 70vw;
    }

    .message-image img{
        height: 400px;
    }

    .footer-list{
        flex-direction: column;
        text-align: center;
    }



  }