@charset "utf-8";

/* ローディング中は、他のコンテンツを完全に非表示 */
body.loading-active header,
body.loading-active main,
body.loading-active footer {
  display: none;
}
/* ローディング */
/* ローディング全体背景 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_black.webp) no-repeat center center / cover;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
/* ローディングを非表示に */
.loading.is-active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* ローディング中央配置 */
.loading-animation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* ロゴラップ：中央配置 */
.logo-wrap {
  position: relative;
  text-align: center;
  transform: translateY(-50%);
}
/* 赤ロゴ：じわっと表示 */
.logo-red {
  width: 120px;
  height: auto;
  z-index: 2;
  opacity: 0;
  animation: redFadeIn 2s ease-out forwards;
}
/* 赤ロゴのアニメーションキーフレーム */
@keyframes redFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 白ロゴ：ふわっと下から表示 */
.logo-white {
  width: 200px;
  height: auto;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
/* 白ロゴ表示 */
.logo-white.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 450px) {
    .logo-red {
        width: 100px;
    }
    .logo-white {
        width: 180px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #333;
    --yellow: #e6b422;
    --red: #7d011a;
    --green: #0f6438;
}
html {
    font-size: 10px;
    overflow-y: scroll;
}
body {
    font-size: 1.6em;
    line-height: 1;
    font-family: "Shippori Mincho", serif;
    overflow: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
}
ul, ol, dl {
    list-style: none;
}
h2 {
    font-weight: 400;
}
section>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
/* index全体ルール----------------------------- */
.index h2,
.sub,
.more {
    writing-mode: vertical-rl;
}

/* fadeUp------------------------------ */
.fadeUpTrigger {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* header------------------------------------ */
.index header {
    background: url(../img/top.webp) no-repeat 45% 0/cover;
    color: #fff;
    height: 100vh;
    padding: 40px 50px 0 25px;
    position: relative;
}
.top {
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-start;
}
.full {
    display: flex;
    flex-flow: row-reverse;
}
.top h1 img {
    width: 70px;
    margin: -10px 0 0 40px;
}
.full nav ul {
    writing-mode: vertical-rl;
    display: flex;
    flex-flow: column;
    gap: 1.25em;
    text-shadow: 5px 5px 10px #4d4d4d80;
}
.index header .logo {
    display: none;
}
.index header div:has(h2) {
    display: flex;
    gap: 15px;
    position: absolute;
    top: calc(50% - 237px);
    right: calc(50% - 60px);
}
.index header h2 {
    font-weight: 400;
    font-size: 2.25em;
    letter-spacing: .1em;
    line-height: 1.5;
    text-shadow: 5px 5px 10px #4d4d4d80;
}
.index header div:has(h2) p {
    order: -1;
    font-size: .7em;
    text-shadow: 5px 5px 10px #4d4d4d80;
}
.lang {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2em;
    position: absolute;
    top: 30px;
    left: 25px;
}
.lang .ja {
    flex-grow: 1;
    height: 1em;
    margin-right: 1em;
    position: relative;
}
.lang .ja::after {
    position: absolute;
	top: 0;
	left: 100%;
	margin: 0 .5em;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.lang .en {
    flex-grow: 1;
    height: 1em;
}
.sns {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1em;
    position: fixed;
    bottom: 40px;
    left: 25px;
    z-index: 100000;
    /* text-shadow: 0 0 6px #33333380; */
}
.sns p {
    order: -1;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.sns a img {
    width: 1.25em;
    height: 1.25em;
    /* filter: drop-shadow(0 0 5px #33333380); */
}
.sns::before {
    content: '';
    background-color: #fff;
    height: 4em; 
    width: .75px;
    display: inline-block;
    margin-bottom: 1em;
    /* box-shadow: 0 0 6px #33333399; */
}
header a:hover {
    opacity: .6;
}
.responsive {
    display: none;
}

/* main  ***************************************/

/* 初期状態：非表示＆透明 */
#hamburger2 {
  display: block; /* display: block にしておく（visibleクラスでON/OFFを切り替えるため） */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: fixed;
  top: 24px;
  left: 25px;
  z-index: 1000;
  color: #fff;
  cursor: pointer;
}
/* スクロール後にふわっと表示される状態 */
#hamburger2.visible {
  opacity: 1;
  visibility: visible;
}

/* レスポンシブ前のハンバーガーメニュー */
    .hamburger {
        width: 50px;
        height: 50px;
        position: relative;
        transition: all 0.5s;
        cursor: pointer;
        text-align: center;
        z-index: 20;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
        position: absolute;
    }
    .hamburger span:nth-child(1) {
        top: 33%;
    }
    .hamburger span:nth-child(2) {
        top: 66%;
        width: 25px;
    }
    .open .hamburger span:nth-child(1) {
        top: 50%;
        transform: rotate(-45deg);
    }
    .open .hamburger span:nth-child(2) {
        top: 50%;
        transform:  rotate(45deg);
        width: 50px;
    }
    .hamburger::after {
        display: block;
        content: "メニュー"; /* MENU */
        font-size: 70%; /* 80% */
        font-weight: 500;
        letter-spacing: .075em; /* .1em */
        padding-left: .1em;
        padding-top: 100%;
    }
    .hamburger.active::after {
        content: "閉じる";
        padding-left: .3em;
        padding-top: calc(100% + .375em);
    }
    /* ここから開いてからのこと */
    .hamburger_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: url(../img/bg_black.webp) no-repeat top/cover;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        padding: 110px 80px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hamburger_menu.open {
        opacity: 1;
        pointer-events: auto;
    }
    .hamburger_menu>ul {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
    .hamburger_menu>ul>li>img {
        width: 200px;
        margin-bottom: 60px;
    }
    .nav_wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav {
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        display: flex;
        flex-flow: column;
        gap: 1.75em;
        padding-top: 40px;
        border-top: #fff .75px solid;
    }
    .nav li>a {
        font-size: 1em;
        letter-spacing: .1em;
        line-height: 1.375;
        color: #fff;
    }
    .nav li>a:hover {
        opacity: .6;
    }
    .nav li>p {
        font-size: 60%;
        color: #999;
        letter-spacing: .1em;
        padding-top: .25em;
    }

/* news--------------------------- */
main .news {
    background: url(../img/bg_white.webp) no-repeat top/cover;
    margin: 0 auto;
    padding: 0 40px 80px 55px;
    color: #333;
    display: flex;
}
main .news>div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8%;
}
main .title {
    display: flex;
    align-items: flex-start;
}
main .news .title h2 {
    padding: 6em 10px 0 0;
    font-size: 1.5em;
    letter-spacing: .15em;
    line-height: 1.5em;
    border-right: var(--black) .825px solid;
}
main .news .title p {
    /* border-left: var(--black) .825px solid; */
    padding: 215px 0 0 10px;
    font-size: .75em;
    letter-spacing: .1em;
    color: #999;
}
main .news_scroll {
    align-items: center;
}
main .scroll_box {
    width: 100%;
    margin-top: 120px;
    overflow-y: scroll;
}
main .news_scroll ul {
    font-size: .825em;
    line-height: 1.5;
}
main .news_scroll ul li {
    display: flex;
    gap: 2em;
    margin-bottom: 3em;
}

/* about------------------------------- */
.about {
    background: url(../img/bg_about.webp) no-repeat center/cover;
    display: flex;
    color: #fff;
}
.about>div {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    gap: 5%;
    padding-left: 40px;

}
.about .title h2 {
    padding: 3em 10px 0 0;
    letter-spacing: .15em;
    line-height: 1.5em;
    font-size: 1.5em;
    color: #fff;
    text-shadow: 5px 5px 10px #4d4d4d80;
    border-right: #fff .825px solid;
}
.about .title>p {
    /* border-left: #fff .825px solid; */
    padding: 323px 0 0 10px;
    font-size: .75em;
    letter-spacing: .1em;
    text-shadow: 5px 5px 10px #4d4d4d80;
}
.about p {
    writing-mode: vertical-rl;
}
.responsive_box {
    display: flex;
    flex-flow: row-reverse;
    gap: 9%;
    padding: 150px 0;
}
.about .about_detail {
    display: flex;
    flex-flow: row-reverse;
    gap: 1.5em;
    height: 350px;
    text-align: justify;
}
.about .about_detail p {
    line-height: 1.75em;
    letter-spacing: .05em;
    text-shadow: 5px 5px 10px #4d4d4d80;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-orientation: upright;
}
.about .about_detail p>span {
    font-size: 90%;
    line-height: 1;
    letter-spacing: .1em;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    margin-bottom: .25em;
}
.about .more {
    letter-spacing: .15em;
    border: #fff solid .75px;
    margin: auto 0 0 0;
    padding: 2.25em 1em 1.5em;
    text-shadow: 5px 5px 10px #4d4d4d80;
    transition: .5s;
}
.about .more a::before {
    content: '';
    background-color: #fff;
    height: 4em; 
    width: .75px;
    display: inline-block;
    margin: -4.75em 0 1.25em 0;
    transition: .5s;
}
.about .more:hover {
    background-color: #ffffff44;
}
.about .more a:hover::before {
    transform: translate(0, -.75em);
}
/* shopslist------------------------------- */
.shoplist {
    background: url(../img/bg_black.webp) no-repeat top/cover;
    width: 100%;
    height: 750px;
    color: #fff;
    position: relative;
}
.world_map {
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.world_map>img {
    object-fit: cover;
    object-position: 0 50%;
    width: 100%;
    max-width: 950px;
    height: 100%;
    margin-right: -120px;
}
.shoplist>div:last-of-type {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 0 8%;
}
.shoplist .title {
    display: flex;
    align-items: flex-start;
}
.shoplist .title img {
    width: 70px;
    margin: 3.5em 0 0 .75em;
}
.shoplist .title h2 {
    padding: 5em 10px 0 0;
    letter-spacing: .15em;
    line-height: 1.5em;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-orientation: upright; /* 数字も縦向きにしてくれる */
    font-size: 1.25em;
    color: #fff;
    text-shadow: 5px 5px 10px #4d4d4d80; /* 背景上の白文字に少し影付けると馴染む 16進数透明度80=50% */
    border-right: #fff .825px solid;
}
.shoplist .title p {
    /* border-left: #fff .825px solid; */
    padding: 255px 0 0 10px;
    font-size: .75em;
    letter-spacing: .1em;
    text-shadow: 5px 5px 10px #4d4d4d80;
}
.modal-wrap {
    display: flex;
    margin: auto 0 5em;
}
.modal-wrap>label {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    letter-spacing: .15em;
    border: #fff solid .825px;
    padding: 2.25em 1em 1.5em;
    text-shadow: 5px 5px 10px #4d4d4d80;
    transition: .5s;
}
.modal-wrap>label::before {
    content: '';
    background-color: #fff;
    height: 4em; 
    width: .825px;
    display: inline-block;
    margin: -4.75em 0 1.25em 0;
    transition: .5s;
}

/* モーダル-------------------- */
.modal-wrap input {
    display: none;
}
.modal-open-label,
.modal-close-label {
    cursor: pointer;
}
.modal-open-label:hover {
    background-color: #ffffff44;
}
.modal-open-label:hover::before {
    transform: translate(0, -1em);
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}
.modal-open-input:checked+label+input+.modal {
    display: block;
    animation: modal-animation .6s;
}
/* .responsive_scroll {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
} */
.modal-content-wrap {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -50%);
    width: 80%;
    max-width: 300px;
    height: 650px;
    background-color: #ffffffdd;
    z-index: 2;
    /* overflow-y: scroll; */
}
.modal-close-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #999;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    position: fixed;
    top: -10px;
    right: -10px;
    z-index: 999;
    font-size: 1.3em;
}
/* モーダル内容-------------------------- */
.modal-content {
    color: var(--black);
    padding: 1.5em 1em;
    font-size: 1em;
    position: relative;
}
.shop {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 2em;
}
.store_list {
    display: flex;
    flex-flow: column;
}
.modal-content h4:not(.indonesia h4) {
    font-size: 1em;
    border-bottom: var(--black) solid .75px;
    margin-bottom: .5em;
    padding-bottom: .25em;
    font-weight: normal;
}
.indonesia h4 {
    font-size: 1em;
    padding-bottom: .25em;
    font-weight: normal;
}
.modal-content h4>span {
    font-size: .5em;
    margin-left: 1em;
    color: #999;
}
.modal-content h5 {
    font-size: .825em;
    font-weight: normal;
}
.red,
.grn {
    display: inline-block;
    margin: 5px;
}
.red::before {
    display: inline-block;
	margin-right: .5em;
	width: .75em;
	height: .75em;
	content: '';
    border-radius: 100%;
    background:  var(--red);
}
.grn::before {
    display: inline-block;
	margin-right: .5em;
	width: .75em;
	height: .75em;
	content: '';
    border-radius: 100%;
    background: var(--green);
}
.japan .grn span {
    color: var(--green);
}
.halal_certification {
    border: var(--black) solid .75px;
    width: 268px;
}
.halal_certification img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    object-position: 50% 100%;
}
.halal_box1 {
    display: flex;
    align-items: center;
    gap: .5em;
    margin: 5px 0 5px 1em;
}
.halal_box2 {
    display: flex;
    flex-flow: column;
    font-size: .625em;
    gap: 1em;
}
.halal_box2>p {
    line-height: 1.5em;
}
.halal_box2 a {
    text-align: right;
    margin-bottom: .25em;
}
.halal_box2 a>span {
    border-bottom: var(--green) 1px solid;
}
.halal_box2 a:hover {
    color: var(--green);
}
.grn2 {
    color: var(--green);
}
.modal-content p:has(.grn2) {
    font-size: .625em;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    margin-top: 3em;
}
.modal-content p:has(.grn2) img {
    width: 28px;
    height: 28px;
    margin-bottom: -10px;
}
.modal-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000073;
    z-index: 1;
}
@keyframes modal-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* grand_menu halal_menu
--------------------------------- */
.grand_menu {
    background: url(../img/bg_white.webp) no-repeat top/cover;
    width: 100%;
    padding: 0 10% 120px 95px;
    overflow: hidden;
    display: flex;
}
.grand_menu>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* position: relative; */
}
.grand_menu .title,
.halal_menu .title {
    display: flex;
    flex-flow: column-reverse;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    z-index: 1;
}
.grand_menu .title h2 {
    padding: 120px 10px 0 0;
    letter-spacing: .15em;
    font-size: 1.5em;
    font-weight: 400;
    border-right: var(--black) .825px solid;
}
.grand_menu .title p {
    /* border-left: var(--black) .825px solid; */
    padding: 189px 0 0 10px;
    font-size: .75em;
    letter-spacing: .1em;
    margin-right: 10%;
    color: #999;
}
.container1,
.container2 {
    /* display: flex; */
    position: relative;
}
.container1>img {
    max-width: 280px;
    max-height: 280px;
    object-fit: cover;
    position: absolute;
    bottom: -80px;
    left: -190px;
    z-index: 0;
}
.menu_category {
    display: flex;
    flex-flow: row-reverse;
    margin-top: 120px;
    max-width: 670px;
}
.container1 .menu_category {   
    box-shadow: 30px -30px 0 #e9cf964D;
}
.container2 .menu_category {
    box-shadow: -30px -30px 0 #ffffff1A;
}
.menu_category img {
    width: 100%;
    object-fit: cover;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
    position: relative;
    z-index: 1;
}
.menu_category a:hover img {
    transform: scale(1.05);
}
.halal_menu {
    background: url(../img/bg_green.webp) no-repeat top/cover;
    width: 100%;
    padding: 0 10% 120px 95px;
    overflow: hidden;
    display: flex;
}
.halal_menu>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    /* position: relative; */
}
.halal_menu .title h2 {
    color: #fff;
    text-shadow: 5px 5px 10px #33333380;
    padding: 150px 10px 0 10%;
    border-right: #fff .825px solid;
}
.halal_menu .title p {
    /* border-left: #fff .825px solid; */
    padding: 238px 0 0 10px;
    color: #e6e6e6;
    font-size: .75em;
    letter-spacing: .1em;
    text-shadow: 5px 5px 10px #33333380;
}
.container2>img {
    max-width: 260px;
    max-height: 260px;
    object-fit: cover;
    position: absolute;
    bottom: -80px;
    right: -180px;
    z-index: 0;
}


/* footer---------------------------------------- */
footer {
    background: url(../img/bg_black.webp) no-repeat bottom/cover;
    color: #fff;
}
footer>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
footer .title {
    display: flex;
    justify-content: center;
    padding-top: 120px;
}
footer .title h2 {
    writing-mode: vertical-rl;
    padding: 0 9px 0 0;
    letter-spacing: .15em;
    font-size: 1.25em;
    font-weight: 400;
    text-shadow: 5px 5px 10px #33333380;
    border-right: #fff .825px solid; /* 表示修正で消す */
}
footer .title p {
    writing-mode: vertical-rl;
    padding: 0 0 0 10px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
    position: relative;
    font-size: .75em;
    letter-spacing: .1em;
}
footer .title p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .825px;
    height: 110px;
}

address {
    display: flex;
    justify-content: space-evenly;
    font-style: normal;
    margin: 100px 0;
}
address h3 {
    font-weight: 400;
}

.route {
    display: flex;
    flex-flow: column;
    position: relative;
}
.route ul {
    font-size: .85em;
    position: relative;
    z-index: 1;
}
.route ul li:not(.main_address, .open_hour){
    margin: 12px 0;
}
.route img {
    width: 90px;
    position: absolute;
    top: -10px;
    right: 0; 
    z-index: 0;   
}
.main_address,
.open_hour {
    margin: 2em 0;
    line-height: 1.75em;
}
.open_hour span {
    letter-spacing: .15em;
}
iframe {
    width: 450px;
    height: auto;
    object-fit: cover;
}

.reservation {
    display: flex;
    justify-content: center;
    gap: 10%;
    padding-bottom: 120px;
    border-bottom: #fff .75px solid;
}
.yellow {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    border-radius: 99px;
    transition: 1s all;
}
.yellow:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.tel,
.net {
    display: inline-block;
    text-align: center;
}
.tel>div>p {
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1;
}
.net>p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.25;
} 
.tel>div>p>span {
    font-size: .625em;
}
.net>p>span {
    font-size: .75em;
}
.tel>div>img {
    width: 30px;
    height: 30px;
    margin: auto 0;
}
.tel>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25em;
    padding-right: 1em;
}
.tel>div>a {
    display: inline-block;
    text-align: center;
}

/* 恵比寿店紹介----------------------- */
.ebisu {
    display: flex;
    justify-content: center;
    gap: 8%;
    padding : 120px 10% 0;
    max-width: 800px;
}
.ebisu>div {
    display: flex;
}
.ebisu>div h2 {
    writing-mode: vertical-rl;
    padding: 0 10px 0 0;
    letter-spacing: .15em;
    font-size: 1.25em;
    font-weight: 400;
    text-shadow: 5px 5px 10px #33333380;
}
.ebisu>div p {
    writing-mode: vertical-rl;
    padding: 0 0 0 10px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
    position: relative;
    font-size: .75em;
    letter-spacing: .1em;
}
.ebisu>div p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .825px;
    height: 230px;
}
.ebisu a img {
    max-width: 400px;
    max-height: 260px;
    object-fit: cover;
}
/* fooyterNav---------------------- */
.footerbox_l {
    display: flex;
    justify-content: center;
    margin-top: 200px;
}
.footerNav {
    display: flex;
    flex-flow: row-reverse;
    gap: 8%;
    padding: 0 3% 0 5%;
}
.footerNav>img {
    width: 45px;
    margin-top: -55px;
}
.footerNav ul {
    writing-mode: vertical-rl;
}
.footerNav ul li {
    font-size: .825em;
    letter-spacing: .1em;
    line-height: 1.375;
    margin: 0 1em;
}
.footerbox_s {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    position: relative;
}
.footerbox_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .75px;
    height: 145px;
}
.footerbox_s p {
    text-align: center;
    font-size: .85em;
    line-height: 2em;
    margin-bottom: 2em;
}
.red_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    border-radius: 99px;
    transition: 1s all;
    background: var(--red);
    font-size: 1em;
}
.red_btn:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.copyright {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    margin: 50px 0 0 80px;
    padding-bottom: 20px;
}
.copyright>div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10%;
    margin-right: 10%;
}
/* トップへ戻るボタン------------------- */
.back-btn {
    padding: 1.5em 1em;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    position: relative;
    font-size: .825em;
    width: 8em;
}
.back-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 10%;
    left: 45%;
    /* bottom: 0; */
    margin: auto;
}

@media (max-width: 1050px) {
    .full {
        display: none;
    }
    .hamburger-icon {
        display: none !important;
    }
    .responsive {
        display: flex;
        position: absolute;
        top: 24px;
        left: 25px;
        z-index: 99999;
        position: fixed;
    }
    /* ハンバーガーメニュー */
    .hamburger {
        width: 50px;
        height: 50px;
        position: relative;
        transition: all 0.5s;
        cursor: pointer;
        text-align: center;
        z-index: 20;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
        position: absolute;
    }
    .hamburger span:nth-child(1) {
        top: 33%;
    }
    .hamburger span:nth-child(2) {
        top: 66%;
        width: 25px;
    }
    .open .hamburger span:nth-child(1) {
        top: 50%;
        transform: rotate(-45deg);
    }
    .open .hamburger span:nth-child(2) {
        top: 50%;
        transform:  rotate(45deg);
        width: 50px;
    }
    .hamburger::after {
        display: block;
        content: "メニュー"; /* MENU */
        font-size: 70%; /* 80% */
        font-weight: 500;
        letter-spacing: .075em; /* .1em */
        padding-left: .1em;
        padding-top: 100%;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }
        .hamburger.active span:nth-child(2) {
        transform: rotate(-45deg);
        top: 50%;
    }
    .hamburger.active::after {
        content: "閉じる";
        padding-left: .3em;
        padding-top: calc(100% + .375em);
    }
    /* ここから開いてからのこと */
    .hamburger_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: url(../img/bg_black.webp) no-repeat top/cover;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        padding: 110px 80px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hamburger_menu.open {
        opacity: 1;
        pointer-events: auto;
    }
    .hamburger_menu>ul {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
    .hamburger_menu>ul>li>img {
        width: 200px;
        margin-bottom: 60px;
    }
    .nav_wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav {
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        display: flex;
        flex-flow: column;
        gap: 1.75em;
        padding-top: 40px;
        border-top: #fff .75px solid;
    }
    .nav li>a {
        font-size: 1em;
        letter-spacing: .1em;
        line-height: 1.375;
        color: #fff;
    }
    .nav li>a:hover {
        opacity: .6;
    }
    .nav li>p {
        font-size: 60%;
        color: #999;
        letter-spacing: .1em;
        padding-top: .25em;
    }
     .lang {
        margin-left: 90px;
    }
}

@media (max-width: 819px) {
    /* フッター */
    address {
        flex-flow: column;
        align-items: center;
        gap: 60px;
        margin: 100px 0 80px;
    }
    iframe {
        width: 100%;
        height: 270px;
    }
    .reservation {
        flex-flow: column-reverse;
        align-items: center;
        gap: 40px;
        padding-bottom: 80px;
        margin: 0 60px;
    }
    .ebisu {
        padding: 100px 5% 100px 13%;
        gap: 5%;
    }
    .ebisu>div h2 {
        font-size: 1em;
    }
    .ebisu>div p::before {
        height: 190px;
    }
    .footerbox_l {
        flex-flow: column-reverse;
        align-items: center;
        gap: 100px;
        margin: 0 60px;
        position: relative;
    }
    /* .footerbox_l::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: .75px;
    } */
    .footerNav {
        padding: 0 0 0 8%;
        gap: 5%;
    }
    .footerNav>img {
        width: 30px;
        margin-top: -40px;
    }
    .footerbox_s {
        padding: 60px 0 0;
    }
    .footerbox_s::before {
        display: none;
    }
    .footerNav ul li {
        font-size: .825em;
        letter-spacing: .1em;
        line-height: 1;
        margin: 0 1em;
    }
    .copyright {
        margin: 50px 0 0 60px;
    }
    .copyright>div {
        flex-flow: column-reverse;
        gap: 1em;
        margin-right: 0;
        font-size: .625em;
    }
} 

@media (max-width: 767px) {
    .index header {
        padding: 25px 30px 0 15px;
    }
    .lang {
        top: 25px;
        margin-left: 75px;
    }
    .top h1 img {
        margin-top: 0;
    }

    /* ハンバーガーメニュー */
    .responsive {
        top: 13px;
        left: 15px;
    }
    .hamburger_menu>ul>li>img {
        width: 150px;
        margin-bottom: 40px;
    }
    .nav {
        gap: 1em;
    }
    .hamburger_menu {
        gap: 70px;
    }
    /* sns */
    .sns {
        left: 10px;
    }

    .news .fadeUpTrigger {
        margin: auto; 
    }
    main .news_scroll ul li {
        flex-flow: column;
        gap: .25em;
    }

    .title h2 {
        font-size: 1.25em;
    }
    .responsive_box {
        display: flex;
        flex-flow: column !important;
        width: 60%;
        padding: 150px 0 120px;
    }
    .about>div {
        padding-left: 0;
        padding: 0 25px 0 42px;
        gap: 10%;
    }
    .about .title h2 {
        font-size: 1.25em;
    } 
    .about .title>p {
        padding: 260px 0 0 10px;
    }
    .about .about_detail {
        display: flex;
        flex-flow: column;
        gap: 1.5em;
        height: auto;
    }
    .about .about_detail p,
    .about .about_detail p span {
        writing-mode: inherit;
        font-size: .825em;
        line-height: 1.5;
    }
    .about .more {
        writing-mode: horizontal-tb;
        padding: 1em 1.5em 1em 1em;
        display: inline-block;
        margin: 3em auto 0 3em;
        font-size: .825em;
    }
    .about .more a::before {
        height: .825px; 
        width: 4em;
        margin: 0 1.25em 0 -3.5em;
        display: inline-block;
        vertical-align: middle;
    }
    .about .more a:hover::before {
        transform: translate(-.75em, 0);
    }

    .shoplist {
        height: 670px;
    }
    .shoplist .title img {
        width: 40px;
        margin: 3.5em 0 0 10px;
    } 
    .shoplist .title h2 {
        font-size: 1em;
    }
    .shoplist .title p {
        padding: 177px 0 0 10px;
    }
    .world_map {
        height: 620px;
    }
    .world_map>img {
        object-position: 20% 50%;
        margin-top: 130px;
        margin-right: -130px;
    }
    .modal-wrap>label {
        font-size: .825em;
    }
    .shoplist>div:last-of-type {
        padding: 0 5% 0 42px;
    }

    .grand_menu {
        padding: 100px 10px;
    }
    .grand_menu>div,
    .halal_menu>div  {
        margin-top: 30px;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .grand_menu .title h2,
    .halal_menu .title h2 {
        padding: 0 10px 0 0;
        letter-spacing: .15em;
        font-size: 1.25em;
        font-weight: 400;
    }
    .grand_menu .title p {
        padding: 0 0 50px 10px;
        margin-right: 0;
        margin-top: 2px;
    }
    .container1 .menu_category {   
        box-shadow: none;
    }
    .container2 .menu_category {
        box-shadow: none;
    }
    .container1>img {
        max-width: 120px;
        max-height: 120px;
        top: -140px;
        left: 42%;
        transform: translateX(-50%);
    }
    .halal_menu {
        padding: 100px 10px;
    }
    .halal_menu .title p {
        padding: 0 0 74px 10px;
        margin-top: 5px;
    }
    .container2>img {
        max-width: 120px;
        max-height: 120px;
        top: -200px;
        right: 38%;
    }
    .menu_category {
        margin-top: 30px;
    }

} 

@media (max-width: 450px) {
    .top h1 img {
        width: 60px;
        margin-left: 0;
    }
    .index header div:has(h2) {
        gap: 10px;
        position: absolute;
        top: calc(50% - 150px);
        right: calc(50% - 50px);
    }
    .index header h2 {
        font-size: 1.75em;
    }
    .index header div:has(h2) p {
        font-size: .5em;
    }
    /* .hamburger_menu {
        height: 100vh;
    } */
    .about>div {
        justify-content: space-between;
        gap: 10%;
    }
    .responsive_box {
        width: auto;
    }
}