@charset "UTF-8";

* {
    font-size: 100%;
    padding: 0;
    margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  letter-spacing: 1px;
  text-align: center;
}

.page-hero__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}
.page-hero__genre {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.section--sub .text-section__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}

img {
  max-width: 100%;
  height: auto;
}

.br-pc,
.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br-pc,
  .is-pc {
    display: none;
  }
}

.br-sp,
.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp,
  .is-sp {
    display: block;
  }
}

.page {
  max-width: 1240px;
  margin: 20px auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page {
    padding: 0;
  }
}

.section--main {
  padding: 0 60px 80px;
  background-color: #e4eaea;
}
@media screen and (max-width: 767px) {
  .section--main {
    padding: 0 30px 60px;
  }
}

.section--sub {
  padding: 80px 60px;
  background-color: #f7edeb;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .section--sub {
    padding: 60px 30px;
    border-radius: 0;
  }
}
.section--sub .section__inner {
  max-width: 900px;
  margin: auto;
}

.page-hero__catch {
  padding: 15px;
  line-height: 1.4;
  color: #fff;
  background-color: #0059a7;
  border-radius: 20px 20px 0 0;
  margin-bottom:0;
}
@media screen and (max-width: 767px) {
  .page-hero__catch {
    margin-top: 7px;
    border-radius: 0;
  }
}
.page-hero__bg {
  padding: 0 60px;
  background-color: #e4eaea;
}
@media screen and (max-width: 767px) {
  .page-hero__bg {
    padding: 0 30px;
  }
}
.page-hero__title {
  font-size: 36px;
  color: #0059a7;
  padding-top: 30px;
  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: 10px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-hero__title {
    font-size: 24px;
    text-align: left;
    letter-spacing: -2px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page-hero__genre {
  -ms-flex-item-align: start;
      align-self: flex-start;
  border: 1px solid #0059a7;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 14px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .page-hero__genre {
    margin-left: 0;
    letter-spacing: 0;
  }
}
.page-hero__lead {
  text-align: justify;
  max-width: 900px;
  margin: 30px auto 0;
}

.media-grid {
  display: grid;
  gap: 30px;
}

.media-grid--asymmetric {
  padding-top: 30px;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .media-grid--asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* 共通（figure） */
.media-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* 左：メイン画像 */
.media-grid__item--main {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .media-grid__item--main {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

/* 右上（sub-01） */
.media-grid__item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .media-grid__item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
    max-width: 80%;
    margin: auto;
  }
}

/* 右下（sub-02） */
.media-grid__item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .media-grid__item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 3/4;
    max-width: 80%;
    margin: auto;
  }
}

.media-grid__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .media-grid__item img {
    height: auto;
  }
}

.media-grid__item figcaption {
  font-size: 12px;
  text-align: left;
  line-height: 1.4;
}

.media-grid--asymmetric .media-grid__item--main figcaption,
.media-grid--asymmetric .media-grid__item:nth-child(3) figcaption {
  margin-top: auto;
}

.media {
  display: grid;
  gap: 40px;
}
.media__body {
  text-align: left;
}
.media__title {
  font-size: 24px;
  color: #0059a7;
  line-height: 1.6;
}
.media__text {
  margin-top: 30px;
  text-align: justify;
}
.media__note {
  font-size: 12px;
  margin-top: 20px;
  padding-left: 2em;
  text-indent: -2em;
}
.media .u-underline {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  text-decoration-color: #e60012;
}

.media--split {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .media--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 60px;
  }
}
.media--split .media__visual figcaption {
  font-size: 12px;
  text-align: left;
  line-height: 1.4;
  margin-top: 10px;
}
.media--split.media--reverse {
  grid-template-columns: 1fr 1.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .media--split.media--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.media--reverse .media__body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .media--reverse .media__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.media--reverse .media__visual {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .media--reverse .media__visual {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.media--reverse .media__visual figcaption {
  font-size: 12px;
  text-align: left;
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .media--reverse .media__visual figcaption {
    text-align: center;
  }
}

.media--stack {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .media--stack {
    margin-top: 60px;
  }
}
.media--stack {
  gap: 0;
}
.media--stack .media__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: auto;
}
.media--stack .media__title {
  color: #fff226;
  text-align: center;
  padding: 15px 40px;
  background-color: #0059a7;
}
@media screen and (max-width: 767px) {
  .media--stack .media__title {
    font-size: 18px;
    padding: 15px;
  }
}
.media--stack .media__visual {
  margin: 30px auto 0;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .media--stack .media__visual {
    width: 100%;
  }
}
.media--stack .media__visual figcaption {
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  margin-top: 10px;
}

.section--sub .text-section__title {
  color: #0059a7;
  font-size: 24px;
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid #0059a7;
  border-bottom: 1px solid #0059a7;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .section--sub .text-section__title {
    padding: 20px 0;
  }
}
.section--sub .text-section__title .em-dot {
  position: relative;
  display: inline-block;
}
.section--sub .text-section__title .em-dot::before {
  content: "●●";
  position: absolute;
  top: -1em;
  left: 1.2em;
  color: #e60012;
  font-size: 0.3em;
  letter-spacing: 2.4em;
}
@media screen and (max-width: 767px) {
  .section--sub .text-section__title .em-dot::before {
    top: -0.6em;
    left: 1.2em;
    font-size: 0.3em;
    letter-spacing: 2.4em;
  }
}
.section--sub .text-section__genre {
  color: #fff;
  font-size: 16px;
  padding: 2px 10px;
  display: block;
  text-align: center;
  background-color: #0059a7;
  position: absolute;
  top: -15px;
  left: 60px;
}
@media screen and (max-width: 767px) {
  .section--sub .text-section__genre {
    left: 20px;
  }
}
.section--sub .text-section__text {
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .section--sub .text-section__text {
    text-align: left;
    line-height: 1.8;
  }
}
.section--sub .text-section__subtitle {
  font-size: 20px;
  margin-top: 40px;
}
.section--sub .text-section__subtitle span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section--sub .text-section__subtitle span {
    display: block;
  }
}

.section--sub .media-section__title {
  font-size: 24px;
  margin-top: 60px;
  line-height: 1.6;
}
.section--sub .media--split.media--reverse {
  margin-top: 30px;
  grid-template-columns: 1fr 3fr;
}
@media screen and (max-width: 767px) {
  .section--sub .media--split.media--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.section--sub .media--reverse .media__body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.section--sub .media--reverse .media__text {
  margin-top: 0;
}
.section--sub .media--reverse .media__text:nth-of-type(2) {
  margin-top: 30px;
}
.section--sub .media--reverse .media__visual {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .section--sub .media--reverse .media__visual {
    max-width: 60%;
    margin: auto;
  }
}

.section--sub .media-section__title.video {
  font-size: 20px;
  margin-top: 60px;
  color: #fff;
  background-color: #e60012;
  padding: 10px 30px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section--sub .media-section__title.video {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.section--sub .media-section__title.video span {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .section--sub .media-section__title.video span {
    font-size: 18px;
  }
}
.section--sub .media-section__title.video::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 45px;
  width: 0;
  height: 0;
  border-top: 15px solid #e60012;
  border-right: 25px solid transparent;
}
.section--sub .embed--video {
  margin-top: 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.section--sub .embed--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-aside {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}
.page-aside__note {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page-aside__note {
    text-align: left;
    padding-left: 2em;
    text-indent: -2em;
  }
}
.page-aside__banner {
  width: 200px;
  margin: 40px auto;
}

sup {
  font-size: 10px;
}

#article-end {
  width: 1px;
  height: 1px;
}

#Header #HeaderInner {
  width: 1240px;
  padding: 15px 10px 10px;
}

.footer {
  padding: 6rem 0;
}/*# sourceMappingURL=style.css.map */