@charset "UTF-8";

@import url("common.css");
@import url("nav.css");


.flex{
  justify-content: center;
}

/* = SP ================================================ */

@media (min-width:320px) {
  .summary-sp{
    display: block;
  }
  .summary-pc{
    display: none;
  }
  @media (min-width:600px){
    .summary-sp{
      display: none;
    }
    .summary-pc{
      display: block;
    }
  }

  /* header
  -------------------------- */
  header{
    position:relative;
    top: 62px;
    margin-bottom:95px;
  }
  @media (min-width:600px){
    header{
      margin-bottom:120px;
    }
  }
  h1{
    position: relative;
    width:100%;
    height:auto;
    padding-top:28%;
    margin-bottom:4%;
  }
  h1 img{
    width:100%;
  }

  /* about
  -------------------------- */
  .about-img{
    width: 90%;
    max-width: 600px;
    margin-bottom: 2.4em;
    margin-top: 3em;
  }
  @media (min-width:600px){
    .about-img{
      margin-top: 0em;
      margin-bottom: 4em;
    }
  }
  .about-text h3{
    font-size: calc(2.4rem + 8 * (100vw - 375px)/393);
    line-height: 1.5;
    margin-bottom: 0.85em;
  }
  .about-desc{
    font-size: calc(1.6rem + 4 * (100vw - 375px)/393);
    line-height: 2;
    margin-bottom: 2.25em;
    text-align: justify;
  }
  @media (min-width:600px){
    .a-sp{
      display: none;
    }
    .a-pc{
      display: block;
    }
    .about-desc{
      text-align: center;
    }
  }
  .m-mark{
    color: #004da0;
    background: #fff362;
    padding: 0.25em;
  }

  .slider-wrapper{
    overflow: hidden;
    width: 100%;
    margin-bottom: 4.25em;
  }
  .slider {
    display: flex;
  }
  .slider__inner {
    display: flex;
  }
  .slider__inner:first-child {
    animation: loop 75s linear infinite;
  }
  .slider__inner:nth-child(2) {
    animation: loop2 75s -50s linear infinite;
  }
  .slider__inner:last-child {
    animation: loop3 75s -25s linear infinite;
  }
  @keyframes loop {
    0% {
      transform: translateX(200%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes loop2 {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-200%);
    }
  }
  @keyframes loop3 {
    0% {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-300%);
    }
  }
  .slider__item{
    width: 220px;
  }
  @media (min-width:600px){
    .slider-wrapper{
      margin-bottom: 5.5em;
    }
    .slider__item{
      width: 300px;
    }
  }
  .ribbon {
  display: inline-block;
  position: relative;
  height: 40px;/*リボンの高さ*/
  line-height: 40px;/*リボンの高さ*/
  text-align: center;
  padding: 0 40px;/*横の大きさ*/
  font-size: 16px;/*文字の大きさ*/
  background: #14171a;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  letter-spacing: 0.05em;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.ribbon:before, .ribbon:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
  }
.ribbon:before {
    top: 0;
    left: 0;
    border-width: 20px 0px 20px 15px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
  }
  .ribbon:after {
    top: 0;
    right: 0;
    border-width: 20px 15px 20px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
  }
  .summary-tll{
    font-size: calc(2.2rem + 7 * (100vw - 375px)/393);
    line-height: 1.2;
  }
  .summary-tll span{
    font-size: calc(1.4rem + 5 * (100vw - 375px)/393);
  }
  .summary-ul{
    margin: 2rem auto 4.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: solid 2px #14171a;
    border-bottom: solid 2px #14171a;
  }
  .summary-li{
    text-align: left;
    font-size: calc(1.6rem + 4 * (100vw - 375px)/393);
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: bold;
  }
  .summary-li::before{
    content:  ""; /* 空の要素作成 */
    width: 10px;               /* 幅指定 */
    height: 10px;              /* 高さ指定 */
    display: inline-block;     /* インラインブロックにする */
    background-color: #004da0;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 8px;          /* 余白指定 */
  }
  @media (min-width:600px){
  .ribbon {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }
  .summary-ul{
    margin: 2.5rem auto 8rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    max-width: 580px;
  }
    .summary-li{
      max-width: 580px;
      margin: auto;
      font-size: calc(1.6rem + 4 * (100vw - 375px)/393);
      line-height: 1.7;
    }
    .summary-li::before{
      top: -3px;
    }
  }
  .youtube{
    width: 100%;
    margin-bottom: 1.5em;
  }
  .youtube a{
    font-size: 1.4rem;
    font-weight: bold;
    border: 2px solid #14171a;
    background: #fff;
    padding: 1em 1.25em;
  }
  .youtube-flex{
    justify-content: space-between;
  }
  @media (min-width:600px){
    .youtube a{
      font-size: 1.6rem;
      width: 550px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2em;
    }
  }
  .yt-img{
    width: 10%;
    margin: auto 0;
  }
  .youtube a img{
    width: auto;
    height: 18px;
  }
  @media (min-width:600px){
    .yt-img{
      width: 12%;
    }
    .youtube a img{
      height: 22px;
    }
  }
  .yt-tx{
    width: 88%;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  @media (min-width:600px){
    .yt-tx{
      font-size: 1.6rem;
    }
  }

  /* contents
  -------------------------- */
  .contents, .about{
    position: relative;
  }
  @media (min-width:600px){
    .contents{
      padding-top: 36%;
    }
  }
  .sc-img, .a-img{
    position: absolute;
    display: block;
    width: 83%;
    height: fit-content;
    top: 4.5vh;
    left: 10vw;
    margin:0 auto;
    z-index: -1;
  }
  .a-img{
    top: 5.5vh;
  }
  @media (min-width:600px){
    .sc-img, .a-img{
      width: 72%;
      left: 14vw;
      z-index: -1;
    }
  }
  .i-bg{
    position: relative;
    padding: 1.5em 0;
  }
  .i-bg:nth-of-type(1){
    padding-top: 4em;
  }
  .i-bg::after{
    content: '';
    position: absolute;
    left:0%;
    top: 1%;
    transform: skewY(-26deg);
    transform-origin: center;
    z-index: -1;
    width:100%;
    height:100%;
    background:#e0d179;
  }
  .i-bg:nth-of-type(2)::after{
    background: #868e27;
  }
  .i-bg:nth-of-type(3)::after{
    background: #b58c4b;
  }
  .i-bg:nth-of-type(4)::after{
    background: #b58c4b;
  }
  .item{
    position: relative;
    width:100%;
    height:auto;
  }
  .item-inner{
    flex:1;
    padding:3em 2.5em 2em;
    background: #fff;
  }
  @media (min-width:600px){
    .item-inner{
      padding: 4.5em 3.75em 3.5em;
    }
  }
  .i-ttl-img{
    width: 75%;
    margin-bottom: 1.5em;
  }
  @media (min-width:600px){
    .i-ttl-img{
      width: 60%;
      margin-bottom: 2.5em;
    }
  }
  .supported h3, .followus h3{
    position:relative;
    display: inline-block;
    font-size: calc(3.3rem + 7 * (100vw - 375px)/393);
    color: #e0d179;
    margin-bottom:0.25em;
    letter-spacing: 0.1em;
  }
  .supported h3, .followus h3{
    text-shadow: #14171a 1px 1px 0px, #14171a -1px 1px 0px,
    #14171a 1px -1px 0px, #14171a -1px -1px 0px;
  }
  .i-bg:nth-of-type(3) h3{
    color: #868e27;
  }
  .i-bg:nth-of-type(4) h3{
    color: #b58c4b;
  }
  .i-h-1::after,.i-h-2::after,.i-h-3::after{
    content:"";
    position: absolute;
    display: inline-block;
    z-index: 1;
  }
  .i-h-1::after{
    background: url("../images/index/megahon.png") center /contain no-repeat;
    width:51%;
    height:200%;
    top:22%;
    left:44%;
    transform: translate(100%,-100%);
  }
  .i-h-2::after{
    background: url("../images/index/flag.png") center /contain no-repeat;
    width:28%;
    height:300%;
    top:75%;
    left:-2%;
    transform: translate(-100%,-100%);
  }
  @media (max-width:387px){
    .i-h-2::after{
      width:38%;
      height:169%;
      top:15%;
      left:18%;
      transform: translate(-100%,-100%);
    }
  }
  .i-h-3::after{
    background: url("../images/index/clap.png") center /contain no-repeat;
    width:59%;
    height:240%;
    top:18%;
    left:44%;
    transform: translate(100%,-100%);
  }
  .desc{
    font-size: calc(2rem + 4 * (100vw - 375px)/393);
    line-height: 1.3;
    border-bottom: 2px solid #14171a;
    padding-bottom:1em;
    margin-bottom: 1.25em;
  }
  @media (min-width:600px){
    .desc{
      font-size: calc(2rem + 8 * (100vw - 375px)/393);
      line-height: 1.35;
      padding-bottom:1.15em;
      margin-bottom: 1.5em;
    }
  }
  .i-funletter-img{
    border: 4px solid #e0d179;
    margin-bottom: 2em;
    position: relative;
  }
  .i-crosstalk-img{
    border: 4px solid #868e27;
    margin-bottom: 2em;
  }
  .i-goods-img{
    border: 4px solid #b58c4b;
    margin-bottom: 2em;
  }

  @media (min-width:600px){
    .i-funletter-img{
      border: 5px solid #e0d179;
      margin-bottom: 2.5em;
    }
    .i-crosstalk-img{
      border: 5px solid #868e27;
      margin-bottom: 2.5em;
    }
    .i-goods-img{
      border: 5px solid #b58c4b;
      margin-bottom: 2.5em;
    }
  }
  .contents-desc{
    font-size: calc(1.6rem + 4 * (100vw - 375px)/393);
    line-height: 1.6;
  }

  /* follow us
  -------------------------- */
  .followus{
    margin:36px 0;
    padding:0 6%;
  }
  .followus h3{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.7em;
  }

  /* supported
  -------------------------- */
  .followus, .supported{
    margin: 40px 0;
    padding:0 6%;
  }
  .supported h3{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.7em;
  }
  .mag{
    margin-bottom: 3%;
    height:100%;
    display: inline-flex;
  }
  .mag li:not(:last-child){
    margin-right:3%;
  }
  .mag li img{
    object-fit: cover;
    width:100%;
    height:100%;
  }
  .sponsored{
    margin: 3% 0 12%;
  }
  .s-logo-c{
    max-width: 170px;
    width: 43%;
    height:auto;
    margin:0 auto 10%;
  }
  .f-logo-sub{
    justify-content: space-between;
    width: 39%;
    margin: auto;
  }
  .f-logo-sub li{
    width: 44%;
  }
  .f-logo-sub-fb{
    padding-top: 3px;
  }
  .s-logo-sub li{
    width: calc(22vw - 52 * (100vw - 375px)/393);
    margin-top: auto;
    margin-bottom: auto;
  }
  .s-logo-sub li:nth-of-type(2){
    border-left: solid 1px #757778;
    padding-left: 5%;
    width: calc(20vw - 35 * (100vw - 375px)/393);
  }
  .s-logo-sub li:not(:last-child){
    margin-right:5%;
  }
  .mag li:active,.sponsored a:active{
    opacity: .6;
  }
  .s-logo-sub li a img{
    margin: auto;
  }

  @media (min-width:600px){
    .followus, .supported{
      margin:50px 0;
    }
    .followus h3, .supported h3{
      font-size: 3.4rem;
      margin-bottom: 0.25em;
    }
    .f-logo-sub{
      width: 30%;
    }
    .s-logo-sub{
      margin: auto;
    }
    }

  } /* = SP ============================================== */


  /* = PC ================================================ */

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

    /* header
    -------------------------- */
    header{
      margin-bottom: 150px;
    }
    .main1{
      position: absolute;
      display: block;
      top: 0;
      right: 0;
      max-width: 650px;
      width: calc(650 / 1400 * (100vw));
      transform: translate(-47%,20%);
    }
    h1{
      max-width: 920px;
      width: calc(920 / 1400 * (100vw));
      padding-top:19.5%;
      margin:0 auto 2.5%;
    }
    .date{
      position: absolute;
      top:60.5%;
      right:21%;
      transform: translate(0%,-50%);
    }
    .d-anime{
      width:15vw;
      height:15vw;
    }
    .d-inner{
      font-size: 4vw;
    }
    .d-inner2{
      font-size: 3vw;
    }
    .main2{
      max-width: 520px;
      width: calc(520 / 1400 * (100vw));
      margin-bottom: 1%;
    }
    .main3{
      font-size: calc(4.8rem + 37 * (100vw - 769px)/631);
      margin-left: 3%;
    }

    /* intro
    -------------------------- */
    .category{
      width:18%;
    }
    @media screen and (min-width:1000px) {
      .i-title{
        font-size: 5.6rem;
      }
    }
    .sub{
      font-size: calc(2.3rem + 5 * (100vw - 769px)/231);
      margin-bottom:0.1em;
      position: relative;
    }
    @media screen and (min-width:1000px) {
      .sub{
        font-size: 2.8rem;
      }
    }
    .i-lead{
      font-size: 2.5rem;
    }


    /* info
    -------------------------- */
    .info{
      margin: 9% 0 5%;
    }
    .info .flex{
      justify-content: space-between;
    }
    .i-block{
      flex: 1;
      margin:0;
      height: 300px;
    }
    .fb{
      width: 280px;
      margin-left: 35px;
    }
    .archive{
      display: inline-block;
    }
    .archive a{
      position: relative;
      transition: .3s;
      color: #004da0;
    }
    .archive a::after {
      content: "";
      position: absolute;
      width: 0;
      bottom: -3px;
      left: 0;
      height: 1px;
      background: #004da0;
      transition: .3s;
    }
    .archive a:hover::after {
      width: 100%;
    }

    /* about
    -------------------------- */
    .about-img{
      width: 100%;
      margin-top: 6em;
      margin-bottom: 5.75em;
    }
    .about-text h3{
      font-size: 3.5rem;
      line-height: 1.6;
      margin-bottom: 1em;
    }
    .about-desc{
      font-size: 2.15rem;
      line-height: 2.1;
      margin-bottom: 3.5em;
    }
    .content {
      width: 400px;
      height: 360px;
    }
    .ribbon {
    height: 50px;/*リボンの高さ*/
    line-height: 50px;/*リボンの高さ*/
    padding: 0 50px;/*横の大きさ*/
    font-size: 19px;/*文字の大きさ*/
    letter-spacing: 0.05em;
    margin-bottom: 2.75rem;
  }
  .ribbon:before {
      border-width: 25px 0px 25px 15px;
    }
    .ribbon:after {
      border-width: 25px 15px 25px 0px;
    }
    .summary-tll{
      font-size: 3.4rem;
      line-height: 1.1;
    }
    .summary-tll span {
      font-size: calc(1.5rem + 6 * (100vw - 769px)/631);
    }
    .summary-ul{
      margin: 2.75rem auto 8rem;
      padding-top: 2.75rem;
      padding-bottom: 2.75rem;
      max-width: 800px;
    }
      .summary-li{
        max-width: 640px;
        margin: auto;
        font-size: 2.0rem;
        line-height: 1.8;
      }
      .summary-li::before{
        width: 12px;
        height: 12px;
        top: -2px;
        margin-right: 10px;
      }
    .youtube{
      margin-bottom: 6%;
    }
    .youtube a{
      font-size: 2.2rem;
      background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 77, 160, 1) 50%);
      background-position: 0 0;
      background-size: auto 200%;
      transition: .3s;
      padding: 1em 4em;
      width: 100%;
    }
    .youtube a:hover {
      background-position: 0 100%;
      color: #fff;
    }
    .youtube a img{
      width: auto;
      height: 22px;
    }
    .yt-img{
      width: 12%;
    }
    .yt-tx{
      width: 88%;
    }
    .youtube p{
      font-size: 2.0rem;
    }


    /* contents
    -------------------------- */
    @media (min-width:838px){
    .sc-img{
      top:0;
      left:14vw;
      transform: translate(9%,4%);
    }
    .item-inner{
      padding: 6em 5em 5em;
    }
    .i-ttl-img{
      width: 52%;
      margin-bottom: 0.85em;
    }
    .item-inner h3{
      font-size: 4.4rem;
    }
    .i-h-1::after{
      top:65%;
      left:52%;
    }
    .desc{
      font-size:3.4rem;
      padding-bottom: 1em;
      margin-bottom: 1.45em;
    }
    .face li{
      width: 17.4%;
    }
    @media (min-width:1000px){
      .face li{
        width:144px;
        margin:0 10px 56px;
      }
    }
    .sc-img, .a-img{
      width: 67%;
      left: 17vw;
    }
    .i-bg{
      padding-bottom: 2em;
    }
    .i-funletter-img, .i-crosstalk-img, .i-goods-img{
      margin-bottom: 4.25em;
    }
    .contents-desc{
      font-size: 2.2rem;
      line-height: 1.7;
    }
    .slider-wrapper{
      margin-bottom: 8.5em;
    }
    @media (min-width:1000px){
      .slider__item{
        width: 350px;
      }
    }

    /* followus
    -------------------------- */
    .f-logo-sub{
      width: 17%;
    }

    /* supported
    -------------------------- */
    .supported{
      padding:0 6%;
    }
    .mag li:hover,.sponsored a:hover{
      opacity: .6;
      transition: .5s;
    }
    .sponsored{
      margin: 30px 0;
    }
    .s-logo-c{
      margin-bottom: 57px;
    }
    .s-logo-sub li{
      width: calc(22vw - 63 * (100vw - 375px)/393);
    }
    .s-logo-sub li:nth-of-type(2){
      width: calc(22vw - 68 * (100vw - 375px)/393);
    }
    .s-logo-sub li:not(:last-child){
      margin-right: 40px;
    }
    .s-logo-sub li:nth-of-type(2){
      padding-left: 40px;
    }
    .followus, .supported{
      margin: 60px 0;
    }
  }
  @media (min-width:1100px) {
    .s-logo-sub li img{
      width: 85%;
    }
  }

  @media (min-width:1400px) {
    h1{
      padding-top:220px;
    }
    .main3{
      font-size: 8.5rem;
    }
    .date{
      top: calc(60% - 7 * (100vw - 1400px)/520);
      right: calc(21% + 148 * (100vw - 1400px)/520);
    }
    .d-anime{
      width:205px;
      height:205px;
    }
    .d-inner{
      font-size: 6rem;
    }
    .d-inner2{
      font-size: 4.5rem;
    }
    } /* = PC ============================================== */
