@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&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;
  color: #242424;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
}
#wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
@media (max-width: 599px) {
  #wrapper section {
    padding: 0 1.5rem 1.5rem;
  }
}
#wrapper h1 {
  font-size: clamp(2.8rem, 6.667vw, 8rem);
  font-weight: 800;
  line-height: 1.2;
}
a {
  position: relative;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:link, a:visited {
  color: #242424;
}
a:hover, a:active {
  color: #242424;
}
/*-------------------------------------------

=GSAP Hover Anime

-------------------------------------------*/
#wrapper section {
  display: flex;
  flex-direction: column;
  padding: 2vw;
  height: 100svh;
}
.contents {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-top: 8vw;
}
/* contents-list */
.contents .contents-list {
  width: 30%;
  margin-right: 3rem;
}
.contents .contents-list li {
  position: relative;
  cursor: pointer;
  padding: 0.6rem 0;
  font-size: 1.4rem;
  overflow: hidden;
  line-height: 2;
}
.contents .contents-list li span {
  position: relative;
  display: inline-block;
  z-index: 2;
  transition: color 0.4s, transform 0.4s;
}
.contents .contents-list li .bg-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: translateY(100%);
  z-index: 1;
  transition: transform 0.4s ease-out;
}
.contents .contents-list li.hover .bg-bar, .contents .contents-list li.active .bg-bar {
  transform: translateY(0%);
}
.contents .contents-list li.hover span, .contents .contents-list li.active span {
  color: #fff;
  transform: translateX(1rem);
}
/* content-body */
.contents .content-body {
  flex: 1;
  position: relative;
  height: 100%;
}
.contents .block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
}
.contents .block.active {
  opacity: 1;
  pointer-events: auto;
}
.contents .block p {
  width: 30%;
  font-size: 1.2rem;
  line-height: 2;
  margin: 0;
}
.contents .image-area {
  aspect-ratio: 3 / 4;
  height: 100%;
  overflow: hidden;
}
.contents .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents .image-area img {
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  clip-path: inset(var(--clip-t, 0%) var(--clip-r, 0%) var(--clip-b, 0%) var(--clip-l, 0%));
  -webkit-clip-path: inset(var(--clip-t, 0%) var(--clip-r, 0%) var(--clip-b, 0%) var(--clip-l, 0%));
  will-change: transform, clip-path;
  object-position: 50% 50%;
}
@media (max-width: 1024px) {
  .contents {
    flex-direction: column;
    align-items: normal;
    margin-top: 3rem;
  }
  .contents .contents-list {
    width: 100%;
    margin-right: 0;
  }
  .contents .content-body {
    margin-top: 3rem;
  }
}
@media (max-width: 599px) {
	#wrapper section {
  padding: 1.5rem;
}
  .contents .contents-list li {
    padding: 0.2rem 0;
    font-size: 1.2rem;
  }
  .contents .block p {
    width: 36%;
    font-size: 1.0rem;
  }
  .contents .image-area {
    flex: 1;
    max-height: 40vh;
  }
}