/*
* story.css
*
*/
.story-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 57px 0 69px;
}

@media (max-width: 767.98px) {
  .story-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 12.66667vw 0 8.26667vw;
  }
}

.story-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  width: 48%;
  border-radius: 7px;
  -webkit-box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  .story-card {
    margin-bottom: 8vw;
    width: 100%;
  }
}

.story-card a {
  display: block;
  height: 100%;
}

@media (min-width: 768px) {
  .story-card a {
    -webkit-transition: background-color 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: background-color 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
  .story-card a:hover {
    background-color: rgba(245, 245, 245, 0.8);
    -webkit-transition: background-color 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: background-color 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
  .story-card a:hover img {
    opacity: 0.7;
    -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .story-card a:hover .story-card__arw {
    opacity: 0.7;
    -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
  .story-card a:hover .story-card__arw:after {
    left: 10px;
    -webkit-transition: left 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: left 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

@media (min-width: 768px) {
  .story-card.-relation {
    width: 100%;
  }
  .story-card.-relation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .story-card.-relation picture {
    width: 39%;
  }
  .story-card.-relation picture img {
    width: 100%;
    height: 100%;
  }
}

.story-card__content {
  padding: 20px 22px 60px;
}

@media (max-width: 767.98px) {
  .story-card__content {
    padding: 5.33333vw 5.33333vw 8vw;
  }
}

.story-card.-relation .story-card__content {
  padding: 4.66667vw 4.66667vw 6.66667vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__content {
    padding: 20px 10px 0 15px;
    width: 61%;
  }
}

.story-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 136px;
  height: 18px;
  border-radius: 2px;
  background-color: #c7000a;
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .story-card__tag {
    width: 25.46667vw;
    height: 4vw;
    font-size: 2.4vw;
    line-height: 2.03667;
  }
}

.story-card.-relation .story-card__tag {
  width: 22.26667vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__tag {
    width: 116px;
    font-size: 1rem;
    line-height: 2.6;
  }
}

.story-card__title {
  margin-top: 15px;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  line-height: 1.23077;
}

@media (max-width: 767.98px) {
  .story-card__title {
    margin-top: 3.46667vw;
    letter-spacing: 0.03em;
    font-size: 5.86667vw;
    line-height: 1.27273;
  }
}

.story-card.-relation .story-card__title {
  letter-spacing: 0.05em;
  font-size: 5.06667vw;
  line-height: 1.28947;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__title {
    font-size: 2.2rem;
    line-height: 1.45455;
  }
}

.story-card__subTitle {
  margin-top: 13px;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  line-height: 1.4375;
}

@media (max-width: 767.98px) {
  .story-card__subTitle {
    margin-top: 4.13333vw;
    font-size: 4vw;
    line-height: 1.2;
  }
}

.story-card__subTitle span {
  font-size: 1.4rem;
}

@media (max-width: 767.98px) {
  .story-card__subTitle span {
    font-size: 3.2vw;
  }
}

.story-card.-relation .story-card__subTitle span {
  font-size: 2.4vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__subTitle span {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.story-card.-relation .story-card__subTitle {
  font-size: 3.46667vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__subTitle {
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 1.53846;
  }
}

.story-card__list {
  margin-top: 20px;
  padding-top: 12px;
  border-top: solid 1px #ededed;
  color: #b3b2b3;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  line-height: 1.57143;
}

@media (max-width: 767.98px) {
  .story-card__list {
    margin-top: 5.73333vw;
    padding-top: 3.6vw;
    font-size: 2.66667vw;
    line-height: 1.4;
  }
}

.story-card.-relation .story-card__list {
  margin-top: 4.8vw;
  font-size: 2.4vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__list {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.57143;
  }
}

.story-card__arw {
  position: absolute;
  top: auto;
  right: 5.33333vw;
  bottom: 5.33333vw;
  left: auto;
  width: 14.4vw;
  height: 9.33333vw;
}

@media (min-width: 768px) {
  .story-card__arw {
    top: auto;
    right: 23px;
    bottom: 20px;
    width: 57px;
    height: 37px;
    -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
}

.story-card__arw:after {
  left: -0.26667vw;
}

@media (min-width: 768px) {
  .story-card__arw:after {
    left: -2px;
    -webkit-transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

.story-card.-relation .story-card__arw {
  position: absolute;
  top: auto;
  right: 4.66667vw;
  bottom: 4.66667vw;
  left: auto;
  width: 12.66667vw;
  height: 8.66667vw;
}

@media (min-width: 768px) {
  .story-card.-relation .story-card__arw {
    top: auto;
    right: 17px;
    bottom: 20px;
    width: 50px;
    height: 33px;
  }
}

.story-detail__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .story-detail__sns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 4.53333vw;
  }
}

@media (max-width: 767.98px) {
  .story-detail__snsItem {
    margin-top: 0.66667vw;
  }
}

.story-detail__snsItem + .story-detail__snsItem {
  margin-left: 5px;
}

@media (max-width: 767.98px) {
  .story-detail__snsItem + .story-detail__snsItem {
    margin-left: 0.66667vw;
  }
}

@media (min-width: 768px) {
  .story-detail__inner.-md {
    width: 890px;
  }
  .story-detail__item:nth-child(even) .story-detail__inner.-md {
    margin-left: auto;
  }
}

.story-detail__inner.-md picture {
  width: 56%;
}

@media (max-width: 767.98px) {
  .story-detail__inner.-md picture {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .story-detail__inner.-sm {
    padding: 0 90px;
  }
}

@media (max-width: 767.98px) {
  .story-detail__inner.-sp {
    padding: 0 5.33333vw;
  }
}

.story-detail__heading {
  position: relative;
  margin-top: 30px;
  margin-bottom: 122px;
  text-align: right;
}

@media (max-width: 767.98px) {
  .story-detail__heading {
    margin-top: 8.26667vw;
    margin-bottom: 39.2vw;
  }
}

.story-detail__heading img {
  width: 98%;
}

@media (max-width: 767.98px) {
  .story-detail__heading img {
    width: 83.73333vw;
  }
}

.story-detail__title {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -51px;
  left: -11px;
}

.story-detail__title.-story01 {
  width: 75%;
}

@media (max-width: 767.98px) {
  .story-detail__title.-story01 {
    bottom: -24.4vw;
    left: -0.93333vw;
    width: 84.66667vw;
  }
}

.story-detail__title.-story02 {
  width: 79%;
}

@media (max-width: 767.98px) {
  .story-detail__title.-story02 {
    bottom: -24.4vw;
    left: -0.93333vw;
    width: 84.66667vw;
  }
}

.story-detail__title.-story03 {
  width: 90%;
}

@media (max-width: 767.98px) {
  .story-detail__title.-story03 {
    bottom: -33.33333vw;
    left: -0.93333vw;
    width: 84.66667vw;
  }
}

.story-detail__title.-story04 {
  width: 61%;
}

@media (max-width: 767.98px) {
  .story-detail__title.-story04 {
    bottom: -24.4vw;
    left: -0.93333vw;
    width: 84.66667vw;
  }
}

.story-detail__chapter {
  margin-top: 94px;
}

@media (max-width: 767.98px) {
  .story-detail__chapter {
    margin-top: 9.46667vw;
  }
}

.story-detail__lead {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  padding-bottom: 5px;
  letter-spacing: 0.04em;
  font-size: 2.8rem;
  line-height: 2;
}

@media (max-width: 767.98px) {
  .story-detail__lead {
    margin-left: 0;
    padding-right: 2.66667vw;
    padding-bottom: 2.66667vw;
    font-size: 4.26667vw;
    line-height: 1.4375;
  }
}

.story-detail__lead.-row2 {
  padding-top: 12px;
  padding-bottom: 13px;
  line-height: 1.42857;
}

.story-detail__lead:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border-right: solid 2px #c7000a;
  border-bottom: solid 2px #c7000a;
  -webkit-box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.15);
  content: "";
}

@media (max-width: 767.98px) {
  .story-detail__lead:after {
    height: 5.33333vw;
    border-right: solid 0.53333vw #c7000a;
    border-bottom: solid 0.53333vw #c7000a;
  }
}

.story-detail__text + .story-detail__text {
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .story-detail__text + .story-detail__text {
    margin-top: 4.66667vw;
  }
}

.story-detail__lead + .story-detail__text {
  margin-top: 35px;
}

@media (max-width: 767.98px) {
  .story-detail__lead + .story-detail__text {
    margin-top: 5.73333vw;
  }
}

@media (max-width: 767.98px) {
  h5 + .story-detail__text {
    margin-top: 5.73333vw;
  }
}

.story-detail__flex.-float + .story-detail__text {
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-float + .story-detail__text {
    margin-top: 4.66667vw;
  }
}

.story-detail__text.-margintop {
  margin-top: 60px;
}

.story-detail__text.-note {
  color: #9a9c9d;
  font-size: 1.4rem;
  line-height: 2.28571;
}

@media (max-width: 767.98px) {
  .story-detail__text.-note {
    margin-top: 8vw;
    font-size: 3.2vw;
    line-height: 1.66667;
  }
}

.story-detail__text.-name {
  text-align: right;
}

.story-detail__text + .story-detail__text.-name {
  margin-top: 60px;
}

@media (max-width: 767.98px) {
  .story-detail__text + .story-detail__text.-name {
    margin-top: 6.4vw;
  }
}

@media (max-width: 767.98px) {
  .story-detail__text.-job {
    font-size: 2.4vw;
    line-height: 1.77778;
  }
}

@media (max-width: 767.98px) {
  .story-detail__text.-note + .story-detail__text.-question {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .story-detail__text.-question + .story-detail__text {
    margin-top: 6.66667vw;
  }
}

@media (max-width: 767.98px) {
  .story-detail__text + .story-detail__text.-question {
    margin-top: 8vw;
  }
}

.story-detail__frame .story-detail__text {
  padding: 30px 40px;
}

@media (max-width: 767.98px) {
  .story-detail__frame .story-detail__text {
    padding: 4.66667vw 4vw;
  }
}

.story-detail__text a {
  border-bottom: solid 1px #888;
  color: #888;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

@media (min-width: 768px) {
  .story-detail__text a:hover {
    opacity: 0.65;
    -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
}

.story-detail__list {
  margin-top: 54px;
}

@media (max-width: 767.98px) {
  .story-detail__list {
    margin-top: 9.33333vw;
    margin-bottom: 12.8vw;
  }
}

h5 {
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
  line-height: 2.54545;
}

@media (max-width: 767.98px) {
  h5 {
    margin-bottom: 4vw;
    margin-left: 1em;
    padding-left: 0;
    text-indent: -1em;
    letter-spacing: 0.06em;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

.story-detail__item + .story-detail__item {
  margin-top: 66px;
}

@media (max-width: 767.98px) {
  .story-detail__item + .story-detail__item {
    margin-top: 12vw;
  }
}

.story-detail__content {
  width: 44%;
}

@media (max-width: 767.98px) {
  .story-detail__content {
    margin-top: 9.46667vw;
    width: 100%;
  }
}

.story-detail__caption {
  margin-top: -9px;
  width: 89%;
}

@media (max-width: 767.98px) {
  .story-detail__caption {
    margin-top: 0;
    width: 100%;
  }
}

.story-detail__caption.-right {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .story-detail__caption.-right {
    margin: 0;
    padding: 0;
  }
}

.story-detail__caption.-left {
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .story-detail__caption.-left {
    margin: 0;
    padding: 0;
  }
}

.story-detail__flex.-pairText .story-detail__caption {
  width: 44%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-pairText .story-detail__caption {
    width: 100%;
  }
}

.story-detail__flex.-imgSmall .story-detail__caption {
  width: 49%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-imgSmall .story-detail__caption {
    margin-top: 8vw;
    width: 100%;
  }
}

.story-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767.98px) {
  .story-detail__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

:not(.story-detail__item) + .story-detail__flex {
  margin: 71px 0;
}

@media (max-width: 767.98px) {
  :not(.story-detail__item) + .story-detail__flex {
    margin-top: 12.13333vw;
    margin-bottom: 9.46667vw;
  }
}

.story-detail__flex.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.story-detail__flex.-col1 picture {
  width: 100%;
}

.story-detail__flex.-col2 picture:first-child {
  width: 54%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-col2 picture:first-child {
    width: 100%;
  }
}

.story-detail__flex.-col2 picture:last-child {
  padding-top: 143px;
  width: 43%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-col2 picture:last-child {
    padding-top: 2.66667vw;
    width: 100%;
  }
}

.story-detail__flex.-col3 picture {
  padding-top: 62px;
  width: 50%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-col3 picture {
    padding-top: 0;
    width: 100%;
  }
}

.story-detail__flex.-centering {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-centering {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .story-detail__flex.-centering picture {
    margin-bottom: 2.66667vw;
  }
}

.story-detail__flex.-centering picture:first-child {
  width: 33%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-centering picture:first-child {
    width: 100%;
  }
}

.story-detail__flex.-centering picture:last-child {
  width: 60%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-centering picture:last-child {
    width: 100%;
  }
}

.story-detail__flex.-float picture {
  padding-top: 15px;
  width: 34%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-float picture {
    margin: auto;
    padding: 9.46667vw 0 4.66667vw;
    width: 45.06667vw;
  }
}

.story-detail__flex.-pairText {
  margin: 47px 0 20px;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-pairText {
    margin: 6.26667vw 0 0;
  }
}

@media (max-width: 767.98px) {
  .story-detail__text.-question + .story-detail__flex.-pairText {
    margin-top: 0;
  }
}

.story-detail__flex.-pairText picture {
  width: 50%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-pairText picture {
    margin-top: 16vw;
    margin-bottom: 1.33333vw;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .story-detail__flex.-imgSmall {
    margin-top: 0;
  }
}

.story-detail__flex.-imgSmall picture {
  width: 46%;
}

@media (max-width: 767.98px) {
  .story-detail__flex.-imgSmall picture {
    margin-top: 0;
    width: 100%;
  }
}

.story-detail__unit.-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 46%;
}

@media (max-width: 767.98px) {
  .story-detail__unit.-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.66667vw;
    width: 100%;
  }
}

.story-detail__unit.-img picture:first-child {
  margin-right: auto;
  padding-top: 0;
  width: 73%;
}

@media (max-width: 767.98px) {
  .story-detail__unit.-img picture:first-child {
    width: 48%;
  }
}

.story-detail__unit.-img picture:last-child {
  margin-left: auto;
  padding-top: 34px;
  width: 88%;
}

@media (max-width: 767.98px) {
  .story-detail__unit.-img picture:last-child {
    padding-top: 0;
    width: 48%;
  }
}

.story-detail__unit.-text {
  display: inline-block;
  width: 63%;
}

@media (max-width: 767.98px) {
  .story-detail__unit.-text {
    width: 100%;
  }
}

.story-detail__btn {
  margin-top: 120px;
}

@media (max-width: 767.98px) {
  .story-detail__btn {
    margin-top: 19.73333vw;
  }
}

.story-detail__frame {
  background-color: #e6eaed;
}

.story-detail__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  padding: 45px 45px;
  background-color: #e6eaed;
}

@media (max-width: 767.98px) {
  .story-detail__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10.66667vw;
    padding: 8.4vw 8vw;
  }
}

.story-detail__profile picture {
  width: 40%;
}

@media (max-width: 767.98px) {
  .story-detail__profile picture {
    width: 100%;
  }
}

.story-detail__desc {
  width: 56%;
}

@media (max-width: 767.98px) {
  .story-detail__desc {
    margin-bottom: 4vw;
    width: 100%;
  }
}

.story-detail__name {
  padding: 15px 0;
  letter-spacing: 0.06em;
  font-style: italic;
  font-size: 4rem;
  line-height: 0.8;
}

@media (max-width: 767.98px) {
  .story-detail__name {
    padding: 2.66667vw 0 5.33333vw;
    font-size: 6.13333vw;
    line-height: 0.69565;
  }
}

.story-detail__linkTitle {
  position: relative;
  margin-top: 164px;
  margin-bottom: 46px;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 2.4rem;
  line-height: 1.33333;
}

@media (max-width: 767.98px) {
  .story-detail__linkTitle {
    margin: 24vw 0 10.4vw;
    font-size: 3.73333vw;
    line-height: 1.14286;
  }
}

.story-detail__linkTitle:before, .story-detail__linkTitle:after {
  position: absolute;
  display: block;
  width: 40%;
  height: 3px;
  background: #cfcfcf;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .story-detail__linkTitle:before, .story-detail__linkTitle:after {
    width: 35%;
    height: 0.4vw;
  }
}

.story-detail__linkTitle:before {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
}

.story-detail__linkTitle:after {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
}

#ytPlayer {
  width: 100%;
  height: 460px;
}

@media (max-width: 767.98px) {
  #ytPlayer {
    height: 46.66667vw;
  }
}

.is-modalOpen {
  overflow: hidden;
}

.story-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.story-modal[aria-hidden="true"] {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.3s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.3s;
}

.story-modal[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.story-modal__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.story-modal__contents {
  width: calc(100% - 40px);
  max-width: 768px;
}

.story-modal__story {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.story-modal__story iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.story-modal__close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 52px;
  height: 52px;
  background: transparent;
  border: none;
}

.story-modal__close span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 7px;
  margin: auto;
  background: #fff;
  border-radius: 5px;
}

.story-modal__close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.story-modal__close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.story-section {
  position: relative;
  padding: 353px 0 160px;
  background: url(/img/sharen/story/content_bg_lg.png) center top no-repeat;
}

@media (max-width: 767.98px) {
  .story-section {
    padding: 76vw 0 20.8vw;
    background: url(/img/sharen/story/content_bg_sm.png) center top no-repeat;
    background-size: contain;
  }
}

.story-section.-detail {
  padding-top: 362px;
}

@media (max-width: 767.98px) {
  .story-section.-detail {
    padding: 82.8vw 0 20.8vw;
  }
}

.story-section.-detail .story-section__title {
  padding-bottom: 22px;
  border-bottom: solid 2px #d5d5d5;
  font-size: 2.8rem;
  line-height: 1.1;
}

@media (max-width: 767.98px) {
  .story-section.-detail .story-section__title {
    padding-bottom: 6.13333vw;
    border-bottom: solid 0.53333vw #d5d5d5;
    font-size: 5.33333vw;
    line-height: 1.2;
  }
}

.story-section.-detail .story-section__title small {
  font-size: 2rem;
}

@media (max-width: 767.98px) {
  .story-section.-detail .story-section__title small {
    font-size: 4.26667vw;
  }
}

.story-section.-detail .story-section__obj {
  top: auto;
  right: -8.3%;
  bottom: 130.9%;
  left: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .story-section.-detail .story-section__obj {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .story-section.-detail .story-section__obj {
    right: 50%;
    bottom: 186.7%;
    width: 75.46667vw;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.story-section__inner {
  margin: auto;
  padding: 0 70px;
  max-width: 1120px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .story-section__inner {
    padding: 0 5.46875vw;
  }
}

@media (max-width: 767.98px) {
  .story-section__inner {
    padding: 0 5.33333vw;
    max-width: 100vw;
  }
}

.story-section__obj {
  position: absolute;
  top: auto;
  right: 4.7%;
  bottom: 81.9%;
  left: auto;
  width: 395px;
}

@media (max-width: 767.98px) {
  .story-section__obj {
    right: 50%;
    bottom: 90.7%;
    width: 75.46667vw;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.story-section__text {
  margin-top: 30px;
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  line-height: 1.875;
}

@media (max-width: 767.98px) {
  .story-section__text {
    margin-top: 5.6vw;
    font-size: 3.46667vw;
    line-height: 1.53846;
  }
}
/*# sourceMappingURL=story.css.map */
