@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

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

  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}

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

  .sp {
    display: block;
  }
}


@media screen and (max-width: 500px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

@media screen and (min-width: 501px) {
  .br-sp {
    display: none;
  }

  .br-pc {
    display: block;
  }
}

:root {
  --text-white: #FFFFFF;
  --bold: 700;
  --medium: 500;
  --e-text: "Rubik", sans-serif;
  --main-black: #000000;
  --main-blue: #304853;
  --main-gray: #363636;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: var(--main-black);
}


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

.heart-button {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 100;
  animation: fluffy 3s infinite;
}

.heart-button a {
  transition: all 0.2s ease;
}

.heart-button a:hover {
  filter: opacity(0.6);
}

@keyframes fluffy {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

#heart-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}

.falling-heart {
  position: absolute;
  top: -60px;
  opacity: 0;
  animation: fallDown linear infinite;
}

@keyframes fallDown {
  0% {
    transform: translateY(0) rotate(var(--rot-start));
    opacity: var(--alpha);
  }

  95% {
    opacity: var(--alpha);
  }

  100% {
    transform: translateY(120vh) rotate(var(--rot-end));
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  .falling-heart {
    scale: 0.8;
    transform-origin: top left;
  }
}



.kv {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  height: 100%;
  background: #ffffff;
  color: var(--main-black);
}

.kv .kv_jacket {
  width: 56%;
}

.kv_logo {
  width: 44%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.kv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.kv-img img {
  object-fit: contain;
  height: 100%;
}

.kv-img {
  flex-shrink: 0;
}

.kv-content p:nth-child(1) {
  font-size: 40px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.kv-content h1 {
  font-size: 56px;
  font-family: var(--e-text);
  font-weight: 600;

}

.date {
  font-family: var(--e-text);
  font-size: 40px;
  margin: 10px auto 32px;
  font-weight: 400;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: var(--e-text);
  color: var(--main-black);
  border: 1px solid var(--main-black);
  font-size: 20px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--main-black);
  color: #ffffff;
}

.section-black {
  background: var(--main-gray);
  color: #ffffff;
}

.section-white {
  background: #ffffff;
  color: #000000;
}


.section {
  padding: 80px 0;
}

.section-front {
  padding: 0;
}

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

.heart-front {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 99;
  padding: 80px 0;
  margin: 0 auto;
  width: 100%;
}

.heart-front-2 {
  position: relative;
  z-index: 99;
  background-color: rgba(54, 54, 54, 0.6);
  backdrop-filter: blur(20px);
  padding: 80px 0;
  width: 100%;
}

.tour-content {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: var(--e-text) !important;
  text-align: center;
}

.poster {
  max-width: 500px;
  margin: 0 auto;
}



.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid #000000;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 400;
}

.button-content:hover {
  background: #000000;
  color: #FFFFFF;
}

.button-content-campaign {
  border: 1px solid #b9b9b9;
}

.button-content:hover {
  background: #000000;
  color: #ffffff;
}

.campaign-title {
  text-align: center;
}

.campaign-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 140%;
}

.campaign-title p {
  font-weight: 400;
  line-height: 150%;
}


.cmapaign-ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 40px auto 0;
  max-width: 800px;
}

.cmapaign-ul>li:nth-child(1) {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.cmapaign-h3 {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #000000;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b9b9b9;
}

.cmapaign-text {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}

.cmapaign-date span {
  font-size: 14px;
  margin-left: 2px;
  margin-right: 4px;
}

.campaign-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}

.campaign-step li {
  display: flex;
  gap: 4px;
  line-height: 150%;
}

.campaign-step li a {
  text-decoration: underline;
}

.campaign-notes {
  font-size: 14px;
  font-weight: 300;
}

.cmapaign-info-text {
  text-align: center;
  line-height: 150%;
  margin-bottom: 24px;
  font-weight: 400;
}

.campaign-step-info {
  font-size: 14px;
  font-weight: 200;
  line-height: 150% !important;
  padding-left: 16px;
  margin-top: 6px;
}

.cmapaign-pre {
  font-size: 16px;
  line-height: 140%;
}

.customer-name {
  text-align: center;
  font-weight: 400;
}

.customer-date {
  text-align: center;
  margin: 10px auto 10px;
  font-weight: 400;
}

.customer-link {
  display: block;
  text-align: center;
  font-weight: 400;
}

.customer-notes {
  max-width: 630px;
  margin: 24px auto 0;
  gap: 4px;
}


.tour-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
}

.tour-title span {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.tour-img {
  max-width: 600px;
  margin: 24px auto;
}

.tour-ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  margin: 40px auto 56px;
  text-align: center;
}

.tour-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 32px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.tour-info h4 {
  font-size: 18px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.tour-date {
  font-size: 18px;
}

.tour-time {
  margin: 10px auto 8px;
}

.tour-time span {
  font-size: 14px;
  font-weight: 400;
}

.tour-date span {
  font-size: 14px;
  margin-left: 2px;
  font-weight: 400;
}

.ticket-info {
  text-align: center;
}

.tour-ul li span {
  font-size: 14px;
  margin-left: 4px;
  margin-right: 10px;
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  margin: 32px auto 0;
}

.tour-price li {
  border: 1px solid #ffffff;
}

.tour-price h5 {
  border-bottom: 1px solid #ffffff;
  padding: 8px 0;
  font-size: 14px;
  line-height: 140%;
}

.tour-price h5 span {
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.tour-price p {
  padding: 20px 0;
}

.tour-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  margin-top: 40px;
  height: 40px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.tour-button:hover {
  background: var(--main-gray);
  color: #ffffff;
}


.vip {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 56px;
  border: 1px solid #ffffff;
  max-width: 500px;
  margin: 48px auto 56px;
  padding: 4px;
}

.vip div {
  padding: 20px 0 24px;
  border: 1px solid #ffffff;
}

.vip p {
  font-size: 18px;
  margin-bottom: 10px;
}

.vip ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-button-link {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 140%;
  height: 56px;
}

.price-box {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin: 32px auto 24px;
  max-width: 800px;
}

.price-box li {
  border: 1px solid #fff;
}

.price-box li p:first-child {
  border-bottom: 1px solid #fff;
  background: #FFFFFF;
  color: #1c1c1c;
  padding: 10px 8px;
}

.price-box li p:last-child {
  padding: 20px 10px;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.ticket-info {
  font-size: 14px;
  text-align: center;
}

.ticket-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #fff;
  height: 40px;
  max-width: 300px;
  margin: 40px auto 0;
  transition: all 0.2s ease;
}

.ticket-button:hover {
  background: #fff;
  color: #000;
}

.ticket-box {
  border-top: 1px solid #8d8d8d;
  margin-top: 56px;
  padding-top: 56px;
}

.price-box2 {
  margin: 24px auto;
  grid-template-columns: 1fr 1fr;
}

.ticket-price-box {
  margin: 56px auto 40px;
}

.ticket-h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}


.date-blue {
  color: #3fb0c9;
}

.date-red {
  color: #c62828;
}






.footer {
  padding: 32px 0 14px;
  background: var(--main-black);
}

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

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

.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;
}

.link-youtube {
  height: 32px !important;
}

.copy {
  text-align: center;
  font-weight: 200;
  color: #ffffff;
}

.youtube-box{
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

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

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


.campaign-box{
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.campaign-box > div:nth-child(2){
  opacity: 0.4;
}

.campaign-join-box{
    display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 28px;
}

.campaign-join-box h4{
  margin-bottom: 16px;
  color: #c62828;
}



@media screen and (max-width: 1100px) {
  .kv {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 100%;
    margin: 0 auto;
    min-height: 900px;
  }

  .kv .kv_jacket {
    width: 100%;
  }

  .kv_jacket {
    max-width: 400px;
  }

  .kv_logo {
    width: 100%;
  }
}


@media screen and (max-width: 896px) {
  .price-box {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .content-title {
    font-size: 20px;
  }

  .cmapaign-ul {
    max-width: 500px;
  }

  .cmapaign-ul>li:nth-child(1) {
    grid-template-columns: 1fr;
  }

  .kv {
    padding: 80px 0;
  }

  .kv-content {
    max-width: 400px;
    text-align: center;
    width: 90%;
  }

  .kv-content p:nth-child(2) {
    font-size: 24px;
  }

  .kv-content h1 {
    font-size: 44px;
  }

  .date {
    font-size: 32px;
  }

  .button {
    font-size: 16px;
  }

  .h2 {
    font-size: 18px;
  }


  .campaign-title h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .campaign-title p {
    font-size: 16px;
  }

  .campaign-title-text {
    font-size: 16px;
  }

  .tour-info {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 56px;
  }

  .cmapaign-pre {
    font-size: 14px;
  }

  .vip ul {
    font-size: 14px;
  }

  .tour-button-link {
    height: auto;
    padding: 10px 0;
  }

  .heart-button {
    max-width: 72px;
    bottom: 10px;
    right: 10px;
  }

  .mv{
    max-width: 500px;
  }

  .youtube-box{
    grid-template-columns: 1fr;
    max-width: 500px;
  }

}



@media screen and (max-width: 500px) {
  .cmapaign-ul li:last-child p {
    font-size: 14px;
  }

  .cmapaign-ul li:last-child a {
    font-size: 14px;
  }

  .cmapaign-mainText {
    font-size: 24px;
  }

  .cmapaign-subText {
    font-size: 16px;
  }

  .tour-ul {
    text-align: center;
    line-height: 140%;
    max-width: 370px;
  }

  .tour-ul2 {
    max-width: 370px;
  }

  .tour-ul li {
    padding-bottom: 16px;
    border-bottom: 1px solid #adadad;
  }

  .tour-ul li:last-child {
    border-bottom: none;
  }

  .price-box li p:first-child {
    font-size: 14px;
  }

  .ticket-h4 {
    font-size: 16px;
  }

  .tour-title {
    font-size: 24px;
  }

  .tour-title span {
    font-size: 16px;
  }

  .kv {
    padding: 0 0 56px;
    min-height: auto;
  }

  .kv-content p:nth-child(1) {
    font-size: 14px;
  }

  .kv-content p:nth-child(2) {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .kv-content h1 {
    font-size: 36px;
  }

  .date {
    font-size: 32px;
    margin-top: 16px;
  }

  .anime-title {
    font-size: 32px;
    margin: 4px auto 10px;
  }

  .anime-date {
    font-size: 16px;
  }

  .anime-text {
    margin-bottom: 32px;
  }

  .cmapaign-pre {
    font-weight: 500;
  }
}