@charset "utf-8";
html {
    font-size: 17px;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: #333;
    background-color: #f6f5f4;
    width: 100%;
}

.concept_ttl {
    /* コンセプトセクションのタイトル */
    width: 150px;
    margin: 0 auto 30px;
}

.section_ttl {
    /* 各セクションのタイトル */
    width: 150px;
    margin: 0 auto 30px;
}

.inner {
    width: calc(100% - 60px);
    margin: 0px auto;
}

.br-PC {
    /* PC画面サイズ用の文章の改行を無効 */
    display: none;
}

.sp_img {
    /* 小画面サイズ用のinfo画像を表示 */
    display: inline-block !important;
}

.pc_img {
    /* 大画面サイズ用のinfo画像を非表示 */
    display: none !important;
}


/* Loading背景画面設定 */

#loading {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #f6f5f4;
    text-align: center;
    top: 0;
}


/* Loading画像中央配置 */

#loading_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Loading アイコンの大きさ設定 */

#loading_logo img {
    width: 58.66vw;
}


/* fadeupをするアイコンの動き */

.fadeup {
    animation-name: LoadAnime; 
    animation-duration: 2.0s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes LoadAnime {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    .inner {
        width: calc(100% - 60px);
        max-width: 1120px;
        margin: 0px auto;
    }
    .concept_ttl {
        /* コンセプトセクションのタイトル */
        width: 180px;
        margin: 0 0 16px 0;
    }
    .section_ttl {
        /* 各セクションのタイトル */
        width: 180px;
        margin: 0 auto 28px;
    }
    .sp_img {
        /* 小画面サイズ用のinfo画像を非表示 */
        display: none !important;
    }
    .pc_img {
        /* 大画面サイズ用のinfo画像を表示 */
        display: inline-block !important;
    }
    /* Loading アイコンの大きさ設定 */
    #loading_logo img {
        width: 39vw;
        /* 768px幅の時300px*/
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    .concept_ttl {
        /* コンセプトセクションのタイトル */
        width: 200px;
    }
    .section_ttl {
        /* 各セクションのタイトル */
        width: 200px;
        margin: 0 auto 36px;
    }
    .br-PC {
        display: inline;
        /* PC版文章の改行を表示*/
    }
    .br-SP {
        display: none;
        /* スマホ版文章の改行を無効*/
    }
    /* Loading アイコンの大きさ設定 */
    #loading_logo img {
        max-width: 340px;
    }
}


/*-------------------------------
▼ ヘッダー、ロゴマークのサイズ
--------------------------------*/

#header {
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    margin: 0 auto;
    position: fixed;
    /* 上部に固定 */
    z-index: 999;
    /* ヘッダーをコンテンツより手前に */
    background-color: #f6f5f4;
}

.header_inner {
    margin: 0 16px;
    /* ヘッダーの内容を16px内側に */
    display: flex;
    align-items: center;
    /* ロゴを上下中央揃え */
    height: 100%;
}

.logo_header {
    /* ロゴのサイズ */
    width: 37.3%;
    max-width: 150px;
    height: auto;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #header {
        height: 80px;
        /* header高さ変更 */
    }
    .header_inner {
        margin: 0 4%;
        /* ヘッダーの内容を4%内側に変更 */
    }
    .logo_header {
        /* ロゴのサイズ */
        width: 200px;
        max-width: none;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    #header {
        height: 110px;
        /* header高さ変更 */
    }
    .logo_header {
        /* ロゴのサイズ */
        width: 260px;
    }
}


/*-------------------------------
▼ グロナビ
--------------------------------*/

#g-nav {
    /* ハンバーガーメニューを開いたときの内容 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* 画面いっぱいの大きさに */
    pointer-events: none;
    /* 万が一メニューが開いてないときにもカーソルが反応しないようにした */
    background-color: #f6f5f4;
    opacity: 0;
    transition: opacity .3s linear;
    /* ハンバーガーメニューをクリックした時、0.3sでフェードインして開く */
}

#g-nav.menu_active {
    /* ハンバーガーメニューをクリックした時にクラス付与される */
    pointer-events: auto;
    /* カーソルを反応するように */
    opacity: 1;
    /* 透明度を0から1に */
}

.g-nav_list {
    display: flex;
    flex-direction: column;
    /* メニューを縦に揃える */
    align-items: center;
    /* メニューを左右中央揃え */
    justify-content: center;
    /* メニューを上下中央揃え */
    width: 100%;
    height: 100%;
}

.g-nav_item {
    /* メニューのテキスト部分 */
    font-family: 'Open Sans', sans-serif;
    /* メニューの英文字部分のフォントを変更 */
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.08em;
    font-weight: 600;
    text-align: center;
    /* メニューの英文字とルビの和文字を中央揃え */
    transition: all 0.2s ease-out;
    /* ホバーで0.2sかけて動く */
    margin-bottom: 36px;
    /* メニュー同士の間隔を36px開けた */
}

.g-nav_item span {
    /* メニューのルビの和文字 */
    font-size: 0.588rem;
    /* 10px */
    letter-spacing: 0.08em;
    font-weight: 200;
    color: #694427;
    display: block;
    /* block要素にして文字を二段に*/
}

.g-nav_item:hover {
    /* メニューホバー時の動き）*/
    opacity: 0.6;
    transition: all 0.2s ease-out;
    /* ホバー解除で0.2sで元に戻る */
}

.g-nav_btn {
    /*「予約する」と「マップを見る」ボタン */
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #fdfcfb;
    transition: all 0.2s ease-out;
    /* ホバーで0.2sかけて動く */
    width: 65.3%;
    max-width: 280px;
}

.g-nav_btn:hover {
    /* メニューホバー時の動き */
    transform: translateY(-3px);
    /* ホバーで3pxボタンが上に動く */
    transition: all 0.2s ease-out;
}

.g-nav_btn a {
    /* ボタンのテキスト */
    display: flex;
    justify-content: center;
    /* テキストを左右中央揃え */
    align-items: center;
    /* テキストを上下中央揃え */
    border-radius: 9999px;
    /* ボタンの形を丸く */
    height: 45px;
}

.g-nav_btn i {
    /* ボタンのアイコン大きさ */
    font-size: 1.059rem;
    /* 18px */
    margin-right: 0.22em;
}

.g-nav_btn .reserve {
    /*「予約する」ボタン */
    background-color: #db771b;
    margin-bottom: 24px;
    /*「マップを見る」ボタンとの間隔を24pxに開けた */
}

.g-nav_btn .map {
    /*「マップを見る」ボタン */
    background-color: #694427;
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    #g-nav {
        position: static;
        /* ??? */
        width: 100%;
        height: 100%;
        opacity: 1;
        /* ハンバーガーボタン用に0のしていた透明度を1に戻した */
        pointer-events: auto;
        /* ポインターも反応するように戻した */
    }
    .g-nav_list {
        flex-direction: row;
        /* メニューを縦揃えから横揃えに */
        justify-content: flex-end;
        /* メニューを右端につける */
    }
    .g-nav_item {
        /* メニューのテキスト部分 */
        margin-bottom: 0px;
        /* 横並びなので高さを0に */
        margin-right: 50px;
        /* メニュー同士の間隔を50px開けた */
    }
    .g-nav_btn {
        /*「予約する」と「マップを見る」ボタン */
        font-size: 0.882rem;
        /* 15px */
        width: auto;
    }
    .g-nav_btn a {
        height: 48px;
    }
    .g-nav_btn i {
        /* ボタンのアイコン大きさ */
        font-size: 1.059rem;
        /* 18px */
        margin-right: 0.22em;
    }
    .g-nav_btn .reserve {
        margin-bottom: 0px;
        /* 横並びなので高さを0に */
        margin-right: 24px;
        /*「マップを見る」ボタンとの間隔を24pxに開けた */
        width: 160px;
    }
    .g-nav_btn .map {
        /*「マップを見る」ボタン */
        margin-top: 0px;
        width: 160px;
    }
}


/*———————————
ハンバーガーボタン
———————————*/


/* クリックエリアと位置を指定 ---------------------- */

.burger {
    position: fixed;
    z-index: 1001;
    /*ボタンを最前面に*/
    top: 17px;
    right: 16px;
    cursor: pointer;
    display: block;
    background-color: #694427;
    border-radius: 9999px;
    width: 112px;
    /* クリックエリアの横幅*/
    height: 36px;
    /* クリックエリアの高さ*/
}

.burger_menu {
    font-family: 'Open Sans', sans-serif;
    color: #fdfcfb;
    font-size: 0.706rem;
    /* 12px */
    letter-spacing: 0.1em;
    margin-top: 11px;
    /* 文字の高さ位置 ((ボタン高さ36px-文字大きさ12px)/2) - 4px(微調整) */
    margin-left: 24px;
}


/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */

.burger .line {
    position: absolute;
    top: 0;
    right: 24px;
    /* ハンバーガーの位置 */
    display: block;
    width: 18px;
    /* 横幅 */
    height: 2px;
    /* 1本辺りの高さ */
    background-color: #fdfcfb;
    /* 線の色 */
    /* 適用するプロパティ、変化する時間、変化する速度 */
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/* 3本線の各線の位置を指定 ---------------------- */

.burger .line_01 {
    top: 12px;
}

.burger .line_02 {
    top: 18px;
}

.burger .line_03 {
    top: 24px;
}

.burger.btn_active {
    background-color: #fdfcfb;
    border: #694427 1px solid;
}

.burger.btn_active .burger_menu {
    font-size: 0;
}

.burger.btn_active .burger_menu:before {
    content: 'close';
    color: #694427;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.706rem;
    /* 12px */
    letter-spacing: 0.1em;
}


/* 最上部の線のスタイル ---------------------- */

.burger.btn_active .line_01 {
    top: 18px;
    /* 上から2番目の線の位置に変更 */
    /* 線を45度回転 */
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #694427;
}


/* 上から2番目の線のスタイル ---------------------- */

.burger.btn_active .line_02 {
    opacity: 0;
    /* 不透明度を下げて線を消す */
}


/* 最下部の線のスタイル ---------------------- */

.burger.btn_active .line_03 {
    top: 18px;
    /* 上から2番目の線の位置を中心 */
    /* 線を135度回転 */
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    background-color: #694427;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    /* クリックエリアと位置を指定 ---------------------- */
    .burger {
        top: 19px;
        /*ヘッダーの高さが変わったので位置調整 ((ヘッダー高さ80px-ボタン高さ42px)/2)*/
        right: 4%;
        /*ヘッダーの幅が変わったので位置調整*/
        cursor: pointer;
        border-radius: 9999px;
        width: 126px;
        /* クリックエリアの横幅を変更*/
        height: 42px;
        /* クリックエリアの高さを変更*/
    }
    .burger_menu {
        font-size: 0.824rem;
        /* 14px */
        letter-spacing: 0.1em;
        margin-top: 12px;
        /* 文字の高さ位置を変更 ((ボタン高さ42px-文字大きさ14px)/2) - 2px(微調整) */
        margin-left: 24px;
    }
    /* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
    .burger .line {
        right: 24px;
        /* ハンバーガーの位置 .burger_menuのmargin-leftと同じ値*/
        width: 20px;
        /* 横幅 */
        height: 2px;
        /* 1本辺りの高さ */
        background-color: #fdfcfb;
        /* 線の色 */
    }
    /* 3本線の各線の位置を指定 ---------------------- */
    .burger .line_01 {
        top: 14px;
    }
    .burger .line_02 {
        top: 20px;
        /* .line_01のtop+6px */
    }
    .burger .line_03 {
        top: 26px;
        /* .line_01のtop+12px */
    }
    .burger.btn_active .burger_menu:before {
        font-size: 0.824rem;
        /* 14px */
    }
    /* 最上部の線のスタイル ---------------------- */
    .burger.btn_active .line_01 {
        top: 20px;
        /* .line_02の線の位置にする */
    }
    /* 上から2番目の線のスタイル ---------------------- */
    .burger.btn_active .line_02 {
        opacity: 0;
        /* 不透明度を下げて線を消す */
    }
    /* 最下部の線のスタイル ---------------------- */
    .burger.btn_active .line_03 {
        top: 20px;
        /* .line_02の線の位置にする */
        /* 上から2番目の線の位置を中心 */
        /* 線を135度回転 */
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    .burger {
        display: none;
    }
}


/*———————————
FV
———————————*/

#main {
    margin-top: 70px;
    /* ヘッダー分高さを下げる */
}

.main-visual {
    width: calc(100% - 32px);
    /* 左右の余白を16px設けた */
    margin: 0 auto;
    /* 中央配置に */
    position: relative;
}

.mv_image {
    /* mv画像 */
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.mv_copy {
    /* mvコピー（東川口けやき通りの～） */
    font-size: 8.1vw;
    /* 375px幅の時30pxの大きさ */
    font-weight: 800;
    color: #fdfcfb;
    position: absolute;
    top: 30px;
    left: 14px;
    letter-spacing: 0.08em;
    line-height: 1.4em;
    text-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    font-family: 'Kaisei Opti', serif;
}

.mv_copy_svg {
    /* mvコピーの「PEACE」svg画像 */
    width: 48vw;
    margin-top: 10px;
}

.mv_info {
    /* 営業時間と定休日画像 */
    text-align: center;
    margin-top: 16px;
}

.hero_info_sp {
    width: calc(100vw - 48px);
    /* 左右の余白を24px設ける */
    max-width: 480px;
}

.hero_info_sp {
    /* 小画面サイズ用のinfo画像を表示 */
    display: inline-block !important;
}

.hero_info_pc {
    /* 大画面サイズ用のinfo画像を非表示 */
    display: none !important;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #main {
        margin-top: 80px;
        /* ヘッダー分高さを下げる */
    }
    .main-visual {
        text-align: center;
        /* hero画像を左右中央揃えに */
    }
    .mv_image {
        /* mv画像 */
        width: calc(92% + 30px);
        /* ヘッダーのアイテムに合わせて調整 */
    }
    .mv_copy {
        /* mvコピー（東川口けやき通りの～） */
        font-size: 3.51vw;
        /*1024px幅で36pxの大きさ */
        top: auto;
        left: auto;
        bottom: 5%;
        right: 10%;
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .mv_copy_svg {
        /* mvコピーの「PEACE」svg画像 */
        width: 19.5vw;
        /*1024px幅で200pxの大きさ */
        margin-top: 10px;
    }
    .hero_info_pc {
        margin-top: 24px;
        width: 21.4vw;
        /*1024px幅で220pxの大きさ */
    }
    .hero_info_sp {
        /* 小画面サイズ用のinfo画像を非表示 */
        display: none !important;
    }
    .hero_info_pc {
        /* 大画面サイズ用のinfo画像を表示 */
        display: inline-block !important;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    #main {
        margin-top: 110px;
        /* ヘッダー分高さを下げる */
    }
    .mv_image {
        /* mv画像 */
        border-radius: 16px;
    }
    .mv_copy {
        /* mvコピー（東川口けやき通りの～） */
        font-size: 3.28vw;
        /*1280px幅で42pxの大きさ */
        bottom: 10%;
    }
    .mv_copy_svg {
        /* mvコピーの「PEACE」svg画像 */
        width: 19.5vw;
        /*1280px幅で250pxの大きさ */
    }
    .hero_info_pc {
        margin-top: 30px;
        width: 21.8vw;
        /*1280px幅で280pxの大きさ */
    }
}

@media screen and (min-width: 1280px) {
    /* 1280px~のデザイン（PC画面） */
    .mv_copy {
        /* mvコピー（東川口けやき通りの～） */
        font-size: 44px;
    }
    .mv_copy_svg {
        /* mvコピーの「PEACE」svg画像 */
        width: 250px;
        margin-top: 16px;
    }
    .hero_info_pc {
        width: 280px;
    }
}


/*———————————
Concept
———————————*/

#concept {
    /* セクションの上下の余白を70px設けた */
    margin-top: 70px;
    padding-bottom: 70px;
}

.concept_upper {
    margin-bottom: 50px;
    /* upperとbottomの間隔を50px開けた */
}

.concept_lead {
    /* コンセプトのリード文 */
    font-size: 1.294rem;
    /* 22px */
    letter-spacing: 0.05em;
    line-height: 1.8em;
    font-weight: 800;
    margin-bottom: 16px;
}

.concept_text {
    /* コンセプトセクションの文章p */
    font-size: 1rem;
    /* 17px */
    letter-spacing: 0.05em;
    line-height: 2em;
}

.concept_upper_img {
    margin-bottom: 30px;
    /* 写真とテキストとの間隔を30px開けた */
    justify-content: center;
    /* 写真を中央揃え */
    display: flex;
    gap: 15px;
    /* 写真同氏の間隔を15px開けた */
}

.stuff_img_man {
    /* 男性スタッフの写真 */
    width: 50%;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 8%) 0px 8px 16px;
    /* 影をつける */
    object-fit: cover;
}

.stuff_img_woman {
    /* 女性スタッフの写真 */
    width: 50%;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 8%) 0px 8px 16px;
    /* 影をつける */
    object-fit: cover;
}

.concept_bottom_img {
    text-align: center;
}

.concept_bottom_img img {
    width: 100%;
    max-width: 375px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgb(0 0 0 / 8%) 0px 8px 16px;
    /* 影をつける */
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #concept {
        /* セクションの上下の余白を100pxに変更 */
        margin-top: 100px;
        padding-bottom: 100px;
    }
    .concept_ttl {
        text-align: left;
    }
    .concept_lead {
        /* コンセプトのリード文 */
        font-size: 1.412rem;
        /* 24px */
        letter-spacing: 0.05em;
        line-height: 1.5em;
        margin-bottom: 20px;
    }
    .concept_text {
        /* コンセプトセクションの文章p */
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.07em;
        line-height: 2.5em;
        margin-bottom: 0px;
    }
    .concept_upper {
        display: flex;
        align-items: flex-start;
        gap: 60px;
    }
    .concept_upper_img {
        margin-bottom: 0px;
        /* 写真とconcept_bottomとの間隔を0pxに変更 */
        display: flex;
        flex-direction: column;
        /* 写真を縦並びにに変更 */
        border-radius: 10px;
        order: 2;
        gap: 30px;
        justify-content: flex-end;
    }
    .stuff_img_man {
        /* 男性スタッフの写真 */
        order: 2;
        width: 29.2vw;
        /* 1024px幅で300pxの大きさ*/
        max-width: 280px;
    }
    .stuff_img_woman {
        /* 女性スタッフの写真 */
        order: 1;
        width: 29.2vw;
        /* 1024px幅で300pxの大きさ*/
        max-width: 300px;
        margin-left: 40px;
    }

    .concept_bottom { /* コンセプト下部分 */
        margin-top: 80px;
        display: flex;
        flex-direction: row-reverse; /* テキストと画像を逆に */
        gap: 60px; /* テキストと画像の間隔 */
        align-items: center;
        justify-content: space-between;
    }
    
    .text_wrapper_bottom {
        order: 1;
    }
    .concept_bottom_img {
        order: 2;
    }
    .concept_bottom_img img {
        width: 35.1vw;
        /* 1024px幅で360pxの大きさ*/
        border-radius: 10px;
        margin-bottom: 0px;
    }
}

@media screen and (min-width: 1280px) {
    /* 1280px~のデザイン（PC画面） */
    #concept {
        /* セクションの上下の余白を120px設けた */
        margin-top: 180px;
        padding-bottom: 180px;
    }
    .concept_upper {
        align-content: flex-start;
        justify-content: space-between;
        gap: 0px;
    }
    .concept_lead {
        /* コンセプトのリード文 */
        font-size: 1.588rem;
        /* 27px */
        line-height: 1.7em;
        margin-bottom: 30px;
    }
    .concept_upper_img {
        border-radius: 16px;
        gap: 50px;
    }
    .stuff_img_man {
        max-width: 300px;
    }
    .stuff_img_woman {
        width: 25vw;
        margin-left: 100px;
        max-width: 360px;
    }
    .text_wrapper_upper p {
        width: 80%;
    }
    .concept_bottom {
        margin-top: 150px;
        gap: 100px;
    }
}


/*———————————
Covid コロナ対策
———————————*/

#covid {
    /* セクションの上下の余白を70px設けた */
    padding: 70px 0;
    background-color: #ffffff;
}

.covid_heading {
    /* 「新型コロナウイルス対策と～」 */
    font-size: 1.294rem;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    font-weight: 800;
            margin-bottom: 30px;
}


.covid_heading_text {
    /* headingのテキスト文 */
    font-size: 1rem;
    /* 17px */
    letter-spacing: 0.1em;
    line-height: 1.8em;
    margin-bottom: 70px;
    /* 下のコロナ対策との間隔を50px開けた */
}


.covid_text_lead {
    /* コロナ対策リード文 */
    font-size: 0.882rem;
    /* 20px */
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 10px;
    /* リード文とテキストとの間隔を10px開けた */
    display: flex;
    /* チェックアイコンとリード文を整列 */
}

.bx-check-square {
    /* チェックアイコン */
    font-size: 0.882rem;
    /* 26px */
    color: #333;
    margin-bottom: 1px;
    /* アイコンとlead文を中央揃えするための微調整 */
}

.covid_text {
    /* コロナ対策テキスト文 */
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

.covid_text span {
    /* テキスト文の「37.2℃以上」をオレンジ色に強調 */
    color: #db771b;
    font-weight: 800;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #covid {
        padding: 100px 0;
        /* セクションの上下の余白を100pxに変更 */
    }
    .covid_heading {
        /* 「新型コロナウイルス対策と～」 */
        font-size: 1.412rem;
        /* 24px */
        letter-spacing: 0.12em;
        line-height: 1.5em;
    }
    .covid_heading_wrapper {
            text-align: center;
            padding: 16px;
        margin-bottom: 30px;
        /* 下のテキストとの間隔を30px開けた */

    }
    .covid_heading_illust {
        text-align: start;
        /* イラストを中央揃え */
        margin-left: 30px;
    }
    .covid_heading_illust img {
        width: 150px;
        margin-bottom: 0px;
    }
    .covid_heading_text {
        /* headingのテキスト文 */
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.12em;
        line-height: 2.6em;
        margin-bottom: 80px;
        /* 下のコロナ対策との間隔を80pxに変更 */
    }
    .covid_text_content {
text-align: center;
    }
    .covid_list {
    width: fit-content;
    margin: auto;
    }
    .covid_text_lead {
        font-size: 1.2rem;
        /* 24px */
        letter-spacing: 0.1em;
        line-height: 1.6rem;
        margin-bottom: 20px;
        /* リード文とテキストとの間隔を20pxに変更 */

    }
    .bx-check-square {
        /* チェックアイコン */
        font-size: 1.2rem;
        /* 26px */
            margin-bottom: 3px;
    }

}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    #covid {
        padding: 150px 0;
        /* セクションの上下の余白を150pxに変更 */
    }
    .covid_heading_wrapper {
        margin-bottom: 50px;
        /* 下のテキストとの間隔を50px開けた */
    }
    .covid_heading_text {
        /* headingのテキスト文 */
        margin-bottom: 100px;
        /* 下のコロナ対策との間隔を100pxに変更 */
    }
}


/*———————————
Menu メニュー
———————————*/

#menu {
    /* セクションの上下の余白を70px設けた */
    padding: 70px 0;
}

.square {
    /* 四角形の大きさ */
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 8px;
    white-space: nowrap;
}

.square_red {
    /* 四角形（赤色） */
    background: #dbafa0;
}

.square_yellow {
    /* 四角形（黄色） */
    background: #dfcc8f;
}

.square_green {
    /* 四角形（緑色） */
    background: #b4c1ad;
}

.square_blue {
    /* 四角形（青色） */
    background: #9fb2d8;
}

.menu_item {
    /* メニューの間隔を70px開けた */
    margin-bottom: 70px;
}

.menu_item_lead_content {
    display: flex;
    align-items: center;
    /* 四角形とメニューの文を揃えた */
}

.menu_item_lead_content p {
    /* メニューの文(カット、カラーなど) */
    font-size: 0.941rem;
    /* 16px */
    letter-spacing: 0.01em;
    width: calc(100vw - 80px);
}

.menu_item_text_content {
    display: flex;
    justify-content: space-between;
    /* メニュー種類と値段を左右に配置 */
    align-items: center;
    /* メニューの種類が折り返されても値段と上下中央揃えになるように */
    gap: 16px;
    padding-bottom: 10px;
    /* メニューのテキストと下線の間隔を10px開けた */
    border-bottom: #333 1px solid;
    /* メニューの下線 */
    margin-top: 30px;
    /* 一つ一つのメニューの間隔を30px開けた */
}

.object {
    /* メニューの種類（一般、60歳以上など） */
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.1em;
    font-weight: 400;
}

.menu_bold {
    /* 60歳以上を太字に */
    font-weight: 800;
}

.price {
    /* 値段 */
    font-family: 'Open Sans', sans-serif;
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.1em;
    font-weight: 400;
}

.note {
    /* 注釈 */
    font-size: 0.765rem;
    /* 13px */
    letter-spacing: 0.1em;
    margin-top: 30px;
}

.note p {
    /* 注釈同士の間隔 */
    margin-top: 10px;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #menu {
        padding: 100px 0;
        /* セクションの上下の余白を100pxに変更 */
    }
    .menu_item {
        /* メニューの間隔を70px開けた */
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 70px;
    }
    .menu_item_lead_content p {
        /* メニューの文(カット、カラーなど) */
        width: auto;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    #menu {
        padding: 180px 0;
        /* セクションの上下の余白を120pxに変更 */
    }
    .menu_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .menu_item {
        /* メニューの項目 */
        width: 42%;
        max-width: auto;
        margin-top: 0px;
        margin-bottom: 90px;
    }
    .square {
        /* 四角形の大きさ */
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }
    .menu_item_lead_content p {
        /* メニューの文(カット、カラーなど) */
        font-size: 18px;
        /* 18px */
        letter-spacing: 0.1rem;
    }
    .menu_item_text_content {
        margin-top: 40px;
        /* 一つ一つのメニューの間隔を40pxに変更 */
        padding-bottom: 20px;
        /* メニューのテキストと下線の間隔を20pxに変更 */
    }
    .object {
        /* メニューの種類（一般、60歳以上など） */
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.18em;
        font-weight: 400;
    }
    .price {
        /* 値段 */
        font-size: 1rem;
        /* 17px */
    }
    .note {
        /* 注釈 */
        font-size: 0.824rem;
        /* 14px */
        letter-spacing: 0.14em;
        margin-top: 40px;
    }
    .note p {
        /* 注釈同士の間隔 */
        margin-top: 14px;
    }
}

.tel_wrapper {
    text-align: center;
    /* テキストを中央揃え */
    background-color: #fdfcfb;
    padding: 50px 0px;
    /* 枠内の上下の余白を50px開けた */
    margin-top: 70px;
    /* メニューとの上の間隔を70px開けた */
    border-radius: 10px;
}

.tel_wrapper p {
    /* 予約ボタンのテキスト */
    font-size: 0.941rem;
    /* 16px */
    letter-spacing: 0.08em;
    line-height: 1.8em;
    width: 100%;
}

.tel_wrapper span {
    /* 「予約優先制」の色をオレンジと太字に */
    color: #db771b;
    font-weight: 800;
}

.tel_btn {
    font-family: 'Open Sans', sans-serif;
    margin-top: 30px;
    /* テキストとの間隔を30px開けた */
    display: inline-flex;
    align-items: center;
    /* アイコンと電話番号を上下中央揃え */
    justify-content: center;
    /* アイコンと電話番号を左右中央揃え */
    background-color: #db771b;
    font-size: 1.059rem;
    /* 18px */
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #fdfcfb;
    transition: all 0.2s ease-out;
    border-radius: 9999px;
    width: 84.1%;
    max-width: 280px;
    height: 54px;
}

.tel_btn:hover {
    transform: translateY(-3px);
}

.tel_btn i {
    /* 電話アイコン */
    font-size: 1.176rem;
    /* 20px */
    margin-right: 4px;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    .tel_wrapper p {
        /* 予約ボタンのテキスト */
        font-size: 1rem;
        /* 17px */
    }
}

@media screen and (min-width: 1025px) {
    .tel_wrapper {
        margin-top: 10px;
        /* メニューとの上の間隔を100pxに変更(.menu_itemのmargin-bottomが90pxなので10px) */
        padding: 80px 0px;
        /* 枠内の上下の余白を80pxに変更 */
        border-radius: 16px;
    }
    .tel_wrapper p {
        /* 予約ボタンのテキスト */
        font-size: 1.294rem;
        /* 22px */
        letter-spacing: 0.1em;
        line-height: 1.8em;
    }
    .tel_btn {
        font-size: 1.294rem;
        /* 22px */
        letter-spacing: 0.08em;
        width: 33%;
        max-width: none;
        height: 72px;
    }
    .tel_btn i {
        /* 電話アイコン */
        font-size: 1.529rem;
        margin-right: 8px;
    }
}


/*———————————
Access 店舗情報
———————————*/

.store_image {
    /* 店舗周辺の写真 */
    width: 100%;
}

.access_info {
    /* 店舗情報エリア*/
    background-color: #8f735d;
    color: #fdfcfb;
}

.access_info_wrapper {
    padding: 70px 0;
    /* 店舗情報の上下の余白を30px開けた */
    display: flex;
    justify-content: space-between;
}

.access_info_list {
    /* 店舗名や住所ひとつひとつのかたまり */
    display: flex;
    flex-direction: column; /* タイトルと内容を縦並べ */
    gap: 30px; /* かたまり同士の間隔を30px */
}

.info_header {
    /* 情報のタイトル */
    font-size: 0.882rem;
    /* 15px */
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.6em;
}

.info_body {
    /* 情報の詳細 */
    font-size: 0.824rem;
    /* 14px */
    letter-spacing: 0.1em;
    line-height: 1.6em;
}

.car_img {
    /* 車の画像 */
    display: inline-flex;
    align-items: flex-end;
    width: 50%;
    max-width: 220px;
    min-width: 120px;
}

.car_img img {
    /* 車の画像 */
    width: 100%;
}

.googlemap {
    /* グーグルマップ */
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    .store_image {
        /* 店舗周辺の写真 */
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
    .access_info {
        /* 店舗情報エリア*/
        background-color: #8f735d;
        color: #fdfcfb;
    }
    .access_info_wrapper {
        padding: 50px 0;
        /* 店舗情報の上下の余白を30px開けた */
        justify-content: center;
        gap: 80px;
    }
    .access_info_list {
        gap: 36px;
    }
    .info_header {
        /* 情報のタイトル */
        font-size: 1.059rem;
        /* 18px */
        letter-spacing: 0.15em;
        line-height: 1.6em;
        font-weight: 600;
    }
    .info_body {
        /* 情報の詳細 */
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.15em;
        line-height: 1.6em;
    }
    .car_img {
        /* 車の画像 */
        max-width: 230px;
    }
}

@media screen and (min-width: 1025px) {
    .access_info {
        display: flex;
    }
    .store_image {
        /* 店舗周辺の写真 */
        width: 50%;
        height: auto;
        object-fit: cover;
    }
    .access_info_wrapper {
        width: 50%;
        padding: 50px 3%;
        gap: 8%;
    }
    .access_info_list {
        justify-content: center;
    }
    .info_header {
        /* 情報のタイトル */
        font-size: 1.059rem;
        /* 18px */
        letter-spacing: 0.15em;
        line-height: 1.6em;
    }
    .info_body {
        /* 情報の詳細 */
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.15em;
        line-height: 1.6em;
    }
    .googlemap {
        padding-bottom: 27.7%;
    }
}


/*———————————
キャンペーン
———————————*/

.campaign01 { /* 上のキャンペーン */
    background-color: #dad5cf;
    padding: 70px 0;
}

.campaign_card { /* ポイントカードの画像 */
    margin: 0 auto; /* 中央に配置 */
    width: 100%;
}

.campaign_card img {
    max-width: 100%;
    border-radius: 10px;
}

.campaign_title { /* キャンペーンセクションのタイトル */
    text-align: center; /* 要素を中央に */
}

.campaign_title p { /* 「ご紹介キャンペーン実施中！」 */
    font-size: 1.294rem;
    /* 22px */
    letter-spacing: 0.04em;
    font-weight: 600;
}

.campaign_title p::after { /* オレンジの線 */
    content: "";
    display: block;
    width: 36px; /* 線の長さ */
    height: 0;
    margin: 0 auto; /* 中央揃え */
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #db771b;
}

.campaign_subtitle { /* 「Campaign01」 */
    font-size: 0.882rem;
    /* 15px */
    color: #db771b;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-align: left;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.campaign_text { /* キャンペーンの説明文 */
    margin-top: 36px;
    margin-bottom: 36px;
    font-size: 1rem;
    /* 17px */
    letter-spacing: 0.04em;
    line-height: 1.8em;
    font-weight: 600;

}

.campaign_txt {
    font-size: 1.4rem;
    /* 17px */
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: center;
}

.campaign_txt_box {
    margin-top: 30px;
}

.campaign_off { /* 茶色枠で囲まれた画像 */
    width: 100%;
    margin-bottom: 30px;
}

.campaign_text_note { /* 注意書き */
    font-size: 0.765rem;
    /* 13px */
    letter-spacing: 0.1em;
    line-height: 2.0em;
    margin-bottom: 16px;
    text-align: left;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    .campaign01 { /* 上のキャンペーン */
        padding: 100px 0;
    }

    .campaign_block {
        display: flex;
        justify-content: space-between; /* 要素を横並べに */
        align-items: center; /* 上下中央揃え */
    }

    .campaign_text_area { /* テキスト部分の幅 */
        width: 70%;
        /* 620px */
    }

    .campaign_card { /* ポイントカードの画像 */
        width: 41%;
    }

    .campaign_title { /* キャンペーンセクションのタイトル */
        text-align: left;
    }

    .campaign_title p { /* 「ご紹介キャンペーン実施中！」 */
        margin-bottom: 10px;
        /* タイトルとの間隔を10px開けた */
    }
    .campaign_title p::after {
        display: none;
    }
    .campaign_subtitle {
        /* タイトル下、オレンジテキスト部分 */
        margin-bottom: 30px;
        text-align: left;
    }
    .campaign_subtitle::before { /* オレンジの線 */
        content: "";
        display: inline-block;
        width: 36px;
        vertical-align: middle;
        margin: 0 auto;
        margin-right: 12px;
        border-bottom: 1px solid #db771b;
    }
    .campaign_text { /* キャンペーンの説明文 */
        margin-top: 0px;
        margin-bottom: 20px;
        font-size: 1rem;
        /* 17px */
        letter-spacing: 0.08em;
        line-height: 1.4em;
        font-weight: 600;
    }

    .campaign_txt {
        font-size: 1.4rem;
        /* 17px */
        letter-spacing: 0.04em;
        font-weight: 600;
        text-align: left;
    }
    
    .campaign_txt_box {
        margin-top: 30px;
    }
    
    .campaign_off { /* 茶色枠で囲まれた画像 */
        width: 64.5%;
        /* 400px */
        margin-bottom: 30px;
    }
    .campaign_text_note { /* 注意書き */
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    .campaign01 { /* 上のキャンペーン */
        padding: 150px 0;
    }

    .campaign_title p { /* 「ご紹介キャンペーン実施中！」 */
        font-size: 1.647rem;
        /* 24px */
        letter-spacing: 0.08em;
        margin-bottom: 12px;
    }
    .campaign_subtitle { /* タイトル下、オレンジテキスト部分 */
        letter-spacing: 0.1em;
        margin-bottom: 40px;
    }
    .campaign_off { /* 茶色枠で囲まれた画像 */
        width: 58%;
        /* 360px */
        margin-bottom: 40px;
    }
}

.campaign02 { /* 下のキャンペーン */
    background-color: #ececed;
    padding: 70px 0;
    position: relative;
}

.campaign_illust { /* オレンジのケータイの画像 */
    text-align: center;
    width: 100%;
}

.campaign_illust img {
    max-width: 100%;
}

.campaign02_note { /* 注意書き */
    font-size: 0.765rem;
    /* 13px */
    letter-spacing: 0.1em;
    line-height: 2.0em;
    margin-bottom: 10px;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    .campaign02 { /* 下のキャンペーン */
        padding: 100px 0;
    }
    .campaign02_block {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }
    .campaign_illust { /* オレンジのケータイの画像 */
        margin: 0; /* 中央よせを消去 */
        width: 19.5vw;
    }

    .campaign_text_note_block {
        margin-top: 30px;
    }
    .campaign02_note { /* 注意書き */
        margin-top: 12px;
        margin-bottom: 0px;
    }
}

@media screen and (min-width: 1025px) {
    /* 1025px~のデザイン（PC画面） */
    .campaign02 { /* 下のキャンペーン */
        padding: 150px 0;
    }
    .campaign02_block {
        gap: 120px;
    }

    .campaign02_note { /* 注意書き */
        font-size: 0.824rem;
        /* 14px */
        letter-spacing: 0.12em;
        margin-bottom: 12px;
    }
}


/*———————————
footer フッター
———————————*/

#footer { /* フッターエリア */
    padding: 100px 0;
    background-color: #694427;
    color: #fdfcfb;
    width: 100%;
}

.inner_footer { /* フッターの幅 */
    width: calc(100% - 60px);
    margin: 0px auto;
}

.footer_link_area { /* メニューエリア */
    display: flex;
    flex-direction: column; /* 縦並べ */
    align-items: center; /* 上下中央揃え */
}

.footer_logo { /* フッターロゴ */
    width: 42.6%;
    max-width: 150px;
}

.footer_menu_item { /* 各メニュー */
    text-align: center;
    margin-top: 50px; /* 各メニューの間隔 */
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 0.882rem;
    /* 15px */
}

.footer_menu_item:hover { /* メニューをホバーしたとき */
    opacity: 0.6;
    transition: all 0.2s ease-out;
}

.footer_menu_item span { /* メニューのるび */
    display: block;
    font-size: 0.588rem;
    /* 10px */
    letter-spacing: 0.08em;
    font-weight: 200;
}

.copylight { /* コピーライト */
    font-size: 0.647rem;
    /* 11px */
    margin-top: 70px;
    letter-spacing: 0.12em;
    font-weight: 200;
    display: block;
    text-align: center;
}

@media only screen and (min-width:768px) {
    /* 768~1024pxのデザイン（タブレット画面） */
    #footer { /* フッターエリア */
        padding: 40px 0;
        width: 100%;
    }
    .inner_footer { /* フッターの幅 */
        max-width: 75%;
    }
    .footer_link_area { /* メニューエリア */
        margin-top: 80px;
        /* .copylightのmargin-topと同じ値でメニューが中央にくるよう調整 */
        flex-direction: row; /* 横並べ */
        justify-content: space-between; /* ロゴとメニューを左右に配置 */
    }
    .footer_logo { /* フッターロゴ */
        width: 160px;
    }
    .footer_menu { /* メニュー同士の間隔 */
        display: flex;
        gap: 36px;
    }
    .footer_menu_item { /* 各メニュー */
        margin-top: 0;
    }

    .copylight { /* コピーライト */
        margin-top: 80px;
        text-align: right;
    }
}

@media screen and (min-width: 1280px) {
    /* 1280px~のデザイン（PC画面） */
    #footer { /* フッターエリア */
        padding: 60px 0;
    }

    .inner_footer { /* フッターの幅 */
        max-width: 1120px;
    }
    .footer_link_area { /* メニューエリア */
        margin-top: 80px;
        /* .copylightのmargin-topと同じ値でメニューが中央にくるよう調整 */
    }
    .footer_logo { /* フッターロゴ */
        width: 16%;
        max-width: 180px;
    }
    .footer_menu { /* メニュー同士の間隔 */
        gap: 50px;
    }
}