@charset "utf-8";
/* CSS Document */

/*========================================
* イベントTOP
========================================*/
:root {
  --colorgray: #F1F4F8;
  --colorred: #FF6060;
  --colorblue: #60AFFF;
  --colororange: #FFAF60;
  --corporateblue: #0052A5;
  --colorwhite: #FFF;
}

#heading {
  padding-bottom: 0;
  margin-bottom: 60px;
  background-color: #f5f5f5;
}

div.category-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 0;
}

div.category-heading-contents {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #09529e;
}

div.category-heading-ttl {
  font-size: 72px;
  line-height: 1em;
}

div.category-heading-ruby {
  font-size: 21px;
  border-bottom: 2px solid;
  padding-bottom: 0.25em;
  margin-left: 2em;
}

.event h2.style01 {
  color: #0052A5;
  font-size: 24px;
  font-weight: bold;
  line-height: 1em;
  position: relative;
  padding: 0 0 1em;
}

h2.style01::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 6px #568bc3;
  border-radius: 3px;
  bottom: -4px;
  width: 5%;
}

/*↓↓↓↓↓↓↓↓↓↓ slick（独自スタイル） ↓↓↓↓↓↓↓↓↓↓*/
.slider {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.slider-img {
  margin: 0 10px;
}

.slider-img img {
  height: auto;
  width: 100%;
  border-radius: 10px;
  /* border: 1px solid #eee; */
}

.slider .slick-arrow {
  z-index: 3 !important;
}

.slider .slick-prev {
  left: -16px !important;
}

.slider .slick-next {
  right: -16px !important;
}

.slick-prev,
.slick-next {
  width: 36px !important;
  height: 36px !important;
}

.slick-prev:before,
.slick-next:before {
  font-size: 36px !important;
  color: #707070 !important;
  position: relative !important;
}

/*↑↑↑↑↑↑↑↑↑↑ slick（独自スタイル） ↑↑↑↑↑↑↑↑↑↑*/

.event-tab .event-cat {
  display: flex;
  margin: 50px 0 0 0;
}

.event-tab input[type=radio] {
  display: none;
}

.event-cat label {
  position: relative;
}

#all:checked~.event-cat label[for="all"]::after,
#other:checked~.event-cat label[for="other"]::after,
#stage:checked~.event-cat label[for="stage"]::after,
#pre:checked~.event-cat label[for="pre"]::after {
  content: "";
  display: inline-block;
  border-style: solid;
  font-size: 18px;
  border-width: 1.25em 1em 0 1em;
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
}

#all:checked~.event-cat label[for="all"]::after {
  border-color: var(--colorgray) transparent transparent transparent;
}

#other:checked~.event-cat label[for="other"]::after {
  border-color: var(--colorred) transparent transparent transparent;
}

#stage:checked~.event-cat label[for="stage"]::after {
  border-color: var(--colorblue) transparent transparent transparent;
}

#pre:checked~.event-cat label[for="pre"]::after {
  border-color: var(--colororange) transparent transparent transparent;
}

.event-tab .event-cat label a:hover {
  text-decoration: none;
}

.event-tab .event-cat label p {
  width: 320px;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}

.event-tab .event-cat label p:hover {
  cursor: pointer;
}

.event-tab .event-cat .all p {
  background-color: var(--colorgray);
  color: #09529e;
}

.event-tab .event-cat .other p {
  background-color: var(--colorred);
  color: var(--colorwhite);
}

.event-tab .event-cat .stage p {
  background-color: var(--colorblue);
  color: var(--colorwhite);
}

.event-tab .event-cat .pre p {
  background-color: var(--colororange);
  color: var(--colorwhite);
}

.eventtop-box {
  width: 100%;
  padding: 0;
  display: none;
  margin: 3em 0 0;
}

#all:checked~.eventtop-panel #eventtop-all,
#other:checked~.eventtop-panel #eventtop-other,
#stage:checked~.eventtop-panel #eventtop-stage,
#pre:checked~.eventtop-panel #eventtop-pre {
  display: block;
}

ul.list {
  margin: 15px 0 0;
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

ul.list::before {
  content: "";
  display: block;
  width: 412px;
  order: 1;
}

ul.list::after {
  content: "";
  display: block;
  width: 412px;
}

ul.list li {
  width: 390px;
  margin: 0 0 2em;
  border-radius: 0.5em;
  border: 1px solid #eee;
  padding: 1em 0.75em 0 0.75em;
  position: relative;
  font-size: 15px;
}

ul.list li img {
  border-radius: 10px;
  box-sizing: border-box;
  aspect-ratio: initial;
  object-fit: contain;
  background: #fff;
  vertical-align: bottom;
}

ul.list li p {
  margin: 0.75em 0 0;
  line-height: 1.25em;
}

ul.list li p.event-tag {
  margin: 0;
}

ul.list li p.event-tag span {
  color: #ffffff;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  font-weight: 600;
  display: inline-block;
  font-size: 12px;
}

ul.list li.cat-event-item p.event-tag span {
  background-color: var(--colorred);
}

ul.list li.cat-stage-item p.event-tag span {
  background-color: var(--colorblue);
}

ul.list li.cat-present-item p.event-tag span {
  background-color: var(--colororange);
}

ul.list li.cat-old-item p.event-tag span {
  background-color: var(--corporateblue);
}

ul.list li p.title {
  color: #464646;
  font-size: 16px;
  font-weight: 600;
}

ul.list li p.title a {
  color: #464646;
  font-weight: bold;
}

ul.list li .detail-box {
  margin: 0 0 5.5em;
}

ul.list li.cat-old-item .detail-box {
  margin: 0 0 5em;
}

ul.list li p.announce span {
  color: #ff0000;
  border: solid 2px #ff0000;
  font-size: 12px;
  display: inline-block;
  font-weight: 600;
  padding: 0.5em 0.75em;
}

ul.list li p.date {
  font-size: 14px;
  color: #a9a9a9;
  display: inline-block;
}

ul.list li .btn-gp {
  position: absolute;
  width: calc(100% - 24px);
  display: flex;
  align-items: baseline;
  bottom: 0.5em;
}

ul.list li.cat-old-item .btn-gp {
  bottom: 1em;
}

ul.list li div .btn-subscription,
ul.list li div .btn-detail {
  width: 48%;
}

ul.list li div .btn-subscription {
  margin: 0 2% 0 auto;
}

ul.list li div .btn-detail {
  margin: 0 0 0 auto;
}

ul.list li div .btn-subscription a,
ul.list li div .btn-detail a {
  font-weight: 600;
  border-radius: 100vh;
  display: block;
  text-align: center;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 14px;
}

ul.list li.cat-event-item div .btn-subscription a {
  border: solid 2px var(--colorred);
  background-color: var(--colorred);
  color: var(--colorwhite);
}

ul.list li.cat-stage-item div .btn-subscription a {
  border: solid 2px var(--colorblue);
  background-color: var(--colorblue);
  color: var(--colorwhite);
}

ul.list li.cat-present-item div .btn-subscription a {
  border: solid 2px var(--colororange);
  background-color: var(--colororange);
  color: var(--colorwhite);
}

ul.list li.cat-old-item div .btn-subscription a {
  border: solid 2px var(--corporateblue);
  background-color: var(--corporateblue);
  color: var(--corporateblue);
}

ul.list li.cat-event-item div .btn-detail a {
  border: solid 2px var(--colorred);
  color: var(--colorred);
}

ul.list li.cat-stage-item div .btn-detail a {
  border: solid 2px var(--colorblue);
  color: var(--colorblue);
}

ul.list li.cat-present-item div .btn-detail a {
  border: solid 2px var(--colororange);
  color: var(--colororange);
}

ul.list li.cat-old-item div .btn-detail a {
  border: solid 2px var(--corporateblue);
  color: var(--corporateblue);
}

ul.list li div .btn-subscription span,
ul.list li div .btn-detail span {
  font-size: 10px;
  display: block;
  text-align: right;
  margin: 0.25em 0 0;
  min-height: 15px;
}

ul.list li.no-entry {
  color: #a0a0a0;
  text-align: center;
  font-size: 21px;
  width: 100%;
  border: none;
}

/* =====↓↓↓↓↓↓ 2024/04/12.add 番組プレゼント, 2024/09/05.add イベントアーカイブ ↓↓↓↓↓↓=====*/
.program-pre,
.event-archive {
  margin: 5% 0 0;
}
.program-pre h3,
.event-archive h3 {
  color: #0052A5;
  font-size: 21px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  border-bottom: solid 2px #cee2fe !important;
  position: relative;
  padding-bottom: 0.25em;
}

.program-pre h3::before,
.event-archive h3::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 6px #568bc3;
  border-radius: 3px;
  bottom: -4px;
}

.program-pre h3::before {
  width: 7em;
}

.event-archive h3::before {
  width: 9em;
}
/* =====↑↑↑↑↑↑ 2024/04/12.add 番組プレゼント, 2024/09/05.add イベントアーカイブ ↑↑↑↑↑↑=====*/

.old-event {
  text-align: right;
  margin: 0 0 1.5em;
  font-size: 14px;
}

.old-event a {
  color: #0052a4 !important;
  text-decoration: underline;
}

.rtn_top {
  margin: 15px 0 45px;
}

.rtn_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #0052a4 !important;
  font-size: 16px;
  border-radius: 1em;
  width: 14em;
  border: 2px solid #0052a4;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff00;
  padding: 1em 0 1em 1.5em;
  margin: 0 auto;
  font-weight: 500;
}

.rtn_top a::before,
.rtn_top a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: 100% 50%;
  height: 1.5px;
  width: 1em;
  background-color: #0052a4;
  border-radius: 3px;
  will-change: transform;
  transition: .3s;
}

.rtn_top a::before {
  transform: translateY(-50%) rotate(150deg);
}

.rtn_top a::after {
  transform: translateY(-50%) rotate(-150deg);
}

.rtn_top a:hover::before {
  transform: translate(-0.5em, -50%) rotate(150deg);
}

.rtn_top a:hover::after {
  transform: translate(-0.5em, -50%) rotate(-150deg);
}

/* =====↓↓↓↓↓↓ 2024/03/29.add X埋め込み ↓↓↓↓↓↓=====*/
.x-embed {
  display: flex;
  justify-content: space-evenly;
  margin: 3em 0 4em;
}

.x-embed .x-embed_item {
  font-size: 21px;
}

.x-embed p {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background: #1d9bf0;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  padding: 0.5em 1em;
  border-radius: 1em 1em 0 0;
}

.x-embed .x-embed_box {
  border: 5px solid #1d9bf0;
  border-top: none;
  /* padding: 0 0 1em; */
  border-radius: 0 0 1em 1em;
}

.x-embed .x-embed_box span {
  display: block;
  text-align: center;
  margin: 1em 0;
  font-size: 16px;
}

.x-embed .x-embed_box span a {
  color: #1d9bf0;
  text-decoration: underline;
}
/* =====↑↑↑↑↑ 2024/03/29.add X埋め込み ↑↑↑↑↑=====*/

.event-bnrarea {
  background-color: #0052A5;
  padding: 1.5em 0;
}

.event-bnrarea .slick-prev:before,
.event-bnrarea .slick-next:before {
  color: #ffffff !important;
}

#contentsBox {
  margin: auto;
}

#contentsBox h2.stylePickupEvent {
  display: inline-block;
  background: #0052A5;
  color: #fff;
  padding: 6px 56px 6px 10px;
  height: 36px;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
}

#contentsBox h2.stylePickupEvent:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: #d6f6ff #d6f6ff #d6f6ff #0052A5;
}


#contentsBox h2.stylePickupEvent img {
  vertical-align: middle;
  margin-right: 6px;
}

#contentsBox div.stylePickupEventBg {
  background: #d6f6ff;
}

.iconKidProject {
  margin: 0;
}

.iconKidProject img {
  margin: 0 0 8px 0 !important;
}

.blogArchive div.readmoreBtn {
  text-align: right;
}

.blogArchive a.readmore {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding-left: 15px;
  background: url(../img/common/icon_arrow01.png) no-repeat left center;
}

@media screen and (max-width: 899px) {
  body {
    min-width: auto;
  }

  #heading {
    margin: 0 0 30px;
  }

  #heading ul.breadcrumb {
    margin: 0;
  }

  .contentIn {
    padding: 0 15px;
  }

  .clearfix:after {
    content: none;
  }

  div.category-heading {
    padding: 15px 0 30px;
  }

  div.category-heading-contents {
    display: block;
    text-align: center;
  }

  div.category-heading-ttl {
    font-size: 48px;
  }

  div.category-heading-ruby {
    display: inline-block;
    font-size: 16px;
    border-bottom: 2px solid;
    padding-bottom: 0.25em;
    margin-left: 0;
    margin-top: 0.5em;
  }

  .slider .slick-prev {
    left: -2vw !important;
  }

  .slider .slick-next {
    right: -2vw !important;
  }

  .slick-prev,
  .slick-next {
    width: 7vw !important;
    height: 7vw !important;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 7vw !important;
  }

  .event h2.style01 {
    font-size: 21px;
    padding: 0 0 0.5em;
    border-bottom: solid 2px #cee2fe;
  }

  .event h2.style01::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: solid 6px #568bc3;
    border-radius: 3px;
    bottom: -4px;
    width: 3em;
  }

  .eventtop-box {
    margin: 2em 0 0;
  }

  .eventtop-box ul,
  .oldevent-box ul {
    width: 100%;
  }

  .event-tab .event-cat label {
    flex: 1;
  }

  #all:checked~.event-cat label[for="all"]::after,
  #other:checked~.event-cat label[for="other"]::after,
  #stage:checked~.event-cat label[for="stage"]::after,
  #pre:checked~.event-cat label[for="pre"]::after {
    font-size: 15px;
    border-width: 0.75em 0.75em 0 0.75em;
    bottom: -0.75em;
  }

  .event-tab .event-cat label p {
    width: 100%;
    font-size: 3.5vw;
    padding: 0.5em;
    text-align: center;
    box-sizing: border-box;
  }

  .event-tab .event-cat {
    margin: 30px 0 0;
  }

  ul.list li {
    width: 100%;
    margin: 0 0 5%;
    border-radius: 0.75em;
    border: 1px solid #eee;
    padding: 1em 0.75em;
    display: flex;
    font-size: 12px;
  }

  ul.list li p.event-tag span {
    padding: 0.5em;
  }

  ul.list li .flex-item {
    flex: 1;
  }

  ul.list li .sp-left {
    padding: 0 0.75em 0 0;
  }

  ul.list li img {
    border-radius: 0.5em;
  }

  ul.list li .detail-box {
    margin: 0;
  }

  ul.list li.cat-old-item .detail-box {
    margin: 0;
  }

  ul.list li p.title {
    font-size: 14px;
    line-height: 1.25em;
    margin: 0;
    word-break: break-all;
  }

  ul.list li p.date {
    font-size: 12px;
  }

  ul.list li p.announce {
    font-size: 10px;
    margin: 0.75em 0 0;
  }

  ul.list li p.announce span {
    border: solid 2px #ff0000;
    font-size: 10px;
    padding: 0.5em;
  }

  ul.list li .btn-gp {
    width: 100%;
    position: relative;
    bottom: 0;
    display: block;
    margin: 0.5em 0 0;
  }

  ul.list li.cat-old-item .btn-gp {
    bottom: 0;
  }

  ul.list li .btn-gp p:nth-of-type(2) {
    margin: 0.5em 0 0;
  }

  ul.list li div .btn-subscription,
  ul.list li div .btn-detail {
    width: 100%;
    margin: 0;
  }

  ul.list li div .btn-subscription a,
  ul.list li div .btn-detail a {
    font-weight: 600;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    height: 2em;
    line-height: 2em;
  }

  ul.list li div .btn-subscription span,
  ul.list li div .btn-detail span {
    text-align: center;
    min-height: auto;
  }

  ul.list li.no-entry {
    font-size: 16px;
    padding: 1em 0.75em 1em;
    display: block;
  }

  /* =====↓↓↓↓↓↓ 2024/04/12.add 番組プレゼント, 2024/09/05.add イベントアーカイブ ↓↓↓↓↓↓=====*/
  .program-pre h3,
  .event-archive h3 {
    font-size: 16px;
    border-bottom: solid 1px #cee2fe !important;
    margin-bottom: 5%;
  }

  .program-pre h3::before,
  .event-archive h3::before {
    border-bottom: solid 3px #568bc3;
    border-radius: 2px;
    bottom: -2px;
  }
  /* =====↑↑↑↑↑↑ 2024/04/12.add 番組プレゼント, 2024/09/05.add イベントアーカイブ ↑↑↑↑↑↑=====*/

  .old-event {
    font-size: 10px;
  }

  .rtn_top {
    margin: 2.5% 0 7.5%;
  }

  .rtn_top a {
    font-size: 12px;
  }

  /* =====↓↓↓↓↓↓ 2024/03/29.add X埋め込み ↓↓↓↓↓↓=====*/
  .x-embed {
    display: block;
    width: 90%;
    margin: 2em auto;
  }

  .x-embed .x-embed_item {
    font-size: 16px;
  }

  .x-embed .x-embed_item:first-child {
    margin: 0 0 2em;
  }

  .x-embed p {
    display: block;
    position: relative;
    padding: 0.5em 1em 1em;
  }

  #twitter-widget-0 {
    position: absolute !important;
    right: 1em;
    bottom: 0.5em;
  }

  .x-embed .x-embed_box {
    border: 3px solid #1d9bf0;
  }

  .twitter-timeline iframe {
    height: 320px !important;
  }

  .x-embed .x-embed_box span {
    font-size: 12px;
  }
  /* =====↑↑↑↑↑ 2024/03/29.add X埋め込み ↑↑↑↑↑=====*/

  .event-bnrarea {
    width: 100%;
  }

  .event-bnrarea .flex-item {
    width: calc(100% - 30px);
    margin: 0 auto;
  }

  .event-bnrarea .flex-item div a img {
    vertical-align: middle;
  }
}

@media screen and (min-width: 900px) {

  /*========================================
  * イベント記事CSS（PC）
  ========================================*/
  .articleContent {
    width: 960px;
    margin: 0 auto;
    font-size: 14px;
  }

  .articleTitle {
    text-align: center;
    margin: 0 0 50px;
  }

  .item.clearfix {
    display: flex;
    align-items: stretch;
    margin: 0 0 15px;
  }

  .item.clearfix .title {
    width: 24%;
    margin: 0 1% 0 0;
    border-bottom: solid 2px #0052A5;
    color: #0052A5;
    padding: 15px 15px 30px 15px;
    font-weight: 600;
    font-size: 16px;
  }

  .item.clearfix .contents {
    width: 75%;
    border-bottom: solid 2px #bdd9ff;
    padding: 15px 15px 30px 15px;
  }

  /*========================================
  * イベントウェブページCSS（PC）
  ========================================*/
  .eventWebpage {
    font-size: 14px;
  }

  .eventWebpage .entry_info {
    padding: 0 0 30px;
    border-bottom: 2px dashed #ddd;
    margin: 30px 0;
  }

  .item_dtl {
    font-size: 16px;
    font-weight: 600;
  }

  .eventWebpage .ifm_box {
    margin: 1em 0 0;
  }

  .eventWebpage .entry_other {
    margin: 30px 0;
  }

  .link_flyer {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
  }

  .link_flyer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18em;
    margin: 0 auto;
    padding: 0.5em 0;
    border: 2px solid #0052a5;
    font-weight: 500;
    border-radius: 0.5em;
    transition: all 0.5s ease-in-out;
  }

  .link_flyer a:hover {
    background: #0052a5;
    color: #fff !important;
    opacity: 1;
    text-decoration: none;
  }

  img[src="/img/common/icon_pdf.png"] {
    padding-right: 0.25em;
  }
}

@media screen and (max-width: 899px) {

  /*========================================
  * イベント記事CSS（SP）
  ========================================*/
  .articleContent {
    width: 100%;
    font-size: 3.5vw;
  }

  .articleTitle {
    text-align: center;
    margin: 0 0 2em;
  }

  .articleBody .item.clearfix {
    display: block;
    position: relative;
    width: 100%;
    border-top: solid 2px #bdd9ff;
    margin: 0 0 1.5em;
  }

  .articleBody .item.clearfix:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 50%;
    height: inherit;
    border-top: 2px solid #0052A5;
  }

  .articleBody .item.clearfix .title {
    color: #0052A5;
    padding: 1em 1em 0.5em 1em;
    font-weight: 600;
    font-size: 14px;
  }

  .articleBody .item.clearfix .contents {
    padding: 0 1em;
  }

  /*========================================
  * イベントウェブページCSS（SP）
  ========================================*/
  .eventWebpage {
    font-size: 12px;
    border-bottom: 2px dashed #ddd;
    padding: 0 0 15px;
  }

  .eventWebpage .entry_info {
    padding: 0 0 15px;
    margin: 15px 0;
  }

  .eventWebpage .item.clearfix {
    display: block;
    position: relative;
    width: 100%;
    border-top: solid 2px #bdd9ff;
    margin: 0 0 1.5em;
  }

  .eventWebpage .item.clearfix:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 50%;
    height: inherit;
    border-top: 2px solid #0052A5;
  }

  .eventWebpage .item.clearfix .title {
    color: #0052A5;
    padding: 1em 15px 0.5em 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .eventWebpage .item.clearfix .contents {
    padding: 0 15px;
  }

  .eventWebpage .item_dtl {
    font-size: 14px;
    font-weight: 600;
  }

  .eventWebpage .ifm_box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin: 1em 0 0;
  }

  .eventWebpage .ifm_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .eventWebpage .entry_other {
    padding: 15px 0;
    border-top: 2px dashed #ddd;
  }

  .eventWebpage .link_flyer {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
  }

  .eventWebpage .link_flyer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18em;
    margin: 0 auto;
    padding: 0.5em 0;
    border: 2px solid #0052a5;
    font-weight: 500;
    border-radius: 0.5em;
    transition: all 0.5s ease-in-out;
  }

  .eventWebpage .link_flyer a:hover {
    background: #0052a5;
    color: #fff !important;
    opacity: 1;
    text-decoration: none;
  }

  .eventWebpage img[src="/img/common/icon_pdf.png"] {
    padding-right: 0.25em;
  }
}