@charset "utf-8";

:root {
  --white: #fff;
  --black: #000;
  --gray: #333;
  --navy: #0f2f8e;
  --green: #498a27;
  --l-green: #d3e588;
  --orange: #ff7a12;
  --yellow: #9ece52;
  --l-yellow: #fff5bd;
  --red: #e60000;
}

.txt-s {
  font-size: 0.8em;
}
.txt-l {
  font-size: 1.2em;
}
.txt-xl {
  font-size: 1.6em;
}
.txt-b {
  font-weight: 800;
}
.txt-t {
  font-weight: 400;
}
.txt-orange {
  color: var(--orange);
}
.txt-red {
  color: var(--red);
}

/*上書き・打消し
---------------------------------------------------------- */
a {
  color: inherit;
}
img {
  height: auto;
}
address {
  font-family: inherit;
}

#container {
  min-width: 1100px;
  max-width: 1280px;
  margin-inline: auto;
  background-color: var(--l-green);
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.footer_simple {
  margin-top: 60px;
  background-color: transparent;
}
.footer_simple .copyright {
  color: var(--white);
}

@media screen and (min-width: 751px) {
  body {
    width: 100%;
    background-color: var(--yellow);
  }
  main {
    padding-inline: 30px;
  }
}

@media screen and (max-width: 750px) {
  #container {
    min-width: 100%;
    font-size: 1.4rem;
  }
  img {
    width: 100%;
  }
  .footer_simple {
    margin-top: 40px;
  }
}


/*アウトライン
---------------------------------------------------------- */
.o-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 50px;
}

@media screen and (min-width: 751px) {
  .o-box-l {
    padding: 100px 0;
  }
  .o-box-s {
    padding: 70px 0;
  }
  .o-box-ss {
    padding: 40px;
  }
}

@media screen and (max-width: 750px) {
  .o-wrapper {
    width: 96%;
    padding-inline: 3%;
  }
  .o-box-l {
    padding: 50px 0;
  }
  .o-box-s {
    padding: 25px 0;
  }
  .o-box-ss {
    padding: 15px 3%;
  }
}

/*共通
---------------------------------------------------------- */
.c-display-flex {
  display: flex;
}
.c-justify-content-c {
  justify-content: center;
}
.c-align-items-c {
  align-items: center;
}
.c-flex-reverse {
  flex-direction:row-reverse;
}
.c-flex-wrap-w {
  flex-wrap: wrap;
}
.c-flex-1-1-0per {
  flex: 1 1 0%;
}
ul.c-display-flex.x2 {
  margin: -30px 0 0 -100px;
}
ul.c-display-flex.x2 > li {
  width: calc(100% / 2 - 100px);
  margin: 30px 0 0 100px;
}

.c-line-height-xl {
  line-height: 2;
}
.c-line-height-l {
  line-height: 1.8;
}
.c-line-height-m {
  line-height: 1.6;
}
.c-line-height-s {
  line-height: 1.4;
}
.c-line-height-xs {
  line-height: 1.2;
}

.c-headline-lv3 {
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.c-headline-lv3 span {
  display: block;
  margin-inline: auto;
}


.c-color-white {
  color: var(--white) !important;
}
.c-color-black {
  color: var(--black) !important;
}
.c-color-green {
  color: var(--green) !important;
}

.c-bgcolor-white {
  background-color: var(--white);
}
.c-bgcolor-yellow {
  background-color: var(--l-yellow);
}

.c-box-rc {
  border-radius: 3em;
}
.c-box-rc-s {
  border-radius: 2em;
}

.c-youtube-embed,
.c-uliza-embed {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}
.c-youtube-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 560px;
  height: 3em;
  margin-inline: auto;
  background-color: var(--orange);
  color: var(--white);
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  border-radius: 2em;
  transition: all 0.4s cubic-bezier(0.19, 0.64, 0.4, 0.89);
}
a.c-button {  
  text-decoration: none;
}

/*背景ノイズ*/
[class^="c-noise-"] {
  position: relative;
}
[class^="c-noise-"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow) url("../img/bg-noise.png") repeat;
  pointer-events: none;
}
.c-noise-blend::before {
  mix-blend-mode: color-dodge;
  opacity: 0.3;
}
.c-noise-op2per::before {
  opacity: 0.02;
}
.c-noise-op4per::before {
  opacity: 0.04;
}

@media screen and (min-width: 751px) {
  .c-display-flex-pc {
    display: flex;
  }
  .c-justify-content-c-pc {
    justify-content: center;
  }
  .c-align-items-c-pc {
    align-items: center;
  }
  .c-flex-wrap-w-pc {
    flex-wrap: wrap;
  }
  .c-flex-1-1-0per-pc {
    flex: 1 1 0%;
  }
  ul.c-display-flex-pc.x2 {
    margin: -30px 0 0 -100px;
  }
  ul.c-display-flex-pc.x2 > li {
    width: calc(100% / 2 - 100px);
    margin: 30px 0 0 100px;
  }
  ul.c-display-flex-pc.x2-s {
    margin: 0 0 0 -40px;
  }
  ul.c-display-flex-pc.x2-s > li {
    width: calc(100% / 2 - 40px);
    margin: 0 0 0 40px;
  }

  .c-line-height-xl-pc {
    line-height: 2;
  }
  .c-line-height-l-pc {
    line-height: 1.8;
  }
  .c-line-height-m-pc {
    line-height: 1.6;
  }
  .c-line-height-s-pc {
    line-height: 1.4;
  }
  .c-line-height-xs-pc {
    line-height: 1.2;
  }

  .c-headline-lv2 {
    margin-bottom: 40px;
    text-align: center;
  }
  .c-headline-lv2 img {
    width: auto;
    max-width: initial;
    height: 50px;
  }

  .c-button:hover {
    opacity: 0.7;
  }
  .c-link-opacity {
    transition: all 0.4s cubic-bezier(0.19, 0.64, 0.4, 0.89);
  }
  .c-link-opacity:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .c-display-flex-sp {
    display: flex;
  }
  .c-justify-content-c-sp {
    justify-content: center;
  }
  .c-align-items-c-sp {
    align-items: center;
  }
  .c-flex-wrap-w-sp {
    flex-wrap: wrap;
  }
  .c-flex-1-1-0per-sp {
    flex: 1 1 0%;
  }
  ul.c-display-flex.x2,
  ul.c-display-flex-sp.x2 {
    margin: -10px 0 0 -10px;
  }
  ul.c-display-flex.x2 li,
  ul.c-display-flex-sp.x2 > li {
    width: calc(50% - 10px);
    margin: 10px 0 0 10px;
  }
  ul.c-display-flex-sp.x2 li:not(:last-child) {
    margin-bottom: 20px;
  }
  .c-flex-1-1-0per-sp {
    flex: 1 1 0%;
  }

  .c-headline-lv2 {
    width: 90%;
    margin: 0 auto 20px;
  }
  .c-headline-lv3 {
    font-size: 1.6rem;
  }
  .c-headline-feature {
    width: 60%;
    margin-inline: auto;
  }
  .c-box-rc {
    border-radius: 2em;
  }
  .c-box-rc-s {
    border-radius: 1em;
  }

  .c-button {
    font-size: 1.6rem;
  }
  .c-button__inner {
    padding: 15px 20px;
  }

  .c-line-height-xl-sp {
    line-height: 2;
  }
  .c-line-height-l-sp {
    line-height: 1.8;
  }
  .c-line-height-m-sp {
    line-height: 1.6;
  }
  .c-line-height-s-sp {
    line-height: 1.4;
  }
  .c-line-height-xs-sp {
    line-height: 1.2;
  }

}

/*
---------------------------------------------------------- */


/*番組概要
---------------------------------------------------------- */
@media screen and (min-width: 751px) {
  .specific-block p {
    text-align: center;
  }
}

/*イベント
---------------------------------------------------------- */
.event-outline dt {
  display: flex;
  align-items: center;
  width: 6em;
  height: 2em;
  background-color: var(--green);
  border-radius: 0 1em 1em 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.1em;
  color: var(--white);
}
.event-outline dd {
  font-size: 1.8rem;
}
.event-block {
  & span.c-button {
    background-color: #769d62;
    & span {
      margin-inline-end: 0.5em;
      padding: 0.5em;
      background-color: var(--white);
      border-radius: 1.5em;
      color: var(--orange);
      font-weight: 800;
    }
  }
}
@media screen and (min-width: 751px) {
  .event-block .c-box-rc-s {
    padding: 2em;
    text-align: center;
  }
  .event-cast {
    width: 44.6%;
  }
  .event-outline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .event-outline dt {
    justify-content: center;
    width: 124px;
    margin-bottom: 2em;
  }
  .event-outline dd {
    width: calc(100% - 146px);
    margin-bottom: 2em;
    padding-top: 0.2em;
  }
  .event-block a.c-button {
    font-size: 3rem;
  }
  .event-block span.c-button {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 750px) {
  .event-block .c-box-rc-s {
    padding: 1em;
  }
  .event-cast {
    width: 100%;
  }
  .event-outline dt,
  .event-outline dd {
    font-size: 1.5rem;
  }
  .event-outline dt {
    width: 80vw;
    margin-bottom: 0.3em;
    padding-left: 0.3em;
  }
  .event-outline dd {
    margin-bottom: 1em;
  }
  .event-block a.c-button {
    font-size: 2.2rem;
  }
  .event-block span.c-button {
    padding-inline: 0.5em;
    text-align: left;
    font-size: 2rem;
    line-height: 1.2;
  }
  .sp_w80per {
    width: 80%;
    margin-inline: auto;
  }
}

/*お問い合わせ
---------------------------------------------------------- */
.inquiry-block {
  overflow: hidden;
  & h2 {
    margin-inline: -50px;
    padding: 0.6em;
    background-color: var(--green);
    color: var(--white);
    font-weight: 800;
    font-size: 1.4em;
    text-align: center;
  }
  & address {
    width: fit-content;
    margin-inline: auto;
    padding: 1.5em 1em;
    & span {
      color: var(--green);
    }
  }
  @media screen and (max-width: 750px) {
    & h2 {
      margin-inline: -3vw;
    }
  }
}

/*COMING SOON
---------------------------------------------------------- */
.comingsoon {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
.comingsoon li {
  padding: 50px;
  background-color: var(--white);
  border-radius: 3em;
}
@media screen and (max-width: 750px) {
  .comingsoon {
    width: 96%;
  }
  .comingsoon li {
    padding: 25px 3%;
    border-radius: 2em;
  }
  .comingsoon img {
    width:60%;
  }
}

/*画像横並び
---------------------------------------------------------- */

.detail-double-img {
  display: flex;
  justify-content: space-between; 
  gap: 20px;                      
  width: 100%;
  margin-top: 42px;               
}

.detail-double-img .double-img-item {
  width: 49%; 
}

.detail-double-img .double-img-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media screen and (max-width: 750px) {
  .detail-double-img {
      flex-direction: column; 
      gap: 15px;              
      margin-top: 15px;      
  }

  .detail-double-img .double-img-item {
      width: 100%;           
  }
  
}

/*リード文内スケジュール欄
---------------------------------------------------------- */

.c-box-schedule {
  background-color: #fff9f5;
  border: 2px solid #ffd8c2;
  border-radius: 8px;
  padding: 29px 37px;
  line-height: 1.8;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left !important;
}

@media screen and (max-width: 750px) {
  .c-box-schedule {
    padding: 21px 14px;
    font-size: 1.4rem;
  }
}