@charset "UTF-8";


/*================================================
* storylist
================================================*/


.storyList {
  display: grid;
  gap: 2rem 0;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto 8rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

.story_box {
  border-top: 1px solid var(--color-gray);
  border-left: 1px solid var(--color-gray);
}

.story_box:nth-child(1),
.story_box:nth-child(2),
.story_box:nth-child(3) {
  border-top: none;
}

.story_box:nth-child(3n+1) {
  border-left: 1px solid transparent;
}

.story_box a {
  padding: 4.5rem 4rem;
  position: relative;
  display: block;
}

.story_box a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/icon_btn_arrow.webp);
  width: 1.6rem;
  height: 1.4rem;
  bottom: 2.6rem;
  right: 2rem;
}

.story_box a .thumbnail {
  overflow: hidden;
  aspect-ratio: 270/220;
}

.story_box a .thumbnail img {
  transition: all .4s;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: unset;
}

.story_box a:hover .thumbnail img {
  transform: scale(1.1);
}

.story_box .ind {
  position: absolute;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  top: 0;
  left: 0;
  border-radius: 0 0 1rem 0;
  line-height: 1;
  padding: 1rem 1rem;
  width: fit-content;
  white-space: nowrap;
}

.story_box h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin: 3rem 0 0.6rem;
}


.story_box .co {
  text-align: center;
  font-size: 1.4rem;
  opacity: .5;
  margin-bottom: 2.6rem;
}



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



  .storyList {
    gap: 2rem 0;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  .story_box {
    border-left: 1px solid transparent;
  }

  .story_box a {
    padding: 5.5rem 2rem;
  }

  .story_box h3 {
    margin: 2rem 0 0.6rem;
  }

  .story_box .co {
    margin-bottom: 1.6rem;
  }
}

/*================================================
* subVisual
================================================*/
#subVisual.story {
  background: var(--color-bg);
  padding-top: 22rem;
  padding-bottom: 8rem;
}

#subVisual.story::before {
  content: none;
}

.subVisStory_wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 8rem;
  width: 88.8%;
}

.subVisStory_img {
  width: 50%;
  min-width: 48.5rem;
  max-width: 68rem;
  aspect-ratio: 680/490;
  position: relative;
}

.subVisStory_img::before,
.subVisStory_img::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  z-index: 1;

}

.subVisStory_img::before {
  background-image: url(../../images/story/subvis_blur.svg);
  width: 103%;
  height: auto;
  padding-bottom: 85%;
  top: -15%;
  right: -12%;
  z-index: -1;
}

/* .subVisStory_img::after {
  background-image: url(../../images/story/subvis_ttl.webp);
  width: 13.5rem;
  height: 11.2rem;
  bottom: -1.5rem;
  left: -6.8rem;
} */

.subVisStory_img img {
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


.subVisStory_txt {
  padding-left: 4rem;
  width: calc(100% - 59.9%);
  padding-top: 6.8rem;
}

.subVisStory_txt .label {
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  width: fit-content;
  border-radius: 1000px;
  padding: 0.6rem 2.4rem;
  margin-bottom: 1rem;
}

.subVisStory_txt h2 {
  font-size: 3.8rem;
  font-weight: 700;
}

.subVisStory_txt .name {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 0.8rem;
  margin-bottom: 4.6rem;
}

.subVisStory_txt .name span {
  font-size: 2rem;
  margin-left: 1rem;
}

.subVisStory_txt p {
  font-size: 2rem;
}


#subVisual.story .story-loop_swiper {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.story-loop_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

#subVisual.story .story-loop_swiper .swiper-slide {
  font-size: 15rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--en);
  width: fit-content;
  margin-right: 0.5em;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width:767px) {
  #subVisual.story {
    padding-top: 13rem;
    padding-bottom: 4rem;
  }

  #subVisual.story .story-loop_swiper .swiper-slide {
    font-size: 9rem;
  }

  .subVisStory_wrap {
    flex-wrap: wrap;
    width: 90%;
    gap: 2rem;
  }

  .subVisStory_txt {
    width: 100%;
    padding: 0;
  }

  .subVisStory_img {
    width: 80%;
    min-width: unset;
    margin: 4rem auto 0;
  }

  /* .subVisStory_img::after {
    width: 8.5rem;
    height: 7.05rem;
    left: -3.8rem;
  } */

  .subVisStory_txt h2 {
    font-size: 2.6rem;
  }

  .subVisStory_txt .name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.8rem;
    margin-bottom: 4.6rem;
  }

  .subVisStory_txt .name span {
    font-size: 1.6rem;
  }

  .subVisStory_txt p {
    font-size: 1.8rem;
  }
}

/*================================================
* 
================================================*/
#c_toc {
  background: var(--color-white);
  padding: 4rem 9rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 6%;
}

#c_toc .ttl .hd {
  margin: 0;
}

#c_toc .ttl .hd .en {
  font-size: 4rem;
  text-transform: uppercase;
}

.c_toc-wrap {
  display: flex;
  align-items: start;
  gap: 2rem;
  padding-left: 5%;
  position: relative;
}

.c_toc-wrap::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-gray);
}

#c_toc ol {
  margin-left: 1.5em;
  min-width: 17rem;
}

#c_toc li {
  margin-bottom: 2rem;
}

#c_toc li a {
  font-size: 1.8rem;
}

@media screen and (max-width:767px) {
  #c_toc {
    flex-wrap: wrap;
    padding: 4rem 2rem 2rem 3rem;
    gap: 1rem;
  }

  #c_toc .ttl {
    width: 100%;
  }


  #c_toc .ttl .hd .en {
    font-size: 3rem;
    text-transform: uppercase;
  }

  .c_toc-wrap {
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .c_toc-wrap::before {
    content: none;
  }

  .c_toc-wrap ol {
    width: 100%;
  }

  #c_toc li {
    margin-bottom: 1rem;
  }

  #c_toc li a {
    font-size: 1.4rem;
  }
}

/*================================================
* detail
================================================*/
.detailCnt {
  margin-top: 2rem;
}

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


/*================================================
* 
================================================*/

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

/*================================================
* 
================================================*/


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

/*================================================
* 
================================================*/

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

/*================================================
* 
================================================*/


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



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