/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 10px;
}
body {
  margin: 0;
  padding: 0;
  color: #003d98;
  font-size: 1.6rem;
}
#pgpage{
	  font-family: "Noto Sans JP", "Roboto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a {
  transition: 0.3s all;
}
a:focus,
button:focus {
  border: 1px dotted #003d98;
}
pc-only {
  display: block;
}

.bread-crumb {
  margin-top: 109px;
  max-width: calc(1056px + (24px * 2));
  margin-inline: auto;
  padding: 17px 24px;
}

#kickoff {
  background: #e4edf4;
  margin-bottom: 120px;
}

/* ----- mainvisual ------ */
#main {
  position: relative;
  overflow: hidden;
}
#main::before {
  content: "";
  background: #003d98;
  position: absolute;
  width: 100%;
  bottom: -200px;
  left: 0;
  height: 600px;
  transform: skewY(-10deg);
  z-index: 0;
}
.mainvisual {
  background: url(../img/mv_back.jpg) center 0 no-repeat;
  background-size: cover;
  position: relative;
  padding: 0 20px 50px 20px;
  margin-bottom: 50px;
}
.mainvisual .day {
  position: absolute;
  top: 80px;
  left: calc(50% - 524px);
  display: block;
}
.mainvisual .logo {
  position: relative;
  z-index: 1;
  padding: 0;
}
.mainvisual .logo img {
  margin: 0 auto;
}
.mainvisual .time {
  margin-top: -80px;
  position: relative;
  display: block;
  padding: 0;
}
.mainvisual .time img {
  margin: 0 auto;
}
.mainvisual .lead {
  text-align: center;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: bold;
}
.mainvisual .lead .large {
  font-size: 1.3em;
}
a.btn_twitter {
  background: rgba(0, 0, 0, 0.33);
  padding: 20px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  max-width: 546px;
  margin: 40px auto;
  text-align: center;
  width: 100%;
}
a.btn_twitter:hover {
  background: rgba(0, 0, 0, 1);
}
a.btn_twitter img {
  width: 55px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 0 0;
}
ul.wrap_link {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
ul.wrap_link li {
  margin-bottom: 10px;
  width: 25%;
  text-align: center;
}
ul.wrap_link li a {
  margin: 0 5px;
  position: relative;
  display: inline-block;
}
ul.wrap_link li a img {
  margin: 0 auto;
}
ul.wrap_link li a .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 100ms;
  width: 100%;
  background: #000;
  transform: scale(0, 0);
  height: 1px;
  transform-origin: left top;
  transition-delay: 0ms;
}

ul.wrap_link li a .right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 1px;
  background: #000;
  transform: scale(0, 0);
  height: 100%;
  transform-origin: right top;
  transition-delay: 50ms;
  display: block;
}
ul.wrap_link li a .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 100%;
  background: #000;
  transform: scale(0, 0);
  height: 1px;
  transform-origin: right bottom;
  transition-delay: 100ms;
  display: block;
}
ul.wrap_link li a .left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 1px;
  background: #000;
  transform: scale(0, 0);
  height: 100%;
  transform-origin: left bottom;
  transition-delay: 150ms;
  display: block;
}
ul.wrap_link li a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  content: "";
  background: #f7f7f7;
}

ul.wrap_link li a:hover .top {
  transform-origin: left top;
  transform: scale(1, 1);
}
ul.wrap_link li a:hover .right {
  transform-origin: left top;
  transform: scale(1, 1);
}
ul.wrap_link li a:hover .bottom {
  transform-origin: right bottom;
  transform: scale(1, 1);
}
ul.wrap_link li a:hover .left {
  transform-origin: left bottom;
  transform: scale(1, 1);
}

/* ----- 出演者 ------ */
.cast{
	display: flex;
	justify-content: space-between;
}
.mc{
	justify-content: center;
}
.cast_about img{
	width: 270px;
}
.cast_about p{
	margin-top: 20px;
	text-align: center;
}
.cast_about p .large{
    font-weight: bold;
    font-size: 2.5rem;
}
/* ----- コーナー紹介 ------ */
.section {
  position: relative;
}
.back_white {
  width: 100%;
  height: 700px;
  position: absolute;
  background: #ffffff;
  z-index: 0;
  top: calc(50% - 350px);
  left: 0;
  transform: skewY(10deg);
}
.inner {
  padding: 0 0 50px 0;
  max-width: 1000px;
  width: 94%;
  margin: auto;
}
.title_large {
  text-align: center;
  font-size: 3.6rem;
  margin: 0 0 50px 0;
  font-weight: bold;
  position: relative;
  z-index: 100;
}

.item_blue-line {
  border: 2px solid #003d98;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
}
.item_blue-line.kenny {
  padding-bottom: 0;
}
.kenny .title_middle {
  display: flex;
}
.kenny .title_middle p {
  line-height: 1;
  margin-left: 20px;
}
.kenny {
  display: flex;
}
.kenny figure img {
  margin-left: 40px;
}
.item_blue-line .title_middle {
  font-size: 2.8rem;
  border-bottom: 2px solid #003d98;
  padding: 0 0 15px;
  margin-bottom: 20px;
}
.item_blue-line .title_middle .small {
  font-size: 2.4rem;
}
.item_blue-line .title_middle_special {
  font-size: 3rem;
  /*border-bottom: 2px solid #003d98;*/
  padding: 15px;
  margin-bottom: 20px;
  background-color: #003d98;
  color: #ffff00;
}
.title_middle_special_bottom {
  font-size: 3rem;
}
.item_blue-line p {
  line-height: 1.8;
}
.wrap_flex {
  display: flex;
  flex-wrap: wrap;
}
.wrap_flex figure img {
  margin: auto;
}

/* 月イチ企画 */
.item_blue-line .ico-monthly {
  display: block;
  width: 130px;
  padding: 10px;
  background: #003d98;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: -10px;
  left: -20px;
  transform: skew(0deg, -10deg);
}

/* montedio */
.wrap_flex.montedio p {
  width: 56%;
}
.wrap_flex.montedio figure {
  width: 43%;
  padding: 0 0 0 15px;
}
.wrap_flex.montedio figure figcaption {
  font-size: 0.9em;
  margin-top: 10px;
  text-align: center;
}
/* リョータのナイスプレーバック */
.wrap_flex.niceplay p {
  width: 75%;
}
.wrap_flex.niceplay figure {
  width: 25%;
  padding: 0 0 0 30px;
}

/* みんなのSHOOT！ */
.shoot {
  margin-bottom: 30px;
}
.wrap_flex.shoot p {
  width: 55%;
}
.shoot p .large {
  font-size: 2.6rem;
  font-weight: bold;
  color: #ff0004;
}
.wrap_flex.shoot .wrap_app {
  width: 45%;
  padding: 0 0 0 15px;
}
.wrap_app {
  margin-bottom: 30px;
}
.wrap_app button {
  border: none;
  background: none;
  color: #003d98;
  text-decoration: underline;
  cursor: pointer;
}
.wrap_app a.btn_twitter {
  width: 100%;
  background: #000000;
  padding: 10px;
  font-size: 2rem;
  margin: 10px auto;
}
.wrap_app a.btn_twitter:hover {
  filter: brightness(0.7);
}
.wrap_app a.btn_twitter img {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 0;
}
.ico-apply {
  display: block;
  width: 160px;
  padding: 10px;
  background: #003d98;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: -13px;
  left: -20px;
  transform: skew(0deg, -10deg);
}
/* ヤングチャレンジ */
.challenge p .large {
  font-size: 2.4rem;
  margin-right: 10px;
}
.challenge p .red {
  color: #ff0004;
  font-weight: bold;
  font-size: 2rem;
}
.challenge_title {
  margin-top: 20px;
}
.apply {
  align-items: center;
}
.apply_main {
  flex-basis: 550px;
}
.apply_main a{
	font-weight: bold;
	font-size: 130%;
}
/* ----- modal ------ */
.modal__container .title_middle {
  font-size: 1.4em;
  margin: 0 0 30px 0;
  font-weight: normal;
}
.modal__content .title_small {
  font-size: 1.2em;
  margin: 30px 0 10px 0;
}
.modal__container {
  max-width: 800px;
  padding: 60px;
  height: 75vh;
  color: #000000;
  width: 96%;
}
.modal__content ul {
  padding: 0;
}
.modal__content li {
  list-style: none;
  text-indent: -1.2em;
  margin: 0 0 5px 1.2em;
}

/* ----- YouTube ------ */
.wrap_youtube {
  background: #fff;
  padding: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wrap_youtube .logo-youtube {
  margin: 30px auto 10px auto;
  width: 180px;
}
.wrap_youtube p {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
}
.wrap_youtube p .large {
  font-size: 1.5em;
}
.wrap_youtube p .marker {
  background: rgb(212, 227, 239);
  background: linear-gradient(0deg, rgba(212, 227, 239, 1) 50%, rgba(255, 255, 255, 1) 50%);
  display: inline-block;
}
.wrap_youtube ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 0 auto;
  max-width: 850px;
}
.wrap_youtube ul li {
  margin: 0 5px 10px;
}
.wrap_youtube ul li a {
  position: relative;
  display: block;
}
.wrap_youtube ul li a img {
  margin: auto;
}
.wrap_youtube ul li a .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 100ms;
  width: 100%;
  background: #ff0000;
  transform: scale(0, 0);
  height: 2px;
  transform-origin: left top;
  transition-delay: 0ms;
}
.wrap_youtube ul li a .right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 2px;
  background: #ff0000;
  transform: scale(0, 0);
  height: 100%;
  transform-origin: right top;
  transition-delay: 50ms;
  display: block;
}
.wrap_youtube ul li a .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 100%;
  background: #ff0000;
  transform: scale(0, 0);
  height: 2px;
  transform-origin: right bottom;
  transition-delay: 100ms;
  display: block;
}
.wrap_youtube ul li a .left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 100ms;
  content: "";
  width: 2px;
  background: #ff0000;
  transform: scale(0, 0);
  height: 100%;
  transform-origin: left bottom;
  transition-delay: 150ms;
  display: block;
}
.wrap_youtube ul li a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  content: "";
}
.wrap_youtube ul li a:hover .top {
  transform-origin: left top;
  transform: scale(1, 1);
}
.wrap_youtube ul li a:hover .right {
  transform-origin: left top;
  transform: scale(1, 1);
}
.wrap_youtube ul li a:hover .bottom {
  transform-origin: right bottom;
  transform: scale(1, 1);
}
.wrap_youtube ul li a:hover .left {
  transform-origin: left bottom;
  transform: scale(1, 1);
}
.wrap_iframe {
  margin: 20px auto 0 auto;
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 700px;
}
.wrap_iframe::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.wrap_iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap_youtube .youtube .memo p {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
}

/* ----- special ------ */
.title_large_special img {
  margin: 0 auto;
}
.date_time {
  margin-top: 3rem;
}
.program_overview {
  margin-top: 3rem;
  text-align: center;
}
.special_img {
  margin-top: 3rem;
}
.special_img img {
  margin: 0 auto 3rem;
}
.special_contents {
  padding: 2rem 0;
}
.font_bold {
  font-weight: bold;
  font-size: 2rem;
  text-align: end;
}
/* ----- footer ------ */

/*2024 0507 J2生中継追加*/
.mv_j2 {
  display: inline-block;
}
.j2_area {
  text-align: center;
  margin: 20px 0;
}
/*20250401　告知追加*/
.kokuchi .header img {
  margin: 0 auto;
}

.main {
  background-image: url("../img/bg.png");
  width: 1000px;
  padding: 40px 0;
  margin: 0 auto 40px;
  background-repeat: round;
}
.main img {
  margin: 0 auto;
}
/* =================================
1024px
====================================*/
@media screen and (max-width: 1024px) {
  /* ----- mainvisual 1024px ------ */
  .mainvisual .logo {
    padding: 130px 0 0 0;
  }
  .mainvisual .day {
    width: 280px;
    top: 16px;
    left: calc(50% - 250px);
  }
  .mainvisual .logo {
    position: relative;
    z-index: 1;
    padding: 30px 0 0 0;
  }
  .mainvisual .time {
    margin-top: -60px;
  }
  /*ケニーズカム*/
  .kenny .title_middle img {
    max-width: fit-content;
  }
} /* end_1024px */

/* =================================
768px
====================================*/
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .bread-crumb {
    margin-top: 72px;
    padding: 12px calc(16 / 402 * 100vw);
  }
  #kickoff {
    margin-bottom: 70px;
  }
  /* ----- mainvisual 768px ------ */
  .mainvisual .day {
    left: calc(50% - 170px);
    width: 200px;
  }
  .mainvisual .time {
    margin-top: -30px;
  }
  .mainvisual .lead {
    margin-top: 30px;
    text-align: left;
    font-size: 1.1em;
  }
  a.btn_twitter {
    width: calc(100% - 10px);
    line-height: 1.1;
    padding: 20px 10px;
  }
  a.btn_twitter:hover {
    background: rgba(0, 0, 0, 0.33);
  }
  a.btn_twitter img {
    margin: 0 5px 0 0;
    width: 45px;
  }
  ul.wrap_link {
    max-width: 608px;
  }
  ul.wrap_link li {
    width: 50%;
  }

  ul.wrap_link li a .top,
  ul.wrap_link li a .right,
  ul.wrap_link li a .bottom,
  ul.wrap_link li a .left {
    background: #fff;
  }

  /* ----- 出演者 768px------ */	
	.cast{
	flex-direction: column;
	}
	.cast_about{
		margin: 0 auto;
	}
  /* ----- コーナー紹介 768px------ */
  .title_large {
    font-size: 3rem;
  }
  .item_blue-line {
    padding: 25px;
  }
  .item_blue-line .title_middle {
    font-size: 2rem;
    line-height: 1.3;
  }
  .item_blue-line .title_middle .small {
    font-size: 2rem;
  }
  .item_blue-line .title_middle_special {
    font-size: 2rem;
    line-height: 1.3;
  }
  .title_middle_special_bottom {
    font-size: 2rem;
  }
  /* 月イチ企画 */
  .item_blue-line .ico-monthly,
  .item_blue-line .ico-apply {
    top: -24px;
    left: -12px;
    font-size: 1.3rem;
  }
  /* montedio */
  .wrap_flex.montedio p {
    width: 100%;
  }
  .wrap_flex.montedio figure {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .wrap_flex.montedio figure figcaption {
    text-align: center;
  }
  /* リョータのナイスプレーバック */
  .wrap_flex.niceplay p {
    width: 100%;
  }
  .wrap_flex.niceplay figure {
    width: 100%;
    padding: 15px 0 0 0;
  }
  /*ケニーズカム*/
  .kenny .title_middle {
    flex-direction: column;
  }
  .kenny .title_middle p {
    margin-left: 0;
  }
  .kenny {
    flex-direction: column;
  }
  .kenny figure img {
    margin: 0 auto;
  }

  /* みんなのSHOOT！ */
  .wrap_flex.shoot p {
    width: 100%;
  }
  .wrap_flex.shoot p .large {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff0004;
  }
  .wrap_flex.shoot .wrap_app {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .wrap_app a.btn_twitter {
    font-size: 2rem;
  }
  .wrap_app a.btn_twitter:hover {
    filter: brightness(1);
  }
  .wrap_app a.btn_twitter img {
    margin: 0 5px 0 0;
    width: 45px;
  }
  .apply {
    flex-direction: column;
  }
  .wrap_app {
    margin: 20px 0 0 0;
  }
  /* ----- modal 768px------ */
  .modal__container {
    padding: 30px;
    height: 75vh;
  }

  /* ----- YouTube 768px------ */
  .wrap_youtube {
    padding: 20px;
  }
  .wrap_youtube .logo-youtube {
    margin: 30px auto;
    width: 180px;
  }
  .wrap_youtube p {
    font-size: 2rem;
    line-height: 1.8;
  }
  .wrap_youtube ul {
    margin: 30px auto 0 auto;
    justify-content: center;
  }
  .wrap_youtube ul li {
    margin-bottom: 10px;
  }

  .wrap_youtube ul li a .top,
  .wrap_youtube ul li a .right,
  .wrap_youtube ul li a .bottom,
  .wrap_youtube ul li a .left {
    background: #000;
  }
.special_img img {
	width: 95%;
	}

  /* ----- footer 768px------ */

  .wrap_copyright img {
    width: 200px;
  }
  /*2024 0507 J2生中継追加*/
  .mv_j2 {
    width: 94%;
  }
  /*20250401　告知追加*/
  .main {
    width: 94%;
  }
  .main img {
    width: 90%;
  }
} /* end_768px */
