@charset "utf-8";
:root {
  --color-text: #242424;
  --color-link: #242424;
  --color-primary: #018843;
  --color-secondary: #76bf9a;
  --color-gray: #b5b5b6;
  --color-bg: #f3f1ea;
  --font: "Roboto", "Helvetica Neue", Arial, YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Roboto", sans-serif;
  --font-mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
/*------------------------------------*\
  インタビュー
\*------------------------------------*/
.story-index {
  margin-top: 100px;
}
.story-heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  translate: -50% -50%;
  width: 80%;
  max-width: 660px;
}
.story-heading::before {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
    content: "";
  }
.story-heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    rotate: -45deg;
    translate: -50% 50%;
    width: 3px;
    height: 17px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 0 4px #fff;
    box-shadow: 0 0 0 4px #fff;
    background: #242424;
    content: "";
  }
.story-heading span {
    display: block;
    padding: 15px;
    border: 3px solid #242424;
    font-size: 1.7rem;
    line-height: 1.6;
    text-align: center;
  }
.story-subheading {
  position: relative;
  margin-bottom: 1em;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.story-subheading[data-en]::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    translate: -50% -50%;
    color: #fff;
    font-size: 5rem;
    font-size: clamp(3rem, 0.138125rem + 7.35vw, 6rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    white-space: nowrap;
    content: attr(data-en);
  }
.stories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stories-list > li {
    margin-bottom: 70px;
  }
.story-item {
  display: block;
  position: relative;
  width: 100%;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.story-item .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 50%;
    margin: 0;
  }
.story-item__thumb {
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-radius: 8px;
}
.story-item__thumb::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(46%, rgba(0,0,0,0.3)), color-stop(88%, rgba(0,0,0,0.6)));
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 46%, rgba(0,0,0,0.6) 88%);
    content: "";
  }
.story-item__thumb img {
    -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
.story-item__thumb figcaption {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
  }
.story-item__thumb figcaption strong {
      font-size: 1.7rem;
    }
/*------------------------------------*\
  インタビュー詳細
\*------------------------------------*/
.voice-name {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: bold;
}
.voice-image img {
  width: calc(50vw + 200px);
  max-width: 100vw;
}
.voice-overview {
  margin-top: 30px;
  margin-bottom: 70px;
}
.voice-overview__image {
  margin-bottom: 30px;
}
.voice-content01 {
  padding-top: 0;
}
.voice-content01::before {
    top: calc((14vw + 50px) * -1);
  }
.voice-content02 {
  position: relative;
  z-index: 0;
  margin-top: 100px;
  padding-top: 80px;
}
.voice-content02::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 80%;
    background-image:
      repeating-linear-gradient(
        90deg,
        #f3f3f3,
        #f3f3f3 1px,
        transparent 1px,
        transparent 28px
      ),
      repeating-linear-gradient(
        0deg,
        #f3f3f3,
        #f3f3f3 1px,
        #fff 1px,
        #fff 28px
      );
    content: "";
  }
.voice-content02__heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  translate: -50% -50%;
}
.voice-content02__heading::before {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #DCF0C8;
    content: "";
  }
.voice-content02__heading::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    rotate: -45deg;
    translate: -50% 50%;
    width: 3px;
    height: 17px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 0 4px #DCF0C8;
    box-shadow: 0 0 0 4px #DCF0C8;
    background: #242424;
    content: "";
  }
.voice-content02__heading span {
    display: block;
    padding: 10px 20px;
    border: 3px solid #242424;
    font-size: 1.5rem;
    line-height: 1.6;
    white-space: nowrap;
    text-align: center;
  }
.voice-content02__heading span strong {
      color: #018843;
      font-size: 1.5em;
    }
.voice01 {
  margin: 50px 0;
}
/* 卒業生 */
.voice-graduate-heading,
.voice-graduate-heading2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.025em;
}
.voice-graduate-heading {
  padding: 0.66em 2em;
  border-radius: 2em;
  background: #fff;
}
.voice-graduate-heading2 {
  position: relative;
  margin-bottom: 2.4em;
}
.voice-graduate-heading2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: calc((50% - 4px) * -1) 0;
    width: 18px;
    height: 3px;
    background: #f3f1ea;
    content: "";
  }
.voice-graduate-heading2::after {
    position: absolute;
    top: 100%;
    left: 50%;
    rotate: -45deg;
    translate: -50% -4px;
    width: 3px;
    height: 17px;
    border-radius: 3px;
    background: #018843;
    content: "";
  }
.voice-graduate-heading2 span {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: 3px solid #018843;
  }
@media (min-width: 45.001em) {
  .stories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -18px;
  }
    .stories-list > li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      padding: 0 18px;
    }
  .voice-lead {
    position: absolute;
    right: 0;
    bottom: calc(100% - 2em);
    left: auto;
    padding: 1.1em 0.9em 0;
    background: #fff;
    border-radius: 8px;
    font-size: 2.4rem;
    font-size: clamp(2.5rem, 0.8496rem + 2.29vw, 3.6rem);
    line-height: 1.66;
    letter-spacing: 0.05em;
    white-space: nowrap;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .voice-image img {
    width: calc(100% + 40px);
  }
  .voice-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 100px;
  }
  .voice-overview__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48.54%;
    flex: 0 0 48.54%;
    margin-bottom: 0;
  }
  .voice-overview__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44.72%;
    flex: 0 0 44.72%;
  }
  .voice-overview {
    margin-bottom: 100px;
  }
    .voice-content01::before {
      top: calc((14vw + 100px) * -1);
    }
  .voice-content02 {
    margin-top: 170px;
  }
    .voice-content02__heading span {
      font-size: 2rem;
    }
  .voice01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
    .voice01[data-direction="reverse"] {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
    }
  .voice01__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 43%;
    flex: 0 0 43%;
  }
  .voice01__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .voice01 {
    margin: 85px 0;
  }
  .voice-graduate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .voice-graduate__image {
    -ms-flex-preferred-size: 43%;
    flex-basis: 43%;
  }
  .voice-graduate__content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }}
@media (min-width: 60.001em) {
  .story-index {
    margin-top: 150px;
  }
    .story-heading span {
      font-size: 2rem;
    }
  .story-subheading {
    font-size: 2.7rem;
  }
    .story-subheading[data-en]::before {
      font-size: 7rem;
    }
  .voice-lead {
    right: 70px;
  }
  .voice-image img {
    width: calc(50vw + 550px);
  }
  .voice-graduate-heading,
  .voice-graduate-heading2 {
    font-size: 2.6rem;
  }
}
@media (hover:hover) {
    .story-item:hover .story-item__thumb img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
}
@media (max-width: 45em) {
  .voice-lead {
    display: inline-block;
    position: relative;
    z-index: 0;
    margin-top: -20px;
    padding: 15px 20px 0 0;
    font-size: 1.8rem;
    font-size: clamp(1.8rem, 1.2rem + 1.11vw, 2rem);
    line-height: 1.6;
  }
    .voice-lead::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      width: calc(400px + 50vw);
      border-radius: 0 8px 0 0;
      background: #fff;
      content: "";
    }
}
/*# sourceMappingURL=maps/story.css.map */
