@charset "UTF-8";
/* ==========================================================================//
//
// 施工ストーリー
//
// ========================================================================== */
/* lead
---------------------------------------------------------- */
.lead_area {
  padding: 40px 0;
}
@media all and (min-width: 751px) {
  .lead_area {
    padding: 60px 0;
  }
}
.lead_area p {
  line-height: 2.13;
}
@media all and (min-width: 751px) {
  .lead_area p {
    text-align: center;
  }
}

/* ページ内リンク
---------------------------------------------------------- */
.link_area {
  background-color: #a3ced6;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, rgba(255, 255, 255, 0.5) 25px, rgba(255, 255, 255, 0.5) 26px), repeating-linear-gradient(to right, transparent 0, transparent 25px, rgba(255, 255, 255, 0.5) 25px, rgba(255, 255, 255, 0.5) 26px);
  border-top: 1px solid #222222;
  padding: 27px 0;
}
@media all and (min-width: 751px) {
  .link_area {
    position: relative;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px), repeating-linear-gradient(to right, transparent 0, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px);
    padding: 40px 0;
    z-index: 1;
  }
  .link_area::before {
    position: absolute;
    content: "";
    inset: 0;
    background-image: url(../../images/story/link_bg.png);
    background-repeat: no-repeat;
    background-position: bottom 17px center;
    background-size: min(1030px, 94%) auto;
    z-index: -1;
  }
}
.link_area .list {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media all and (min-width: 751px) {
  .link_area .list {
    gap: 30px 28px;
  }
}
.link_area .list.js_scroll > li {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.link_area .list.js_scroll > li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.link_area .list.js_scroll > li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.link_area .list.js_scroll.scroll_active > li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.link_area .list > li {
  counter-increment: number 1;
  width: min(390px, 100%);
}
.link_area .list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 15px;
  padding: 15px 20px;
}
@media all and (min-width: 751px) {
  .link_area .list > li a {
    gap: 14px;
    border-width: 1.5px;
    border-radius: 30px;
    padding: 22px 20px;
  }
}
.link_area .list > li a .image {
  width: 74px;
}
@media all and (min-width: 751px) {
  .link_area .list > li a .image {
    width: 100px;
  }
}
.link_area .list > li a .image img {
  border-radius: 6px;
}
.link_area .list > li a .texts {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 32px;
}
.link_area .list > li a .texts::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  background-image: url(../../images/common/arrow_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 25px;
}
.link_area .list > li a .texts .number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  background-color: #a3ced6;
  border-radius: 50px;
  border: 1px solid #222222;
  padding: 6px 11px;
  margin-bottom: 4px;
}
@media all and (min-width: 751px) {
  .link_area .list > li a .texts .number {
    font-size: 13px;
    padding: 8px 12px;
  }
}
.link_area .list > li a .texts .number::after {
  content: counter(number, decimal-leading-zero);
  margin-left: 5px;
}
.link_area .list > li a .texts .ttl {
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .link_area .list > li a .texts .ttl {
    font-size: 18px;
  }
}
@media (hover: hover) {
  .link_area .list > li a {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .link_area .list > li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/* コンテンツ
---------------------------------------------------------- */
.content_area {
  counter-reset: number;
  border-top: 1px solid #222222;
  padding: 60px 0;
}
@media all and (min-width: 751px) {
  .content_area {
    padding: 100px 0;
  }
}
.content_area .sec_story {
  counter-increment: number 1;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #222222;
}
@media all and (min-width: 751px) {
  .content_area .sec_story {
    border-radius: 30px;
    border-width: 1.5px;
  }
}
.content_area .sec_story:not(:last-child) {
  margin-bottom: 50px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story:not(:last-child) {
    margin-bottom: 70px;
  }
}
.content_area .sec_story .head_wrap {
  text-align: center;
  padding: 20px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .head_wrap {
    padding: 34px;
  }
}
.content_area .sec_story .head_wrap::before {
  content: counter(number, decimal-leading-zero);
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #a3ced6;
  font-size: 22px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .head_wrap::before {
    font-size: 32px;
  }
}
.content_area .sec_story .head_wrap .sec_ttl {
  font-size: 22px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .head_wrap .sec_ttl {
    font-size: 34px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .content_area .sec_story .head_wrap .sec_ttl {
    font-size: 26px;
  }
}
.content_area .sec_story .detail {
  border-top: 1px solid #222222;
  padding: 28px 20px 30px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail {
    border-width: 1.5px;
    padding: 45px 8% 60px;
  }
}
.content_area .sec_story .detail .detail_ttl {
  text-align: center;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_ttl {
    font-size: 24px;
  }
}
.content_area .sec_story .detail .detail_ttl span {
  display: inline;
  background-color: #222222;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.02em;
  padding: 1px 8px 3px;
}
.content_area .sec_story .detail .detail_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
  }
}
.content_area .sec_story .detail .detail_content .image {
  --radius: 15px;
  --shift: 10px;
  position: relative;
  z-index: 1;
  padding-left: var(--shift);
  padding-bottom: var(--shift);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_content .image {
    --radius: 25px;
    --shift: 12px;
    width: 38%;
  }
}
.content_area .sec_story .detail .detail_content .image::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: calc(100% - var(--shift));
  height: calc(100% - var(--shift));
  background-color: #a3ced6;
  border: 1px solid #707070;
  border-radius: var(--radius);
  z-index: -1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_content .image::before {
    border-width: 2px;
  }
}
.content_area .sec_story .detail .detail_content .image img {
  border: 1px solid #222222;
  border-radius: var(--radius);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_content .image img {
    border-width: 2px;
  }
}
.content_area .sec_story .detail .detail_content .texts {
  line-height: 2.14;
  letter-spacing: 0.02em;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .detail .detail_content .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.content_area .sec_story .b_a {
  background-image: repeating-linear-gradient(-45deg, #C1C1C1, #C1C1C1 1px, transparent 0, transparent 7px);
  border-top: 1px solid #222222;
  padding: 28px 20px 30px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a {
    border-width: 1.5px;
    padding: 45px 8% 60px;
  }
}
.content_area .sec_story .b_a .b_a_ttl {
  text-align: center;
}
.content_area .sec_story .b_a .b_a_ttl .en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_ttl .en {
    font-size: 47px;
  }
}
.content_area .sec_story .b_a .b_a_ttl .en span {
  position: relative;
}
.content_area .sec_story .b_a .b_a_ttl .en span::before {
  position: absolute;
  content: "";
  background-image: url(../../images/common/deco_nut_l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 54/48;
  width: 40px;
  top: 70%;
  right: 104%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_ttl .en span::before {
    top: 50%;
    right: 116%;
    width: 53px;
  }
}
.content_area .sec_story .b_a .b_a_ttl .en span::after {
  position: absolute;
  content: "";
  background-image: url(../../images/common/deco_nut_r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 58/41;
  width: 48px;
  top: 70%;
  left: 104%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_ttl .en span::after {
    width: 58px;
    top: 50%;
    left: 116%;
  }
}
.content_area .sec_story .b_a .b_a_ttl .jp {
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_ttl .jp {
    font-size: 18px;
  }
}
.content_area .sec_story .b_a .b_a_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  margin-top: 18px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .content_area .sec_story .b_a .b_a_content {
    gap: 12px;
  }
}
.content_area .sec_story .b_a .b_a_content .box {
  width: min(370px, 100%);
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #222222;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content .box {
    border-radius: 20px;
    border-width: 1.5px;
  }
}
.content_area .sec_story .b_a .b_a_content .box .box_ttl {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  background-color: #d1e6ea;
  padding: 16px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content .box .box_ttl {
    font-size: 18px;
    padding: 23px;
  }
}
.content_area .sec_story .b_a .b_a_content .box .box_ttl span {
  color: #fff;
  background-color: #222222;
  border-radius: 5px;
  padding: 1px 8px 3px;
}
.content_area .sec_story .b_a .b_a_content .box .box_cont {
  padding: 18px 10px 26px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content .box .box_cont {
    padding: 24px 20px 28px;
  }
}
.content_area .sec_story .b_a .b_a_content .box .box_cont p {
  text-align: center;
  line-height: 1.85;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content .box .box_cont p {
    font-size: 16px;
    line-height: 1.625;
  }
}
.content_area .sec_story .b_a .b_a_content .arrow {
  aspect-ratio: 34/16;
  width: 34px;
  background-color: #222222;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .b_a .b_a_content .arrow {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    aspect-ratio: 26/49;
    width: 26px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .content_area .sec_story .b_a .b_a_content .arrow {
    width: 22px;
  }
}
.content_area .sec_story .story {
  border-top: 1px solid #222222;
  padding: 36px 20px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story {
    border-width: 1.5px;
    padding: 48px 5% 64px;
  }
}
.content_area .sec_story .story .story_ttl {
  text-align: center;
}
.content_area .sec_story .story .story_ttl .en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_ttl .en {
    font-size: 46px;
  }
}
.content_area .sec_story .story .story_ttl .en span {
  position: relative;
}
.content_area .sec_story .story .story_ttl .en span::before {
  position: absolute;
  content: "";
  background-image: url(../../images/story/story_deco_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 80px;
  top: 50%;
  right: 94%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_ttl .en span::before {
    width: 84px;
    top: 40%;
    right: 100%;
  }
}
.content_area .sec_story .story .story_ttl .en span::after {
  position: absolute;
  content: "";
  background-image: url(../../images/story/story_deco_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 80px;
  top: 60%;
  left: 92%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_ttl .en span::after {
    width: 84px;
    top: 50%;
    left: 100%;
  }
}
.content_area .sec_story .story .story_ttl .jp {
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_ttl .jp {
    font-size: 18px;
  }
}
.content_area .sec_story .story .story_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 25px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .content_area .sec_story .story .story_content {
    gap: 40px 16px;
  }
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content.row2 {
    max-width: 600px;
    margin-inline: auto;
  }
}
.content_area .sec_story .story .story_content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box {
    width: min(230px, 100%);
  }
}
.content_area .sec_story .story .story_content .box_ttl {
  position: relative;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  background-color: #222222;
  border-radius: 5px;
  padding: 3px 9px 4px;
  margin-bottom: 18px;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_ttl {
    font-size: 18px;
    padding: 5px 14px 6px;
  }
}
.content_area .sec_story .story .story_content .box_ttl::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 40%) rotate(45deg) skew(10deg, 10deg);
          transform: translate(-50%, 40%) rotate(45deg) skew(10deg, 10deg);
  aspect-ratio: 1;
  background-color: #222222;
  border-radius: 2px;
  width: 10px;
  z-index: -1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_ttl::before {
    width: 14px;
    border-radius: 3px;
  }
}
.content_area .sec_story .story .story_content .box_img {
  --radius: 15px;
  --shift: 10px;
  position: relative;
  z-index: 1;
  padding-right: var(--shift);
  padding-bottom: var(--shift);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_img {
    --radius: 25px;
    --shift: 10px;
  }
}
.content_area .sec_story .story .story_content .box_img::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: calc(100% - var(--shift));
  height: calc(100% - var(--shift));
  background-color: #a3ced6;
  border: 1px solid #707070;
  border-radius: var(--radius);
  z-index: -1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_img::before {
    border-width: 2px;
  }
}
.content_area .sec_story .story .story_content .box_img img {
  border: 1px solid #222222;
  border-radius: var(--radius);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_img img {
    border-width: 2px;
  }
}
.content_area .sec_story .story .story_content .box_text {
  position: relative;
  background-color: #eaeaea;
  border-radius: 5px;
  padding: 18px 14px;
  margin-top: 16px;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_text {
    border-radius: 10px;
    padding: 18px 16px;
    margin-top: 28px;
  }
}
.content_area .sec_story .story .story_content .box_text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 10%;
  -webkit-transform: translate(0, -40%) rotate(45deg) skew(10deg, 10deg);
          transform: translate(0, -40%) rotate(45deg) skew(10deg, 10deg);
  aspect-ratio: 1;
  background-color: #eaeaea;
  border-radius: 2px;
  width: 10px;
  z-index: -1;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .box_text::before {
    width: 14px;
    left: 12%;
    border-radius: 3px;
  }
}
.content_area .sec_story .story .story_content .box_text p {
  font-size: 14px;
  line-height: 1.85;
}
@media all and (max-width: 750px) {
  .content_area .sec_story .story .story_content .box_text p {
    text-align: center;
  }
}
.content_area .sec_story .story .story_content .arrow {
  aspect-ratio: 34/16;
  width: 34px;
  background-color: #222222;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_content .arrow {
    aspect-ratio: 26/49;
    width: 23px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -webkit-transform: translate(2px, 160px);
            transform: translate(2px, 160px);
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .content_area .sec_story .story .story_content .arrow {
    width: 20px;
  }
}
.content_area .sec_story .story .story_point {
  background-color: #ecf5f7;
  border-radius: 15px;
  margin-top: 42px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point {
    border-radius: 25px;
  }
}
.content_area .sec_story .story .story_point .point_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  padding: 27px 10px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point .point_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 32px 40px;
  }
}
.content_area .sec_story .story .story_point .point_ttl {
  text-align: center;
  background-color: #a3ced6;
  border-radius: 80px;
  padding: 7px 8px 8px;
}
@media all and (max-width: 750px) {
  .content_area .sec_story .story .story_point .point_ttl {
    margin-inline: 10px;
  }
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point .point_ttl {
    display: -ms-grid;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    width: min(124px, 24%);
    border-radius: 50%;
    padding: 10px;
  }
}
.content_area .sec_story .story .story_point .point_ttl img {
  width: min(89px, 100%);
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point .point_ttl img {
    width: min(100px, 100%);
  }
}
.content_area .sec_story .story .story_point .point_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.content_area .sec_story .story .story_point .point_list > li {
  position: relative;
  letter-spacing: 0.02em;
  padding-left: 1em;
}
.content_area .sec_story .story .story_point .point_list > li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.content_area .sec_story .story .story_point .point_list > li:not(:last-child) {
  margin-bottom: 1.2em;
}
.content_area .sec_story .story .story_point .point_list > li .heading {
  font-size: 14px;
  margin-bottom: 7px;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point .point_list > li .heading {
    font-size: 15px;
  }
}
.content_area .sec_story .story .story_point .point_list > li p {
  font-size: 13px;
  line-height: 1.69;
}
@media all and (min-width: 751px) {
  .content_area .sec_story .story .story_point .point_list > li p {
    font-size: 14px;
  }
}
.content_area .sec_story.js_scroll {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.content_area .sec_story.js_scroll.scroll_active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}