@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Shippori+Mincho&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", "Shippori Mincho", serif;
  font-weight: 300;
  background: #ecebe7;
}
#wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
/*-------------------------------------------

=section

-------------------------------------------*/
.section {
  position: relative;
  min-height: 100vh;
  padding: 2vw;
}
.sec-1 {
  color: #fff;
  overflow: hidden;
}
.sec-2 {
  background: #eaeaea;
  color: #000;
  overflow: hidden;
}
.blind {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(30, 1fr);
  z-index: 10;
  pointer-events: none;
}
.blind span {
  background: #eaeaea;
  transform-origin: center;
  transform: scaleY(0);
}
/************************/
.section h1 {
  font-size: clamp(4.8rem, 6.8vw, 13.6rem);
  line-height: 1;
}
.section .num {
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  font-size: clamp(12.5rem, 18vw, 36rem);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
}
.section .txt-group {
  width: 20%;
  margin-top: 6vw;
  line-height: 1.8;
}
.section .txt-group h2 {
  font-size: clamp(1.4rem, 1.067vw, 1.8rem);
}
.section .txt-group .txt {
  margin-top: 30px;
  font-size: clamp(1.1rem, 0.8vw, 1.2rem);
}
.section .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .section .txt-group {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .section .txt-group {
    width: 50%;
  }
}