@charset "utf-8";

body {
    /* display: none; */
    font-family: 'ヒラギノ角ゴ ProN', '游ゴシック', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 2;
    font-weight: 200;
    letter-spacing: 0.05em;
}


.wrapper {
    max-width: 1260px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.wrapper2 {
    width: 80%;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.wrapper3 {
    width: 75%;
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;

}

.flex {
    display: flex;
}



h2 {
    text-align: left;
    font-size: 20px;
    font-family: 'ヒラギノ角ゴ ProN', '游ゴシック', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    position: relative;
    margin-top: 100px;
    margin-bottom: 0.5em;
    font-weight: 400;
    margin-left: 15%;
}

.title {
    display: inline-block;
    margin-left: 9em;
    font-family: 'ヒラギノ角ゴ ProN', '游ゴシック', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 2;
}

#up_ymd {
    margin-left: 15%;
    margin-bottom: 50px;
}

#detail {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 80px;
}

.detailUpfile {
    text-align: left;
}

.backORcloseBtn {
    margin-bottom: 50px;
}

/* ページトップボタン */
.pagetop {
    background-image: url(../image/pizza_illust1.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    bottom: 0;
    right: -2%;
}

.pagetop_illust {
    width: 100%;
}

/* スクロールで画像入れ替え */

.pagetop.pagescroll1 {
    background-image: url(../image/pizza_illust2.png);

}


.pagetop.pagescroll2 {
    background-image: url(../image/pizza_illust3.png);

}

.pagetop.pagescroll3 {
    background-image: url(../image/pizza_illust4.png);

}

/* ヘッダー */
.header {
    width: 100%;
    height: 80px;
}

.header_inner {
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.logo_box {
    width: 20%;
    position: absolute;
    top: -5%;
    left: -5%;
    z-index: 1000;
    background-color: #fff;

}

.logo {
    width: 100%;
    padding: 20px;
}

.header_nav li {
    margin-left: 15%;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.header_nav a {
    transition: .5s;
}

.header_nav a:hover {
    opacity: 0.5;
}

.tel {
    line-height: 1.5;
    padding: 0 2em;
    position: relative;
    margin-left: 27%;

}


.tel::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 2.5em;
    background-color: #222;
    position: absolute;
    top: 10%;
    left: 5%;
    transform: rotate(30deg);
}

.tel::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 2.5em;
    background-color: #222;
    position: absolute;
    top: 10%;
    right: 5%;
    transform: rotate(30deg);
}

.tel_text {
    font-size: 12px;
    text-align: center;
}

.tel_number {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* インスタアイコン */

.follow_text {
    position: fixed;
    right: 3%;
    bottom: 33%;
    z-index: 1000;

}

.followus {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 100;
}

.instagram_icon {
    width: 25px;
    position: fixed;
    right: 3%;
    bottom: 28%;
    z-index: 1000;


}

/* フッター */
footer {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_copyright {
    color: #fff;
    background-color: #222;
    width: 100%;
    text-align: center;
    padding: 1em 0;
    margin-top: 1em;
}

/* フェードイン */

.fadein {
    opacity: 0.1;
    transform: translate(0, 80px);
    transition: 1.5s;
}

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}



/* タブレットサイズ */
@media (max-width:1100px) {
    .header_nav {
        display: none;
    }

    .tel {
        display: none;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }



    /* ハンバーガーナビ */

    .humburger_fixed {
        position: fixed;
        top: 20px;
        right: 5%;
        z-index: 3000;

    }

    .nav_toggle {
        display: block;
        position: relative;
        width: 2.5rem;
        height: 2rem;
        margin-top: 10px;
        z-index: 3000;
        transition: 1s;
    }

    .nav_toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: 1s;
    }

    .nav_toggle span:nth-child(1) {
        top: 0;
        width: 100%;
    }

    .nav_toggle span:nth-child(2) {
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: auto;
    }


    .nav_toggle.show span:nth-child(1) {
        transform: translateY(9px) rotate(-45deg);
        width: 100%;


    }

    .nav_toggle.show span:nth-child(2) {
        transform: translateY(-6px) rotate(45deg);

    }

    /* ハンバーガーメニュー内容 */
    .hamburger_nav {
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100%;
        color: #222;
        background: #f4f4f4;
        z-index: 2000;
        transition: 1s;
        padding: 6em;
    }

    .hamburger_nav a {
        transition: .5s;
    }

    .hamburger_nav a:hover {
        opacity: 0.5;


    }

    .hamburger_tel {
        color: #222;
        text-align: left;
        margin-top: 4em;
        font-size: 18px;

    }

    .hamburger_tel_text {
        font-size: 15px;
    }

    .hamburger_tel_number {
        font-family: 'Poppins', sans-serif;
        line-height: 0.5;
        margin-top: 0.5em;
        font-weight: 400;
    }

    .hamburger_nav li {
        margin-bottom: 1.5em;
        text-align: left;
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
    }


}

.show.hamburger_nav {
    right: 0%;
}


/* スマホサイズ */

@media (max-width:750px) {



    body {
        font-size: 14px;
    }

    h2 {
        font-size: 18px;
        margin-left: 5%;
    }

    h3 {
        font-size: 16px;
    }


    .flex {
        flex-direction: column;
    }

    .header {
        position: initial;
        height: 68px;
    }

    .header_inner {
        flex-direction: row;
    }

    .followus {
        display: none;
    }

    .instagram_icon {
        display: none;
    }

    .logo_box {
        width: 30%;
    }

    .logo {
        width: 150%;
        height: auto;
        background-color: #fff;
    }

    .humburger_fixed {
        top: 12.5px
    }

    .hamburger_nav {
        width: 85%;
        right: -100%;
    }

    .sp_insta {
        position: fixed;
        top: 18px;
        right: 80px;
        width: 26px;
        z-index: 90000;
    }

    .sp_insta_icon {
        width: 100%;
    }

    .wrapper2 {
        width: 80%;
    }

    .wrapper3 {
        width: 80%;
    }

    .pagetop {
        display: none;
        background-image: none;
    }

    .pagetop.pagescroll1 {
        background-image: none;

    }


    .pagetop.pagescroll2 {
        background-image: none;

    }

    .pagetop.pagescroll3 {
        background-image: none;

    }

    footer {
        margin-top: 60px;
    }

    .title {
        margin-left: 0 !important;
    }

    #detail {
        width: 90%;
    }

    #up_ymd {
        margin-left: 5%;
    }



}

@media (min-width:1101px) {
    .pc_none {
        display: none;
        width: 0;
    }

}