@charset "utf-8";

    .hannari {
        font-family: 'Hannari' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif , 'Noto Serif JP';
    }
    .amiri {
        font-family: 'Amiri', serif;
    }
    .tange {
        font-family: 'Tangerine', cursive;
    }
    .hiragino {
        font-family: 'ヒラギノ角ゴ Pro W2', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    }
    img {
        width: 100%;
        height: auto;
      }
    body {
        background-color:#f8f1e8;
        color: #555;
        line-height: 1.5;
        letter-spacing: 0.08em;
        }
    
    header {
        width: 100%;
        height: 84px;
        border-top: solid 6px #680021;
        align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        padding: .1em 1rem;
        }
    header > h1 {
            width: 200px;
            margin: 0 auto;
          }
        
        .menu-btn {
            position: sticky;
            top: 20px;
            left: 20px;
            display: flex;
            height: 50px;
            width: 50px;
            justify-content: center;
            align-items: center;
            z-index: 90;
            background-color: #f8f1e8;
        }
        .menu-btn span,
        .menu-btn span:before,
        .menu-btn span:after {
            content: '';
            display: block;
            height: 2px;
            width: 25px;
            border-radius: 3px;
            background-color: #680021;
            position: absolute;
        }
        .menu-btn span:before {
            bottom: 8px;
        }
        .menu-btn span:after {
            top: 8px;
        }
        #menu-btn-check:checked ~ .menu-btn span {
            background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
        }
        #menu-btn-check:checked ~ .menu-btn span::before {
            bottom: 0;
            transform: rotate(45deg);
        }
        #menu-btn-check:checked ~ .menu-btn span::after {
            top: 0;
            transform: rotate(-45deg);
        }
        #menu-btn-check {
            display: none;
        }
        .menu-content {
            width: 80%;
            height: 100%;
            position: fixed;
            top: 0;
            right: 100%;
            z-index: 80;
            background-color: rgba(104, 0, 33, 0.9);
            transition: all 0.8s;/*アニメーション設定*/
        }
        .menu-content ul {
            padding: 90px 20px 0;
        }
        .menu-content ul li {
            border-bottom: solid 1px #ffffff;
            list-style: none;
        }
        .menu-content ul li a {
            display: block;
            width: 100%;
            font-size: 15px;
            box-sizing: border-box;
            font-family: 'ヒラギノ角ゴ Pro W2', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
            color:#ffffff;
            text-decoration: none;
            padding: 9px 15px 10px 0;
            position: relative;
        }
        .menu-content ul li a::before {
            content: "";
            width: 7px;
            height: 7px;
            border-top: solid 2px #ffffff;
            border-right: solid 2px #ffffff;
            transform: rotate(45deg);
            position: absolute;
            right: 11px;
            top: 16px;
        }
        #menu-btn-check:checked ~ .menu-content {
            right: 20%;/*メニューを画面内へ*/
        }
    footer {
        width: 100%;
        background-color: #2f3f4e;
        color: #fff;
        font-size: 0.8em;
    }
    footer img {
        width: 179px;
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .footerlogo {
        display: flex;
        align-items: center;
    }
    .info {
        padding: 30px;
        background-image: url(../img/footer_bg.gif);
        background-repeat: no-repeat;
        background-position: right 0 bottom 0;
        background-size: 164px;
    }
    .info p {
        margin-bottom: 10px;
    }
    .info span {
        font-size: 0.7em;
        letter-spacing: 0;
    }
    .icon img {
        width: 40px;
        margin: 10px 5px 0;
    }
    .infotime {
        text-indent: -5.5em;
        padding-left: 5.5em;
    }
    .instagrambox {
        padding: 0 20px 30px;
        text-align: center;
    }
    .instagrambox ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .instagrambox li{
        position: relative;
        width: calc(33.33% - 2px);
        margin: 1px;
    }
    .instagrambox li:before{
        content: "";
        display: block;
        padding-top: 100%;
      }
    .instagrambox img{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        object-fit: cover;
      }
    .copyright {
        width: 100%;
        padding: 5px;
        background-color: #a58c47;
        color: #2f3f4e;
        text-align: center;
    }
@media screen and (min-width: 768px) {

    header {
        width: 100%;
        height: 100px;
        border-top: solid 6px #680021;
        padding: .1em 1rem;
        position: relative;
        }
    header > h1 {
        position: absolute;
        top: 50%;
        left: 30px;
        transform: translate(0%,-50%);
        }
    .menu-btn {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0%,-50%);
        display: flex;
        z-index: 80;
        background-color: transparent;
        transition: none;
    }
    .menu-content ul {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0%,-50%);
        padding: 0 ;
    }
    .menu-content ul li {
        display: inline-block;
        border-bottom: 0;
        list-style: none;
    }
    .menu-content ul li a {
        box-sizing: none;
        color: #680021;
        font-size: 13px;
    }
    .menu-content ul li a:hover {
        color: #c42e5d;
    }
    .menu-content ul li a::before {
        display: none;
    }
    .footerimg {
        display: none;
    }
    footer > div:first-child {
        display: flex;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
    }
    .info {
        padding: 50px 10px 50px 50px;
        background-image: none;
    }
    .info p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    .instagrambox {
        padding: 35px 35px 35px 0;
        width: 50%;
    }
    .copyright {
        text-align: center;
    }

}