/* =================================
   TopPage
==================================== */
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

form ::-webkit-input-placeholder {
  color: #C6C6C6;
}
form :-moz-placeholder {
  opacity: 1;
  color: #C6C6C6;
}
form ::-moz-placeholder {
  opacity: 1;
  color: #C6C6C6;
}
form :-ms-input-placeholder {
  color: #C6C6C6;
}

::-moz-selection {
  color: #FFF;
  background: rgba(0, 155, 230, 0.7);
}

::selection {
  color: #FFF;
  background: rgba(0, 155, 230, 0.7);
}

/*==============================
TOP contents
==============================*/
.l-mv {
  margin-top: min(3.6em, 7.5vw);
  margin-bottom: min(4em, 8.3vw);
}
@media only screen and (max-width: 767px) {
  .l-mv {
    margin-bottom: 0;
  }
}

.mv-swiper .swiper-slide {
  max-width: calc(960px + 6.25%);
  margin: 0 auto;
  padding: 0 3.125%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mv-swiper .mv-img {
  width: 94.8%;
  margin-left: auto;
  border-radius: 0 6.25em 0 0;
  overflow: hidden;
  position: relative;
}
.mv-swiper .mv-img:before {
  content: "";
  display: block;
  width: calc(100% - 1.25em);
  height: calc(100% - 1.25em);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 0 6.25em 0 0;
  -webkit-transition: border 0.3s, width 0.3s, height 0.3s;
  transition: border 0.3s, width 0.3s, height 0.3s;
  z-index: 1;
}
.mv-swiper .mv-txt {
  opacity: 0;
  -webkit-transform: translate(3em, 0);
          transform: translate(3em, 0);
  -webkit-transition: opacity 0s, -webkit-transform 0;
  transition: opacity 0s, -webkit-transform 0;
  transition: opacity 0s, transform 0;
  transition: opacity 0s, transform 0, -webkit-transform 0;
  background: #fff;
  color: #009BE6;
  font-weight: 700;
  font-size: min(1.5em, 4vw);
  font-weight: 700;
  line-height: 1 0.5;
  padding: 0.625em 1.25%;
  position: relative;
  z-index: 1;
}
.mv-swiper .swiper-slide-active .mv-txt {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.5s ease-in-out 0.5s, -webkit-transform 0.5s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out 0.5s, -webkit-transform 0.5s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out 0.5s, transform 0.5s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out 0.5s, transform 0.5s ease-in-out 0.5s, -webkit-transform 0.5s ease-in-out 0.5s;
}
@media (hover: hover) {
  .mv-swiper a:hover .mv-img img, .mv-swiper a:active .mv-img img {
    opacity: 1;
  }
  .mv-swiper a:hover .mv-img:before, .mv-swiper a:active .mv-img:before {
    border-color: #009BE6;
    border-width: 5px;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .mv-swiper .mv-txt {
    max-width: min(600px, 73%);
    margin-top: -2.8em;
  }
}
@media only screen and (max-width: 767px) {
  .mv-swiper .mv-txt {
    max-width: 90%;
    margin-top: -1em;
  }
}

.thumbs-swiper .swiper-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: -10px;
}
.thumbs-swiper .swiper-slide {
  max-width: 5em;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-mask-image: url(../img/top/frame.svg);
          mask-image: url(../img/top/frame.svg);
  aspect-ratio: 1;
}
.thumbs-swiper .swiper-slide img {
  opacity: 0.5;
  vertical-align: baseline;
}
.thumbs-swiper .swiper-slide .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbs-swiper .swiper-slide .frame path {
  stroke: #009BE6;
  stroke-width: 5px;
  stroke-dasharray: 1000px;
  stroke-dashoffset: 1000px;
}
@media (hover: hover) {
  .thumbs-swiper .swiper-slide:hover {
    background: rgba(0, 155, 230, 0.5);
  }
}
.thumbs-swiper .swiper-slide-thumb-active img {
  opacity: 1;
}
.thumbs-swiper .swiper-slide-thumb-active path {
  -webkit-animation: svg-anime 30s;
          animation: svg-anime 30s;
}
@media only screen and (min-width: 768px) {
  .thumbs-swiper {
    max-width: min(350px, 25%);
  }
}
@media only screen and (min-width: 1040px) {
  .thumbs-swiper {
    margin: -4em calc((100% - 960px) / 2) 0 auto;
  }
}
@media only screen and (max-width: 1039px) {
  .thumbs-swiper {
    margin: -4em 3.125% 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .thumbs-swiper {
    margin-top: 0;
    max-width: 50%;
  }
}

@-webkit-keyframes svg-anime {
  0% {
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes svg-anime {
  0% {
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.top-cat {
  padding: min(5em, 10.4vw) 0;
}

.top-about {
  padding: min(5em, 10.4vw) 0;
}
.top-about .top-about-img img {
  border-radius: 0.5em;
  -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.0784314);
          box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.0784314);
}
.top-about .top-about-txt p {
  line-height: 1.75;
  font-weight: 500;
}
.top-about .top-about-txt p + p {
  margin-top: 1.75em;
}
@media only screen and (min-width: 768px) {
  .top-about .top-about-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1em 7%;
  }
  .top-about .top-about-img {
    width: 40%;
  }
  .top-about .top-about-txt {
    width: 53%;
  }
}
@media only screen and (max-width: 767px) {
  .top-about .top-about-img {
    margin-bottom: 2em;
    text-align: center;
  }
}

.top-friend {
  padding: min(5em, 10.4vw) 0;
}
.top-friend .top-friend-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.top-friend .top-friend-list li {
  display: contents;
}
.top-friend .top-friend-list a {
  text-align: center;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.25;
  max-width: 15em;
  width: 100%;
  margin: 0 auto;
}
@media (hover: hover) {
  .top-friend .top-friend-list a:hover img, .top-friend .top-friend-list a:active img {
    opacity: 1;
  }
  .top-friend .top-friend-list a:hover .top-friend-icon:after, .top-friend .top-friend-list a:active .top-friend-icon:after {
    width: 65%;
  }
}
.top-friend .top-friend-txt {
  margin-bottom: 2em;
  padding-right: 2em;
  padding-left: 1em;
  font-size: min(1.25em, 2.3vw);
  font-weight: 500;
  background: url(../img/common/arw_01.svg) no-repeat right center/0.5em;
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
.top-friend .top-friend-icon {
  position: relative;
}
.top-friend .top-friend-icon img {
  max-width: 56%;
}
.top-friend .top-friend-icon:after {
  content: "";
  width: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(0, 155, 230, 0.1);
  mix-blend-mode: multiply;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.card-slide .swiper-ctrl {
  height: 3.125em;
}
.card-slide .swiper-pagination {
  top: 0;
  bottom: auto !important;
}
.card-slide .swiper-pagination-bullet {
  background: #333;
  opacity: 1;
  margin: 0 0.3125em;
  width: 0.625em;
  height: 0.625em;
  vertical-align: top;
}
.card-slide .swiper-pagination-bullet-active {
  background: #009BE6;
}
.card-slide .md-player-card a > p {
  min-height: 1.7em;
  margin-bottom: 0.7em;
  font-size: 0.875em;
}

.top-pickup {
  padding: min(5em, 10.4vw) 0;
  background: #f7f7f7;
}

.top-info {
  padding: min(5em, 10.4vw) 0;
}

.top-magazine {
  padding: min(5em, 10.4vw) 0;
  background: #f7f7f7;
}
.top-magazine .top-magazine-box {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .top-magazine .top-magazine-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875em 0.9375em;
  }
}
@media only screen and (max-width: 767px) {
  .top-magazine .top-magazine-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875em 0.9375em;
  }
}