@charset "UTF-8";
/* CSS Document */
/** {
	outline: 1px solid red !important;
}*/
:root {
  --gutter-x: 40px; /*PC*/
  --content-max-width: 800px; /*下層ページ共通コンテンツ幅*/
}
@media (max-width: 768px) {
  :root {
    --gutter-x: 24px; /*タブレット*/
  }
}
@media (max-width: 450px) {
  :root {
    --gutter-x: 16px; /*スマホ*/
  }
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #4A5568; /* RGB */
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.56rem;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #F7F9FC;
}
p {
  line-height: 1.8;
}
.data-table p {
  line-height: inherit;
}
.page-title__en {
  position: relative;
  font-family: 'Baloo 2', 'Notable', sans-serif;
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 600;
  display: inline-block;
  color: #DC6A9A;
}
.page-title__en-letter {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}
/*見出し(page-title__en)の文字アニメの後にふわっとフェードインするコンテンツ用の共通クラス*/
.js-fade-in {
  opacity: 0;
  will-change: transform, opacity;
}
.page-title__en-letter:nth-child(4n+1) { color: #DC6A9A; }
.page-title__en-letter:nth-child(4n+2) { color: #BBA1CB; }
.page-title__en-letter:nth-child(4n+3) { color: #718CC7; }
.page-title__en-letter:nth-child(4n) { color: #004EA2; }
.page-title__ja {
  font-size: 2rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 450px) {
  .page-title__en {
    font-size: 4rem;
  }
  .page-title__ja {
    font-size: 1.8rem;
  }
}
/*番組審議会ページ:狭幅での文字詰まり対策*/
@media (max-width: 400px) {
  .section_PC .page-title__en {
    letter-spacing: .0001em;
  }
}
/*名義の申請(endorsement)ページ:タイトルが長いため専用サイズ*/
@media (max-width: 600px) {
  .section_endorsement .page-title__en {
    font-size: 4rem;
  }
}
/*下層ページ共通のセクションラッパー・タイトル(ニュース一覧の指定を正として統一)*/
.section-inner {
  color: #4A5568;
  max-width: var(--content-max-width);
  width: calc(100% - (var(--gutter-x) * 2));
  margin: 128px auto 80px;
}
@media (max-width: 768px) {
  .section-inner {
    /*固定ヘッダー(モバイル時72px)にh1が隠れないよう、ヘッダー高さより余裕を持たせる*/
    margin: 104px auto 64px;
  }
}
.section-inner__title {
  text-align: center;
  margin: 0 auto 48px;
}
@media (max-width: 768px) {
  .section-inner__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 450px) {
  .section-inner__title {
    margin-bottom: 24px;
  }
}
/*コンテンツ後のアクション要素(ページネーション・ダウンロードボタン・お問い合わせボタンなど)の上マージン共通*/
.action-spacing-top {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .action-spacing-top {
    margin-top: 40px;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}
/*上のli{list-style:none}はナビ・フッターなどレイアウト用リストのためのリセットだが、
  the_content()で出力される本文(ブロックエディタの「リスト」ブロックなど)の<li>も
  巻き込んで箇条書きの・が消えてしまうため、本文エリアだけ明示的に戻す*/
.section_news_page__description ul,
.content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.section_news_page__description ol,
.content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.section_news_page__description li,
.content li {
  list-style: inherit;
}
/*ヘッダー*/
.header {
  position: fixed;
  top: 0;
  z-index: 9000;
  width: 100%;
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(to right, #DC6A9A, #BBA1CB, #718CC7, #004EA2);
  /*.header__nav-mobile(z-index:9000)がz-index未指定のこの疑似要素より上に描画され、
    960px以下でラインが隠れてしまうため、ここでも明示的に上回らせる*/
  z-index: 9001;
}
/*ハンバーガーメニュー展開時、フルスクリーンの.menuは.header内にありながらposition:fixedで最前面に重なるため、
  ヘッダー下のグラデーションラインだけが浮いて見えてしまう。展開中は非表示にする*/
.header:has(.menu--active)::after {
  display: none;
}
.header__content-wrapper {
  width: 100%;
  height: 80px;
  background-color: #F7F9FC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 0 0 var(--gutter-x);
  margin: auto;
  transition: height 0.3s ease;
}
@media (min-width: 961px) {
  .header--shrink .header__content-wrapper {
    height: 64px;
  }
  .header--shrink .header__logo img {
    height: 36px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  height: 36px;
  width: auto;
  transition: height 0.3s ease;
}
.header__nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.header__nav li {
  list-style: none;
}
.header__nav-item {
  height: 100%;
}
a.header__nav-link {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  color: #4A5568;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
}
a.header__nav-link::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #DC6A9A;
  opacity: 0;
  transition: opacity .25s ease;
}
.header__nav-item:nth-child(1) .header__nav-link::before {
  background: #DC6A9A;
}
.header__nav-item:nth-child(2) .header__nav-link::before {
  background: #BBA1CB;
}
.header__nav-item:nth-child(3) .header__nav-link::before {
  background: #718CC7;
}
.header__nav-item:nth-child(4) .header__nav-link::before {
  background: #004EA2;
}
.header__nav-link:hover::before {
  opacity: 1;
}
.header__nav-link-flip {
  display: grid;
  overflow: hidden;
}
.header__nav-link-face {
  grid-row: 1;
  grid-column: 1;
  display: block;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), color .25s;
}
.header__nav-link-face--front {
  transform: translateY(0);
  transition-delay: .08s;
}
.header__nav-link-face--back {
  transform: translateY(100%);
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  transition-delay: 0s;
}
.header__nav-link:hover .header__nav-link-face--front {
  transform: translateY(-100%);
  color: #fff;
  transition-delay: 0s;
}
.header__nav-link:hover .header__nav-link-face--back {
  transform: translateY(0);
  transition-delay: .08s;
}
.header__nav-mobile {
  display: none;
}
@media (max-width: 960px) {
  .header__content-wrapper {
    display: none;
    position: relative;
  }
  .header__nav-mobile {
    display: flex;
    width: 100%;
    height: 72px;
    background-color: #F7F9FC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 9000;
    margin: auto;
    align-items: center;
    padding: 0 var(--gutter-x);
  }
  .header__nav-mobile-logo {
    display: block;
  }
  .header__nav-mobile-logo img {
    display: block;
    height: 32px;
    width: auto;
  }
  .burger {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    cursor: pointer;
  }
  .burger__patty {
    width: 28px;
    height: 2px;
    margin: 0 0 4px 0;
    background: #DC6A9A;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .burger__patty:last-child {
    margin-bottom: 0;
  }
  .burger__icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .burger__icon-close::before,
  .burger__icon-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background: #fff;
  }
  .burger__icon-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger__icon-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .burger--close .burger__patty {
    opacity: 0;
    transform: scale(0.5);
  }
  .burger--close .burger__icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
  }
  .menu--active {
    visibility: visible;
  }
  .menu__brand, .menu__list {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    height: 100vh;
    overflow: hidden;
  }
  .menu__list {
    margin: 0;
    padding: 0;
    background: rgba(247, 249, 252);
    list-style-type: none;
    transform: translate3d(0, -100%, 0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: flex-start;
  }
  .menu__list--active {
    transform: translate3d(0, 0, 0);
  }
  .menu__brand {
    background: #DC6A9A;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(0, 100%, 0);
  }
  .menu__brand--active {
    transform: translate3d(0, 0, 0);
  }
  .menu__list > ul {
    width: 100%;
    margin-top: 24px;
  }
  .menu__item {
    position: relative;
    width: 100%;
    transform: translate3d(500px, 0, 0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu__item--active {
    transform: translate3d(0, 0, 0);
  }
  .menu__link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 24px var(--gutter-x);
    font-size: clamp(16px, 0.8929vw + 13.1429px, 20px);
    font-weight: 400;
    text-align: center;
    color: #4A5568;
    text-decoration: none;
  }
  .menu .menu__item--active:nth-child(1) {
    transition-delay: 0.1s;
  }
  .menu .menu__item--active:nth-child(2) {
    transition-delay: 0.2s;
  }
  .menu .menu__item--active:nth-child(3) {
    transition-delay: 0.3s;
  }
  .menu .menu__item--active:nth-child(4) {
    transition-delay: 0.4s;
  }
  .menu .menu__item--active:nth-child(5) {
    transition-delay: 0.5s;
  }
  .menu .menu__item--active:nth-child(6) {
    transition-delay: 0.6s;
  }
   .menu .menu__item--active:nth-child(7) {
    transition-delay: 0.7s;
  }
  .menu__brand .menu__item {
    transform: none;
    transition: none;
  }
  .menu__sns-list {
    display: flex;
    margin-top: 24px;
  }
  .menu__sns-list li {
    margin: 0 10px;
  }
  .menu__sns-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
  }
  .menu__sns-list svg {
    display: block;
    width: 22px;
    height: 22px;
  }
  .menu__list {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
    overflow: hidden;
  }
  .menu__list, div.menu__brand {
    width: 100%;
  }
  .menu__list--active, div.menu__brand--active {
    transform: translate3d(0, 0, 0);
  }
  .menu__list li {
    color: #4A5568;
    font-weight: 600;
  }
  .menu__list li a {
    color: inherit;
  }
  .menu__brand {
    height: 25vh;
    transform: translate3d(100%, 0, 0);
  }
  .menu__brand-logo {
    width: 90px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 450px) {
  .header__nav-mobile {
    height: 64px;
  }
  .header__nav-mobile-logo img {
    height: 32px;
  }
}
/*パンくずリスト(下層ページのみ、フッター直上)*/
.breadcrumbs-wrapper {
  width: 100%;
  background-color: #E9EEF5;
}
.aioseo-breadcrumbs {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px var(--gutter-x);
  text-align: left;
  font-size: 1.3rem;
  color: #4A5568;
}
.aioseo-breadcrumb a {
  color: #4A5568;
}
.aioseo-breadcrumb-separator {
  margin: 0 8px;
  color: #DC6A9A;
}
@media (max-width: 768px) {
  .aioseo-breadcrumbs {
    padding: 4px var(--gutter-x);
  }
}
@media (max-width: 450px) {
  
}
/*フッター*/
.footer {
  background-color: #F7F9FC;
  color: #4A5568;
  padding: 48px 0 0;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 501;
}
.footer__content-wrapper {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 160px;
  padding: 0 var(--gutter-x) 48px;
}
@media (max-width: 1130px) {
  .footer__content-wrapper {
    gap: 120px;
  }
}
.footer__company {
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  height: 160px;
  width: auto;
}
@media (max-width: 1130px) {
  .footer__logo img {
    height: 120px;
  }
}
.footer__nav-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 32px;
}
.footer__sns {
  display: flex;
  gap: 16px;
}
.footer__sns svg {
  display: block;
  width: 30px;
  height: 30px;
}
.footer__company-text {
  text-align: left;
}
.footer__nav ul li {
  list-style: none;
  color: #4A5568;
}
.footer__nav ul li a {
  text-decoration: none;
  color: inherit;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.footer__copyright {
  display: block;
  padding: 4px 0;
  background: #DC6A9A;
  color: white;
}
@media (max-width: 450px) {
  .footer__copyright {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0 0;
  }
  .footer__content-wrapper {
    display: block;
  }
  .footer__logo {
    display: block;
    margin: auto;
    position: relative;
  }
  .footer__logo img {
    height: 160px;
    width: auto;
    margin: 0 auto;
  }
  .footer__sns {
    justify-content: center;
  }
  .footer__company {
    margin-bottom: 48px;
  }
  .footer__company-text {
    margin: 0 auto;
    display: inline-block;
  }
  .footer__nav {
    display: flex;
    width: auto;
    margin: auto;
    gap: 32px;
  }
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    text-align: left;
  }
}
@media (max-width: 450px) {
  .footer__content-wrapper {
    padding-bottom: 32px;
  }
  .footer__logo img {
    height: 120px;
  }
  .footer__nav-list {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__company-text {
    font-size: 14px;
  }
}
/*ニュース一覧共通(フロント・下層とも使用)：カテゴリー色/区切り線/ホバー時のタイトル色*/
.section_news__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, #DC6A9A, #BBA1CB, #718CC7, #004EA2);
}
.section_news__title-text {
  transition: color .2s;
}
.section_news__link {
  display: block;
  flex: 1;
  min-width: 0;
  padding: 24px 40px 24px 0;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .section_news__link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.section_news__link:hover .section_news__title-text {
  color: var(--news-hover-color, inherit);
}
/*タイトルだけ投稿: リンクではないのでカーソル・ホバー色変化なし*/
.section_news__link--static {
  cursor: default;
}
.section_news__link--static:hover .section_news__title-text {
  color: inherit;
}
/*カテゴリーピル(一覧・フロント・詳細ページ共通)*/
a.category-pill {
  display: inline-block;
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--category-color, #4A5568);
  padding: 2px 10px;
  border-radius: 999px;
  text-decoration: none;
}
/*ピンクボタン(ダウンロード・一覧を見る・一覧に戻る 共通/アイコンはmarkup側で自由に指定)*/
a.pink-button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #DC6A9A;
  background: #DC6A9A;
  color: #fff;
  border-radius: 999px;
  padding: 8px 40px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
a.pink-button:hover {
  background: #fff;
  border-color: #DC6A9A;
  color: #DC6A9A;
}
.section_news__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--news-hover-color, inherit);
  font-size: 1.4rem;
}
/*汎用テーブル(広告ページの料金表・投稿詳細ページのFAQ表 共通)*/
.data-table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.data-table tr {
  background-color: #E9EEF5;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
.data-table th, .data-table td {
  padding: 1em;
  border-right: 2px solid #fff;
  font-size: 16px;
  vertical-align: middle;
}
.data-table thead tr {
  background-color: #DC6A9A;
  color: #fff;
}
.data-table thead tr th, .data-table thead tr td {
  text-align: center;
}
.data-table tbody th {
  background: #BBA1CB;
  color: #fff;
}
.data-table__price {
  text-align: right;
  color: #DC6A9A;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .data-table th, .data-table td {
    padding: .6em .5em;
  }
}
@media screen and (max-width: 450px) {
  .data-table th, .data-table td {
    font-size: 14px;
  }
  .data-table--3col thead th:first-child,
  .data-table--3col thead td:first-child {
    width: 25%;
  }
}