@charset "UTF-8";
/*========================
このcssファイルはsassから生成されていますので、
編集しないようにご注意ください。
=========================*/
/*reset*/
* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

header a,
footer a {
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  flex-shrink: 0; /*IE画像 flexで変倍*/
  image-rendering: -webkit-optimize-contrast; /*Chromeの画像ボケ*/
}

li {
  list-style: none;
}

iframe {
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  text-decoration: none;
}

/*$index: ;
$angle: calc(360deg / 8 * $index);
$x: calc(cos(var($angle)) * 30px);
$y: calc(sin(var($angle)) * 30px);*/
html {
  scroll-padding-top: calc(clamp(1.875rem, 1.8028846154rem + 0.0032051282 * 100vw, 2.1875rem) + 20px);
  scroll-behavior: smooth;
  touch-action: manipulation;
  font-family: "YuGothic", "Yu Gothic", "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
}

body {
  box-sizing: border-box;
  background-color: white;
  font-size: 1rem;
  line-height: 1.6;
  color: white;
}

/*.webp body{
	background: url("../images/bg_space.webp") no-repeat repeat center;
	background-size: contain;
}*/
/*.no-webp body{
	background: url("../images/bg_space.jpg") no-repeat repeat center;
	background-size: contain;
}*/
.wrapper {
  margin: 0 auto;
  overflow-x: clip;
}

picture {
  display: block;
}

main {
  margin-inline: auto;
  font-size: clamp(1rem, 0.9711538462rem + 0.0012820513 * 100vw, 1.125rem);
  max-width: 120rem;
}
main .break {
  text-indent: 0;
}

/*切りの良い改行*/
.break {
  display: inline-block;
}

/*フロート*/
.float_l {
  float: left;
}

.float_r {
  float: right;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width:768px) {
  .sp_only {
    display: none;
  }
}

.no_sp {
  display: none;
}
@media screen and (min-width:768px) {
  .no_sp {
    display: block;
  }
}

.tab_only {
  display: none;
}
@media screen and (min-width:768px) {
  .tab_only {
    display: block;
  }
}
@media screen and (min-width:900px) {
  .tab_only {
    display: none;
  }
}

.no_tab {
  display: block;
}
@media screen and (min-width:768px) {
  .no_tab {
    display: none;
  }
}
@media screen and (min-width:900px) {
  .no_tab {
    display: block;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width:900px) {
  .pc_only {
    display: block;
  }
}

@media screen and (min-width:900px) {
  .no_pc {
    display: none;
  }
}

/*================================================
 *  header
 ================================================*/
h2 picture {
  margin-inline: auto;
  margin-bottom: 1.5em;
  translate: -1.5em 0;
  height: clamp(6.25rem, 3.296875rem + 0.13125 * 100vw, 11.5rem);
  width: auto;
  text-align: center;
}
h2 picture img {
  height: 100%;
  width: auto;
}

/*================================================
 * 各セクション
 ================================================*/
/*================================================
 * グリッドレイアウト
 ================================================*/
.grid_box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.625rem, 1fr));
  gap: 1em;
  width: min(90%, 81.25rem);
  margin-inline: auto;
}

/*================================================
 * フレックスレイアウト
 ================================================*/
.flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width:800px) {
  .flex_box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

/*================================================
 * カードレイアウト
 ================================================*/
.card {
  display: grid;
  grid-template-rows: subgrid;
  overflow: hidden;
  position: relative;
  background-color: white;
  box-shadow: 2px 2px 5px 0 rgba(200, 200, 200, 0.3);
  border-radius: 15px;
  grid-row: span 5;
  gap: 0.8em 0;
  border: solid black 0.5em;
}
.card :where(a) .instagram {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 7px;
  border-radius: 10px;
  width: 60px;
  height: auto;
  z-index: 3;
}
.card :where(a) .instagram:hover {
  filter: opacity(0.8);
}
@container card (min-width: 31.25rem) {
  .card :where(a) .instagram {
    width: 40px;
    padding: 3px;
  }
}
@media screen and (min-width:752px) {
  .card :where(a) .instagram {
    width: min(19%, 3.75rem);
    padding: 5px;
  }
}
@media screen and (min-width:1138px) {
  .card :where(a) .instagram {
    width: min(20%, 3.125rem);
    padding: 5px;
  }
}

.card_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.img_box {
  position: relative;
}
.img_box img {
  width: 100%;
}

.text_box {
  padding: 0.5em 1em 1em 1em;
  width: 100%;
  height: 100%;
}

.title, .shop_name {
  width: 100%;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: clamp(1.25rem, 0.6191588785rem + 0.0280373832 * 100vw, 1.625rem);
}
@media screen and (min-width:752px) {
  .title, .shop_name {
    font-size: clamp(1.3125rem, 0.9719202899rem + 0.0072463768 * 100vw, 1.5rem);
  }
}

.detail {
  margin: 0.5em 0;
  font-size: clamp(0.875rem, 0.6637323944rem + 0.0093896714 * 100vw, 1rem);
  line-height: 1.4;
}
@media screen and (min-width:752px) {
  .detail {
    font-size: clamp(0.9375rem, 0.8154220779rem + 0.0025974026 * 100vw, 1rem);
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  position: relative;
  padding: 4em 0 0.8em;
  background-color: #4ba149;
  font-size: clamp(0.6875rem, 0.6586538462rem + 0.0012820513 * 100vw, 0.8125rem);
  text-align: center;
  color: white;
}
footer .woods_container {
  position: absolute;
  top: 0;
  left: 0;
  height: min(13vw, 5.625rem);
  width: 100%;
  translate: 0 -75%;
  background-image: url("../images/woods.png");
  background-repeat: repeat no-repeat;
  background-size: contain;
}

/*visual*/
#title {
  position: relative;
  aspect-ratio: 767/1298;
  background-image: url("../images/title_sp.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
}
@media screen and (min-width:768px) {
  #title {
    aspect-ratio: 1920/1298;
    background-image: url("../images/title_pc.jpg");
  }
}
#title .tvstation {
  text-align: center;
  position: absolute;
  top: clamp(0.5rem, -0.1633906634rem + 0.0294840295 * 100vw, 1.25rem);
  left: 50%;
  translate: -50% 0;
  width: 90%;
}
@media screen and (min-width:768px) {
  #title .tvstation {
    -moz-text-align-last: left;
         text-align-last: left;
    top: clamp(0.25rem, 0.0192307692rem + 0.0102564103 * 100vw, 1.25rem);
    left: clamp(0.25rem, 0.0192307692rem + 0.0102564103 * 100vw, 1.25rem);
    translate: 0 0;
    width: 45%;
  }
}
#title picture[class^=title] {
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
#title picture[class^=title] img {
  width: 100%;
}
#title .title_logo {
  top: 7%;
  width: 72%;
}
@media screen and (min-width:768px) {
  #title .title_logo {
    top: 7%;
    width: 42%;
  }
}
#title .title_daytime {
  top: 38%;
  width: 60%;
}
@media screen and (min-width:768px) {
  #title .title_daytime {
    top: 60%;
    width: 63%;
  }
}

/*stream*/
.sec_catch .stream {
  margin-bottom: 3em;
}
@media screen and (min-width:768px) {
  .sec_catch .stream {
    margin-bottom: 6em;
  }
}
.sec_catch .stream p {
  position: relative;
  text-align: center;
  margin-bottom: 0.3em;
  font-size: clamp(1rem, 0.82421875rem + 0.0078125 * 100vw, 1.3125rem);
  background-color: black;
  width: min(90%, 43.75rem);
  margin-inline: auto;
  padding: 0.5em 1em;
  font-family: "wanpaku-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.sec_catch .stream .inner {
  padding: 1.5em;
}
.sec_catch .stream .inner .grid_box {
  max-width: 18.75rem;
  margin: 0 auto;
  margin-bottom: 0.2em;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5em;
}
@media screen and (min-width:445px) {
  .sec_catch .stream .inner .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 50rem;
  }
}
@media screen and (min-width:768px) {
  .sec_catch .stream .inner .grid_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 62.5rem;
  }
}
.sec_catch .stream .inner .grid_box a {
  width: 100%;
}

/*catch*/
.sec_catch {
  background-color: #004680;
  padding: clamp(2.8125rem, 1.2980769231rem + 0.0673076923 * 100vw, 9.375rem) 0;
}

.catch_text {
  margin-inline: auto;
  width: 85%;
  margin-bottom: calc(clamp(2.8125rem, 1.2980769231rem + 0.0673076923 * 100vw, 9.375rem) * 0.6);
  text-align: center;
  background-image: url("../images/catch_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  font-family: "wanpaku-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.catch_text p {
  font-size: clamp(1.0625rem, 0.6586538462rem + 0.0179487179 * 100vw, 2.8125rem);
  rotate: 0.03deg;
  letter-spacing: 0.05em;
}
.catch_text p:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.catch_text p span:not(.strong) {
  display: inline-block;
}
.catch_text p .yellow {
  color: #ffff00;
}
.catch_text p .orange {
  color: #ffb606;
}
.catch_text p .strong {
  font-size: 110%;
  vertical-align: -0.03em;
}

.sec_movie {
  position: relative;
  width: 90%;
  max-width: 750px;
  margin-inline: auto;
  aspect-ratio: 16/9;
  z-index: 1;
}
.sec_movie video, .sec_movie iframe {
  width: 100%;
  height: 100%;
}

/*performer*/
.sec_performer {
  padding: clamp(2.8125rem, 1.2980769231rem + 0.0673076923 * 100vw, 9.375rem) 0 calc(clamp(2.8125rem, 1.2980769231rem + 0.0673076923 * 100vw, 9.375rem) * 1.2);
  background-image: url("../images/danboll_patarn.jpg");
  background-repeat: repeat;
  background-size: 31.25rem;
  background-position: top left;
}
@media screen and (min-width:768px) {
  .sec_performer {
    background-size: 50rem;
  }
}
.sec_performer .performer_box {
  margin-inline: auto;
  width: min(90%, 40.625rem);
}
.sec_performer .performer_kotoge {
  rotate: -2deg;
  margin-bottom: 2em;
}
.sec_performer .performer_asahi {
  rotate: 2deg;
}

/*photo*/
.sec_photo {
  position: relative;
  height: min(50vw, 20.625rem);
}
@media screen and (min-width:768px) {
  .sec_photo {
    height: clamp(19.375rem, 18.9583333333rem + 0.0086805556 * 100vw, 20rem);
  }
}
.sec_photo picture[class^=photo] {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 100% 0;
  width: min(80%, 30rem);
  animation-name: gatagata, gogo;
  animation-duration: 0.5s, 10s;
  animation-fill-mode: both, both;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
}
@media screen and (min-width:768px) {
  .sec_photo picture[class^=photo] {
    animation-duration: 0.5s, 8s;
  }
}
@media screen and (min-width:1190px) {
  .sec_photo picture[class^=photo] {
    animation-duration: 0.5s, 12s;
  }
}
.sec_photo .photo_siitake {
  animation-delay: 5s;
}
@media screen and (min-width:768px) {
  .sec_photo .photo_siitake {
    animation-delay: 4s;
  }
}
.sec_photo .photo_nikaido {
  animation-delay: 10s;
}
@media screen and (min-width:768px) {
  .sec_photo .photo_nikaido {
    animation-delay: 8s;
  }
}

@keyframes gatagata {
  0% {
    bottom: -5px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes gogo {
  0% {
    translate: 100% 0;
  }
  100% {
    translate: -100vw 0;
  }
}/*# sourceMappingURL=style.css.map */