/*全てのページに適用  */
html {
    font-size: 17px;
    font-family: sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 0 0 0;
}

p,
li,
td {
    line-height: 1.7;
}

body {
    color: #5c2c05;
}

a:link {
    color: #f8963b;
    text-decoration: none;
}

a:visited {
    color: #f8963b;
    text-decoration: none;
}

a:hover {
    color: #f8963b;
    text-decoration: underline;
}

a:active {
    color: #f8963b;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

/* 全てのページに適用　ヘッダー */
.header {
    padding-top: 60px;
    background-image: url(images/logo2.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 20px 0px 0px 0px;
}

.logo {
    text-align: center;
}

/*PC表示のナビメニュー*/
nav.navi-sp {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.navi01 {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

.navi01 a {
    text-decoration: none;
    color: #f8963b;
    padding: 5px 10px;
    margin: 0 10px;
    transition: 0.3s;
}

.navi01 a:hover {
    background: #f6f6f6;
}

.nav ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav a:link {
    color: #f8963b;
}

.nav a:visited {
    color: #f8963b;
}

.nav a:hover {
    text-decoration: none;
}

.nav a:active {
    text-decoration: none;
}

/* 全てのページに適用　ヒーロー */
.hero {
    width: 100vw;
    height: auto;
    background-image: url("images/hero-index.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* 全てのページに適用　メイン */
main {
    margin: 90px auto 90px auto;
    max-width: 1000px;
}

main h2 {
    margin: 60px 0 20px 0;
    border-bottom: 2px solid #f8963b;
    padding: 0 0 5px 0;
    color: #f8963b;
    font-size: 1.5rem;
}

/* 全てのページに適用　フッター */


.footer-bottom {
    background-color: #f8963b;
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFF;
    margin: 0;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    color: #f8963b;
    text-decoration: none;
    font-size: 18px;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.gotop {
    text-align: center;
}

.copyright {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f8963b;
    color: #FFFFFF;
    text-align: center;
}

/*個別のスタイル  */
/* index.html */

.illust img {
    text-align: left;
    width: 200px;
    margin-left: 10px;
}

.shop-info {
    border-collapse: collapse;
}

.shop-info th,
.shop-info td {
    border: 1px solid #DBDBDB;
    padding: 20px;
}

.shop-info th {
    width: 112px;
    text-align: left;
    vertical-align: top;
}

.moji {
    display: flex;
    align-items: center;
    font-size: 25px;
    white-space: nowrap;
}


/* menu.html */
.items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.me {
    font-size: 25px;
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px solid #5c2c05;
    padding-bottom: 8px;
}

/* access.html */
.map img {
    display: block;
    margin: 0 auto;
}

/* contact.html */
form {
    margin: 0 auto;
    max-width: 640px;
}

input[type="text"],
textarea {
    padding: 6px;
    width: 100%;
    font-size: 1.5rem;
}

textarea {
    height: 140px;
}

.submit {
    text-align: center;
}

input[type="submit"] {
    border: none;
    padding: 20px;
    width: 200px;
    background-color: #f8963b;
    color: #FFFFFF;
    font-size: 1rem;
}

/* トップへ戻る */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 30px;

}

#page_top img {
    width: 60px;
    height: auto;
}

/*Slick slider*/
.sliderArea {
    position: relative;
    width: 100%;
}

.sliderArea ul {
    list-style: none;
    padding: 0;
}

.slider img {
    width: 100%;
    height: 70vh;
    object-fit: cover;

}

.slick-prev {
    left: 20px !important;
}

.slick-next {
    right: 20px !important;
}

.slick-prev,
.slick-next {
    z-index: 1;
    text-shadow: 1px 1px 5px #000;
}

.slick-prev:before {
    content: '<';
    font-size: 30px !important;
    color: #fff !important;
}

.slick-next:before {
    content: '>';
    font-size: 30px !important;
    color: #fff !important;
}

/* モバイル対応 */
@media (max-width: 767px) {
    .nav ul {
        flex-wrap: wrap;
        gap: 20px;
    }


    main {
        padding: 0 4%;
    }

    /* index.html */
    .hero.index {
        padding: 28vh 0;
    }

    /* menu.html */
    .items {
        grid-template-columns: 1fr 1fr;
    }

    .moji {
        display: flex;
        white-space: normal;
        text-align: left;
    }

    .illust img {
        width: 360px;
        margin-left: 10px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 20px;
    }

    /*　ハンバーガーメニューボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 110;
        right: 15px;
        top: 17px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
        background: #fffaee;
        border-radius: 5px;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #e9984c;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビメニュー展開時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 20px;
        left: 6px;
        background: #f8963b;
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 20px;
        background: #f8963b;
        transform: rotate(45deg);
    }

    /* メニュー展開時　*/
    nav.navi-sp {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        color: #e9984c;
        background: rgba(255, 123, 29, 0.7);
        text-align: center;
        width: 100%;
        height: auto;
        opacity: 0;
        visibility: hidden;
        padding: 20px 0;
        transition: 0.3s;
    }

    nav.navi-sp ul {
        display: flex;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: space-between;
    }

    nav.navi-sp ul li a {
        display: block;
        color: #ffffff;
        padding: 10px 0;
        margin: 5px 0;
        text-decoration: none;
    }



    /* クリックでナビメニュー開閉 */
    nav.navi-sp.active {
        opacity: 100;
        visibility: visible;
    }
}