/* -------------------------------------------------- */
/* global */

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
body {
  background-color: #000;
  color: #fff;
  font-family: Avenir, 'Noto Sans JP', sans-serif;
  position: relative;
}
.container {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}
h2.global {
  align-items: center;
  display: flex;
  font-size: 80px;
  font-weight: 800;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 100px;
}
h2.global::before {
  background: #fff;
  content: '';
  display: block;
  flex-grow: 1;
  height: 1px;
  margin-right: .25em;
}
.wrapper {
  margin: auto;
  padding: 0 130px;
  width: 100%;
}

/* -------------------------------------------------- */
/* header */

.header_wrap {
  height: 110px;
  left: 0;
  position: fixed;
  top: 85px;
  width: 100%;
  z-index: 2000;
}
.header {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.header-logo {
  height: 100%;
  transition: opacity .3s;
}
.header-logo a img {
  height: 100%;
  transition: opacity .3s;
}
.header-logo a:hover img {
  opacity: .5;
}
.header-button {
  align-items: center;
  display: flex;
  justify-content: center;
}
.header button {
  height: 36px;
  width: 40px;
  z-index: 1;
}
.header button input {
  display: none;
}
.header button label {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  transition: opacity .2s;
  width: 100%;
}
.header button label:hover {
  opacity: .5;
}
.header button label span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 4px;
  transition: transform .2s;
  width: 100%;
}
.header button input[type="checkbox"]:checked + label span:nth-of-type(1) {
  transform: translateY(16px) rotate(-45deg);
}
.header button input[type="checkbox"]:checked + label span:nth-of-type(2) {
  opacity: 0;
}
.header button input[type="checkbox"]:checked + label span:nth-of-type(3) {
  transform: translateY(-16px) rotate(45deg);
}
.fixed .header-logo {
  opacity: 0;
}

/* -------------------------------------------------- */
/* main */

.detail main {
  margin-top: 280px;
}

/* -------------------------------------------------- */
/* hero */

.hero {
  position: relative;
}
.hero::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  height: 192px;
  position: absolute;
  width: 100%;
}
.hero-image video {
  height: auto;
  width: 100%;
}
.hero-text {
  font-size: 16px;
  height: 100%;
  width: 100%;
}
.hero-text span {
  position: absolute;
  top: 50%;
  white-space: nowrap;
  writing-mode: vertical-lr;
}
.hero-text span:nth-child(1) {
  left: 2em;
  transform: translateY(-50%) rotate(180deg);
}
.hero-text span:nth-child(2) {
  right: 2em;
  transform: translateY(-50%);
}

/* -------------------------------------------------- */
/* intro */

.intro {
  background: url(../images/intro.svg) no-repeat center right / min(1152px, 60%) auto;
  padding-block: 200px;
}
.intro-head {
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}
.intro-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 3;
}
.intro-text p {
  margin-top: 50px;
}

/* -------------------------------------------------- */
/* works */

.works-tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}
.works-tags li a {
  align-items: center;
  background: transparent;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  font-size: 24px;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  margin: .2em 0;
  padding: .2em .6em;
  transition: opacity .2s;
}
.works-tags li.current a {
  background: #3687cc;
}
.works-tags li a:hover {
  opacity: .5;
}
.works-list {
  position: relative;
}
.works-cat {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-weight: 800;
  height: 100%;
  justify-content: flex-start;
  left: calc(0px - 65px - .5em);
  line-height: 1;
  padding: 20px 0 100px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.works-cat::after {
  background: #fff;
  content: '';
  display: block;
  flex-grow: 1;
  height: 100%;
  width: 1px;
}
.works-cat span {
  padding-top: 1em;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-lr;
}
.works-list ul {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 120px;
  padding-bottom: 44px;
}
.works-list ul::before,
.works-list ul::after {
  content: '';
  display: block;
  order: 1;
  width: 24%;
}
.works-list ul li {
  margin: 20px 0 56px;
  position: relative;
  width: 24%;
}
.works-list ul li:nth-child(even) {
  top: 40px;
}
.works-list ul li a {
  aspect-ratio: 3 / 5;
  background: rgba(255,255,255,.1);
  border-radius: 15px;
  display: block;
  overflow: hidden;
  position: relative;
  transition: opacity .2s;
}
.works-list ul li a:hover {
  opacity: .5;
}
.works-image {
  height: 100%;
}
.works-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.works-text {
  bottom: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  left: 0;
  line-height: 1.2;
  padding: 5%;
  position: absolute;
  width: 100%;
}
.works-tag {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: .25em;
}

/* -------------------------------------------------- */
/* detail */

.detail-head {
  margin-bottom: 128px;
}
.detail-tag {
  line-height: 1.5;
  padding-bottom: 30px;
}
.detail-tag span {
  font-size: 24px;
  font-weight: 400;
  margin-right: 1em;
}
.detail-title {
  font-size: 128px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.detail-image {
  left: 130px;
  margin-bottom: 80px;
  padding-left: 100px;
  position: relative;
}
.detail-image img {
  border-radius: 15px;
}
.detail-lead {
  margin-bottom: 64px;
}
.detail-lead h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
}
.detail-lead p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 2;
}
.detail-mv {
  left: -130px;
  position: relative;
  width: 100vw;
}

/* detail-body */

.detail-body section {
  margin-bottom: 128px;
}
.detail-body h2 {
  align-items: center;
  display: flex;
  font-size: 80px;
  font-weight: 800;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 30px;
}
.detail-body h2::before {
  background: #fff;
  content: '';
  display: block;
  flex-grow: 1;
  height: 1px;
  margin-right: .25em;
}
.detail-body h3,
.detail-body h4,
.detail-body h5,
.detail-body h6 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
}
.detail-body p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 2.5;
  margin-bottom: 30px;
}
.detail-body img {
  display: block;
  height: auto;
  margin-bottom: 30px;
  width: 100%;
}
.detail-body img.br {
  border-radius: 15px;
}
.detail-body video {
  height: auto;
  margin-bottom: 30px;
  width: 100%;
}
.detail-body iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 30px;
  width: 100%;
}
.detail-body .image {
  margin-bottom: 80px;
}
.detail-body .images,
.detail-body .images3,
.detail-body .images4 {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.detail-body .images4::before {
  content: '';
  display: block;
  order: 1;
}
.detail-body .images3::after,
.detail-body .images4::after {
  content: '';
  display: block;
}
.detail-body .images a {
  width: calc(100% / 2 - 30px / 2);
}
.detail-body .images3 a,
.detail-body .images3::after {
  width: calc(100% / 3 - 60px / 3);
}
.detail-body .images4 a,
.detail-body .images4::before,
.detail-body .images4::after {
  width: calc(100% / 4 - 90px / 4);
}
.detail-body .image a,
.detail-body .images a,
.detail-body .images3 a,
.detail-body .images4 a {
  display: block;
  margin-bottom: 30px;
}
.detail-body .image a img,
.detail-body .images a img,
.detail-body .images3 a img,
.detail-body .images4 a img {
  margin-bottom: 0;
}
.detail-body .image a p,
.detail-body .images a p,
.detail-body .images3 a p,
.detail-body .images4 a p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-block: 10px 0;
  text-align: center;
}
.detail-body .credit {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  justify-content: flex-start;
  line-height: 2.5;
  margin-bottom: 80px;
}
.detail-body .credit div {
  margin-right: 1.5em;
}
.detail-body .credit div a {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: flex-start;
}
.detail-body .credit div a:hover {
  text-decoration: underline;
}
.detail-body .credit div a img {
  margin: 0;
  margin-left: .75em;
  height: auto;
  width: 24px;
}

/* related */

.related-head {
  border-top: 1px solid #fff;
  font-size: 32px;
  padding-block: 50px;
}
.related-list {
  margin-bottom: 128px;
}
.related-list ul {
  margin-bottom: 0;
  padding-bottom: 0;
}
.related-list ul li,
.related-list ul li:nth-child(even) {
  margin: 0;
  top: 0;
}

/* banner */

.banner {
  margin-bottom: 128px;
}
.banner hr {
  border-top: 1px solid #fff;
  margin-bottom: 128px;
}
.banner-body {
  position: relative;
}
.banner-body a {
  display: block;
  transition: opacity .2s;
}
.banner-body a:hover {
  opacity: .5;
}
.banner-image img {
  border-radius: 12px;
}
.banner-text {
  align-items: center;
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: space-between;
  left: 0;
  padding: 50px;
  position: absolute;
  top: 0;
  width: 100%;
}
.banner-text p {
  font-size: 40px;
  line-height: 1.25;
}
.banner-more {
  align-items: center;
  background: #000;
  border: 1px solid #f4f4f4;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 24px;
  height: 64px;
  justify-content: center;
  transition: opacity .2s;
  width: 256px;
}
.banner-text a:hover {
  opacity: .5;
}

/* -------------------------------------------------- */
/* footer */

.footer {
  margin-bottom: 128px;
}
.footer-logo {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 350;
  height: 36px;
  justify-content: center;
}
.footer-logo a {
  display: block;
  height: 100%;
  margin-left: 1em;
}
.footer-logo a img {
  height: 100%;
}

/* -------------------------------------------------- */
/* aside */

.aside_wrap {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  bottom: 0;
  display: none;
  left: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.overlay {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #000;
  bottom: 0;
  height: 100vh;
  left: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.aside {
  height: 100%;
  width: 100%;
}
.aside-list {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: stretch;
  padding-block: 192px;
}
.aside-list ul {
  flex-grow: 1;
}
.aside-list ul li {
  font-size: 120px;
  font-weight: 800;
  margin-bottom: .5em;
}
.aside-list ul li a {
  color: #fff;
  display: block;
  text-align: center;
  transition: opacity .2s;
}
.aside-list ul li.current a {
  background: #3687cc;
}
.aside-list ul li a:hover {
  opacity: .5;
}
