@charset 'UTF-8';
@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap");

:root {
  --color-accent: #EF8585;
  --sp-margin-horizontal: 3.75vw;
  --sp-margin-vertical: 5vw;
  --sp-border-radius: 5vw;
  --pc-margin: 1.25vw;
  --pc-border-radius: 5vw;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    min-height: 100svh;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
ul, ol {
    list-style: none;
}
img, svg, video {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
    color: inherit;
    max-width: 100%;
}
a {
    color: #000;
    text-decoration: none;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@font-face {
    font-family: "antro";
    src: url("antro_vectra.otf") format("opentype");
}

body {
    font-size: 3.1vw;
}
section {}
.img, .txt {
    width: 100%;
    margin-bottom: calc(var(--sp-margin-vertical) * 0.5);
}
.img {
    overflow: hidden;
}
.img img, .img video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.txt {
    font-family: "Anonymous Pro", monospace;
    padding: 2vw;
}
.txt .title {
  font-size: 2.75vw;
  margin-bottom: 2vw;
}
.title h2 span, .body p span {
    display: inline-block;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.title h2.active span, .body p.active span {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.title h2 span:nth-child(1), .body p span:nth-child(1) {
    transition-delay: 0.05s;
}

.txt .body {}
.txt .body p {
  margin-bottom: 3.2vw;
}
.txt .view_more {}
.txt .view_more a {
    display: inline-block;
    border: 1px solid #000;
    padding: 0.5vw 4vw;
    background: linear-gradient(90deg, #fff 50%, #000 50%);
    background-size: 200% 100%;
    transition: background 0.5s, color 0.5s;
}
.txt .view_more a:hover {
    color: #fff;
    background-position: -100% 0%;
}
.inner {
    width: 90%;
    margin: 0 auto;
}
.page_top {
    margin-top: 15vw;
}
.page_title {
    margin-bottom: 0;
}
.page_title h1 {
    font-family: "antro";
    font-size: 11.5vw;
    font-weight: normal;
    text-align: center;
}
.page_body {
    margin-bottom: 15vw;
}

/* loading
----------------------------------------------------*/
#loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #ef8585;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
#loading_logo {
  position: absolute;
  width: 100%;
}
.loading_bakery-coffee {
    fill: #fff;
}
.loading_saison {
    display: none;
    fill: #fff;
}
.sk-chase {
  width: 10.6666666vw;
  height: 10.6666666vw;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
  margin-bottom: 22.5vw;
}
.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}
.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}
.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
@keyframes sk-chase {
  100% { transform: rotate(360deg); }
}
@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  } 100%, 0% {
    transform: scale(1.0);
  }
}

/* header
----------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "antro";
    color: #fff;
    background-color: #ef8585;
    display: none;
}
header nav ul li {
    text-align: center;
}
header nav ul li a {
    display: block;
    color: #fff;
    font-size: 13.33333vw;
}
header nav ul li:nth-child(3) {
    margin-bottom: 5vw;
}
header nav ul li a:hover {}
header nav ul li a img {
    height: 7vw;
    display: inline;
}
#header_logo {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 60px;
    z-index: 1;
}
#header_logo a {
    display: block;
}
#header_logo a img {}
#header_menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
}
#header_menu:hover {
    cursor: pointer;
}
#header_menu:hover span {
    cursor: pointer;
}
#header_menu span {
    position: absolute;
    width: 25px;
    height: 1px;
    left: 14px;
    background-color: #fff;
    transition: 0.5s;
}
.page #header_menu span {
    background-color: #000;
}
#header_menu span:nth-child(1) {
    top: 15px;
}
#header_menu span:nth-child(2) {
    top: 23px;
    transition-delay: 0.0625s;
}
#header_menu span:nth-child(3) {
    top: 31px;
    transition-delay: 0.125s;
}
#header_menu.active {}
#header_menu.active span {
  background-color: #fff !important;
  height: 1px !important;
}
#header_menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 26px;
}
#header_menu.active span:nth-child(2) {
    opacity: 0;
}
#header_menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 26px;
}

/* home
----------------------------------------------------*/
#home {
    position: relative;
    margin: 0;
    height: 100vh;
    height: 100svh;
}
#home video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#home h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
#home h1 svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.logo_bakery-coffee {
    fill: #ef8585;
}
.logo_saison {
    fill: #fff;
}
#mask .cls-1 {
    fill:none;
    stroke:#FFFFFF;
    stroke-width: 666;
    stroke-linecap: round;
    stroke-linejoin: miter;
    stroke-miterlimit: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset:1000;
}

/* about
----------------------------------------------------*/
#about {}
#about .divide {
  margin: var(--sp-margin-vertical) var(--sp-margin-horizontal);
}
#about .divide:nth-child(1) .img {
    height: 35vh;
}
#about .divide:nth-child(1) .img img {
    border-top-right-radius: var(--sp-border-radius);
}
#about .divide:nth-child(2) {
    display: none;
}

/* view our menu
----------------------------------------------------*/
#view_our_menu .divide:nth-child(1) {
}
#view_our_menu .divide:nth-child(1) .img {
    height: 100vh;
}
#view_our_menu .divide:nth-child(1) .img:nth-child(2),
#view_our_menu .divide:nth-child(1) .img:nth-child(3) {
    display: none;
}
#view_our_menu .divide:nth-child(2) {
  margin: var(--sp-margin-vertical) var(--sp-margin-horizontal);
}
#view_our_menu .divide:nth-child(2) .img {
  position: relative;
  height: 50vw;
  /* border-top-right-radius: var(--sp-border-radius); */
  overflow: visible;
}
#view_our_menu .divide:nth-child(2) .img img:nth-child(1) {
  object-position: bottom;
  border-top-right-radius: var(--sp-border-radius);
}
.img .view_our_menu_put {
    position: absolute;
    bottom: -12.5vw;
    right: -3.6vw;
    width: 38.2vw;
    height: auto;
    max-width: none;
}

model-viewer {
    width: 100%;
    height: 100%;
}
model-viewer#reveal {
    --poster-color: transparent;
    background-color: #f6f0e1;
}

/* to go
----------------------------------------------------*/
#to_go .divide:nth-child(1) {
    margin-bottom: calc(var(--sp-margin-horizontal) * 0.5);
}
#to_go .divide:nth-child(1) .img {}
#to_go .divide:nth-child(2) {
    height: 42.5vw;
    margin: calc(var(--sp-margin-horizontal) * 0.5) 0;
    display: flex;
    justify-content: space-between;
}
#to_go .divide:nth-child(2) .img {
    height: 100%;
}
#to_go .divide:nth-child(2) .img:nth-child(1) {
    width: calc(38.2% - calc(var(--sp-margin-horizontal) * 0.375));
}
#to_go .divide:nth-child(2) .img:nth-child(2) {
    width: calc(61.8% - calc(var(--sp-margin-horizontal) * 0.375));
}
#to_go .divide:nth-child(3) {
    margin: calc(var(--sp-margin-horizontal) * 0.5) 0;
}
#to_go .divide:nth-child(3) .img {
    height: 61.8vw;
    /* border-top-right-radius: var(--sp-border-radius); */
}
#to_go .divide:nth-child(3) .img img {
    object-position: bottom left;
}
#to_go .divide:nth-child(4) {
    position: relative;
    margin: calc(var(--sp-margin-horizontal) * 0.5) 0;
    height: 50vw;
}
#to_go .divide:nth-child(4) .swiper-slide {
    padding: 0 calc(var(--sp-margin-horizontal) * 0.25);
    height: 100%;
}
#to_go .divide:nth-child(4) .swiper-slide .img {
    border-radius: calc(var(--sp-border-radius) * 0.5);
    height: 100%;
    background-color: #000;
    overflow: hidden;
}
#to_go .divide:nth-child(4) .swiper-slide .img img {}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    content: '';
    top: 50%;
    width: 6vw;
    height: 2vw;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    cursor: pointer;
}
#to_go .divide:nth-child(4) .swiper-button-prev {
    left: 4vw;
    background-image: url(../img/arrow_left.svg);
}
#to_go .divide:nth-child(4) .swiper-button-next {
    right: 4vw;
    background-image: url(../img/arrow_right.svg);
}
#to_go .divide:nth-child(4) .swiper-slide .img img,
#to_go .divide:nth-child(4) .swiper-slide .img model-viewer {
    opacity: 1;
    transition: .5s;
}
#to_go .divide:nth-child(4) .swiper-slide-prev .img,
#to_go .divide:nth-child(4) .swiper-slide-next .img {}
#to_go .divide:nth-child(4) .swiper-slide-prev .img img,
#to_go .divide:nth-child(4) .swiper-slide-next .img img,
#to_go .divide:nth-child(4) .swiper-slide-prev .img model-viewer,
#to_go .divide:nth-child(4) .swiper-slide-next .img model-viewer {
    opacity: 0.72;
}
#to_go .divide:nth-child(5) {
  margin: var(--sp-margin-vertical) var(--sp-margin-horizontal);
}
#to_go .divide:nth-child(5) .img {
    /* height: 61.8vw; */
    border-top-right-radius: var(--sp-border-radius);
}
#to_go .divide:nth-child(5) .img img {
    object-position: bottom left;
}

/* delivery
----------------------------------------------------*/
#delivery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5vw;
}
#delivery > .divide:nth-child(1) {
  order: 2;
  margin: var(--sp-margin-vertical) var(--sp-margin-horizontal);
}
#delivery > .divide:nth-child(1) .img {
  height: 62.5vw;
  border-top-right-radius: var(--sp-border-radius);
}
#delivery > .divide:nth-child(1) .img img {
  object-position: 0 5vw;
  transform: scale(1.5);
}
#delivery > .divide:nth-child(2) {
  width: 100%;
  height: 50vw;
  order: 1;
}
#delivery > .divide:nth-child(2) .img {
    height: 100%;
}
#delivery > .divide:nth-child(2) .img img {
    object-position: 0 -50vw;
}
#delivery > .divide:nth-child(3) {
  order: 3;
  height: 50vw;
  margin-bottom: calc(var(--sp-margin-vertical) * 0.5);
  width: 100%;
}
#delivery > .divide:nth-child(3) .img:nth-child(1) {
    display: none;
    height: 100%;
}
#delivery > .divide:nth-child(3) .img:nth-child(2) {
    height: 100%;
}
#delivery > .divide:nth-child(4) {
  order: 4;
  width: 100%;
  margin-bottom: var(--sp-margin-vertical);
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) {
    display: flex;
    justify-content: space-between;
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img {
    width: calc(50% - var(--sp-margin-vertical) * 0.25);
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(1)  {
  border-radius: calc(var(--sp-border-radius) * 1);
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(2)  {
  border-top-left-radius: var(--sp-border-radius);
}
#delivery > .divide:nth-child(4) .divide:nth-child(2) {}

/* information
----------------------------------------------------*/
#information {
    font-family: "Anonymous Pro", monospace;
    text-align: center;
}
#information_sns {
    text-align: center;
    margin: 0 auto 10vw;
}
#information_sns a svg {
    margin: 3vw auto;
    width: 6vw;
    transition: .5s;
}
#information_sns a:hover svg .sns_instagram {
    transition: .5s;
}
#information_sns a:hover svg .sns_instagram {
    fill: var(--color-accent);
}
#information_address {
  margin-bottom: 8vw;
}
#information_address a {
  transition: .5s;
}
#information_address a:hover {
  color: var(--color-accent);
}
#information_address a:nth-child(4) {
  display: inline-block;
  border: 1px solid #9d9d9d;
  padding: 0.25vw 1.25vw;
  margin: 2vw auto 5vw;
  line-height: 1;
}
#information_address a:nth-child(4):hover {
  border-color: var(--color-accent);
}
#information_address img {
    display: inline-block;
    height: 1vw;
}
footer {
    font-family: "Anonymous Pro", monospace;
    text-align: center;
}
footer ul {
  margin-bottom: 8vw;
}
footer ul li {}
footer ul li a {
    display: block;
    padding: 0.5vw 1.25vw;
  transition: color .5s;
}
footer ul li a:hover {
    color: var(--color-accent);
}
#copyright {
  margin-bottom: 10vw;
}
#footer_logo {
    overflow: hidden;
    height: 26.5vw;
}
#footer_logo a {
    display: block;
}
#footer_logo a img {
    margin: 0 2vw;
    filter: brightness(0);
}

/* menu
----------------------------------------------------*/
.menu_category {
    position: sticky;
    top: 10vw;
    background-color: #f5f5f5;
    margin-bottom: 7.5vw;
    z-index: 1;
}
.menu_category .inner {
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
}
.menu_category .inner::-webkit-scrollbar{
    display: none;
}
.menu_category ul {
    display: flex;
    margin: 0 1.5vw;
}
.menu_category ul li {}
.menu_category ul li a {
    font-family: "Anonymous Pro", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5vw;
    font-weight: bold;
    padding: 4vw 3vw 3.5vw;
    border-bottom: 1vw solid rgb(0 0 0 / 0%);
    line-height: 1;
    white-space: nowrap;
}
.menu_category ul li.active a {
    border-bottom-color: rgba(0,0,0,1);
}
.menu_area {}
.menu_box {
    margin-top: -22.5vw;
    padding-top: 22.5vw;
    margin-bottom: 5vw;
}
.menu_box h2 {
    position: relative;
    font-family: "Anonymous Pro", monospace;
    font-size: 6.25vw;
    margin: 0 2vw 3vw;
}
.menu_box h2 a {
    display: block;
}
.menu_box:nth-child(n+2) h2::before,
.menu_box:nth-child(n+2) h2::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 3vw;
    background-color: #000;
    top: 50%;
}
.menu_box h2::before {
    transform: rotate(45deg);
    right: 0;
}
.menu_box h2::after {
    transform: rotate(-45deg);
    right: 2vw;
}
.menu_box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menu_box ul li {
    width: 47.5%;
    background-color: #f5f5f5;
    margin-bottom: 5vw;
    border-radius: 2.5vw;
    overflow: hidden;
    box-shadow: 1vw 1vw 1vw rgb(0 0 0 / 15%);
}
.menu_img {
    height: 25vw;
    margin-bottom: 2.5vw;
    background-color: #fff;
}
.menu_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.menu_title {
    margin: 0 3vw;
}
.menu_title h3 {
    font-weight: normal;
}
.menu_price {
    margin: 0 3.5vw 2.5vw;
}
#coming_soon_modal {
    position: fixed;
    inset: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.776);
    color: rgb(255, 255, 255);
    z-index: 2;
    justify-content: center;
    align-items: center;
    font-family: "antro";
    display: none;
}
#coming_soon_modal p {
    font-size: 15vw;
}

/* 1025 --
----------------------------------------------------*/
@media (min-width: 1025px) {
body {
    font-size: 1vw;
}
section {
    margin: var(--pc-margin);
}
.img, .txt {
    width: 100%;
    margin-bottom: var(--pc-margin);
    padding: 0;
}
.img {
    overflow: hidden;
}
.img img, .img video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.txt {
    display: flex;
    font-family: "Anonymous Pro", monospace;
    align-items: center;
}
.txt .title {
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 1vw;
    padding: 0 1.5vw 0 1vw;
    margin-bottom: 1vw;
    white-space: nowrap;
}
.txt .body {
    padding-right: 1.5vw;
}
.txt .body p {
    margin-bottom: 0.5vw;
}
.txt .view_more {}
.txt .view_more a {
    padding: 0 2vw;
}
.txt .view_more a:hover {}
.inner {
    width: 80%;
}
.page_top {
    margin-top: 7.5vw;
}
.page_title {}
.page_title h1 {
    font-size: 7.5vw;
}
.page_body {}

/* loading
----------------------------------------------------*/
#loading {}
#loading_logo {}
.loading_bakery-coffee {}
.loading_saison {}
.sk-chase {
    width: 5vw;
    height: 5vw;
    margin-bottom: 6vw;
}

/* header
----------------------------------------------------*/
header {
}
header nav {
    position: relative;
    display: block;
    background-color: transparent;
    padding-right: calc(var(--pc-margin) * 2);
    bottom: auto;
}
header nav ul {
    display: flex;
    justify-content: flex-end;
}
header nav ul li {
    text-align: left;
    line-height: 1;
}
header nav ul li:nth-child(3) {
    margin-bottom: 0;
}
header nav ul li a {
    font-size: 3.25vw;
    padding: 1.75vw 1.5vw 0;
    transition: .5s;
    text-shadow: 1px 1px 1px #666;
    line-height: 1;
}
.page header nav ul li a {
    color: #000;
    text-shadow: none;
}
.page header nav ul li a img {
    filter: brightness(0.382);
}
header nav ul li a:hover {
    opacity: 0.5;
}
#header_menu {
    display: none;
}
#header_logo {
    top: 0.5vw;
    left: 1vw;
    width: 8vw;
}
header nav ul li a:hover {}
header nav ul li a img {
    height: 3.25vw;
    padding: 0.5vw 0.5vw 1vw;
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.4));
}

/* home
----------------------------------------------------*/
#home {
    margin: var(--pc-margin);
    height: calc(100vh - calc(var(--pc-margin) * 2));
    height: calc(100dvh - calc(var(--pc-margin) * 2));
}
#home h1 {
    position: absolute;
    top: calc(var(--pc-margin) * -1);
    left: calc(var(--pc-margin) * -1);
    right: calc(var(--pc-margin) * -1);
    bottom: calc(var(--pc-margin) * -1);
    margin: auto;
}
#home h1 img {}

/* about
----------------------------------------------------*/
#about {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - var(--pc-margin) * 2);
    height: auto;
}
#about .divide {
    width: calc(50% - 0.625vw);
    margin: 0;
}
#about .divide:nth-child(1) .img {
    height: 80vh;
}
#about .divide:nth-child(1) .img img {
    border-top-right-radius: 0;
}
#about .divide:nth-child(2) {
    display:block;
}
#about .divide:nth-child(2) .img {
    height: calc(50vh - var(--pc-margin) * 4);
    height: 47.5vh;
}

/* view our menu
----------------------------------------------------*/
#view_our_menu .divide:nth-child(1) {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 2.5vw);
    margin: 1.25vw 0;
}
#view_our_menu .divide:nth-child(1) .img {
    width: 31.666vw;
    height: 100%;
}
#view_our_menu .divide:nth-child(1) .img:nth-child(3) {
    position: relative;
    margin-top: -6.25vw;
    overflow: visible;
}
#view_our_menu .divide:nth-child(1) .img:nth-child(3) {
    margin-top: -12.5vw;
}
#view_our_menu .divide:nth-child(1) .img:nth-child(3) img:nth-child(1) {
    border-radius: var(--pc-border-radius);
}
#view_our_menu .divide:nth-child(1) .img:nth-child(2), #view_our_menu .divide:nth-child(1) .img:nth-child(3) {
    display: block;
}
#view_our_menu_put {
    position: absolute;
    bottom: -18.5vw;
    right: calc(var(--pc-margin) * -1);
    width: 33.3vw;
    height: auto;
    max-width: none;
    z-index: 1;
}
.img .view_our_menu_put {
    position: absolute;
    bottom: -12.5vw;
    right: 0;
    width: 38.2vw;
    height: auto;
    max-width: none;
}
model-viewer {
    width: 100%;
    height: 100%;
    background-color: #fff;
}
model-viewer#reveal {
    --poster-color: transparent;
}
#view_our_menu .divide:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: var(--pc-margin) 0;
}
#view_our_menu .divide:nth-child(2) .img {
    position: relative;
    transform-origin: top center;
    transform: scaleX(1.025);
    height: 50vw;
    max-height: 80vh;
    overflow: hidden;
}
#view_our_menu .divide:nth-child(2) .img::before {
    position: absolute;
    content: '';
    background-color: rgb(250 214 219 / 27%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
#view_our_menu .divide:nth-child(2) .img img:nth-child(1) {
    border-top-right-radius: 0;
    object-position: left -41vw;
    transform: scale(1.25);
    transform-origin: left top;
}
#view_our_menu .divide:nth-child(2) .img img:nth-child(2) {
    display: none;
}

/* to go
----------------------------------------------------*/
#to_go .divide:nth-child(1) {
    /* height: calc(100vh - var(--pc-margin) * 2); */
    margin: var(--pc-margin) 0;
}
#to_go .divide:nth-child(1) .img {
    height: 100%;
}
#to_go .divide:nth-child(2) {
    height: calc(100vh - var(--pc-margin));
    height: 40vw;
    margin: var(--pc-margin) 0;
    display: flex;
    justify-content: space-between;
}
#to_go .divide:nth-child(2) .img {
    height: 100%;
}
#to_go .divide:nth-child(2) .img:nth-child(1) {
    width: calc(38.2% - var(--pc-margin) * 0.5);
}
#to_go .divide:nth-child(2) .img:nth-child(2) {
    width: calc(61.8% - var(--pc-margin) * 0.5);
}
#to_go .divide:nth-child(3) {
    margin: var(--pc-margin) 0;
    max-height: calc(100vh - var(--pc-margin) * 2);
    overflow: hidden;
}
#to_go .divide:nth-child(3) .img {
    height: auto;
    margin: 0;
}
#to_go .divide:nth-child(3) .img img {
    margin: 0;
}
#to_go .divide:nth-child(4) {
    margin: var(--pc-margin) 0;
    border-radius: var(--pc-border-radius);
    overflow: hidden;
    height: 50vw;
}
#to_go .divide:nth-child(4) .swiper-slide {
    padding: 0 calc(var(--pc-margin) * 0.5);
    height: 100%;
}
#to_go .divide:nth-child(4) .swiper-slide .img {
    border-radius: var(--pc-border-radius);
}
#to_go .divide:nth-child(4) .swiper-slide .img img {}
#to_go .divide:nth-child(5) {
    /* height: calc(100vh - var(--pc-margin) * 2); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}
#to_go .divide:nth-child(5) .img {
    border-top-right-radius: var(--pc-border-radius);
}
#to_go .divide:nth-child(5) .img img {
    object-position: bottom center;
}

/* delivery
----------------------------------------------------*/
#delivery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}
#delivery > .divide:nth-child(1), #delivery .divide:nth-child(2) {
    height: calc(100vh - 2.5vw);
    margin-bottom: 1.25vw;
}
#delivery > .divide:nth-child(1) {
    order: 1;
    width: calc(61.8% - var(--pc-margin) * 0.5);
    margin: 0;
}
#delivery > .divide:nth-child(1) .img {
    height: 80vh;
    border-top-right-radius: 0;
}
#delivery > .divide:nth-child(2) {
    order: 2;
    width: calc(38.2% - var(--pc-margin) * 0.5);
}
#delivery > .divide:nth-child(2) .img {
    height: 100%;
}
#delivery > .divide:nth-child(2) .img img {
    object-position: unset;
}
#delivery > .divide:nth-child(3) {
    order: 3;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--pc-margin);
}
#delivery > .divide:nth-child(3) .img:nth-child(1) {
    display: block;
    width: calc(38.2% - var(--pc-margin) * 0.5);
}
#delivery > .divide:nth-child(3) .img:nth-child(2) {
    width: calc(61.8% - var(--pc-margin) * 0.5);
}
#delivery > .divide:nth-child(4) {
  order: 4;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.75vw;
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: calc(50% - var(--pc-margin));
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img {
    width: 100%;
    height: 23.8vw;
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(1) {
    border-radius: calc(var(--sp-border-radius) * 3);
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(1) img {
    object-position: center -27.5vh;
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(2) img {
    object-position: center -10.5vh;
}
#delivery > .divide:nth-child(4) .divide:nth-child(1) .img:nth-child(2)  {
  border-top-left-radius: var(--pc-border-radius);
}
#delivery > .divide:nth-child(4) .divide:nth-child .img img {}
#delivery > .divide:nth-child(4) .divide:nth-child(2) {
    width: 50%;
    height: auto;
}
#delivery > .divide:nth-child(4) .divide:nth-child(2) .img {
    height: 100%;
}


/* information
----------------------------------------------------*/
#information {
    font-family: "Anonymous Pro", monospace;
    text-align: center;
    margin-bottom: 7.5vw;
}
#information_sns {
    margin: 0 auto 3vw;
}
#information_sns p {
    font-size: 1.25vw;
    font-weight: bold;
}
#information_sns a {
    display: inline;
}
#information_sns a svg {
    display: inline;
    margin: 1vw auto;
    width: 2.5vw;
}
#information_logo {
    width: 25%;
    margin: 0 auto;
}
#information_logo img {
    width: 50%;
    margin: 0 auto;
    filter: brightness(0);
}
#information_address {
    display: inline-block;
    margin-bottom: 0;
}
#information_address p {
    margin-bottom: 0.5vw;
}
#information_address br {
    display: none;
}
#information_address a:first-child {}
#information_address a:nth-child(4) {
    margin: 0 auto;
    padding: 0 1vw;
}
#information_address img {
    display: inline-block;
    height: 1vw;
}
footer {
    font-family: "Anonymous Pro", monospace;
    position: relative;
    /* padding-bottom: var(--pc-margin); */
}
footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 5vw;
}
footer ul li {}
footer ul li a {
    display: block;
    padding: 0.5vw 1.25vw;
    line-height: 1;
}
#copyright {
    position: absolute;
    top: 0;
    right: var(--pc-margin);
    padding: 0.5vw 1.25vw 5vw;
    line-height: 1;
    margin-bottom: var(--pc-margin);
}
#footer_logo {}
#footer_logo a {}
#footer_logo a img {}

/* menu
----------------------------------------------------*/
.menu_category {
    position: static;
    top: auto;
    background-color: unset;
    margin-bottom: 5vw;
}
.menu_category .inner {
    width: 80%;
}
.menu_category ul {
    flex-wrap: wrap;
}
.menu_category ul li {}
.menu_category ul li a {
    font-size: 1.5vw;
    padding: 1vw 1.5vw .75vw;
    margin: 0 1vw 1vw 0;
    background-color: #f5f5f5;
    border-bottom: 0.25vw solid rgb(0 0 0 / 0%);
    border-radius: 1vw;
    transition: .5s;
}
.menu_category ul li a:hover {
    color: #fff;
    background-color: #000;
}
.menu_category ul li.active a {
    border-bottom-color: rgba(0,0,0,0);
}
.menu_area {}
.menu_box {
    margin-bottom: 2.5vw;
    margin-top: -2.5vw;
    padding-top: 2.5vw;
}
.menu_box h2 {
    font-size: 3.25vw;
    margin: 0 2vw 1vw;
}
.menu_box:nth-child(n+2) h2::before,
.menu_box:nth-child(n+2) h2::after {
    height: 4px;
    width: 1vw;
    top: 50%;
}
.menu_box:nth-child(n+2) h2::after {
    right: 0.6vw;
}
.menu_box ul {}
.menu_box ul::before,
.menu_box ul::after {
    content: '';
    display: block;
    width: 23.5%;
}
.menu_box ul::before {
    order:1;
}
.container::after {}
.menu_box ul li {
    width: 23.5%;
    margin-bottom: 2vw;
    border-radius: 1.25vw;
    box-shadow: 0.25vw 0.25vw 0.5vw rgba(0,0,0,0.10);
}
.menu_img {
    height: 12.5vw;
    margin-bottom: 1vw;
}
.menu_img img {}
.menu_title {
    margin: 0 1.5vw;
}
.menu_title h3 {}
.menu_price {
    margin: 0 1.5vw 1vw;
}
#coming_soon_modal p {
    font-size: 6.18vw;
}
}
