@charset "utf-8";

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

body {
  width: 100%;
  overflow-x: clip;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  color: #222;
  margin: 0;
  padding: 0;
  background-color: #fef8fa;
  padding-top: env(safe-area-inset-top);
  padding-top: constant(safe-area-inset-top);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

img {
  max-width: 100%;
  display: block;
}

figure {
  width: 100vw;
  margin: 10vw auto;
  padding: 0;
}

figure img {
  width: 100%;
}

figcaption {
  font-size: 14px;
  padding: 0 1% 0;
  line-height: 140%;
}

.word_break {
  word-break: keep-all
}

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100lvh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255);
  z-index: 9999;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #4d565c;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

section {
  margin: 10vh 0;
}

#hero {
  width: 100vw;
  min-height: 100lvh;
  position: relative;
}

#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}


#hero img.image_initial {
  opacity: 1;
}

#hero img.image_change {
  opacity: 0;
}

h1 {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  transition: opacity .3s ease-in-out;
}

h1 #title {
  width: 35vw;
}


.inner {
  width: min(600px, 100%);
  margin: 10vh auto;
  /* overflow-x: hidden; */
}

.byline {
  text-align: center;
  margin-top: 10vh;
}

.byline dd {
  display: block;
  font-size: 16px;
  margin: 0;
  line-height: 140%;
}

.insert_img {
  width: 15vh;
  margin: 0 auto;
}

.insert_img img {
  width: 100%;
}

.js-wrapper-section {
  overflow-x: clip;
}

.bg_wrap {
  position: relative;
}

.img_credit {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
}

.bg_animation {
  background-image: url('images/noborito_wide.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100lvh;
  position: sticky;
  top: 0;
  opacity: 0;
  overflow-x: hidden;
  margin-top: 20vh;
  transition: opacity 0.5s ease-in;
}

.animation_p_container {
  position: relative;
  width: 100vw;
  height: 500vh;
}

.animation_p {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #fff;
}

.animation_p p {
  width: 35%;
  background-color: #222;
  color: #fff;
  padding: 2% 4%;
  margin: 100vh auto;
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(255, 255, 255, 0.35);
  opacity: 1;
  line-height: 180%;
  box-sizing: border-box;
}

.img_credit {
  color: #333;
  font-size: 14px;
  text-align: right;
  padding-right: 1em;
}


.infograph {
    width: 100%;
    background-color: #fdf1f1;
    padding: 2% 0;
    border-radius: 5px;
    margin: 10vh 0 0;
}

.infograph::after {
  content: "";
  display: table;
  clear: both;
}


.infograph h4 {
    padding: 1px 5px;
    color: #333;
    font-weight: 800;
    width: fit-content;
    margin: 0 auto 2rem;
    border-radius: 3px;
    position: relative;
}

.infograph h4::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #333;
  width: 15%;
  height: 5px;
  border-radius: 5px;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.infograph dl {
    display: flex;
    align-items: stretch;
    padding: 0 5%;
    box-sizing: border-box;
    gap: 0.8rem;
}

.infograph dl dt {
  flex-basis: 15%;
  background-color: #333;
  color: #fff;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  padding: 2%;
}

.infograph dl dd {
  flex-basis: 85%;
  font-size: 18px;
  line-height: 140%;
  border-bottom: 1px dashed;
  margin: 0;
  padding: 2% 0;
}


.image_container {
  width: 100vw;
  display: grid;
  place-items: center;
  background-color: #000;
}

.item {
  width: 80%;
  height: 80vh;
}

.item:first-child {
  margin-top: 50vh;
}

.js-item {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}


.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imageCaption {
  padding: 2%;
  color: #fff;
  box-sizing: border-box;
  font-family: source-han-serif-jp-variable, sans-serif;
  font-size: 16px;
  line-height: 140%;
}



@media screen and (max-width: 959px) {

  h1 {
    font-size: 40px;
  }

.item img {
    height: auto;
    object-fit: contain;
}

  .bg_animation {
    background-image: url('images/noborito.jpg');
  }

  .animation_p p {
    width: 90%;
  }
}

@media screen and (max-width: 820px) {
  p {
    font-size: 18px;
    padding: 0 5%;
  }

  h1 #title {
    width: 50vw;
  }
}









.video_area {
  margin-top: 100vh;
}

.video_wrap {
    width: 80vh;
    height: 3000vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.scrolly-video {
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}


@media screen and (max-width: 820px) {
  .video_wrap {
    width: 100vw;
  }
}




.interactive_division {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 10vh auto;
}



.interactive_caption {
  font-size: 14px;
  line-height: 120%;
  padding: 0 1% 0;
  margin-top: -8vh;
}


@media (max-width: 1024px) {
  .scrolling-image {
    display: none;
  }
}

@media (min-width: 1025px) {
  .interactive_division {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 10vh auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .scrolling-image-mb {
    display: none;
  }
}

@media (max-width: 620px) {
  .scrolling-image-mb {
    width: 450%;
  }
}



.byline_latter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 1rem auto;
  font-size: 16px;
  line-height: 140%;
  font-family: source-han-serif-jp-variable, sans-serif;
  font-weight: 600;
  text-align: center;
}

.byline_latter dt {
font-size: 0.8em;
text-align: center;
}

.byline_latter dd {
  margin: 0;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 2% 10%;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}







