@charset "UTF-8";
@import url("https://use.typekit.net/ifp8qjt.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes chara1 {
  0% {
    top: -230px;
  }
  20% {
    top: 0px;
  }
  70% {
    top: calc(100% - 230px);
  }
  90% {
    top: calc(100% - 0px);
  }
  100% {
    top: calc(100% - 0px);
  }
}
@keyframes chara2 {
  0% {
    top: calc(100% - 0px);
  }
  15% {
    top: calc(100% - 0px);
  }
  25% {
    top: calc(100% - 230px);
  }
  90% {
    top: 0px;
  }
  100% {
    top: -230px;
  }
}
@keyframes chara3 {
  0% {
    left: 100%;
  }
  15% {
    left: calc(100% - 230px);
  }
  55% {
    left: calc(50% - 230px);
  }
  90% {
    left: -230px;
  }
  100% {
    left: -230px;
  }
}
@keyframes chara4 {
  0% {
    left: -230px;
  }
  65% {
    left: 65%;
  }
  95% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes appear {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.on {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #666;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: calc(var(--vh) * 100);
  min-height: 100%;
  background-color: #000;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
  transition: opacity 0.5s ease-in-out 0.25s;
}
#loader .logo {
  width: 216px;
  height: 69px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  left: calc(50% - 108px);
  top: calc(50% - 35px);
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #FFF;
  opacity: 1;
  display: block;
}

.loaded main {
  opacity: 1;
}

.hum {
  width: 80px;
  height: 80px;
  border: solid 4px #FFC500;
  border-radius: 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 25px;
  z-index: 999;
}
.hum div {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.25s ease-in 0s;
}
.hum div span {
  width: 30px;
  height: 4px;
  background-color: #FFC500;
  border-radius: 2px;
  position: absolute;
  left: 0px;
  display: block;
}
.hum div span:nth-child(1) {
  top: 0px;
}
.hum div span:nth-child(2) {
  top: 13px;
}
.hum div span:nth-child(3) {
  top: 26px;
}
.hum.on div {
  transform: rotate(225deg);
}
.hum.on div span:nth-child(1) {
  top: 13px;
}
.hum.on div span:nth-child(2) {
  transform: rotate(90deg);
}
.hum.on div span:nth-child(3) {
  top: 13px;
}

nav {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 777;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
  pointer-events: none;
}
nav.on {
  opacity: 1;
  pointer-events: auto;
}
nav .inner {
  width: 100%;
  padding: 70px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
nav .inner h2 {
  width: 50px;
  height: 111px;
  background-image: url(../images/logo_navi_warai.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 50px;
}
nav .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 150px;
}
nav .inner ul li:not(:last-child) {
  margin-bottom: 20px;
}
nav .inner ul li a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
nav .inner ul li span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
nav .inner ul li:nth-child(1) span {
  background-image: url(../images/title_navi01.png);
  width: 234px;
  height: 57px;
}
nav .inner dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
nav .inner dl dt {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
nav .inner dl dd:not(:last-child) {
  margin-bottom: 10px;
}
nav .inner dl dd a {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
nav .inner dl dd a:hover {
  color: #FFC500;
}

main {
  width: 100%;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
main .inner {
  width: 100%;
  padding: 0px;
}
main .inner .visual {
  width: 100%;
  background-color: #000;
  padding: 70px 0 30px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
main .inner .visual .invisual {
  width: 30%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
main .inner .visual .invisual h1 {
  width: 216px;
  height: 69px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: -30px;
  left: calc(50% - 108px);
  z-index: 1;
  transform: scale(0);
}
main .inner .visual .invisual .video {
  width: 100%;
  transition: all 0.25s ease-in 0s;
  opacity: 0;
}
main .inner .visual .invisual .video video {
  width: 100%;
  height: auto;
}
main .inner .visual .chara {
  width: 230px;
  height: 230px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  opacity: 0;
}
main .inner .visual .chara.c1 {
  background-image: url(../images/chara1.png);
  top: -230px;
  left: 15%;
  animation-name: chara1;
  animation-duration: 9.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: opacity 0.3s ease-in 1s;
}
main .inner .visual .chara.c2 {
  background-image: url(../images/chara2.png);
  top: 100%;
  left: 80%;
  animation-name: chara2;
  animation-duration: 9s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: opacity 0.3s ease-in 1.25s;
}
main .inner .visual .chara.c3 {
  background-image: url(../images/chara3.png);
  top: calc(25% - 115px);
  left: 100%;
  animation-name: chara3;
  animation-duration: 8.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: opacity 0.3s ease-in 1.5s;
}
main .inner .visual .chara.c4 {
  background-image: url(../images/chara4.png);
  top: calc(75% - 115px);
  left: -230px;
  animation-name: chara4;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: opacity 0.3s ease-in 1.75s;
}
main .inner .visual.on .invisual h1 {
  animation-name: appear;
  animation-duration: 0.25s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
main .inner .visual.on .invisual .video {
  opacity: 1;
}
main .inner .visual.on .chara {
  opacity: 1;
}
main .inner .sec {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
main .inner .sec .insec {
  width: 100%;
  margin: 0 auto;
}
main .inner .sec .insec .credit {
  width: 100%;
  padding-bottom: 6px;
  background-image: url(../images/dotline.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 2px 1px;
}
main .inner .sec .insec .credit:not(:last-child) {
  margin-bottom: 10px;
}
main .inner .sec .insec .credit dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .inner .sec .insec .credit dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}
main .inner .sec .insec .credit dl dt strong {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main .inner .sec .insec .credit dl dt strong:last-child {
  font-weight: 400;
  padding: 0 0 0 3px;
  display: inline-block;
}
main .inner .sec .insec .credit dl dt strong:last-child::before {
  content: "-";
  margin: 0 3px 0 0;
  display: inline-block;
}
main .inner .sec .insec .credit dl dt strong span {
  font-weight: 400;
  display: inline-block;
  padding: 0 0 0 3px;
}
main .inner .sec .insec .credit dl dt strong span.items__price::after {
  padding: 0 0 0 5px;
}
main .inner .sec .insec .credit dl dd {
  width: 40px;
  margin: 0px;
}
main .inner .sec .insec .credit dl dd a {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  height: 20px;
  background-color: #F4A000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.15s ease-in;
}
main .inner .sec .insec .credit dl dd a:hover {
  color: #F4A000;
  background-color: #000;
}
main .inner .sec .insec .credit dl dd a:not([href]) {
  display: none;
}
main .inner .sec .insec .credit dl dd a:not([href]) + a.linelink {
  display: inline-block;
}
main .inner .sec .insec .credit dl dd a[href] + a.linelink {
  display: none;
}
main .inner .sec .insec .lead {
  width: 100%;
  padding: 120px 0 270px 0;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .inner .sec .insec .lead p {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0em;
}
main .inner .sec .insec .lead p:not(:last-child) {
  margin-bottom: 30px;
}
main .inner .sec .insec .lead p:not(:last-child).mb {
  margin-bottom: 60px;
}
main .inner .sec .insec .lead .sign {
  width: 251px;
  margin: 0 auto;
}
main .inner .sec#sec1 {
  background-color: #FFF5D3;
}
main .inner .sec#sec1.on .lead {
  opacity: 1;
}
main .inner .sec#sec1.on .title::before {
  opacity: 1;
}
main .inner .sec#sec1.on .title h3 {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}
main .inner .sec#sec1 .title {
  width: 100%;
  position: relative;
}
main .inner .sec#sec1 .title::before {
  content: "";
  width: 130px;
  height: 130px;
  background-image: url(../images/title_volume.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -175px;
  left: calc(50% - 288px - 90px);
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
main .inner .sec#sec1 .title h3 {
  width: 577px;
  height: 185px;
  background-image: url(../images/title_volume_name.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: -125px;
  left: calc(50% - 288px);
  z-index: 1;
  transform: scale(0);
}
main .inner .sec#sec1 .title .lphoto {
  width: calc(100% - 40px);
  margin: 0 auto 175px auto;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
main .inner .sec#sec1 .title .lphoto.on {
  opacity: 1;
}
main .inner .sec#sec1 .title .lphoto img {
  border-radius: 20px;
}
main .inner .sec#sec1 .title .pset {
  width: calc(100% - 60px);
  margin: 0 auto 190px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .inner .sec#sec1 .title .pset.on div {
  opacity: 1;
}
main .inner .sec#sec1 .title .pset.on div:nth-child(1)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}
main .inner .sec#sec1 .title .pset.on div:nth-child(2)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
main .inner .sec#sec1 .title .pset.on div:nth-child(3)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
main .inner .sec#sec1 .title .pset div {
  width: 30%;
  position: relative;
  opacity: 0;
}
main .inner .sec#sec1 .title .pset div:nth-child(1) {
  transform: rotate(-2deg);
  transition: opacity 0.3s ease-in 0s;
}
main .inner .sec#sec1 .title .pset div:nth-child(1)::after {
  content: "";
  width: 244px;
  height: 193px;
  background-image: url(../images/baloon1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -130px;
  left: 30px;
  transform: scale(0);
}
main .inner .sec#sec1 .title .pset div:nth-child(2) {
  padding-top: 170px;
  transform: rotate(2deg);
  transition: opacity 0.3s ease-in 0.25s;
}
main .inner .sec#sec1 .title .pset div:nth-child(2)::after {
  content: "";
  width: 286px;
  height: 208px;
  background-image: url(../images/baloon2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 25px;
  left: -40px;
  transform: scale(0);
}
main .inner .sec#sec1 .title .pset div:nth-child(3) {
  padding-top: 55px;
  transform: rotate(1deg);
  transition: opacity 0.3s ease-in 0.5s;
}
main .inner .sec#sec1 .title .pset div:nth-child(3)::after {
  content: "";
  width: 238px;
  height: 205px;
  background-image: url(../images/baloon3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0px;
  bottom: -135px;
  transform: scale(0);
}
main .inner .sec#sec1 .title .pset div img {
  border-radius: 10px;
}
main .inner .sec#sec1 .title .pcombo {
  width: 1160px;
  margin: 0 auto 100px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .inner .sec#sec1 .title .pcombo.on .photo {
  opacity: 1;
}
main .inner .sec#sec1 .title .pcombo.on .photo::before {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}
main .inner .sec#sec1 .title .pcombo.on .movie {
  opacity: 1;
}
main .inner .sec#sec1 .title .pcombo .photo {
  width: 780px;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .inner .sec#sec1 .title .pcombo .photo::before {
  content: "";
  width: 679px;
  height: 141px;
  background-image: url(../images/logo_kukikaidan.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: -15px;
  z-index: 1;
  transform: scale(0);
}
main .inner .sec#sec1 .title .pcombo .photo .ph {
  width: 100%;
  margin-bottom: 25px;
}
main .inner .sec#sec1 .title .pcombo .photo .creditset {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .inner .sec#sec1 .title .pcombo .photo .creditset .credits:nth-child(1) {
  width: calc(45% - 20px);
}
main .inner .sec#sec1 .title .pcombo .photo .creditset .credits:nth-child(2) {
  width: calc(55% - 0px);
}
main .inner .sec#sec1 .title .pcombo .movie {
  width: 340px;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
main .inner .sec#sec1 .title .pcombo .movie video {
  width: 100%;
  height: auto;
}
main .inner .sec#sec2 {
  background-color: #FFDBDB;
}
main .inner .sec#sec2.on .insec::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
main .inner .sec#sec2.on .insec .slide .koma {
  opacity: 1;
}
main .inner .sec#sec2 img {
  border-radius: 10px;
}
main .inner .sec#sec2 .insec {
  padding: 100px 0 90px 0;
  position: relative;
}
main .inner .sec#sec2 .insec::after {
  content: "";
  width: 277px;
  height: 213px;
  background-image: url(../images/baloon4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: calc(50% + 270px);
  z-index: 1;
  transform: scale(0);
}
main .inner .sec#sec2 .insec .slide {
  width: 1020px;
  margin: 0 auto 105px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
main .inner .sec#sec2 .insec .slide .koma {
  width: 486px;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
}
main .inner .sec#sec2 .insec .slide .koma img {
  border-radius: 0px;
}
main .inner .sec#sec2 .insec .slide .koma:nth-child(1) {
  transition: opacity 0.5s ease-in 0.25s;
}
main .inner .sec#sec2 .insec .slide .koma:nth-child(2) {
  transition: opacity 0.5s ease-in 0.55s;
}
main .inner .sec#sec2 .insec .pcombo {
  width: 768px;
  margin: 0 auto 120px auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .inner .sec#sec2 .insec .pcombo.on {
  opacity: 1;
}
main .inner .sec#sec2 .insec .pcombo.on .chara {
  opacity: 1;
}
main .inner .sec#sec2 .insec .pcombo .chara {
  width: 230px;
  position: absolute;
  top: 460px;
  left: -230px;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
main .inner .sec#sec2 .insec .pcombo .chara::before {
  content: none;
  width: 287px;
  height: 223px;
  background-image: url(../images/baloon3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -223px;
  left: 0px;
  transform: scale(0);
}
main .inner .sec#sec2 .insec .pcombo .ph {
  width: 100%;
  margin-bottom: 25px;
}
main .inner .sec#sec2 .insec .pcombo .creditset {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .inner .sec#sec2 .insec .pcombo .creditset .credits {
  width: 75%;
}
main .inner .sec#sec2 .insec .pcombo .creditset .credits .credit {
  background-image: url(../images/dotline2.png);
}
main .inner .sec#sec2 .insec .pcombo .creditset .credits .credit dl dd a {
  color: #FFF;
  background-color: #CB2391;
}
main .inner .sec#sec2 .insec .pcombo .creditset .credits .credit dl dd a:hover {
  color: #CB2391;
  background-color: #FFF;
}
main .inner .sec#sec2 .insec .pcombo.type2 {
  width: 1122px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .inner .sec#sec2 .insec .pcombo.type2 .chara {
  width: 235px;
  position: relative;
  top: auto;
  left: auto;
}
main .inner .sec#sec2 .insec .pcombo.type2 .chara::before {
  content: none;
}
main .inner .sec#sec2 .insec .pcombo.type2 .photo {
  width: 774px;
}
main .inner .sec#sec2 .insec .photos {
  width: 1020px;
  margin: 0 auto 115px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .inner .sec#sec2 .insec .photos.on div {
  opacity: 1;
}
main .inner .sec#sec2 .insec .photos.on div:nth-child(1)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
main .inner .sec#sec2 .insec .photos.on div:nth-child(2)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}
main .inner .sec#sec2 .insec .photos div {
  width: 486px;
  position: relative;
  opacity: 0;
}
main .inner .sec#sec2 .insec .photos div::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  transform: scale(0);
  display: block;
}
main .inner .sec#sec2 .insec .photos div:nth-child(1) {
  transition: opacity 0.3s ease-in 0s;
}
main .inner .sec#sec2 .insec .photos div:nth-child(1)::after {
  width: 286px;
  height: 208px;
  background-image: url(../images/baloon5.png);
  top: -85px;
  left: -125px;
}
main .inner .sec#sec2 .insec .photos div:nth-child(2) {
  transition: opacity 0.6s ease-in 0.3s;
}
main .inner .sec#sec2 .insec .photos div:nth-child(2)::after {
  width: 277px;
  height: 213px;
  background-image: url(../images/baloon6.png);
  top: -60px;
  right: -105px;
}
main .inner .sec#sec3 {
  background-color: #8BF4F4;
}
main .inner .sec#sec3 img {
  border-radius: 10px;
}
main .inner .sec#sec3 .insec {
  width: 100%;
  padding: 90px 0 115px 0;
}
main .inner .sec#sec3 .insec .photos {
  width: 1020px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .inner .sec#sec3 .insec .photos.on div {
  opacity: 1;
}
main .inner .sec#sec3 .insec .photos.on div:nth-child(1)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
main .inner .sec#sec3 .insec .photos.on div:nth-child(2)::after {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}
main .inner .sec#sec3 .insec .photos.on div.deco::before {
  right: -46px;
  opacity: 1;
}
main .inner .sec#sec3 .insec .photos div {
  width: calc((100% - 48px) / 2);
  position: relative;
  opacity: 0;
}
main .inner .sec#sec3 .insec .photos div::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  transform: scale(0);
  display: block;
}
main .inner .sec#sec3 .insec .photos div:nth-child(1) {
  transition: opacity 0.5s ease-in 0s;
}
main .inner .sec#sec3 .insec .photos div:nth-child(1)::after {
  width: 249px;
  height: 184px;
  background-image: url(../images/baloon7.png);
  bottom: 30px;
  left: -100px;
}
main .inner .sec#sec3 .insec .photos div:nth-child(2) {
  margin-left: 48px;
  transition: opacity 0.5s ease-in 0.5s;
}
main .inner .sec#sec3 .insec .photos div:nth-child(2)::after {
  width: 262px;
  height: 201px;
  background-image: url(../images/baloon8.png);
  top: -65px;
  right: -95px;
}
main .inner .sec#sec3 .insec .photos div.deco {
  position: relative;
}
main .inner .sec#sec3 .insec .photos div.deco::before {
  content: "";
  width: 93px;
  height: 321px;
  background-image: url(../images/chara6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 0px);
  right: -66px;
  z-index: 1;
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in 0.75s;
}
main .inner .sec#sec3 .insec .pcombo {
  width: 1020px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .inner .sec#sec3 .insec .pcombo.on {
  opacity: 1;
}
main .inner .sec#sec3 .insec .pcombo.on .chara {
  left: -98px;
  opacity: 1;
}
main .inner .sec#sec3 .insec .pcombo .chara {
  width: 196px;
  position: absolute;
  top: calc(50% - 100px);
  left: -118px;
  opacity: 0;
  transition: all 0.3s ease-in 0.5s;
}
main .inner .sec#sec3 .insec .pcombo .ph {
  width: 100%;
  margin-bottom: 25px;
}
main .inner .sec#sec3 .insec .pcombo .creditset {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .inner .sec#sec3 .insec .pcombo .creditset .credits {
  width: calc(50% - 20px);
}
main .inner .sec#sec3 .insec .pcombo .creditset .credits .credit {
  background-image: url(../images/dotline3.png);
}
main .inner .sec#sec3 .insec .pcombo .creditset .credits .credit dl dd a {
  color: #FFF;
  background-color: #005CB7;
}
main .inner .sec#sec3 .insec .pcombo .creditset .credits .credit dl dd a:hover {
  color: #005CB7;
  background-color: #FFF;
}
main .inner .sec#sec4 {
  width: 100%;
}
main .inner .sec#sec4.on .insec h4 {
  animation-name: appear;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
}
main .inner .sec#sec4.on .insec .photo {
  opacity: 1;
}
main .inner .sec#sec4.on .insec .photo::after {
  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
main .inner .sec#sec4 .insec {
  padding: 100px 0 140px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .inner .sec#sec4 .insec h4 {
  padding: 20px 40px;
  margin-bottom: 75px;
  border: solid 6px #FFC500;
  border-radius: 50px;
  transform: scale(0);
}
main .inner .sec#sec4 .insec h4 span {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
}
main .inner .sec#sec4 .insec h5 {
  width: 654px;
  height: 96px;
  background-image: url(../images/logoset.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 90px;
  display: block;
  transform: scale(0);
}
main .inner .sec#sec4 .insec h5.on {
  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
main .inner .sec#sec4 .insec .photo {
  width: 768px;
  margin-bottom: 65px;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
main .inner .sec#sec4 .insec .photo::after {
  content: "";
  width: 235px;
  height: 326px;
  background-image: url(../images/chara5.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  right: -60px;
  bottom: -35px;
  z-index: 1;
  transform: scale(0);
}
main .inner .sec#sec4 .insec .btn {
  width: 340px;
  margin-bottom: 240px;
  transform: scale(0);
}
main .inner .sec#sec4 .insec .btn.on {
  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
main .inner .sec#sec4 .insec .btn a {
  color: #FFF;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  height: 85px;
  background-color: #FFC500;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.25s ease-in 0s;
}
main .inner .sec#sec4 .insec .btn a:hover {
  background-color: #000;
}
main .inner .sec#sec4 .insec .staff {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
main .inner .sec#sec4 .insec .staff.on {
  opacity: 1;
}
main .inner .sec#sec4 .insec .staff dt:nth-child(1) {
  width: 149px;
  margin-bottom: 35px;
}
main .inner .sec#sec4 .insec .staff dt:nth-child(2) {
  color: #000;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
main .inner .sec#sec4 .insec .staff dd {
  color: #000;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: 0em;
}

footer {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
}
footer .infoot {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer .infoot .links {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 80px;
}
footer .infoot .links div:not(:first-child) {
  margin-left: 55px;
}
footer .infoot .links div a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .links div a dl {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  border: solid 3px #FFC500;
  border-radius: 45px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .infoot .links div a dl dt {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 0px;
}
footer .infoot .links div a dl dd {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
}
footer .infoot .links div a p {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 2.8rem;
  letter-spacing: 0em;
  text-align: center;
}
footer .infoot .links div a:hover {
  opacity: 0.8;
}
footer .infoot h5 {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 15px;
}
footer .infoot ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 80px;
}
footer .infoot ul li {
  width: 34px;
}
footer .infoot ul li:not(:first-child) {
  margin-left: 10px;
}
footer .infoot ul li:nth-child(1) a {
  background-image: url(../images/icon_fb.png);
}
footer .infoot ul li:nth-child(2) a {
  background-image: url(../images/icon_twit.png);
}
footer .infoot ul li:nth-child(3) a {
  background-image: url(../images/icon_insta.png);
}
footer .infoot ul li:nth-child(4) a {
  background-image: url(../images/icon_youtube.png);
}
footer .infoot ul li:nth-child(5) a {
  background-image: url(../images/icon_line.png);
}
footer .infoot ul li a {
  height: 33px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  border-radius: 17px;
  display: block;
  transition: all 0.25s ease-in 0s;
}
footer .infoot ul li a:hover {
  opacity: 0.8;
}
footer .infoot p.cp {
  color: #FFC500;
  font-family: aktiv-grotesk-condensed, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: center;
}

/* ----------------------------------------------- Media Queries Smartphone -----------------------------------------------
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  .loaded main {
    opacity: 1;
  }

  .hum {
    width: 50px;
    height: 50px;
    border: solid 3px #FFC500;
    border-radius: 25px;
    top: 15px;
    right: 15px;
  }
  .hum div {
    width: 20px;
    height: 20px;
    position: relative;
    transition: all 0.25s ease-in 0s;
  }
  .hum div span {
    width: 20px;
    height: 3px;
  }
  .hum div span:nth-child(1) {
    top: 1px;
  }
  .hum div span:nth-child(2) {
    top: 9px;
  }
  .hum div span:nth-child(3) {
    top: 17px;
  }
  .hum.on div {
    transform: rotate(225deg);
  }
  .hum.on div span:nth-child(1) {
    top: 9px;
  }
  .hum.on div span:nth-child(2) {
    transform: rotate(90deg);
  }
  .hum.on div span:nth-child(3) {
    top: 9px;
  }

  nav {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 777;
    opacity: 0;
    transition: all 0.25s ease-in 0s;
    pointer-events: none;
    overflow: scroll;
  }
  nav.on {
    opacity: 1;
    pointer-events: auto;
  }
  nav .inner {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  nav .inner h2 {
    width: 50px;
    height: 111px;
    background-image: url(../images/logo_navi_warai.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-bottom: 50px;
  }
  nav .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
  }
  nav .inner ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  nav .inner ul li a {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  nav .inner ul li span {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  nav .inner ul li:nth-child(1) span {
    background-image: url(../images/title_navi01.png);
    width: 234px;
    height: 57px;
  }
  nav .inner dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  nav .inner dl dt {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  nav .inner dl dd:not(:last-child) {
    margin-bottom: 10px;
  }
  nav .inner dl dd a {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  nav .inner dl dd a:hover {
    color: #FFC500;
  }

  main {
    width: 100%;
    margin: 0;
    position: relative;
    box-sizing: border-box;
  }
  main .inner {
    width: 100%;
    padding: 0px;
  }
  main .inner .visual {
    padding: 90px 0 30px 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  main .inner .visual .invisual {
    width: calc(100% - 90px);
  }
  main .inner .visual .invisual h1 {
    width: 180px;
    height: 57px;
    top: -45px;
    left: calc(50% - 90px);
  }
  main .inner .visual .invisual .video {
    width: 100%;
    transition: all 0.25s ease-in 0s;
    opacity: 0;
  }
  main .inner .visual .invisual .video video {
    width: 100%;
    height: auto;
  }
  main .inner .visual .chara {
    width: 120px;
    height: 120px;
  }
  main .inner .visual .chara.c1 {
    background-image: url(../images/chara1.png);
    top: -120px;
    left: 15%;
    animation-name: chara1;
    animation-duration: 9.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.3s ease-in 1s;
  }
  main .inner .visual .chara.c2 {
    background-image: url(../images/chara2.png);
    top: 100%;
    left: 80%;
    animation-name: chara2;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.3s ease-in 1.25s;
  }
  main .inner .visual .chara.c3 {
    background-image: url(../images/chara3.png);
    top: calc(25% - 115px);
    left: 100%;
    animation-name: chara3;
    animation-duration: 8.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.3s ease-in 1.5s;
  }
  main .inner .visual .chara.c4 {
    background-image: url(../images/chara4.png);
    top: calc(75% - 115px);
    left: -120px;
    animation-name: chara4;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.3s ease-in 1.75s;
  }
  main .inner .visual.on .invisual h1 {
    animation-name: appear;
    animation-duration: 0.25s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0s;
  }
  main .inner .visual.on .invisual .video {
    opacity: 1;
  }
  main .inner .visual.on .chara {
    opacity: 1;
  }
  main .inner .sec {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }
  main .inner .sec .insec {
    width: 100%;
    margin: 0 auto;
  }
  main .inner .sec .insec .credit {
    width: 100%;
    padding-bottom: 6px;
    background-image: url(../images/dotline.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 2px 1px;
  }
  main .inner .sec .insec .credit:not(:last-child) {
    margin-bottom: 10px;
  }
  main .inner .sec .insec .credit dl {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  main .inner .sec .insec .credit dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
  }
  main .inner .sec .insec .credit dl dt strong {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .inner .sec .insec .credit dl dt strong:last-child {
    font-weight: 400;
    padding: 5px 0 0 0;
  }
  main .inner .sec .insec .credit dl dt strong:last-child::before {
    content: "-";
    margin: 0 5px 0 0;
    display: inline-block;
  }
  main .inner .sec .insec .credit dl dt strong span {
    font-weight: 400;
    display: inline-block;
    padding: 0 0 0 5px;
  }
  main .inner .sec .insec .credit dl dt strong span.items__price::after {
    padding: 0 0 0 5px;
  }
  main .inner .sec .insec .credit dl dd {
    width: 40px;
    margin: 0px;
  }
  main .inner .sec .insec .credit dl dd a {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    width: 100%;
    height: 20px;
    background-color: #F4A000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease-in;
  }
  main .inner .sec .insec .credit dl dd a:hover {
    color: #F4A000;
    background-color: #000;
  }
  main .inner .sec .insec .credit dl dd a:not([href]) {
    display: none;
  }
  main .inner .sec .insec .credit dl dd a:not([href]) + a.linelink {
    display: inline-block;
  }
  main .inner .sec .insec .credit dl dd a[href] + a.linelink {
    display: none;
  }
  main .inner .sec .insec .lead {
    width: 100%;
    padding: 45px 25px 120px 25px;
  }
  main .inner .sec .insec .lead p {
    color: #000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main .inner .sec .insec .lead p br {
    display: none;
  }
  main .inner .sec .insec .lead p:not(:last-child) {
    margin-bottom: 30px;
  }
  main .inner .sec#sec1 {
    background-color: #FFF5D3;
    padding-bottom: 70px;
  }
  main .inner .sec#sec1 .title {
    width: 100%;
    position: relative;
  }
  main .inner .sec#sec1 .title::before {
    content: "";
    width: 65px;
    height: 65px;
    background-image: url(../images/title_volume.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -90px;
    left: 20px;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in 0.5s;
  }
  main .inner .sec#sec1 .title h3 {
    width: 280px;
    height: 90px;
    top: -65px;
    left: calc(50% - 140px);
  }
  main .inner .sec#sec1 .title .lphoto {
    width: calc(100% - 20px);
    margin: 0 auto 80px auto;
  }
  main .inner .sec#sec1 .title .lphoto img {
    border-radius: 10px;
  }
  main .inner .sec#sec1 .title .pset {
    width: calc(100% - 30px);
    margin: 0 auto 100px auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec1 .title .pset.on div {
    opacity: 1;
  }
  main .inner .sec#sec1 .title .pset div {
    width: 75%;
    position: relative;
    opacity: 0;
  }
  main .inner .sec#sec1 .title .pset div:not(:last-child) {
    margin-bottom: 40px;
  }
  main .inner .sec#sec1 .title .pset div:nth-child(1) {
    margin-left: auto;
    transform: rotate(-2deg);
  }
  main .inner .sec#sec1 .title .pset div:nth-child(1)::after {
    content: "";
    width: 147px;
    height: 116px;
    bottom: 40px;
    left: -40px;
  }
  main .inner .sec#sec1 .title .pset div:nth-child(2) {
    padding-top: 0px;
    margin-right: auto;
    transform: rotate(2deg);
  }
  main .inner .sec#sec1 .title .pset div:nth-child(2)::after {
    content: "";
    background-image: url(../images/baloon2_sp.png);
    width: 172px;
    height: 125px;
    top: -50px;
    left: calc(50% + 40px);
  }
  main .inner .sec#sec1 .title .pset div:nth-child(3) {
    padding-top: 0px;
    transform: rotate(1deg);
  }
  main .inner .sec#sec1 .title .pset div:nth-child(3)::after {
    content: "";
    width: 143px;
    height: 123px;
    right: -43px;
    bottom: -23px;
  }
  main .inner .sec#sec1 .title .pset div.serif::before {
    content: "";
    width: 286px;
    height: 208px;
    background-image: url(../images/baloon1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -50px;
    left: -175px;
    transform: scale(0);
  }
  main .inner .sec#sec1 .title .pset div.serif::after {
    content: "";
    width: 238px;
    height: 206px;
    background-image: url(../images/baloon2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 15px;
    bottom: -135px;
    transform: scale(0);
  }
  main .inner .sec#sec1 .title .pset div img {
    border-radius: 10px;
  }
  main .inner .sec#sec1 .title .pcombo {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec1 .title .pcombo .photo {
    width: calc(100% - 20px);
    margin-bottom: 80px;
  }
  main .inner .sec#sec1 .title .pcombo .photo::before {
    content: "";
    width: 300px;
    height: 62px;
    top: -30px;
    left: calc(50% - 150px);
  }
  main .inner .sec#sec1 .title .pcombo .photo .ph {
    width: 100%;
    margin-bottom: 25px;
  }
  main .inner .sec#sec1 .title .pcombo .photo .ph img {
    border-radius: 10px;
  }
  main .inner .sec#sec1 .title .pcombo .photo .creditset {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .inner .sec#sec1 .title .pcombo .photo .creditset .credits:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  main .inner .sec#sec1 .title .pcombo .photo .creditset .credits:nth-child(2) {
    width: 100%;
  }
  main .inner .sec#sec1 .title .pcombo .movie {
    width: 300px;
  }
  main .inner .sec#sec2.on .insec::after {
    animation-name: appear;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
  main .inner .sec#sec2 .insec {
    padding: 0 0 70px 0;
  }
  main .inner .sec#sec2 .insec::after {
    width: 167px;
    height: 128px;
    top: calc(75.2vw + 30px);
    left: calc(50% + 0px);
    z-index: 1;
    transform: scale(0);
  }
  main .inner .sec#sec2 .insec .slide {
    width: 100%;
    margin: 0 auto 120px auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  main .inner .sec#sec2 .insec .slide .koma {
    width: 50%;
    border-radius: 0px;
  }
  main .inner .sec#sec2 .insec .slide .koma img {
    border-radius: 0px;
  }
  main .inner .sec#sec2 .insec .pcombo {
    width: calc(100% - 20px);
    margin: 0 auto 120px auto;
  }
  main .inner .sec#sec2 .insec .pcombo .chara {
    width: 125px;
    top: -80px;
    left: 0px;
  }
  main .inner .sec#sec2 .insec .pcombo .chara::before {
    content: "";
    width: 287px;
    height: 223px;
    background-image: url(../images/baloon3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -223px;
    left: 0px;
    transform: scale(0);
  }
  main .inner .sec#sec2 .insec .pcombo .ph {
    width: 100%;
    margin-bottom: 25px;
  }
  main .inner .sec#sec2 .insec .pcombo .creditset {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec2 .insec .pcombo .creditset .credits {
    width: 100%;
  }
  main .inner .sec#sec2 .insec .pcombo.type2 {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec2 .insec .pcombo.type2 .chara {
    width: 125px;
    position: absolute;
    top: -80px;
    left: 20px;
  }
  main .inner .sec#sec2 .insec .pcombo.type2 .chara::before {
    content: none;
  }
  main .inner .sec#sec2 .insec .pcombo.type2 .photo {
    width: 100%;
  }
  main .inner .sec#sec2 .insec .photos {
    width: 100%;
    margin: 0 auto 120px auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main .inner .sec#sec2 .insec .photos div {
    width: 50%;
  }
  main .inner .sec#sec2 .insec .photos div img {
    border-radius: 0px;
  }
  main .inner .sec#sec2 .insec .photos div:nth-child(1)::after {
    width: 172px;
    height: 125px;
    background-image: url(../images/baloon5.png);
    top: -105px;
    left: calc(50% - 86px - 30px);
  }
  main .inner .sec#sec2 .insec .photos div:nth-child(2)::after {
    width: 167px;
    height: 128px;
    background-image: url(../images/baloon6.png);
    top: -90px;
    right: calc(50% - 83px - 20px);
  }
  main .inner .sec#sec3 .insec {
    width: 100%;
    padding: 70px 0 70px 0;
  }
  main .inner .sec#sec3 .insec .photos {
    width: calc(100% - 20px);
    margin: 0 auto 120px auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec3 .insec .photos.on div.deco::after {
    right: -50px;
  }
  main .inner .sec#sec3 .insec .photos div {
    width: calc(100% - 55px);
  }
  main .inner .sec#sec3 .insec .photos div:nth-child(1) {
    margin-bottom: 20px;
    margin-left: auto;
  }
  main .inner .sec#sec3 .insec .photos div:nth-child(1)::after {
    width: 147px;
    height: 110px;
    bottom: 50px;
    left: -50px;
  }
  main .inner .sec#sec3 .insec .photos div:nth-child(2) {
    margin-right: auto;
    margin-left: 0;
  }
  main .inner .sec#sec3 .insec .photos div:nth-child(2)::after {
    width: 157px;
    height: 121px;
    top: -40px;
    right: 0px;
  }
  main .inner .sec#sec3 .insec .photos div.deco {
    position: relative;
  }
  main .inner .sec#sec3 .insec .photos div.deco::before {
    width: 75px;
    height: 260px;
    top: auto;
    right: 0px;
    bottom: -30px;
  }
  main .inner .sec#sec3 .insec .pcombo {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  main .inner .sec#sec3 .insec .pcombo.on {
    opacity: 1;
  }
  main .inner .sec#sec3 .insec .pcombo.on .chara {
    left: 10px;
    opacity: 1;
  }
  main .inner .sec#sec3 .insec .pcombo .chara {
    width: 140px;
    position: absolute;
    top: -100px;
    left: 20px;
  }
  main .inner .sec#sec3 .insec .pcombo .ph {
    width: 100%;
    margin-bottom: 25px;
  }
  main .inner .sec#sec3 .insec .pcombo .creditset {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .inner .sec#sec3 .insec .pcombo .creditset .credits {
    width: calc(100% - 20px);
  }
  main .inner .sec#sec3 .insec .pcombo .creditset .credits:first-child {
    margin-bottom: 20px;
  }
  main .inner .sec#sec4 {
    width: 100%;
  }
  main .inner .sec#sec4.on .insec h4 {
    animation-name: appear;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.25s;
  }
  main .inner .sec#sec4.on .insec .photo {
    opacity: 1;
  }
  main .inner .sec#sec4.on .insec .photo::after {
    animation-name: appear;
    animation-duration: 0.35s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }
  main .inner .sec#sec4 .insec {
    padding: 50px 0 70px 0;
  }
  main .inner .sec#sec4 .insec h4 {
    padding: 10px 20px;
    margin-bottom: 35px;
    border: solid 3px #FFC500;
    border-radius: 25px;
  }
  main .inner .sec#sec4 .insec h4 span {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .inner .sec#sec4 .insec h5 {
    width: 200px;
    height: 172px;
    background-image: url(../images/logoset_sp.png);
    margin-bottom: 45px;
  }
  main .inner .sec#sec4 .insec .photo {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 65px;
  }
  main .inner .sec#sec4 .insec .photo::after {
    width: 118px;
    height: 163px;
    right: 20px;
    bottom: -50px;
  }
  main .inner .sec#sec4 .insec .btn {
    width: calc(100% - 40px);
    margin-bottom: 120px;
  }
  main .inner .sec#sec4 .insec .btn a {
    color: #FFF;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    height: 60px;
  }
  main .inner .sec#sec4 .insec .staff {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    transition: all 0.25s ease-in 0s;
  }
  main .inner .sec#sec4 .insec .staff.on {
    opacity: 1;
  }
  main .inner .sec#sec4 .insec .staff dt:nth-child(1) {
    width: 120px;
    margin-bottom: 20px;
  }
  main .inner .sec#sec4 .insec .staff dt:nth-child(2) {
    color: #000;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
  main .inner .sec#sec4 .insec .staff dd {
    color: #000;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }

  footer {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
  }
  footer .infoot {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  footer .infoot .links {
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 80px auto;
  }
  footer .infoot .links div:not(:first-child) {
    margin-left: 0px;
  }
  footer .infoot .links div a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot .links div a dl {
    width: 88px;
    height: 88px;
    margin-bottom: 10px;
    border: solid 3px #FFC500;
    border-radius: 45px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .infoot .links div a dl dt {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 0px;
  }
  footer .infoot .links div a dl dd {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot .links div a p {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  footer .infoot h5 {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 15px;
  }
  footer .infoot ul {
    width: calc(100% - 40px);
    margin: 0 auto 80px auto;
  }
  footer .infoot ul li {
    width: 46px;
  }
  footer .infoot ul li:not(:first-child) {
    margin-left: 20px;
  }
  footer .infoot ul li a {
    height: 46px;
    border-radius: 23px;
  }
  footer .infoot ul li a:hover {
    opacity: 1;
  }
  footer .infoot p.cp {
    color: #FFC500;
    font-family: aktiv-grotesk-condensed, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8rem;
    letter-spacing: 0em;
    text-align: center;
  }
}