/* ========== FONT FACE ========== */
@font-face {
  font-family: "Strawford Black";
  src: url("../fonts/strawford-black-webfont.woff2") format("woff2"), url("../fonts/strawford-black-webfont.woff") format("woff"), url("../fonts/strawford-black-webfont.ttf") format("truetype"), url("../fonts/strawford-black-webfont.eot");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Strawford Bold";
  src: url("../fonts/strawford-bold-webfont.woff2") format("woff2"), url("../fonts/strawford-bold-webfont.woff") format("woff"), url("../fonts/strawford-bold-webfont.ttf") format("truetype"), url("../fonts/strawford-bold-webfont.eot");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Strawford Lightitalic";
  src: url("../fonts/strawford-lightitalic-webfont.woff2") format("woff2"), url("../fonts/strawford-lightitalic-webfont.woff") format("woff"), url("../fonts/strawford-lightitalic-webfont.ttf") format("truetype"), url("../fonts/strawford-lightitalic-webfont.eot");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Strawford Regular";
  src: url("../fonts/strawford-regular-webfont.woff2") format("woff2"), url("../fonts/strawford-regular-webfont.woff") format("woff"), url("../fonts/strawford-regular-webfont.ttf") format("truetype"), url("../fonts/strawford-regular-webfont.eot");
  font-weight: normal;
  font-style: normal;
}
/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
  outline: none;
}

html {
  box-sizing: border-box;
  font-feature-settings: "palt";
  font-size: 62.5%;
  text-align: justify;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  color: #000;
  font-family: "Strawford Black", sans-serif;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

/* ========== RESPONSIVE FONT SIZE ========== */
@media only screen and (max-width: 1140px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}
/* ========== SPLASH ========== */
.splash__container {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 3;
  transform: translate(0, 0);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 1.6s;
}

.splash__container--charbon-kunitoraya {
  background-color: #000;
}

.body__charbon-kunitoraya {
  background-color: #000;
}

.splash__container--udon-bistro {
  background-color: #eb5328;
}

.body__udon-bistro {
  background-color: #eb5328;
}

.splash__container--onigiri-toratora {
  background-color: #d6ae12;
}

.body__onigiri-toratora {
  background-color: #d6ae12;
}

.splash__container--stand-tora {
  background-color: #0d1b62;
}

.body__stand-tora {
  background-color: #0d1b62;
}

.splash__container--onigiri-bar {
  background-color: #294f34;
}

.body__onigiri-bar {
  background-color: #294f34;
}

.splash__container--kunitoraya-jp {
  background-color: #ceb190;
}

.body__kunitoraya-jp {
  background-color: #ceb190;
}

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

.splash__img {
  opacity: 0;
  width: 10rem;
  transform: translate(0, 2rem);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 0.4s;
}

.splash--active .splash__container {
  transform: translate(0, -100%);
}

.splash--active .splash__img {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== GLOBAL TOGGLE ========== */
.global-toggle {
  position: fixed;
  height: 20px;
  width: 3.5rem;
  left: 5rem;
  top: 5rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.4, 1);
  z-index: 2;
}

.global-toggle__icon {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.4, 1);
}

.global-toggle__icon--charbon-kunitoraya {
  background-color: #000;
}

.global-toggle__icon--udon-bistro {
  background-color: #eb5328;
}

.global-toggle__icon--stand-toratora {
  background-color: #d6ae12;
}

.global-toggle__icon--stand-tora {
  background-color: #0d1b62;
}

.global-toggle__icon--onigiri-bar {
  background-color: #294f34;
}

.global-toggle__icon--kunitoraya-jp {
  background: #ceb190;
}

.global-toggle__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: global-toggle 2s ease-in-out infinite;
}

.global-toggle__icon:nth-last-child(1) {
  top: 0;
}

.global-toggle__icon:nth-last-child(1)::after {
  animation-delay: 0.2s;
}

.global-toggle__icon:nth-last-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.global-toggle__icon:nth-last-child(2)::after {
  animation-delay: 0.4s;
}

.global-toggle__icon:nth-last-child(3) {
  bottom: 0;
}

.global-toggle__icon:nth-last-child(3)::after {
  animation-delay: 0.6s;
}

.global-toggle--active .global-toggle__icon {
  top: 50%;
}

.global-toggle--active .global-toggle__icon::after {
  background-color: #000;
}

.global-toggle--active .global-toggle__icon:nth-last-child(1) {
  transform: rotate(45deg);
}

.global-toggle--active .global-toggle__icon:nth-last-child(2) {
  opacity: 0;
}

.global-toggle--active .global-toggle__icon:nth-last-child(3) {
  transform: rotate(-45deg);
}

.global-toggle:hover .global-toggle__icon {
  background-color: #fff;
}

/* ========== GLOBAL NAVIGATION ========== */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s ease-in-out;
  text-align: center;
}

.global-nav--active {
  pointer-events: auto;
  opacity: 1;
}

.global-nav__container {
  max-height: 100%;
  overflow-y: auto;
}

.global-nav__list {
  font-size: 5rem;
  line-height: 6.5rem;
}
@media only screen and (max-width: 1140px) {
  .global-nav__list {
    font-size: 4.6rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 960px) {
  .global-nav__list {
    font-size: 4.2rem;
    line-height: 5.5rem;
  }
}
@media only screen and (max-width: 720px) {
  .global-nav__list {
    font-size: 3.8rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 540px) {
  .global-nav__list {
    font-size: 3.4rem;
    line-height: 4.5rem;
  }
}

.global-nav__link {
  color: #000;
  overflow: hidden;
  display: inline-block;
}

.global-nav__link {
  position: relative;
  z-index: 0;
  padding: 0 0.1rem;
  margin: 0 2rem;
}

.global-nav__link::before {
  background: #000;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translate(0, 2rem);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
  z-index: -1;
}

@media only screen and (max-width: 720px) {
  .global-nav__link::before {
    height: 2px;
  }
}
.global-nav__link:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

.global-nav__letter {
  display: inline-block;
  transform: translate(0, 110%) rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}

.global-nav--active .global-nav__letter {
  transform: translate(0, 0) rotate(0);
}

.global-copyright {
  color: #000;
  font-size: 1.4rem;
  font-family: "Strawford Regular", sans-serif;
  padding: 8rem 0;
  text-align: center;
}

/* ========== LOGO SHARED ========== */
.global-logo,
.brand-logo {
  padding: 8rem 0 8rem;
}

.global-logo__img,
.brand-logo__img {
  width: 34rem;
}

.brand-logo {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 2.2s;
}

.brand-logo--no-delay {
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 0.2s;
}

.brand-logo--active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== STORE SECTION ========== */
.store {
  z-index: 0;
  text-align: center;
}

.store--charbon-kunitoraya {
  background: #030303;
}

.store--udon-bistro {
  background: #eb5328;
}

.store--onigiri-toratora {
  background: #d6ae12;
}

.store--stand-tora {
  background: #0d1b62;
}

.store--onigiri-bar {
  background: #294f34;
}

.store--kunitoraya-jp {
  background: #ceb190;
}

.store__container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.store__block {
  margin: 4rem 0;
}

.store-logo {
  color: #fff;
  font-size: 6.6rem;
  font-family: "Strawford Bold", sans-serif;
  opacity: 0;
  transform: translate(0, 2rem);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 2s;
  margin: 0 0 6.5rem;
}

.store-logo--no-delay {
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}

.store-logo--active {
  opacity: 1;
  transform: translate(0, 0);
}

.store-logo__img {
  width: 30rem;
}

.store-description--fr,
.store-address,
.store-hours,
.store-holiday,
.store-button,
.store-tel {
  color: #fff;
  font-size: 2rem;
  font-family: "Strawford Regular", sans-serif;
  line-height: 2.5rem;
}

.store-tel__number {
  color: #fff;
  text-decoration: underline;
}

.store-description--en {
  color: #fff;
  font-size: 2rem;
  font-family: "Strawford Lightitalic", sans-serif;
  line-height: 2.5rem;
}

.store-description--fr,
.store-description--en {
  max-width: 75rem;
  margin: 2rem auto;
}

.store-map,
.store-instagram {
  color: #fff;
  font-family: "Strawford Regular", sans-serif;
  border-bottom: 1px solid #fff;
  padding: 0.4rem 0;
  margin: 1rem 0 0;
  display: inline-flex;
  align-items: center;
}

.store-map__img {
  height: 2.4rem;
}

.store-instagram__img {
  height: 2.4rem;
  padding: 0.2rem 0;
  margin: 0 0.4rem 0 0;
}

.store-access img {
  width: 15rem;
}

.store-map__txt,
.store-instagram__txt {
  font-size: 1.6rem;
  line-height: 3rem;
}

.store-holiday {
  margin: 2rem 0 0;
}

.store-holiday--bold,
.store-hours--bold {
  font-family: "Strawford Bold", sans-serif;
}

.store-holiday--italic,
.store-hours--italic {
  font-family: "Strawford Lightitalic", sans-serif;
}

.store-holiday--no-margin {
  margin: 0;
}

.store-onigiri img {
  width: 4rem;
  cursor: pointer;
}

.store-onigiri img:hover {
  animation: shake 0.4s linear;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-3px);
  }
  30% {
    transform: translateX(3px);
  }
  45% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  90% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
.store-button {
  padding: 1rem;
  border: 1px solid #fff;
  border-radius: 5px;
  display: inline-block;
  width: 30rem;
}

.store-button {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.store-button::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
  z-index: -1;
}

.store-button--charbon-kunitoraya:hover {
  color: #000;
}

.store-button--udon-bistro:hover {
  color: #eb5328;
}

.store-button--onigiri-toratora:hover {
  color: #d6ae12;
}

.store-button--stand-tora:hover {
  color: #0d1b62;
}

.store-button--onigiri-bar:hover {
  color: #294f34;
}

.store-button--kunitoraya-jp:hover {
  color: #ceb190;
}

.store-button:hover::after {
  transform: scale(1, 1);
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin: 7.5rem 0;
}

.marquee-track {
  display: flex;
}

.marquee-inner {
  flex: 0 0 auto;
  padding-right: 1rem;
  font-size: 5rem;
  line-height: 6rem;
  color: #fff;
}

/* ========== SNAPWIDGET ========== */
.snapwidget {
  max-width: 120rem;
  margin: 4rem auto;
  padding: 0 3rem;
}

.instagram-icon__img {
  width: 4.6rem;
}

/* ========== FOOTER COPYRIGHT ========== */
.footer-copyright {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Strawford Regular", sans-serif;
  padding: 4rem 0;
  text-align: center;
}

/* ========== FOOTER LOGO ========== */
.footer-logo {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  opacity: 0;
  transform: translate(0, 2rem);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}

.footer-logo--active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== ONIGIRI ========== */
.onigiri-wrapper {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1000;
}

.onigiri {
  position: fixed;
  top: -5%;
  font-size: 2.6rem;
  color: #fff;
  animation: fall 2s linear forwards;
  white-space: nowrap;
}

@keyframes fall {
  0% {
    top: -5%;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 120%;
    opacity: 0;
  }
}
/* ========== KEYFRAMES ========== */
@keyframes global-toggle {
  0%, 6% {
    transform: translate(-6rem, 0);
  }
  33%, 66% {
    transform: translate(0, 0);
  }
  94%, 100% {
    transform: translate(6rem, 0);
  }
}/*# sourceMappingURL=style.css.map */