html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  overscroll-behavior-y: none;
}
*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  padding: 0;
  margin: 0;
}
[hidden] {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover {
  outline-width: 0;
}
input {
  border-radius: 0;
}
button,
input {
  font: inherit;
}
button {
  overflow: visible;
}
button {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button,
input {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}
a:focus,
button:focus,
input:focus {
  outline-width: 0;
}
img {
  border-style: none;
}
ol,
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a,
body,
div,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
img,
li,
nav,
ol,
p,
section,
small,
span,
ul {
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  color: inherit;
}
img {
  width: 100%;
}
svg {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
button {
  color: inherit;
}
*:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-style: normal;
  background: #fff;
  background-color: #fff;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 12px;
    font-size: 0.8vw;
  }
}
/* スマホ用ヘッダーメニュー */
.sp-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sp-header.is-scrolled {
  transform: translateY(0);
}
.sp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 5%;
  background-color: #fff;
  position: relative;
  z-index: 1001;
}
.sp-header__logo {
  display: block;
  line-height: 1;
}
.sp-header__logo img {
  display: block;
  height: 28px;
  width: auto;
}
.sp-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.sp-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2e3192;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sp-header.is-open .sp-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-header.is-open .sp-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.sp-header.is-open .sp-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  padding: 4rem 1.5rem 2rem;
  background-color: #fff;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.sp-header.is-open .sp-nav {
  right: 0;
}
.sp-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav__list li {
  border-bottom: 1px solid #eee;
}
.sp-nav__item--has-sub {
  border-bottom: none;
}
.sp-nav__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #eee;
}
.sp-nav__sublist li {
  border-bottom: none;
  border-top: 1px solid #eee;
}
.sp-nav__sublist .sp-nav__link {
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.95em;
}
.sp-nav__link {
  display: block;
  padding: 1rem 0;
  color: #2e3192;
  text-decoration: none;
  font-weight: 600;
  font-feature-settings: "palt";
}
.sp-nav__link:hover {
  opacity: 0.8;
}
.sp-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sp-header.is-open .sp-header__overlay {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .sp-header {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp-header {
    display: none !important;
  }
}

.scroll-content {
  overflow: hidden;
  background: url(../img/fetp_long.svg) no-repeat left 0 top 10vh / 20%;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .scroll-content {
    width: 30.6%;
    margin: auto;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
  }
}
@media screen and (min-width: 769px) {
  .pc-content {
    width: 34.7%;
    height: 100%;
    position: fixed;
    top: 0;
  }
}
.pc-content--left {
  left: 0;
  background: none;
}
.pc-content--right {
  right: 0;
  background: none;
}
/* ニュースセクション（最新5件・サムネ＋約200文字・個別リンク・一覧ボタン） */
.section--news {
  margin-top: 5%;
  padding: 5% 5% 0;
  position: relative;
  background: none;
}
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 表示件数1件：2件目以降を非表示 */
.news__item:not(:first-child) {
  display: none;
}
/* ニュース一覧ページ：5件表示＋ページネーション（JSで制御） */
.news__list--archive .news__item {
  display: block;
}
/* JS読み込み前は最初の5件のみ表示（FOUC防止） */
.news__list--archive .news__item:nth-child(n+6) {
  display: none;
}
.news__list--archive .news__item:first-child {
  padding-top: 0;
  border-bottom: 1px solid #ddd;
}
.news__list--archive .news__item:last-child {
  border-bottom: none;
}
.news__loading {
  padding: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9375rem;
}
.news__item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.news__item:first-child {
  padding-top: 0;
}
.news__item__link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
}
.news__item__link:hover .news__item__title {
  text-decoration: underline;
}
/* サムネ：中央配置・横幅100%（divに合わせる）・縦は指定なしで全体表示 */
.news__item__thumb {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
}
.news__item__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.news__item__body {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
}
.news__item__date {
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  font-size: 0.55rem;
  color: #fff;
  background-color: #2e3192;
  border-radius: 9999px;
  padding: 0.35em 0.75em;
  margin-bottom: 0.25rem;
}
.news__item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.news__item__excerpt {
  font-size: 0.8125rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news__item__more {
  display: inline-block;
  align-self: flex-end;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #2e3192;
  font-weight: 600;
}
.news__item--no-thumb .news__item__link {
  display: block;
}
.news__item--no-thumb .news__item__body {
  flex: none;
}
.news__archive {
  text-align: center;
  margin: 1rem 0 0;
  padding-bottom: 1rem;
}
.news__list .news__item:last-child,
.news__list .news__item:first-child {
  border-bottom: none;
}
/* ニュース一覧ページ：項目間の区切り線を表示 */
.news__list--archive .news__item:first-child {
  border-bottom: 1px solid #ddd;
}
.news__archive__link {
  display: inline-block;
  padding: 0.6rem 2rem;
  background-color: #2e3192;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-feature-settings: "palt";
}
.news__archive__link:hover {
  opacity: 0.9;
}
.section--news-detail .news__archive:first-of-type {
  margin-bottom: 0.5rem;
}
.section--news-detail .news__archive__link {
  width: 10rem;
  box-sizing: border-box;
  text-align: center;
}

/* ニュース個別ページ：タイトル・日付・画像・本文 */
.section--news-detail {
  padding-bottom: 2rem;
}
.news-detail__notfound {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.9375rem;
}
.news-detail__notfound a {
  color: #2e3192;
  font-weight: 600;
  text-decoration: underline;
}
.news-detail__title {
  font-size: clamp(17px, 1.15vw + 14px, 22px);
  line-height: 1.4;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.news-detail__date {
  font-size: 0.55rem;
  color: #fff;
  background-color: #2e3192;
  border-radius: 9999px;
  padding: 0.35em 0.75em;
  display: inline-block;
  margin: 0 0 1.25rem;
}
.news-detail__image-wrapper {
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 100%;
}
.news-detail__image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.news-detail__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  white-space: normal;
}
.news-detail__body a {
  color: #2563eb !important;
  font-weight: 600;
  text-decoration: underline !important;
}
.news-detail__body a:hover {
  color: #1d4ed8 !important;
  opacity: 0.9;
}
.news-detail__link-wrapper {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.news-detail__link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2e3192;
  text-decoration: none;
}
.news-detail__link:hover {
  text-decoration: underline;
}

/* ニュース一覧：ページネーション（テキスト・数字＋省略） */
.news__pagination {
  margin: 2rem 0 1rem;
  padding: 0 5%;
}
.news__pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #333;
}
.news__pagination-item {
  margin: 0;
}
.news__pagination-link,
.news__pagination-current,
.news__pagination-ellipsis {
  display: inline-block;
  padding: 0 0.2em;
  text-decoration: none;
  color: #2e3192;
}
.news__pagination-link:hover {
  text-decoration: underline;
}
.news__pagination-current {
  color: #000;
  font-weight: 700;
  cursor: default;
}
.news__pagination-ellipsis {
  color: #666;
  cursor: default;
  padding: 0 0.15em;
}
.news__pagination-link--prev,
.news__pagination-link--next {
  margin: 0 0.25em;
}

/* 番組一覧ページ（センター：左寄せ・右寄せ） */
.section--program-list {
  margin-top: 5%;
  padding: 5% 5% 5%;
  font-size: clamp(11px, 1.2vw, 14px);
}
.program-list__item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(1rem, 2.5vw, 2rem);
  border-bottom: 1px solid #ddd;
}
.program-list__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.program-list__left {
  flex: 0 0 auto;
  width: clamp(50px, 8vw, 180px);
  min-width: 0;
  text-align: left;
}
.program-list__left .program-list__heading {
  font-size: 0.875em;
}
.program-list__left .program-list__text {
  font-size: 0.8125em;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.program-list__detail-btn {
  margin: 0.75em 0 0;
}
.program-list__detail-btn-link {
  display: inline-block;
  width: auto;
  padding: 0.5em 1.5em;
  background-color: #2e3192;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 600;
  border-radius: 6px;
  box-sizing: border-box;
}
.program-list__detail-btn-link:hover {
  opacity: 0.9;
}
.program-list__right {
  flex: 1 1 0;
  min-width: 200px;
  text-align: left;
}
.program-list__right .program-list__text {
  overflow-wrap: normal;
  word-break: normal;
}
.program-list__thumb {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  font-size: 0;
  line-height: 0;
  border: 2px solid #000;
  border-radius: 12px;
  overflow: hidden;
}
.program-list__thumb + .program-list__block {
  margin-top: 1.5em;
}
.program-list__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.program-list__block {
  margin-bottom: 1em;
}
.program-list__block:last-child {
  margin-bottom: 0;
}
.program-list__heading {
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 0.35em;
  color: #000;
}
.program-list__heading--border {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.35em;
}
.program-list__heading--border::after {
  content: "";
  flex: 1;
  height: 0;
  border-bottom: 1px solid #000;
}
.program-list__text {
  font-size: 0.9375em;
  line-height: 1.7;
  margin: 0;
}
.program-list__text a {
  color: #2e3192;
  text-decoration: none;
  white-space: nowrap;
}
.program-list__text a:hover {
  text-decoration: underline;
}
.program-list__back {
  text-align: center;
  margin-top: 2em;
  padding-top: 1em;
}
@media screen and (max-width: 900px) {
  .program-list__item {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
  }
  .program-list__left {
    width: 100%;
    max-width: 200px;
  }
  .program-list__right {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section--program-list {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
  }
  .program-list__item {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
  }
  .program-list__left {
    width: 100%;
    max-width: none;
  }
  .program-list__right {
    text-align: left;
    min-width: 0;
  }
  .program-list__thumb {
    max-width: 100%;
  }
  .program-list__detail-btn {
    text-align: center;
  }
}

/* 番組詳細ページ */
.section--program-detail {
  margin-top: 5%;
  padding: 5% 5% 5%;
  position: relative;
}
.program-detail__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.program-detail__logo img {
  width: 60%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.program-detail__thumb {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 0;
  line-height: 0;
  border: 2px solid #000;
  border-radius: 12px;
  overflow: hidden;
}
.program-detail__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.program-detail__info {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem 1rem;
  background-color: #f5f5f5;
  border: 2px solid #000;
  border-radius: 8px;
}
.program-detail__block {
  margin-bottom: 1rem;
}
.program-detail__block:last-child {
  margin-bottom: 0;
}
.program-detail__block .program-detail__heading {
  margin-top: 0;
  margin-bottom: 0.35rem;
}
.program-detail__broadcast-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 0 1em;
}
.program-detail__platforms,
.program-detail__sns {
  list-style: none;
  padding: 0;
  margin: 0 0 0 1em;
}
.program-detail__platforms li,
.program-detail__sns li {
  margin-bottom: 0.5rem;
}
.program-detail__platforms li:last-child,
.program-detail__sns li:last-child {
  margin-bottom: 0;
}
.program-detail__platform-link,
.program-detail__sns-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #0a0a0a;
  font-size: 0.9375rem;
}
.program-detail__platform-link:hover,
.program-detail__sns-link:hover {
  color: #2e3192;
  text-decoration: underline;
}
.program-detail__platform-icon,
.program-detail__sns-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.program-detail__rss {
  font-size: 0.875rem;
  color: #666;
  margin: 0.5rem 0 0 1em;
}
.program-detail__email {
  font-size: 0.9375rem;
  margin: 0 0 0 1em;
}
.program-detail__email a {
  color: #2e3192;
  text-decoration: none;
}
.program-detail__email a:hover {
  text-decoration: underline;
}
.program-detail__mail-btn {
  text-align: center;
  margin: 1rem 0 0;
}
.program-detail__mail-btn-link {
  display: inline-block;
  padding: 0.6rem 2rem;
  background-color: #2e3192;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-feature-settings: "palt";
}
.program-detail__mail-btn-link:hover {
  opacity: 0.9;
}
.program-detail__heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  padding-left: 1em;
  position: relative;
  color: #000;
}
.program-detail__heading::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.9em;
}
.program-detail__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}
.program-detail__info-block {
  margin-bottom: 1.5rem;
}
.program-detail__info-block:last-child {
  margin-bottom: 0;
}
.program-detail__info-block__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.program-detail__info-block__text {
  font-size: 0.8125rem;
  line-height: 1.8;
  margin: 0;
}
.program-detail__info-block__text p {
  margin: 0 0 0.75em;
}
.program-detail__info-block__text p:last-child {
  margin-bottom: 0;
}
.program-detail__info-block__text a {
  color: #2563eb;
  text-decoration: underline;
}
.program-detail__loading {
  color: #666;
  margin: 0;
}
.program-detail__social {
  display: flex;
  align-items: center;
  gap: 3%;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.program-detail__social-link {
  display: block;
  flex: 0 0 22%;
  max-width: 80px;
  line-height: 0;
}
.program-detail__social-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
}
.program-detail__social-link:hover {
  opacity: 0.8;
}
.program-detail__back {
  text-align: center;
  margin-top: 2rem;
}

/* メールフォーム */
.section--mailform {
  margin-top: 5%;
  padding: 5% 5% 5%;
}
.mailform {
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.mailform__note {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  background-color: #f9f9f9;
  border-left: 4px solid #2e3192;
  border-radius: 4px;
}
.mailform__row {
  margin-bottom: 1.25rem;
}
.mailform__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #0a0a0a;
}
.mailform__required {
  color: #c00;
  font-size: 0.8em;
  font-weight: 600;
}
.mailform__error {
  display: block;
  font-size: 0.8125rem;
  color: #c00;
  margin-top: 0.35rem;
}
.mailform__error[hidden] {
  display: none;
}
.mailform__input,
.mailform__select,
.mailform__textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 2px solid #000;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}
.mailform__input:focus,
.mailform__select:focus,
.mailform__textarea:focus {
  outline: none;
  border-color: #2e3192;
}
.mailform__textarea {
  resize: vertical;
  min-height: 120px;
}
.mailform__submit-wrap {
  text-align: center;
  margin: 1.5rem 0 0;
}
.section--mailform .mailform__submit-wrap .mailform__submit,
.section--mailform .program-detail__back .news__archive__link {
  width: 8rem;
  box-sizing: border-box;
  text-align: center;
  padding: 0.4rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}
.mailform__submit {
  display: inline-block;
  padding: 0.6rem 2rem;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.5;
  background-color: #2e3192;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-feature-settings: "palt";
}
.mailform__submit:hover {
  opacity: 0.9;
}
.mailform__submit--outline {
  background-color: transparent;
  color: #2e3192;
  border: 2px solid #2e3192;
  margin-right: 1rem;
}
.mailform__submit--outline:hover {
  opacity: 0.9;
}
.mailform-confirm {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: #f5f5f5;
  border: 2px solid #000;
  border-radius: 8px;
}
.mailform-confirm__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-left: 1em;
  position: relative;
  color: #000;
}
.mailform-confirm__title::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.9em;
}
.mailform-confirm__list {
  margin: 0 0 1.5rem;
  padding: 0;
}
.mailform-confirm__term {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  margin: 0.75rem 0 0.2rem;
  padding: 0;
}
.mailform-confirm__term:first-child {
  margin-top: 0;
}
.mailform-confirm__desc {
  font-size: 0.9375rem;
  margin: 0;
  padding: 0 0 0 0.5em;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
}
.mailform-confirm__desc--body {
  white-space: pre-wrap;
  margin-top: 0.25rem;
}
.mailform-confirm__buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: stretch;
  margin: 1.5rem 0 0;
}
.mailform-confirm__buttons .mailform__submit {
  width: 100%;
  min-width: 0;
  font-size: clamp(0.75rem, 2.2vw, 0.875rem);
  padding: clamp(0.4rem, 1.2vw, 0.5rem) 1rem;
  white-space: normal;
  line-height: 1.4;
  margin-right: 0;
}
.mailform-confirm__buttons .mailform__submit--outline {
  margin-right: 0;
}
.mailform-confirm + .program-detail__back {
  margin-top: 1.5rem;
}
body.mailform-confirm-visible .program-detail__back .news__archive__link {
  background-color: #c00;
  color: #fff;
  font-weight: 600;
}
body.mailform-confirm-visible .program-detail__back .news__archive__link:hover {
  background-color: #a00;
  color: #fff;
  opacity: 0.95;
}
.mailform-complete {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: #f5f5f5;
  border: 2px solid #000;
  border-radius: 8px;
  min-height: 12rem;
  text-align: center !important;
}
.mailform-complete__message {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  padding-bottom: 3rem;
  color: #000;
  text-align: center !important;
  display: block;
}
.mailform-complete .program-detail__back {
  margin-bottom: 0;
  text-align: center;
}
.mailform-complete__buttons {
  text-align: center;
  margin: 0 0 0.75rem;
}
.mailform-complete__program-link {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2e3192;
  color: #2e3192;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
}
.mailform-complete__program-link:hover {
  background-color: #2e3192;
  color: #fff;
}
body.mailform-complete-visible .mailform-complete .mailform-complete__back-link {
  background-color: #2e3192;
  color: #fff;
  font-weight: 600;
}
body.mailform-complete-visible .mailform-complete .mailform-complete__back-link:hover {
  background-color: #1a1c5e;
  color: #fff;
  opacity: 0.95;
}
body.mailform-complete-visible .section--mailform > .program-detail__back--mailform-section,
body.mailform-complete-visible .program-detail__back--mailform-section {
  display: none !important;
}
.mailform-complete--error .mailform-complete__message {
  color: #c00;
}
.mailform-error-back {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2e3192;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-feature-settings: "palt";
  text-decoration: none;
}
.mailform-error-back:hover {
  opacity: 0.9;
}

.section--program {
  margin-top: 5%;
  padding: 5% 5% 5% 5%;
  position: relative;
  background: none;
}
.section__program-heading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 5%;
  margin-right: 0%;
  padding-left: 35%;
  overflow: visible;
}
.section__program-heading-line {
  display: block;
  flex: 1;
  height: 2px;
  background-color: #000;
  min-width: 0;
  margin-right: -0.5em;
  box-shadow: none;
}
.section__program-heading {
  color: #000;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-left: 0;
  margin-bottom: 0;
  background-color: #fff;
  border: 2px solid #000;
  padding: 0.5em 0.75em;
  box-sizing: border-box;
  flex-shrink: 0;
  width: fit-content;
  box-shadow: 4px 4px 0 #000;
}
@media screen and (min-width: 769px) {
  .section__program-heading {
    font-size: 19px;
    font-size: 1.3vw;
  }
  .section--program-list .section__program-heading {
    font-size: 17px;
    font-size: 1.15vw;
  }
  .section--news .section__program-heading {
    font-size: 17px;
    font-size: 1.15vw;
  }
  .section--mailform .section__program-heading,
  .section--program-detail .section__program-heading {
    font-size: 17px;
    font-size: 1.15vw;
  }
}
.section__item-cotaniner {
  margin-top: 3%;
}

.item--program-1 {
  margin-top: 10%;
  margin-bottom: 5%;
  position: relative;
  z-index: 11;
}

/* program-1: 番組ロゴ + メイン画像 + ソーシャルリンク（サイズは % 指定でズームに追従） */
.program-1-block {
  position: relative;
  margin-top: -5%;
}
.program-1-block__logo {
  padding: 0 9.5%;
  margin-bottom: -4%;
  text-align: center;
}
.program-1-block__logo img {
  width: 70%;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.program-1-block__figure {
  font-size: 0;
  line-height: 0;
}
.program-1-block__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.program-1-block__social {
  position: absolute;
  bottom: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 3%;
  width: 55%;
  padding: 0 1%;
  z-index: 2;
}
.program-1-block__social-link {
  display: block;
  flex: 0 0 22%;
  line-height: 0;
}
.program-1-block__social-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
}
.program-block__detail-link {
  margin: 1rem 4% 0;
  text-align: right;
  font-size: 0.8rem;
}
.program-block__detail-link a {
  color: #2e3192;
  font-weight: 600;
}
.program-block__detail-link a:hover {
  text-decoration: underline;
}

/* 番組情報2（位置・サイズは .program-2-block 系で個別調整） */
.item--program-2 {
  margin-top: 10%;
  margin-bottom: 13.5%;
  position: relative;
  z-index: 11;
}
.program-2-block {
  position: relative;
  margin-top: -5%;
}
.program-2-block__logo {
  padding: 0 8%;
  margin-bottom: -4%;
  margin-left: 3%;
  text-align: center;
}
.program-2-block__logo img {
  width: 80%;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.program-2-block__figure {
  font-size: 0;
  line-height: 0;
  overflow: visible;
}
.program-2-block__figure img {
  display: block;
  width: 105%;
  height: auto;
}
.program-2-block__social {
  position: absolute;
  bottom: 4%;
  left: 4%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3%;
  width: 55%;
  padding: 0 1%;
  z-index: 2;
}
.program-2-block__social-link {
  display: block;
  flex: 0 0 22%;
  line-height: 0;
}
.program-2-block__social-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
}

/* 番組情報3（位置・サイズは .program-3-block 系で個別調整） */
.item--program-3 {
  margin-top: 0;
  margin-bottom: 5%;
  position: relative;
  z-index: 11;
}
.program-3-block {
  position: relative;
  margin-top: -5%;
}
.program-3-block__logo {
  padding: 0 9.5%;
  margin-bottom: -15%;
  text-align: center;
}
.program-3-block__logo img {
  width: 85%;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.program-3-block__figure {
  font-size: 0;
  line-height: 0;
}
.program-3-block__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.program-3-block__social {
  position: absolute;
  bottom: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 3%;
  width: 55%;
  padding: 0 1%;
  z-index: 2;
}
.program-3-block__social-link {
  display: block;
  flex: 0 0 22%;
  line-height: 0;
}
.program-3-block__social-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
}

.mv {
  margin-bottom: 4.5%;
  padding: 5% 0 0;
  font-size: 0;
  line-height: 1;
  position: relative;
}
.mv__tag {
  width: 90%;
  margin: 0 auto 3%;
}
.mv__tag a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mv__tag img {
  display: block;
  width: 100%;
  height: auto;
}
.concept {
  padding: 5% 0 0;
  background: none;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
}
.concept__heading {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 700;
  font-size: 1.8em;
  margin-right: 1.5em;
  order: 2;
  border: 2px solid #000000;
  padding: 0.5em 0.5em;
  box-sizing: border-box;
  background-color: #fff;
}
.concept__lead {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.75;
  margin: 2em -4em 0 10em;
  max-height: 80vh;
  order: 1;
  border: 2px solid #000000;
  padding: 1em 3em 1em 1em;
  box-sizing: border-box;
}
/* お問い合わせセクション */
.section--contact {
  padding: 5% 5% 5%;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}
.contact__content {
  margin-top: 10%;
}
.contact__block {
  margin-bottom: 1.5rem;
}
.contact__block--highlight {
  padding: 1.25rem 1.5rem;
  background-color: #fef9e7;
  border: 2px solid #e67e22;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease;
}
.contact__block--highlight:hover {
  transform: translateY(-2px);
}
.contact__block--highlight .contact__subheading {
  text-align: center;
  padding-left: 0;
  font-size: 1em;
  color: #e67e22;
}
.contact__block--highlight .contact__text {
  text-align: left;
  color: #e67e22;
}
.contact__block--highlight .contact__subheading::before {
  display: none;
}
.contact__block:last-child {
  margin-bottom: 0;
}
.contact__subheading {
  font-size: 0.9em;
  font-weight: 700;
  margin: 0 0 0.5rem;
  padding-left: 1em;
  position: relative;
  color: #000;
  font-feature-settings: "palt";
}
.contact__subheading::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.25em;
  font-size: 1em;
  line-height: 1;
}
.contact__text {
  margin: 0;
  font-size: 0.8em;
  line-height: 1.6;
}
.contact__text a {
  color: #2e3192;
  text-decoration: none;
}
.contact__text a:hover {
  text-decoration: underline;
}
.contact__program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact__program-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.8em;
  line-height: 1.5;
  min-width: 0;
}
.contact__program-item:last-child {
  margin-bottom: 0;
}
.contact__program-title {
  flex-shrink: 1;
  min-width: 0;
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact__program-email {
  flex-shrink: 0;
  text-align: right;
}
.contact__program-email a {
  color: #2e3192;
  text-decoration: none;
}
.contact__program-email a:hover {
  text-decoration: underline;
}

.contents-footer {
  border-top: 1px solid #c5cdd4;
  padding-top: 1rem;
}
.contents-footer__copyright {
  margin-top: 2rem;
  padding: 0.75rem 7%;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
}
.contents-footer__content-wrapper {
  display: flex;
  padding: 0 7%;
  justify-content: space-between;
  align-items: center;
}
.contents-footer__links {
  margin-top: 3%;
  margin-left: 1%;
  padding-left: 5px;
}
.contents-footer__links > li:not(:last-child) {
  margin-bottom: 6%;
}
.contents-footer__link {
  display: inline-block;
  position: relative;
  letter-spacing: 0.07em;
  line-height: 1;
  padding-left: 7px;
}
@media screen and (min-width: 769px) {
  .contents-footer__link {
    font-size: 15px;
    font-size: 1vw;
  }
}
.contents-footer__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  translate: 0 -50%;
  width: 5px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #2e3192;
}
.contents-footer__link__arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 8px;
  height: auto;
  translate: 0 -50%;
}
.contents-footer__img {
  width: 38%;
  font-size: 0;
  line-height: 1;
  margin-top: 0.5rem;
}
.contents-footer__img img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pc-left__container {
  position: relative;
}
.pc-left__ttl-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 6%;
}
.pc-left__ttl-illust {
  width: 25em;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.pc-left__menu {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 5%;
}
.pc-left__menu-item {
  width: 31%;
  display: block;
}
.pc-left__menu-item__img {
  font-size: 0;
  line-height: 1;
  margin-bottom: 3%;
  border: 1px solid #000;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  box-sizing: border-box;
  overflow: hidden;
}
.pc-left__menu-item__img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.pc-left__menu-item__ttl {
  text-align: center;
  font-family: "gotham", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .pc-left__menu-item__ttl {
    font-size: 13px;
    font-size: 0.9vw;
  }
}
.pc-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pc-right__container {
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
}
/* PC右：ニュース5件表示 */
.pc-right__news {
  width: 100%;
  padding: 5% 0 0;
  margin-bottom: 8%;
  box-sizing: border-box;
}
.pc-right__news-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #2e3192;
  font-feature-settings: "palt";
}
.pc-right__news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-right__news-item {
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}
.pc-right__news-item:last-child {
  border-bottom: none;
}
.pc-right__news-item:first-child {
  padding-top: 0;
}
.pc-right__news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pc-right__news-link:hover .pc-right__news-title {
  text-decoration: underline;
}
.pc-right__news-date {
  display: block;
  font-size: 0.55rem;
  color: #666;
  margin-bottom: 0.15rem;
}
.pc-right__news-title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}
.pc-right__news-archive {
  text-align: left;
  margin: 1rem 0 0;
  padding-bottom: 0;
}
.pc-right__news-archive__link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2e3192;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.8rem;
  font-feature-settings: "palt";
}
.pc-right__news-archive__link:hover {
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  .pc-right__nav {
    margin-top: 0;
  }
  .pc-right__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
    max-width: 100%;
  }
  .pc-right__nav-list li {
    margin-bottom: 0;
    border-bottom: 1px dashed rgba(46, 49, 146, 0.35) !important;
  }
  .pc-right__nav-link {
    display: block;
    font-size: 0.85rem;
    color: #2e3192 !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.35rem 0;
    white-space: nowrap;
  }
  .pc-right__nav-link:hover {
    text-decoration: underline;
  }
  .pc-right__nav-icon {
    display: inline-block;
    margin-right: 0.4rem;
    color: #2e3192 !important;
    font-size: 0.9em;
    line-height: 1;
  }
  .pc-right__nav-list li:first-child .pc-right__nav-icon {
    font-size: 1.1em;
    margin-left: 0.15rem;
  }
  .pc-right__nav-list li:nth-child(3) .pc-right__nav-icon {
    font-size: 0.85em;
  }
  .pc-right__nav-list li:nth-child(n+4) .pc-right__nav-link {
    padding-left: 1rem;
  }
}

/* ========================================
   スマホ向けスタイル（max-width: 768px）
   ファイル末尾に集約して優先度を確保
   ======================================== */
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .sp-header.is-scrolled ~ .wrapper {
    padding-top: 55px;
  }
  .pc-content {
    display: none;
  }
  .section__program-heading {
    font-size: 19px;
    font-size: 5.1vw;
  }
  .section--program-list .section__program-heading {
    font-size: 17px;
    font-size: 4.5vw;
  }
  .section--news .section__program-heading {
    font-size: 17px;
    font-size: 4.5vw;
  }
  .section--mailform .section__program-heading,
  .section--program-detail .section__program-heading {
    font-size: 17px;
    font-size: 4.5vw;
  }
  .concept__heading {
    font-size: 1.4em;
  }
  .concept__lead {
    max-height: 75vh;
    font-size: 1.2em;
  }
  .contents-footer__link {
    font-size: 13px;
    font-size: 3.4vw;
  }
  .section--contact {
    font-size: clamp(0.9375rem, 4vw, 1rem);
  }
  .pc-left__menu-item__ttl {
    font-size: 13px;
    font-size: 3.5vw;
  }
}
