@charset "utf-8";


/*-------------------------------------------------------------------------

全端末（PC・タブレット・スマホ）共通設定

-----------------------------------------------------------------------------*/



/*全体の設定
---------------------------------------------------------------------------*/
html,
body,
#container {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    color: #4B0F0F;
    font-family: "Noto Sans JP", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*フォント種類*/
    font-size: 16px;
    /*文字サイズ*/
    line-height: 1.8;
    /*行間*/
    background: #fff;
    -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
    text-wrap: balance;
    word-break: auto-phrase;
}

ul {
    list-style-type: none;
}

ol {
    padding-left: 40px;
    padding-bottom: 15px;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table {
    width: 100%;
    border: 1px solid #422a18;
    border-collapse: separate;
    /*collapseから変更*/
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    font-size: 100%;
}

iframe {
    width: 100%;
}

/*横幅と余白の指定
----------------------------------------------------------------------------*/
.inner {
    margin: 0 auto;
    max-width: 1400px;
    padding: 40px 3%;
}

/*h2 タイトル
----------------------------------------------------------------------------*/
h2 {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: bold;
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

h2.title_white {
    color: #fff;
}

/*h3 タイトル
----------------------------------------------------------------------------*/
h3 {
    font-weight: bold;
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

h3.title_white {
    color: #fff;
}

h3.nami_kazari {
    display: flex;
    justify-content: center;
}

h3.nami_kazari:before {
    content: url('../images/nami_kazari.png');
    margin-right: 12px;
    /*画像右の余白*/
}

h3.nami_kazari:after {
    content: url('../images/nami_kazari.png');
    margin-left: 12px;
    /*画像左の余白*/
}

/*h4 タイトル
----------------------------------------------------------------------------*/
h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 16px;
}

/*改行
----------------------------------------------------------------------------*/
/*PCでは改行しない*/
.sp_br {
    display: none;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #422a18;
    transition: 0.4s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/*PCでは電話発信を無効*/
a[href^="tel:"] {
    pointer-events: none;
}

/*フェードイン01 リロード時に発動
---------------------------------------------------------------------------*/
/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* 遅延時間を決める */
.delay-time5 {
    animation-delay: 0.5s;
}

.delay-time6 {
    animation-delay: 0.6s;
}


/*フェードイン02 スクロール時に発動
---------------------------------------------------------------------------*/
/*左から出現*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*右から出現*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* ページトップへ戻るボタン
----------------------------------------------------------- */
#pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: -60px;
    background: rgba(85, 85, 85, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* アイコンの設定
----------------------------------------------------------- */
/*TEL*/
.tel_icon {
    content: '';
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 22 22'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 8px;
}

/*Instagram*/
.ig_icon {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 26 26'%3E%3Cpath d='M16.98 0a6.9 6.9 0 0 1 5.08 1.98A6.94 6.94 0 0 1 24 7.02v9.96c0 2.08-.68 3.87-1.98 5.13A7.14 7.14 0 0 1 16.94 24H7.06a7.06 7.06 0 0 1-5.03-1.89A6.96 6.96 0 0 1 0 16.94V7.02C0 2.8 2.8 0 7.02 0h9.96zm.05 2.23H7.06c-1.45 0-2.7.43-3.53 1.25a4.82 4.82 0 0 0-1.3 3.54v9.92c0 1.5.43 2.7 1.3 3.58a5 5 0 0 0 3.53 1.25h9.88a5 5 0 0 0 3.53-1.25 4.73 4.73 0 0 0 1.4-3.54V7.02a5 5 0 0 0-1.3-3.49 4.82 4.82 0 0 0-3.54-1.3zM12 5.76c3.39 0 6.2 2.8 6.2 6.2a6.2 6.2 0 0 1-12.4 0 6.2 6.2 0 0 1 6.2-6.2zm0 2.22a3.99 3.99 0 0 0-3.97 3.97A3.99 3.99 0 0 0 12 15.92a3.99 3.99 0 0 0 3.97-3.97A3.99 3.99 0 0 0 12 7.98zm6.44-3.77a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
}

/*別窓*/
.window_icon {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%2388BDBA' fill='none' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M18 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5M15 3h6v6M10 14L20.2 3.8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 8px;
}


/* 横並びの設定
----------------------------------------------------------- */
.ds_flex {
    display: flex;
    flex-wrap: wrap;
}

/*右端に合わせる(主にheaderで使用)*/
.ds_flex_end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

/* ボタン
----------------------------------------------------------- */
.btArea {
    display: block;
}

/*01*/
.btArea .btn01 {
    font-weight: bold;
    padding: 6px 16px;
    border: solid #fff 2px;
    color: #fff;
    display: flex;
    width: 200px;
    justify-content: center;
    align-items: center;
}

/*02*/
.btArea .btn02 {
    font-weight: bold;
    padding: 12px 16px;
    background-color: #78B2AC;
    color: #fff;
    display: flex;
    width: 240px;
    justify-content: center;
    align-items: center;
    margin: 24px auto;
    border-radius: 16px;
}

.btArea .btn02:hover {
    background-color: #4B0F0F;
}



/*-------------------------------------------------------------------------

header

-----------------------------------------------------------------------------*/
header {
    background-color: #88BDBA;
    padding: 8px 5%;
    position: fixed;
    width: 90%;
    top: 0px;
    left: 0;
    z-index: 9999;
    border-bottom: 1px #fff solid;
}

/* ヘッダーメニュー
----------------------------------------------------------- */
header .menuList li {
    margin: 0 24px;
}

header .menuList a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

/*マウスオーバー時に拡大*/
header .menuList a:hover {
    transform: scale(1.1);
}

/*TEL*/
header .menuList .tel a {
    font-size: 32px;
}


/*-------------------------------------------------------------------------

メイン画像

-----------------------------------------------------------------------------*/
/*背景画像*/
#home #mainvisual {
    background-image: url(../images/main_bk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 1000px;
    width: 100%;
    background-attachment: fixed;
    position: relative;
    background-position: center;
    overflow: hidden;
}

/*背景画像 ピザ*/
#home #mainvisual #main-img01 {
    background-image: url(../images/mainimg_pizza.png);
    width: 32.5vw;
    height: 21.5vw;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    min-width: 540px;
    min-height: 355px;
}

/*背景画像 金目鯛*/
#home #mainvisual #main-img02 {
    background-image: url(../images/mainimg_tai.png);
    width: 25vw;
    height: 25vw;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    min-width: 480px;
    min-height: 480px;
}

/*背景画像 アボカド*/
#home #mainvisual #main-img03 {
    background-image: url(../images/mainimg_avocado.png);
    width: 21vw;
    height: 20vw;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 3%;
    bottom: 50px;
    min-width: 480px;
    min-height: 460px;
}

/*背景画像 おでん*/
#home #mainvisual #main-img04 {
    background-image: url(../images/mainimg_oden.png);
    width: 29vw;
    height: 21vw;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 2%;
    bottom: 20px;
    min-width: 490px;
    min-height: 380px;
}



/*ロゴ*/
#home #mainvisual #main-logo {
    text-align: center;
    position: absolute;
    left: 0;
    top: 47%;
    transform: translate(0, -50%);
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 9997;
    max-width: 53vh;
}


/*-------------------------------------------------------------------------

コンセプト

-----------------------------------------------------------------------------*/
/*上部のなみなみ背景*/
#home .conceptArea::before {
    content: "";
    display: block;
    background-image: url(../images/wave_bk.png);
    background-repeat: repeat;
    background-size: contain;
    width: 100%;
    height: 64px;
    position: absolute;
    left: 0;
    top: -64px;
}

/*背景に波のイラストを配置*/
#home .conceptArea {
    background: url(../images/nami_bk.png);
    background-repeat: space;
    background-color: #88BDBA;
    background-size: 730px;
    padding-bottom: 0px;
    position: relative;
    padding-top: 40px;
}

#home .conceptArea .conceptAreaIN {
    overflow: hidden;
}

/*タイトル*/
#home .conceptArea h2 {
    margin-bottom: 140px;
}

/*テキストエリア*/
.box01 .txtArea {
    background: #fff9f0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.box01 .txtArea .kakomi_waku {
    border: solid 1px #4B0F0F;
    padding: 3% 1%;
}

.box01 .txtArea h3 span {
    display: block;
    font-size: 18px;
}

.box01 {
    width: 100%;
    margin: 0px auto 80px auto;
    display: flex;
    align-items: center;
}

.box01 figure {
    position: absolute;
}

/*上から1番目(コンセプト紹介)のみ適用*/
.box01:nth-of-type(1) figure {
    width: 54%;
}

.box01:nth-of-type(1) .txtArea {
    padding: 7% 2% 7% 56%;
    text-align: center;
}

/*上から2番目(Dinner)のみ枠を適用*/
.box01:nth-of-type(2) figure {
    width: 53%;
    right: 0;
}

.box01:nth-of-type(2) .txtArea {
    padding: 7% 52% 6% 4%;
    text-align: center;
}

/*上から3番目(ランチ)のみ枠を適用*/
.box01:nth-of-type(3) .txtArea {
    padding: 2% 2% 2% 55%;
    text-align: center;
}

.box01:nth-of-type(3) figure {
    width: 53%;

}

/*-------------------------------------------------------------------------

食べログ・インスタ ボタン

-----------------------------------------------------------------------------*/
/*背景に波のイラストを配置*/
#home .extsiteArea {
    background: url(../images/nami_bk.png);
    background-repeat: space;
    padding-bottom: 120px;
    background-color: #88BDBA;
    background-size: 730px;
}

/*丸型ボタンの調整*/
#home .extsiteArea .extsiteList {
    justify-content: center;
}

#home .extsiteArea .extsiteList li {
    margin: 2.5%;
    width: 45%;
    max-width: 220px;
}

#home .extsiteArea .extsiteList li img {
    transition: 0.4s;
}

#home .extsiteArea .extsiteList li img:hover {
    transform: scale(1.1);
}

/*-------------------------------------------------------------------------

お知らせ

-----------------------------------------------------------------------------*/
/*一覧*/
#home .newsArea {
    background-color: #FFF9F0;
    padding: 80px 0 20px 0;
}

#home .newsArea .inner {
    max-width: 980px;
    margin: auto;
}

#home .newsArea .newsList li {
    border-bottom: dashed 1px #707070;
    padding: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-end;
    transition: 0.8s;
}

#home .newsArea .newsList li:hover {
    background-color: #e7f1f1;
    transition: 0.8s;
    transform: translate(10px, 0);
}

/*リンク*/
#home .newsArea .newsList li a {
    display: block;
    width: 100%;
}

/*日付*/
#home .newsArea .newsList li span {
    display: block;
    margin-bottom: 8px;
}

/*-------------------------------------------------------------------------

店舗情報

-----------------------------------------------------------------------------*/
#home .shop_infoArea {
    background-color: #FFF9F0;
    padding: 80px 0 20px 0;
}

#home .shop_infoArea .inner {
    max-width: 980px;
    margin: auto;
}

#home .shop_infoArea .mapArea {
    width: 45%;
    margin-right: 3%;
}

#home .shop_infoArea .txtArea {
    width: 52%;
}

#home .shop_infoArea .txtArea p {
    margin-bottom: 16px;
}

/*問い合わせ・予約*/
#home .shop_contact {
    justify-content: center;
    padding: 80px 0 40px 0;
}

#home .shop_contact .btArea {
    margin: 0 2.5%;
    width: 45%;
}

#home .shop_contact .btArea .btn02 {
    width: 100%;
    padding: 24px 0;
    font-size: 22px;
}

/*-------------------------------------------------------------------------

footer

-----------------------------------------------------------------------------*/
footer {
    background-color: #78b2ac;
    padding: 16px;
}

footer .copyright {
    text-align: center;
    color: #fff;
}


/*-------------------------------------------------------------------------

1200px以下の指定

-----------------------------------------------------------------------------*/
@media screen and (max-width:1200px) {

    /*-------------------------------------------------------------------------
header
-----------------------------------------------------------------------------*/
    header {
        padding: 2px 2%;
        width: 96%;
    }

    header .menuList a {
        font-size: 16px;
    }

    /*-------------------------------------------------------------------------
メイン画像
-----------------------------------------------------------------------------*/
    /*ロゴ*/
    #home #mainvisual #main-logo {
        width: 500px;
        top: 46%;
        transform: translate(0, -50%);
    }

    /*背景画像 ピザ*/
    #home #mainvisual #main-img01 {
        min-width: 47vw;
        min-height: 31vw;
    }

    /*背景画像 金目鯛*/
    #home #mainvisual #main-img02 {
        min-width: 36vw;
        min-height: 42vw;
    }

    /*背景画像 アボカド*/
    #home #mainvisual #main-img03 {
        min-width: 39vw;
        min-height: 32vw;
        bottom: 0;
    }

    /*背景画像 おでん*/
    #home #mainvisual #main-img04 {
        min-width: 39vw;
        min-height: 36vw;
        right: 0;
        bottom: 0;

    }

    /*-------------------------------------------------------------------------
コンセプト
-----------------------------------------------------------------------------*/
    /*上から1番目(コンセプト)のみ適用*/
    .box01:nth-of-type(1) figure {
        width: 47%;
    }

    .box01:nth-of-type(1) .txtArea {
        padding: 5% 2% 5% 49%;
    }

    /*上から2番目(ディナー)のみ適用*/
    .box01:nth-of-type(2) figure {
        width: 53%;
    }

    .box01:nth-of-type(2) .txtArea {
        padding: 5% 53% 4% 2%;
    }

    /*上から3番目(ランチ)のみ適用*/
    .box01:nth-of-type(3) .txtArea {
        padding: 2% 2% 2% 49%;
    }

    .box01 .txtArea .kakomi_waku {
        padding: 3% 4%;
    }

    .box01:nth-of-type(3) figure {
        width: 47%;
    }

}

/*-------------------------------------------------------------------------

800px以下の指定

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

    /*-------------------------------------------------------------------------
    共通設定
-----------------------------------------------------------------------------*/
    /*h3 タイトル*/
    h3 {
        font-size: 22px;
    }

    /*h2 タイトル*/
    h2 {
        font-size: 25px;
    }

    .inner {
        padding: 40px 5%;
    }

    /*-------------------------------------------------------------------------
改行
-----------------------------------------------------------------------------*/
    /*PCでは改行しない*/
    .sp_br {
        display: block;
    }

    /*-------------------------------------------------------------------------
header
-----------------------------------------------------------------------------*/
    /*余白の調整*/
    header {
        padding: 8px 2%;
    }

    /*区切り線を追加(縦)*/
    header .menuList li {
        margin: 0;
        border-left: 1px solid #fff;
        padding: 0 4%;
    }

    /*ボタンの調整*/
    header .btArea .btn01 {
        width: auto;
        padding: 0;
        border: 0;
    }

    /*TEL*/
    header .menuList .tel a {
        font-size: 16px;
    }

    /*-------------------------------------------------------------------------
メイン画像
-----------------------------------------------------------------------------*/
    #home #mainvisual {
        min-height: inherit;
    }

    /*ロゴ*/
    #home #mainvisual #main-logo {
        width: 330px;
        top: 50%;
    }

    /*背景画像 ピザ*/
    #home #mainvisual #main-img01 {
        min-width: 62vw;
        min-height: 41vw;
        left: -10%;
    }

    /*背景画像 金目鯛*/
    #home #mainvisual #main-img02 {
        min-width: 41vw;
        min-height: 48vw;
    }

    /*背景画像 アボカド*/
    #home #mainvisual #main-img03 {
        min-width: 43vw;
        min-height: 41vw;
        bottom: 10%;
    }

    /*背景画像 おでん*/
    #home #mainvisual #main-img04 {
        min-width: 49vw;
        min-height: 39vw;
        right: 0;
        bottom: 10%;

    }

    /*-------------------------------------------------------------------------
店舗情報
-----------------------------------------------------------------------------*/
    /*問い合わせ・予約*/
    #home .shop_contact .btArea .btn02 {

        font-size: 18px;
    }

    /*-------------------------------------------------------------------------
食べログ・インスタ ボタン
-----------------------------------------------------------------------------*/
    /*背景に波イラストの調整*/
    #home .extsiteArea {
        background-size: 460px;
    }

    /*-------------------------------------------------------------------------
店舗情報
-----------------------------------------------------------------------------*/
    #home .shop_infoArea .mapArea {
        width: 80%;
        margin: 24px auto 24px auto;
        order: 2;
    }

    #home .shop_infoArea .txtArea {
        width: 95%;
        margin: auto;
    }

    #home .shop_contact .ds_flex {
        display: block;
    }

    #home .shop_contact .btArea {
        margin: 2.5% 2.5%;
        width: 95%;
    }

    /*-------------------------------------------------------------------------
コンセプト
-----------------------------------------------------------------------------*/
    #home .conceptArea h2 {
        margin-bottom: 64px;
    }

    /*背景に波イラストの調整*/
    #home .conceptArea {
        background-size: 460px;
    }

    /*共通*/
    .box01 {
        display: block;
    }

    .box01 .txtArea {
        width: auto;
    }

    .box01 figure {
        position: inherit;
    }

    .box01 .txtArea .kakomi_waku {
        padding: 20px;
    }

    /*上から1番目(コンセプト)のみ適用*/
    .box01:nth-of-type(1) figure {
        margin: 0 auto -120px 0;
        width: 100%;
    }

    .box01:nth-of-type(1) .txtArea {
        padding: 150px 20px 30px 20px;
    }

    .box01:nth-of-type(1) figure img {
        height: auto;
    }

    /*上から2番目(ディナー)のみ適用*/
    .box01:nth-of-type(2) figure {
        margin: 0 0 -250px auto;
        width: 100%;
    }

    .box01:nth-of-type(2) .txtArea {
        padding: 280px 20px 30px 20px;
    }

    .box01:nth-of-type(2) figure img {
        height: auto;
    }

    /*上から3番目(ランチ)のみ適用*/
    .box01:nth-of-type(3) {
        margin-bottom: 0;
    }

    .box01:nth-of-type(3) figure {
        margin: 0 auto -120px 0;
        width: 100%;
    }

    .box01:nth-of-type(3) .txtArea {
        padding: 140px 16px 16px 16px;
    }

    .box01:nth-of-type(3) figure img {
        height: auto;
    }

}

/*-----------------------------------------------------------------------------

480px以下の指定

-----------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

    /*-------------------------------------------------------------------------
    共通設定
-----------------------------------------------------------------------------*/
    /*h3 タイトル*/
    body {
        font-size: 15px;
    }

    /*h2*/
    h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    /*h3*/
    h3 {
        font-size: 18px;
        line-height: 1.4;
    }


    /*リンク（全般）設定
---------------------------------------------------------------------------*/
    /*SPでは電話発信を有効*/
    a[href^="tel:"] {
        pointer-events: auto;
    }

    /* ボタン
----------------------------------------------------------- */
    /*01*/
    .btArea .btn01 {
        padding: 6px 5%;
        width: 90%;
    }

    /*02*/
    .btArea .btn02 {
        padding: 12px 5%;
        width: 90%;
    }


    /*-------------------------------------------------------------------------
    header
    -----------------------------------------------------------------------------*/
    header {
        padding: 4px 0;
        width: 100%;
    }

    /*中央揃えに変更*/
    header nav.menuList ul {
        justify-content: center;
    }

    /*TEL*/
    header .menuList .tel {
        width: 100%;
        text-align: center;
        border-left: 0;
    }

    header .menuList .tel a {
        font-size: 20px;
    }

    /*区切り線の調整*/
    header .menuList li:first-of-type {
        border-left: 0;
    }

    header .menuList li {
        margin: 0;
        padding: 0;
        width: 49%;
        text-align: center;
    }

    /*-------------------------------------------------------------------------
メイン画像
-----------------------------------------------------------------------------*/
    #home #mainvisual {
        overflow: hidden;
        background-size: 1000px;
        background-repeat: repeat;
    }

    /*ロゴ*/
    #home #mainvisual #main-logo {
        width: 62%;
        top: 54%;
        min-width: 220px;
    }

    /*背景画像 ピザ*/
    #home #mainvisual #main-img01 {
        min-width: 76vw;
        min-height: 50vw;
        left: -19%;
        top: 7%;
    }

    /*背景画像 金目鯛*/
    #home #mainvisual #main-img02 {
        right: -10%;
        top: 7%;
        min-width: 48vw;
        min-height: 56vw;
    }

    /*背景画像 アボカド*/
    #home #mainvisual #main-img03 {
        bottom: 2%;
        left: -13%;
        min-width: 58vw;
        min-height: 53vw;
    }

    /*背景画像 おでん*/
    #home #mainvisual #main-img04 {
        right: -10%;
        bottom: 3%;
        min-width: 58vw;
        min-height: 54vw;
    }

    /*-------------------------------------------------------------------------
コンセプト
-----------------------------------------------------------------------------*/
    /*上部のなみなみ背景*/
    #home .conceptArea::before {
        top: -33px;
        height: 34px;
    }



    /*-------------------------------------------------------------------------
食べログ・インスタ ボタン
-----------------------------------------------------------------------------*/
    #home .extsiteArea {
        padding-bottom: 80px;

    }

    #home .extsiteArea .extsiteList li {
        width: 35%;
    }


    /*-------------------------------------------------------------------------
店舗情報
-----------------------------------------------------------------------------*/
    #home .shop_infoArea .mapArea {
        width: 100%;
    }
}
