@charset "UTF-8";

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Shippori+Mincho+B1:wght@700&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

/* 基本設定 */
body {
    background: #ecc69d;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: #4f2900;
}

/* リンク */
a {
    text-decoration: none;
    color: #000;
}

section {
    margin: 1.5em auto;
    padding: 2em;
    background-color: #fff;
}

section h2 {
    position: relative;
    margin-bottom: 0.5em;
    font-family: 'Shippori Mincho B1', serif;
    font-size: 3em;
}

#aboutus h2 {
    text-indent: -0.2em;
}

section h2::before {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 0;
    width: 130px;
    height: 3px;
    background-color: #4f2900;
}

section p {
    margin-bottom: 0.5em;
}

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

#menu ul {
    margin-bottom: 0.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

#menu ul li {
    position: relative;
}

#menu ul li::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: thin dashed #888;
}

#menu ul li {
    display: flex;
    justify-content: space-between;
}

#menu ul li span {
    position: relative;
    background-color: #fff;
}

#menu ul li span:not(.price) {
    padding-right: 0.5em;
}

#menu ul li span.price {
    padding-left: 0.5em;
}

#menu mark {
    background: linear-gradient(transparent 0, transparent 70%, #efefef 30%, #efefef 100%);
}

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

.wrap .container {
    margin-bottom: 1em;
    flex-basis: 45%;
}

.wrap .container img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.wrap .container span {
    font-weight: bold;
    color: #fc5600;
}

.pagelink {
    margin: 0.5em auto;
    text-align: center;
}

.boxlink {
    margin: 0.5em auto;
    text-align: center;
}

.pagelink a,
.boxlink a {
    position: relative;
    display: inline-block;
    padding: 0.3em 1em;
    background-color: #4f2900;
    border: thin solid #4f2900;
    color: #fff;
    transition: background .5s;
}

.boxlink a::before {
    position: absolute;
    display: block;
    content: '';
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    border: thin solid #4f2900;
}

.pagelink a:hover,
.boxlink a:hover {
    background-color: #fff;
    color: #4f2900;
}

.right {
    text-align: right;
}

.instagram-gallery {
    max-width: 640px;
    margin: auto;
}

.instagram-gallery__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    list-style-type: none;
}

.instagram-gallery__item {
    display: block;
    min-width: calc(33.333% - 0.5em);
    width: calc(33.333% - 0.5em);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 1em;
}

.instagram-gallery__item:before {
    content: "";
    display: block;
    padding-top: 100%;

}

.instagram-gallery__item a {
    display: inline-block;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.instagram-gallery__item img {
    display: block;
    min-width: 33.333%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

footer {
    background-color: #4f2900;
}

footer span {
    color: #fff;
}

.footer a[href^="tel:"] {
    color: #fc5600;
}

.map {
    height: 300px;
    text-align: center;
    background-color: #000;
    font-size: 3em;
    color: #fff;
}

.footer {
    padding: 2em 0;
    display: flex;
    justify-content: space-around;
}

.niwako {
    flex-basis: 180px;
    height: 180px;
    background: url('niwako.png') #fff center/70% no-repeat;
}

.location {
    flex-basis: calc(100% - 200px);
}

.location img {
    width: 150px;
    height: auto;
}

.location p {
    color: #fff;
}

.location p + p {
    font-size: 12px;
}

/* 横幅1023px以下で読み込む */
@media screen and (max-width:1023px) {
    .header_pc {
        display: none;
    }

    .header_sp {
        position: relative;
        margin: 0 auto 3em;
        width: 100%;
        min-height: 75vh;
        background: url('headerimage.jpg') center top/cover;
    }

    .header_sp_container {
        position: absolute;
        bottom: 3%;
        right: 0;
        padding: 1em 0 1em 1em;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 80%;
        background: #4f2900;
    }

    .logo {
        flex-basis: 40%;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    .copy {
        font-family: 'Shippori Mincho B1', serif;
        text-align: center;
        color: #fff
    }

    #NavToggle {
        display: block;
        position: fixed;
        top: 5%;
        right: 5%;
        z-index: 200;
        padding: 0.8em;
        background: #4f2900;
        box-shadow: 0 0 5px #fff;
    }

    #NavToggle div {
        position: relative;
    }

    #NavToggle span {
        line-height: 1;
        color: #fff;
    }

    .open nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }


    /* メニュー表示 */

    .open nav {
        opacity: 1;
        pointer-events: all;
    }

    .sp_nav {
        display: block;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 100;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        pointer-events: none;
        transition: 500ms;

    }

    /* メニュー表示ここまで */
    .sp_nav ul::before {
        position: absolute;
        display: block;
        content: '';
        top: -250px;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        height: 280px;
        background: url('logo.png') center/100% no-repeat;
    }

    .sp_nav ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        list-style-type: none;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-around;
        list-style-type: none;
    }

    .sp_nav li {
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        line-height: 1;
        margin: 0 1em;
        border-top: 3px solid #fff;
        padding-top: 0.5em;
    }

    .sp_nav li span {
        font-size: 12px;
        color: #aca9a7;
    }

    .sp_nav li a {
        font-family: 'Shippori Mincho B1', serif;
        font-size: 1.3em;
        color: #fff;
    }

    #menu ul li {
        flex-basis: 48%;
    }


    .instagram-gallery__item {
        display: block;
        min-width: calc(50% - 0.5em);
        width: calc(50% - 0.5em);
    }

}

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {
    .copy {
        font-size: 2em;
    }
}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {
    body {
        font-size: 15px;
    }

    #Navigation,
    .header_sp {
        display: none;
    }

    .header_pc {
        position: relative;
        margin: 3em auto;
        width: 90%;
        max-width: 1200px;
        min-height: 85vh;
        background: url('headerimage.jpg') center bottom/cover;
    }

    .header_pc_nav {
        position: absolute;
        bottom: 3%;
        right: -5%;
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1.5em;
        background: #4f2900;
    }

    .header_pc_nav_container img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 0.5em;
    }

    .header_pc_nav_container {
        flex-basis: 50%;
        font-family: 'Shippori Mincho B1', serif;
        text-align: center;
        color: #fff
    }

    .header_pc_nav_list {
        flex-basis: 50%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-around;
        list-style-type: none;
    }

    .header_pc_nav_list li {
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        line-height: 1;
        border-top: 3px solid #fff;
        padding-top: 0.5em;
    }

    .header_pc_nav_list li span {
        font-size: 12px;
        color: #aca9a7;
    }

    .header_pc_nav_list li a {
        font-family: 'Shippori Mincho B1', serif;
        font-size: 1.3em;
        color: #fff;
        transition: color .5s;
    }

    .header_pc_nav_list li a:hover {
        color: #fc5600;
    }

    section {
        width: 90%;
        max-width: 1200px;
    }

    #aboutus {
        display: flex;
    }

    #aboutus p {
        font-size: 1.3em;
    }

    #aboutus .section_container {
        flex-basis: 50%;
    }

    #menu ul li {
        flex-basis: 30%;
    }

    .wrap .container {
        flex-basis: 24%;
    }

    .boxlink a {
        font-size: 1.5em;
    }

    .footer {
        margin: 0 auto;
        max-width: 1000px;
    }

    .niwako {
        flex-basis: 300px;
        height: 300px;
    }

    .location {
        flex-basis: calc(100% - 400px);
    }

    .location img {
        width: 380px;
        height: auto;
    }

    .location p {
        font-size: 20px;
        color: #fff;
    }

    .location p + p {
        font-size: 15px;
    }
}

/* 横幅1200px以上で読み込む */
@media screen and (min-width:1200px) {
    body {
        font-size: 16px;
    }
}
