@charset "UTF-8";
.p-stories {
  position: relative;
  background: #FFF;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-stories {
    padding: 170px 0 120px;
  }
  .p-stories__inner {
    width: 50.625%;
    min-width: 648px;
  }
  .p-stories__content {
    position: relative;
    z-index: 1;
  }
  .p-stories__content > *:first-child {
    margin-top: 0;
  }
  .p-stories__content .is-less-margin {
    margin-top: 16px;
  }
  .p-stories__heading {
    text-align: center;
    margin-bottom: 80px;
  }
  .p-stories__title {
    margin-top: 32px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
  }
  .p-stories__subtitle {
    margin-top: 32px;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 600;
  }
  .p-stories__text {
    margin-top: 32px;
    font-size: 15px;
    line-height: 2;
  }
  .p-stories__text p + p {
    margin-top: 2em;
  }
  .p-stories__text dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .p-stories__text dl + dl {
    margin-top: 1.1em;
  }
  .p-stories__text dl dt {
    width: 50px;
  }
  .p-stories__text dl dd {
    width: calc(100% - 60px);
  }
  .p-stories__text dl dd > *:first-child {
    margin-top: 0;
  }
  .p-stories__text dl .p-stories__subtitle {
    margin-top: 0.8em;
  }
  .p-stories__text dl .p-stories__subtitle + p {
    margin-top: 1em;
  }
  .p-stories__interview {
    margin-top: 32px;
    font-size: 15px;
    line-height: 2;
    font-weight: 600;
  }
  .p-stories__interview + .p-stories__text {
    margin-top: 16px;
  }
  .p-stories__blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    padding: 100px 84px 100px;
    border-radius: 10px;
    background: #EFEDE7;
  }
  .p-stories__blockquote::before, .p-stories__blockquote::after {
    display: block;
    font-size: 64px;
    line-height: 1;
    z-index: 2;
    position: absolute;
  }
  .p-stories__blockquote::before {
    content: "“";
    left: 24px;
    top: 60px;
  }
  .p-stories__blockquote::after {
    content: "”";
    right: 24px;
    bottom: 35px;
  }
  .p-stories__blockquote p + p {
    margin-top: 1.8em;
  }
  .p-stories__image {
    margin-top: 32px;
  }
  .p-stories__image + .p-stories__image,
  .p-stories__image + .p-stories__video {
    margin-top: 16px;
  }
  .p-stories__video {
    position: relative;
    aspect-ratio: 16/9;
    margin-top: 32px;
  }
  .p-stories__video + .p-stories__image,
  .p-stories__video + .p-stories__video {
    margin-top: 16px;
  }
  .p-stories__video-thumbnail {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .p-stories__video-thumbnail img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .p-stories__video-thumbnail::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 2;
  }
  .p-stories__video-button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
  }
  .p-stories__video-player {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .p-stories__video.is-playing .p-stories__video-player {
    opacity: 1;
    pointer-events: all;
  }
  .p-stories__share {
    margin-top: 40px;
  }
  .p-stories__button {
    margin-top: 80px;
    text-align: center;
  }
  .p-stories__button .c-button {
    margin: 0 auto;
    padding: 0 60px;
  }
  .p-stories-back {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 20px;
    z-index: 11;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-stories-back.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .p-stories-back__button {
    width: 210px;
    height: 44px;
    border-radius: 22px;
  }
  .p-stories-back__button .c-button__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
  .p-stories-back__button .c-button__text::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-left: 1px solid;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .p-stories {
    padding: 170px 0 100px;
  }
  .p-stories__inner {
    width: 91.46%;
  }
  .p-stories__content {
    position: relative;
    z-index: 1;
  }
  .p-stories__content > *:first-child {
    margin-top: 0;
  }
  .p-stories__content .is-less-margin {
    margin-top: 16px;
  }
  .p-stories__heading {
    text-align: center;
    margin-bottom: 80px;
  }
  .p-stories__title-en {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
  .p-stories__title {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
  }
  .p-stories__subtitle {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
  }
  .p-stories__subtitle + .p-stories__text {
    margin-top: 32px;
  }
  .p-stories__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.93;
  }
  .p-stories__text p + p {
    margin-top: 2em;
  }
  .p-stories__text dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .p-stories__text dl + dl {
    margin-top: 1.1em;
  }
  .p-stories__text dl dt {
    width: 50px;
  }
  .p-stories__text dl dd {
    width: calc(100% - 60px);
  }
  .p-stories__text dl dd > *:first-child {
    margin-top: 0;
  }
  .p-stories__text dl .p-stories__subtitle {
    margin-top: 0.8em;
  }
  .p-stories__text dl .p-stories__subtitle + p {
    margin-top: 1em;
  }
  .p-stories__image {
    margin-top: 24px;
  }
  .p-stories__image + .p-stories__image,
  .p-stories__image + .p-stories__video {
    margin-top: 16px;
  }
  .p-stories__interview {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 600;
  }
  .p-stories__interview + .p-stories__text {
    margin-top: 16px;
  }
  .p-stories__blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
    background: #EFEDE7;
    border-radius: 10px;
    padding: 105px 32px 105px;
  }
  .p-stories__blockquote::before, .p-stories__blockquote::after {
    display: block;
    font-size: 48px;
    line-height: 1;
    z-index: 2;
    position: absolute;
  }
  .p-stories__blockquote::before {
    content: "“";
    left: 20px;
    top: 40px;
  }
  .p-stories__blockquote::after {
    content: "”";
    right: 20px;
    bottom: 18px;
  }
  .p-stories__blockquote p + p {
    margin-top: 1.8em;
  }
  .p-stories__video {
    position: relative;
    aspect-ratio: 16/9;
    margin-top: 24px;
  }
  .p-stories__video + .p-stories__image,
  .p-stories__video + .p-stories__video {
    margin-top: 16px;
  }
  .p-stories__video-thumbnail {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .p-stories__video-thumbnail img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .p-stories__video-thumbnail::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 2;
  }
  .p-stories__video-button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
  }
  .p-stories__video-player {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .p-stories__video.is-playing .p-stories__video-player {
    opacity: 1;
    pointer-events: all;
  }
  .p-stories__share {
    margin-top: 40px;
  }
  .p-stories__button {
    margin-top: 48px;
    text-align: center;
  }
  .p-stories__button .c-button {
    width: 100%;
    padding: 0 60px;
  }
  .p-stories-back {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 20px;
    z-index: 11;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-stories-back.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .p-stories-back__button {
    width: 210px;
    height: 44px;
    border-radius: 22px;
  }
  .p-stories-back__button .c-button__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
  .p-stories-back__button .c-button__text::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-left: 1px solid;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}