@charset "UTF-8";
/* ========================================
   リセット / ノーマライズ
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.75;
  color: #000;
  background-color: #fff;
}

main {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

rt {
  line-height: 1;
}

.text-emphasis-dot {
  text-emphasis: none;
  -webkit-text-emphasis: none;
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  padding-top: 0.5em;
  margin-top: -0.5em;
}
.text-emphasis-dot::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 0.4em;
  background-image: radial-gradient(circle at 50% 60%, currentColor 2px, transparent 2px);
  background-size: 1em 0.5em;
  background-repeat: repeat-x;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .text-emphasis-dot {
    margin-top: -0.15em;
  }
  .text-emphasis-dot::before {
    top: 5px;
  }
}
/* ========================================
   タイプグラフィー
======================================== */
.text-center {
  text-align: center;
}

.text-red {
  color: #DE0515;
}

.text-blue {
  color: #0000FF;
}

.text-brown {
  color: #B46400;
}

.text-serif {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-weight: 900;
}

.text-blue-solid {
  color: #fff;
  -webkit-text-stroke: 7px #0000FF;
  paint-order: stroke fill;
}

.text-red-solid {
  color: #fff;
  -webkit-text-stroke: 7px #DE0515;
  paint-order: stroke fill;
}

.text-line {
  font-weight: 400;
  letter-spacing: -0.12em;
  position: relative;
  top: -3px;
  margin: 0 0.1em 0 0;
}

/* ========================================
   アニメーション（フェードイン・共通）
   - 全ページで使える汎用クラス
   - 例）<div class="u-fade-in u-fade-in--delay-md">...</div>
======================================== */
@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* 基本のフェードイン（下からフワッと） */
.u-fade-in {
  opacity: 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-name: fade-in-up;
          animation-name: fade-in-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* 遅延バリエーション（必要に応じて併用） */
.u-fade-in--delay-sm {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.u-fade-in--delay-md {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.u-fade-in--delay-lg {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* スクロール連動フェードイン（IntersectionObserver 用） */
.u-fade-in-scroll {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.6s ease-out, transform 0.4s ease-out;
  transition: opacity 0.6s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.u-fade-in-scroll.is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.text-bold {
  font-weight: 900;
}

.text-sm {
  font-size: 1.8rem;
}

.text-mid {
  font-size: 2rem;
  line-height: 1.4;
}

.text-sl {
  font-size: 2.5rem;
  line-height: 1.4;
}

.text-large {
  font-size: 3.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .text-center.text-sp-left {
    text-align: left;
  }
  .text-mid {
    font-size: 1.3rem;
  }
  .text-large {
    font-size: 2.26rem;
  }
  .text-sm {
    font-size: 1.4rem;
  }
  .text-blue-solid.text-sl {
    font-size: 1.4rem;
    -webkit-text-stroke: 6px #0000FF;
    paint-order: stroke fill;
  }
  .text-red-solid {
    color: #fff;
    -webkit-text-stroke: 6px #DE0515;
    paint-order: stroke fill;
  }
}
/* ========================================
   リンク
======================================== */
a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
a:hover {
  opacity: 0.6;
}

/* ========================================
   画像
======================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ========================================
   レイアウト
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

/* ========================================
   ヘッダー
======================================== */
.header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 2.6rem 2rem;
  }
}
/* ========================================
   トップページ
======================================== */
.mv {
  position: relative;
  display: block;
  z-index: 5;
}
.mv img {
  width: 100%;
}
.mv:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 60px;
  background: url("../images/mv-border.png") repeat-x center center/contain;
  z-index: 5;
  left: 0;
  bottom: -24px;
}

.ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.contents {
  padding: 120px 0;
  position: relative;
  background: url("../images/contents-bg.png") repeat-y center center/contain;
  padding-bottom: calc(220px + 23vw);
}
.contents:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 23vw;
  background: url("../images/botttom-rope.png") no-repeat 0 0/contain;
  left: 0;
  bottom: 155px;
}

.contents-slider-wrap {
  position: relative;
  width: 970px;
  height: 750px;
  margin: 0 auto;
  background: url("../images/contents-slider-bg.png") no-repeat center center/cover;
}

.contents-slider-inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 120px 0 0 0;
}
.contents-slider-inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  margin-bottom: 36px;
}

.contents-slider {
  position: relative;
}
.contents-slider.swiper {
  position: relative;
  z-index: 5;
  overflow: visible;
}
.contents-slider.swiper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 44px);
  border-radius: 15px;
  z-index: -1;
  -webkit-box-shadow: 0 0 20px 0 rgba(173, 89, 5, 0.8);
          box-shadow: 0 0 20px 0 rgba(173, 89, 5, 0.8);
  left: 0;
  top: 0;
}
.contents-slider.swiper:before {
  content: "";
  display: block;
  position: absolute;
  width: 146px;
  height: 168px;
  background: url("../images/icon-rudder.png") no-repeat center center/contain;
  left: -75px;
  bottom: -25px;
}

.contents-slider-inner .swiper-button-prev,
.contents-slider-inner .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #DE0515;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 60px);
  cursor: pointer;
  z-index: 10;
}
.contents-slider-inner .swiper-button-prev:after,
.contents-slider-inner .swiper-button-next:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
.contents-slider-inner .swiper-button-prev {
  left: -60px;
}
.contents-slider-inner .swiper-button-prev:after {
  -webkit-transform: translate(-60%, -50%) rotate(180deg);
          transform: translate(-60%, -50%) rotate(180deg);
}
.contents-slider-inner .swiper-button-next {
  right: -60px;
}

.contents-slider-item-img {
  position: relative;
  overflow: hidden;
}
.contents-slider-item-img img {
  display: block;
  width: 100%;
}

.contents-slider-item-txt {
  text-align: center;
  padding: 10px 0 0 0;
  z-index: 5;
  position: relative;
  width: 100%;
  padding: 20%;
}
.contents-slider-item-txt .contents-slider-item-txt__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.contents-slider-item-txt .contents-slider-item-txt__item img {
  display: block;
  margin: 0 auto;
}
.contents-slider-item-txt .contents-slider-item-txt__item.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contents-slider-item-txt .contents-slider-item-txt__item:not(.is-active) {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.contents-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 10px;
}
.contents-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: none;
  opacity: 1;
  margin: 0 12px;
  border: 1px solid #DE0515;
}
.contents-slider .swiper-pagination-bullet-active {
  background: #DE0515;
}
.contents-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .contents-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px);
}

.contents-thums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px 0 0 0;
  padding: 0;
}
.contents-thums li {
  position: relative;
  display: block;
  width: 400px;
  height: 502px;
  background: url("../images/contents-thumb-bg.png") no-repeat center center/contain;
  padding: 84px 0 0 0;
  margin-left: -15px;
  margin-right: -15px;
}
.contents-thums li span {
  display: block;
  max-width: 230px;
  margin: 0 auto;
}

.contents-thums-txt {
  text-align: center;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 800;
  padding: 18px 0 22px 0;
}

.contents-thums-link a {
  display: block;
  background: #DE0515;
  border: 2px solid #DE0515;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 7px 0 8px 0;
  border-radius: 40px;
  letter-spacing: 0.16em;
  font-weight: 600;
  position: relative;
}
.contents-thums-link a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.contents-thums-link a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.contents-thums-link a:hover {
  background: #fff;
  color: #DE0515;
}
.contents-thums-link a:hover:after {
  border-color: transparent transparent transparent #DE0515;
}

@media screen and (max-width: 1000px) {
  .contents-slider-wrap {
    width: 100%;
    height: 78vw;
  }
  .contents-slider.swiper:before {
    width: 120px;
    height: 120px;
    left: -62px;
    bottom: -9px;
  }
  .contents-slider-inner {
    width: 50vw;
    padding: 5.4rem 0 0 0;
  }
  .contents-slider-inner h3 {
    margin-bottom: 1.8rem;
  }
  .contents-slider-item-txt {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv:after {
    height: 34px;
    background: url(../images/mv-border.png) repeat-x center center/contain;
    bottom: -20px;
  }
  .contents {
    padding-top: 3.8rem;
    padding-bottom: calc(110px + 71vw);
    background: url(../images/contents-bg@sp.jpg) repeat-y center center/contain;
    overflow: hidden;
  }
  .contents:after {
    height: 71vw;
    background: url(../images/botttom-rope@sp.png) no-repeat 0 0/contain;
    bottom: 50px;
  }
  .contents-slider-wrap {
    width: 101vw;
    height: 126vw;
    background: url(../images/contents-slider-bg@sp.png) no-repeat center center/cover;
    margin-left: -20px;
    margin-right: -20px;
  }
  .ttl {
    margin-bottom: 20px;
  }
  .ttl img {
    max-width: 285px;
  }
  .contents-slider .swiper-pagination {
    margin-top: 4px;
  }
  .contents-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .contents-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  }
  .contents-slider.swiper:before {
    width: 90px;
    height: 90px;
    left: -38px;
    bottom: 14px;
  }
  .contents-slider.swiper:after {
    height: calc(100% - 38px);
    border-radius: 8%;
  }
  .contents-slider-inner {
    padding: 5.9rem 0 0 0;
    width: 65vw;
  }
  .contents-slider-inner h3 {
    margin-bottom: 1rem;
  }
  .contents-slider-inner h3 img {
    width: 80px;
  }
  .contents-slider-inner .swiper-button-prev, .contents-slider-inner .swiper-button-next {
    width: 30px;
    height: 30px;
    top: calc(50% + 50px);
  }
  .contents-slider-inner .swiper-button-prev:after, .contents-slider-inner .swiper-button-next:after {
    border-width: 6px 0 6px 8px;
  }
  .contents-slider-inner .swiper-button-prev {
    left: -40px;
  }
  .contents-slider-inner .swiper-button-next {
    right: -40px;
  }
  .contents-slider-item-txt {
    width: 60%;
    left: 0%;
    margin-top: 0.4rem;
    padding-top: 25%;
  }
  .contents-thums {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -20px 0 -20px;
  }
  .contents-thums li {
    max-width: 400px;
    max-height: 502px;
    width: 100%;
    height: 124vw;
    margin-left: -20px;
    margin-right: -20px;
    padding: 5.4rem 0 0 0;
    margin-bottom: -5rem;
  }
  .contents-thums li span {
    max-width: 230px;
    width: 100%;
  }
  .contents-thums-txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .contents-thums-link a {
    font-size: 1rem;
  }
}
/* ========================================
   コンテンツページ
======================================== */
.contents-mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
  padding: 30px 0 20px 0;
  background: url("../images/contents-bg2.jpg") repeat-y center center/contain;
}
.contents-mv:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 60px;
  background: url("../images/mv-border.png") repeat-x center center/contain;
  z-index: 5;
  left: 0;
  bottom: -24px;
}

.story {
  padding: 100px 0;
  background: url("../images/story-bg.jpg") no-repeat center center/cover;
}

.story-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 5.4rem 15px 7.2rem 15px;
  z-index: 5;
  overflow: hidden;
}
.story-inner .bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.story-inner .bg:before, .story-inner .bg:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
}
.story-inner .bg:before {
  top: 0;
  height: 30%;
  background: url(../images/story-papper-head.png) no-repeat 0 0/contain;
}
.story-inner .bg:after {
  bottom: 0;
  height: 30%;
  background: url(../images/story-papper-footer.png) no-repeat 0 bottom/contain;
}
.story-inner .bg2 {
  display: block;
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0;
  top: 5%;
  z-index: -2;
  background: url(../images/story-papper-bg.png) repeat-y 0 0/contain;
}
.story-inner p {
  margin-bottom: 36px;
}

.story-img {
  position: relative;
  max-width: 640px;
  margin: 0 auto 34px auto;
}

.story-speech {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 640px;
  margin: 0 auto 40px auto;
}
.story-speech dt {
  margin-right: 20px;
}
.story-speech dd {
  margin: 0;
  font-weight: 600;
}

.story-continue {
  max-width: 40px;
  display: block;
  margin: 0 auto 45px auto;
}
.story-continue.story-continue2 img:first-child {
  margin-bottom: 24px;
}

.story-subttl {
  max-width: 382px;
  position: relative;
  display: block;
  margin: 0 auto -15px auto;
}

/* 吹き出し（白背景・水色枠・右下にしっぽ） */
.story-moniter-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 38px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.story-moniter {
  position: relative;
  max-width: 640px;
  display: inline-block;
  background: #fff;
  border: 1px solid #87CEEB;
  border-radius: 16px 16px 0 16px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* しっぽの枠（水色・やや大きめ） */
}
.story-moniter::before {
  content: "";
  position: absolute;
  left: 100%;
  top: calc(100% - 20px);
  margin-left: -1px;
  margin-top: -1px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-left: 11px solid #87CEEB;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #87CEEB;
  z-index: -1;
}
.story-moniter {
  /* しっぽの塗り（白） */
}
.story-moniter::after {
  content: "";
  position: absolute;
  left: 100%;
  top: calc(100% - 20px);
  margin-left: -1px;
  margin-top: 0px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 3;
}
.story-moniter span {
  display: inline-block;
  padding: 14px 28px 14px 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}
.story-moniter.story-moniter-oneline span {
  padding: 10px 22px 14px 22px;
}

.story-list {
  position: relative;
  max-width: 688px;
  margin: -20px auto 0 auto;
}

.story-answer {
  position: relative;
  display: block;
  max-width: 746px;
  margin: 60px auto 15px auto;
}

.story-point {
  position: relative;
  max-width: 724px;
  margin: 30px auto 20px auto;
}

.story-tobe {
  position: relative;
  max-width: 735px;
  margin: 0 auto 0 auto;
}

.story-speech-red span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em;
  top: -3px;
}

.story-bottom {
  padding: 90px 0 340px 0;
  padding-bottom: calc(240px + 23vw);
  position: relative;
  background: url(../images/contents-bg.png) repeat-y center center/contain;
}
.story-bottom:before, .story-bottom:after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  z-index: 5;
}
.story-bottom:before {
  height: 60px;
  background: url(../images/mv-border.png) repeat-x center center/contain;
  left: 0;
  top: -14px;
}
.story-bottom:after {
  height: 23vw;
  background: url(../images/botttom-rope.png) no-repeat 0 0/contain;
  left: 0;
  bottom: 155px;
}

.stroy-lead {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.story-bottom-next {
  position: relative;
  max-width: 870px;
  height: 440px;
  margin: 0 auto;
  background: url(../images/story-bottom-next_bg.png) no-repeat center top/contain;
  padding: 90px 0 0 0;
}

.story-bottom-next__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.story-bottom-next__txt {
  width: 350px;
  text-align: center;
  padding-left: 20px;
}
.story-bottom-next__txt h4 {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}
.story-bottom-next__txt .contents-thums-link a {
  max-width: 230px;
  margin: 0 auto;
  margin-margin: 0 auto;
}

.story-inner .story-final {
  margin-bottom: 60px;
  margin-top: -10px;
}
.story-inner .story-final .icon {
  display: inline-block;
  position: relative;
  top: 12px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .contents-mv {
    padding: 2.7rem 0 3.4rem 0;
    background: url(../images/contents-bg@sp.jpg) repeat-y center center/contain;
  }
  .contents-mv:after {
    height: 34px;
    background: url(../images/mv-border.png) repeat-x center center/contain;
    bottom: -20px;
  }
  .story {
    background: url(../images/story-bg@sp.jpg) no-repeat center center/cover;
    padding: 4.4rem 0 3rem 0;
  }
  .story .container {
    padding: 0 30px;
  }
  .story .bg2 {
    height: 95%;
    top: 2.5%;
  }
  .story-inner {
    max-width: 640px;
    padding: 5.4rem 20px 5.2rem 20px;
  }
  .story-inner p {
    margin-bottom: 24px;
  }
  .story-first {
    font-size: 16px;
    max-width: 400px;
    width: 94%;
    margin: -2rem auto 0 auto;
  }
  .story-first br {
    display: none;
  }
  .story-img {
    width: 94%;
    max-width: 500px;
    margin-bottom: 30px;
  }
  .story-img.story-img2 {
    width: 98%;
  }
  .story-moniter-wrap {
    width: 94%;
  }
  .story-moniter {
    border-radius: 14px 14px 0 14px;
  }
  .story-moniter span {
    font-size: 13px;
    padding: 8px 18px 8px 18px;
  }
  .story-moniter::before {
    top: calc(100% - 10px);
    margin-left: -1px;
    margin-top: -1px;
    border-top: 6px solid transparent;
    border-left: 6px solid #87CEEB;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #87CEEB;
    z-index: -1;
  }
  .story-moniter {
    /* しっぽの塗り（白） */
  }
  .story-moniter::after {
    left: 100%;
    top: calc(100% - 10px);
    margin-left: -1px;
    margin-top: 0px;
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    z-index: 3;
  }
  .story-moniter.story-moniter-oneline span {
    padding: 6px 18px 8px 18px;
  }
  .story-speech {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 500px;
  }
  .story-speech dt {
    width: 70px;
    margin-right: 0;
  }
  .story-speech dd {
    width: calc(100% - 80px);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 15px 0 0 0;
  }
  .story-speech.story-speech-red span {
    font-size: 1.4rem;
    top: -2px;
    margin-right: 0.3em;
    margin-bottom: 0.2em;
    margin-top: 0.1em;
  }
  .story-subttl {
    margin-bottom: 5px;
  }
  .story-list {
    margin-top: -1.1re;
  }
  .story-continue {
    max-width: 30px;
    margin-bottom: 30px;
  }
  .story-answer {
    max-width: 530px;
  }
  .story-answer img {
    width: 100%;
  }
  .story-point {
    margin: -0.6rem auto 20px auto;
    max-width: 530px;
  }
  .story-tobe {
    padding: 40px 0 0 0;
  }
  .story-inner .story-final {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  .story-inner .story-final .icon {
    width: 32px;
    height: 32px;
    margin-right: 6px;
    top: 9px;
  }
  .story-bottom {
    padding-bottom: calc(110px + 71vw);
    background: url(../images/contents-bg@sp.jpg) repeat-y center center/contain;
  }
  .story-bottom .container {
    padding-left: 0;
    padding-right: 0;
  }
  .story-bottom:before {
    height: 34px;
    background: url(../images/mv-border.png) repeat-x center center/contain;
    top: -10px;
  }
  .story-bottom:after {
    height: 71vw;
    background: url(../images/botttom-rope@sp.png) no-repeat 0 0/contain;
    bottom: 50px;
  }
  .stroy-lead {
    display: none;
  }
  .story-bottom-next {
    max-width: 400px;
    max-height: 502px;
    width: 100%;
    height: 124vw;
    margin-left: -20px;
    margin-right: -20px;
    padding: 5.6rem 0 0 0;
    margin: -3.6rem auto -4.2rem auto;
    background: url(../images/contents-thumb-bg.png) no-repeat center center/contain;
  }
  .story-bottom-next__inner {
    display: block;
  }
  .story-bottom-next__img {
    max-width: 230px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .story-bottom-next__txt {
    max-width: 230px;
    width: 100%;
    margin: 0 auto;
    display: block;
    line-height: 1.5;
    padding-left: 0;
  }
  .story-bottom-next__txt h4 {
    font-size: 1.4rem;
    padding: 18px 0 22px 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .contents {
    padding-bottom: calc(45px + 71vw);
  }
  .contents-thums {
    padding: 0 0 5rem 0;
  }
  .contents-thums li {
    padding: 5rem 0 0 0;
  }
  .contents-thums li span {
    width: 56%;
  }
  .contents-thums-txt {
    font-size: 18px;
    padding: 12px 0 20px 0;
  }
  .story-bottom {
    padding-bottom: calc(40px + 71vw);
  }
  .story-bottom-next {
    padding: 4.8rem 0 5rem 0;
    margin: -3.6rem auto 0rem auto;
  }
  .story-bottom-next__img {
    width: 56%;
  }
  .story-bottom-next__txt h4 {
    font-size: 18px;
  }
}
/* ========================================
   ユーティリティ
======================================== */
/* スクリーンリーダー専用テキスト（アクセシビリティ対応） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* フォーカス時に表示 */
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ========================================
   レスポンシブ
======================================== */
.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* ========================================
   フッター
======================================== */
.footer {
  position: relative;
  display: block;
  background: #fff;
  z-index: 15;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 22px 0;
}
.footer-inner p {
  font-weight: 300;
  font-size: 14px;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 20px 0;
  }
  .footer-inner p {
    font-weight: 300;
    font-size: 10px;
    color: #aaa;
  }
  .footer-logo {
    width: 120px;
  }
}