body, noscript {
  box-sizing: border-box;

  margin: unset;
  position: relative;

  overflow: hidden;
}

noscript, p {
  margin-block-start: unset;
  margin-block-end: unset;
}
noscript p {
  font-family: 'Sans-serif';
}
p {
  display: inline-block;
  user-select: none;

  font-family: 'Teko';
  font-weight: 400;
}

noscript {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  width: 100dvw;
}

noscript > div {
  height: 100%;
  width: 100%;

  background-color: #FAB217;

  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;
}
noscript > div > p {
  margin-left: 50px;
  font-weight: bold;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

html, body {
  position: relative;
  height: 100%;
  width: 100%;
}
body > section {
  position: relative;
  height: 100%;
}


figure { margin: unset; }

img {
  display: block;
  object-fit: cover;
  position: absolute;

  width: 100%;
  max-height: 100%;
}

section.portal {
  position: absolute;
  z-index: 100;

  height: 0;
  width: 100%;
}

section.portal .background {
  position: absolute;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  width: 100dvw;
  z-index: 0;

  background-color: rgba(0, 0, 0, 0.95);
}

section.portal .photo-modal {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  top: 0;
  left: 0;
}
section.portal .photo-modal .main {
  position: relative;
  height: 100%;
  width: 100%;
}

section.portal .photo-modal figure {
  display: flex;
  flex-direction: row;
  justify-content: center;

  margin-top: 1vh;
  margin-top: 1dvh;
}

section.portal .photo-modal img {
  max-height: 97vh;
  max-height: 97dvh;
  max-width: 96vw;
  width: unset;
  height: unset;

  border: 0.5vw solid #fff;
  object-fit: contain!important;
}


.title {
  background: rgb(170, 170, 170);
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;

  height: 80px;
  width: 200px;

  border-radius: 50px;
}
.title > span {
  font-family: 'teko';
  font-size: 40px;
  color: #fff;

  padding-right: 5px;
}
a.title
, .pseudo-a.title {
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #fff;
  border: 0.25em solid rgb(170, 170, 170);
  border-radius: 0px;
}
a.title:hover {
  text-decoration: none;
  cursor: pointer;
}
a.title > span
, .pseudo-a.title > span {
  color: rgb(170, 170, 170);
  text-decoration: underline;
}

.page-cover {
  position: absolute;
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: 101;
  background-color: #fff;
}

.swiper-slide .content {
  height: 100%;
  width: 100%;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.z-index-11 { z-index: 11; }
.scrollable {
  position: absolute;
  z-index: 100;
  background-color: rgb(170, 170, 170);
  border-radius: 2px;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  opacity: 1;
  will-change: transform;
  transition:
    opacity 0.5s ease
    , visibility 0.5s ease
    , transform 0.5s ease;
  -webkit-transition:
    opacity 0.5s ease
    , visibility 0.5s ease
    , -webkit-transform 0.5s ease;
}

.scrollable-vertical {
  transform: translateY(0vh);
  -webkit-transform: translateY(0vh);
  right: 0;
  width: 6px;
  height: 20%;
}
.scrollable-horizontal {
  bottom: 1px;
  left: 18px;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  width: calc(50% - 18px);
  height: 6px;
}
.w33 { width: calc(33% - 18px); }
.fade {
  opacity: 0;
  visibility: hidden;
}
.to-bottom {
  transform: translateY(25vh);
}
.to-right {
  transform: translateX(100%);
}

/*.about { background-color: #FAB217; }*/
.about h1 {
  font-family: 'Teko';
  font-weight: 600;
  font-size: 36px;
  color: rgb(170, 170, 170);

  margin: unset;
}

.about .container {
  height: 100%;
  width: 95%;

  display: flex;
  flex-direction: column;
}
.about .container .separator {
  height: 4px;
  width: 100%;

  background-color: rgb(170, 170, 170);
}

.about .container .separator.top { margin-bottom: 16px; }
.about .container .separator.bottom { margin-top: 16px; }

.about .container .message-window {
  position: relative;
  display: flex;
  flex-direction: column;

  height: calc(100% - 150px);

  margin-left: 8px;
  margin-right: 8px;
}

.about .container .message-window .top {
  background-color: #fff;
}
.about .container .message-window .tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.about .container .message-window .tab div {
  background-color: rgb(115, 115, 115);

  border-top: 2px solid rgb(170, 170, 170);
  border-right: 2px solid rgb(170, 170, 170);
  border-left: 2px solid rgb(170, 170, 170);

  border-top-left-radius: 5px;
  border-top-right-radius: 5px;

  padding: 4px 10px;
  z-index: 1;
  margin-bottom: -2.5px;
}
.about .container .message-window .tab p {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.about .container .message-window pre {
  margin: unset;

  font-family: sans-serif;
  color: #fff;
  font-size: 13px;
  text-align: left;

  border: 2px solid rgb(170, 170, 170);
  background-color: rgb(115, 115, 115);

  overflow-y: scroll;

  padding: 1em;
}

.swiper-photograph > .swiper-wrapper > .swiper-slide > .content .content {
  padding: unset;
  align-items: unset;
  justify-content: unset;
}

.swiper-slide.vertical { height: 75%; }
.vertical > .content {
  flex-direction: row;
  align-items: unset;
  justify-content: unset;

  padding-top: 216px;
}
.vertical .swiper-vertical-main {
  height: 100%;
  width: 75%;
}
.vertical .swiper-vertical-thumbs {
  height: 100%;
  width: 25%;
  max-width: 150px;
}
.vertical .swiper-vertical-thumbs .swiper-wrapper { flex-direction: column; }
.vertical .swiper-vertical-thumbs .swiper-slide { pointer-events: all; }
.vertical .swiper-vertical-thumbs .content { overflow: hidden; }

.swiper-horizontal-main {
  padding-top: 108px;
}
.swiper-horizontal-main .content {
}
.swiper-horizontal-thumbs {
  height: 50%;
  width: 90%;
}
.swiper-horizontal-thumbs .content {
}
.swiper-horizontal-thumbs .swiper-slide {
  width: 25%;
  pointer-events: all!important;
}

.row-gallery {
  align-items: start;
}
.row-gallery img {
  display: block;
  position: unset;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.row-gallery .content {
  height: calc(100% - 56px);
  justify-content: start;
  overflow-y: scroll;

  /*&::-webkit-scrollbar { display: none; }*/
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.row-gallery .row-box {
  column-count: 2;
  column-gap: 0.25rem;
}

.row-gallery .row-box .item {
  position: relative;
  width: 100%;
  padding-top: 0.25rem;
}

.row-gallery .content .warn {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-top: 1em;
}
.row-gallery .content .warn > p {
  color: rgb(170, 170, 170);
  font-size: 11px;
}
.row-gallery .content .warn > p.multi-bites {
  font-size: 10px;
}

.copy {
  z-index: 1;

  position: absolute;
  bottom: 12px;
  width: 100%;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  padding-left: 5px;
}

.copy p {
  font-size: 13px;
  color: rgb(170, 170, 170);
  line-height: 1;
}
.copy .pipe { margin: 0 8px; }
.copy .multi-bites {
  font-family: 'Zou', '002zouver.2-Regular';
  font-size: 9px;
  line-height: 0;
  margin: 0 2px 5px 2px;
}

@media screen and (min-width: 968px) {
  body > section {
    width: 968px;
    margin-right: auto;
    margin-left: auto;
  }

  .copy {
    bottom: 20px;
    padding-left: 10px;
  }
  .copy p {
    font-size: 15px;
  }
  .copy .multi-bites {
    font-size: 11px;
    margin: 0 4px 6px 4px;
  }
  .about .container {
    padding: 108px 20px 0 20px;
  }

  .about .container .message-window {
    height: calc(100% - 235px);
  }
  .about .container .message-window .tab div {
    margin-bottom: -1px;
  }

  .about .container .message-window pre {
    &::-webkit-scrollbar { display: none; }
    -ms-overflow-style: none;
    scrollbar-width: none!important;
  }

  .swiper-slide .content {
    padding: 0 18px;
  }
  .vertical .swiper-vertical-main {
    width: 70%;
  }

  .row-gallery {
    margin-top: 3.5rem;
  }
  .row-gallery .row-box {
    column-count: 3;
    column-gap: 0.5rem;

    -ms-overflow-style: none;
    scrollbar-width: none!important;
  }
  .row-gallery .row-box::-webkit-scrollbar {
    display: none;
  }
  .row-gallery .row-box .item {
    padding-top: 0.5rem;
  }
  .row-gallery .content {
    height: 85%;
  }
}
