@font-face {
  font-family: nimbus-sans-extended, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Saol Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/SaolDisplay-Regular.97c5bb7f.woff2") format("woff2"), url("/SaolDisplay-Regular.03cbf316.woff") format("woff");
}
@font-face {
  font-family: "Saol Display Italic";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/SaolDisplay-LightItalic.fee10cbd.woff2") format("woff2"), url("/SaolDisplay-LightItalic.98783332.woff") format("woff");
}
:root {
  --color-black: #000;
  --color-grey-darker: #3e3f3f;
  --color-grey-dark: #3e3f3f;
  --color-grey: #f7f5f4;
  --color-white: #fff;
  --font-f-serif: "Saol Display Italic";
  --font-f-sans-light: "nimbus-sans-extended";
  --font-f-sans: "nimbus-sans-extended";
  --font-s-heading-sm: 8.333vw;
  --lh-heading-sm: 10.556vw;
  --font-s-chapeau-md: 4.444vw;
  --lh-chapeau-md: 9.167vw;
  --font-s-chapeau-sm: 3.611vw;
  --lh-chapeau-sm: 3.611vw;
  --font-s-body: 4.444vw;
  --lh-body: 8.333vw;
  --ease-button: cubic-bezier(0.34, 0, 0.18, 1);
  --spacing-15: 4.11vw;
  --spacing-30: 8.219vw;
  --spacing-45: 12.329vw;
  --spacing-60: 16.438vw;
  --spacing-75: 20vw;
  --spacing-90: 24.658vw;
  --spacing-120: 32.877vw;
  --spacing-150: 40vw;
  --spacing-180: 49.315vw;
  --col-1: calc(100vw / 12 * 1);
  --col-2: calc(100vw / 12 * 2);
  --col-3: calc(100vw / 12 * 3);
  --col-4: calc(100vw / 12 * 4);
  --col-5: calc(100vw / 12 * 5);
  --col-6: calc(100vw / 12 * 6);
  --col-7: calc(100vw / 12 * 7);
  --col-8: calc(100vw / 12 * 8);
  --col-9: calc(100vw / 12 * 9);
  --col-10: calc(100vw / 12 * 10);
  --col-11: calc(100vw / 12 * 11);
  --col-12: calc(100vw / 12 * 12);
}
@media (min-width: 768px) {
  :root {
    --font-s-heading-sm: 9.5vw;
    --lh-heading-sm: .8;
    --font-s-chapeau-md: 1.25vw;
    --lh-chapeau-md: 1.597vw;
    --font-s-chapeau-sm: 0.903vw;
    --lh-chapeau-sm: 0.903vw;
    --font-s-body: 1.111vw;
    --lh-body: 2.083vw;
    --spacing-15: 1.042vw;
    --spacing-30: 2.083vw;
    --spacing-45: 3.125vw;
    --spacing-60: 4.167vw;
    --spacing-75: 5.208vw;
    --spacing-90: 6.25vw;
    --spacing-120: 8.333vw;
    --spacing-150: 10.417vw;
    --spacing-180: 12.5vw;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding and list styles on ul, ol elements with a class attribute */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set font smoothing */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Set core body defaults */
body {
  margin: 0;
  overflow-y: scroll;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  appearance: none;
  outline: none;
}

a {
  color: var(--color-grey-darker);
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

select {
  background: none;
  border: none;
  -webkit-appearance: none;
}

[style*="--aspect-ratio"] > *:first-child,
.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
    overflow: hidden;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / var(--aspect-ratio));
  }
}
body {
  font-family: var(--font-f-sans);
  font-size: var(--font-s-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--color-white);
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0;
  align-items: start;
  position: relative;
}

.container.is-centered {
  align-items: center;
}

.button {
  display: flex;
  align-items: center;
  margin: 8.333vw 0 0;
  height: 11.111vw;
  font-size: var(--font-s-button);
  line-height: var(--lh-button);
  text-transform: uppercase;
  text-decoration: none;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 0 4.167vw;
  width: 11.111vw;
  height: 11.111vw;
  overflow: hidden;
  pointer-events: none;
}
.button__circle {
  position: absolute;
  width: 11.111vw;
  height: 11.111vw;
  overflow: visible;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}
.button__svg {
  display: block;
  position: absolute;
  width: 2.278vw;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
.button__title--secondary {
  display: none;
}
@media (min-width: 768px) {
  .button__icon {
    margin: 0 0 0 1.042vw;
    width: 5.6875vw;
    height: 5.6875vw;
  }
  .button__circle {
    width: 4.6875vw;
    height: 4.6875vw;
  }
  .button__svg {
    width: 1.069vw;
    height: 1.273vw;
  }
  .button__svg--clone {
    transform-origin: left center;
    transform: translateX(-4.6875vw);
  }
  .button__title-mask {
    position: relative;
    padding: 0.347vw 0;
    overflow: hidden;
  }
  .button__title {
    display: block;
    transform: rotate(0deg);
    transform-origin: right center;
  }
  .button__title--secondary {
    display: block;
    position: absolute;
    left: 0;
    bottom: -4.6875vw;
    transform: rotate(15deg);
    transform-origin: left center;
  }
}
@media (hover: hover) {
  .button__icon > .button__svg--clone {
    transition: transform 0.3s var(--ease-button);
  }
  .button__icon, .button__icon > .button__svg, .button__title-mask > .button__title-wrap, .button__title-mask > .button__title-wrap > .button__title, .button__title-mask > .button__title-wrap > .button__title--secondary {
    will-change: transform;
    transition: transform 0.62s var(--ease-button);
  }
  .button:hover > .button__title-mask > .button__title-wrap {
    transform: translateY(-4.6875vw);
  }
  .button:hover > .button__title-mask > .button__title-wrap > .button__title {
    transform: rotate(15deg);
  }
  .button:hover > .button__title-mask > .button__title-wrap > .button__title--secondary {
    transform: rotate(0deg);
  }
  .button:hover > .button__icon > .button__svg {
    opacity: 0;
    transform: translateX(4.6875vw);
    transition: 0.3s var(--ease-button);
    transition-property: opacity, transform;
  }
  .button:hover > .button__icon > .button__svg--clone {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.62s var(--ease-button);
  }
  .button:hover > .button__icon {
    transform: scale(1.2);
  }
}

.button.is-white {
  color: var(--color-white);
}

/*--common--*/
@media (min-width: 1025px) {
  .sp {
    display: none;
  }
}
@media (max-width: 1025px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 768px) {
  html,
body {
    overflow: auto;
  }
  body:not(.top):not(.page) .app,
body:not(.top):not(.page) .o-scroll,
body:not(.top):not(.page).is-device main {
    position: relative !important;
    overflow: auto !important;
  }
  .o-image img {
    opacity: 1;
  }
  .o-image-s img,
.o-image-m img {
    height: auto;
  }
  .o-scroll {
    margin-top: 20vw;
    padding: 0 5vw;
  }
}
a {
  color: #fff;
  text-decoration: none;
}

.o-image {
  mix-blend-mode: normal;
}

.content_top {
  background: url(/ph_slideshow01.fba8d34d.jpg) center center no-repeat;
  background-size: cover;
}

.main_second {
  background: #000;
}

.logo {
  position: fixed;
  top: 2%;
  left: 3%;
  z-index: 100000;
}
.logo svg {
  width: 6vw;
  min-width: 93px;
  fill: #fff;
}

.nav {
  position: absolute;
  left: 43%;
  z-index: 10000;
  font-size: 16px;
}
.nav ul {
  position: fixed;
  top: 4%;
  display: flex;
  justify-content: center;
}
.nav ul li {
  width: 5vw;
  cursor: pointer;
}
.nav ul li a,
.nav ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ul li a span,
.nav ul li button span {
  display: none;
  position: relative;
  top: -1.3vw;
  text-align: center !important;
}
.nav ul li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 40px;
  margin: 0 auto;
}
.nav ul li:nth-child(1)::before {
  background: #b01c5a;
}
.nav ul li:nth-child(1) span {
  color: #b01c5a;
}
.nav ul li:nth-child(2)::before {
  background: #1f43aa;
}
.nav ul li:nth-child(2) span {
  color: #1f43aa;
}
.nav ul li:nth-child(3)::before {
  background: #960012;
}
.nav ul li:nth-child(3) span {
  color: #960012;
}
.nav ul li:nth-child(4)::before {
  background: #006d3c;
}
.nav ul li:nth-child(4) span {
  color: #006d3c;
}
.nav ul li:nth-child(5)::before {
  background: #006d3c;
}
.nav ul li:nth-child(5) span {
  color: #006d3c;
}
.nav ul li.is-show::before {
  background: none;
}
.nav ul li.is-show span {
  display: inline;
}

.rev_wrap {
  height: 100%;
  position: relative;
  word-wrap: break-word;
  overflow-y: hidden;
  line-height: 1.2;
}

.rev_wrap2 {
  margin-top: -5vh;
}

.rev {
  display: block;
  transform-origin: left bottom;
}

.rev2 {
  display: block;
  transform-origin: right bottom;
}

@media (max-width: 768px) {
  .logo {
    left: 5%;
  }
  .main_second .logo {
    top: 1.2%;
  }
  .rev_wrap {
    line-height: 2.2;
  }
  .content__heading {
    grid-column: 1/13 !important;
    letter-spacing: 0 !important;
    font-size: 12vw !important;
  }
  .content__heading ul li:nth-of-type(2),
.content__heading ul li:nth-of-type(3) {
    margin-left: 0 !important;
  }
  .rev_wrap {
    line-height: 1.1;
  }
  .rev_wrap2 {
    margin-top: 0;
  }
  .nav ul li a span {
    top: -2.8vh;
  }
}
/*--about, book--*/
.sec:not(:last-child) {
  margin-bottom: 7vw;
}

.content2 {
  width: var(--col-10);
  margin: 0 auto;
  padding: 10vw 0;
}

.txt_l {
  font-size: 4vw;
  line-height: 1;
}

.hl_page {
  font-size: 2vw;
  line-height: 1;
  margin-bottom: 1.5vw;
}

.dl_page {
  display: flex;
  line-height: 1.5;
  margin-bottom: 0.2vw;
}

.dl_page dt {
  width: 5vw;
}

.ul_icos {
  display: flex;
}
.ul_icos li {
  margin-right: 3vw;
}
.ul_icos li a img {
  height: 2vw;
}

.ph_book {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  background: url(/ph_book.8bd824c3.jpg) left bottom no-repeat;
  background-size: cover;
}

.btn {
  display: flex;
  justify-content: center;
}
.btn a {
  border: 1px solid #fff;
  padding: 2% 4%;
  border-radius: 100px;
  font-size: 2.5vw;
}

@media (max-width: 768px) {
  .content2 {
    padding: 27vw 0 10vw !important;
    font-size: 14px !important;
  }
  .sec:not(:last-child) {
    margin-bottom: 8vw;
  }
  .txt_l {
    line-height: 1.5;
    font-size: 14px !important;
  }
  .hl_page {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
  }
  .dl_page dt {
    width: 18%;
  }
  .dl_page dd {
    width: 82%;
  }
  .ul_page {
    line-height: 1.5;
  }
  .slider {
    display: none;
  }
  body.top .slider,
body.is-show .slider {
    display: block;
  }
  .ul_icos li a img {
    height: 5vw;
  }
  .ul_icos li {
    margin-right: 6vw;
  }
  .ph_book {
    height: 71vw;
  }
  .content_publishing {
    padding-top: 10vw !important;
  }
  .nav ul li {
    width: 12vw;
  }
  .nav ul li span {
    font-size: 12px;
  }
}
/*--/about, book--*/
/*--work--*/
.logo_projects {
  text-transform: none;
  font-size: 10vw;
  opacity: 0;
}

.logo_period {
  width: clamp(153px, 11.953125vw, 306px);
}

/*--/work--*/
/*--nav--*/
#nav_sns {
  display: flex;
  position: fixed;
  top: 28px;
  right: 115px;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
}

#nav_sns li {
  margin: 0 50px 0 0;
}

#nav_sns li:last-child {
  margin: 0;
}

#nav_sns li a {
  font-size: 20px;
  transition: all 0.5s;
}

#nav_sns li a:hover {
  opacity: 0.6;
}

.open.menu_trigger,
.open.menu_trigger span {
  display: inline-block;
  box-sizing: border-box;
}

.open.menu_trigger {
  position: fixed;
  top: 2vw;
  right: 40px;
  z-index: 1000;
  width: 46px;
  height: 19px;
  cursor: pointer;
}

.body_top .open.menu_trigger {
  opacity: 0;
}

.body_top .open.menu_trigger.is-show {
  opacity: 1;
}

.open.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.body_projects .open.menu_trigger span {
  background-color: #fff;
}

.open.menu_trigger.blue span {
  background-color: #001a43;
}

.open.menu_trigger span:nth-of-type(1) {
  top: 0;
}

.open.menu_trigger span:nth-of-type(2) {
  top: 9px;
  width: 34px;
}

.open.menu_trigger span:nth-of-type(3) {
  bottom: 0;
  width: 26px;
}

.open.menu_trigger {
  -webkit-transition: all 0.2s 0 cubic-bezier(0.85, 0, 0.15, 1);
  -moz-transition: all 0.2s 0 cubic-bezier(0.85, 0, 0.15, 1);
  -ms-transition: all 0.2s 0 cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.2s 0 cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}

.open.menu_trigger:hover span:nth-of-type(2),
.open.menu_trigger:hover span:nth-of-type(3) {
  width: 100%;
}

.close.menu_trigger,
.close.menu_trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.close.menu_trigger {
  position: fixed;
  top: 35px;
  right: 40px;
  z-index: 999;
  width: 33px;
  height: 15px;
  cursor: pointer;
}

.close.menu_trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.close.menu_trigger,
.close.menu_trigger span {
  -webkit-transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1);
  -ms-transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.close.menu_trigger span:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}

.close.menu_trigger span:nth-of-type(2) {
  top: 7px;
  transform: rotate(-45deg);
}

.close.menu_trigger:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90000;
  background: #1e1a16;
  box-sizing: border-box;
  line-height: 0.999;
  transform: translateY(-100%);
  transition: transform 1s;
  /*     transition-timing-function:cubic-bezier(0.85, 0, 0.15, 1); */
  will-change: transform;
  overflow: scroll;
}

.gnav.is-active {
  transform: translateY(0);
}

.gnav > .inner {
  width: 90%;
  height: 100%;
  padding: 0 7% 0 3%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 1s;
  /*     transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1); */
  will-change: transform;
  display: flex;
  justify-content: space-between;
}

.gnav > .inner .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .gnav > .inner {
    flex-direction: row-reverse;
  }
}
.gnav.is-active > .inner {
  transform: translateY(0);
}

.ul_gnav_projects {
  position: relative;
  padding-left: 5%;
  padding-bottom: 8vw;
}

.gnav ul.ul_gnav {
  font-family: freight-big-pro, serif;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.01em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.gnav ul.ul_gnav li a {
  color: #fff;
  font-size: clamp(82px, 6.40625vw, 164px);
}

.gnav ul.ul_gnav li span {
  /* 	font-size: 1.25vw; */
  font-size: clamp(20px, 1.5625vw, 40px);
  letter-spacing: 0;
  color: #ccc;
}

.gnav ul .ul_gnav.ul_gnav_sns li {
  line-height: 1.4;
}

.gnav ul .ul_gnav.ul_gnav_sns li a {
  font-size: clamp(20px, 1.5625vw, 40px);
}

#txt_copyright_nav {
  letter-spacing: 0.05em;
  font-size: 10px;
  line-height: 1.3;
  transform: rotate(90deg);
  transform-origin: left top;
  position: absolute;
  right: -165px;
  top: 139px;
  height: 0;
  text-transform: uppercase;
}

.gnav ul .ul_gnav.ul_lang {
  position: fixed;
  right: -9.8vw;
  top: 6vw;
  margin: 0;
  transform: rotate(90deg);
  transform-origin: top left;
  text-transform: uppercase;
  display: flex;
  letter-spacing: 0.05em;
}

.gnav ul .ul_gnav.ul_lang li:first-child {
  margin-right: 3vw;
}

.gnav ul .ul_gnav.ul_lang li a {
  font-size: clamp(12px, 0.9375vw, 24px);
}

@media (max-width: 768px) {
  .open.menu_trigger,
.close.menu_trigger {
    top: 6.5vw;
    right: 5vw;
  }
  .gnav > .inner {
    width: 90%;
    padding: 0 5%;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .gnav ul.ul_gnav {
    top: 59%;
  }
  .gnav ul.ul_gnav li,
.gnav ul .ul_gnav.ul_gnav_sns li {
    line-height: 0.8;
    margin-bottom: 4.5vw;
  }
  .gnav ul.ul_gnav li a {
    font-size: 15vw;
  }
  .gnav ul.ul_gnav li span {
    font-size: 1.2rem;
  }
  .gnav ul .ul_gnav.ul_gnav_sns li a {
    font-size: 1.4rem;
  }
  .gnav ul .ul_gnav.ul_gnav_projects {
    margin-top: 0;
    padding-bottom: 11vw;
  }
  #nav_sns {
    display: none;
  }
  .gnav ul .ul_gnav.ul_lang {
    right: -26.3vw;
    top: 22vw;
  }
  .body_top .gnav ul.ul_gnav li a {
    font-size: 15vw;
  }
}
/*--/nav--*/
.content {
  display: flex;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
}
.content__subheadings {
  grid-column: 1/13;
  margin: 0 0 0 var(--spacing-15);
}
@media (min-width: 768px) {
  .content__subheadings {
    grid-column: 1/3;
    margin: 0 0 0 var(--spacing-30);
  }
}
.content__subheading {
  display: block;
  text-transform: uppercase;
}
.content__subheading.is-sm {
  margin: var(--spacing-15) 0 0;
  font-size: var(--font-s-chapeau-sm);
  line-height: var(--lh-chapeau-sm);
}
.content__subheading.is-md {
  font-size: var(--font-s-chapeau-md);
  line-height: var(--lh-chapeau-md);
}
.content__heading {
  grid-column: 1/13;
  margin: var(--spacing-30) var(--spacing-15) 0;
  font-family: var(--font-f-sans-light);
  font-size: var(--font-s-heading-sm);
  line-height: var(--lh-heading-sm);
  letter-spacing: -0.2rem;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .content__heading {
    grid-column: 2/12;
    margin: 0;
  }
}
.content__heading ul li:nth-of-type(2) {
  margin-left: 10.64vw;
}
.content__heading ul li:nth-of-type(3) {
  margin-left: 8.35vw;
}

.placeholders {
  position: fixed;
  top: 40%;
  right: calc(var(--col-2) * -1.5);
  z-index: 1;
  width: var(--col-9);
  overflow: unset;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.placeholders__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--col-9);
  transform-origin: left bottom;
  will-change: transform;
}
.placeholders__img-wrap:first-child {
  top: 10px;
  left: -20px;
  z-index: 2;
}
.placeholders__img-wrap:nth-child(2) {
  top: -30px;
  left: 10px;
  z-index: 1;
}
.placeholders__img-wrap:nth-child(3) {
  top: 30px;
  z-index: 0;
}
@media (min-width: 768px) {
  .placeholders {
    top: 10%;
    width: var(--col-4);
  }
  .placeholders__img-wrap {
    width: var(--col-4);
  }
  .placeholders__img {
    max-width: unset;
    width: calc(100% + var(--col-3)) !important;
    will-change: transform;
  }
}

.slider {
  --slidesTotal: 8;
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  height: calc(var(--vh, 1vh) * 100);
  visibility: hidden;
  opacity: 0;
  will-change: transform;
}
.slider__button-close {
  position: fixed;
  top: -11.11111vw;
  left: 56.944vw;
  z-index: 1001;
  width: 56.944vw;
  height: 56.944vw;
  will-change: transform;
}
.slider__button-close-icon {
  width: 56.944vw;
  height: 56.944vw;
  overflow: visible;
}
.slider__container {
  display: grid;
  grid-template-columns: repeat(var(--slidesTotal), var(--col-9));
  grid-column-gap: 4.167vw;
  align-items: center;
  padding: 0 4.167vw;
  height: calc(var(--vh, 1vh) * 100);
}
.slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.slider__item-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  user-select: none;
}
.slider__item-heading-wrap, .slider__item-button-wrap {
  display: flex;
  overflow: hidden;
}
.slider__item-button-wrap {
  pointer-events: all;
}
.slider__item-heading {
  pointer-events: none;
  font-family: var(--font-f-serif);
  font-size: 15vw;
  line-height: 1.5;
  color: var(--color-white);
  transform-origin: left bottom;
  will-change: transform;
}
.slider__item-button {
  margin: 4.167vw auto 0;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .slider {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow-x: unset;
  }
  .slider__button-close {
    position: absolute;
    top: 1.042vw;
    left: 83.68089vw;
    right: unset;
  }
  .slider__button-close, .slider__button-close-icon {
    width: 14.236vw;
    height: 14.236vw;
  }
  .slider__button-close-icon {
    position: absolute;
    top: 0;
    left: 0;
  }
  .slider__container {
    grid-template-columns: repeat(var(--slidesTotal), var(--col-4));
    grid-column-gap: 4.167vw;
    padding: 0 var(--col-1);
    height: unset;
    cursor: grab;
  }
  .slider__item-heading {
    font-size: 4vw;
    line-height: 1;
    text-align: center;
    padding: 0 1vw;
  }
  .slider__item-button {
    margin: 1.389vw auto;
  }
  .slider__item-img {
    max-width: unset;
    pointer-events: none;
    user-select: none;
    transform-origin: left center;
    will-change: transform;
  }
  .slider__progress-wrap {
    display: block;
    position: absolute;
    left: var(--col-2);
    bottom: 3.125vw;
    width: var(--col-8);
    height: 1px;
    overflow: hidden;
    background-color: #d6d6d6;
    transform-origin: left center;
    will-change: transform;
  }
  .slider__progress {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
  }
}

.is-dragging .slider__container {
  cursor: grabbing;
}

.is-device .slider {
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  height: calc(var(--vh, 1vh) * 100);
}

.is-device .slider__container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow-x: scroll;
}

.top.is-device .slider__container {
  height: calc(var(--vh, 1vh) * 144);
}

.is-device .slider .nav__button-close {
  position: fixed;
}

.is-device .slider .slider__progress-wrap {
  display: none;
}

@media (max-width: 768px) {
  .slider__button-close-icon {
    width: 27vw;
    height: 27vw;
  }
  .slider__item-heading {
    font-size: 11vw;
  }
}
body {
  background-color: var(--color-black);
}

html.is-show,
body.is-show {
  height: 100%;
  overflow: hidden;
}

html:not(.is-show),
body:not(.is-show) {
  overflow-x: hidden;
}

body.is-show {
  margin: 0;
  overscroll-behavior-y: none;
}

body.is-show .app {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--color-black);
}

body.is-show .is-device main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*# sourceMappingURL=/verticalscroll.d5cc4abe.css.map */