@charset "UTF-8";
/* ============================================
  メディアクエリ・ホバー mixin（編集不要）
  768px、1200px
============================================ */
:root {
  --color-main: #ED7778;
  --color-sub: #EE86AE;
  --color-third: #CACA1E;
  --color-accent: #d7296e;
  --color-black: #231815;
  --color-bg: #FCE9E9;
  --color-highlight: #fec0c0;
  --color-main-rgb: 237, 119, 120;
  --color-sub-rgb: 238, 134, 174;
  --color-bg-rgb: 252, 233, 233;
  --color-highlight-rgb: 254, 192, 192;
  --width-main: 1200px;
  --width-narrow: 960px;
}

* {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 768px) {
  html {
    font-size: 2.326vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.87;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

img {
  vertical-align: bottom;
}

.js-nav {
  min-height: 88px;
}
@media (max-width: 850px) {
  .js-nav {
    min-height: 145px;
  }
}

.mainArea {
  position: relative;
}
.mainArea::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/bg00.jpg") center bottom/cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .mainArea::before {
    background-image: url("../img/bg00_sp.jpg");
  }
}

.nav {
  background-color: var(--color-main);
}
.nav__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--width-main);
  min-height: 88px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .nav__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nav__inner > *:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.nav .nav__item .nav__item--noLink::before, .nav .nav__item .nav__item--link::before, .nav__item .nav .nav__item--noLink::before, .nav__item .nav .nav__item--link::before, .nav .nav__item:last-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 1px;
  height: calc(100% - 32px);
  translate: 0 -50%;
  background-color: #fff;
}
@media (max-width: 850px) {
  .nav .nav__item .nav__item--noLink::before, .nav .nav__item .nav__item--link::before, .nav__item .nav .nav__item--noLink::before, .nav__item .nav .nav__item--link::before, .nav .nav__item:last-of-type::after {
    height: 100%;
    opacity: 1;
  }
}
.nav__item {
  position: relative;
}
.nav__item:last-of-type::after {
  right: 0;
}
@media (max-width: 768px) {
  .nav__item:last-of-type::after {
    display: none;
  }
}
@media (max-width: 850px) {
  .nav__item:nth-child(-n+4) {
    border-bottom: 1px solid #fff;
  }
}
.nav__item .nav__item--noLink, .nav__item .nav__item--link {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  row-gap: 8px;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
.nav__item .nav__item--noLink::before, .nav__item .nav__item--link::before {
  left: -1px;
}
@media (max-width: 850px) {
  .nav__item .nav__item--noLink, .nav__item .nav__item--link {
    min-height: 72px;
    padding: 8px 0;
  }
}
.nav__item--link {
  color: #fff;
  transition: background-color 0.3s ease !important;
}
@media (any-hover: hover) {
  .nav__item--link:hover {
    background-color: var(--color-third);
  }
}
.nav__item--link.current {
  background-color: var(--color-third);
}
.nav__item--noLink {
  color: #969696 !important;
  pointer-events: none;
}
.nav__item .en {
  font-size: 1.2rem;
  line-height: 0.7;
  font-weight: 400;
  font-style: normal;
}
.nav__item .ja {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 768px) {
  .nav__item .ja {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .nav .db-pc {
    display: none;
  }
}

.moreBtn {
  width: min(300px, 100%);
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  .moreBtn {
    margin-top: 40px;
  }
}
.moreBtn__inner {
  position: relative;
  display: block;
  padding: 24px 48px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  text-decoration: none;
  border-radius: 100vmax;
  background-color: var(--color-main);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media (any-hover: hover) {
  .moreBtn__inner {
    transition: all 0.3s ease-in;
  }
  .moreBtn__inner:hover {
    background-color: var(--color-third);
  }
}
@media (max-width: 768px) {
  .moreBtn__inner {
    padding: 16px 34px;
    line-height: 1.4;
  }
}
.moreBtn__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  rotate: 45deg;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width: 768px) {
  .moreBtn__inner::after {
    right: 18px;
    width: 10px;
    height: 10px;
  }
}

.bnrArea {
  padding-right: 16px;
  padding-left: 16px;
  background-color: var(--color-main);
}
.bnrArea__inner {
  display: flex;
  max-width: var(--width-main);
  margin-right: auto;
  margin-left: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) {
  .bnrArea__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    row-gap: 24px;
  }
}
.bnrArea__item {
  flex: 1;
}
@media (max-width: 768px) {
  .bnrArea__item {
    width: 100%;
  }
}

.linkBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2/1;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-image: var(--bnr);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1rem;
  overflow: hidden;
}
.linkBtn__label {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .linkBtn__label {
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .linkBtn {
    transition: all 0.3s ease-in;
  }
  .linkBtn:hover::before {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.linkBtn.disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
  cursor: default;
}

.articleArea > * + * {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .articleArea > * + * {
    margin-top: 4rem;
  }
}
.articleArea > .mainContents__title + * {
  margin-top: 4rem;
}
.articleArea > .mainContents__title {
  margin-bottom: 0;
}
.articleArea > .mainContents__title .ja {
  font-size: 3.6rem;
}

.topicsList .article {
  width: 304px;
  height: auto;
}
.topicsList .article__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  background-color: var(--color-main);
}
@media (any-hover: hover) {
  .topicsList .article__inner {
    transition: all 0.3s ease-in;
  }
  .topicsList .article__inner:hover {
    filter: brightness(1.1);
  }
}
.topicsList .article__img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.topicsList .article-posts {
  padding: 1em;
}
.topicsList .article-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topicsList .article__category {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 1em;
  border-radius: 100vmax;
  color: var(--color-main);
  font-size: 1.4rem;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.topicsList .article__day {
  color: #fff;
  font-size: 1.8rem;
}
.topicsList .article__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 18px;
  text-overflow: ellipsis;
  color: #fff;
  line-height: 1.62;
}

.mainContents {
  padding: 0;
}
.mainContents__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 9px var(--color-bg));
}
.mainContents__title .en {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.mainContents__title .ja {
  display: block;
  font-size: 6rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #000;
  background: linear-gradient(0, var(--color-accent) 0%, var(--color-highlight) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mainContents .backnumber .mainContents__title {
  padding: 0 1em;
}
.mainContents .backnumber .mainContents__title .en {
  font-size: 1.5rem;
}
.mainContents .backnumber .mainContents__title .ja {
  font-size: 4.5rem;
}
@media (max-width: 768px) {
  .mainContents .backnumber .mainContents__title .ja {
    font-size: 3.6rem;
  }
}
.mainContents__inner {
  max-width: var(--width-main);
  margin-inline: auto;
}
.mainContents__inner--col {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: flex-start;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .mainContents__inner--col {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
.mainContents__main {
  color: var(--color-black);
  background-color: #fff;
}
.mainContents__textArea {
  padding: 1em 4rem 5rem;
}
@media (max-width: 768px) {
  .mainContents__textArea {
    padding: 18px 16px 25px;
  }
}
.mainContents .heading-ribbon {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  margin: 0 auto 6rem;
  padding: 2.4rem 3.5rem;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  background-color: var(--color-main);
}
@media (max-width: 768px) {
  .mainContents .heading-ribbon {
    width: calc(100% - 100px);
    margin-bottom: 50px;
    padding: 15px 8px;
    font-size: 1.8rem;
  }
}
.mainContents .heading-long {
  position: relative;
  width: calc(100% - 71px);
}
@media (max-width: 768px) {
  .mainContents .heading-long {
    width: calc(100% - 40px);
  }
}
.mainContents .heading-long span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 24px 35px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.3;
  background-color: var(--color-main);
}
@media (max-width: 768px) {
  .mainContents .heading-long span {
    padding: 15px 8px;
    font-size: 1.8rem;
  }
}
.mainContents .heading-long::after {
  content: "";
  position: absolute;
  right: -71px;
  bottom: -28px;
  width: 123px;
  height: 80px;
  background: url(../img/title_bg_after.png) no-repeat 0 0/cover;
}
@media (max-width: 768px) {
  .mainContents .heading-long::after {
    right: -40px;
    bottom: -14px;
    width: 62px;
    height: 40px;
  }
}

.leadBlock__catch {
  padding: 0 1.8rem;
  margin-top: 1.6em;
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 768px) {
  .leadBlock__catch {
    font-size: 2.7rem;
    padding: 0;
  }
}
.leadBlock__catch--sub {
  margin-top: 1.5em;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .leadBlock__catch--sub {
    font-size: 1.6rem;
  }
}
.leadBlock__text {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 768px) {
  .leadBlock__text {
    text-align: left;
  }
}
.leadBlock__img {
  position: relative;
  margin: 20px auto;
}
.leadBlock__img img {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .leadBlock__img img {
    max-width: 80%;
  }
}
.leadBlock__img::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 92%;
  left: 0;
  width: 100%;
  aspect-ratio: 1436/539;
  background: url("../../intro/img/bg.png") no-repeat 0 0/cover;
}
.leadBlock hr {
  position: relative;
  z-index: 1;
  max-width: 70%;
  margin: 24px auto;
  border: 0;
  border-top: 2px dashed var(--color-main);
}

.commentList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .commentList {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.commentList--single {
  grid-template-columns: minmax(0, 72rem);
  justify-content: center;
}

.commentBlock {
  padding: 1.5em 2em;
  line-height: 2;
  text-align: center;
  background: var(--color-bg);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.commentList .commentBlock {
  margin-top: 0;
}
.commentBlock__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed var(--color-main);
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .commentBlock__title {
    font-size: 2rem;
  }
}
.commentBlock__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-top: 2rem;
  font-size: 2.4rem;
}
.commentBlock__name span {
  font-size: 0.8em;
}
.commentBlock__text {
  margin-top: 1.6rem;
  line-height: 2;
}

.topics .mainContents__inner {
  max-width: var(--width-main);
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .topics .mainContents__inner {
    padding: 0 1rem;
  }
}
.topics__title {
  position: relative;
  width: calc(100% - 80px);
  margin: 40px auto 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .topics__title {
    width: calc(100% - 32px);
  }
}
.topics__title .category {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -50%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 19px;
  border: 1px solid var(--color-main);
  border-radius: 100vmax;
  color: var(--color-main);
  font-size: 1.6rem;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 768px) {
  .topics__title .category {
    font-size: 1.4rem;
  }
}
.topics__title .title {
  padding: 1.8em 0;
  color: var(--color-main);
  font-size: 3rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .topics__title .title {
    font-size: 2.4rem;
  }
}
.topics__title .day {
  position: absolute;
  right: 0;
  bottom: -1em;
  padding-left: 0.5em;
  font-size: 2rem;
  font-weight: 500;
  background-color: #fff;
}
.topics .figSingle {
  margin-inline: auto;
  margin-top: 1.5em;
  max-width: 100%;
}
.topics .figSingle__item {
  margin: 0;
}
.topics .figSingle__item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.topics .figSingle__item figcaption {
  margin-top: 0.5em;
  font-size: 1.3rem;
  line-height: 1.6;
}
.topics .figSingle--portrait {
  max-width: 480px;
}
.topics .figGroup {
  display: grid;
  gap: 2.4rem;
  margin-inline: auto;
  margin-top: 1.5em;
  max-width: var(--width-main);
}
.topics .figGroup--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.topics .figGroup--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .topics .figGroup--col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .topics .figGroup {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.topics .figGroup__item {
  margin: 0;
}
.topics .figGroup__item img {
  display: block;
  width: 100%;
  height: auto;
}
.topics .figGroup__item figcaption {
  margin-top: 0.5em;
  font-size: 1.3rem;
  line-height: 1.6;
}
.topics .text {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .topics .text {
    font-size: 1.75rem;
  }
}
.topics .heading1 {
  margin-top: 1em;
  margin-bottom: 1em;
  color: var(--color-sub);
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .topics .heading1 {
    font-size: 2.2rem;
  }
}
.topics .heading2 {
  margin-top: 1.5em;
  padding: 0.75em 1em;
  border-left: 8px solid var(--color-third);
  background-color: var(--color-main);
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: normal;
}
@media (max-width: 768px) {
  .topics .heading2 {
    font-size: 2rem;
  }
}
.topics .ingredients {
  margin-top: 8px;
}
.topics .ingredients li {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 6px;
       column-gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .topics .ingredients li {
    font-size: 1.6rem;
  }
}
.topics .steps {
  margin-top: 8px;
}
.topics .steps li {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}
.topics .steps__step {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.topics .steps__point {
  margin-top: 6px;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .topics .steps__point {
    display: block;
  }
}
.topics .backnumber {
  max-width: var(--width-narrow);
  margin: 10rem auto 0;
  padding: 5rem 0;
  border-top: 1px solid var(--color-main);
}
.topics .backnumber__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .topics .backnumber__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
.topics .backnumber__list {
  background-color: #fff;
}
.topics .backnumber__list a {
  text-decoration: none;
}
@media (any-hover: hover) {
  .topics .backnumber__list a {
    transition: all 0.3s ease-in;
  }
  .topics .backnumber__list a:hover {
    filter: brightness(1.1);
  }
}
.topics .backnumber__list .text {
  padding: 1rem;
}
.topics .backnumber__list .recipeName {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: center;
  padding: 8px 8px 12px;
}
.topics .backnumber__list .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 100vmax;
  color: #fff;
  font-size: 1.6rem;
  background-color: var(--color-main);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.topics .backnumber__list .num span:first-of-type {
  font-size: 0.6em;
  transform: translateY(0.3em);
}
.topics .backnumber__list .category {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 1em;
  border: 1px solid var(--color-main);
  border-radius: 100vmax;
  color: var(--color-main);
  font-size: 1.4rem;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.topics .backnumber__list .category + .title {
  margin-top: 1em;
}
.topics .backnumber__list .title {
  color: #000;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.question {
  margin-top: 2.4rem;
  margin-bottom: 2rem;
}
.question__q {
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  border-bottom: 2px solid var(--color-main);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .question__q {
    padding-left: 0;
  }
}
.question__q::before {
  content: "Q";
  color: var(--color-main);
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .question__q::before {
    font-size: 3rem;
  }
}
.question__a {
  margin-top: 8px;
  line-height: 2;
}

.vodList {
  padding: 8rem 1.6rem;
  background-color: var(--color-bg);
}
@media (max-width: 768px) {
  .vodList {
    padding: 24px 16px;
  }
}
.vodList__inner {
  max-width: var(--width-main);
  margin-inline: auto;
}
.vodList__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.vodList__title:not(:first-of-type) {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--color-main);
}
@media (max-width: 768px) {
  .vodList__title:not(:first-of-type) {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.vodList__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-around;
  gap: 1.6rem 2rem;
}
@media (max-width: 768px) {
  .vodList__list {
    grid-template-columns: 1fr;
  }
}

.img-cover {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media print {
  .img-cover {
    opacity: 0 !important;
    visibility: hidden !important;
    background-image: none !important;
  }
}
.highlight {
  display: inline;
  padding: 0;
  background: linear-gradient(transparent 50%, var(--color-highlight) 50%) !important;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.disabled {
  pointer-events: none;
  filter: grayscale(1) brightness(0.8) !important;
}

.movieWrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.movieWrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.imageWrap {
  width: 100%;
  aspect-ratio: 3/2;
}
.imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hover {
  transition: filter 0.3s ease;
}
@media (any-hover: hover) {
  .hover:hover {
    filter: brightness(1.1);
  }
}

.c-main {
  color: var(--color-main);
}

.c-sub {
  color: var(--color-sub);
}

.c-third {
  color: var(--color-third);
  text-shadow: 0 0 1px #fff;
}

.c-accent {
  color: var(--color-accent);
  text-shadow: 0 0 1px #fff;
}

.fz-l {
  font-size: 1.2em;
}

.fz-sm {
  font-size: 0.875em;
}

.fw-b {
  font-weight: bold;
}

.db-sp {
  display: none;
}

@media (max-width: 768px) {
  .db-pc {
    display: none !important;
  }
  .db-sp {
    display: block !important;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  .mt10 {
    margin-top: 1.5% !important;
  }
  .mt15 {
    margin-top: 2.3% !important;
  }
  .mt20 {
    margin-top: 3.1% !important;
  }
  .mt25 {
    margin-top: 3.9% !important;
  }
  .mt30 {
    margin-top: 4.6% !important;
  }
  .mt35 {
    margin-top: 5.4% !important;
  }
  .mt40 {
    margin-top: 6.2% !important;
  }
  .mt45 {
    margin-top: 7% !important;
  }
  .mt50 {
    margin-top: 7.8% !important;
  }
  .mt60 {
    margin-top: 9.3% !important;
  }
  .mt64 {
    margin-top: 10% !important;
  }
  .mt70 {
    margin-top: 10.9% !important;
  }
  .mt80 {
    margin-top: 12.5% !important;
  }
  .mb10 {
    margin-bottom: 1.5% !important;
  }
  .mb15 {
    margin-bottom: 2.3% !important;
  }
  .mb20 {
    margin-bottom: 3.1% !important;
  }
  .mb25 {
    margin-bottom: 3.9% !important;
  }
  .mb30 {
    margin-bottom: 4.6% !important;
  }
  .mb35 {
    margin-bottom: 5.4% !important;
  }
  .mb40 {
    margin-bottom: 6.2% !important;
  }
  .mb45 {
    margin-bottom: 7% !important;
  }
  .mb50 {
    margin-bottom: 7.8% !important;
  }
  .mb60 {
    margin-bottom: 9.3% !important;
  }
  .mb64 {
    margin-bottom: 10% !important;
  }
  .mb70 {
    margin-bottom: 10.9% !important;
  }
  .mb80 {
    margin-bottom: 12.5% !important;
  }
}/*# sourceMappingURL=common.css.map */