@charset "UTF-8";


a {
  color: #020202;
}

/*==== main#contents(pc) ====*/
main#contents {
  width: 1024px;
  height: auto;
  margin: 40px auto 0 auto;
  padding-bottom: 72px;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 0;
}

/*#box_list_header(pc)*/
#box_list_header {
  width: 1024px;
  margin: 48px auto 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  /*nest-start*/

  & h2 {
    font-size: 4rem;
    line-height: 1;
    font-family: "DINNextLTPro-Regular", "Roboto", sans-serif;
    font-weight: normal;
    position: relative;
    z-index: 0;
  }

  & h2>strong {
    color: #1fa0de;
    font-weight: normal;
  }

  & h2::after {
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: -13px;
    width: 2px;
    height: 56px;
    background-color: #1fa0de;
    transform: skew(-30deg);
  }

  & nav>ul {
    margin-top: 0.1em;
    display: flex;
    font-size: 1.6rem;
    justify-content: flex-start;
    gap: 0 8px;
    line-height: 1;
    font-weight: bold;
    font-weight: 400;
  }

  & nav>ul>li>a {
    display: block;
    background-color: #fff;
    padding: 0.4em 0.6em 0.5em 0.6em;
    border-radius: 3px;
    transition: 0.3s;
    /* color: #aaa; */
    /* pointer-events: none; */
    /*暫定*/
  }

  & nav>ul>li>a:hover {
    background-color: #e7f5fd;
  }

  & nav>ul>li.current>a {
    font-weight: 500;
    background-color: #25b9fd;
    color: #fff;
    pointer-events: none;
  }

  /*nest-end*/
}

div#season_selector {
  position: absolute;
  right: 6px;
  top: 43px;
  z-index: 20;

  /*nest-start*/
  p.btn_select {
    font-size: 1.6rem;
  }

  #layer_season_selector {
    display: none;
    background-color: #fff;
    position: absolute;
    right: -6px;
    top: 28px;
    width: 1024px;
    border-radius: 12px;
    box-shadow: 0px 2px 8px hsla(0, 0%, 0%, 0.1);
    padding: 20px 30px 56px;
  }

  #layer_season_selector h6 {
    font-size: 1.6rem;
    line-height: 1;
  }

  #layer_season_selector ul.child {
    display: flex;
    flex-wrap: wrap;
    font-size: 2.8rem;
    font-family: "DINNextLTPro-Regular", "Roboto", sans-serif;
    gap: 8px 12px;
    line-height: 1;
    margin: 12px auto 0 auto;
  }

  #layer_season_selector ul.child>li {
    text-align: center;
  }

  #layer_season_selector ul.child>li>a {
    display: block;
    padding: 0.4em 0.4em 0.2em 0.4em;
    border-radius: 4px;
    transition: 0.3s;
  }

  #layer_season_selector ul.child>li>a:hover {
    color: #1fa0de;
  }

  p.btn_close {
    font-family: "DINNextLTPro-Regular", "Roboto", sans-serif;
    position: absolute;
    right: 18px;
    bottom: 8px;
    line-height: 1;
    text-align: left;
    font-size: 1.8rem;
    z-index: 0;
  }

  p.btn_close>a {
    display: block;
    padding: 0.8em 31px 0.5em 0;
  }

  p.btn_close>a::after {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin-top: -14px;
    right: 0;
    top: 50%;
    background-image: url(/assets_global/img/icon_close_bk.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }



  /*nest-end*/
}

p.btn_season_select {
  display: none;
}

p.btn_select>a,
li.btn_list>a,
li.menu-item.staff>a {
  display: block;
  padding-right: 17px;
  position: relative;
  z-index: 0;

  /*nest-start*/
  &::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    width: 11px;
    height: 16px;
    margin-top: -7px;
    right: 0;
    transform: rotate(90deg);
    top: 50%;
    background-image: url(/assets_global/img/icon_arrow_mini_colors.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }

  /*nest-end*/

}

/*  */

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

  /*mq-start*/
  .pcv {
    display: none;
  }

  .spv {
    display: block;
  }

  /*==== main#contents(sp) ====*/
  main#contents {
    width: 92vw;
    margin: 4vw auto 0 auto;
    padding-bottom: 32vw;
  }

  /*#box_list_header(sp)*/
  #box_list_header {
    width: 92vw;
    margin: 8vw auto 0 auto;
    display: block;
    /*nest-start*/

    & h2 {
      font-size: 7.5vw;
      text-align: center;
    }

    & h2::after {
      content: none;
    }

    & nav>ul {
      margin-top: 2vw;
      font-size: 3.125vw;
      justify-content: center;
      gap: 0 4px;
    }

    /*nest-end*/
  }

  #season_selector {
    display: none;
  }
}