@charset "UTF-8";
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, xmp {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

input, select, textarea, button {
  outline: none;
}

* {
  box-sizing: border-box;
}

body {
  color: #333;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a, button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

:root {
  /*color*/
  --dark: #0C0803;
  --light: #F2EBE4;
  /*font*/
  --font--en: "Josefin Sans", sans-serif;
  --font--ja: "M PLUS 1", sans-serif;
  /*size*/
  --height: 4rem;
  --width: 9rem;
  /*text*/
  --text_scaling: "クリックで拡大";
  /*time*/
  --time--wating: 2s
  --time--running: 0.5s ;
}

/*header*/
@keyframes btn__border--rotate-y {
  from {
    transform: rotateY(90deg);
  }
  to {
    transform: rotateY(0);
  }
}
/*gmenu*/
@keyframes gmenu--open {
  from {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }
  to {
    max-height: 20rem;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes gmenu--close {
  from {
    max-height: 20rem;
    opacity: 1;
    visibility: visible;
  }
  to {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes icon_right--fade_in {
  from {
    transform: translateX(-3rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*body*/
@keyframes slider--from1to2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-378px);
  }
}
@keyframes slider--from2to3 {
  from {
    transform: translateY(-378px);
  }
  to {
    transform: translateY(-756px);
  }
}
@keyframes slider--from3to1 {
  from {
    transform: translateY(-756px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes spin--180 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(180deg);
  }
}
@keyframes spin--360 {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes open__dish_List {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 100%;
    opacity: 1;
  }
}
@keyframes increase_image {
  from {
    max-height: 2.5rem;
  }
  to {
    max-height: 50vw;
  }
}
@keyframes decrease_image {
  from {
    max-height: 50vw;
  }
  to {
    max-height: 2.5rem;
  }
}
@keyframes counter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*dish__list  dish__image*/
/*media*/
html {
  font-size: 16px;
}

h1 {
  color: #fff;
  font-size: 2.25em;
  font-family: var(--font--en);
  font-weight: 400;
  letter-spacing: -0.05em;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}

h2 {
  color: var(--dark);
  font-size: 1em;
  font-family: var(--font--en);
  font-weight: 400;
  letter-spacing: -0.05em;
}

h3 {
  color: var(--dark);
  font-size: 1.5em;
  font-family: var(--font--en);
  font-weight: 400;
  letter-spacing: -0.05em;
}

p {
  color: var(--dark);
  font-size: 0.875em;
  font-family: var(--font--ja);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 150%;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

label {
  color: var(--dark);
  font-size: 0.875em;
  font-family: var(--font--en);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 150%;
}

table {
  color: var(--dark);
  table-layout: fixed;
  width: 100%;
}
table tr th {
  padding: 0.5rem;
  border: 3px solid #fff;
  background-color: var(--light);
  font-family: var(--font--ja);
}
table tr td {
  min-width: 5rem;
  padding: 0.5rem;
  border: 3px solid #fff;
  word-break: break-all;
}

.l-body {
  width: 100%;
}
@media (width >= 1000px) {
  .l-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-body__head {
  position: relative;
  z-index: 0;
}
@media (width >= 1000px) {
  .l-body__head {
    width: 50%;
    grid-column: 1;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media (width >= 1000px) {
  .l-body__body {
    margin-top: 4rem;
    grid-column: 2;
  }
}
.l-body__access {
  height: 5rem;
  background-color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >= 1000px) {
  .l-body__access {
    grid-column: 2;
  }
}
.l-body__access__btn {
  --width: 6rem;
  width: var(--width);
  padding: 2px;
}
.l-body__access__btn__border {
  width: calc(var(--width) - 4px);
  height: 1.75rem;
}
.l-body__access__btn__border p {
  font-family: var(--font--en);
}

/*animation*/
.anime__slider_1 {
  animation: slider--from1to2 1s 7s both linear;
}
.anime__slider_1--once_lunch {
  animation: slider--from1to2 1s 7s both linear;
}
.anime__slider_1--once_dinner {
  animation: slider--from1to2 1s 8s both linear;
}
.anime__slider_1--once_drink {
  animation: slider--from1to2 1s 9s both linear;
}

.anime__slider_2 {
  animation: slider--from2to3 1s 7s both linear;
}

.anime__slider_3 {
  animation: slider--from3to1 1s 7s both linear;
}

.anime-icon--spin {
  animation-name: spin--180;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.anime-icon--spun {
  animation-name: spin--360;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.l-header {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 128;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}
@media (width >= 1000px) {
  .l-header {
    width: 50%;
    height: 4rem;
    padding: 0.5rem 1.5vw;
    top: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
  }
}
.l-header__logo {
  width: 32px;
  height: 32px;
}
.l-header__btn--form {
  --width: 9rem;
  width: var(--width);
  height: 2rem;
  padding: 2px;
  display: inline-block;
}
.l-header__btn--form__border {
  width: calc(var(--width) - 4px);
  height: 1.75rem;
}
.l-header__includedGmenu {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.l-header__includedGmenu--wide {
  display: none;
}
@media (width >= 1000px) {
  .l-header__includedGmenu--wide {
    display: block;
  }
}
@media (width >= 1000px) {
  .l-header__includedGmenu--wide ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    gap: 1vw;
  }
}
.l-header__includedGmenu--wide ul a {
  padding: 0.5rem 0.2rem 0.25rem 0.2rem;
  color: var(--dark);
  font-size: 1.15em;
  font-family: var(--font--en);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;
}
.l-header__includedGmenu--wide ul a:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  animation: btn__border--rotate-y 0.2s ease-out forwards;
}
.l-header__btn--menu {
  width: 32px;
  height: 32px;
  padding: 0;
}
.l-header__gmenu {
  width: 100%;
  height: 20rem;
  background-color: #fff;
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 64;
}
.l-header__gmenu__list {
  width: 100%;
  max-width: 40vw;
  margin: 0 auto;
}
.l-header__gmenu__list ul li {
  width: 100%;
}
.l-header__gmenu__list ul li a {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  height: 4rem;
  padding-top: 1rem;
  color: var(--dark);
  font-family: var(--font--en);
  font-weight: 400;
  position: relative;
  display: block;
}
.l-header__gmenu__list ul li a:active::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../image/icon_right.svg);
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 1;
  animation: icon_right--fade_in 0.3s ease-out both;
}

/*animation*/
.js-invisible {
  display: none;
}

.js-active[aria-hidden=true] {
  animation: gmenu--close 0.3s ease-in-out forwards;
}

.js-active[aria-hidden=false] {
  animation: gmenu--open 0.3s ease-in-out forwards;
}

footer {
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >= 1000px) {
  footer {
    grid-column: 2;
  }
}
footer p {
  letter-spacing: 2%;
}

.c-icon__menu--open[aria-hidden=true] {
  display: none;
}
.c-icon__menu--close[aria-hidden=true] {
  display: none;
}
@media (width >= 1000px) {
  .c-icon__menu {
    display: none;
  }
}

.c-btn {
  background-color: var(--dark);
}
.c-btn__border {
  border-left: 1px #fff solid;
  border-right: 1px #fff solid;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-btn__border:active {
  border-left: transparent;
  border-right: transparent;
}
@media (width >= 1000px) {
  .c-btn__border:active {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
  }
}
.c-btn__border:active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
  animation: btn__border--rotate-y 0.2s ease-out forwards;
}
@media (width >= 1000px) {
  .c-btn__border:active::after {
    content: none;
  }
}
@media (width >= 1000px) {
  .c-btn__border:hover {
    border-left: transparent;
    border-right: transparent;
  }
  .c-btn__border:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    border-top: 1px #fff solid;
    border-bottom: 1px #fff solid;
    animation: btn__border--rotate-y 0.2s ease-out forwards;
  }
}
.c-btn__border p {
  color: #fff;
  text-shadow: none;
}
.c-btn__border .btnValue {
  color: #fff;
  text-shadow: none;
  font-size: 1em;
}
.c-btn__icon {
  width: 0.875em;
  height: 0.875em;
}
.c-btn--back {
  background-color: var(--light);
}
.c-btn--back .c-btn__border--back {
  border-left: 1px var(--dark) solid;
  border-right: 1px var(--dark) solid;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-btn--back .c-btn__border--back:active {
  border-left: transparent;
  border-right: transparent;
}
@media (width >= 1000px) {
  .c-btn--back .c-btn__border--back:active {
    border-left: 1px var(--dark) solid;
    border-right: 1px var(--dark) solid;
  }
}
.c-btn--back .c-btn__border--back:active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  border-top: 1px var(--dark) solid;
  border-bottom: 1px var(--dark) solid;
  animation: btn__border--rotate-y 0.2s ease-out forwards;
}
@media (width >= 1000px) {
  .c-btn--back .c-btn__border--back:active::after {
    content: none;
  }
}
@media (width >= 1000px) {
  .c-btn--back .c-btn__border--back:hover {
    border-left: transparent;
    border-right: transparent;
  }
  .c-btn--back .c-btn__border--back:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    border-top: 1px var(--dark) solid;
    border-bottom: 1px var(--dark) solid;
    animation: btn__border--rotate-y 0.2s ease-out forwards;
  }
}
.c-btn--back .c-btn__border--back p {
  color: var(--dark);
  text-shadow: none;
}
.c-btn--back .c-btn__border--back .btnValue--back {
  color: var(--dark);
  text-shadow: none;
  font-size: 1em;
}
.c-btn--back .c-btn__icon--back {
  width: 0.875em;
  height: 0.875em;
}

.c-slider {
  overflow: hidden;
}
.c-slider__slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.c-slider__slide__image {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slider__slide__list {
  width: 100%;
  grid-column: 2;
  grid-row: 1;
  padding: 5rem 2rem 1rem 2rem;
}
.c-slider__slide h3 {
  margin-bottom: 2rem;
}
.c-slider__slide li {
  color: var(--dark);
  font-family: var(--font--ja);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  list-style: none;
  margin-bottom: 1rem;
}
.c-slider__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: absolute;
  top: calc(140.5px + 3rem);
  left: 1rem;
  z-index: 10;
}
.c-slider__dots__dot {
  box-sizing: content-box;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--light);
  border-radius: 50%;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.c-slider__dots .js-current {
  box-sizing: content-box;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--light);
  border-radius: 50%;
  border: 3px solid var(--dark);
}

.c-toggleNav__summary {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-toggleNav__summary .c-toggleNav__title {
  padding: 1.2rem 2rem 0.8rem 3rem;
  background-color: var(--light);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (width >= 1000px) {
  .c-toggleNav__summary .c-toggleNav__title h2 {
    font-size: 1.25em;
  }
}
.c-toggleNav__contents {
  height: 378px;
}

.c-pageHeader {
  width: 100%;
  height: 60vw;
  min-height: 14.5rem;
  max-height: 100vh;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (width >= 1000px) {
  .c-pageHeader {
    width: 50%;
    height: 100vh;
    grid-column: 1;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.c-pageHeader::before {
  content: "";
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(70%) saturate(110%) contrast(110%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-toggleMenu__title {
  padding: 1rem 2rem 1rem 3rem;
  background-color: var(--light);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.c-toggleMenu__title--containSub {
  padding: 1rem 2rem 1rem 3rem;
  background-color: var(--light);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-toggleMenu__title--sub {
  padding: 1rem 2rem 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.c-toggleMenu__title--sub::before {
  content: "";
  width: 6rem;
  height: 100%;
  background-color: var(--light);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.c-toggleMenu__title--sub::after {
  content: "";
  width: 1rem;
  height: 100%;
  background-color: var(--light);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.c-toggleMenu__title--sub h2 span {
  font-family: var(--font--ja);
  font-size: 0.8em;
}
.c-toggleMenu__title--sub img {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 4;
}
.c-toggleMenu__dishList {
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
}
.c-toggleMenu__dishList__frame {
  width: 100%;
  flex: 1 1 auto;
  transition: flex-grow 0.4s ease-in-out;
}
@media (width >= 1000px) {
  .c-toggleMenu__dishList__frame:hover {
    flex-grow: 8;
  }
}
.c-toggleMenu__dishList__image {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
.c-toggleMenu__dishList__image p {
  margin-left: 80%;
  line-height: 100%;
  white-space: nowrap;
  text-align: center;
}
.c-toggleMenu__dishList__text {
  transform: translateX(12vw);
}
@media (width >= 1000px) {
  .c-toggleMenu__dishList__text {
    transform: translateX(8vw);
  }
}
.c-toggleMenu__dishList__info {
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-toggleMenu__dishList--sub {
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
}
.c-toggleMenu__dishList--sub__frame {
  width: 100%;
  flex: 1 1 auto;
  transition: flex-grow 0.4s ease-in-out;
}
@media (width >= 1000px) {
  .c-toggleMenu__dishList--sub__frame:hover {
    flex-grow: 8;
  }
}
.c-toggleMenu__dishList--sub__image {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
}
.c-toggleMenu__dishList--sub__text {
  margin-left: 80%;
  white-space: nowrap;
}
.c-toggleMenu__dishList--sub .js-dish__list--closed {
  display: none;
}
.c-toggleMenu__dishList--sub .js-dish__list--opened {
  animation-name: open__dish_List;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.c-toggleMenu .dishCount--1 {
  height: calc(var(--height) * 2 * 1);
}
@media (width >= 1000px) {
  .c-toggleMenu .dishCount--1:hover {
    height: calc(var(--height) * 2.5 * 1);
    transition: height 0.4s ease-in-out;
  }
}
.c-toggleMenu .dishCount--2 {
  height: calc(var(--height) * 2 * 2);
}
@media (width >= 1000px) {
  .c-toggleMenu .dishCount--2:hover {
    height: calc(var(--height) * 2 * 2);
    transition: height 0.4s ease-in-out;
  }
}
.c-toggleMenu .dishCount--3 {
  height: calc(var(--height) * 2 * 3);
}
.c-toggleMenu .dishCount--4 {
  height: calc(var(--height) * 2 * 4);
}
.c-toggleMenu .dishCount--5 {
  height: calc(var(--height) * 2 * 5);
}
.c-toggleMenu .dishCount--6 {
  height: calc(var(--height) * 2 * 6);
}
.c-toggleMenu .dishCount--7 {
  height: calc(var(--height) * 2 * 7);
}
.c-toggleMenu .dishCount--8 {
  height: calc(var(--height) * 2 * 8);
}
.c-toggleMenu .dishCount--9 {
  height: calc(var(--height) * 2 * 9);
}
.c-toggleMenu .dishCount--10 {
  height: calc(var(--height) * 2 * 10);
}
@media (width >= 1000px) {
  .c-toggleMenu .dishCount--1 {
    height: calc(var(--height) * 1);
  }
  .c-toggleMenu .dishCount--2 {
    height: calc(var(--height) * 2);
  }
  .c-toggleMenu .dishCount--3 {
    height: calc(var(--height) * 3);
  }
  .c-toggleMenu .dishCount--4 {
    height: calc(var(--height) * 4);
  }
  .c-toggleMenu .dishCount--5 {
    height: calc(var(--height) * 5);
  }
  .c-toggleMenu .dishCount--6 {
    height: calc(var(--height) * 6);
  }
  .c-toggleMenu .dishCount--7 {
    height: calc(var(--height) * 7);
  }
  .c-toggleMenu .dishCount--8 {
    height: calc(var(--height) * 8);
  }
  .c-toggleMenu .dishCount--9 {
    height: calc(var(--height) * 9);
  }
  .c-toggleMenu .dishCount--10 {
    height: calc(var(--height) * 10);
  }
}
.c-toggleMenu .js-dish__list--closed {
  display: none;
}
.c-toggleMenu .js-dish__list--opened {
  animation-name: open__dish_List;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.p-hero {
  height: 100vh;
  min-height: 780px;
  background: center/cover no-repeat url("../image/top_hiro.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10vh;
}
.p-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-hero__image {
  width: 200px;
  height: 200px;
}
.p-hero__texts .p-hero__title {
  font-size: 1.5em;
  font-family: var(--font--ja);
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.p-hero__texts .p-hero__title span {
  margin: 0 0.2em;
  font-size: 0.9em;
}
.p-hero__texts .p-hero__description {
  margin-top: 2rem;
  color: #fff;
  font-size: 1em;
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.p-lunch__head {
  background: center/cover no-repeat url(../image/top_lunchmenu__lunch_hiro.png);
}
.p-lunch__pasta_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta1_nasupepe.png);
}
.p-lunch__pasta_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta2_arabi.png);
}
.p-lunch__pasta_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta3_cream.png);
}
.p-lunch__pasta_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta4_napo.png);
}
.p-lunch__pasta_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta5_meat.png);
}
.p-lunch__pasta_6 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_pasta6_jeno.png);
}
.p-lunch__noodle_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_noodle1_ramen.png);
}
.p-lunch__noodle_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_noodle2_yakisoba.png);
}
.p-lunch__noodle_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_noodle3_soba.png);
}
.p-lunch__rice_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_rice1_omu.png);
}
.p-lunch__rice_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_rice2_chahan.png);
}
.p-lunch__rice_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_rice3_nashi.png);
}
.p-lunch__rice_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_rice4_kaisen.png);
}
.p-lunch__rice_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/lunch_rice5_onigiri.png);
}

.p-dinner__head {
  background: center/cover no-repeat url(../image/dinner_hiro.png);
}
.p-dinner__party_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp1_yakiniku.png);
}
.p-dinner__party_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp2_yakitori.png);
}
.p-dinner__party_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp3_ahi.png);
}
.p-dinner__party_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp4_chuka.png);
}
.p-dinner__party_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp5_temaki.png);
}
.p-dinner__party_6 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_hp6_esu.png);
}
.p-dinner__appetizer_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_appe1_capu.png);
}
.p-dinner__appetizer_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_appe2_caru.png);
}
.p-dinner__appetizer_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_appe3_ahi.png);
}
.p-dinner__appetizer_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_appe4_uin.png);
}
.p-dinner__appetizer_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/dinner_appe5_cheese.png);
}

.p-drink__hero {
  background: center/cover no-repeat url(../image/top_drink.png);
}
.p-drink__softdrink_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd1_orange.png);
}
.p-drink__softdrink_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd2_apple.png);
}
.p-drink__softdrink_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd3_tomato.png);
}
.p-drink__softdrink_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd4_coffee.png);
}
.p-drink__softdrink_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd5_koucha.png);
}
.p-drink__softdrink_6 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_sd6_ruibos.png);
}
.p-drink__cocktail_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail1_kasisu.png);
}
.p-drink__cocktail_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail2_peach.png);
}
.p-drink__cocktail_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail3_mango.png);
}
.p-drink__cocktail_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail4_campari.png);
}
.p-drink__cocktail_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail5_raich.png);
}
.p-drink__cocktail_6 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail6_annin.png);
}
.p-drink__cocktail_7 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail7_passion.png);
}
.p-drink__cocktail_8 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail8_yogurto.png);
}
.p-drink__cocktail_9 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail9_karua.png);
}
.p-drink__cocktail_10 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_cocktail10_cream.png);
}
.p-drink__whisky_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky1_sabu.png);
}
.p-drink__whisky_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky2_old.png);
}
.p-drink__whisky_3 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky3_from.png);
}
.p-drink__whisky_4 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky4_dwers.png);
}
.p-drink__whisky_5 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky5_decon.png);
}
.p-drink__whisky_6 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky6_ardbeg.png);
}
.p-drink__whisky_7 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky7_buffalo.png);
}
.p-drink__whisky_8 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_whisky8_wild.png);
}
.p-drink__gin_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_gin1_bombay.png);
}
.p-drink__gin_2 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_gin2_engine.png);
}
.p-drink__wine_1 {
  background-position: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/drink_wine1_red.png);
}

.p-access__head {
  padding: 5.5rem 2.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vh;
}
@media (width >= 1000px) {
  .p-access__head {
    padding-top: 8vh;
    height: 100vh;
    z-index: 1;
  }
}
.p-access__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vh;
}
@media (width >= 1000px) {
  .p-access__logo {
    display: flex;
    flex-direction: column;
  }
}
.p-access__logo img {
  width: 6.25rem;
  height: auto;
}
@media (width >= 1000px) {
  .p-access__logo img {
    width: 20vh;
    max-width: 8rem;
  }
}
.p-access__logo__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2vh;
}
.p-access__logo__text h1 {
  color: var(--dark);
  font-size: 1.5em;
  font-family: var(--font--en);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: none;
}
.p-access__logo__text h1 .p-accrss__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-access__logo__text h1 .p-accrss__address p {
  font-size: 0.875em;
  font-family: var(--font--ja);
  font-weight: 400;
}
.p-access__map_frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.p-access__map_frame__map {
  width: 80vw;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
}
@media (width >= 1000px) {
  .p-access__map_frame__map {
    width: auto;
    max-width: 40vw;
    height: 35vh;
    max-height: 40vw;
  }
}
.p-access__map_frame__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-access__map_frame__link--googlemap {
  padding: 0.75rem 1.5rem;
  background-color: var(--light);
}
@media (width >= 1000px) {
  .p-access__map_frame__link--googlemap {
    width: 80%;
    margin-top: 1vh;
    text-align: center;
    position: relative;
  }
}
.p-access__map_frame__link--googlemap img {
  margin-left: 0.625rem;
  margin-bottom: 0.25rem;
}
@media (width >= 1000px) {
  .p-access__map_frame__link--googlemap img {
    position: absolute;
    top: calc(1.5rem - 8px);
    right: 1.5rem;
    z-index: 8;
  }
}
.p-access__body {
  width: 80%;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (width >= 1000px) {
  .p-access__body {
    grid-column: 2;
    height: calc(100vh - 10rem);
    padding-top: 3rem;
    justify-content: center;
    gap: 2rem;
  }
}
.p-access__body__text {
  font-size: 1em;
}
.p-access__body__btn {
  --width: 13.5rem;
  width: var(--width);
  height: 3rem;
  padding: 3px;
}
.p-access__body__btn__border {
  width: calc(var(--width) - 6px);
  height: 2.625rem;
}
.p-access__body__btn__border p {
  font-size: 1.25em;
}
.p-access__body__btn__border img {
  width: 1.25em;
  height: 1.25em;
}

.p-form__head {
  background: center/cover no-repeat url(../image/top_hiro.png);
}
.p-form__head h1 {
  font-family: var(--font--ja);
  letter-spacing: 0;
}
.p-form label {
  font-family: var(--font--ja);
}
.p-form__text {
  display: flex;
  flex-direction: row;
  align-items: end;
}
.p-form__textarea {
  resize: none;
  border: 1px solid var(--dark);
  border-radius: 4px;
  padding-left: 0.5rem;
  display: inline;
}
.p-form__textarea:disabled {
  background-color: #f2f2f2;
  border: 1px solid #a0a0a0;
}
.p-form__charCount {
  padding-left: 0.5rem;
  display: inline;
  color: gray;
  font-size: 0.8em;
  white-space: nowrap;
}
.p-form__required {
  margin-left: 0.5rem;
  padding: 0.25rem 0.15rem 0.15rem 0.15rem;
  background-color: #ed5151;
  border: 1px solid #999;
  border-radius: 4px;
  color: #fff;
  font-size: 0.8em;
  vertical-align: top;
}
.p-form__error {
  margin-left: 1rem;
  color: red;
  position: relative;
}
.p-form__error:before {
  content: "";
  border-top: 0.4em solid transparent;
  border-left: 0.4em solid red;
  border-bottom: 0.4em solid transparent;
  position: absolute;
  top: 0.4em;
  left: -0.5em;
}
.p-form__branch {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-form__branch--text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-form__branch--text__input {
  display: flex;
  flex-direction: row;
}
.p-form__radio {
  margin-left: 1rem;
  margin-right: 0.5rem;
}
.p-form__body {
  padding: 2.5rem 10vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-form__body form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.p-form__body__list--common {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-form__body__list--common .p-form__personalLabel {
  display: block;
  margin-bottom: 0.15rem;
}
.p-form__body__list--common .p-form__personalInput--name {
  width: 50%;
  max-width: 16rem;
  height: 2rem;
  border-radius: 4px;
  border: 1px solid var(--dark);
  padding-left: 0.5rem;
}
.p-form__body__list--common .p-form__personalInput--mail {
  width: 80%;
  max-width: 20rem;
  height: 2rem;
  border-radius: 4px;
  border: 1px solid var(--dark);
  padding-left: 0.5rem;
}
.p-form__body__list--common .p-form__datetimeLabel {
  display: block;
  margin-bottom: 0.15rem;
}
.p-form__body__list--common .p-form__datetimeInput {
  width: 60%;
  max-width: 16rem;
  height: 2rem;
  border-radius: 4px;
  border: 1px solid var(--dark);
  padding-left: 0.5rem;
}
.p-form__body__list--common .p-form__cat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.p-form__body__list--common .p-form__cat__branches {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-form__body__list--common .p-form__allergy__label {
  display: block;
  margin-bottom: 0.15rem;
}
.p-form__body__list--common .p-form__allergy__text {
  width: 100%;
  max-width: 20rem;
  height: 5rem;
}
.p-form__body__list--days {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-form__body__list--days .p-form__day {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-form__body__list--days .p-form__day__branches {
  display: flex;
  flex-direction: column;
}
.p-form__body__list--days .p-form__day__branches .p-form__request {
  margin-left: 1rem;
  width: 80%;
  max-width: 18rem;
  height: 3rem;
  padding-left: 0.5rem;
}
.p-form__send {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 3rem;
}
.p-form__send__btn {
  --width: 6.5rem;
  width: var(--width);
  height: 2rem;
  padding: 2px;
}
.p-form__send__btn__border {
  width: calc(var(--width) - 4px);
  height: 1.75rem;
}
.p-form__send__btn__icon {
  margin-left: 0.2rem;
}

.p-confirm__head {
  background: center/cover no-repeat url(../image/top_hiro.png);
}
.p-confirm__head h1 {
  font-family: var(--font--ja);
  letter-spacing: 0;
}
.p-confirm__body {
  padding: 2.5rem 7vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-confirm__body form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-confirm__body form .p-confirm__table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-confirm__body form .p-confirm__table h2 {
  padding: 0.5rem;
  background-color: var(--dark);
  color: var(--light);
  font-family: var(--font--ja);
}
.p-confirm__body form .p-confirm__table input {
  width: 100%;
  border: none;
  white-space: nowrap;
  overflow-x: scroll;
}
.p-confirm__body form .p-confirm__table textarea {
  field-sizing: content;
  border: none;
  white-space: normal;
  resize: none;
}
.p-confirm__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4vw;
}
.p-confirm__btns .p-confirm__btn {
  --width: 6.5rem;
  width: var(--width);
  height: 2rem;
  padding: 2px;
}
.p-confirm__btns .p-confirm__btn .p-confirm__btnBorder {
  width: calc(var(--width) - 4px);
  height: 1.75rem;
}
.p-confirm__btns .p-confirm__btn .p-confirm__btnIcon {
  margin-left: 0.2rem;
}

.p-thanks__head {
  width: 100%;
  height: calc(100vh - 8rem);
  padding: 10vh 10% 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: center/cover no-repeat url(../image/top_hiro.png);
  position: relative;
  z-index: 0;
}
.p-thanks__head::before {
  content: "";
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-thanks__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.p-thanks__text h1 {
  font-family: var(--font--ja);
}
.p-thanks__text h2 {
  width: 80%;
  color: #fff;
  font-family: var(--font--ja);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}
.p-thanks__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.p-thanks__counter p {
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}
.p-thanks__counter__bg {
  width: 204px;
  height: 2rem;
  padding: 2px;
}
.p-thanks__counter__border {
  width: 200px;
  height: 1.75rem;
  padding: 0 0.25rem;
  justify-content: space-around;
  pointer-events: none;
}
.p-thanks__counter__border img {
  width: 16px;
  height: 16px;
}
.p-thanks__counter__border .spun {
  transform: rotateX(180deg);
}

/*animation*/
.sec--2 {
  animation: counter 1s ease-in 1s both;
}

.sec--3 {
  animation: counter 1s ease-in 2s both;
}

.sec--4 {
  animation: counter 1s ease-in 3s both;
}

.sec--5 {
  animation: counter 1s ease-in 4s both;
}

.u-font__family--ja {
  font-family: var(--font--ja);
}

.u-font__family--en {
  font-family: var(--font--en);
}

.u-font__size--small {
  font-size: 0.8em;
}/*# sourceMappingURL=style.css.map */