@charset "utf-8";


/* ==============================

    サイト設定

============================== */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.04em;
    text-align: justify;
    overflow-x: hidden;
    font-family: "Zen Kaku Gothic New", sans-serif;
    /* カラー変数 */
    --basic: #301C01;
    --red: #B51800;
    --bg: #FBF6EA;
    /* 基本カラー */
    color: var(--basic);
    background-color: var(--bg);
}

.color-red {
    color: var(--red);
}

section {
    position: relative;
    margin: auto;
}

a,
a img {
    color: var(--basic);
    text-decoration: none;
    transition: all 0.2s ease 0s;
}

/*下層ページタイトル*/
.under-v {
    padding: 50px 0 50px;
    text-align: center;
    background: gray;
    color: #fff;
}

/* ==============================

    サイト設定

============================== */

.inner-s {
    max-width: 960px;
    margin: 0 auto;
}

.inner {
    width: 86%;
    max-width: 108rem;
}

.inner-l {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.sp-only {
    display: none;
}

/* 画像 */
.wp-block-image {
    overflow: hidden;
}

.img-hover {
    transition: .6s;
}

.img-hover:hover {
    opacity: .6;
}

.flex-row {
    flex-direction: row-reverse;
}

.mincho {
    font-family: "Zen Old Mincho", serif;
}

.is-layout-flex>.section-title,
.section-title {
    font-size: 5.6rem;
    font-weight: 500;
    margin-bottom: 3.2rem;
    line-height: 1.3;
}

/* 背景画像 */
.bg-text {
    position: absolute;
}

/* ボタン */
.btn-more {
    width: 23.6rem;
    height: 5.6rem;
}

.wp-block-button {
    width: 100%;
}

.wp-block-button .wp-block-button__link {
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 1.6rem 2rem 1.6rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-red>.wp-block-button .wp-block-button__link {
    border: .1rem solid var(--red);
    color: var(--red);
}

.btn-white>.wp-block-button .wp-block-button__link {
    border: .1rem solid #fff;
    color: #FFF;
}

.btn-red:hover .wp-block-button__link {
    background-color: var(--red);
    color: #fff;
}

.btn-white:hover .wp-block-button__link {
    background-color: #fff;
    color: var(--red);
}

/* ハイライト装飾 */
.highlight {
    position: relative;
    z-index: 2;
}

.highlight::before {
    position: absolute;
    width: 124%;
    bottom: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;

}

.purpose-highlight::before {
    content: url('../img/purpose-highlight.svg');
}

.intro-highlight-taste::before {
    content: url('../img/intro-highlight-taste.svg');
    width: 136%;
}

.intro-highlight-cost::before {
    content: url('../img/intro-highlight-cost.svg');
    width: 112%;
}

.intro-highlight-fan::before {
    content: url('../img/intro-highlight-fan.svg');
    width: 98%;
}

.delivery-highlight-taste::before {
    content: url('../img/delivery-highlight-taste.svg');
    bottom: -4.4rem;
}

.delivery-highlight-delivery::before {
    content: url('../img/delivery-highlight-delivery.svg');
    bottom: -4.4rem;
}

.sp {
    display: none;
}


/* ==============================

　　固定メニュー

　============================== */

.fix_nav.sp_disp.sp {
    position: fixed;
    z-index: 300;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: black;
}

.wp-block-group.fix_nav.sp_disp-inner {
    gap: 0;
}

.kotei-menu {
    color: #fff;
    padding: 5px 0;
    text-align: center;
    border-right: 0.5px solid #fff;
    position: relative;
}

.kotei-menu:last-child {
    border-right: none;
}

/*メニュー数*/

.sp_disp-3 .kotei-menu {
    width: 33.3333333333%;
}

/* ==============================

ヘッダーの設定

　============================== */

header {
    width: 100%;
    transition: .6s;
}

.header-inner {
    transition: .6s;
}

.header-inner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 300;
    margin: 2.4rem auto 0 auto;
    width: 94%;
}

.logo {
    width: 16rem;
    transition: all 0.3s;
}

.header-inner-menu {
    gap: 4rem;
    font-weight: 500;
}

.wp-block-navigation-item::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: .1rem;
    background: #563304;
    bottom: -.1rem;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.wp-block-navigation-item:hover::after {
    transform: scale(1, 1);
}

header.scroll-nav .header-inner {
    margin-top: 1.6rem;
}

header.scroll-nav .header-inner .logo {
    width: 12rem;
}

.wp-block-navigation .wp-block-navigation-item {
    background-color: unset !important;
}

header.scroll-nav .wp-block-navigation ul {
    padding: 1.2rem 2.4rem;
    border-radius: .4rem;
    background-color: rgba(255, 252, 245, 0.7);
    backdrop-filter: blur(10px);
}

header.scroll-nav>.header-inner>.wp-block-group__inner-container>.wp-block-group {
    align-items: flex-start;
}

/* ==============================

    ハンバーガーメニュー

　============================== */

/*PC版削除の場合*/
.nav-wrapper {
    display: none;
}


/* ハンバーガーメニューの全体 */
.hamburger__line {
    display: block;
    background-color: #fff;
    transition: all 0.3s;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
}



/* ハンバーガーメニューが開いたときの変化 */
.nav-wrapper.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 45px;
}

.nav-wrapper.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 45px;
}

.nav-wrapper.open .hamburger__line--2 {
    opacity: 0;
}

.nav-wrapper.open .hamburger {
    z-index: 300;
}


.nav-wrapper .sp-nav-inner ul.wp-block-navigation__container.hamburger-menu.wp-block-navigation li.wp-block-navigation-item a {
    font-size: 2.4rem;
    margin-bottom: 4rem;
}

.nav-wrapper .sp-nav-inner {
    display: block;
    height: 215px;
    max-width: fit-content;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    position: absolute;
    bottom: 159px;
}

.black-bg.active {
    visibility: visible;
    opacity: 1;
}

.nav-wrapper .sp-nav-inner ul.wp-block-navigation__container.hamburger-menu.wp-block-navigation {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
}

.sp-nav-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 250;
    transition: all 0.3s ease in-out;
    padding: 57px 20px 0;
    background-size: cover;
    background-color: var(--bg);
}

.nav-wrapper.open {
    z-index: 1;
}

.nav-wrapper.open .sp-nav-wrap {
    display: block;
}



/* ==============================
    
    メインビジュアル
    
　============================== */

/*メインビジュアル画像*/

.mainv {
    z-index: 0;
    position: relative;
    height: 86vh;
    overflow: hidden;
}

.mainv>.wp-block-group__inner-container {
    display: flex;
    justify-content: flex-end;
}

.slider-01 {
    position: relative;
    width: 84%;
    overflow: hidden;
}

.slider-01,
.slider-01 .slide figure.wp-block-image.size-full,
.slider-01 .slide figure.wp-block-image.size-full img {
    height: 86vh;
}

.wp-block-group.next-prev {
    display: none;
}

/*メインビジュアルキャッチコピー*/
.mainv>.wp-block-group__inner-container {
    position: relative;
}

figure.wp-block-image.size-full.maincopy {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 10%;
    max-width: 21rem;
    height: auto;
}

.subcopy {
    position: absolute;
    z-index: 20;
    width: 4%;
    max-width: 3.8rem;
    top: 48%;
    left: 43%;
    transform: translate(-50%, -50%);
}

.sp-maincopy,
.sp-subcopy {
    display: none;
}

.catch-hor {
        width: 56%;
    max-width: 60rem;
    margin: auto;
    margin-top: -5%;
    position: sticky;
    z-index: 2;
}

.bg-text-mv {
    width: 26%;
    position: absolute;
    top: 3%;
    left: 23%;
    opacity: 0.5;
}

/* フローティングボタン */
.floating-btn {
    width: 6rem;
    position: fixed;
    right: 0;
    bottom: 3.2rem;
    z-index: 50;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: translateX(4px);
}


/* ==============================

　　パーパス

　============================== */
.purpose {
    margin-top: 16rem;
}

.purpose-inner {
    padding: 3.2rem 0;
    background-image: url('../img/porpose-img.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center right;
}

.is-layout-flex>.purpose-content {
    width: 33%;
    min-width: 48rem;
    margin-left: 12.5%;
    gap: 0;
}

.purpose-text {
    font-size: 1.8rem;
    gap: 2.4rem;
}

.purpose-img {
    display: none;
}

.is-layout-flex>.bg-text-purpose {
    position: sticky;
    width: 51%;
    margin-left: 12.5%;
}

/* ==============================

　　ポイント

　============================== */
.point {
    margin-top: 24rem;
    width: 100%;
}

.point>.wp-block-group__inner-container {
    width: 100%;
    background-color: var(--red);
    padding: 10.4rem 0 7.2rem 0;
    margin: auto;
}

.point-list {
    margin: auto;
    justify-content: space-between;
}

.point-item {
    width: 33.3333%;
    max-width: 31.8rem;
    gap: 0;
}

.point-item>.wp-block-image {
    width: 90%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: sticky;
    z-index: 10;
    border: .3rem solid #D8A10C;
}

.is-layout-flex>.point-text {
    background-color: #fff;
    border-radius: 0 4rem 0 4rem;
    width: 100%;
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 1.5;
    margin-top: -4rem;
    padding-top: 2rem;
    border: .3rem solid #D8A10C;
}

.bg-text-point {
    width: 100rem;
    position: absolute;
    top: -6.6rem;
    right: 3%;
    margin-left: 3%;
}

/* ==============================

　　特徴

　============================== */
.features {
    margin-top: 18.4rem;
    margin-right: 4%;
    justify-content: space-between;
}

.features-img img {
    aspect-ratio: 2/1;
    border-radius: 0 4rem 4rem 0;
}

/* ==============================

　　紹介

　============================== */
.introduction {
    margin-top: 16rem;
    gap: 8rem;
}

.introduction-list {
    justify-content: space-between;
}

.introduction-list:nth-child(2n) {
    flex-direction: row-reverse;
}

.introduction-content {
    width: 44%;
    gap: 0;
}

.is-layout-flex>.introduction-title {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 2.4rem;
    text-align: left;
}

.is-layout-flex>.introduction-text {
    margin-bottom: 3.2rem;
}

.introduction-img {
    width: 50%;
    border-radius: 0 4rem 0 4rem;
    aspect-ratio: 1.414/1;
}


/* ==============================

　　お知らせ

　============================== */

.news {
    width: 90%;
    max-width: 144rem;
    margin-top: 18.4rem;
    background-image: url('../img/news-bg.png');
}

.section-title-news {
    padding-top: 5.6rem;
}

.news-img {
    width: 94%;
    margin: 4rem;
    padding-bottom: 4rem;
}

.news-bg-container {
    gap: 0;
}

.bg-text-news {
    width: 33rem;
    top: -7.5rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* ==============================

　　デリバリー

　============================== */
.delivery {
    margin-top: 34rem;
}

.delivery-img {
    border-radius: 0 4rem 0 4rem;
}

.delivery-img-ver {
    position: absolute;
    top: 50%;
    transform: translateY(-72%);
    -webkit-transform: translateY(-72%);
    -ms-transform: translateY(-72%);
    left: 3%;
    width: 23%;
    max-width: 44.4rem;
    aspect-ratio: 3/4;
}

.delivery-img-hor {
    position: absolute;
    top: 50%;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    left: 15%;
    width: 28%;
    max-width: 53rem;
    aspect-ratio: 3/2;
}

.delivery-container {
    width: 100%;
    background-color: var(--red);
    color: #fff;
    padding: 9.6rem 0;
}

.delivery-container>.wp-block-group__inner-container {
    padding-right: 4%;
    display: flex;
    justify-content: flex-end;
}

body .delivery-content {
    width: 54%;
    gap: 0;
}

.is-layout-flex>.section-title-delivery {
    line-height: 1.75;
}

.delivery-content>.delivery-text {
    margin-bottom: 4rem;
}

.bg-text-delivery {
    width: 56rem;
    right: 5%;
    top: -7.7rem;
}

/* ==============================

　　cta

　============================== */
.cta {
    margin-top: 28rem;
}

.cta>.wp-block-group__inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-btn {
    width: 50%;
    height: 10.3rem;
    position: relative;
    transition: transform 0.5s ease;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: calc(100% - 1.6rem);
    height: calc(100% - 1.6rem);
    border: .1rem solid #fff;
    z-index: 2;
    pointer-events: none;
}

.cta-btn>.wp-block-button {
    height: 100%;
}

.cta-btn>.wp-block-button .wp-block-button__link {
    background-color: var(--red);
    display: block;
    position: sticky;
    padding: 0;
    z-index: 0;
}

.cta-btn>.wp-block-button .wp-block-button__link>.fa-solid {
    position: absolute;
    right: 9.2%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.cta-btn:hover {
    cursor: pointer;
    transform: scale(1.03);
}

/* ==============================

　　インスタ

　============================== */
.insta {
    width: 94%;
    margin: 17.6rem auto 0 auto;
}

.sbi {
    position: sticky;
    z-index: 10;
    max-width: 108rem;
}

#sb_instagram #sbi_images .sbi_item {
    border: .2rem solid #B5882E;
    aspect-ratio: 1;
}

#sb_instagram .sbi_follow_btn a {
    background-color: var(--red) !important;
    border-radius: 0 !important;
}

.bg-text-insta {
    width: 70rem;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.btn-insta {
    margin: auto;
}

/* ==============================

　　フッター

　============================== */
footer {
    margin-top: 16rem;
}

.map-container {
    width: 100%;
    background: linear-gradient(to bottom, transparent 50%, #B5882E 50%);
    display: flex;
    justify-content: center;
}

.map {
    width: 86%;
    max-width: 108rem;
    aspect-ratio: 27/10;
    border: 0;
}

.footer-inner-container {
    background-color: #B5882E;
    color: #fff;
}

.footer-inner {
    margin: auto;
    padding-top: 5.6rem;
}

.footer-title {
    /* font-family: "Zen Old Mincho", serif; */
    font-size: 4.8rem;
    margin-bottom: 8rem;
}

.footer-content {
    margin-bottom: 8rem;
}

.footer-content>.wp-block-group__inner-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info-list {
    width: 48%;
}

.footer-info-item {
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
}

.footer-info-title {
    width: 26%;
}

.footer-info-text {
    width: 74%;
}

.footer-link-delivery>.wp-block-group__inner-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.footer-link-delivery__item {
    width: 20rem;
    height: 8rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-link-delivery__item:hover {
    cursor: pointer;
    opacity: .8;
}

.copyright {
    font-size: 1.2rem;
    text-align: right;
    padding-bottom: 3.2rem;
}

/* ==============================

　　下層

　============================== */
/*---------------
 共通
---------------*/
.lowpage-mv-inner {
    padding-top: 20vh;
}

.lowpage-mv-inner>.wp-block-group__inner-container {
    position: relative
}

.lowpage-mv>.wp-block-group__inner-container {
    margin: 0 3%;
}

.bg-text-lowpage {
    position: absolute;
    top: -16%;
    left: 11%;
}

.lowmv-img {
    position: relative;
}

.page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
}

.lead {
    margin-top: 16rem;
    margin-left: 12%;
}

.lead-inner .wp-block-group__inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-content {
    width: 42%;
    max-width: 58rem;
}

.is-layout-flex>.lead-title {
    line-height: 1.5;
}

.lead-img-container {
    width: 50%;
}

.lead-img-container .wp-block-group__inner-container {
    position: relative;
}

.lead-img {
    aspect-ratio: 1.414/1;
}

.section-title-white {
    color: #ffffff;
}

.point .wp-block-group__inner-container {
    padding: 5.8rem 0 12rem 0;

}

.number-en {
    position: absolute;
    top: -2.8rem;
    left: .6rem;
    font-family: "Marcellus", serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.024em;
    color: #D8A10C;
}

/*---------------
 一番人気！唐揚げ 
---------------*/
/* FV */
.bg-text-karaage {
    width: 80rem;
}

/* リード */
.karaagelead-highlight::before {
    content: url('../img/highlight-karaage-lead.svg');
    width: 100%;
}

/* 人気な理由 */
.hit-list {
    margin: auto;
    padding-top: 3.2rem;
    gap: 1.8%;
}

.hit-item {
    position: relative;
    background-color: #fff;
    border-radius: 0 4rem 0 4rem;
    width: 25%;
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-text-hit {
    width: 90rem;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.highlight-hit-method-pari::before {
    content: url('../img/highlight-reason1.svg');
    width: 100%;
}

.highlight-hit-method-zyuwa::before {
    content: url('../img/highlight-reason2.svg');
    width: 100%;
}

.highlight-hit-spice::before {
    content: url('../img/highlight-reason3.svg');
}

.highlight-hit-sauce::before {
    content: url('../img/highlight-reason4.svg');
}

.highlight-hit-price::before {
    content: url('../img/highlight-reason5.svg');
}

.highlight-hit-method-pari::before,
.highlight-hit-method-zyuwa::before,
.highlight-hit-spice::before,
.highlight-hit-method-pari::before,
.highlight-hit-price::before {
    width: 100%;
    bottom: -1.6rem;
}



/* おいしさの秘密 */
.secret {
    margin-top: 18.4rem;
}

.bg-text-secret {
    margin: 0 auto 1.6rem auto;
    width: 78rem;
}

.secret-list {
    gap: 8rem;
}

.secret-title {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
}

h3[data-name]::before {
    display: inline-block;
    font-family: "Zen Old Mincho", serif;
    font-size: 4rem;
    color: #D8A10C;
    letter-spacing: 0;
    margin-right: .8rem;
}

.secret-img .wp-block-image {
    border-radius: 0 4rem 0 4rem;
    aspect-ratio: 1.414/1;
}

/* メニュー */
.bg-text-menu {
    width: 35rem;
    top: -4.3rem;
}

.menu-inner {
    margin: auto;
    padding-bottom: 8rem;
}

.section-title-menu {
    padding-top: 5.6rem;
    margin-bottom: .4rem;
}

.menu-rank-img figure {
    width: 160%;
    position: relative;
    left: -60%;
    aspect-ratio: 1.618/1;
}

.menu-rank-img-right figure {
    left: 0;
    right: -60%;
}

.menu-rank-number {
    font-size: 2.4rem;
    color: #D8A10C;
    margin-bottom: .4rem;
}

.menu-rank-title {
    font-size: 4rem;
    margin-bottom: 1.6rem;
}

.menu-rank-price {
    font-size: 2rem;
    gap: 3.2rem;
    margin-bottom: 4rem;
}

.pop-list {
    gap: 1.6rem;
    margin-top: 2.4rem;
}

.pop-item {
    background-color: var(--red);
    color: #fff;
    padding: .4rem 2.4rem;
    border-radius: 0 1.2rem;
}

.menu-list {
    margin-top: 5.6rem;
    flex-wrap: wrap !important;
    gap: 1%;
    row-gap: 4rem;
}

.menu-item {
    width: 24%;
}

.menu-img {
    aspect-ratio: 1.414 / 1;
}

.menu-title {
    font-size: 2rem;
}

.menu-price {
    font-size: 1.4rem;
}

.takeout {
    padding-top: 12rem;
}

.takeout-content {
    background-color: #fff;
    border: .6rem solid var(--red);
    padding: 4rem 0 4.8rem 5%;
}

.takeout-title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
}

.takeout-menu-item {
    width: 100%;
}

.takeout-menu-title {
    font-size: 2rem;
    width: 16rem;
}

.takeout-menu-img {
    position: relative;
}

.takeout-menu-img figure {
    position: absolute;
    width: 150%;
    right: 5%;
    top: -40%;
}

/*---------------
 お弁当 
---------------*/
/* FV */
.bg-text-bento {
    width: 55rem;
}

/* リード */
.bentolead-highlight-top::before {
    content: url('../img/highlight-bento-lead-top.svg');
    width: 100%;
}

.bentolead-highlight-bottom::before {
    content: url('../img/highlight-bento-lead-bottom.svg');
    width: 100%;
}

.bento-lead-pop {
    display: inline-block;
    background-color: var(--red);
    color: #fff;
    padding: .2rem 2.4rem;
    border-radius: 0 1.2rem;
    position: absolute;
    top: -1.8rem;
    right: 3%;
}


/* うれしいポイント */
.bg-text-goodpoint {
    width: 79rem;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.goodpoint-list {
    gap: 5%;
}

.goodpoint-item {
    width: 100%;
    max-width: 44rem;
    align-items: center;
}

.goodpoint-content {
    background-color: #fff;
    border-radius: 0 4rem 0 4rem;
    width: 100%;
    margin-top: -4rem !important;
    padding: 5.4rem 6% 3.2rem;
    border: .3rem solid #D8A10C;
}

.goodpoint-content .wp-block-group__inner-container {
    padding: 0;
}

.goodpoint-title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
}

/* お弁当メニュー */
.bento-menu-list {
    gap: 2.4rem;
}

.bento-menu-item {
    width: 100%;
    min-width: 24rem;
    gap: 1.2rem;
}

.bento-menu-price {
    align-self: flex-end;
}

/*---------------
 キムチ 
---------------*/
/* FV */
.bg-text-kimuchi {
    width: 75rem;
}

/* リード */
.kimuchilead-highlight::before {
    content: url('../img/highlight-kimuchi-lead.svg');
    width: 100%;
}


/* 当店の自家製キムチの特徴 */
.bg-text-features {
    width: 56rem;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.kimuchi-features-list {
    gap: 6%;
}

.kimuchi-features-item {
    width: 100%;
    height: auto;
    padding: 4.8rem 6% 3.2rem;
    gap: 1.6rem;
    justify-content: flex-start;
}

.kimuchi-features-title {
    font-size: 2.4rem;
    font-weight: 500;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* キムチメニュー */
.kimuchi-rank-item {
    justify-content: space-between;
}

.kimuchi-rank-list {
    margin-top: 5.6rem;
    gap: 8rem;
}

.kimuchi-rank-img figure {
    aspect-ratio: 1.414/1;
}

.menu-other {
    margin-top: 4rem;
}

.other-kimuchi-list {
    max-width: 90rem;
    margin: 5.6rem auto 0;
}

.other-kimuchi-item {
    gap: 12%;

}

.other-kimuchi-title {
    font-size: 2rem;
    width: 16.8rem;
}

.other-kimuchi-price {
    gap: 1.6rem;
}

/*---------------
 店舗情報
---------------*/
/* FV */
.bg-text-access {
    width: 61rem;
}


/* 店舗情報 */
.store {
    margin-top: 16rem;
}

.store>.wp-block-group__inner-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-name {
    font-size: 3.2rem;
    margin-bottom: 4rem;
}

.store-info {
    width: 60%;
    min-width: 42rem;
}

/* 道のり */
.bg-text-howto {
    width: 97rem;
    top: -7.5rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.access-list {
    justify-content: center;
    margin-top: 7.2rem;
    margin-bottom: 8rem;
    gap: 0;
    row-gap: 6.4rem;
}

.access-item {
    position: relative;
    width: 27%;
}

.access-item>.wp-block-group__inner-container figure {
    aspect-ratio: 1.414/1;
}

.access-text {
    margin-top: 1.6rem;
}

.chevron-right {
    width: 4.8rem;
    padding: 0 1.6rem;
    margin-top: 9% !important;
}

.access-map .map {
    width: 100%;
}

/* 求人情報 */
.recruit {
    padding-top: 34rem;
}

.recruit-text {
    margin-bottom: 2.4rem !important;
}

.recruit-list {
    gap: 1.6rem;
}

.recruit-item-title {
    display: inline-block;
    background-color: #fff;
    color: var(--red);
    padding: .2rem 1.6rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.recruit-img {
    top: 70%;
}

.bg-text-recruit {
    width: 50rem;
    top: 29.5rem;
}



/* ==============================

    スマホ　

============================== */

@media screen and (max-width: 1100px) {

    /*ハンバーガーメニュー表示*/
    .nav-wrapper {
        display: block;
    }

    header.scroll-nav .wp-block-navigation ul {
        padding: 0;
        background-color: unset;
    }

    body .is-layout-flex>.pc,
    .page-top {
        display: none;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner {
        width: 90%;
    }

    .is-layout-flex>.section-title,
    .section-title {
        font-size: 4rem;
    }

    .slider-01 {
        width: 100%;
    }

    .slider-01,
    .slider-01 .slide figure.wp-block-image.size-full,
    .slider-01 .slide figure.wp-block-image.size-full img {
        aspect-ratio: auto;
    }

    .slide>.wp-block-group__inner-container figure {
        position: relative;
    }

    .slide>.wp-block-group__inner-container figure img {
        position: absolute;
        left: 0;
    }


    /*メインビジュアルキャッチコピー*/
    figure.wp-block-image.size-full.maincopy {
        width: 20%;
        max-width: 16rem;
    }

    .subcopy {
        width: 5%;
        max-width: 3.2rem;
        top: 48%;
        left: 38%;
        top: 48%;
        z-index: 2;
    }

    .bg-text-mv {
        top: 3%;
        left: unset;
        right: 23%;
        width: 40%;
    }

    /* フローティングボタン */
    .floating-btn {
        width: 4.2rem;
        bottom: 3.2rem;
    }

    /*ハンバーガーメニューのサイズ*/

    .nav-wrapper.open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 24px;
    }

    .nav-wrapper.open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 24px;
    }


    .hamburger:after {
        font-size: 12px;
        letter-spacing: 0;
        bottom: 5px;
    }

    .hamburger-wrapper,
    .hamburger {
        width: 5.2rem;
        height: 5.2rem;
    }

    .hamburger {
        position: relative;
        border-radius: 50%;
        background-color: var(--red);
        border: .1rem solid var(--bg);
    }

    .hamburger__line {
        width: 2.8rem;
        height: 2px;
    }

    p.hamburger__line.hamburger__line--1 {
        top: 1.4rem;
    }

    p.hamburger__line.hamburger__line--2 {
        top: 2.4rem;
    }

    p.hamburger__line.hamburger__line--3 {
        top: 3.4rem;
    }

    .nav-wrapper .sp-nav-inner ul.wp-block-navigation__container.hamburger-menu.wp-block-navigation li.wp-block-navigation-item a {
        margin-bottom: 0;
    }

    .wp-block-navigation-item {
        margin-bottom: 4rem;
    }

    /* ヘッダー */
    header {
        position: fixed;
        z-index: 100;
    }

    .nav-wrapper {
        padding: 3.2rem 5% 0 0;
    }

    .header-inner {
        width: auto;
        margin-top: 1.6rem;
        left: 5%;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
    }

    body .sp-header-btn {
        align-items: flex-start;
        gap: 1.6rem;
        justify-content: flex-end;
    }

    .sp-header-btn-circle {
        width: 5.2rem;
        height: 5.2rem;
        border: .1rem solid var(--red);
        border-radius: 50%;
        color: var(--red);
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--bg);
    }

    .sp-header-btn-icon {
        font-size: 2.4rem;
        line-height: 1;
    }

    .sp-header-btn-text {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--red);
        letter-spacing: 0;
    }

    .sp-header-btn-text-ja {
        letter-spacing: 0.04em;
    }

    .sp-header-btn-text-en {
        letter-spacing: -0.05em;
    }

    .logo {
        width: 14.4rem;
    }

    /* 追従ボタン */
    .floating-btn {
        width: 5rem;
    }

    /* パーパス */
    .purpose {
        margin-top: 8rem;
        width: 90%;
        max-width: 66rem;
    }

    .purpose-inner {
        align-items: center;
        background-image: none;
    }

    .purpose>.wp-block-group__inner-container {
        flex-direction: column;
    }

    .is-layout-flex .purpose-content {
        width: 100%;
        margin-left: 0;
        align-items: center;
        margin-bottom: 4rem;
    }

    .purpose-text {
        font-size: 1.6rem;
    }

    .purpose-img {
        display: block;
        width: 100%;
        aspect-ratio: 1.414/1;
    }

    .is-layout-flex>.bg-text-purpose {
        margin-left: 0;
        align-self: center;
    }

    /* ポイント */
    .point {
        margin-top: 16rem;
    }

    .point-list {
        gap: 1.2rem;
    }

    .point-item {
        width: 100%;
    }

    .bg-text-point {
        margin: 0;
        width: 56rem;
        top: -3.8rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .is-layout-flex>.point-text {
        height: 22rem;
    }

    /* 特徴 */
    .features {
        margin-top: 14.4rem;
        flex-direction: column;
        gap: 0;
        margin-right: 5%;
    }

    .features>.wp-block-group__inner-container {
        flex-direction: column;
        margin-right: 5%;
    }

    body .is-layout-flex>.features-img {
        width: 80%;
        align-self: flex-start;
        flex-basis: 100%;
    }

    body .is-layout-flex>.features-text {
        width: 90%;
        align-self: flex-end;
    }

    /* 紹介 */
    .introduction {
        margin-top: 12rem;
        max-width: 48rem;
    }

    .introduction-list {
        flex-direction: column-reverse;
        gap: 2.4rem;
    }

    .introduction-list:nth-child(2n) {
        flex-direction: column-reverse;
    }

    body .introduction-content {
        align-items: center;
        width: 100%;
    }

    .is-layout-flex>.introduction-title {
        text-align: center;
    }

    .introduction-img {
        width: 100%;
    }

    /* お知らせ */
    .news {
        width: 96%;
        margin-top: 13.6rem;
    }

    .section-title-news {
        padding-top: 4rem;
        margin-bottom: 3.2rem;
    }

    .news-img {
        margin: 0 5%;
        padding-bottom: 3.2rem;
    }

    .bg-text-news {
        width: 20rem;
        top: -5rem;
    }

    /* デリバリー */
    .delivery {
        margin-top: 24rem;
    }

    .delivery-img-ver {
        width: 39%;
        max-width: 28rem;
        top: -50%;
        transform: translateY(50%);
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
    }

    .delivery-img-hor {
        width: 45%;
        max-width: 32rem;
        top: 6%;
        left: 30%;
    }

    .delivery-container {
        padding: 29rem 0 6.4rem 0;
    }

    .delivery-container>.wp-block-group__inner-container {
        padding: 0;
        width: 90%;
        max-width: 42rem;
        margin: 0 auto;
        display: block;
    }

    body .delivery-content {
        width: 100%;
        align-items: center;
    }

    body .section-title-delivery {
        text-align: center;
    }

    .bg-text-delivery {
        width: 32rem;
        right: 5%;
        top: -4rem;
    }

    /* cta */
    .cta {
        margin-top: 9.6rem;
    }

    .cta>.wp-block-group__inner-container {
        flex-direction: column;
        gap: 3.2rem;
    }

    .cta-btn {
        width: 68%;
        height: 9rem;
        max-width: 48rem;
    }

    /* insta */
    .insta {
        margin-top: 12rem;
    }

    .bg-text-insta {
        width: 40rem;
        max-width: 100%;
        top: -5.5rem;
    }

    /* フッター */
    footer {
        margin-top: 12rem;
    }

    .map {
        border: 0;
        width: 90%;
        aspect-ratio: 20 / 14;
    }

    .footer-inner {
        padding-top: 3.2rem;
    }

    .footer-inner>.wp-block-group__inner-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-title {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }

    .footer-content {
        width: 100%;
        max-width: 46rem;
        margin-bottom: 5.6rem;
    }

    .footer-content>.wp-block-group__inner-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-info-list {
        margin-bottom: 3.2rem;
        width: 100%;
    }

    body .footer-info-item {
        font-size: 1.6rem;
        align-items: flex-start;
    }

    .copyright {
        padding-bottom: 2.4rem;
        align-self: flex-end;
    }

    /*---------------
 下層共通
---------------*/
    .lowpage-mv-inner {
        padding-top: 18.4rem;
    }

    .bg-text-lowpage {
        left: 16%;
        top: -18%;
    }

    .page-title {
        width: 7.2rem;
    }

    .lead {
        margin: 8rem auto 0 auto;
        width: 90%;
        max-width: 48rem;
    }

    .lead-inner .wp-block-group__inner-container {
        flex-direction: column;
    }

    .lead-content {
        width: 100%;
        margin-bottom: 4rem;
        align-items: center !important;
    }

    .lead-img-container {
        width: 100%;
    }

    .is-layout-flex>.lead-title {
        text-align: center;
        letter-spacing: -0.02em;
    }

    /*---------------
 一番人気！唐揚げ 
---------------*/
    /* FV */
    .bg-text-karaage {
        width: 50rem;
    }

    .page-title-karaage {
        width: 10.83rem;
    }

    /* リード */
    .karaage-lead-inner {
        padding: 0;
    }


    /* 人気な理由 */

    .point .wp-block-group__inner-container {
        padding: 4rem 0 5.6rem 0;
    }

    .hit-list {
        max-width: 58rem;
        flex-wrap: wrap !important;
        justify-content: center;
        column-gap: 5.8%;
        row-gap: 4rem;
    }

    .hit-item {
        min-width: 24rem;
    }

    .bg-text-hit {
        width: 57rem;
        top: -2.7rem;
    }

    /* おいしさの秘密 */
    .secret {
        margin-top: 16rem;
    }

    .bg-text-secret {
        width: 50rem;
    }

    .secret-list {
        gap: 5.6rem;
    }

    h3[data-name]::before {
        font-size: 2.4rem;
    }

    /* メニュー */
    .bg-text-menu {
        width: 22.4rem;
        top: -2.7rem;
    }

    .section-title-menu {
        padding-top: 3.2rem;
    }

    .menu-rank-img figure {
        width: 130%;
        left: -30%;
    }

    .menu-rank-img-right figure {
        left: 0;
        right: -30%;
    }

    .menu-rank-number {
        font-size: 1.8rem;
    }

    .menu-rank-title {
        margin-bottom: .4rem;
    }

    .menu-rank-price {
        font-size: 1.6rem;
        margin-bottom: 2.4rem;
        gap: 2.4rem;
    }

    .pop-list {
        font-size: 1.4rem;
        flex-wrap: wrap !important;
    }

    .menu-list {
        column-gap: 5%;
        justify-content: center;
    }

    .menu-item {
        width: 40%;
    }

    .menu-price {
        flex-wrap: wrap !important;
    }

    .takeout {
        padding-top: 8rem;
    }


    .takeout-title {
        font-size: 2rem;
        margin-bottom: 2.4rem;
    }

    .takeout-menu-img figure {
        width: 120%;
        top: -20%;
    }


    /*---------------
 お弁当 
---------------*/
    /* FV */
    .bg-text-bento {
        width: 34rem;
    }

    /* リード */
    .bento-lead-inner {
        padding: 0;
    }

    .sp-bento-lead-img .wp-block-group__inner-container {
        position: relative;
    }

    .bento-lead-pop {
        display: none;
    }

    .sp-bento-lead-pop {
        display: block;
    }

    /* うれしいポイント */
    .bg-text-goodpoint {
        width: 50rem;
        top: -2.6rem;
    }

    .goodpoint-list {
        flex-direction: column;
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }

    .goodpoint-item {
        margin: auto !important;
    }

    /* お弁当メニュー */
    .bento-menu-item {
        width: 100%;
    }

    /*---------------
 キムチ 
---------------*/
    /* FV */
    .bg-text-kimuchi {
        width: 46.5rem;
    }

    /* 当店の自家製キムチの特徴 */
    .bg-text-features {
        width: 35.8rem;
        top: -2.6rem;
    }

    .kimuchi-features-list {
        grid-template-columns: 1fr !important;
        max-width: 48rem !important;
        gap: 4rem;
    }

    /* キムチメニュー */
    .is-layout-flex.other-kimuchi-item {
        gap: 5%;
        align-items: flex-start;
    }

    .wp-container-core-group-is-layout-ad2f72ca.other-kimuchi-price {
        flex-wrap: wrap;
        row-gap: 0;
    }


    /*---------------
 店舗情報
---------------*/
    /* FV */
    .bg-text-access {
        width: 37.8rem;
    }


    /* 店舗情報 */
    .store {
        margin-top: 8rem;
    }

    /* 道のり */
    .bg-text-howto {
        width: 62rem;
        top: -2.8rem;
    }

    .access-item {
        width: 40%;
    }

    /* 求人情報 */
    .recruit {
        padding-top: 24rem;
    }

    .recruit-container .wp-block-group__inner-container {
        max-width: 48rem;
    }

    .recruit-img-ver {
        top: calc(-36% + 24rem);

    }

    .recruit-img-hor {
        top: calc(5% + 24rem);

    }

    .bg-text-recruit {
        top: 21rem;
    }
}

/* ==============================

    タブレット縦横

============================== */

@media (max-width: 1650px) and (min-width: 710px) {

    .fix_nav.sp_disp.sp {
        display: none;
    }

    .inner-s,
    .inner-l {
        width: 90%;
        max-width: 90%;
    }

}


/* ==============================

    タブレット縦のみ

============================== */

@media (max-width: 1100px) and (min-width: 710px) {


    /*ハンバーガーメニューサイズ*/


    .tel-menu-flex {
        max-width: 374px;
    }

    .hamburger:after {
        font-size: 16px;
    }


    .fix_nav.sp_disp.sp {
        display: none;

    }
}


@media screen and (max-width: 710px) {

    /* 下層ファーストビュー */
    .lowmv-img {
        height: 40vh;
    }

    .lowmv-img {
        height: 40vh;
    }

    .lowmv-img img {
        height: 100% !important;
        object-fit: cover;
    }

    /* 唐揚げ-テイクアウト */
    .takeout-content {
        position: relative;
        flex-direction: column;
        padding: 4rem 5% 6.4rem;
    }

    /* 唐揚げ-おいしさの秘密 */
    .secret {
        max-width: 48rem;
    }

    /* 唐揚げ-メニュー */
    .menu-rank-list {
        margin-top: 3.2rem;
        gap: 8rem;
    }

    .menu-rank-item {
        gap: 0;
    }

    .menu-rank-img figure {
        width: 100%;
        left: 0;
    }

    .menu-rank-img-right figure {
        right: 0;
    }

    .pop-list {
        gap: .8rem;
    }

    .menu-item {
        width: 47.5%;
    }


    .takeout-title {
        font-size: 2rem;
        margin-bottom: 2.4rem;
    }

    .takeout-menu-img {
        position: absolute;
        flex-basis: 30%;
        width: 50%;
        max-width: 20rem;
        bottom: -32%;
        right: -10%;
    }

    .takeout-menu-img figure {
        position: unset;
        width: 100%;
    }

    /* キムチ-メニュー */
    .wp-container-core-group-is-layout-baef362d.other-kimuchi-list {
        grid-template-columns: 1fr;
        max-width: 35rem;
        gap: 1.6rem;
    }

    .other-kimuchi-title {
        font-size: 1.6rem;
    }
}


/* ==============================

    スマホのみ（適宜）

============================== */
@media screen and (max-width: 560px) {
    .header-inner {
        width: 8.4rem;
    }

    .mainv,
    .mv-fix-container,
    .slider-01,
    .slider-01 .slides,
    .slider-01 .slide figure.wp-block-image.size-full,
    .slider-01 .slide figure.wp-block-image.size-full img {
        height: 70vh;
    }

    figure.wp-block-image.size-full.maincopy {
        width: 20%;
        min-width: 12rem;
        top: 52%;
        left: 50%;
    }

    .maincopy {
        display: none;
    }

    .middle-subcopy {
        display: none;
    }

    .subcopy {
        min-width: 2.8rem;
        top: 52%;
        left: 30%;
    }

    .mv {
        position: relative;
    }

    .sp-maincopy {
        display: block;
        position: absolute;
    }

    .sp-maincopy {
        width: 74%;
        bottom: -5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .catch-hor {
        width: 72%;
    }
    
    .logo {
        width: 8rem;
    }

    /* パーパス */
    .purpose {
        margin-top: 4rem;
    }

    .purpose-inner {
        padding-top: 0;
    }

    .is-layout-flex .purpose-content {
        min-width: auto;
    }

    .is-layout-flex>.bg-text-purpose {
        width: 100%;
    }


    /* ポイント */
    .point {
        margin-top: 16rem;
    }

    .point>.wp-block-group__inner-container {
        padding: 3.2rem 0;
    }

    .point-list {
        flex-direction: column;
        gap: 4rem;
    }

    .bg-text-point {
        width: 42rem;
        max-width: 100%;
        top: -3rem;
    }

    /* 特徴 */
    body .is-layout-flex>.features-img {
        width: 100%;
    }

    body .is-layout-flex>.features-text {
        width: 86%;
        align-self: center;
    }

    /* デリバリー */
    .delivery-container>.wp-block-group__inner-container {
        width: 100%;
    }

    .delivery-content>.delivery-text {
        width: 90%;
    }

    .delivery-img-ver {
        width: 46%;
        top: -16rem;
    }

    .delivery-img-hor {
        width: 50%;
        top: 8rem;
        left: 34%;
    }

    /* cta */
    .cta-btn {
        width: 100%;
    }

    /* インスタ */
    .insta-item {
        width: 25%;
    }

    .pc-only {
        display: none;
    }

    /* フッター */
    .sp-only {
        display: block;
    }

    .footer-title {
        text-align: center;
    }

    .footer-info-title {
        width: 32%;
    }

    .footer-info-text {
        width: 68%;
    }

    .footer-link-delivery>.wp-block-group__inner-container {
        flex-direction: column;
        gap: 2.4rem;
    }



    /* 下層FV */
    .bg-text-lowpage {
        left: 0%;
        top: -16%;
    }

    /* メニュー */
    .bg-text-menu {
        width: 15.7rem;
        top: -1.9rem;
    }

    /* 唐揚げ-FV */
    .bg-text-karaage {
        width: 46rem;
    }

    /* 唐揚げ-人気の理由 */
    .bg-text-hit {
        width: 40rem;
        top: -1.9rem;
    }

    /* 唐揚げ-おいしさの秘密 */
    .secret {
        margin-top: 12rem;
    }

    .bg-text-secret {
        width: 35rem;
    }

    /* 唐揚げ-メニュー */
    .takeout-title {
        letter-spacing: -0.1em;
    }

    .takeout-menu-list {
        gap: 2.4rem;
    }

    .wp-container-core-group-is-layout-ad2f72ca.takeout-menu-item {
        align-items: flex-start;
    }

    .wp-container-core-group-is-layout-ad2f72ca.takeout-menu-item>.wp-block-group {
        flex-wrap: wrap;
        width: 50%;
    }

    .takeout-menu-title {
        font-size: 1.8rem;
        width: 50%;
    }

    /* お弁当-FV */
    .bg-text-bento {
        width: 31.2rem;
    }

    /* お弁当-うれしいポイント */
    .bg-text-goodpoint {
        width: 35rem;
        top: -1.9rem;
    }

    .goodpoint-content .wp-block-group__inner-container {
        padding: 0;
    }

    /* キムチ-FV */
    .bg-text-kimuchi {
        width: 42.8rem;
    }

    /* キムチ-特徴 */
    .bg-text-features {
        width: 25rem;
        top: -1.9rem;
    }

    /* 店舗情報-FV */
    .bg-text-access {
        width: 34.8rem;
    }

    .store>.wp-block-group__inner-container {
        width: 100%;
    }

    .store-info {
        width: 100%;
        min-width: auto;
    }

    /* 店舗情報-道のり */
    .bg-text-howto {
        width: 42rem;
        top: -1.8rem;
    }

    .wp-container-core-group-is-layout-87ee99ac.access-list {
        flex-direction: column;
        gap: 3.2rem;
        align-items: center;
    }

    .access-item {
        width: 100%;
    }

    .chevron-right {
        transform: rotate(90deg);
        margin-top: 0 !important;
    }

    /* 店舗情報-求人 */
    .recruit-container {
        padding-top: 24rem;
    }

    .recruit-img-ver {
        top: calc(-22% + 24rem);
    }

    .recruit-img-hor {
        top: calc(5% + 24rem);
    }

    .bg-text-recruit {
        width: 22rem;
        right: 2%;
        top: 22rem;
    }
}

/* ==============================

    お知らせ非表示
    お知らせ公開時は以下cssすべて削除

============================== */
#news {
    display: none !important;
}