@charset "UTF-8";

/* -----------------
------共通部分------ */


/* font-family: 'Lora', serif;
font-family: 'Zen Old Mincho', serif; */

html {
    font-size: 0.625rem;
}

body {
    font-family: 'Lora', 'Zen Old Gothic', sans-serif;
    line-height: 1.2;
    color: #332401;
    letter-spacing: .1em;
    font-size: 1.4rem;
    /* 14px */
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    color: #332401;
    text-decoration: none;
}

/* 余白 */
.wraper {
    margin: 0 10vw;
    line-height: 1.2;

}

/* h1の文字の装飾、余白 */
.logo {
    font-size: 2.4rem;
    font-family: "Pacifico", 'Lora', serif;
    margin: 2rem 2.4rem;
}

/* h2の文字の装飾、余白 */
h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    text-align: center;
    font-family: 'Lora', 'Zen Old Mincho', serif;
    margin: 0 0 4.6rem;
}

/* h3,4,pの文字の装飾、余白 */
h3 {
    letter-spacing: .08em;
    font-size: 1.8rem;
    margin: 0 0 2.4rem;
    text-align: center;
    font-family: 'Lora', 'Zen Old Mincho', serif;
}

h4 {
    letter-spacing: .08em;
    font-size: 1.6rem;
    margin: 0 0 18px;
    text-align: center;
    font-family: 'Lora', 'Zen Old Mincho', serif;
}

/* テキストを中央寄せ */
.text-center {
    text-align: center;
}

/* セクションのボトムに余白 */
.fv,
.slider,
.about,
.photo_gallery,
.info {
    margin-bottom: 120px;
}

/* 各セクションのpに下余白 */
.about p:not(:last-child),
.system .point-contents p:not(:last-child),
.trimming p,
.info p:not(:last-child) {
    margin-bottom: 1.2rem;
}

/* メインの上下に余白 */
main {
    margin-bottom: 120px;
}

/* 横並び */
.flex {
    display: flex;
}

/* テキストを大文字に */
.upp {
    text-transform: uppercase;
}

/* テキストの頭文字を文字に */
.cap {
    text-transform: capitalize;
}


/* ======================================== 
ファーストビュー
======================================== */
/* ファーストビューの画像 */
.fv-slide {
    max-width: 100vw;
    width: 100%;
    min-height: 90vh;
    /* height: 760px; */

    position: relative;
    /* keymsgの絶対位置指定 */
}


/* keymsgsの位置と文字の装飾 */
.keymsgs {
    max-width: 32rem;
    height: 4rem;
    text-align: center;

    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, -50%);

    line-height: 1.7;
    color: #fff;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}

/* keymsgsの'×'に余白 */
.keymsgs span {
    padding: 0 1rem;

}

/* keymsgs pのフォントとサイズ */
.keymsgs p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: .038em;
    padding-bottom: 1rem;
}

/* keymsgのフォントとサイズ */
.keymsg {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-family: "Pacifico", serif;

}



/* FVのslider */
.slider_item {
    font-size: 150px;
    height: 100vh;
    text-align: center;
    font-weight: bold;
    color: rgb(221, 216, 216);
}

.slick-prev,
.slick-next {
    width: 30px;
    height: 30px;
}

.slick-prev {
    left: 0;
    z-index: 1;
}

.slick-next {
    right: 0;
}

.slick-prev::before,
.slick-next::before {
    font-size: 30px;
    color: #ebe9e9;
}

.fv_slider img {
    width: 100%;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* -------------------------------------
ヘッダー-SP
------------------------------------- */
/* PCナビを非表示 */
.PC-nav {
    display: none;
}

/* ヘッダーの幅を100% 、固定、均等配置*/
.header {
    width: 100%;

    position: fixed;
    z-index: 3;

    justify-content: space-between;
    align-items: center;
}

/* ======================================== 
ハンバーガーメニュー
======================================== */
/* クリック前のボタン */
.toggle {
    width: 48px;
    height: 48px;
    background-color: #f0f0f0;
    opacity: 0.5;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 999;
}

/* トグルボタンの線 */
.toggle span {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 8px;
    transition: all .3s linear;
}

/* トグルボタンの上下の線 */
.toggle span::before,
.toggle span::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 8px;
    transition: all .3s linear;
}

/* トグルボタンの位置 */
.toggle span::before {
    top: -8px;
}

/* トグルボタンの位置 */
.toggle span::after {
    top: 8px;
}

/* トグルボタンのホバー、フォーカスした時の
　　アウトラインと影 */
.toggle:hover,
.toggle:focus {
    outline: 2px solid #fff;
    box-shadow: 0 0 1rem rgba(219, 212, 212, 0.5);
    opacity: 0.5;
}



/* ======================================== 
クリック後の処理
======================================== */
/* 線を透明にする */
.toggle.active span {
    background-color: transparent;
}

/* 線の位置 */
.toggle.active span::before,
.toggle.active span::after {
    top: 0;
}

/* 線の角度 */
.toggle.active span::before {
    transform: rotate(45deg);
}

/* 線の角度 */
.toggle.active span::after {
    transform: rotate(-45deg);
}


/* ======================================== 
ナビゲーション
.SP-navに.activeを付けたとき
非表示だったメニューを表示させる
======================================== */
.SP-nav {
    background-color: #333;
    opacity: .7;
    width: 100%;
    min-width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 1;
    /* visibility: hidden; */
    transition: all .3s linear;

}

.SP-nav li:first-of-type {
    padding-top: 50px;
}

.SP-nav li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 24px 0;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Zen Old Mincho', serif;
}

.SP-nav ul li a:hover,
.SP-nav ul li a:focus {
    background-color: #f7aeae;
    opacity: .4;
}

.SP-nav.active {
    left: 0;
    visibility: visible;
}


/* ======================================== 
サイドボタン
======================================== */
/* サイドボタンの配置 */
#side-button {
    position: absolute;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: rgb(227, 238, 226);
    cursor: pointer;
}

/* ホバーした時背景色を変える */
#side-button:hover{
    background-color: rgb(220, 244, 217);
}

#side-button .num1:hover, 
#side-button .num2:hover, 
#side-button .num3:hover {
    background-color: rgb(198, 236, 194);
}

/* サイドボタンの装飾 */
.side-button div {
    font-size: 1.2rem;
    margin: 8px;

}

.side-button img {
    width: 20px;
    height: 20px;
}

/* サイドボンタンのdivタグがアクティブになったとき */
.side-button div.active {
    width: 160px;
    cursor: pointer;
}

/* サイドボンタンのimgタグがアクティブになったとき */
.side-button img.active {
    margin-right: 8px;
    margin-left: 8px;
}

/* サイドボンタンのdivタグがアクティブになったときの後ろに起点 */
.side-button div.active::after {
    /* 電話をかけるの文字の絶対位置 */
    position: relative;
}

/* num1の位置 */
.num1 div.active::after {
    content: "電話を掛ける";
    position: absolute;
    top: 12px;
}

/* num2の位置 */
.num2 div.active::after {
    content: "ラインで予約する";
    position: absolute;
    top: 44px;
}

/* num33の位置 */
.num3 div.active::after {
    content: "MAP";
    position: absolute;
    bottom: 12px;
}



/* ======================================== 
肉球背景
======================================== */
/* aboutとtrimmingセクションの絶対位置 */
.about .content,
.trimming-section {
    position: relative;
}

/* aboutセクションの肉球背景の位置 */
.bg-right {
    position: absolute;
    top: -35%;
    right: -10%;
    z-index: -1;
    overflow-x: hidden;
}

.bg-left {
    position: absolute;
    bottom: -25%;
    left: -10%;
    z-index: -1;
    overflow-x: hidden;
}

/* 肉球背景の画像サイズ */
.bg-right img,
.bg-left img,
.bg-right2 img,
.bg-left2 img {
    min-width: 100px;
    max-width: 130px;
    min-height: 150px;
    max-height: 200px;
    transform: rotate(180deg);
    overflow-x: hidden;
}

/* trimmingセクションの肉球背景の位置 */
.bg-right2 {
    position: absolute;
    top: -130px;
    right: 10px;
    z-index: 1;
    overflow-x: hidden;
}

.bg-left2 {
    position: absolute;
    bottom: -135px;
    left: 0;
    z-index: 1;
    overflow-x: hidden;
}




/* -----------------
-------About---- */
/* aboutのh2にした余白と起点 */
.title {
    position: relative;

    margin-bottom: 60px;
}

/* aboutのh2に疑似要素 */
.title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #f7aeae;
}

/* aboutのpを中央寄せと行の田中高さ */
.about p,
.trimmingMsg p,
.info p {
    line-height: 1.7;
    text-align: center;
}





/* -----------------
-------system---- */
/* システムのポイントを縦並び */
.system .flex {
    flex-direction: column;
}

/* システムの画像を１００％表示と下余白 */
.system .point-contents img {
    width: 100%;
    margin-bottom: 1.2rem;
}

/* システムの見出しh３の最後以外の下余白 */
.system h3 {
    margin-bottom: 60px;
}



/* ポイントコンテンツの下余白 */
.point-contents {
    margin-bottom: 60px;
}

/* -----------------
-------trimming---- */

.trimming-section {
    background-color: rgb(237, 212, 204);
}

/* 波線の境界線の位置を下にする */
.trimming>img {
    vertical-align: bottom;
}

/* trimmingMsg */

/* tableの幅を100％にする */
.trimmingMenu table {
    width: 100%;
    margin-bottom: 20px;
}

/* trimming-menuのtableを横並び */
.table {
    display: flex;
    border-top: #ddd 1px solid;
    /*境界線を指定*/
    border-bottom: #ddd 1px solid;
    /*境界線を指定*/
}

/* テーブルの左側のセルの幅を60％ */
.table .cell {
    flex-basis: 60%;
    /*幅を60%に*/
}

/* テーブルの左側のセルの幅を40％ */
.table .cell-right {
    flex-basis: 40%;
    /*幅を40%に*/
    text-align: right;
    /*テキストを右に*/
}

.table .cell,
.table .cell-right {
    padding: 10px;
    /*余白を指定*/
}

/* テーブルの奇数の行の背景を白色にする */
.table:nth-child(odd) {
    background-color: #fff;
}

.section-footer {
    transform: scale(-1, -1);
    /*波画像を反転*/
    vertical-align: top;
}

/* メニューの注意書きの下の余白 */
.row {
    padding-bottom: 20px;
}

/* メニューの注意書きの装飾 */
.row-inner {
    background-color: #fff;
    padding: 1.5rem;
    /*境界線を指定*/
    border-top: #ddd 1px solid;
    border-bottom: #ddd 1px solid;
}

/* メニューの注意書きにリストマークと字下げ */
.row ul li {
    list-style: inside;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

/* -----------------
-------photo gallery---- */
/* cardsを横並び、2列に固定　溝は2rem*/
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* カードの幅、表示速度 */
.card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-width: 100px;
    transition: 0.7s;
}

/* ホバーした時1.08倍 */
.cards img:hover {
    transform: scale(1.08);
}






/* -----------------
-------info---- */
/* infoの下の余白 */


/* マップにボーダーとサイズ調整 */
.map {
    border: 3px solid rgb(66, 44, 36);
    position: relative;
    padding-top: 50%;
    margin-bottom: 3.6rem;
}

/* マップにの相対位置と幅と高さ */
.map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}



.info-telephone {
    max-width: 430px;
    margin: 0 auto;
}

/* ボタンの装飾 */
/* .info-btn {
    display: flex;
    position: relative;
    padding: 30px 0;
    max-width: 100%;
    height: 100%;
    color: #332401;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 30px 10px;
    margin: 50px auto 0;
    background-color: rgb(237, 212, 204);
    border-radius: 3rem;
    cursor: pointer;
    align-items: center;
} */

.info-btn {
    display: inline-flex;
    padding: 20px 20px;
    margin: 50px auto 0;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-radius: 30px;
    border: 1px solid #332401;
    color: #332401;
    font-weight: 700;
    cursor: pointer;

    position: relative;
}


/* インフォボタンの装飾 */
.info-btn::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% + .8rem);
    height: calc(100% + .8rem);
    background-color: #edd4cc;

    border-radius: 30px;
    font-family: 'Zen Old Mincho', serif;
    z-index: -1;
}

/* インフォボタンのホバーしたとき */
.info-btn:hover::before {
    background-color: #fff;
    box-shadow: 0px 0px 10px #666;
    color: #ddd;
    transition: 1s;
    /*1秒で変化*/
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
}

/* インフォボタンのホバーしたとき */
.info-btn p:hover,
{
font-size: 1.6rem;
color: #ddd;
transition: 1s;
/*1秒で変化*/
}

/* インフォボタンのホバーしたとき */
.info-btn img:hover,
{
width: 20px;
height: auto;
color: #ddd;
transition: 1s;
/*1秒で変化*/
}



/* インフォボタンの受話器アイコンの余白 */
.info-btn img {
    display: block;
    width: 15%;
    height: 15%;
    padding-right: .5rem;
    padding-left: .5rem;
}

/* インフォボタンの文字の大きさ */
.info-btn p {
    font-size: 1.6rem;
    text-align: center;

    @media screen and (max-width:330px) {
        font-size: 1.4rem;
    }

}

/* ======================================== 
アサイドのバナー
======================================== */
/* バナーの上余白、中央 */
.banner {
    margin-top: 60px;
    text-align: center;
}

/* バナーのp要素に下余白 */
.banner p {
    margin-bottom: 8px;
}

/* バナーの画像の幅、高さ、比率、カーソル指定 */
.banner img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    cursor: pointer;
}

/* ホバーしたときに2秒かけて1.5倍に拡大、透明度0.7 */
.banner img:hover {
    transform: scale(1.5), 2s;
    opacity: 0.7;
    transition: 1s;
    /*1秒で変化*/
    box-shadow: 0px 0px 10px #666;
}


/* topへ戻る */
.page_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.page_top i {
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #332401;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
}

/* トップへ戻る文字を小さく */
.top {
    font-size: 1rem;
    color: rgb(227, 238, 226);
}

/* フッター */
/* フッターの高さ、背景色、起点 */
footer {
    height: 101px;
    background-color: rgb(66, 44, 36);
    position: relative;

}

/* snsの相対値 */
.sns {
    display: block;
    position: absolute;
    width: 100%;
    top: 24px;
    left: 0;
}

/* snsアイコンの均等割 */
.sns ul {
    justify-content: center;
}

/* snsアイコンの横余白 */
.sns ul li {
    padding: 0 16px;
}

/* snsのimg大きさ */
.sns img {
    width: 24px;
    height: 24px;
}


/* フッター文字 */
footer p {
    color: #fff;
    font-weight: 400;
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 100%;
    text-align: center;
}







/* -------------------------------------
スライダーの画像を100％
------------------------------------- */
.slider img {
    width: 100%;
}

/* -------------------------------------
！！！ここから768px以上！！
------------------------------------- */
@media screen and (min-width:768px) {

    /* トグルとSPナビを非表示 */
    .toggle,
    .SP-nav {
        display: none;
    }

    /* PC ナビを表示 */
    .PC-nav {
        display: flex;
        align-items: center;
    }

    /* PC ナビを均等配置を表示 */
    .PC-nav .ul {
        display: flex;
        margin-right: 64px;
    }

    /* PCナビのリストに右余白 */
    .PC-nav li {
        margin-right: 40px;
    }

    /* h1の文字の大きさを大きく */
    .logo {
        font-size: 2.4rem;
    }

    .PC-nav a {
        font-size: 1.8rem;
        font-family: "Pacifico", 'Lora', serif;
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
    .PC-nav a::after {
        position: absolute;
        bottom: -3px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #faf9f8;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }

    .PC-nav a:hover:after{
        transform: scale(1, 1);
    }
    .PC-nav a:hover{
        color: #f7aeae;
    }

    h2 {
        font-size: 3.6rem;
    }


    /* 各セクションのpの文字の大きさ */
    .about p,
    .system .point-contents p,
    .trimming p,
    .info p {
        font-size: 1.6rem;
    }

    /* 各セクションのpに下余白 */
    .about p:not(:last-child),
    .system .point-contents p:not(:last-child),
    .trimming p,
    .info p:not(:last-child) {
        margin-bottom: 3.6rem;
    }

    /* セクションのボトムに余白 */
    .fv-slide,
    .slider,
    .about,
    .info {
        margin-bottom: 160px;
    }

    .title {
        font-size: 3.6rem;
        margin-bottom: 120px;
    }

    .title::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 60px;
        transform: translateX(-50%);
        width: 44px;
        height: 2px;
        margin: 36px auto 0;
        background-color: #f7aeae;
    }

    /* pointコンテンツを横並び */
    .system .flex {
        flex-direction: row;
        justify-content: space-between;
    }

    /* pointコンテンツを均等割 */
    .system .point-contents {
        flex: 1;
    }

    /* pointコンテンツの最初以外の左余白 */
    .system .point-contents:not(:first-child) {
        margin-left: 20px;
    }

    /* システムの画像を１００％表示と下余白 */
    .system .point-contents img {
        margin-bottom: 3.6rem;
    }

    /* システムの見出しh３の最後以外の下余白 */
    .system h3 {
        margin-bottom: 60px;
    }

    /* 受話器のテキストの装飾 */
    .info-btn p {
        display: block;
        line-height: 60px;
        font-size: 2.4rem;
        text-align: center;
    }

    /* "公式ラインからご予約できるようになりました" 文字の大きさ */
    .banner .arrows span {
        font-size: 2.4rem;
    }


    /* 肉球背景の画像サイズ */
    .bg-right img,
    .bg-left img,
    .bg-right2 img,
    .bg-left2 img {
        min-width: 160px;
        max-width: 200px;
        min-height: 250px;
        max-height: 300px;
        transform: rotate(180deg);
    }

    /* aboutセクションの肉球背景の位置 */
    .bg-right {
        position: absolute;
        top: -55%;
        right: -10%;
        z-index: -1;
        overflow-x: hidden;
    }

    .bg-left {
        position: absolute;
        bottom: -25%;
        left: -10%;
        z-index: -1;
        overflow-x: hidden;
    }   
    /* trimmingセクションの肉球背景の位置 */
    .bg-right2 {
        position: absolute;
        top: -200px;
        right: 10px;
        z-index: 1;
        overflow-x: hidden;
    }

    .bg-left2 {
        position: absolute;
        bottom: -260px;
        left: 0;
        z-index: 1;
        overflow-x: hidden;
    }


    /* FVのslider */
    .slider_item {
        font-size: 150px;
        height: 100vh;
        text-align: center;
        font-weight: bold;
        color: rgb(221, 216, 216);
    }

    .slick-prev,
    .slick-next {
        width: 60px;
        height: 60px;
    }

    .slick-prev {
        left: 0;
        z-index: 1;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev::before,
    .slick-next::before {
        font-size: 60px;
        color: #ebe9e9;
    }

    .fv_slider img {
        max-width: 100%;
        max-height: 100vh;
        object-fit: cover;
        aspect-ratio: 16/9;
    }




    /*　FV スライド */
    /* サイドボタンの配置 */
    #side-button {
        position: absolute;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        background-color: rgb(227, 238, 226);
    }

    /* サイドボタンの装飾 */
    .side-button div {
        font-size: 1.4rem;
    
    }

    /* サイドボタンの画像サイズ */
    .side-button img {
        width: 20px;
        height: 20px;
    }

    /* サイドボンタンのaタグがアクティブになったとき */
    .side-button a.active {
        width: 160px;
        cursor: pointer;
    }

    /* サイドボンタンのimgタグがアクティブになったとき */
    .side-button img.active {
        margin-right: 8px;
        margin-left: 8px;
    }

    /* サイドボンタンのaタグがアクティブになったときの後ろに起点 */
    .side-button a.active::after {
        /* 電話をかけるの文字の絶対位置 */
        position: relative;
    }

    /* num1の位置 */
    .num1 a.active::after {
        content: "電話を掛ける";
        position: absolute;
        top: 20px;
    }

    /* num2の位置 */
    .num2 a.active::after {
        content: "ラインで予約する";
        position: absolute;
        top: 56px;
    }

    /* num33の位置 */
    .num3 a.active::after {
        content: "MAP";
        position: absolute;
        bottom: 20px;
    }







}

/* -------------------------------------
950px以上の時のロゴとナビの大きさ
------------------------------------- */
@media screen and (min-width:950px) {
    .logo {
        font-size: 3.6rem;
    }

    .PC-nav a {
        font-size: 2.4rem;
        font-family: "Pacifico", 'Lora', serif;
    }

    /* 肉球背景の画像サイズ */
    .bg-right img,
    .bg-left img,
    .bg-right2 img,
    .bg-left2 img {
        min-width: 160px;
        max-width: 200px;
        min-height: 250px;
        max-height: 300px;
        transform: rotate(180deg);
    }

    /* ======================================== 
        サイドボタン
    ======================================== */
    /* サイドボタンの配置 */
    #side-button {
        position: absolute;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        background-color: rgb(227, 238, 226);
        padding: 10px;

    }

    /* サイドボタンの装飾 */
    .side-button div {
        font-size: 1.6rem;
        padding: 10px 0;

    }

    .side-button img {
        width: 26px;
        height: 26px;
    }   

    /* サイドボンタンのdivタグがアクティブになったとき */
    .side-button div.active {
        width: 200px;
        cursor: pointer;
    }

    /* サイドボンタンのimgタグがアクティブになったとき */
    .side-button img.active {
        margin-right: 12px;
        margin-left: 12px;
    }

    /* サイドボンタンのdivタグがアクティブになったときの後ろに起点 */
    .side-button div.active::after {
        /* 電話をかけるの文字の絶対位置 */
        position: relative;
    }

    /* num1の位置 */
    .num1 div.active::after {
        content: "電話を掛ける";
        position: absolute;
        top: 34px;
    }

    /* num2の位置 */
    .num2 div.active::after {
        content: "ラインで予約する";
        position: absolute;
        top: 88px;
    }

    /* num33の位置 */
    .num3 div.active::after {
        content: "MAP";
        position: absolute;
        bottom: 34px;
    }

    /* フッター */
    /* フッターの高さ、背景色、起点 */
    footer {
        height: 202px;
    }
    /* snsの相対値 */
    .sns {
        display: block;
        position: absolute;
        width: 100%;
        top: 48px;
        left: 0;
}




    /* -------------------------------------
    1280px以上の時のロゴとナビの大きさ
    ------------------------------------- */
    @media screen and (min-width:1280px) {
        .logo {
            font-size: 4.8rem;
        }

        .PC-nav a {
            font-size: 2.4rem;
            font-family: "Pacifico", 'Lora', serif;
        }

        /* 肉球背景の画像サイズ */
        .bg-right img,
        .bg-left img,
        .bg-right2 img,
        .bg-left2 img {
            min-width: 160px;
            max-width: 200px;
            min-height: 250px;
            max-height: 300px;
        }


        /* ======================================== 
        サイドボタン
        ======================================== */
        /* サイドボタンの配置 */
        #side-button {
            position: absolute;
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 100;
            background-color: rgb(227, 238, 226);
            padding: 10px;

        }

        /* サイドボタンの装飾 */
        .side-button div {
            font-size: 1.6rem;
            padding: 10px 0;
        }

        .side-button img {
            width: 26px;
            height: 26px;
        }   

        /* サイドボンタンのdivタグがアクティブになったとき */
        .side-button div.active {
            width: 200px;
            cursor: pointer;
        }

        /* サイドボンタンのimgタグがアクティブになったとき */
        .side-button img.active {
            margin-right: 12px;
            margin-left: 12px;
        }

        /* サイドボンタンのdivタグがアクティブになったときの後ろに起点 */
        .side-button div.active::after {
            /* 電話をかけるの文字の絶対位置 */
            position: relative;
        }

        /* num1の位置 */
        .num1 div.active::after {
            content: "電話を掛ける";
            position: absolute;
            top: 34px;
        }

        /* num2の位置 */
        .num2 div.active::after {
            content: "ラインで予約する";
            position: absolute;
            top: 88px;
        }

        /* num33の位置 */
        .num3 div.active::after {
            content: "MAP";
            position: absolute;
            bottom: 34px;
        }



        /* aboutセクションの肉球背景の位置 */
        .bg-right {
            position: absolute;
            top: -90%;
            right: -10%;
            z-index: -1;
            overflow-x: hidden;
        }

        .bg-left {
            position: absolute;
            bottom: -25%;
            left: -10%;
            z-index: -1;
            overflow-x: hidden;
        }

        /* trimmingセクションの肉球背景の位置 */
        .bg-right2 {
            position: absolute;
            top: -260px;
            right: 10px;
            z-index: 1;
            overflow-x: hidden;
        }

        .bg-left2 {
            position: absolute;
            bottom: -400px;
            left: 0;
            z-index: 1;
            overflow-x: hidden;
        }



    





    /* -------------------------------------
    768px以下の時のロゴとナビの大きさ
    ------------------------------------- */
    @media screen and (max-width:768px) {
        .info-telephone {
            max-width: 320px;
            margin: 0 auto;
        }
    }

    /* -------------------------------------
    330px以下の時のロゴとナビの大きさ
    ------------------------------------- */
    @media screen and (max-width:330px) {
        .info-telephone {
            max-width: 240px;
            margin: 0 auto;
        }

        .info-telephone .info-btn img {
            width: 25px;
            height: 25px;
        }

        .info-telephone .info-btn p {
            font-size: 1.4rem;
            height: 1.4rem;
        }
    }