@charset "UTF-8";
/* 25th anniv detail page */
:root {
  --font_base:
  "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto,
  "Helvetica Neue", Arial, sans-serif;
  --font_en: "Angkor", sans-serif;
  --bl: #0991FF;
  --pk: #ff6cc5;
  --ye: #feff43;
  --dark: #333;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_base);
  color: #111;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* header */
.l-header {
  z-index: 10;
  background: rgba(255, 255, 255, 0.4666666667);
  border-bottom: 1px solid #eee;
}

.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.l-header__logo {
  width: 170px;
  height: auto;
}

.l-header__back {
  color: var(--bl);
  text-decoration: none;
  font-weight: 700;
}

/* detail */
.detail {
  background: #F2F4F7;
  min-height: 100vh;
}

.detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}
@media screen and (min-width: 1025px) {
  .detail__inner {
    padding: 40px 20px 80px;
  }
}

/* hero */
.detail-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-hero {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .detail-hero__thumb {
    flex: 0 0 320px;
  }
}

.detail-hero__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* .detail-hero__body reserved */
.detail-hero__body p.detail-hero__lead {
  line-height: 160%;
  font-size: 18px;
  font-weight: 400;
  margin-top: 16px;
}

.detail-hero__title {
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .detail-hero__title {
    font-size: 34px;
  }
}

.detail-hero__meta {
  font-size: 16px;
  margin: 16px 0 0;
}

.detail-title {
  font-weight: 700;
  font-size: 28px;
  margin: 0;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.detail-hero__cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #dfe9ff;
  border-radius: 12px;
  padding: 12px 16px;
  width: 60%;
  margin-left: auto;
  /* 視聴ボタン（右側） */
}
.detail-hero__cta .cta__date {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}
.detail-hero__cta a {
  text-decoration: none;
}
.detail-hero__cta .btn {
  margin-top: 0;
}
.detail-hero__cta .btn--watch {
  background: #000;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.detail-hero__cta .btn--watch img {
  width: 28px;
  height: 28px;
}

/* SPは縦積みで幅いっぱい */
@media screen and (max-width: 1024px) {
  .detail-hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .detail-hero__cta .btn--watch {
    width: 100%;
    justify-content: space-between;
  }
}
/* cast */
.cast__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .cast__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .cast__list.single-col {
    grid-template-columns: 1fr;
  }
}
.cast__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .cast__item {
    gap: 20px;
  }
}

.cast__thumb {
  flex: 0 0 96px;
  width: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.cast__thumb.square {
  border-radius: 0;
}

.cast__thumb img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.cast__body {
  flex: 1;
}

.cast__name {
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 16px;
}

.cast__desc {
  margin: 0;
  line-height: 1.8;
  font-size: 14px;
}

/* campaign card */
.detail-campaign {
  margin-top: 20px;
  padding: 20px 15px;
}
@media screen and (min-width: 1025px) {
  .detail-campaign {
    margin-top: 30px;
    padding: 18px 20px;
  }
}

.campaign-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  background: #e9eef5;
  padding: 20px 15px;
}
@media screen and (min-width: 1025px) {
  .campaign-card {
    padding: 18px 20px;
  }
}

.campaign-card__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e9eef5;
  border-radius: 10px;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .campaign-card__inner {
    flex-direction: row;
  }
}

.campaign-card__texts {
  flex: 1;
}

.campaign-card__period {
  margin: 0 0 6px;
  color: #111;
  font-weight: 700;
  font-size: 18px;
}

.campaign-card__title {
  margin: 0 0 8px;
  font-weight: 900;
  line-height: 1.35;
  font-size: 26px;
}

.campaign-card__desc {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  .campaign-card__desc {
    font-size: 16px;
  }
}

.campaign-card__link {
  margin: 0;
  color: var(--bl);
  font-weight: 700;
}

@media screen and (min-width: 1025px) {
  .campaign-card__thumb {
    flex: 0 0 600px;
  }
}

.campaign-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* present block */
.detail-present {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  margin-top: 32px;
  padding: 16px;
}
@media screen and (min-width: 1025px) {
  .detail-present {
    flex-direction: row;
    justify-content: space-between;
  }
}

.detail-present > img,
.detail-present > picture {
  display: block;
  width: 100%;
  height: auto;
  justify-self: end;
}
@media screen and (min-width: 1025px) {
  .detail-present > img,
.detail-present > picture {
    flex: 1 1 500px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .detail-present > img.small-present,
.detail-present > picture.small-present {
    flex: 0 0 200px;
  }
}

@media screen and (min-width: 1025px) {
  .detail-present > picture {
    flex: 1 1 450px;
  }
}

.detail-present__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 24px;
  color: var(--pk);
}

.detail-present__desc {
  margin: 0 0 10px;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 700;
}

.detail-present__link {
  color: var(--bl);
  font-weight: 700;
  text-decoration: none;
}

/* responsive */
.detail-recommend__section,
.detail-message__section {
  margin-top: 40px;
}

.detail-recommend__section .detail-title {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .detail-recommend__section .detail-title {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* detail desc */
.detail-desc {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-desc {
    margin-top: 30px;
    padding: 32px 64px;
  }
}

.detail-desc p {
  margin: 0;
  line-height: 1.9;
  font-size: 16px;
}

/* detail nav */
.detail-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.detail-nav__back {
  color: var(--bl);
  font-weight: 700;
  text-decoration: none;
}

.detail-article {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-article {
    margin-top: 30px;
  }
}

.detail-article__vol {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.detail-article__title {
  font-weight: 700;
  font-size: 30px;
  margin: 8px 0 32px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .detail-article__title {
    font-size: 40px;
    margin: 8px 0 64px;
  }
}

.detail-desc p.detail-article__desc {
  margin: 32px 0;
  line-height: 1.9;
  font-size: 18px;
  margin-top: 32px;
}
@media screen and (min-width: 1025px) {
  .detail-desc p.detail-article__desc {
    margin: 64px 0;
    margin-top: 64px;
  }
}

.detail-desc .detail-article__subtitle {
  margin: 32px 0;
  font-size: 24px;
  font-weight: 700;
  background-image: linear-gradient(0deg, #FEFF43 0.5em, transparent 0.5em);
}

.detail-desc .detail-article__subhead {
  margin: 16px 0;
  font-size: 20px;
  font-weight: 700;
}

.detail-desc .detail-article__images {
  margin: 30px auto;
}
@media screen and (min-width: 1025px) {
  .detail-desc .detail-article__images {
    width: 60%;
  }
}

.detail-article__images_caption {
  margin: 10px;
  font-size: 14px;
  text-align: center;
}

.recipe-header {
  display: flex;
  width: 100%;
}

.recipe-header__image {
  width: 50%;
}

.recipe-header__ingredient {
  width: 50%;
  padding-left: 32px;
}

.recipe-header__ingredient table {
  width: 100%;
}

.recipe-header__ingredient table td {
  padding: 8px;
  border-bottom: #000 dotted 1px;
}

.recipe-header__ingredient table tr:first-of-type td {
  border-top: #000 dotted 1px;
}

ol.recipe-flow {
  margin: 16px 16px 32px;
  padding: 0 0 0 16px;
}

ol.recipe-flow li {
  margin: 8px 0;
  font-size: 16px;
  list-style-type: decimal;
}

.recipe-point {
  margin: 32px 0;
  padding: 16px 32px;
  border: #000 dashed 1px;
  border-radius: 16px;
}

.recipe-point em {
  font-style: normal;
  font-weight: 700;
}

.detail-message {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-message {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
}

.detail-message__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.detail-message__cta {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .detail-message__cta {
    width: 50%;
  }
}

.detail-message__cta__inner {
  background: #d6ff21 url("/excludes/ck/campaign/anniv/25th/img/live25_play.svg") 98% 98% no-repeat;
  border-radius: 20px;
  padding: 6px 30px 6px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  margin-top: 20px;
  color: #000;
}

.detail-message__cta__text {
  font-weight: 700;
  line-height: 1.4;
}

.detail-message__strong {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
}

.detail-message__cta__img {
  width: 130px;
}

.detail-recommend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 20px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .detail-recommend {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 30px;
  }
}

.detail-recommend__item {
  display: grid;
  grid-template-columns: 1fr 120px;
  grid-template-areas: "body thumb" "meta meta" "link link";
  align-items: start;
  gap: 8px 12px;
}

.detail-recommend__thumb {
  grid-area: thumb;
  width: 120px;
  height: 120px;
  justify-self: end;
  align-self: start;
}

.detail-recommend__thumb img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 10px;
}

.detail-recommend__body {
  grid-area: body;
  align-self: start;
}

.detail-recommend__vol {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.detail-recommend__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.detail-recommend__meta {
  grid-area: meta;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
}

.detail-recommend__link {
  grid-area: link;
  margin: 0;
  font-weight: 700;
  color: var(--bl);
  font-size: 18px;
}
/*# sourceMappingURL=detail.css.map */
