/*===========================================================================*/
/*  function  */
/*===========================================================================*/
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
.g-footer {
  -webkit-font-smoothing: antialiased;
}

/*===========================================================================*/
/*  mixin  */
/*===========================================================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  min-width: 375px;
  color: #464343;
  -webkit-font-smoothing: inherit;
}

main {
  position: relative;
  overflow: hidden;
}

span {
  display: inline-block;
}

picture {
  display: block;
}

figure img,
picture img {
  width: 100%;
}

img {
  height: auto;
  object-fit: contain;
}

a {
  display: inline-block;
}
a:hover {
  text-decoration: none;
  color: #fff;
}

@media (min-width: 901px) {
  .hover-normal {
    transition: opacity 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
  .hover-normal:hover {
    opacity: 0.7;
  }
  .hover-underline {
    transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
  .hover-underline:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}
.pc-only {
  display: block;
}

.br-pc-only {
  display: inline-block;
}

.sp-only {
  display: none;
}

.br-sp-only {
  display: none;
}

@media (max-width: 900px) {
  .pc-only {
    display: none;
  }
  .br-pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .br-sp-only {
    display: inline-block;
  }
}
.text-center {
  text-align: center;
}

/*===========================================================================*/
/*  utility  */
/*===========================================================================*/
.u-en {
  font-family: "Inter", sans-serif;
}

/*===========================================================================*/
/*  component, color  */
/*===========================================================================*/
/* layout */
.l-wrapper {
  padding-left: 45px;
  padding-right: 45px;
}

.l-inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .l-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .l-inner {
    max-width: 500px;
  }
}
/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.header {
  background-color: #fff;
  padding: 19px 0;
}
@media (max-width: 900px) {
  .header {
    padding: 8px 0;
  }
}
.header__logo {
  width: 180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .header__logo {
    width: 92px;
  }
}
.header a {
  display: block;
  margin: 0 auto;
}

/*===========================================================================*/
/*  story  */
/*===========================================================================*/
.story {
  padding-top: 90px;
  padding-bottom: 100px;
  background-color: #ebf3ff;
}
@media (max-width: 900px) {
  .story {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.story__banner {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 900px) {
  .story__banner {
    margin-bottom: 40px;
  }
}
.story__bird {
  width: 243px;
  margin: 0 auto 25px;
}
@media (max-width: 900px) {
  .story__bird {
    width: 143px;
    margin-bottom: 21px;
  }
}
.story__head {
  color: #2864f0;
  text-align: center;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 1.61px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .story__head {
    font-size: 24px;
    letter-spacing: 0.84px;
    margin-bottom: 15px;
  }
}
.story__description {
  color: #2864f0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.84px;
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
  padding-left: 34px;
  padding-right: 34px;
}
@media (max-width: 900px) {
  .story__description {
    font-size: 18px;
    letter-spacing: 0.63px;
    margin-bottom: 142px;
    padding-left: 26px;
    padding-right: 26px;
    margin-bottom: 30px;
  }
}
.story__description::before,
.story__description::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 6px;
  background: url(../images/story/story_decoration.svg) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .story__description::before,
  .story__description::after {
    width: 16px;
  }
}
.story__description::before {
  content: "";
  left: 0;
}
.story__description::after {
  right: 0;
}
.story__items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
@media (max-width: 900px) {
  .story__items {
    gap: 20px;
    flex-direction: column;
  }
}
.story__item {
  width: calc((100% - 50px) / 3);
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .story__item {
    width: 100%;
    border-radius: 16px;
  }
}
.story__item.new-content::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  top: 10px;
  left: 10px;
  background: url(../images/story/icon_new.png) no-repeat center center/contain;
  z-index: 100;
}
@media (max-width: 900px) {
  .story__item.new-content::before {
    width: 60px;
    height: 60px;
  }
}
.story__item .story__item__inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 10px;
}
@media (max-width: 900px) {
  .story__item .story__item__inner {
    padding: 0 8px;
  }
}
.story__item .story__image {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
}
.story__item .story__image img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 900px) {
  .story__item .story__image {
    margin-bottom: 12px;
  }
}
.story__item .story__target {
  color: #989898;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.195px;
  margin-bottom: 8px;
  font-feature-settings: "palt" on;
}
@media (max-width: 900px) {
  .story__item .story__target {
    color: #989898;
    font-size: 12px;
    letter-spacing: 0.18px;
    margin-bottom: 8px;
  }
}
.story__item .story__target span {
  margin-left: 3.4482758621%;
  padding-left: 3.4482758621%;
  border-left: 1px solid #c4c4c4;
  line-height: 1;
}
.story__item .story__detail {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.71px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .story__item .story__detail {
    font-feature-settings: "palt" on;
    font-size: 16px;
    letter-spacing: 1.52px;
    margin-bottom: 15px;
  }
}
.story__item .story__detail span {
  color: #2864f0;
  display: inline;
}
.story__item .story__player {
  display: flex;
  align-items: flex-start;
  gap: 6.8965517241%;
  margin-top: auto;
}
@media (max-width: 900px) {
  .story__item .story__player {
    gap: 15px;
  }
}
.story__item .story__player li {
  background-color: #2864f0;
  border-radius: 32px;
}
@media (max-width: 900px) {
  .story__item .story__player li {
    border-radius: 30px;
  }
}
.story__item .story__player li a {
  padding: 9.5px 36px 9.5px 15px;
  color: #fff;
  text-align: center;
  font-size: clamp(8px, 1vw, 13px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-image: url(../images/story/icon_play.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px 11px;
  border-radius: 32px;
}
@media (max-width: 900px) {
  .story__item .story__player li a {
    padding: 7.5px 33px 7.5px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    background-position: right 14px center;
    background-size: 10px 10px;
    border-radius: 30px;
  }
}

/*===========================================================================*/
/*  modal  */
/*===========================================================================*/
.modaal-wrapper .modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: none;
  background: 0 0;
  padding: 0;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
}
.modaal-wrapper .modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-wrapper .modaal-close::before,
.modaal-wrapper .modaal-close::after {
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  border-radius: 0;
  width: 1px;
  display: block;
}
.modaal-wrapper .modaal-close::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modaal-wrapper .modaal-close::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modaal-outer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modaal-inner-wrapper {
  cursor: initial !important;
  max-width: 1024px;
  height: auto;
  padding: 50px 25px;
}
.modaal-video-wrap {
  margin: 0;
}
.modaal-video-container {
  max-width: 974px;
}
.modaal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    height: 547.875px;
  }
}
/*----------------------------------------
  Aside
----------------------------------------*/
.aside {
  position: fixed;
  z-index: 199;
  bottom: 10px;
  right: 10px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .aside {
    bottom: 5px;
    right: 5px;
  }
}
.aside.fadeIn {
  pointer-events: all;
  opacity: 1;
}
.aside.fadeOut {
  pointer-events: none;
  opacity: 0;
}
.aside .aside-inner {
  position: relative;
}
.aside .close-btn {
  position: absolute;
  z-index: 99;
  top: 1px;
  right: 1px;
  width: 15px;
  height: 15px;
  background-color: #fff;
}
.aside .close-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
}
.aside__floating-banner {
  display: block;
  width: 390px;
}
@media (max-width: 900px) {
  .aside__floating-banner {
    width: 179px;
  }
} /*# sourceMappingURL=story.css.map */
