@charset "utf-8";

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

body {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    font-family: source-han-sans-japanese, sans-serif;
    color: #333;
    line-height: 200%;
}

.keep-break {
    word-break: keep-all;
}

figure {
    margin: 3em 0;
}

figcaption {
    font-size: 0.9rem;
    line-height: 120%;
    padding: 0 5%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

p {
    padding: 0 10%;
    margin: 0 auto 1.5em;
}

.inner {
    width: min(650px, 100%);
    margin: 0 auto;
}

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

#hero_wrap {
    position: relative;
    height: 300vh;
    padding: 0 10%;
    overflow: hidden;
}

#hero_title {
    width: 100%;
}

#hero_title img {
    width: 50%;
    margin: 0 auto 10vh;
}


.rellax {
    width: 45%;
    height: 50vh;
    object-fit: cover;
    margin-top: 20vh;
}

.right_col {
    margin-right: auto;
}

.left_col {
    margin-left: auto;
}

.caption {
    font-size: 2em;
    line-height: 140%;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin: 3em auto 2em;
}

.caption::after {
    position: absolute;
    content: "";
    background-color: #333;
    width: 3rem;
    height: 5px;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
}

.infographic_container {
    margin: 3em auto;
}

.wider_width {
    width: 60vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.wider_width img {
    margin: 0 auto;
}




.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.prev-btn,
.next-btn {
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.prev-btn img,
.next-btn img {
  width: 35px;
  object-fit: contain;
}

.prev-btn {
  left: 5px;

}

.next-btn {
  right: 5px;
}


.related_article {
  width: 100%;
  margin: 10vh auto 0;
  overflow: hidden;
  position: relative;
  padding: 5% 10% 5%;
  box-sizing: border-box;
  border-top: 5px solid #efefef;
  border-bottom: 5px solid #efefef;
  background-color: #fff;
}

.related_article h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related_article img {
  height: 3em;
  vertical-align: middle;
}

.related_article ul {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  gap: 10px;
}

.related_article ul li {
  min-width: 30%;
  height: fit-content;
  scroll-snap-align: start;
}

.related_article li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.related_article ul li h5 {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 140%;
  padding: 2% 2% 0;
}

.related_article ul li p {
  font-size: 16px;
  line-height: 140%;
  padding: 0 2%!important;
  margin: 0;
}

@media screen and (min-width: 960px) {
    p {
        padding: 0;
    }

    figcaption {
        padding: 0;
    }
}

@media screen and (max-width: 959px) {
    #hero_title img {
        width: 90%;
    }

    #hero_wrap {
        height: 300vh;
    }

    .rellax {
        width: 70%;
        height: 22vh;
        margin-top: 30vh;
        margin-bottom: 40vh;
        padding: 0 5%;
        box-sizing: border-box;
    }
    
    .wider_width {
        width: 100%;
    }

    .related_article {
    padding: 5%;
  }
}

@media screen and (max-width: 620px) {
  .byLine #map {
    width: 30vw;
    height: 30vw;
  }

  .related_article ul li {
    min-width: 70%;
  }

  #hero_wrap {
    padding: 0;
  }
}


footer {
  padding: 3vh;
  text-align: center;
  background-color: #fff;
  color: #333;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 16px;
}