@charset "utf-8";

:root {
  --white: #fff;
  --black: #333;
  --h-txt-color: #333;/*見出しの文字色（原則#000）*/
  --h-accent-color: #66aacf;/*見出し下線や■などアクセントの色*/
  --sub-color: #555; /*サブカラー（原則グレー系）*/
  --bg-color: #fef0f5;/*背景色*/
}

/* 背景固定 */
.bgfix{
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/main_bg.jpg) no-repeat center top;
  background-size: cover;
}

/* Gナビ */
.head_contents{
  position: relative;
  z-index: 10;
}

/*上書き・打消し
---------------------------------------------------------- */
#container {
  min-width: inherit;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

#container a {
  transition: all 0.3s cubic-bezier(0.19, 0.64, 0.4, 0.89);
}

.page_column_contents {
  padding: 0 0 80px;
}
.page_main_contents {
  float: none;
}
.page_side_contents {
  float: none;
}

a {
  color: inherit;
}
img {
  height: auto;
}
address {
  font-family: inherit;
}

@media screen and (min-width: 751px) {
  .page_column_contents {
    display: flex;
    justify-content: center;
  }
  .page_main_contents {
    width: 760px;
    margin-right: 40px;
  }
  .page_side_contents {
    width: 300px;
  }  
}

@media screen and (max-width: 750px) {
  #container {
  font-size: 1.4rem;
  }
  .page_column_contents {
    padding: 0 0 40px;
  }
  img {
    width: 100%;
  }
}


/*アウトライン
---------------------------------------------------------- */
.o-wrapper {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
}
.o-wrapper-inner {
  padding: 40px;
}



@media screen and (max-width: 750px) {
  .o-wrapper {
    padding-right: 2%;
    padding-left: 2%;
  }
  .o-wrapper-inner {
    padding: 3vw 3%;
  }
}

/*共通
---------------------------------------------------------- */
.c-color-white {
  color: var(--white) !important;
}
.c-color-black {
  color: var(--black) !important;
}
.c-color-main {
  color: var(--h-txt-color) !important;
}
.c-color-accent {
  color: var(--h-accent-color) !important;
}
.c-bg-white {
  background-color: #fff;
  box-shadow:0px 0px 6px 3px rgb(12 22 41 / 38%);
}

.c-headline-lv2 {
  margin: 0 0 40px;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  text-shadow:0px 0px 10px rgb(40 66 99);

}
.c-headline-lv2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 10px auto 0;
  background-color:#fff;
}
.c-headline-lv3 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--h-txt-color);
}
.c-headline-lv3.t_left {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}
.c-headline-lv3.t_left::before {
  content: "■";
  color: var(--h-accent-color);
}

.c-inlineblock {
  display: inline-block;
  margin-inline: auto;
}

[class^="c-embed-"] {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.c-embed-youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}


@media screen and (min-width: 751px) {
  .c-link-opacity:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 750px) {
  .c-headline-lv2 {
    margin: 0 0 25px;
    font-size: 2.4rem;
  }
  .c-headline-lv3 {
    margin: 0 0 8px;
    font-size: 2rem;
  }
  
}

/*メインビジュアル
---------------------------------------------------------- */
.hero-container {
  padding: 10px;
  margin-top: 20px;
  @media screen and (max-width: 750px) {
    margin-top: 30px;
    }
}

.hero-txt {
  text-align: center;
}
.hero-txt h1 {
  margin-top: 1em;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--h-txt-color);
}
.hero-txt h1 span {
  display: block;
  margin-inline: auto;
  font-size: clamp(1.8rem, -0.116rem + 4.09vw, 2.5rem);
  color: var(--sub-color);
}
.hero-broadcast {
  margin-top: 1em;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--h-txt-color);
}
@media screen and (max-width: 750px) {
  .hero-container {
    padding: 20px 2% 10px;
  }
  .hero-txt h1 {
    font-size: 2.4rem;
  }
  .hero-broadcast {
    font-size: 1.6rem;
  }
}

/*番組概要
---------------------------------------------------------- */
.overview-txt {
  line-height: 1.8;
}

.overview-txt p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

.txt-catch {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: 700
}

.overview-img-x2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.overview-img-item {
  width: calc(100% / 2);
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .overview-img-x2 {
    margin-left: -2vw;
  }
  .overview-img-item {
    padding-left: 2vw;
  }
.txt-catch {
font-size: 1.1em;
}
  
}

/* 概要・各章タイトル 
---------------------------------------------------------- */

.about-catch{
  font-family: 'Shippori Antique';
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.txt-chapter{
  font-family: 'Shippori Antique';
  margin-bottom: 50px;
  font-size: clamp(1.6rem, 1.371rem + 0.48vw, 1.8rem);
  padding: 5px 0 5px 20px;
  border-left:  var(--h-accent-color) 5px solid;
  border-bottom:  var(--h-accent-color) 1px solid;
}

.txt-chapter span{
  margin-bottom: 1em;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.571rem + 0.48vw, 2rem);
}



/* 目次 
---------------------------------------------------------- */

.contents_container {
     padding: 0;
     line-height: 2;
     width: min(100%, 610px);
     margin: 0 auto;
 }

.contents_container p {
  font-size: clamp(1.6rem, 1.371rem + 0.48vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.contents_container p::before{
  content: "";
  width: 41%;
  height: 2px;
  background: #b0b0b0;
  position: absolute;
  top: 50%;
  right: 58%;
  transform: translateY(-50%);
}
.contents_container p::after{
  content: "";
  width: 41%;
  height: 2px;
  background: #b0b0b0;
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  .contents_container {
    padding: 10px;
  }
}

.contens_list{
  font-family: 'Shippori Antique';
} 

.contens_list li{
  padding-left: 10px;
  transform: translateX(20px);
  position: relative;
} 

.contens_list li::before{
  content: "";
  width: 8px;
  height: 2px;
  background: #b0b0b0 ;
  position: absolute;
  top: 50%;
  left: -6px;
}

.contents_container a{
  text-decoration: none;
}

.contents_container a:hover{
  text-decoration: none;
  border-bottom: var(--black) solid 1px;
}

/*出演者（テキストのみ）
---------------------------------------------------------- */
.cast-list-txt dt {
  font-weight: 700;
}

/*出演者（画像あり）
---------------------------------------------------------- */
.cast-list {
  display: flex;
  flex-wrap: wrap;
}

.cast-list.x3 li {
  width: calc(100% / 3);
  padding: 0 20px 40px;
}
.cast-item {
  text-align: center;
}
.cast-pht {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px) {
  .cast-list {
    margin-left: -2vw;
  }
  .cast-list.x3 li {
    padding: 0 0 30px 10px;
  }
}


.cast-txt{
  color: #3388cb;
  font-weight: 700;
  font-size: clamp(1.4rem, 0.5rem + 1.92vw, 1.7rem);
  letter-spacing: 1px;
}

/*アサデス。KBCバナー
---------------------------------------------------------- */
.banner {
  max-width: 350px;
  padding-top: 40px;
  margin: 0 auto;

  @media screen and (max-width: 750px){
  max-width: 430px;
  }
}


  
/*バナーエリアエリア
---------------------------------------------------------- */
.banner-img {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.banner-img-item {
  width: calc(100% / 3);
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .banner-img {
    margin-left: -2vw;
    justify-content: center;
  }
  .banner-img-item {
    width: calc(100% / 2);
    padding-left: 2vw;
    padding-top: 2vw;
  }
  
}

/*協賛社リスト
---------------------------------------------------------- */
.sponsor-list-txt {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 4%;
}
.sponsor-list-txt li {
  display: flex;
  width: 48%;  
}
.sponsor-list-txt a {
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .sponsor-list-txt li {
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
  }
}

@media screen and (min-width: 751px) {
  .sponsor-list-txt {
    gap: 1em calc(8% / 3);
  }
  .sponsor-list-txt li {
    width: 23%;
    font-size: 1.4rem;
  }
  .sponsor-list-txt.txt-fit {
    gap: 1em 1.2em;
  }
  .sponsor-list-txt.txt-fit li {
    width: fit-content;
  }
}

/*協賛社リスト（バナー風）
---------------------------------------------------------- */
.sponsor-list-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 4%;
}
.sponsor-list-banner li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}
.sponsor-list-banner li a,
.sponsor-list-banner li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5em;
  padding: 0 2%;
  background-color: var(--white);
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .sponsor-list-banner li {
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
  }
}

@media screen and (min-width: 751px) {
  .sponsor-list-banner {
    gap: 1em calc(4% / 3);
  }
  .sponsor-list-banner li {
    width: 24%;
    font-size: 1.4rem;
  }
  .sponsor-list-banner li a {
    transition: all 0.3s cubic-bezier(0.19, 0.64, 0.4, 0.89);
  }
  .sponsor-list-banner li a:hover {
    background-color: var(--h-accent-color);
  }
}