@charset "UTF-8";

/* ---------------- top ---------------- */

.top-sec-wrap {
  background: url(/action/cleague/assets/img/bg-top.jpg) repeat-y top center/100%;
}

/* ----- mv ----- */

.top-mv img {
  width: 100%;
}

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

/* ----- l-nav ----- */

.l-nav {
  padding: 90px 0 120px;
  position: relative;
  z-index: 10;
}

.l-nav .list {
  display: flex;
  justify-content: center;
}

.l-nav .list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin: 0 10px;
  width: 28%;
}

.l-nav .list > li::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #505050;
  transform: scale(0.18, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.l-nav .list .current::after {
  background: #38643a;
}

.l-nav .list > li:hover::after {
  transform: scale(0.5, 1);
}

.l-nav .list a,
.l-nav .list p {
  color: #505050;
  font-size: 2.8rem;
  font-family: '游ゴシック', YuGothic, sans-serif;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 14px;
}

.l-nav .list a:hover {
  text-decoration: none;
}

.l-nav .list .current > a,
.l-nav .list .current > p {
  color: #fff;
  padding: 5px 20px;
  position: relative;
  z-index: 1;
}

.l-nav .list .current > a::before,
.l-nav .list .current > p::before {
  transform: skewX(-16deg);
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgb(56 100 58 / 70%);
}

.l-nav .is-tab {
  display: none;
}

.l-nav .drop-menu {
  display: none;
  -webkit-animation-name: fade-up-anim;
  animation-name: fade-up-anim;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fade-up-anim {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-anim {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.l-nav .drop:hover .drop-menu {
  display: block;
  position: absolute;
  top: 2.5em;
  left: 3%;
  min-width: 345px;
}

.l-nav .drop-balloon {
  background: #38643a;
  padding: 1.5em 1.3em;
  position: relative;
  margin-top: 2.5em;
}

.l-nav .drop-balloon li {
  margin: 10px 0;
  text-align: left;
  padding-left: 1em;
  position: relative;
  width: 100%;
}

.l-nav .drop-balloon li::before {
  content: '';
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0;
  height: 0;
}

.l-nav .drop-balloon li:hover::before {
  border-color: transparent transparent transparent #e7d857;
}

.l-nav .drop-balloon a {
  color: #fff;
  display: block;
  font-size: 1.8rem;
  padding: 5px 0;
}

.l-nav .drop-balloon a:hover {
  color: #e7d857;
  text-decoration: underline;
}

.l-nav .drop-balloon::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 24px 25px 24px;
  border-color: transparent transparent #38643a transparent;
  width: 0;
  height: 0;
}

/* hover動作が使えないtablet用 */
@media (hover: none) {
  .l-nav .drop > a {
    pointer-events: none;
  }

  .l-nav .is-tab {
    display: block;
  }
}

/* sp */

@media screen and (max-width: 960px) {
  .l-nav {
    padding: 35px 0 45px;
  }

  /* SP accordion */
  .sp-accordion {
    cursor: pointer;
    outline: 0;
    position: relative;
    margin: 0 auto;
    width: 100%;
  }

  .accordion-ttl {
    border: 1px solid #505050;
    color: #505050;
    cursor: pointer;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    padding: 8px;
    text-align: center;
    margin: 0 !important;
  }

  .accordion-ttl:after {
    content: '';
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #505050;
    border-right: solid 2px #505050;
    transform: rotate(135deg);
  }

  .accordion-ttl.open:after {
    transform: rotate(-45deg);
    top: 45%;
  }

  .accordion-item {
    background: rgb(149 149 149 / 10%);
    display: none;
    padding: 5px 15px 20px;
  }

  .accordion-item .sp-list li {
    border-bottom: 1px solid #505050;
    font-size: 1.3rem;
    text-align: center;
    padding: 8px;
  }

  .sub-menu .accordion-ttl {
    border: 0;
    font-size: 1.3rem;
    font-weight: normal;
    padding: 0;
  }

  .sub-menu .accordion-item {
    background: transparent;
    padding: 10px 0 0;
  }

  .sub-menu .accordion-item li {
    border-bottom: 1px solid #c2c2c2;
    font-size: 1.2rem;
  }

  .sub-menu .accordion-item li:first-child {
    border-top: 1px solid #c2c2c2;
  }

  .sub-menu .accordion-item li:last-child {
    border: 0;
  }
}

/* ----- l-pickup  ----- */

.l-pickup {
  position: relative;
  margin-bottom: -2.5%;
}

.l-pickup:first-of-type {
  margin-top: 20px;
}

.pickup-bg01 {
  margin-top: -8em;
}

.pickup-bg02 {
  margin-top: -10em;
}

.pickup-bg01 > img,
.pickup-bg02 > img {
  width: 100%;
}

.pickup-txt img {
  display: block;
  position: relative;
  max-width: 452px;
  z-index: 1;
}

.pickup-wrap {
  position: absolute;
  top: 0;
  left: auto;
  max-width: 1280px;
  width: 96%;
}

.pickup-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4% 0 2%;
  position: relative;
  z-index: 1;
}

.l-pickup.item-ura .pickup-box .img-item {
  box-shadow: 0px 2px 30px 0px rgba(64, 64, 64, 0.4);
}

.pickup-box .img-item {
  width: 60%;
  max-width: 700px;
}

.pickup-box .txt-item {
  margin-left: 6%;
  width: 36%;
}

.pickup-box .txt-item .ttl img {
  width: auto;
}

.l-pickup.item-dragons .txt-item .ttl img,
.l-pickup.item-giants-upcycling .txt-item .ttl img {
  height: 200px;
}

.l-pickup.item-ura .txt-item .ttl img {
  height: 100px;
}

.l-pickup.item-giants .txt-item .ttl img {
  height: 160px;
}

.pickup-box .txt-item p {
  color: #fff;
  line-height: 1.95;
  padding: 6% 0 2%;
}

.l-pickup.reverse .pickup-box {
  flex-direction: row-reverse;
  padding-top: 10%;
}

.l-pickup.reverse .pickup-box .txt-item {
  margin: 0 6% 0 0;
}

.pickup-btn-wrap .btn-white-s {
  margin: 0 0 14px;
  max-width: 430px;
}

.pickup-btn-wrap .btn-white-s > span {
  font-size: 1.6rem;
}

.pickup-btn-wrap .btn-white-s .arrow::after {
  width: 48px;
  height: 8px;
}

@media screen and (max-width: 1480px) {
  .pickup-bg01 > img,
  .pickup-bg02 > img {
    width: 100%;
    height: 950px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 960px) {
  .l-pickup.item-giants {
    margin-bottom: 0;
  }

  .pickup-bg01,
  .pickup-bg02 {
    margin-top: 7em;
  }

  .pickup-bg01 > img,
  .pickup-bg02 > img {
    height: auto;
  }

  .pickup-wrap {
    width: 92%;
  }

  .pickup-box,
  .l-pickup.reverse .pickup-box {
    flex-direction: column;
    padding: 3% 0;
  }

  .pickup-box .img-item {
    width: 88%;
  }

  .pickup-box .txt-item {
    width: 100%;
  }

  .pickup-txt img {
    width: 170px;
  }

  .l-pickup.item-dragons .txt-item .ttl img,
  .l-pickup.item-giants-upcycling .txt-item .ttl img {
    height: 140px;
  }

  .l-pickup.item-ura .txt-item .ttl img {
    height: 60px;
  }

  .l-pickup.item-giants .txt-item .ttl img {
    height: 100px;
  }

  .pickup-box .txt-item,
  .l-pickup.reverse .pickup-box .txt-item {
    font-size: 1.3rem;
    margin: 2.2em 0 0;
  }

  .pickup-btn-wrap .btn-white-s {
    margin: 0 auto 14px;
    max-width: 290px;
  }

  .pickup-btn-wrap .btn-white-s > span {
    font-size: 1.3rem;
  }

  .pickup-btn-wrap .btn-white-s .arrow::after {
    width: 26px;
    height: 4px;
  }

  .l-pickup.item-giants .pickup-box .img-item {
    margin-top: -1.5em;
  }
}

/* ----- l-support ----- */

.l-support {
  position: relative;
  margin: 0 auto;
  max-width: 2000px;
}

.support-img {
  max-width: 1252px;
  width: 100%;
}

.support-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -4em;
}

.support-box .ttl {
  padding: 0 6%;
}

.support-box .ttl > img {
  max-width: 316px;
  width: 100%;
}

.support-box .txt-item {
  background: url(/action/cleague/assets/img/bg-support.jpg) no-repeat center/cover;
  padding: 6%;
  width: 56%;
}

.support-box .txt-item p {
  color: #fff;
  line-height: 1.95;
  margin-bottom: 1.4em;
}

@media screen and (max-width: 1280px) {
  .l-support .wrap100 {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .l-support {
    padding-top: 20px;
  }

  .l-support .ttl > img {
    margin-bottom: 1.2em;
    width: 280px;
  }

  .support-box {
    margin-top: 0;
  }

  .support-box .txt-item {
    font-size: 3.3vw;
    padding: 9% 4%;
    width: 100%;
  }
}

/* ----- l-other ----- */

.l-other .ttl > img {
  display: block;
  margin: 1em auto 2.5em;
  max-width: 660px;
  width: 100%;
}

.l-other .bnr-list li {
  margin-bottom: 3em;
}

@media screen and (max-width: 960px) {
  .l-other .ttl > img {
    margin: 0 auto 1.5em;
    max-width: 300px;
  }

  .l-other .bnr-list li {
    margin-bottom: 1.2em;
  }
}

/* ---------------- jeraについて ---------------- */

.about-sec-wrap {
  background: url(/action/cleague/jera/assets/img/bg-about001.jpg) repeat-y top center/100%;
}

.l-about {
  color: #505050;
}

.l-about.mv {
  background: url(/action/cleague/jera/assets/img/mv-about-pc.png) no-repeat center right/contain;
  margin-top: -50px;
  margin-bottom: 30px;
}

.l-about.mv,
.l-about.mv .lead-box {
  position: relative;
  height: 640px;
}

.l-about.mv .lead-box .item {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.l-about.mv .lead-box .txt-m {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.8rem;
  line-height: 1.9;
}

.l-about .ttl01 {
  margin-top: 3em;
}

.l-about .ttl01 > img {
  display: block;
  max-width: 800px;
  width: 100%;
}

.about-col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1em;
}

.about-col > div {
  width: 50%;
}

.about-col .txt-item {
  padding-right: 1em;
}

.about-col .txt-item > p {
  font-size: 1.8rem;
  line-height: 2.2;
}

.about-col .txt-item > p + p {
  margin-top: 2em;
}

.about-col .img-item > img {
  max-width: 640px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-about.mv {
    background: none;
    margin-top: 0;
  }

  .l-about.mv,
  .l-about.mv .lead-box {
    height: auto;
  }

  .l-about.mv .mv-img {
    width: 100%;
  }

  .l-about.mv .lead-box .item {
    position: static;
    transform: none;
  }

  .l-about.mv .lead-box .txt-m {
    font-size: 1.6rem;
  }

  .l-about .ttl01 {
    margin-top: 1.5em;
    margin-bottom: 0.2em;
  }

  .about-col {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }

  .about-col > div {
    width: 100%;
  }

  .about-col {
    align-items: center;
  }

  .about-col .txt-item {
    padding-right: 0;
    margin-top: 1em;
  }

  .about-col .txt-item > p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .about-col .txt-item > p + p {
    margin-top: 1.5em;
  }
}

/* ----- コンテンツ一覧 ----- */

.l-sub-logo {
  padding: 90px 0 0;
}

.l-sub-logo img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

.l-content-main {
  position: relative;
  padding: 50px 0 100px;
}

.l-content-main .content-wrap .note {
  display: block;
  font-size: 65%;
  margin-top: 1em;
}

.content-bg {
  position: relative;
  top: 6em;
}

.l-content-main .content-ura {
  top: 17em;
}

/*.l-content-main .content-bg > .bg-gray {
  top: 11em;
}*/

.content-bg.is-l {
  top: 11em;
}

.content-bg .bg-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
}

.content-bg .bg-gray {
  position: absolute;
  top: 20px;
  right: 0;
  width: 94%;
}

.content-wrap {
  text-align: center;
}

.ttl-01 .sub {
  height: 48px;
  margin-bottom: 35px;
}

.ttl-01 .hide-s {
  height: 100px;
}


.content-wrap .ttl-01 > img {
  display: block;
  margin: 0 auto 20px;
}

.content-wrap .ttl-03 > img,
.content-wrap .ttl-04 > img {
  margin: 0 auto;
  max-height: 42px;
}

.content-wrap .ttl-02 > img {
  margin: 0 auto;
  max-height: 104px;
}

.content-wrap .ttl-05 > img {
  margin: 0 auto;
  height: 85px;
}

.content-wrap .txt-l {
  font-size: 2.2rem;
  margin: 1.5em auto 2.5em;
}

.content-wrap .txt-l > span {
  font-size: 80%;
}

.content-item {
  box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.content-item.is-mascot {
  box-shadow: none;
  margin: 60px auto -20px;
  max-width: 1072px;
}

.content-item img {
  width: 100%;
}

.l-btn-bottom {
  padding: 40px 0 100px;
}

@media screen and (max-width: 960px) {
  .l-sub-logo {
    padding: 45px 0 5px;
  }

  .l-sub-logo img {
    max-width: 240px;
  }

  .l-content-main {
    padding: 0 0 50px;
  }

  .l-content-main:last-of-type {
    padding-bottom: 0;
  }

  .l-content-main .content-wrap .note {
    font-size: 80%;
  }

  .content-bg .bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .content-wrap .ttl-01 > img,
  .content-wrap .ttl-04 > img {
    max-height: 56px;
  }

  .content-wrap .ttl-02 > img {
    max-height: 120px;
  }

  .content-wrap .ttl-03 > img {
    max-height: 22px;
  }

  .content-wrap .ttl-05 > img {
    margin-bottom: -5px;
    height: 90px;
  }

  .content-wrap .txt-l {
    font-size: 1.5rem;
    margin: 1.8em auto 2.8em;
  }

  .content-item {
    box-shadow: 0px 2px 20px 0px rgb(64 64 64 / 30%);
  }

  .content-item.is-mascot {
    margin: 50px auto 0;
  }

  .content-bg {
    top: 10em;
  }

  .content-bg.is-l {
    top: 15.5em;
  }

  .l-btn-bottom {
    padding: 20px 0 100px;
  }
}

/* ----- マスコット写真集 ----- */

.l-photo {
  padding: 180px 0 100px;
}

.l-photo .content-bg {
  top: -17vw;
}

.content-wrap .ttl-photo > img {
  margin: 0 auto;
  max-height: 42px;
}

.l-photo .content-wrap .txt-l {
  color: #fff;
}

.l-photo .mascot-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -4em;
}

.l-photo .mascot-item {
  padding-bottom: 3px;
  margin-bottom: 4em;
  width: 47.3%;
}

.l-photo .mascot-item .ttl-s {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 15px;
}

.l-photo .mascot-item .ttl-s > span {
  display: block;
  font-size: 70%;
  font-weight: 700;
}

.l-photo .photo-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-photo .photo-list > li {
  margin-right: 3px;
}

.l-photo .photo-list > li:last-child {
  margin-right: 0;
}

.l-photo .mascot-item.is-gabi {
  background: rgb(249, 119, 9);
  background: linear-gradient(0deg, rgba(249, 119, 9, 1) 0%, rgba(215, 101, 4, 1) 100%);
}

.l-photo .mascot-item.is-tsuba {
  background: rgb(0, 61, 152);
  background: linear-gradient(0deg, rgba(0, 61, 152, 1) 0%, rgba(1, 49, 119, 1) 100%);
}

.l-photo .mascot-item.is-star {
  background: rgb(0, 63, 142);
  background: linear-gradient(0deg, rgba(0, 63, 142, 1) 0%, rgba(0, 50, 111, 1) 100%);
}

.l-photo .mascot-item.is-doara {
  background: rgb(0, 37, 105);
  background: linear-gradient(0deg, rgba(0, 37, 105, 1) 0%, rgba(0, 27, 75, 1) 100%);
}

.l-photo .mascot-item.is-tora {
  background: rgb(255, 226, 1);
  background: linear-gradient(0deg, rgba(255, 226, 1, 1) 0%, rgba(214, 190, 1, 1) 100%);
}

.l-photo .mascot-item.is-sly {
  background: rgb(255, 0, 0);
  background: linear-gradient(0deg, rgba(255, 0, 0, 1) 0%, rgba(203, 2, 2, 1) 100%);
}

.l-photo .photo-list img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-photo {
    padding: 80px 0 40px;
  }

  .l-photo .content-bg {
    top: -27vw;
  }

  .content-wrap .ttl-photo > img {
    max-height: 56px;
  }

  .l-photo .mascot-col {
    margin-bottom: -1.8em;
    flex-direction: column;
    align-items: center;
  }

  .l-photo .mascot-item {
    margin-bottom: 2.5em;
    width: 100%;
  }
}

/* ----- マスコット発電所訪問記 ----- */

.visit-bg {
  position: relative;
  top: -8vw;
}

.visit-bg > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.l-visit {
  padding: 40px 0 80px;
}

.l-visit .ttl-visit > img {
  margin: 0 auto;
  max-height: 42px;
}

.l-visit .txt-l {
  font-size: 2.4rem;
  margin: 1.2em auto 3em;
}

.l-visit .content-wrap .note {
  display: block;
  font-size: 60%;
  margin-top: 1em;
}

.l-visit .visit-wrap {
  margin-bottom: 10%;
}

.l-visit .visit-wrap:last-of-type {
  margin-bottom: 0 !important;
}

.l-visit .visit-item {
  max-width: 1000px;
  margin: 0 auto;
}

.l-visit .visit-item img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .visit-bg {
    top: -10vw;
    width: calc(100% + 150px);
    margin: 0 -75px;
  }

  .l-visit {
    padding: 0 0 20px;
  }

  .l-visit .txt-l {
    font-size: 1.7rem;
    margin: 1.5em auto 3.2em;
  }

  .l-visit .content-wrap .note {
    font-size: 75%;
  }

  .l-visit .ttl-visit > img {
    max-height: 56px;
  }

  .l-visit .visit-wrap {
    margin-bottom: 5em;
  }
}

/* ----- JERA セ・リーグ CHALLENGE ----- */

.l-challenge {
  color: #494949;
  text-align: center;
}

.l-challenge .ttl-logo > img {
  display: block;
  margin: 20px auto 0;
  max-width: 820px;
  width: 100%;
}

.l-challenge .lead-item {
  margin: 4em 0 3.5em;
}

.l-challenge .lead-item > p {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.8em;
}

.l-challenge .txt-catch > img {
  display: block;
  margin: 0 auto;
  max-width: 770px;
  width: 100%;
}

.l-challenge .txt-sub {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 1em;
}

.challeng-bnr-wrap {
  padding: 80px 0 30px;
}

.challeng-bnr-wrap .bnr-item {
  margin-bottom: 2.5em;
}

.team-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto 4em;
}

.team-list li {
  width: 16%;
}

.team-list a {
  display: block;
  margin: 0 auto;
  width: 120px;
}

.team-list .txt-cs {
  background: #e2e2e2;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 2px;
  margin: 8px auto 0;
  width: 80px;
}

.modal {
  display: none;
}

.clean_tit {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  padding-bottom: 14px;
  border-bottom: 3px solid #333;
  margin-bottom: 20px;
}

.clean_list li {
  font-size: 16px;
  line-height: 2;
}

.clean_list li::before {
  content: '> ';
  margin-right: 5px;
}

@media screen and (max-width: 960px) {
  .l-challenge .ttl-logo > img {
    margin: 0 auto;
    max-width: 230px;
  }

  .l-challenge .lead-item {
    margin: 2.5em 0;
  }

  .l-challenge .lead-item > p {
    font-size: 1.3rem;
  }

  .l-challenge .txt-catch > img {
    max-width: 330px;
  }

  .l-challenge .txt-sub {
    font-size: 1.6rem;
  }

  .challeng-bnr-wrap {
    padding: 40px 0 20px;
  }

  .challeng-bnr-wrap .bnr-item {
    margin-bottom: 2em;
  }

  .team-list {
    flex-wrap: wrap;
    margin-bottom: 3em;
  }

  .team-list li {
    margin-bottom: 10px;
    width: 33%;
  }

  .team-list a {
    width: 90px;
  }

  .clean_tit {
    font-size: 1.8rem;
    padding-bottom: 14px;
  }

  .clean_list li {
    font-size: 1.4rem;
  }
}

/* ----- シティクリーンプロジェクト ----- */

.l-clean {
  padding: 20px 0 40px;
}

.l-clean .mv-ttl {
  margin: -2em 0 2.5em;
}

.l-clean .mv-ttl > img {
  width: 100%;
}

.l-clean .catch-ttl {
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 2.5em;
}

.l-clean .note {
  font-size: 80%;
}

.l-clean .clean-item {
  color: #505050;
  line-height: 1.7;
}

.l-clean .clean-item .txt {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin: 2.5em 0;
}

.l-clean .clean-item .txt + .txt {
  margin-top: -1em;
}

.l-clean .clean-item .txt-l {
  font-size: 2.2rem;
  margin: 3.2em 0;
}

.l-clean .clean-item .txt-link {
  text-decoration: underline !important;
}

.l-clean .clean-item .total {
  margin: 6em 0;
}

.l-clean .clean-item .total.total-m {
  margin: 3em 0;
}

.l-clean .clean-item .total-txt {
  font-size: 1.8rem;
  margin: 0;
}

.l-clean .clean-item .total-txt span {
  font-size: 3.6rem;
  font-weight: 600;
}

.l-clean .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.l-clean .youtube iframe {
  width: 100%;
  height: 100%;
}

.l-clean .next {
  background-color: #ebeef0;
  border: 1px solid #707070;
  padding: 1.2em;
}

.l-clean .next .nxt-txt {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

/*スライダー*/
.slider {
  width: 100%;
  height: 100%;
}

.slider img {
  width: 100%;
  object-fit: cover;
}

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

.slick-slider .slick-prev,
.slick-slider .slick-next {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8196a2;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.slick-slider .slick-prev {
  left: 10px;
}

.slick-slider .slick-next {
  right: 10px;
}

.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}

.slick-slider .slick-prev::before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #fff;
}

.slick-slider .slick-next::before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
}

/*
.slick-dots li button:before {
    font-size: 20px;
}
*/

/*スライダー*/

@media screen and (max-width: 960px) {
  .l-clean .mv-ttl {
    margin: -2em -100px 2em;
    width: calc(100% + 200px);
  }

  .l-clean.dragons .mv-ttl {
    margin: -2em -80px 2em -100px;
    width: calc(100% + 180px);
  }

  .l-clean .catch-ttl {
    font-size: 2rem;
    margin-top: 2em;
  }

  .l-clean .clean-item .txt {
    font-size: 1.5rem;
  }

  .l-clean .clean-item .txt-l {
    font-size: 1.8rem;
    margin: 2em 0;
  }

  .l-clean .clean-item .total {
    margin: 3em 0;
  }

  .l-clean .clean-item .total.total-m {
    margin: 1.5em 0;
  }

  .l-clean .clean-item .total-txt {
    font-size: 1.5rem;
  }

  .l-clean .clean-item .total-txt span {
    font-size: 2.8rem;
  }
}

/* ----- 裏セ・リーグ会議 ----- */

.l-ura .content-bg {
  top: 6em;
}


.content-wrap .content-season4 .bg-green {
  top: -2.2vw;
  height: 720px;
}

/*.l-ura .content-bg .bg-green {
  top: -2.2vw;
  height: 720px;
}*/

.ttl-ura-l {
  margin-bottom: 2.2em;
}

.ttl-ura-l > img {
  display: block;
  margin: 0 auto 20px;
}

.l-ura .txt-l {
  margin-bottom: 1.5em;
}

.l-ura .ttl-note {
  font-size: 80%;
  margin-bottom: 1.5em;
}

.ttl-ura-l .sub {
  height: 48px;
  margin-bottom: 35px;
}

.ttl-ura-l .ttl-l {
  height: 100px;
}

.ura-box {
  /*display: flex;*/
  /*justify-content: flex-start;*/
  max-width: 840px;
  margin: 0 auto;
  padding: 4% 0 8%;
  position: relative;
  z-index: 1;
}

/*.ura-box .img-item {
  text-align: center;
}*/

/*.ura-box .txt-item {
  margin-left: 3.5%;
  width: 45%;
}*/

/*
.ura-box .txt-item .ttl img {
    display: block;
    width: auto;
    height: 80px;
}
*/

.ura-box .txt-item .ttl {
  color: #fff;
  font-family: 'Toppan Bunkyu Midashi Gothic', '游ゴシック', YuGothic, sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
}

.ura-box .txt-item p {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.95;
  padding: 4% 0 0;
  text-align: left;
}

.l-ura .btn-white-s {
  margin: 6% 0 0;
  max-width: 320px;
}

.l-ura .btn-white-s > span {
  font-size: 1.8rem;
}

.l-ura .yt-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*justify-content: center;*/
  margin-top: 2.3em;
}

.special:last-child {
  flex: 0 0 100%;
  margin: auto;
  margin-top: 2em;
}

.l-ura .yt-list .ttl-s {
  font-size: 1.8rem;
  margin-bottom: 0.8em;
}

.l-ura .yt-list > li {
  width: 32%;
  max-width: 380px;
}


@media screen and (max-width: 1480px) {
  .l-ura .content-bg .bg-green,
  .l-ura .content-bg .bg-gray {
    width: 100%;
    height: 680px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 960px) {
  .l-ura .content-bg .bg-green,
  .l-ura .content-bg .bg-gray {
    height: 68vw;
  }

  .ttl-ura-l .sub {
    height: 25px;
    margin-bottom: 20px;
  }

  .ttl-ura-l .ttl-l {
    height: 85px;
  }

  .ura-box {
    align-items: center;
    padding: 6% 0 16%;
    /*min-height: 100vw;*/
    max-width: 640px;
    margin: 0 auto;
  }

  /*.ura-box .img-item {
    width: 88%;
  }*/

  .ura-box .txt-item {
    margin: 1.5em 0 0;
    width: 100%;
  }

  .ura-box .txt-item .ttl {
    color: #fff;
    font-size: 1.8rem;
  }

  /*
    .ura-box .txt-item .ttl img {
        height: 50px;
    }
    */

  .ura-box .txt-item p {
    font-size: 1.3rem;
    padding: 4% 0 0;
  }

  .l-ura .btn-white-s {
    margin: 5% auto 0;
    max-width: 210px;
  }

  .l-ura .btn-white-s > span {
    font-size: 1.3rem;
  }

  .l-ura .yt-list {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .special:last-child {
    flex: 0 0 100%;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .l-ura .yt-list > li {
    margin-bottom: 1.5em;
    width: 100%;
  }

  .l-ura .yt-list .ttl-s {
    font-size: 1.4rem;
  }

}

/* TOP pickup 230802 */

.pickup-bg01 {
  margin-top: -6em;
}

.pickup-wrap-02 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  width: 100%;
}

.pickup-cont {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 5em;
}
.pickup-cont-item {
  color: #fff;
  flex: 1;
}
.pickup-cont-img {
  line-height: 0;
  overflow: hidden;
}
.pickup-cont-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
  font-weight: bold;
  line-height: 1.4;
  margin: 0.8em auto 0.6em;
  text-align: center;
  min-height: 4.2em;
}
.pickup-cont-ttl > span {
  font-size: 85%;
  font-weight: bold;
}
.pickup-cont-ttl > strong {
  display: block;
  margin-bottom: 0.2em;
  font-size: 120%;
}
.pickup-cont-challenge {
  background: #262626;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: -1px;
  text-align: center;
}
.pickup-cont-challenge .txt {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 10px 14px 10px 8px;
}
.pickup-cont-txt {
  font-size: 83.3%;
  letter-spacing: 0.02em;
  line-height: 1.8;
  padding-bottom: 1em;
  min-height: 8.2em;
}
.pickup-cont .btn-white-s {
  padding: 10px 12px;
  margin: 0.8em auto;
  max-width: 100%;
}
.pickup-cont .btn-white-s > span {
  font-size: 1.6rem;
}
.pickup-cont .btn-white-s .arrow::after {
  background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
  width: 42px;
  height: 7px;
}

@media screen and (max-width: 1280px) {
  .pickup-cont .btn-white-s > span {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 960px) {
  .pickup-bg01 {
    margin-top: 5em;
  }
  .top-pickup .inner {
    width: 100%;
  }
  .pickup-txt {
    padding: 0 4%;
  }
  .pickup-wrap {
    width: 100%;
  }
  .pickup-cont {
    margin-top: 2.5em;
  }
  .pickup-cont-item {
    margin: 0 1.2em;
  }
  .pickup-cont-ttl {
    font-size: 1.6rem;
  }
  .pickup-cont-txt {
    font-size: 1.2rem;
    min-height: 10em;
  }
  .pickup-cont .btn-white-s > span {
    font-size: 1.2rem;
  }
  .pickup-cont .btn-white-s {
    margin: 0.6em auto;
  }
  .pickup-cont .btn-white-s .arrow::after {
    background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
    width: 24px;
    height: 4px;
  }
  /* slick arrow */
  .top-pickup .slick-slider .slick-prev,
  .top-pickup .slick-slider .slick-next {
    background-color: transparent;
  }
  .top-pickup .slick-slider .slick-prev::before,
  .top-pickup .slick-slider .slick-next::before {
    content: none;
  }
  .top-pickup .slick-arrow {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0;
    width: 20px;
    height: 38px;
    color: transparent;
    z-index: 1;
    transition: opacity 0.5s;
    z-index: 1;
  }
  .top-pickup .slick-arrow:hover {
    opacity: 0.7;
  }
  .top-pickup .slick-next::before,
  .top-pickup .slick-next::after,
  .top-pickup .slick-prev::before,
  .top-pickup .slick-prev::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    vertical-align: middle;
  }
  .top-pickup .slick-next::after,
  .top-pickup .slick-prev::after {
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .top-pickup .slick-next {
    right: 20px;
  }
  .top-pickup .slick-next::after {
    right: 8px;
    transform: rotate(45deg);
  }
  .top-pickup .slick-prev {
    left: 20px;
  }
  .top-pickup .slick-prev::after {
    left: 8px;
    transform: rotate(-135deg);
  }
}

/* visit-record 230905 */

.visit-bg {
  pointer-events: none;
  top: -13vw;
}

.visit-bg-yt {
  top: -1vw;
}

.ttl-visit {
  color: #3f3f3f;
  font-size: 4.2rem;
  font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}

.visit-item-ttl {
  font-size: 3.2rem;
  font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.4em;
}

.visit-txt {
  text-align: center;
  margin-top: 1em;
}

.visit-note {
  font-size: 80%;
  margin-top: 2em;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .ttl-visit {
    font-size: 2.8rem;
  }
  .visit-item-ttl {
    font-size: 2.2rem;
  }
  .visit-txt {
    font-size: 1.4rem;
  }
}
