@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&display=swap');
/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
* {
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  background-color: #fff;
}
#wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
/*-------------------------------------------

=slide

-------------------------------------------*/
.container {
  height: 200vh;
}
.section {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #fff
}
.inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14vw;
  height: 100%;
  width: 100%;
  color: #fff;
  mix-blend-mode: difference;
  position: relative;
  z-index: 5;
}
.text {
  font-size: 6vw;
  white-space: nowrap;
  flex-shrink: 0;
}
.left {
  text-align: right;
}
.center img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: calc(50vw * 0.625);
  object-fit: cover;
  clip-path: inset(40% 40% 40% 40%);
  will-change: clip-path, width, height;
  z-index: 1;
}
.contact-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) /*scale(0.9)*/ ;
  padding: 10px 36px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.2rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}