html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
  overflow: auto;
}

body {
  line-height: 1;
  font-family: HelveticaNeue, 'Arimo', 'Noto Sans JP';
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  font-size: 1.6rem;
  background: #0d0d0d;
  color: #fff;
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul, li, ol {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Layout */
.header {
  width: calc(100% - 12vw);
  position: fixed;
  top: 6vw;
  left: 6vw;
  z-index: 100;
}

.header__nav {
  text-align: right;
}

.header__list {
  display: none;
}

.header__list .item {
  display: inline-block;
}

.header__list button {
  font-size: 1.8rem;
  display: inline-block;
  color: white;
}

.header__logo {
  width: 26px;
}

.l_wrap {
  width: 92vw;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

/* Decoration =========================================== */
.d_br {
  display: block;
}

.d_grayscale {
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transition: all .8s ease;
  -webkit-backface-visibility: hidden;
}

.d_outline {
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  margin-left: 20vw;
}

.d_outline.show {
  opacity: 1;
}

.d_outline text {
  font-size: 40vw;
}

.d_outline.show svg {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  -webkit-animation: dash 3s linear forwards;
          animation: dash 3s linear forwards;
  overflow: visible;
  fill: transparent;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Section FV =========================================== */
.sc_fv {
  height: 100vh;
  position: relative;
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
}

.fv__bg img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 80vh;
  margin-left: 6vw;
}

.fv__title {
  font-size: 6rem;
  position: absolute;
  bottom: 4vh;
  font-weight: 700;
}

/* Section Intro =========================================== */
.sc_intro {
  position: relative;
  margin-top: 28vh;
}

.intro__title-box {
  position: absolute;
  left: 50%;
  top: 15%;
  -webkit-transform: rotate(90deg) translate(-50%, 0%);
          transform: rotate(90deg) translate(-50%, 0%);
}

.intro__box {
  position: absolute;
  top: 57vw;
  left: 4vw;
  z-index: 50;
}

.intro__box--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8vh;
}

.intro__catch {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro__text {
  letter-spacing: .1em;
  font-size: 1.2rem;
  line-height: 2;
  margin: 4vw auto 4vw 4vw;
  width: 70%;
  max-width: 560px;
  -webkit-transform: scale(1.1, 1);
          transform: scale(1.1, 1);
}

.intro__text-en {
  font-size: 1rem;
  color: #3d3d3d;
  line-height: 1.6;
  letter-spacing: .05em;
  font-style: italic;
  margin-left: 4vw;
}

.intro__img--1 {
  display: block;
  width: 104vw;
  margin-left: -34vw;
}

.intro__img--2 {
  display: block;
  width: 40vw;
  margin: -5vw 30px 0 auto;
  position: relative;
  z-index: 10;
}

.intro__img--3 {
  width: 40vw;
}

/* Section SHOP =========================================== */
.sc_shop {
  margin-top: 28vh;
}

.shop__item {
  margin-bottom: 20vw;
}

.shop__title-box {
  margin-bottom: -10vh;
}

.shop__item_title {
  margin-bottom: -22vw;
  position: relative;
  z-index: 10;
}

.shop__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shop__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 60vw;
}

.shop__num {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5em;
}

.shop__name {
  font-size: 6rem;
}

.shop__name_ex {
  font-size: 2rem;
  display: block;
  margin: 10px auto 24px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.shop__open {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop__time {
  font-size: 2.3rem;
  letter-spacing: .04em;
  display: inline-block;
  margin-right: 2vw;
}

.shop__time_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop__time_in svg {
  margin: 0 8px;
  display: block;
}

.shop__detail {
  font-size: 1.2rem;
  display: inline-block;
}

.shop__btn {
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  position: relative;
  padding: 2em 0;
  font-size: 1.6rem;
  margin: 1em auto 1.5em;
}

.shop__btn svg {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.shop__btn {
  cursor: pointer;
  position: relative;
  border: none;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  outline: none;
  color: white;
  background-color: transparent;
  white-space: nowrap;
}

.shop__btn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  font-size: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  color: black;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}

.shop__btn::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.075);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.shop__btn:active:before {
  width: 100%;
}

.shop__btn:active span {
  opacity: 1;
}

.shop__address {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: .2em;
}

.shop__address_sm {
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
}

.shop__address--en {
  margin-top: 1.5em;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  color: #6e6e6e;
  line-height: 1.4;
  letter-spacing: .1em;
}

/* Section MENU =========================================== */
.sc_menu {
  margin-top: 28vh;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -5vh 4% 5vw;
}

.menu__item {
  text-align: center;
  width: 50%;
  margin-bottom: 12%;
}

.menu__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 36vw;
  max-width: 320px;
  opacity: .88;
}

.menu__name {
  font-size: 2rem;
  margin-top: 20px;
  font-weight: normal;
}

.menu__price {
  font-size: 1.4rem;
  margin: 10px auto 0;
}

.menu__more {
  font-size: 6rem;
  position: relative;
  text-align: center;
  width: auto;
  font-style: italic;
  font-weight: 500;
}

.menu__more_child {
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: -34vw;
  margin: auto;
  font-style: normal;
}

.menu__extra {
  font-size: 1rem;
  color: #6a6a6a;
  text-align: center;
  letter-spacing: .1em;
  margin-top: 1rem;
}

/* Section NEWS =========================================== */
.sc_news {
  margin-top: 32vw;
  position: relative;
}

.news__item_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8vw 0;
  border-bottom: 1px solid #4e4e4e;
}

.news__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 33%;
  height: 33%;
  margin-right: 5%;
  opacity: .7;
}

.news__info {
  letter-spacing: .1em;
  color: #9a9a9a;
}

.news__date {
  font-size: 1.1rem;
  color: #6e6e6e;
  margin-bottom: 1em;
}

.news__name {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-right: 4vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Section FOOTEr =========================================== */
.footer {
  position: relative;
  margin-top: 25vw;
}

.footer__mail_item,
.footer__sns_item a {
  border-bottom: 3px solid #fff;
  vertical-align: bottom;
  line-height: 1;
  display: inline-block;
  margin-top: 12px;
}

.footer__info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

.footer__sns {
  margin-bottom: 40px;
}

.footer__txt {
  font-size: 1.2rem;
  margin-bottom: .1em;
}

.footer__txt.privacy {
  margin-top: .8em;
  text-align: right;
}

.footer__txt.privacy a {
  border-bottom: 1px solid;
}

.footer__sns .footer__txt:nth-of-type(n+2) {
  margin-top: 40px;
}

.footer__sns_item {
  font-size: 4rem;
}

.footer__mail_item {
  font-size: 2.6rem;
}

.footer__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  opacity: .5;
}

.footer__copyright {
  display: block;
  font-size: 1rem;
  letter-spacing: .15em;
  text-align: center;
  margin: 100px auto;
}

:root {
  --numOfListA: 6;
  --imgW: 400px;
  --mBetweenImg: 32px;
}

.footer__bg {
  -webkit-animation: slideshow 70s linear infinite;
          animation: slideshow 70s linear infinite;
}

.footer__bg_img {
  width: var(--imgW);
  height: var(--imgW);
  opacity: .5;
}

.footer__bg_img + .footer__bg_img {
  margin-left: var(--mBetweenImg);
}

@-webkit-keyframes slideshow {
  100% {
    -webkit-transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
            transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
  }
}

@keyframes slideshow {
  100% {
    -webkit-transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
            transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
  }
}

.pc,
.header__list,
.fv__scroll {
  display: none;
}

/* PC =========================================== */
@media screen and (min-width: 560px) and (max-width: 1024px) {
  html {
    font-size: 1.9vw;
  }
  .d_outline.show svg {
    stroke-dasharray: 2800;
    stroke-dashoffset: 2800;
  }
  .header__logo {
    width: 5vw;
  }
  .fv__bg {
    right: 0;
  }
  .menu__item {
    width: 33%;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 10px;
  }
  .sp {
    display: none;
  }
  .pc,
  .header__list,
  .fv__scroll {
    display: block;
  }
  .l_wrap {
    /* max-width: 1366px; */
    width: 90%;
  }
  .sc_intro {
    margin-top: 340px;
  }
  .sc_shop {
    margin-top: 20vw;
  }
  .sc_menu {
    margin-top: 20vw;
  }
  .d_outline text {
    font-size: 32vw;
  }
  .d_outline.show svg {
    stroke-dasharray: 2800;
    stroke-dashoffset: 2800;
  }
  .d_grayscale:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
  }
  .fv__title {
    font-size: 12.4vw;
    line-height: .92;
  }
  .fv__bg {
    left: auto;
    right: 0;
  }
  .fv__bg img {
    max-height: 1000px;
    min-height: 680px;
  }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header {
    width: calc(100% - 12vh);
    top: auto;
    left: auto;
    margin: 6vh;
  }
  .header__logo {
    width: 6vh;
    max-width: 50px;
    min-width: 32px;
  }
  .header__list {
    font-size: 16px;
    display: block;
  }
  .header__list button {
    margin-left: 28px;
    -webkit-transition: ease .3s all;
    transition: ease .3s all;
  }
  .header__list button:hover {
    color: #909090;
  }
  .fv__scroll {
    position: absolute;
    bottom: 6vh;
    right: 0;
  }
  .fv__scroll {
    padding-top: 70px;
  }
  .fv__scroll svg {
    -webkit-animation: sdb 1.8s infinite;
    animation: sdb 1.8s infinite;
  }
  @-webkit-keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(0, 16px);
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(0, 16px);
              transform: translate(0, 16px);
      opacity: 0;
    }
  }
  .intro__img--1 {
    width: 64vw;
    margin-left: 0;
  }
  .intro__img--2 {
    width: 25vw;
    margin: -5vw auto 0 5vw;
  }
  .intro__img--3 {
    margin: -8vw auto 0 36vw;
    width: 24vw;
  }
  .intro__title-box {
    left: 60%;
    top: 26%;
  }
  .intro__box {
    width: 460px;
    top: 27.6vw;
    right: 20vw;
    left: auto;
  }
  .intro__catch {
    font-size: 5.6rem;
    text-align: right;
  }
  .intro__text {
    font-size: 1.8rem;
    width: 95%;
    max-width: none;
    margin: 40px 10% 0 0;
    text-align: justify;
  }
  .intro__text-en {
    font-size: 1.4rem;
    margin: 32px 0 0 -5%;
  }
  .shop__title-box {
    margin-bottom: 8vw;
  }
  .shop__title-box {
    margin: auto;
  }
  .shop__list {
    margin-top: -7.5vw;
  }
  .shop__item {
    margin-bottom: 100px;
  }
  .shop__item_title {
    margin-bottom: 0;
  }
  .shop__name {
    font-size: 7.5rem;
  }
  .shop__img {
    margin-top: -9.5vw;
  }
  .shop__img img {
    -o-object-fit: scale-down;
       object-fit: scale-down;
    width: 95%;
    height: 100%;
  }
  .shop__num {
    font-size: 2rem;
  }
  .shop__open {
    margin-top: 28px;
  }
  .shop__time {
    font-size: 4rem;
  }
  .shop__detail {
    font-size: 1.3rem;
  }
  .shop__btn {
    width: 95vw;
    margin-top: 0;
    font-size: 2.4rem;
  }
  .shop__btn:hover:before {
    width: 100%;
  }
  .shop__btn:hover span {
    opacity: 1;
  }
  .shop__address {
    font-size: 1.6rem;
  }
  .shop__address_sm {
    font-size: 1.2rem;
    margin-top: 1.2em;
  }
  .menu__list {
    width: 80vw;
    margin-bottom: 0;
    margin: auto;
  }
  .menu__item {
    width: 25%;
    margin-bottom: 80px;
  }
  .menu__img {
    height: 220px;
  }
  .menu__name {
    font-size: 2.8rem;
  }
  .menu__price {
    font-size: 2rem;
  }
  .menu__more {
    font-size: 17.5rem;
  }
  .menu__more_child {
    font-size: 2.6rem;
    top: 20px;
    right: -540px;
    left: 0;
  }
  .menu__extra {
    font-size: 1.3rem;
  }
  .sc_news {
    margin-top: 300px;
  }
  .news__title-box {
    margin-left: 0;
    position: absolute;
    right: 84%;
    top: 500px;
    -webkit-transform: rotate(90deg) translate(-50%, 0%);
            transform: rotate(90deg) translate(-50%, 0%);
  }
  .news__title-box text {
    font-size: 360px;
  }
  .news__list {
    width: 75%;
    margin: auto 0 auto auto;
  }
  .news__item_in {
    padding: 25px 0;
  }
  .news__thumb {
    max-width: 150px;
    width: 100%;
    height: auto;
  }
  .news__name {
    font-size: 1.8rem;
  }
  .news__info {
    width: calc(100% - 150px + 5% - 200px);
  }
  .news__name {
    line-height: 1.75;
    font-size: 1.6rem;
  }
  .footer {
    margin-top: 200px;
  }
  .footer img {
    height: 480px;
  }
  .footer__txt {
    font-size: 1.5rem;
  }
  .footer__info {
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 65%;
  }
  .footer__mail {
    margin-left: 5%;
  }
  .footer__mail_item {
    font-size: 6rem;
  }
  :root {
    --imgW: 560px;
  }
  .footer__copyright {
    font-size: 1.3rem;
  }
}

.page-privacy section {
  max-width: 720px;
  width: 85vw;
  font-size: 14px;
  margin: 10vh auto;
  letter-spacing: .08em;
}

.page-privacy h2 {
  font-size: 20px;
  font-weight: normal;
  margin: 2em auto 1em;
  border-bottom: 2px solid #fff;
  padding-bottom: .4em;
}

.page-privacy h3 {
  margin: 2.4em auto 1em;
}

.page-privacy p, .page-privacy ul {
  line-height: 1.75;
}

.page-privacy li {
  margin: .5em auto;
}

.page-privacy li:before {
  content: '-';
  display: inline-block;
  margin-right: .5em;
}

.page-privacy a {
  margin-top: 40px;
}
/*# sourceMappingURL=style.css.map */