*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  width:100%;
  min-height:100%;
  font-family:"Noto Sans JP", sans-serif;
}

.page{
  position:relative;
  width:100%;
  min-height:100svh;
  padding:24px 36px;
  overflow:hidden;
}

@media (max-width:480px){

  .page{
    padding:16px;
  }

}

.bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
}

/* ロゴ */
.logo{
  width:100%;
  max-width:600px;
  margin:0 auto;
}  

.logo img{
  width:250px;
  display:block;
}

@media (max-width:480px){

  .logo{
    max-width:100%;
  }

  .logo img{
    width:120px;
  }

}


/* 配信先リスト */
.section-streaming{
  width:100%;
  max-width:600px;
  margin:60px auto 60px;
}

.section-streaming img{
  width:60%;
  display:block;
  margin:0 auto;
  margin:16px auto;
}

.stream-button{
  position:relative;
  display:block;
  width:100%;
  max-width:600px;
  margin:0 auto 16px;
  text-decoration:none;
  transition:transform .12s ease;
  transform-origin:center center;
}

.stream-button:active{
  transform:scale(.97);
}

.btn-bg{
  width:100%;
  display:block;
}

.stream-button > span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  font-size:22px;
  font-weight:500;
  white-space:nowrap;
}

.stream-label{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:90%;
  text-align:center;
}

.stream-label .line1{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:8px;
}

.stream-label .service{
  font-size:22px;
  font-weight:700;
}

.stream-label .title{
  font-size:16px;
  font-weight:500;
  line-height:1;
}

.stream-label .region{
  display:block;
  font-size:16px;
  font-weight:400;
  line-height:1.1;
  margin-top:1px;
}

@media (max-width:480px){

  .section-streaming img{
    margin:24px auto 0;
  }

  .stream-button > span{
    font-size:16px;
  }

  .section-streaming{
    margin:16px auto 24px;
  }

  .stream-label{
    width:96%;
  }

  .stream-label .line1{
    gap:4px;
  }

  .stream-label .service{
    font-size:16px;
  }

  .stream-label .title{
    font-size:12px;
  }

  .stream-label .region{
    font-size:12px;
  }

}

/* backボタン */
.back-button{
  position:fixed;
  bottom:20px;
  left:24px;
  z-index:100;
  left:max(24px, calc((100vw - 600px) / 2));
}

.back-button img{
  width:200px;
  display:block;
  transition:transform .12s ease, opacity .12s ease;
  will-change:transform;
}

.back-button:active img{
  transform:translateY(2px) scale(.97);
  opacity:.85;
}

@media (max-width:480px){

  .back-button{
    max-width:100%;
  }

  .back-button img{
    width:120px;
  }

}


/* コピーライト */
.copyright{
  width:100%;
  max-width:600px;
  margin:24px auto;
  text-align:center;
  font-size:10px;
  line-height:1.5;
  color:#fff;
}

@media (max-width:480px){

  .copyright{
    margin:16px auto;
  }
}