@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  font-size: 18px;
  line-height: 1.66em;
  color: #0e0e0e;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体",
    "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1.5em;
}

span {
  display: inline-block;
}

.f60 {
  font-size: 0.6em;
}

.f70 {
  font-size: 0.7em;
}

/* -------------------------------------------------
LOADING
-------------------------------------------------*/
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2147483647;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading picture {
  margin: 0 auto;
  display: block;
  width: 50px;
  height: auto;
  user-select: none;
  animation: 2s linear infinite rotation1;
}

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

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* -------------------------------------------------
CONTENT, MAIN
-------------------------------------------------*/
#content-container {
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0 0 30px #b8b8b8;
  background-color: #fff;
}

.main {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 771px;
  background-image: url("../images/header_main_pc.png");
  background-image: -webkit-image-set(
    url("../images/header_main_pc.webp") type("image/webp"),
    url("../images/header_main_pc.png") type("image/png")
  );
  background-image: image-set(
    url("../images/header_main_pc.webp") type("image/webp"),
    url("../images/header_main_pc.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main img {
  width: 100%;
  height: auto;
}

.main h1 {
  position: absolute;
  left: calc(50% - 201px);
  top: 51px;
  width: 403px;

  opacity: 0;
  filter: blur(20px);
  transform: scale(1.03);
}

body.is-loaded .main h1 {
  animation: titleFadeIn 1.8s ease-out forwards;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.main h2 {
  position: absolute;
  right: 46px;
  top: 30px;
  width: 187px;
}

.main h3 {
  position: absolute;
  left: 37px;
  top: 26px;
  width: 69px;
}

.main h4 {
  position: absolute;
  left: 35px;
  top: 373px;
  width: 51px;
}

#program {
  position: absolute;
  right: 52px;
  top: 364px;
  width: 172px;
}

#credit {
  position: absolute;
  left: calc(50% - 244px);
  bottom: 27px;
  width: 423px;
}

/* -------------------------------------------------
FOOTER
-------------------------------------------------*/
.footer {
  padding-top: 54px;
  padding-bottom: 80px;
}

.footer h3 {
  text-align: center;
  font-family: "FOT-テロップ明朝 Pro D", "TelopMinPro-D";
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
}
.snsList {
  text-align: center;
  margin-bottom: 46px;
}
.snsList li {
  display: inline-block;
  margin: 0 10px;
}

.snsList li.x {
  margin: 0 6px;
}

.snsList li picture {
  margin: 0 auto;
  display: block;
  height: 50px;
}

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

.roadshow {
  text-align: center;
  font-family: "FOT-テロップ明朝 Pro D", "TelopMinPro-D";
  font-size: 40px;
  line-height: 1.3;
}

/* -------------------------------------------------
SNS SHARE
-------------------------------------------------*/
#sns-container {
  width: 100%;
  background-color: #323131;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 4px;
  z-index: 3;
}

ul#social {
  width: 100%;
  align-items: center;
}

#social li {
  display: inline-block;
  height: 27px;
  vertical-align: bottom;
  padding: 0;
  margin: 5px 2px 0 2px;
  overflow: hidden;
}

/* -------------------------------------------------
800
-------------------------------------------------*/
@media only screen and (max-width: 800px) {

/* -------------------------------------------------
CONTENT, MAIN 800
-------------------------------------------------*/
#content-container {
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0 0 30px #b8b8b8;
  background-color: #fff;
}

.main {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 1460;
  background-image: url("../images/header_main_sp.png");
  background-image: -webkit-image-set(
    url("../images/header_main_sp.webp") type("image/webp"),
    url("../images/header_main_sp.png") type("image/png")
  );
  background-image: image-set(
    url("../images/header_main_sp.webp") type("image/webp"),
    url("../images/header_main_sp.png") type("image/png")
  );
}

.main h1 {
  position: absolute;
  left: calc(50% - 36.1vw);
  top: 15.3vw;
  width: 72.3vw;
}

.main h2 {
  position: absolute;
  right: 3.8vw;
  top: 3.9vw;
  width: 24.2vw;
}

.main h3 {
  position: absolute;
  left: 3.1vw;
  top: 4.4vw;
  width: 11.2vw;
}

.main h4 {
  position: absolute;
  left: 3.1vw;
  top: 62vw;
  width: 7.9vw;
}

#program {
  position: absolute;
  right: 4.8vw;
  top: 59.3vw;
  width: 27.1vw;
}

#credit {
  position: absolute;
  left: calc(50% - 37.4vw);
  bottom: 3.4vw;
  width: 74.9vw;
}

/* -------------------------------------------------
FOOTER
-------------------------------------------------*/
.footer {
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.footer h3 {
  text-align: center;
  font-family: "FOT-テロップ明朝 Pro D", "TelopMinPro-D";
  font-size: 6vw;
  margin-bottom: 2vw;
}
.snsList {
  text-align: center;
  margin-bottom: 6vw;
}
.snsList li {
  display: inline-block;
  margin: 0 2vw;
}

.snsList li.x {
  margin: 0 1.5vw;
}

.snsList li picture {
  margin: 0 auto;
  display: block;
  height: 11vw;
}

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

.roadshow {
  text-align: center;
  font-family: "FOT-テロップ明朝 Pro D", "TelopMinPro-D";
  font-size: 6.6vw;
  line-height: 1.4;
}

}

