@charset "UTF-8";

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

  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

:root {
  --text-white: #FFFFFF;
  --bold: 700;
  --medium: 500;
  --e-text: "oswald", sans-serif;
  --main-black: #000000;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 600;
  color: var(--text-white);
}


img {
  width: 100%;
  height: auto;
  display: block;
}

.back {
  position: fixed;
  top: 0;
  z-index: -4;
  width: 100%;
}

.back img {
  width: 100vw;
  height: 100lvh;
  object-fit: cover;
}

.kv {
  position: relative;
  height: 100lvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.sub-title {
  font-size: 1rem;
  line-height: 140%;
  width: fit-content;
}

.content {
  padding: 80px 0 0;
  width: 90%;
  margin: 0 auto;
}

.campaign {
  padding: 0;
}

h1 {
  font-size: 56px;
  width: fit-content;
}

.logo {
  max-width: 200px;
  margin: 16px 0 4px;
}

.date-title {
  font-size: 2.3rem;
  font-family: var(--e-text);
  margin: 12px 0 24px;
  width: fit-content;
}

.button {
  display: block;
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--text-white);
  text-align: center;
  padding: 8px 8px 10px;
  font-family: var(--e-text);
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--text-white);
  color: var(--main-black);
}

.button-bottom{
  margin-top: 16px !important;
}

.h2 {
  font-size: 1.4rem;
  text-align: center;
  font-family: var(--e-text);
  margin-bottom: 32px;
}


.youtube-box {
  max-width: 800px;
  margin: 0 auto;
}

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

.h3 {
  font-size: 2rem;
}

.campaign-ul {
  max-width: 700px;
  margin: 40px auto 0;
}

.campaign-ul li {
  border-top: 1px solid var(--text-white);
  padding: 40px 20px;
}

.campaign-ul h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.apple-title {
  font-size: 1.2rem;
  line-height: 130%;
}

.apple-text {
  font-size: 1.2rem;
  line-height: 160%;
  margin: 20px auto 32px;
}

.join {
  font-size: 0.9rem;
  text-align: left;
  line-height: 160%;
  width: fit-content;
  margin: 0 auto;
}

.join a {
  text-decoration: underline;
}

.join span {
  font-size: 0.8rem;
  font-weight: 300;
}

.notes{
  font-weight: 300;
}

.tieup {
  text-align: center;
}

.sakamotodays-kv {
  max-width: 400px;
  margin: 0 auto;
}

.copy-text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 130%;
  margin: 8px auto 10px;
}

.button-center {
  margin: 0 auto;
}

.anime-title {
  font-size: 1.3rem;
  line-height: 150%;
}

.anime-title span {
  font-size: 2rem;
}

.anime-title-2 {
  margin: 4px auto 24px;
}

.tour-h3 {
  max-width: 400px;
  margin: 0 auto;
  pointer-events: none;
}

.tour-list {
  text-align: center;
  max-width: 700px;
  margin: 8px auto 0;
}

.tour-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 400;
  border-bottom: 1px solid var(--text-white);
  padding: 10px 0;
}

.date {
  width: 25%;
}

.area {
  width: 15%;
}

.venue {
  width: 60%;
}

.date-tag,
.area-tag,
.venue-tag {
  font-size: 0.8rem;
}

.tour-list-date {
  font-size: 1.4rem;
}

.tour-list-week {
  font-size: 0.8rem;
}

.arena {
  margin: 80px auto 72px;
}

.footer {
  background-image: url(../img/footer-back.svg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 56px 0 10px;
  margin-top: 120px;
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto;
}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 24px auto 56px;
}

.sns-link a {
  transition: all 0.2s ease;
}

.sns-link a:hover {
  opacity: 0.5;
}

.sns-link img {
  width: 100%;
  height: 40px;
  object-fit: contain;
}

.copy {
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 1000px) {
  .kv-content {
    max-width: 800px;
  }

  h1 {
    font-size: 48px;
  }

  .date-title {
    font-size: 2rem;
  }

  .button {
    max-width: 345px;
  }
}

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

  .kv {
    min-height: 900px;
  }

  .kv-content {
    max-width: 400px;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  .tour-list{
    margin: 10px auto 0;
  }

  .date-title {
    font-size: 2.3rem;
  }

  .button-kv {
    max-width: 500px;
  }

  .sakamotodays-kv {
    max-width: 300px;
  }

  .copy-text {
    margin: 8px auto 20px;
  }

  .anime-title {
    font-size: 1.2rem;
  }

  .anime-title span {
    font-size: 1.8rem;
  }

  .anime-title-2 {
    margin: 4px auto 40px;
  }

  .campaign-ul h4 {
    font-size: 1.3rem;
  }

  .apple-title {
    font-size: 0.9rem;
    line-height: 140%;
  }

  .apple-text {
    font-size: 1rem;
  }
}

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

  .kv {
    min-height: 750px;
  }

  .kv-content {
    max-width: 320px;
  }

  h1 {
    font-size: 44px;
  }

  .button {
    font-size: 0.9rem;
  }

  .date-title {
    font-size: 1.8rem;
  }

  .h3 {
    font-size: 1.6rem;
  }

  .campaign-ul {
    margin: 24px auto 0;
  }

  .campaign-ul li {
    padding: 24px 10px;
  }

  .campaign-ul h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .h2 {
    font-size: 1.2rem;
  }

  .join {
    font-size: 0.8rem;
  }

  .date,
  .area,
  .venue {
    font-size: 0.9rem;
  }

  .tour-list-date{
    font-size: 1.2rem;
  }

  .arena{
    margin: 64px auto 56px;
  }
}