@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;

}

img {
    display: block;
    width: 100%;
    height: auto;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .container {
        width: 80%;
        margin: 0 auto;
    }
}


@media screen and (max-width: 800px) {
    .container {
        width: 90%;
        margin: 0 auto;
    }
}

h2,
h3,
h4 {
    font-family: "Times New Roman", 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "MS Ｐ明朝", "MS PMincho", serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 2em;
}

/* ボタン */

.button {
    display: block;
    width: 200px;
    height: 54px;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    outline: none;
}

.button::before,
.button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.button,
.button::before,
.button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border: 2px solid #333;
    color: #333;
    line-height: 50px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
}

.button:hover {
    color: #fff;
}

.button::after {
    top: -100%;
    width: 100%;
    height: 100%;
}

.button:hover::after {
    top: 0;
    background-color: #333;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(48, 48, 48, 0.886);
    color: #fff;
}

/*----------------------------
  * メニュー本体
  *----------------------------*/
.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(85, 85, 85, 0.675);
}

.menu__item {
    width: 100%;
    height: auto;
    padding: .5em 1em;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    box-sizing: border-box;
}


/*----------------------------
  * アニメーション部分
  *----------------------------*/

/* アニメーション前のメニューの状態 */
.menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
    pointer-events: auto;
    opacity: 1;
}

header {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header p img {
    width: 150px;
}

.mv {
    width: 100vw;
    position: relative;
}

@media screen and (max-width: 800px) {
    .mv {
        width: 100vw;
        background-size: cover;
    }
}

.mv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-40%);
    transform: translateY(-40%);
}

.mv img {
    background-size: cover;
    background-image: cover;
    width: 100%;
    height: auto;
}

.mv-logo img {
    width: 20%;
    height: auto;
}

@media screen and (max-width: 800px) {
    .mv-logo {
        visibility: hidden;
    }
}

#top-consept {
    padding-top: 100px;
    padding-bottom: 100px;
    /* background: url(../img/top-consept.png); */
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 800px) {
    #top-consept h2 {
        font-size: 20px;
    }
}


.first-v2 {
    position: relative;
    background: url(../img/top-consept.png);
    background-size: cover;
    height: 0%;
    padding-top: unquote("min(100vh,75%)");
}

@media screen and (max-width: 800px) {
    .first-v2 {
        position: relative;
        background: url(../img/top-consept-sp.png);
        background-size: contain;
        height: 0%;
        padding-top: unquote("min(100vh,75%)");
    }
}


@media screen and (min-width:480px) {
    .br_onoff {
        display: none;
    }
}

@media screen and (max-width:479px) {
    .br_onoff {
        display: block;
    }
}

#top-consept h2,
p {
    text-align: center;
    color: #000;
}

#top-consept img {
    margin: 0 auto;
    width: 150px;
}

.reccomend {
    color: #000;
    line-height: 30px;
}

/* ＊ー＊ー＊ー＊ー＊ー＊ー＊ー＊ー
トップカードメニュー
＊ー＊ー＊ー＊ー＊ー＊ー＊ー＊ー */
.top-menu-wrap {
    display: flex;
    width: 100%;
}

.top-menu-item {
    position: relative;
    width: 100%;
}

.top-menu-item img {
    object-fit: cover;
    width: 100%;
    height: 750px;
}

.top-menu-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 3%;
    left: 7%;
}

.top-menu-inner img {
    width: 100px;
    height: 100px;
}

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

    .top-menu-wrap {
        display: flex;
        flex-direction: column;
    }

    .top-menu-item img {
        object-fit: cover;
        height: 60%;
    }

}

iframe {
    display: block;
}

.gallary-txt {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallary-txt h2,
p {
    text-align: center;
}

.sub-ttl {
    color: rgb(91, 91, 91);
}

.gallary-instagram {
    background-color: rgb(227, 232, 236);
}

.instagram-wrap-1 iframe {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media screen and (min-width: 800px) {
    .instagram-wrap-1 iframe {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOP 調味料
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#seasoning-top{
    background-color:  #E3E8ED;
}

#seasoning-top iframe{
    margin: 0 auto;
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOP お知らせ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.top-news {
    background-color: #E3E8ED;
}

.top-news h2 {
    text-align: center;
}

.top-news p {
    margin-bottom: 30px;
}

.top-news-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}

.top-news-wrap img {
    width: 30%;
    height: auto;
}

.top-news-txt {
    width: 45%;
    text-align: center;
}

.top-news-txt h3 {
    color: #000;
    margin-bottom: 24px;
}

.top-news-txt p {
    color: #000;
}

@media screen and (max-width: 800px) {
    .instagram-wrap iframe {
        padding-bottom: 0px;
    }
}


@media screen and (max-width: 800px) {
    .top-news-wrap img {
        width: 50%;
    }
}

footer {
    background: url(../img/shop-inside.png);
    background-size: cover;
}


.footer-wrap {
    display: flex;
    justify-content: space-around;
}

.map-sp {
    display: none;
}

.footer-txt {
    margin-left: 30px;
    color: #fff;
}

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

    .footer-wrap {
        display: flex;
        justify-content: flex-end;
        margin: 0 auto;
    }

    .footer-txt {
        display: block;
        margin: 0 auto;
    }

    .footer-map {
        margin: 0 auto;
    }
}

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

    .footer-map {
        width: 80%;
        margin: 0 auto;
    }

    .footer-wrap {
        display: flex;
        flex-direction: column;
    }

    .map-pc {
        display: none;
    }

    .map-sp {
        display: block;
    }
}

.footer-txt dt {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Times New Roman", 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "MS Ｐ明朝", "MS PMincho", serif;

}

.footer-txt dd {
    padding-left: 2rem;
    padding-bottom: 2rem;
    padding-top: 16px;
}

@media screen and (max-width: 800px) {
    .footer-txt dl {
        display: flex;
        flex-direction: column;
        text-align: center;

    }

    .footer-txt dd {
        padding-left: 0px;
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .footer-txt dl dt:nth-child(1) {
        padding-top: 30px;
    }

}

footer h2 {
    color: #fff;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

small {
    display: block;
    font-size: 8px;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 15px 0px;
}


.under-background {
    background-color: black;
    color: #fff;
}

.under-mv {
    object-fit: cover;
}

.under-mv img {
    display: block;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

.intro {
    margin-top: 100px;
    margin-bottom: 100px;
}


.intro-wrap {
    display: flex;
    justify-content: flex-start;
    vertical-align: center;
}



.intro-txt {
    writing-mode: vertical-rl;
    text-align: center;
    width: 30%;
    height: 300px;
    vertical-align: middle;
    transform: translateY(10%);
}

.intro-txt p {
    display: block;
    font-family: "Times New Roman", 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "MS Ｐ明朝", "MS PMincho", serif;
    padding-right: 100px;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
}

.intro-img {
    width: 70%;
}

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

    .intro-txt {
        text-align: center;
        width: 100%;
        height: 200px;

        transform: translateY(80%);
        transform: translateX(-20%);
    }

    .intro-wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        vertical-align: center;
    }

    .intro-img {
        width: 100%;
        margin-top: 50px;
    }

}


.intro2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.intro2-txt {
    width: 40%;
}

.intro2-txt p {
    line-height: 30px;
}

.intro2-img {
    width: 40%;
}

@media screen and (max-width: 800px) {
    .intro2:nth-of-type(2n) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .intro2:nth-of-type(2n+1) {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .intro2-img {
        width: 80%;
        margin-top: 50px;
    }

    .intro2-txt {
        width: 80%;
    }


}

.intro-last {
    margin-bottom: 100px;
}

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

    .intro2 {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

}


/* menuページCSS */

/* ーーーーーーーメニューページーーーーーーーー */

.menu-background {
    background-color: #000;
}

.menu-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu-item {
    width: 28%;
    padding-bottom: 30px;
}

.menu-item img {
    margin-bottom: 10px;
    width: 250px;
    height: 200px;
}

.menu-txt {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}

.menu-txt dt {
    font-family: 'Noto Serif JP', serif;
    font-weight: 800;
    font-size: 16px;
}

.menu-txt dd {
    padding-top: 10px;
    font-size: 12px;
}

.menu-txt p {
    padding-top: 10px;
    font-size: 12px;
}

.menu-cap p {
    text-align: start;
    line-height: 2rem;
}

.menu-cap h2 {
    font-size: 4rem;
}

.menu-cap,
h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.menu-cap h2,
h3,
p {
    color: #fff;
}


/* アコーディオン */
.toggle {
    display: none;
}

.Label {
    /*タイトル*/
    padding: 1em;
    display: block;
    color: #fff;
    background: #393939;
    width: 300px;
    margin: 0 auto;
}

.Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.Label,
.contents {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    text-align: center;
}

.contents {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 20px;
    overflow: hidden;
}

.toggle:checked+.Label+.contents {
    /*開閉時*/
    height: auto;
    padding: 20px;
    transition: all .3s;
}

.toggle:checked+.Label::before {
    transform: rotate(-45deg) !important;
}

.menu-cap h2 {
    font-weight: bold;
    font-size: 3rem;
    margin: 100px 0 16px 0;
    color: rgb(175, 157, 0);
}

.menu-cap h3 {
    margin-bottom: 16px;
}

.menu-cap p {
    font-size: 14px;
    margin-bottom: 32px;
}

.accordion {
    margin-top: 24px;
}

@media screen and (max-width:680px) {
    .menu-wrap {
        display: flex;
        flex-direction: column;
    }

    .menu-item {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 3rem;
    }

    .menu-txt {
        display: block;
        width: 100%;
        text-align: center;
        color: #fff;
    }


}

/* ーーーーーーーコンタクトページーーーーーーーー */


.contact-content {
    line-height: 2rem;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-content form {
    width: 80%;
    margin: 0 auto;
}

.contact-inner {
    margin: 0 auto;
}

.contact-input input {
    width: 100%;
}

.contact-input textarea {
    width: 100%;
    height: 100px;
}

.contact-title {
    padding-top: 20px;
    padding-bottom: 10px;
}

.contact-input {
    padding: 0;
    line-height: 28px;
    height: 30px;
}

.contact-btn {
    margin-top: 100px;
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
}


/* ーーーーーーーThanksページーーーーーーーー */

.thanks {
    background-color: #000;
    margin: 60px auto;
    line-height: 30px;
}

.thanks-ttl {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 60px auto;
}

/* ボタン */

/* 011 */
.button011 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #eee;
    overflow: hidden;
}

.button011 a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 500%;
    content: "";
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
    background: #6bb6ff;
    opacity: 0.2;
}

.button011 a:hover:before {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
    transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.seasoninng {
    width: 680px;
    text-align: center;
    line-height: 2rem;
    margin-bottom: 60px;
    margin-top: 60px;
}

.seasoninng h2 {
    margin-bottom: 30px;
}

@media screen and (max-width:680px) {
    .seasoninng {
        width: 70%;
        margin: 0 auto;
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .seasoninng-1 .intro2-img{
        margin-bottom: 60px;
    }

    .seasoninng-1 .intro2-txt h2{
        margin: 0 auto;
        text-align: center;
    }
}