  @charset "UTF-8";

/*--------------------------------------------
kv
--------------------------------------------*/
.s-kv {
  width: 100%;
  height: 720px;
  padding-top: 132px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv {
    height: calc(100% - 16.666vw);
    padding-top: 0;
    top: 16.666vw;
  }
}

/* sp01 */
.s-kv.-sp_01 {
  background: url(/freshers/assets/images/special/story01/kv.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv.-sp_01 {
    background: url(/freshers/assets/images/special/story01/kv_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* sp02 */
.s-kv.-sp_02 {
  background: url(/freshers/assets/images/special/story02/kv.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv.-sp_02 {
    background: url(/freshers/assets/images/special/story02/kv_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* sp03 */
.s-kv.-sp_03 {
  background: url(/freshers/assets/images/special/story03/kv.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv.-sp_03 {
    background: url(/freshers/assets/images/special/story03/kv_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.s-kv__inner {
  max-width: 1200px;
  width: 88.235%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner {
    max-width: none;
    width: 91.111vw;
  }
}

.s-kv__inner__title {
  position: absolute;
  top: 0;
  right: -20px;
  opacity: 0;
  transform: translate(0, 1.111vw);
	transition: all 1s ease-out;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__title {
    right: auto;
    top: 9.722vw;
    left: 0;
  }
}

.s-kv__inner__title__en {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  font-size: 20px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__title__en {
    font-size: 4.444vw;
  }
}

.s-kv__inner__title__jp {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__title__jp {
    font-size: 4.888vw;
    margin-top: 1.111vw;
  }
}

.s-kv__inner__heading {
  position: absolute;
  bottom: 48px;
  left: 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__heading {
    bottom: 6.666vw;
  }
}

.s-kv__inner__heading__txt_01 {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  font-size: 28px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__heading__txt_01 {
    font-size: 4.444vw;
  }
}

.s-kv__inner__heading__txt_01__no {
  display: inline;
  font-size: 36px;
  padding-left: 0.28em;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__heading__txt_01__no {
    font-size: 7.222vw;
  }
}

.s-kv__inner__heading__txt_02 {
  font-size: 40px;
  line-height: 1.6em;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  text-align: justify;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__heading__txt_02 {
    font-size: 6.111vw;
    margin-top: 8.888vw;
  }

  .s-kv__inner__heading__txt_02 br {
    display: none;
  }
}

.s-kv__inner__heading__txt_03 {
  font-size: 17px;
  line-height: 1.8em;
  color: #fff;
  margin-top: 26px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-kv__inner__heading__txt_03 {
    font-size: 3.333vw;
    margin-top: 4.555vw;
  }
}


/*--------------------------------------------
Prologue & Member
--------------------------------------------*/
.s-intro {
  background: #252525;
  border-radius: 10px;
  padding: 120px 0 144px 0;
  margin-top: 720px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro {
    border-radius: 2.777vw  2.777vw 0 0;
    padding: 24.666vw 0 18.472vw 0;
    margin-top: calc(100vh - 16.666vw);
  }
}

.s-intro__inner {
  max-width: 1200px;
  width: 88.235%;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: 96px 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner {
    max-width: none;
    width: 91.111vw;
    gap: 23vw 0;
  }
}

.s-intro__inner__section {
  display: flex;
  justify-content: space-between;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section {
    flex-flow: column;
    gap: 8.888vw 0;
  }
}

.s-intro__inner__section__heading {
  width: 16.666%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__heading {
    width: 100%;
  }
}

.s-intro__inner__section__heading__en {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  font-size: 32px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__heading__en {
    font-size: 8.888vw;
  }
}

.s-intro__inner__section__heading__jp {
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  color: #fff;
  margin-top: 8px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__heading__jp {
    font-size: 4.166vw;
    margin-top: 2.222vw;
  }
}

.s-intro__inner__section__sentence {
  width: 80%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__sentence {
    width: 100%;
  }
}

.s-intro__inner__section__sentence p {
  color: #fff;
  font-size: 18px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__sentence p {
    font-size: 4.166vw;
  }
}

.s-intro__inner__section__member {
  width: 80%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member {
    width: 100%;
  }
}

/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member__list {
    overflow-x: auto;
  }
}

.s-intro__inner__section__member ul {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 5%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member ul {
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 5vw;
  }
}

.s-intro__inner__section__member ul li {
  width: 30%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member ul li {
    width: 38.888vw;
  }
}

.s-intro__inner__section__member__ph {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member__ph {
    border-radius: 1.111vw;
  }
}

.s-intro__inner__section__member__ph__position {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4em;
  color: #fff;
  padding: 0.5em 0.8em 0.7em 0.8em;
  border-radius: 0 0 0 4px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member__ph__position {
    font-size: 2.777vw;
    border-radius: 0 0 0 1.111vw;
    padding: 0.15em 0.5em 0.4em 0.7em;
  }
}

.s-intro__inner__section__member__ph__position.-sp_01 {
  background-color: rgba(47,125,128,1);
}

.s-intro__inner__section__member__ph__position.-sp_02 {
  background-color: rgba(0,107,162,1);
}

.s-intro__inner__section__member__ph__position.-sp_03 {
  background-color: rgba(92,113,36,1);
}

.s-intro__inner__section__member__ph__joined {
  position: absolute;
  bottom: 10px;
  right: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member__ph__joined {
    bottom: 1.111vw;
    right: 1.111vw;
    font-size: 2.777vw;
  }
}

.s-intro__inner__section__name {
  font-size: 15px;
  line-height: 2em;
  font-weight: 700;
  color: #fff;
  margin: 15px 0 7px 0;
  text-align: center;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__name {
    font-size: 4.444vw;
    margin: 2.722vw 0 1.111vw 0;
  }
}

.s-intro__inner__section__data {
  display: flex;
  flex-wrap: wrap;
  background-image: url(/freshers/assets/images/special/data_dots.svg);
  background-repeat: repeat-x;
  background-size: 2px;
  background-position: left bottom;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__data {
    flex-flow: column;
    gap: 0.888vw;
    background-image: url(/freshers/assets/images/special/data_dots.svg);
    background-repeat: repeat-x;
    background-size: 0.555vw;
    background-position: left bottom;
  }
}

.s-intro__inner__section__data.-top {
  background: url(/freshers/assets/images/special/data_dots.svg), url(/freshers/assets/images/special/data_dots.svg);
  background-repeat: repeat-x;
  background-size: 2px;
  background-position: left top, left bottom;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__data.-top {
    background: url(/freshers/assets/images/special/data_dots.svg), url(/freshers/assets/images/special/data_dots.svg);
    background-repeat: repeat-x;
    background-size: 0.555vw;
    background-position: left top, left bottom;
  }
}

.s-intro__inner__section__data p:nth-of-type(1) {
  width: 12%;
  color: #fff;
  font-size: 11px;
  padding: 0.8em 0 0 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__data p:nth-of-type(1) {
    width: 100%;
    font-size: 2.777vw;
    padding: 1.2em 0 0 0;
  }
}

.s-intro__inner__section__data p:nth-of-type(2) {
  width: 88%;
  color: #fff;
  font-size: 13px;
  line-height: 1.6em;
  padding: 0.3em 0 0.4em 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__data p:nth-of-type(2) {
    width: 100%;
    font-size: 3.333vw;
    padding: 0.3em 0 0.8em 0;
  }
}

.s-intro__inner__section__member__caption {
  margin: 60px 00 0;
  font-size: 13px;
  line-height: 1.8em;
  font-weight: 300;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-intro__inner__section__member__caption {
    margin: 8vw 00 0;
    font-size: 3.055vw;
  }
}


/*--------------------------------------------
main bg
--------------------------------------------*/
.l-main_bg,
.l-main_bg_dark {
  position: relative;
}

.s-main_bg__txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-main_bg__txt img {
  display: block;
  position: sticky;
  width: 187px;
  top: 180px;
  margin: 70px 40px 70px auto;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-main_bg__txt img {
    width: 23.008vw;
    top: 25vh;
    margin: 10vw 3.333vw 10vw auto;
  }
}

.s-episode.-top_high .s-episode__bgtxt {
  top: 130px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode.-top_high .s-episode__bgtxt {
    top: 13.333vw;
  }
}



/*--------------------------------------------
Episode
--------------------------------------------*/
.s-episode {
  max-width: 1200px;
  width: 88.235%;
  margin: 0 auto;
  padding: 90px 0 144px 0;
  position: relative;
  z-index: 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode {
    max-width: none;
    width: 91.111vw;
    margin: 0 auto;
    padding: 17.777vw 0 26.666vw 0;
  }
}

.s-episode.-top_high {
  padding-top: 150px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode.-top_high {
    padding-top: 17.777vw;
  }
}

.s-episode.-bottom_high {
  padding-bottom: 200px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode.-bottom_high {
    padding-bottom: 26.666vw;
  }
}

.s-episode__no {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 14px;
  text-align: center;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__no {
    font-size: 3.888vw;
  }
}

/* heading */
.s-episode__heading {
  width: 83.916%;
  margin: 35px 0 0 auto;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__heading {
    width: 91.111vw;
    margin: 8.888vw 0 0 auto;
  }

  .s-episode__heading br {
    display: none;
  }
}

.s-episode__heading h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 2em;
  letter-spacing: 0.15em;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__heading h3 {
    font-size: 5.555vw;
    line-height: 1.8em;
  }
}

.s-episode__theme {
  margin: 42px auto 0 auto;
  width: 80%;
  padding-left: 64px;
  line-height: 2em;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #0035C3;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__theme {
    line-height: 1.8em;
    margin: 14.777vw auto 0 auto;
    width: 91.111vw;
    padding-left: 11.111vw;
    font-size: 5vw;
  }
}

.s-episode__theme::before {
  content: "";
  width: 48px;
  height: 1px;
  background: #212121;
  position: absolute;
  top: 1.05em;
  left: 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__theme::before {
    width: 8.888vw;
    height: 0.277vw;
  }
}

.s-episode__reply {
  display: flex;
  margin: 48px auto 0 auto;
  width: 80%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__reply {
    flex-flow: column;
    margin: 9vw auto 0 auto;
    width: 91.111vw;
    gap: 0.5vw 0;
  }
}

.s-episode__reply.-top_0 {
  margin-top: 0;
}

.s-episode__reply__name {
  width: 64px;
  font-size: 18px;
  line-height: 2em;
  font-weight: 500;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__reply__name {
    width: 100%;
    font-size: 4.166vw;
  }
}

.s-episode__reply__txt {
  width: calc(100% - 64px);
  font-size: 18px;
  line-height: 2em;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__reply__txt {
    width: 100%;
    font-size: 4.166vw;
  }
}

/* 写真＆TXT（小） */
.s-episode__column {
  display: flex;
  width: 90%;
  margin: 48px 0 0 auto;
  gap: 0 6%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column {
    flex-flow: column;
    width: 91.111vw;
    margin: 13.333vw auto 0 auto;
    gap: 13.333vw 0;
  }
}

.s-episode__column__left {
  width: 52%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column__left {
    width: 100%;
  }
}

.s-episode__column__left .s-episode__reply {
  width: 100%;
}

.s-episode__column__right {
  width: 42%;
  display: flex;
  flex-flow: column;
  gap: 48px 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column__right {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }

  .s-episode__column__right__inner {
    width: 44.444vw;
  }
}

/* 横一枚写真（大） */
.s-episode__wide_ph {
  margin: 72px auto 0 auto;
  width: 80%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__wide_ph {
    margin: 13.333vw auto 0 auto;
    width: 91.111vw;
  }
}

.s-episode__wide_ph.-wide {
  width: 100%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__wide_ph.-wide {
    width: 91.111vw;
  }
}

/* 左右写真（中） */
.s-episode__column_ph {
  margin: 72px auto 0 auto;
  display: flex;
  justify-content: space-between;
  width: 80%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column_ph {
    margin: 13.333vw auto 0 auto;
    width: 72.222vw;
    flex-flow: column;
    gap: 6.666vw;
  }
}

.s-episode__column_ph__inner {
  width: 48.333%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column_ph__inner {
    width: 100%;
  }
}

.s-episode__column_ph.-wide {
  width: 100%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column_ph.-wide {
    width: 72.222vw;
  }
}

.s-episode__column_ph.-wide .s-episode__column_ph__inner {
  width: 48.666%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__column_ph.-wide .s-episode__column_ph__inner {
    width: 100%;
  }
}

/* 写真キャプション */
.s-episode__cap {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 300;
  margin-top: 8px;
  letter-spacing: 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-episode__cap {
    font-size: 3.611vw;
    margin-top: 2.222vw;
  }
}

/* wavy写真 */
.s-wavy_ph {
  height: 737px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-wavy_ph {
    height: 77.777vw;
  }
}

/* foot写真 */
.s-foot_ph {
  height: 720px;
  background: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-foot_ph {
    height: 77.777vw;
  }
}

.s-foot_ph span {
  display: block;
  height: 100%;
}

/* sp01 */
.s-wavy_ph.-sp_01 {
  background: url(/freshers/assets/images/special/story01/wavy_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-wavy_ph.-sp_01 {
    background: url(/freshers/assets/images/special/story01/wavy_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.s-foot_ph span.-sp_01 {
  background: url(/freshers/assets/images/special/story01/foot_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-foot_ph span.-sp_01 {
    background: url(/freshers/assets/images/special/story01/foot_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* sp02 */
.s-wavy_ph.-sp_02 {
  background: url(/freshers/assets/images/special/story02/wavy_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-wavy_ph.-sp_02 {
    background: url(/freshers/assets/images/special/story02/wavy_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.s-foot_ph span.-sp_02 {
  background: url(/freshers/assets/images/special/story02/foot_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-foot_ph span.-sp_02 {
    background: url(/freshers/assets/images/special/story02/foot_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* sp03 */
.s-wavy_ph.-sp_03 {
  background: url(/freshers/assets/images/special/story03/wavy_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-wavy_ph.-sp_03 {
    background: url(/freshers/assets/images/special/story03/wavy_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.s-foot_ph span.-sp_03 {
  background: url(/freshers/assets/images/special/story03/foot_ph.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .s-foot_ph span.-sp_03 {
    background: url(/freshers/assets/images/special/story03/foot_ph_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
