@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  font-size: calc(10 / 750 * 100vw);
}

.main {
  position: relative;
  font-family: "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000000;
  background-color: #ffffff;
  overflow: hidden;
}
.main * {
  box-sizing: border-box;
}
.main > * {
  position: relative;
  padding: 16rem 0;
  overflow: hidden;
}
.main img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.main a,
.main button {
  display: block;
  color: #000000;
  word-wrap: break-word;
  line-break: anywhere;
}
.main p,
.main dd {
  line-height: 2;
}
.main p a,
.main dd a {
  display: inline;
  color: #b91220;
  text-decoration: underline;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
}

#footerArea {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
  .main {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
  .main a,
  .main button {
    transition: opacity 0.3s ease;
    backface-visibility: hidden;
  }
  .main a:hover,
  .main button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .inner {
    width: 90%;
    max-width: 1280px;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}
.btn01 {
  text-align: center;
  margin-top: 6rem;
}
.btn01 a {
  display: inline-block;
  padding: 1em;
  min-width: 10em;
  color: #ffffff;
  background-color: #b91220;
  border-radius: 1rem;
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  padding: 0;
}
.mv-onair {
  text-align: center;
  padding: 3.5rem 0;
  font-size: 2.4rem;
  line-height: 1.5 !important;
  background-color: #eae5e5;
}
@media screen and (min-width: 768px) {
  .mv-onair {
    padding: 3rem 0;
  }
}
.mv-onair small {
  font-size: 80%;
}
.mv-onair em {
  font-size: 200%;
  color: #b91220;
  vertical-align: sub;
}

/* =====================================================================
    intro
======================================================================*/
.intro {
  padding: 0;
}
.intro-text {
  padding: 16rem 0;
}
@media screen and (min-width: 768px) {
  .intro-text {
    margin: 0 auto;
    width: calc(920 / 1280 * 100%);
  }
}
.intro-text-l, .intro-text-r {
  margin-bottom: 5rem;
  font-size: 4.8rem;
  line-height: 1.6 !important;
  color: #b91220;
  text-shadow: rgba(255, 255, 255, 0.5) 0.25em 0.25em 0;
}
@media screen and (min-width: 768px) {
  .intro-text-l, .intro-text-r {
    font-size: 266%;
  }
}
.intro-text-l span, .intro-text-r span {
  position: relative;
  display: inline-block;
}
.intro-text-l span::before, .intro-text-r span::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to right, #d8ced9 0%, #eae5e5 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .intro-text-l {
    margin-left: calc(-55 / 640 * 100%);
  }
  .intro-text-l span {
    padding-left: calc(55 / 640 * 100%);
  }
}
.intro-text-r {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .intro-text-r {
    margin-right: calc(-55 / 640 * 100%);
  }
  .intro-text-r span {
    padding-right: calc(55 / 640 * 100%);
  }
}
.intro h2 {
  text-align: center;
  margin-bottom: 7rem;
  font-size: 3.2rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .intro h2 {
    font-size: 177%;
  }
}
.intro h2 small {
  font-size: 65%;
}
.intro h2 em {
  color: #b91220;
}
.intro-photo {
  position: relative;
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .intro-photo {
    padding: 12rem 0;
    gap: calc(100 / 1280 * 100%);
    flex-direction: row;
  }
}
.intro-photo::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background: url(../img/bg_intro-sp.jpg) no-repeat center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .intro-photo::before {
    background-image: url(../img/bg_intro-pc.jpg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1030px) {
  .intro-photo::before {
    margin-left: calc((100% - 1030px) / 2);
    width: calc(1030px - 100% + 100%);
  }
}
.intro-photo li {
  width: calc(480 / 640 * 100%);
  font-size: 1rem;
  box-shadow: 0 2.4em 7.2em rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .intro-photo li {
    font-size: 0.66rem;
    width: calc(360 / 1280 * 100%);
  }
}

.delivery {
  display: flex;
  flex-wrap: wrap;
  padding: 4.6875%;
}

.delivery li {
  width: 17% !important;
  margin-right: 0.5em;
}

.delivery li img {
  width: 100%;
}

.streaming_link {
  border: 1px solid #707070;
  margin-bottom: 1.5rem !important;
  flex-grow: 1;
}

.streaming_link {
  border: 1px solid #707070;
  margin-bottom: 5rem !important;
  flex-grow: 1;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .streaming_link {
    max-width: 500px;
  }
}

.streaming_link h4 {
  font-size: 3rem;
  background-color: #E80000;
  width: 100%;
  padding: 0.5em 0;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.streaming_link img {
  border: 1px solid #707070;
  border-radius: 10px;
}

/* =====================================================================
    summary
======================================================================*/
.summary {
  background-color: #eae5e5;
}
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .summary-list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.summary-list li {
  width: 100%;
}
.summary-list li h2 {
  margin-bottom: 5rem;
  font-size: 160%;
  color: #b91220;
}
@media screen and (min-width: 768px) {
  .summary-list li h2 {
    margin-bottom: 4rem;
  }
}
.summary-list-desc {
  padding-left: 7.5rem;
  border-left: 1px solid #b91220;
}
.summary-list-desc > *:not(:last-child) {
  margin-bottom: 1.2em;
}
@media screen and (min-width: 768px) {
  .summary-list-desc p {
    line-height: 1.555;
  }
}
.summary-list-desc p span {
  color: #b91220;
}
.summary-list-desc p em {
  font-size: 140%;
  line-height: 1.5;
}
.summary-list-desc p small {
  font-size: 80%;
}

/* =====================================================================
    comment
======================================================================*/
.comment {
  color: #eae5e5;
  background-color: #000000;
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 13rem;
}
@media screen and (min-width: 768px) {
  .comment-list {
    gap: 4rem;
    margin: 0 auto;
    max-width: 1080px;
  }
}
@media screen and (min-width: 768px) {
  .comment-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.comment-list li figure {
  position: relative;
  margin: 0 auto 4rem;
  width: calc(480 / 640 * 100%);
}
@media screen and (max-width: 767px) {
  .comment-list li figure::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 8rem;
    left: 0;
    margin-left: -16.6666666667%;
    width: calc(640 / 480 * 100%);
    border-top: 1px solid #ff1a2d;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .comment-list li figure {
    margin: 0;
    width: calc(400 / 1080 * 100%);
  }
}
.comment-list li h2 {
  position: relative;
  text-align: center;
  font-size: 213%;
}
@media screen and (min-width: 768px) {
  .comment-list li h2 {
    text-align: left;
    font-size: 160%;
  }
  .comment-list li h2::before {
    content: "";
    position: absolute;
    display: block;
    bottom: -4rem;
    left: 0;
    margin-left: -80%;
    width: calc(1080 / 600 * 100%);
    border-top: 1px solid #ff1a2d;
    z-index: -1;
  }
}
.comment-list li h2 small {
  display: block;
  margin-top: 0.7em;
  color: #ff1a2d;
  font-size: 55%;
}
.comment-list li h3 {
  position: relative;
  text-align: center;
  font-size: 213%;
  margin-top: 2rem;
  border-bottom: 1px solid #ff1a2d;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .comment-list li h3 {
    text-align: left;
    font-size: 160%;
  }
}
.comment-list li p {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .comment-list li p {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .comment-list-right {
    width: calc(600 / 1080 * 100%);
  }
}
.comment-btn a {
  margin-top: 8rem;
  font-size: 115%;
  letter-spacing: 0.2em;
}/*# sourceMappingURL=layout.css.map */