@charset "UTF-8";

@import url("./pc.css") screen and (min-width: 768px);

/* ------------------------------------
  transiton
------------------------------------ */
.tra03 {
  -webkit-transition: all 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 300ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.tra05 {
  -webkit-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.tra08 {
  -webkit-transition: all 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.tra08p {
  -webkit-transition: all 800ms cubic-bezier(0.67, -0.03, 0.07, 1.5);
  transition: all 800ms cubic-bezier(0.67, -0.03, 0.07, 1.5);
}

.tra10 {
  -webkit-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.tra15 {
  -webkit-transition: all 1500ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
  transition: all 1500ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
}

.tra20 {
  -webkit-transition: all 2000ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
  transition: all 2000ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
}

.tra25 {
  -webkit-transition: all 2500ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear, width 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 2500ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear, width 1200ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.tra30 {
  -webkit-transition: all 3000ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
  transition: all 3000ms cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 200ms linear;
}

.tra40 {
  -webkit-transition: all 4000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all 4000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.delay01 {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.delay02 {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.delay03 {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.delay04 {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.delay05 {
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

.delay06 {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.delay07 {
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
}

.delay08 {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.delay09 {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.delay10 {
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.delay11 {
  -webkit-transition-delay: 1100ms;
  transition-delay: 1100ms;
}

.delay12 {
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.delay13 {
  -webkit-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.delay14 {
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.delay15 {
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.delay16 {
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.delay17 {
  -webkit-transition-delay: 1700ms;
  transition-delay: 1700ms;
}

.delay18 {
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.delay19 {
  -webkit-transition-delay: 1900ms;
  transition-delay: 1900ms;
}

.delay20 {
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.delay21 {
  -webkit-transition-delay: 2100ms;
  transition-delay: 2100ms;
}

/* ------------------------------------
  animation
------------------------------------ */
.js-appear_r {
  opacity: 0;
  -webkit-transform: scale(0.1) translate3d(100px,150px,0) rotate(15deg);
  transform: scale(0.1) translate3d(100px,150px,0) rotate(15deg);
  will-change: transform, opacity;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.on.js-appear_r,
.on .js-appear_r {
  opacity: 1;
  -webkit-transform: scale(1) translate3d(0,0,0) rotate(0deg);
  transform: scale(1) translate3d(0,0,0) rotate(0deg);
}

.js-appear_l {
  opacity: 0;
  -webkit-transform: scale(0.1) translate3d(-100px,150px,0) rotate(-15deg);
  transform: scale(0.1) translate3d(-100px,150px,0) rotate(-15deg);
  will-change: transform, opacity;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.on.js-appear_l,
.on .js-appear_l {
  opacity: 1;
  -webkit-transform: scale(1) translate3d(0,0,0) rotate(0deg);
  transform: scale(1) translate3d(0,0,0) rotate(0deg);
}

.on .js-anime_pop,
.on.js-anime_pop {
  -webkit-animation: pop 600ms linear 1;
  animation: pop 600ms linear 1;
}
.on .js-anime_pop_delay01,
.on.js-anime_pop_delay01 {
  -webkit-animation: pop 600ms linear 100ms 1;
  animation: pop 600ms linear 100ms 1;
}
.on .js-anime_pop_delay02,
.on.js-anime_pop_delay02 {
  -webkit-animation: pop 600ms linear 200ms 1;
  animation: pop 600ms linear 200ms 1;
}
.on .js-anime_pop_delay03,
.on.js-anime_pop_delay03 {
  -webkit-animation: pop 600ms linear 300ms 1;
  animation: pop 600ms linear 300ms 1;
}

.on .js-anime_pop_lar,
.on.js-anime_pop_lar {
  -webkit-animation: pop_lar 600ms linear 1;
  animation: pop_lar 600ms linear 1;
}
.on .js-anime_pop_lar_delay01,
.on.js-anime_pop_lar_delay01 {
  -webkit-animation: pop_lar 600ms linear 100ms 1;
  animation: pop_lar 600ms linear 100ms 1;
}
.on .js-anime_pop_lar_delay02,
.on.js-anime_pop_lar_delay02 {
  -webkit-animation: pop_lar 600ms linear 200ms 1;
  animation: pop_lar 600ms linear 200ms 1;
}

/* pop */
@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate3d(0, 2%, 0);
    transform: scale(0.9, 0.9) translate3d(0, 2%, 0);
  }
  30% {
    -webkit-transform: scale(1.05, 0.8) translate3d(0, 3%, 0);
    transform: scale(1.05, 0.8) translate3d(0, 3%, 0);
  }
  50% {
    -webkit-transform: scale(0.8, 1.05) translate3d(0, -3%, 0);
    transform: scale(0.8, 1.05) translate3d(0, -3%, 0);
  }
  70% {
    -webkit-transform: scale(1.05, 0.9) translate3d(0, 2%, 0);
    transform: scale(1.05, 0.9) translate3d(0, 2%, 0);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate3d(0, 2%, 0);
    transform: scale(0.9, 0.9) translate3d(0, 2%, 0);
  }
  30% {
    -webkit-transform: scale(1.05, 0.8) translate3d(0, 3%, 0);
    transform: scale(1.05, 0.8) translate3d(0, 3%, 0);
  }
  50% {
    -webkit-transform: scale(0.8, 1.05) translate3d(0, -3%, 0);
    transform: scale(0.8, 1.05) translate3d(0, -3%, 0);
  }
  70% {
    -webkit-transform: scale(1.05, 0.9) translate3d(0, 2%, 0);
    transform: scale(1.05, 0.9) translate3d(0, 2%, 0);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
}

@-webkit-keyframes pop_lar {
  0% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate3d(0, 3%, 0);
    transform: scale(0.9, 0.9) translate3d(0, 3%, 0);
  }
  30% {
    -webkit-transform: scale(1.2, 0.8) translate3d(0, 7%, 0);
    transform: scale(1.2, 0.8) translate3d(0, 7%, 0);
  }
  50% {
    -webkit-transform: scale(0.8, 1.2) translate3d(0, -7%, 0);
    transform: scale(0.8, 1.2) translate3d(0, -7%, 0);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate3d(0, 3%, 0);
    transform: scale(1.1, 0.9) translate3d(0, 3%, 0);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
}
@keyframes pop_lar {
  0% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate3d(0, 3%, 0);
    transform: scale(0.9, 0.9) translate3d(0, 3%, 0);
  }
  30% {
    -webkit-transform: scale(1.2, 0.8) translate3d(0, 7%, 0);
    transform: scale(1.2, 0.8) translate3d(0, 7%, 0);
  }
  50% {
    -webkit-transform: scale(0.8, 1.2) translate3d(0, -7%, 0);
    transform: scale(0.8, 1.2) translate3d(0, -7%, 0);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate3d(0, 3%, 0);
    transform: scale(1.1, 0.9) translate3d(0, 3%, 0);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate3d(0, 0, 0);
    transform: scale(1.0, 1.0) translate3d(0, 0, 0);
  }
}


/* ------------------------------------
  #load
------------------------------------ */
#load {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}

/* ------------------------------------
  #trans
------------------------------------ */
#trans {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 800;
  pointer-events: none;
  top: 0;
  right: 0;
}

#trans .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);
}
#trans .bg.b1 {
  background-color: #ff95a9;
}
#trans .bg.b2 {
  background-color: #3cffaa;
}

#trans.active .bg {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

#trans.active .bg.b1 {
  -webkit-transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#trans.active .bg.b2 {
  -webkit-transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000) 100ms;
  transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000) 100ms;
}
#trans.active.off .bg {
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);
}

#trans.active.off .bg.b2 {
  -webkit-transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#trans.active.off .bg.b1 {
  -webkit-transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000) 100ms;
  transition: transform 600ms cubic-bezier(0.190, 1.000, 0.220, 1.000) 100ms;
}

/* ------------------------------------
  all
------------------------------------ */
html, body {
  color: #000;
  background-color: #fff;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0em;
  width: 100%;
  height: auto;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-overscroll-behavior: none;
  overscroll-behavior: none;
  overflow: -moz-scrollbars-none;
  font-feature-settings: "palt";
}

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

a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

h2,h3 {
  font-weight: bold;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hidden {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.forpc {
  display: none;
}

.forsp {
  display: block;
}

input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

::-moz-selection{
  color: #fff;
  background-color: #000;
}
::selection{
  color: #fff;
  background-color: #000;
}

/* ------------------------------------
  #wrapper
------------------------------------ */
#wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-image: url("../img/bg_grid.png");
  background-repeat: repeat;
  background-position: left top;
  background-size: 375px 15px;
}

/* ------------------------------------
  #header
------------------------------------ */
#logo {
  width: 245px;
  margin: 13px 0 10px 21px;
}

/* #btn_menu */
#btn_menu {
  width: 45px;
  height: 45px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 700;
  cursor: pointer;
}

#btn_menu:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-image: url("../img/bg_pink_noise.png");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}
#btn_menu:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  background-color: rgba(0,0,0,0.4);
}

#btn_menu .bar {
  width: 30px;
  height: 21px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  margin: auto;
}

#btn_menu .bar span {
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: #fff;
  display: inline-block;
}

#btn_menu .bar span.top {
  top: 0;
}
#btn_menu .bar span.middle {
  top: 9px;
}
#btn_menu .bar span.bottom {
  bottom: 0;
}

#btn_menu.active .bar span.top {
  -webkit-transform: translate3d(0,9px,0) rotate(135deg);
  transform: translate3d(0,9px,0) rotate(135deg);
}
#btn_menu.active .bar span.middle {
  opacity: 0;
}
#btn_menu.active .bar span.bottom {
  -webkit-transform: translate3d(0,-9px,0) rotate(-135deg);
  transform: translate3d(0,-9px,0) rotate(-135deg);
}


/* #block_menu */
#block_menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 600;
  display: none;
}

#block_menu .block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 13px 0 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../img/bg_grid.png");
  background-repeat: repeat;
  background-position: left top;
  background-size: 375px 15px;
}

#block_menu .block .logo {
  width: 245px;
  margin: 0 0 34px 21px;
}

#block_menu .block .area {
  margin: 0 25px 30px 25px;
  position: relative;
}

#block_menu .block .area .left {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#block_menu .block .area .left p {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
  border: 2px #3cffaa solid;
  background-color: #fff;
  padding: 6px 10px 6px 10px;
  text-align: center;
}

#block_menu .block .area .right {
  width: 160px;
  float: right;
  text-align: left;
  position: relative;
  z-index: 10;
}

#block_menu .block .area .right p {
  font-size: 15px;
  line-height: 22px;
  margin: 9px 0 9px 0;
  white-space: nowrap;
}

#block_menu .block .area .right p a {
  color: #fff;
  background: linear-gradient(#000 0%, #000 100%);
  padding: 2px 0;
}

/* ------------------------------------
  #ajax_area
------------------------------------ */
#ajax_area {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#ajax_area .topic {
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 3px 4px #000;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 10;
}
#song .topic {
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, -3px 4px #000;
}
.ios #song .topic {
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 3px 4px #000;
}
#ajax_area .topic.small {
  font-size: 25px;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 3px 3px #000;
}

#ajax_area .topic span {
  font-size: 12px;
  letter-spacing: 0em;
  text-shadow: none;
  color: #000;
  margin-left: 10px;
  vertical-align: middle;
}

#ajax_area .topic.br span {
  position: absolute;
  bottom: -15px;
  right: -30px;
  line-height: 12px;
  border: 2px #3cffaa solid;
  background-color: #fff;
  padding: 4px 7px;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
}

#ajax_area .sub_topic {
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 2px 2px #000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
#ajax_area #contents .sub_topic {
  margin-bottom: 45px;
}

/* ------------------------------------
  #fv
------------------------------------ */
#fv {
  width: 100%;
  position: relative;
  padding: 35px 0 47px 0;
}

#fv .kv {
  margin: 0 18px 0 18px;
  position: relative;
}

#fv .kv:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 34px;
  left: 0;
  background-image: url("../img/gif/gif_kv_dot.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}

#fv .bg1 {
  width: 15px;
  height: 146px;
  background-color: #ff007e;
  position: absolute;
  top: 20px;
  left: 0px;
  mix-blend-mode: multiply;
}

#fv .bg1:before {
  content: "";
  width: 136px;
  height: 136px;
  background-color: #ffd884;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  top: -112px;
  left: -61px;
  mix-blend-mode: multiply;
}

#fv .bg1:after {
  content: "";
  width: 134px;
  height: 134px;
  position: absolute;
  top: -120px;
  left: 12px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_circle_dot_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#fv .bg2:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 135px 135px 0;
  border-color: transparent #87ff91 transparent transparent;
  position: absolute;
  top: 135px;
  right: -61px;
  mix-blend-mode: multiply;
}

#fv .bg2:after {
  content: "";
  width: 134px;
  height: 134px;
  position: absolute;
  top: 158px;
  right: -104px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_circle_dot_red.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ------------------------------------
  #thx
------------------------------------ */
#thx {
  width: 100%;
  position: relative;
  margin-bottom: 48px;
}

#thx:before {
  content: "";
  width: 24px;
  height: 255px;
  position: absolute;
  top: -85px;
  right: -4px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_giza_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#thx .block {
  background-color: #ff5d7d;
  border: 3px #2effaa solid;
  border-left: none;
  color: #fff;
  margin-right: 30px;
  padding: 15px 0 11px 0;
  box-shadow: 6px 9px rgba(0,0,0,0.6);
  position: relative;
}

#thx .block p {
  font-size: 14px;
  line-height: 25px;
  margin: 0 24px 0 24px;
}

#thx .bg:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 135px 135px;
  border-color: transparent transparent #92bee6 transparent;
  position: absolute;
  top: -33px;
  left: -53px;
  mix-blend-mode: multiply;
}

#thx .bg:after {
  content: "";
  width: 122px;
  height: 122px;
  position: absolute;
  top: -29px;
  left: 8px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ------------------------------------
  #special
------------------------------------ */
#special {
  width: 100%;
  position: relative;
  margin-bottom: 75px;
}

#special .topic_area {
  display: inline-block;
  height: 66px;
  line-height: 66px;
  background-color: #fff;
  border: 2px #3cffaa solid;
  margin-bottom: 15px;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
  border-left: none;
  padding: 0 30px 0 30px;
  margin-left: -6px;
}

#special .desc {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 21px 13.8%;
  clear: both;
  position: relative;
  z-index: 10;
}

#special span {
  color: #fff;
  background-color: #000;
  padding: 1px 0;
}

#special .movie {
  margin: 0 20px 0 20px;
  background-color: #fff;
  border: 2px #3cffaa solid;
  margin-bottom: 15px;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
  padding: 12px;
}

#special .movie .iframe {
  width: 100%;
  position: relative;
}

#special .movie .iframe:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

#special .movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#special .bg:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 232px 232px 0 0;
  border-color: #87ff91 transparent transparent transparent;
  position: absolute;
  top: 172px;
  left: -25px;
  mix-blend-mode: multiply;
}

#special .bg:after {
  content: "";
  width: 134px;
  height: 134px;
  position: absolute;
  top: 285px;
  left: -15px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_circle_dot_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ------------------------------------
  #greet
------------------------------------ */
#greet {
  width: 100%;
  position: relative;
  margin-bottom: 95px;
}

#greet .block {
  margin-left: 30px;
  background-image: url("../img/bg_pink_noise.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  border: 3px #2effaa solid;
  border-right: none;
  color: #fff;
  padding: 30px 0 40px 0;
  box-shadow: 6px 9px rgba(0,0,0,0.6);
  position: relative;
}

#greet .block:before {
  content: "";
  width: 7px;
  height: 74px;
  position: absolute;
  top: 22px;
  right: 20px;
  background-image: url("../img/txt_greet.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#greet .block .txt1 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  color: #ff9cb0;
  margin-bottom: 28px;
}

#greet .block .txt2 {
  font-size: 13px;
  line-height: 22px;
  margin: 0 20px 12px 20px;
  text-align: justify;
}

#greet .block .txt3 {
  font-size: 13px;
  line-height: 20px;
  text-align: right;
  margin: 0 20px 13px 20px;
}

#greet .block .txt3 span {
  display: block;
  font-size: 10px
}

#greet .block .sign img {
  width: 186px;
  float: right;
  margin-right: 25px;
}


#greet .bg:before {
  content: "";
  width: 31px;
  height: 136px;
  background-color: #ff007e;
  position: absolute;
  top: -136px;
  right: 0;
  mix-blend-mode: multiply;
}

#greet .bg:after {
  content: "";
  width: 176px;
  height: 176px;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  background-color: #87ff91;
  position: absolute;
  top: 200px;
  left: -88px;
  mix-blend-mode: multiply;

}

/* ------------------------------------
  #contents
------------------------------------ */
#child #in-contents {
  position: relative;
}

#child #in-contents:before {
  content: "";
  width: 195px;
  height: 195px;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -156px;
  left: -125px;
  mix-blend-mode: multiply;
}

#contents {
  width: 100%;
  position: relative;
  margin-bottom: 110px;
}
#child #contents {
  margin-top: 45px;
}

#contents .block {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

#contents .block.b1:before {
  content: "";
  width: 177px;
  height: 177px;
  background-color: #87ff91;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  top: 5px;
  left: -86px;
  mix-blend-mode: multiply;
}

#contents .block.b1:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 183px 0 0 183px;
  border-color: transparent transparent transparent #92bee6;
  position: absolute;
  top: -70px;
  right: -123px;
  mix-blend-mode: multiply;
}
#child #contents .block.b1:after {
  display: none;
}

#contents .block.b1 .bg:before {
  content: "";
  width: 52px;
  height: 116px;
  background-image: url("../img/bg_arrow_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 37px;
  left: 8px;
  mix-blend-mode: multiply;
}

#contents .block.b1 .bg:after {
  content: "";
  width: 259px;
  height: 102px;
  background-image: url("../img/bg_stage_yellow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -47px;
  left: -89px;
  mix-blend-mode: multiply;
}

#contents .block.b2:before {
  content: "";
  width: 27px;
  height: 326px;
  background-image: url("../img/bg_wave_pur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 41px;
  right: -4px;
  mix-blend-mode: multiply;
}

#contents .block.b2:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 167px 0 0 167px;
  border-color: transparent transparent transparent #6fe2ff;
  position: absolute;
  top: 35px;
  right: -73px;
  mix-blend-mode: multiply;
}

#contents .block.b2 .bg:before {
  content: "";
  width: 189px;
  height: 189px;
  background-color: #fbf95e;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  bottom: -95px;
  left: -84px;
  mix-blend-mode: multiply;
}

#contents .block.b2 .bg:after {
  content: "";
  width: 120px;
  height: 111px;
  background-image: url("../img/bg_line_pink.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -68px;
  right: -10px;
  mix-blend-mode: multiply;
}

#contents .block.b3:before {
  content: "";
  width: 16px;
  height: 202px;
  background-color: #ff007e;
  position: absolute;
  bottom: -33px;
  left: 0;
  mix-blend-mode: multiply;
}

#contents .block.b3:after {
  content: "";
  width: 40px;
  height: 420px;
  background-image: url("../img/bg_giza_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -310px;
  left: 7px;
  mix-blend-mode: multiply;
}

#contents .block.b3 .bg:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 217px 217px;
  border-color: transparent transparent #87ff91 transparent;
  position: absolute;
  bottom: 98px;
  right: -44px;
  mix-blend-mode: multiply;
}

#contents .block.b3 .bg:after {
  content: "";
  width: 195px;
  height: 195px;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -19px;
  right: -14px;
  mix-blend-mode: multiply;
}


#contents .block .topic_area {
  display: inline-block;
  height: 66px;
  line-height: 66px;
  background-color: #fff;
  border: 2px #3cffaa solid;
  margin-bottom: 15px;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
}
#contents .block.b1 .topic_area,
#contents .block.b3 .topic_area {
  border-left: none;
  padding: 0 40px 0 40px;
  margin-left: -6px;
}
#contents .block.b2 .topic_area {
  float: right;
  border-right: none;
  padding: 0 40px 0 40px;
  margin-right: -6px;
}

#contents .block .desc {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 14px 13.8%;
  clear: both;
  position: relative;
  z-index: 10;
}
#contents .block.b2 .desc {
  text-align: right;
  margin: 0 13.8% 14px 0;
}

#contents .block .desc span {
  color: #fff;
  background-color: #000;
  padding: 1px 0;
}

#contents .block .sc {
  margin-top: -35px;
  padding: 35px 40px 15px 40px;
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  position: relative;
  z-index: 8;
  clear: both;
}

#contents .block .sc .c {
  display: inline-block;
  width: -webkit-calc(100vw - 80px);
  width: calc(100vw - 80px);
  position: relative;
  vertical-align: middle;
  margin-right: 13px;
}
#contents .block .sc .c:last-child {
  margin-right: 40px;
}

#contents .block .sc .c a {
  display: block;
}

/* ------------------------------------
  #content
------------------------------------ */
#content {
  width: 100%;
  position: relative;
  margin-bottom: 67px;
}
#child.letter #content {
  margin-bottom: 92px;
}
#child:not(.letter) #content:before {
  content: "";
  width: 52px;
  height: 116px;
  background-image: url("../img/bg_arrow_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 12px;
  right: 23px;
  mix-blend-mode: multiply;
}
#child.result #content:before {
  top: -35px;
}

#child:not(.letter) #content:after {
  content: "";
  width: 154px;
  height: 154px;
  background-color: #fbc900;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  top: -13px;
  left: -88px;
  mix-blend-mode: multiply;
}

#child.letter #content:before {
  content: "";
  width: 24px;
  height: 255px;
  position: absolute;
  top: -195px;
  right: 31px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_giza_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#child.letter #content:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 215px 215px 0;
  border-color: transparent #fff000 transparent transparent;
  position: absolute;
  top: -86px;
  right: 45px;
  mix-blend-mode: multiply;
}

#content .topic_area {
  display: inline-block;
  height: 66px;
  line-height: 66px;
  background-color: #fff;
  border: 2px #3cffaa solid;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
  border-left: none;
  margin: 0 0 43px -6px;
  padding: 0 22px 0 28px;
  position: relative;
  z-index: 10;
}
#content .topic_area.btm {
  margin-bottom: 23px;
}

#content .desc {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0 30px 47px 35px;
  text-align: justify;
  position: relative;
  z-index: 10;
}

#content .desc span {
  background: linear-gradient(#000 0%, #000 100%);
  padding: 1px 0;
}

#content .desc.space span {
  white-space: nowrap;
}

#content .bg1:before {
  content: "";
  width: 24px;
  height: 255px;
  position: absolute;
  top: 12px;
  left: 7px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_giza_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.result #content .bg1:before {
  top: 124px;
  left: 0;
}

#content .bg1:after {
  content: "";
  width: 15px;
  height: 146px;
  position: absolute;
  top: 226px;
  right: 0;
  mix-blend-mode: multiply;
  background-color: #ff007e;
}

#content .sc {
  margin: -22px 0 18px 0;
  padding: 0 40px 15px 40px;
  font-size: 0;
  position: relative;
  z-index: 30;
}
#content .sc:not(.none) {
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

#content .sc .embed {
  display: inline-block;
  width: -webkit-calc(100vw - 80px);
  width: calc(100vw - 80px);
  position: relative;
  z-index: 20;
  vertical-align: top;
  margin-right: 13px;
  -webkit-border-radius: 15px 15px!important;
  border-radius: 15px 15px!important;
  background-color: #fff;
  overflow: hidden;
}
#content .sc .embed:last-child {
  margin-right: 40px;
}
#content .sc.none .embed {
  display: block;
  margin: 0 auto;
}

#content .letter_block .embed {
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  max-width: 324px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  -webkit-border-radius: 15px 15px!important;
  border-radius: 15px 15px!important;
  background-color: #fff;
  overflow: hidden;
}

#content .letter_block .embed.js-ig iframe {
  min-height: 610px;
}

#content .embed.js-tiktok {
  min-width: 324px;
  max-width: 324px;
}

#content .embed iframe {
  display: block;
  min-width: auto!important;
  -webkit-border-radius: 15px 15px!important;
  border-radius: 15px 15px!important;
  margin: 0!important;
}

#content .embed:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  min-width: auto!important;
  border: 2px #000 solid!important;
  -webkit-border-radius: 15px 15px!important;
  border-radius: 15px 15px!important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

#content .embed .twitter-tweet {
  margin: 0!important;
}

#content .embed.js-yt iframe {
  width: 100%;
}

#content .letter_block {
  position: relative;
  margin-bottom: 50px;
}

#content .letter_block.v1:before {
  content: "";
  width: 47px;
  height: 147px;
  background-color: #ff007e;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
#content .letter_block.v1:after {
  content: "";
  width: 177px;
  height: 177px;
  background-color: #87ff91;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  bottom: -28px;
  right: -59px;
  mix-blend-mode: multiply;
}

#content .cs {
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  max-width: 324px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
#content .sc .cs {
  width: 100%;
}

#content .comment {
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  max-width: 325px;
  margin: -15px auto 50px;
  position: relative;
}

#content .comment:before {
  content: "";
  width: 157px;
  height: 157px;
  position: absolute;
  top: 70px;
  right: -12px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#content .comment:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 188px 188px;
  border-color: transparent transparent #92bee6 transparent;
  position: absolute;
  top: 113px;
  right: -46px;
  mix-blend-mode: multiply;
}

#content .comment .pic {
  width: 92px;
  margin-bottom: 16px;
}

#content .comment .name {
  position: absolute;
  top: 14px;
  right: 0;
  font-size: 12px;
  line-height: 26px;
  text-align: right;
}

#content .comment .name span {
  font-size: 15px;
  display: block;
}

#content .comment .fuki {
  margin: 0 8px 0 8px;
  background-image: url("../img/bg_pink_noise.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  z-index: 10;
  border: 2px #3cffaa solid;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
}
#content .comment .fuki:before {
  content: "";
  width: 16px;
  height: 18px;
  background-image: url("../img/bg_comment_fuki_tri.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -18px;
  left: 15px;
}

#content .comment .fuki p {
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  padding: 12px 12px;
}

#content .btn a {
  display: block;
  width: 265px;
  height: 52px;
  line-height: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 26px 26px;
  border-radius: 26px 26px;
  font-size: 15px;
  text-align: center;
  margin: 0 auto 22px;
  box-shadow: 3px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
}
#content .btn.letter a {
  background-color: #a791ee;
  border: 2px #3cffaa solid;
  color: #fff;
  margin-bottom: 72px;
}
#content .watch .btn a {
  background-color: #fff;
  border: 2px #ff007e solid;
  color: #ff007e;
}

#content .watch .btn a span {
  display: inline-block;
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: left center;
}

#content .watch .btn a span.tw {
  background-image: url("../img/icn_btn_watch_tw.png");
  background-size: 24px 20px;
}

#content .watch .btn a span.ig {
  background-image: url("../img/icn_btn_watch_ig.png");
  background-size: 23px 23px;
}

#content .watch .btn a span.tik {
  background-image: url("../img/icn_btn_watch_tik.png");
  background-size: 19px 21px;
  padding-left: 25px;
}

#content .how {
  margin-bottom: 38px;
  padding-right: 35px;
  position: relative;
}

#content .how:before {
  content: "";
  width: 120px;
  height: 111px;
  background-image: url("../img/bg_line_pink.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 42px;
  right: -20px;
  mix-blend-mode: multiply;
}
#content .how:after {
  content: "";
  width: 83px;
  height: 107px;
  background-color: #ff007e;
  position: absolute;
  bottom: -107px;
  left: 0;
  mix-blend-mode: multiply;
}

#content .how .block {
  padding: 37px 0 17px 0;
  border: 2px #3cffaa solid;
  border-left: none;
  background-image: url("../img/bg_green_noise.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  z-index: 10;
}

#content .how .block .topic {
  margin-bottom: 27px;
}

#content .how .block ul {
  padding: 0 25px 0 32px;
}

#content .how .block ul li {
  position: relative;
  margin-bottom: 27px;
  padding-left: 33px;
}

#content .how .block ul li .num img {
  width: 15px;
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  margin: auto;
}

#content .how .block ul li .txt1 {
  font-size: 15px;
  line-height: 20px;
}

#content .how .block ul li .txt2 {
  font-size: 11px;
  line-height: 15px;
  font-weight: normal;
  margin-top: 5px;
}

#content .attention {
  margin-bottom: 55px;
  padding-left: 45px;
  position: relative;
}
.result #content .attention {
  padding: 0 15px 0 15px;
}

#content .attention:before {
  content: "";
  width: 134px;
  height: 134px;
  position: absolute;
  top: -92px;
  left: 23px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_circle_dot_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#content .attention:after {
  content: "";
  width: 176px;
  height: 176px;
  background-color: #87ff91;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  bottom: -184px;
  left: -118px;
  mix-blend-mode: multiply;
}

#content .attention .block {
  padding: 37px 0 37px 0;
  border: 2px #3cffaa solid;
  border-right: none;
  background-image: url("../img/bg_orange_noise.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  z-index: 10;
}
.result #content .attention .block {
  border: 3px #3cffaa solid;
  box-shadow: 10px 10px rgba(0,0,0,0.6);
}

#content .attention .block .topic {
  margin-bottom: 27px;
}

#content .attention .block .txt {
  font-size: 11px;
  line-height: 18px;
  font-weight: normal;
  padding: 0 15px 0 30px;
}
.result #content .attention .block .txt {
  padding-left: 15px;
}

#content .attention .block .txt span {
  display: block;
  text-indent: -6px;
  padding-left: 6px;
}

#content .attention .block .url {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}
#content .attention .block .url a {
  display: inline-block;
}

#content .pickup {
  position: relative;
}

#content .pickup:before {
  content: "";
  width: 27px;
  height: 326px;
  position: absolute;
  top: 55px;
  right: -4px;
  z-index: 20;
  background-image: url("../img/bg_wave_pur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}
#content .pickup:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 167px 0 0 167px;
  border-color: transparent transparent transparent #6fe2ff;
  position: absolute;
  top: 46px;
  right: -73px;
  z-index: 1;
  mix-blend-mode: multiply;
}

#content .pickup .btn.letter {
  position: relative;
  z-index: 10;
}

#content .pickup .bg {
  position: relative;
}

#content .pickup .bg:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 217px 0 0 217px;
  border-color: transparent transparent transparent #87ff91;
  position: absolute;
  bottom: 93px;
  left: -90px;
  mix-blend-mode: multiply;
}

#content .watch {
  position: relative;
}

#content .watch:before {
  content: "";
  width: 259px;
  height: 102px;
  background-image: url("../img/bg_stage_yellow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -72px;
  right: -79px;
  mix-blend-mode: multiply;
}
#content .watch:after {
  content: "";
  width: 31px;
  height: 326px;
  background-image: url("../img/bg_giza_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: -14px;
  mix-blend-mode: multiply;
}

/* ------------------------------------
  #song
------------------------------------ */
#song {
  width: 100%;
  position: relative;
  padding-top: 50px;
  margin-bottom: 55px;
}

#song:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 217px 0 0 217px;
  border-color: transparent transparent transparent #ffff00;
  position: absolute;
  top: 0;
  right: -65px;
  z-index: 1;
  mix-blend-mode: multiply;
}

#song:after {
  content: "";
  width: 194px;
  height: 194px;
  background-color: #7fdef6;
  -webkit-border-radius: 97px 97px;
  border-radius: 97px 97px;
  position: absolute;
  top: 137px;
  right: -88px;
  z-index: 1;
  mix-blend-mode: multiply;
}

#song .topic_area {
  display: inline-block;
  width: 76px;
  line-height: 76px;
  height: 228px;
  background-color: #fff;
  border: 2px #3cffaa solid;
  margin-bottom: 15px;
  box-shadow: 6px 6px rgba(0,0,0,0.6);
  border-right: none;
  padding: 16px 0 2px 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#song .topic_area .topic {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-lr;
}

#song .desc {
  font-size: 14px;
  line-height: 20px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #000;
  padding: 4px 0 0 0;
  line-height: 20px;
  position: absolute;
  top: 50px;
  right: 90px;
  z-index: 10;
}
#song .desc .rotate {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#song .pic {
  border: 2px #00c0ff solid;
  border-left: none;
  margin: 0 119px 24px 0;
  position: relative;
  z-index: 10;
}

#song .txt1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

#song .txt2 {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 2px;
}

#song .txt3 {
  text-align: center;
  font-size: 10px;
  line-height: 13px;
  margin-bottom: 23px;
}

#song .btn a {
  display: block;
  width: 265px;
  height: 52px;
  line-height: 48px;
  background-color: #fff;
  border: 2px #ff007e solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 26px 26px;
  border-radius: 26px 26px;
  font-size: 15px;
  color: #ff007e;
  text-align: center;
  margin: 0 auto;
  box-shadow: 3px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
}

/* ------------------------------------
  #share
------------------------------------ */
#share {
  width: 100%;
  height: 246px;
  position: relative;
  padding-top: 33px;
  margin-bottom: 2px;
  text-align: center;
}
#child #share {
  margin-bottom: 50px;
}

#share:before {
  content: "";
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  height: 246px;
  border: 2px #3cffaa solid;
  border-right: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: url("../img/bg_yellow_noise.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#top #share:after {
  content: "";
  width: 27px;
  height: 326px;
  position: absolute;
  top: 23px;
  left: 12px;
  z-index: 20;
  background-image: url("../img/bg_wave_pur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}

#child #share:after {
  content: "";
  width: 27px;
  height: 326px;
  position: absolute;
  top: 111px;
  right: 12px;
  z-index: 20;
  background-image: url("../img/bg_wave_pur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}

#child.letter #share:after {
  content: "";
  width: 66px;
  height: 147px;
  background-image: url("../img/bg_arrow_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 237px;
  left: 294px;
  mix-blend-mode: multiply;
}

#child:not(.letter) #share .bg {
  content: "";
  width: 22px;
  height: 202px;
  position: absolute;
  top: -144px;
  right: 0;
  z-index: 10;
  background-color: #ff007e;
  mix-blend-mode: multiply;
}

#child.letter #share .bg {
  width: 100%;
  height: 27px;
  background-image: url("../img/bg_wave_yellow.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  position: absolute;
  top: -40px;
  left: 0;
  mix-blend-mode: multiply;
}
#child.letter #share .bg:before {
  content: "";
  width: 158px;
  height: 158px;
  position: absolute;
  top: -108px;
  right: -12px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#child.letter #share .bg:after {
  content: "";
  width: 120px;
  height: 111px;
  background-image: url("../img/bg_line_pink.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -68px;
  right: 189px;
  mix-blend-mode: multiply;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#share .block {
  position: relative;
  z-index: 30;
}

#share .tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 112px 112px;
  border-color: transparent transparent #ff61ca transparent;
  position: absolute;
  bottom: 12px;
  right: 0;
  z-index: 20;
  mix-blend-mode: multiply;
}

#share .block .txt {
  line-height: 20px;
  padding: 2px 0 27px 0;
}

#share .block ul {
  letter-spacing: -.4em;
  position: relative;
  z-index: 10;
}

#share .block ul li {
  display: inline-block;
  margin: 0 11px;
}

#share .block ul li a {
  display: block;
  width: 65px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 3px 6px rgba(0,0,0,0.6);
  -webkit-border-radius: 33px 33px;
  border-radius: 33px 33px;
}
#share .block ul li.tw a {
  background-image: url("../img/btn_share_tw.png");
}
#share .block ul li.fb a {
  background-image: url("../img/btn_share_fb.png");
}
#share .block ul li.line a {
  background-image: url("../img/btn_share_line.png");
}


/* ------------------------------------
  #link
------------------------------------ */
#link {
  width: 100%;
  padding: 40px 0 17px 0;
  position: relative;
}

#link:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #5eb4ea;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

#link ul {
  margin: 0 25px 0 25px;
  position: relative;
  z-index: 10;
  padding-top: 10px;
}

#link ul li {
  width: 100%;
  margin-bottom: 30px;
}

#link ul li a {
  display: block;
  margin-bottom: 14px;
}

/* ------------------------------------
  #child
------------------------------------ */
#child .kv {
  margin-bottom: 35px;
  position: relative;
  z-index: 10;
}


/* ------------------------------------
  #footer
------------------------------------ */
#footer {
  width: 100%;
  height: 105px;
  border-top: 3px #2effaa solid;
  background-image: url("../img/bg_pink_noise.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
}

#footer .copy {
  width: 192px;
  height: 13px;
  margin: 0 auto;
  padding-top: 46px;
}

/* ------------------------------------
  #result
------------------------------------ */
#result {
  margin-bottom: 40px;
  padding-top: 58px;
  position: relative;
}

#result:before {
  content: "";
  width: 24px;
  height: 255px;
  position: absolute;
  top: -85px;
  right: -4px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_giza_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#result:after {
  content: "";
  width: 136px;
  height: 136px;
  position: absolute;
  top: 0px;
  right: 79px;
  mix-blend-mode: multiply;
  background-color: #ffd884;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
}

#result .topic_area {
  display: inline-block;
  height: 64px;
  line-height: 64px;
  background-color: #ff5d7d;
  border: 2px #3cffaa solid;
  margin-bottom: 15px;
  position: absolute;
  top: 16px;
  right: 0;
  z-index: 20;
  border-right: none;
  padding: 0 40px 0 40px;
  margin-right: -6px;
}

#result .block {
  background-color: #ff5d7d;
  border: 3px #2effaa solid;
  border-left: none;
  color: #fff;
  margin-right: 30px;
  padding: 15px 0 11px 0;
  box-shadow: 6px 9px rgba(0,0,0,0.6);
  position: relative;
}

#result .block p {
  font-size: 14px;
  line-height: 25px;
  margin: 0 24px 0 24px;
}

#result .bg:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 135px 135px;
  border-color: transparent transparent #92bee6 transparent;
  position: absolute;
  top: -33px;
  left: -53px;
  mix-blend-mode: multiply;
}

#result .bg:after {
  content: "";
  width: 122px;
  height: 122px;
  position: absolute;
  top: -29px;
  left: 8px;
  mix-blend-mode: multiply;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#result .pic {
  margin: 0 15px;
  position: relative;
  z-index: 10;
}



/* ------------------------------------
  .result
------------------------------------ */
.result #content .desc {
  margin-bottom: 39px;
}

#content .result_block {
  margin: 0 15px 50px 15px;
  position: relative;
}

#content .result_block .area {
  padding: 23px 10px 20px 10px;
  background-color: #fff;
  border: 3px #3cffaa solid;
  box-shadow: 10px 10px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
}

#content .result_block .topic {
  text-align: left;
}
#content .result_block .topic.x-small {
  font-size: 22px;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 2px 3px #000;
  margin-bottom: 8px;
}

#content .result_block .head {
  position: relative;
  margin-bottom: 87px;
}
#content .result_block.b5 .head {
  margin-bottom: 28px;
}

#content .result_block .head .txt1 {
  padding: 11px 16px;
  border: 3px #3cffaa solid;
  position: absolute;
  top: 40px;
  right: -25px;
  background-color: #fff;
}
#content .result_block.b2 .area,
#content .result_block.b2 .head .txt1 {
  border-color: #ff0078;
}
#content .result_block.b3 .area,
#content .result_block.b3 .head .txt1 {
  border-color: #33ff23;
}
#content .result_block.b4 .area,
#content .result_block.b4 .head .txt1 {
  border-color: #00a2ff;
}
#content .result_block.b5 .area,
#content .result_block.b5 .head .txt1 {
  border-color: #ff7200;
}

#content .result_block .name {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

#content .result_block .name span {
  background-color: #fcff00;
  padding: 3px 0;
  display: inline-block;
}

#content .result_block .em {
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}

#content .result_block .em.yt:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

#content .result_block .em.yt iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#content .result_block .em.js-tiktok {
  -webkit-width: calc(100% + 20px);
  width: calc(100% + 20px);
  margin-left: -10px;
}

#content .result_block .prize {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 25px;
}


#content .result_block .url {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 12px;
}
#content .result_block .url a {
  color: #00a2ff;
  word-break: break-all;
}

#content .result_block .txt2 {
  font-size: 13px;
  line-height: 22px;
}

#content .result_block.b1:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 183px 183px;
  border-color: transparent transparent #92bee6 transparent;
  position: absolute;
  bottom: 70px;
  left: -83px;
  z-index: 1;
  mix-blend-mode: multiply;
}
#content .result_block.b1:after {
  content: "";
  width: 120px;
  height: 111px;
  background-image: url("../img/bg_line_pink.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -70px;
  right: 55px;
  z-index: 1;
  mix-blend-mode: multiply;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#content .result_block.b2:before {
  content: "";
  width: 145px;
  height: 136px;
  position: absolute;
  top: 218px;
  left: -62px;
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: #ff007e;
}
#content .result_block.b2:after {
  content: "";
  width: 177px;
  height: 177px;
  position: absolute;
  bottom: 80px;
  right: -80px;
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: #87ff91;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
}

#content .result_block.b3:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 167px 0 0 167px;
  border-color: transparent transparent transparent #6fe2ff;
  position: absolute;
  top: -118px;
  left: 50%;
  margin-left: -20px;
  z-index: 1;
  mix-blend-mode: multiply;
}
#content .result_block.b3:after {
  content: "";
  width: 27px;
  height: 326px;
  background-image: url("../img/bg_wave_pur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -76px;
  right: 20px;
  mix-blend-mode: multiply;
}
#content .result_block.b3 .bg:before {
  content: "";
  width: 189px;
  height: 189px;
  background-color: #fbf95e;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  bottom: 138px;
  left: -84px;
  z-index: 1;
  mix-blend-mode: multiply;
}
#content .result_block.b3 .bg:after {
  content: "";
  width: 134px;
  height: 134px;
  background-image: url("../img/bg_circle_dot_red.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 87px;
  left: -50px;
  mix-blend-mode: multiply;
}

#content .result_block.b4:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 217px 0 0 217px;
  border-color: transparent transparent transparent #87ff91;
  position: absolute;
  top: -200px;
  right: -108px;
  z-index: 1;
  mix-blend-mode: multiply;
}
#content .result_block.b4:after {
  content: "";
  width: 259px;
  height: 102px;
  background-image: url("../img/bg_stage_yellow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 256px;
  right: -79px;
  mix-blend-mode: multiply;
}

#content .result_block.b5:before {
  content: "";
  width: 31px;
  height: 327px;
  background-image: url("../img/bg_giza_orange.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -287px;
  left: -20px;
  mix-blend-mode: multiply;
}
#content .result_block.b5:after {
  content: "";
  width: 194px;
  height: 194px;
  background-color: #7fdef6;
  -webkit-border-radius: 50% 50%;
  border-radius: 50% 50%;
  position: absolute;
  bottom: 4px;
  right: -113px;
  mix-blend-mode: multiply;
}
#content .result_block.b5 .bg:before {
  content: "";
  width: 195px;
  height: 195px;
  background-image: url("../img/bg_tri_dot_green.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 136px;
  left: -121px;
  mix-blend-mode: multiply;
}
#content .result_block.b5 .bg:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 217px 217px 0;
  border-color: transparent #ffff00 transparent transparent;
  position: absolute;
  top: 296px;
  left: -137px;
  mix-blend-mode: multiply;
}

.result #content .attention:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent #ff61ca transparent;
  position: absolute;
  top: -138px;
  left: initial;
  right: -20px;
  z-index: 1;
  mix-blend-mode: multiply;
}
.result #content .attention:after {
  content: "";
  width: 276px;
  height: 27px;
  background-image: url("../img/bg_wave_yellow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -45px;
  left: -60px;
  mix-blend-mode: initial;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}


/* ------------------------------------
  media
------------------------------------ */
@media screen and (max-width: 370px) {
  #contents .block.b3 .desc {
    margin: 0 0 14px 20px;
  }

  #song .desc {
    top: 25px;
  }

  #share .block .txt {
    font-size: 14px;
  }

  #block_menu .block .area {
    margin: 0 20px 30px 20px;
  }

  #block_menu .block .area .left p {
    font-size: 14px;
    left: -5px;
    padding: 4px 8px 4px 8px;
  }

  #child #share:after {
    right: 0;
  }

  #content .result_block .topic {
    font-size: 25px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 350px) {
  #special .topic_area {
    padding: 0 10px 0 20px;
  }
  #special .desc {
    margin-left: 4%;
  }

  #thx .min {
    display: none;
  }
}

@media screen and (max-width: 330px) {
  #logo,
  #block_menu .block .logo {
    width: 240px;
  }
}

