/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* General */
.cf {
  *zoom: 1;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

form ::-webkit-input-placeholder {
  color: #c6c6c6;
}

form :-moz-placeholder {
  opacity: 1;
  color: #c6c6c6;
}

form ::-moz-placeholder {
  opacity: 1;
  color: #c6c6c6;
}

form :-ms-input-placeholder {
  color: #c6c6c6;
}

::-moz-selection {
  color: #fff;
  background: rgba(31, 127, 194, 0.7);
}

::selection {
  color: #fff;
  background: rgba(31, 127, 194, 0.7);
}

img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button {
  display: block;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  position: relative;
  padding-top: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #363636;
  background: url(../img/common/main_bg.png) center top repeat-y;
  z-index: 0;
  content: 'pc';
  cursor: none;
}

body.prohibited-area {
  cursor: auto;
}

a {
  cursor: none;
}

.font-co {
  font-family: "Concert One", cursive;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #c9edec;
}

::-webkit-scrollbar-thumb {
  background: #ff95b4;
  border-radius: 10px;
}

.mouse-cursor-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
}

.mouse-cursor-field.hover .mouse-cursor {
  width: 40px;
  height: 40px;
}

.mouse-cursor-field.hover .mouse-cursor .mouse-cursor-inner {
  width: 30px;
  height: 30px;
  background: #75cac7;
}

.mouse-cursor-field.hover .mouse-cursor .mouse-cursor-base {
  width: 40px;
  height: 40px;
}

.mouse-cursor-field.hover .mouse-cursor .mouse-cursor-base::before {
  display: none;
}

.mouse-cursor-field.issp {
  display: none;
}

.size-transition {
  transition: width .2s ease, height .2s ease;
}

.mouse-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.mouse-cursor .mouse-cursor-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 10px;
  height: 10px;
  background: #ff95b4;
  border-radius: 15px;
}

.mouse-cursor .mouse-cursor-inner svg {
  width: 30px;
  animation: cursor_flashing 1.12s infinite alternate linear;
}

.mouse-cursor .mouse-cursor-inner .cursor-icon {
  fill: #fff;
  opacity: 0;
}

.mouse-cursor .mouse-cursor-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  animation: cursorhythm .56s ease infinite;
}

.mouse-cursor .mouse-cursor-base::before, .mouse-cursor .mouse-cursor-base::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  filter: blur(4px);
  border-radius: 20px;
  z-index: -2;
  transition: top .2s ease, left .2s ease, filter .2s;
}

.mouse-cursor .mouse-cursor-base::after {
  top: 0;
  left: 0;
  background: #363636;
  filter: blur(0);
  z-index: -1;
}

@keyframes cursor_flashing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cursorhythm {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 1000px) {
  body {
    content: 'tab';
  }
}

@media only screen and (max-width: 768px) {
  body {
    padding-top: 70px;
    font-size: 14px;
    content: 'sp';
  }
  .mouse-cursor-field {
    display: none;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 30px;
  width: 100%;
  height: 100px;
  background: #fff;
  box-sizing: border-box;
  z-index: 100;
  transition: height 0.5s ease;
}

header.slim {
  height: 70px;
}

header.slim .logo {
  max-width: 162px;
}

header::before, header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  filter: blur(8px);
  z-index: -1;
}

header::after {
  background: #fff;
  filter: blur(0);
}

header .logo {
  position: relative;
  margin-right: 30px;
  max-width: 236px;
  width: 100%;
  transition: max-width 0.2s ease;
  z-index: 10;
}

header .logo::before {
  content: '';
  display: block;
  padding-top: 32.19%;
}

header .logo .logo-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  margin-right: 30px;
  transition: max-width 0.2s ease;
}

header .menu-button {
  display: none;
  position: absolute;
  top: 35px;
  right: 5%;
  width: 40px;
  height: 30px;
}

header .menu-button .menu-button-line {
  position: absolute;
  right: 0;
  width: 40px;
  height: 10px;
  background: #ff95b4;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

header .menu-button .menu-button-line.line-pink {
  top: 0;
}

header .menu-button .menu-button-line.line-green {
  bottom: 0;
  width: 30px;
  background: #75cac7;
}

header.open::before {
  display: none;
}

header.open .menu-button {
  top: 0;
  height: 100px;
}

header.open .menu-button .menu-button-line {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

header.open .menu-button .menu-button-line.line-pink {
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  z-index: 10;
}

header.open .menu-button .menu-button-line.line-green {
  bottom: 50%;
  transform: translate3d(0, 50%, 0) rotate(-45deg);
  width: 40px;
}

header.is_closing::before {
  display: none;
}

@media only screen and (max-width: 1200px) {
  header {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1000px) {
  header {
    align-items: flex-start;
    padding: 0 5%;
  }
  header .logo {
    margin-top: 24px;
    max-width: 162px;
  }
  header .menu-button {
    display: block;
  }
  header.open {
    height: 100%;
  }
  header.slim {
    align-items: flex-start;
    height: 70px;
  }
  header.slim .logo {
    margin-top: 10px;
  }
  header.slim .menu-button {
    top: 20px;
  }
  header.slim.open .menu-button {
    top: 0;
    height: 70px;
  }
}

@media only screen and (min-width: 1001px) {
  header .logo:hover .logo-container .text-l1 {
    animation: pon 1.12s infinite ease;
  }
  header .logo:hover .logo-container .text-l2s {
    animation: pon 1.12s 0.15s infinite ease;
  }
  header .logo:hover .logo-container .text-r1 {
    animation: pon 1.12s 0.3s infinite ease;
  }
  header .logo:hover .logo-container .text-r2 {
    animation: pon2 1.12s 0.45s infinite ease;
  }
  header .logo:hover .logo-container .text-r3s {
    animation: pon 1.12s 0.6s infinite ease;
  }
  header .logo:hover .logo-container .logo-headphone {
    animation: doki 0.56s infinite ease;
  }
}

@media only screen and (max-width: 768px) {
  header {
    height: 70px;
  }
  header .logo {
    margin-top: 10px;
  }
  header .menu-button {
    top: 20px;
  }
  header.open .menu-button {
    height: 70px;
  }
}

nav {
  display: flex;
  position: relative;
  height: 100%;
}

nav .menu {
  display: flex;
  height: 100%;
}

nav .menu .menu-item a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 30px;
  height: 100%;
  box-sizing: border-box;
  z-index: 1;
}

nav .menu .menu-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  z-index: -1;
  transition: width 0.2s ease-in-out;
}

nav .menu .menu-item a .wrapper {
  display: flex;
  align-items: flex-end;
}

nav .menu .menu-item a .wrapper .menu-mark {
  display: flex;
  align-items: flex-end;
  margin-right: 10px;
}

nav .menu .menu-item a .wrapper .menu-mark .menu-mark-pink {
  margin-right: 3px;
  width: 10px;
  height: 15px;
  background: #ff95b4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: background 0.2s;
}

nav .menu .menu-item a .wrapper .menu-mark .menu-mark-green {
  width: 10px;
  height: 20px;
  background: #75cac7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: background 0.2s;
}

nav .menu .menu-item a .wrapper .menu-text {
  font-size: 20px;
  transition: color 0.2s;
}

nav .menu .menu-item.active a {
  pointer-events: none;
}

nav .menu .menu-item.active a::before {
  width: 100%;
}

nav .menu .menu-item.active a .wrapper .menu-mark .menu-mark-pink,
nav .menu .menu-item.active a .wrapper .menu-mark .menu-mark-green {
  background: #fff;
}

nav .menu .menu-item.active a .wrapper .menu-text {
  color: #fff;
}

nav .sns-container {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

nav .sns-container .sns-icon {
  width: 40px;
  height: 40px;
  transition: opacity 0.5s;
}

nav .sns-container .sns-icon.twitter a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #1da1f2;
  border-radius: 10px;
}

nav .sns-container .sns-icon.twitter a svg {
  width: 24px;
  fill: #fff;
}

nav .sns-container .sns-icon.line {
  padding: 0 30px;
}

nav .sns-container .sns-icon.youtube a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

nav .sns-container .sns-border {
  margin-right: 30px;
  width: 2px;
  height: 60px;
  background: #ddd;
}

@media only screen and (max-width: 1200px) {
  nav .menu .menu-item a {
    padding: 0 15px;
  }
  nav .sns-container {
    margin-left: 15px;
  }
  nav .sns-container .sns-icon.line {
    padding: 0 15px;
  }
  nav .sns-container .sns-border {
    margin-right: 15px;
  }
}

@media only screen and (min-width: 1001px) {
  nav .menu .menu-item a:hover::before {
    width: 100%;
  }
  nav .menu .menu-item a:hover .wrapper .menu-mark .menu-mark-pink {
    background: #fff;
    animation: updown 0.28s infinite ease;
  }
  nav .menu .menu-item a:hover .wrapper .menu-mark .menu-mark-green {
    background: #fff;
    animation: updown 0.56s infinite ease;
  }
  nav .menu .menu-item a:hover .wrapper .menu-text {
    color: #fff;
  }
  nav .sns-container .sns-icon:hover {
    opacity: 0.5;
  }
}

@media only screen and (max-width: 1000px) {
  nav {
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
  }
  nav .menu {
    flex-direction: column;
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  nav .menu .menu-item {
    transform: translate3d(-50px, 0, 0);
    opacity: 0;
    transition: transform 0.2s ease-in-out, opacity 0.2s;
  }
  nav .menu .menu-item a {
    padding: 0 50px;
    height: 60px;
  }
  nav .menu .menu-item a .wrapper .menu-mark .menu-mark-pink {
    width: 15px;
    height: 23px;
  }
  nav .menu .menu-item a .wrapper .menu-mark .menu-mark-green {
    width: 15px;
    height: 30px;
  }
  nav .menu .menu-item a .wrapper .menu-text {
    font-size: 30px;
  }
  nav .menu .menu-item:nth-of-type(2n) {
    transform: translate3d(50px, 0, 0);
  }
  nav .menu .menu-item.is_visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  nav .sns-container {
    margin: 40px auto 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  header.open nav .menu {
    opacity: 1;
    pointer-events: auto;
  }
  header.open nav .sns-container {
    pointer-events: auto;
  }
}

@keyframes updown {
  0% {
    height: 20px;
  }
  100% {
    height: 15px;
  }
}

section {
  position: relative;
  padding: 60px 30px;
  margin: auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

section .section-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
}

section .section-title .title-mark {
  display: flex;
  align-items: flex-end;
  padding-bottom: 6px;
  margin-right: 20px;
  height: 37px;
  box-sizing: border-box;
}

section .section-title .title-mark .line-pink {
  margin-right: 5px;
  width: 10px;
  height: 28px;
  background: #ff95b4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  animation: updown_title 0.28s ease infinite;
}

section .section-title .title-mark .line-green {
  width: 10px;
  height: 37px;
  background: #75cac7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  animation: updown_title 0.56s ease infinite;
}

section .section-title .title-text {
  margin-right: 20px;
  font-size: 50px;
  font-weight: 400;
}

section .section-title .title-text span {
  vertical-align: 3px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 38px;
}

section .section-title .title-line {
  flex-grow: 1;
  margin-bottom: 6px;
  height: 2px;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  section {
    padding: 30px 5%;
  }
  section .section-title {
    margin-bottom: 30px;
    height: 27px;
  }
  section .section-title .title-mark {
    margin-right: 15px;
  }
  section .section-title .title-mark .line-pink {
    width: 7px;
    height: 21px;
  }
  section .section-title .title-mark .line-green {
    width: 7px;
    height: 27px;
  }
  section .section-title .title-text {
    margin-right: 15px;
    font-size: 30px;
  }
  section .section-title .title-text span {
    font-size: 22px;
  }
}

@keyframes updown_title {
  0% {
    height: 37px;
  }
  100% {
    height: 28px;
  }
}

@keyframes updown_title_sp {
  0% {
    height: 27px;
  }
  100% {
    height: 21px;
  }
}

.link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  transition: transform .2s ease;
}

.link-button::before, .link-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  filter: blur(4px);
  border-radius: 20px;
  z-index: -2;
  transition: top .2s ease, left .2s ease, filter .2s;
}

.link-button::after {
  top: 0;
  left: 0;
  background: #363636;
  filter: blur(0);
  z-index: -1;
}

.text-link {
  font-weight: 900;
  color: #ff95b4;
  transition: opacity .2s;
}

@media only screen and (min-width: 769px) {
  .link-button:hover {
    transform: translate3d(3px, 3px, 0);
  }
  .link-button:hover::before {
    top: 0;
    left: 0;
    filter: blur(2px);
  }
  .text-link:hover {
    opacity: .5;
  }
}

footer {
  margin-top: 60px;
}

footer .top-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  z-index: 1;
  transition: transform 0.2s ease;
}

footer .top-button::before, footer .top-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  filter: blur(4px);
  border-radius: 10px;
  z-index: -2;
  transition: top 0.2s ease, left 0.2s ease, filter 0.2s ease;
}

footer .top-button::after {
  top: 0;
  left: 0;
  background: #363636;
  filter: blur(0);
  z-index: -1;
}

footer .top-button svg {
  width: 38px;
  transition: transform 0.2s ease, opacity 0.5s;
}

footer .top-button svg .st1 {
  fill: #ff95b4;
}

footer .top-button svg .st2 {
  fill: #75cac7;
}

footer .top-button svg.stock, footer .top-button svg.stock2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
}

footer .top-button.stopped svg {
  transform: rotate(180deg);
}

footer .top-button.stopped svg.stock, footer .top-button.stopped svg.stock2 {
  transform: translate3d(-50%, -50%, 0) rotate(180deg);
}

footer .top-button.rotated svg.origin {
  transition-delay: 1s;
}

footer .top-button.rotated svg.stock, footer .top-button.rotated svg.stock2 {
  display: block;
  transform: translate3d(-50%, -50%, 0) rotate(180deg) scale(3);
  transition-duration: 0.5s;
  opacity: 0;
}

footer .top-button.rotated svg.stock2 {
  transition-delay: 0.2s;
}

footer .link-container {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  width: 100%;
  background: #f2f2f2;
  box-sizing: border-box;
}

footer .link-container .link-logo {
  display: flex;
  align-items: center;
  margin: 0 15px;
  transition: opacity 0.2s;
}

footer .link-container .link-logo:nth-of-type(1) img {
  max-width: 170px;
}

footer .link-container .link-logo:nth-of-type(2) img {
  max-width: 216px;
}

footer .link-container .link-logo:nth-of-type(3) img {
  max-width: 185px;
}

footer .link-container .link-logo:nth-of-type(4) img {
  max-width: 93px;
}

footer .link-container .link-logo:nth-of-type(5) img {
  max-width: 124px;
}

footer .credit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  background: linear-gradient(to right, #ff95b4 0%, #bab3ff 50%, #75cac7 100%);
  box-sizing: border-box;
}

footer .credit-container a {
  transition: opacity 0.2s;
}

footer .credit-container a img {
  max-width: 185px;
}

footer .credit-container .footer-attention {
  margin-top: 20px;
  font-size: 12px;
}

@media only screen and (min-width: 769px) {
  footer .top-button:hover {
    transform: translate3d(3px, 3px, 0);
  }
  footer .top-button:hover::before {
    top: 0;
    left: 0;
    filter: blur(2px);
  }
  footer .link-container .link-logo:hover {
    opacity: 0.5;
  }
  footer .credit-container a:hover {
    opacity: 0.5;
  }
}

@media only screen and (max-width: 768px) {
  footer .top-button {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 50px;
  }
  footer .top-button::before {
    display: none;
  }
  footer .top-button::after {
    border-radius: 0;
  }
  footer .link-container {
    flex-direction: column;
    align-items: center;
    padding: 45px 0;
  }
  footer .link-container .link-logo {
    margin: 0 0 30px;
  }
  footer .link-container .link-logo:last-child {
    margin-bottom: 0;
  }
  footer .credit-container .footer-attention {
    display: none;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  overflow: hidden;
}

.loading .logoline-container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  height: 103px;
}

.loading .logoline-container .logoline {
  position: absolute;
  width: 50%;
  height: 5.4%;
}

.loading .logoline-container .logoline.logoline-left {
  top: 74.8%;
  right: calc(50% + 60px);
  background: #e93b65;
}

.loading .logoline-container .logoline.logoline-right {
  top: 19.65%;
  left: calc(50% + 60px);
  background: #3cc4b5;
}

.loading .logoline-container .maskline {
  position: absolute;
  transform: skew(-27deg);
  box-sizing: border-box;
  height: 84px;
  background: #fff;
  z-index: 1;
  transition: width .3s ease;
}

.loading .logoline-container .maskline.maskline-left {
  top: 0;
  right: calc(50% - 30px);
  width: calc(50% + 30px);
}

.loading .logoline-container .maskline.maskline-left2 {
  top: 0;
  left: 0;
  width: 0;
  transition-delay: .3s;
}

.loading .logoline-container .maskline.maskline-right {
  bottom: 0;
  left: calc(50% - 30px);
  width: calc(50% + 30px);
}

.loading .logoline-container .maskline.maskline-right2 {
  bottom: 0;
  right: 0;
  width: 0;
  transition-delay: .3s;
}

.loading.on .logoline-container .maskline.maskline-left, .loading.on .logoline-container .maskline.maskline-right {
  width: 0;
}

.loading.on .logoline-container .maskline.maskline-left2, .loading.on .logoline-container .maskline.maskline-right2 {
  width: calc(50% - 160px);
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 320px;
  height: 103px;
}

.logo-container svg {
  position: absolute;
}

.logo-container .text-l1 {
  top: 0;
  left: 2.45%;
  width: 14.92%;
  opacity: 0;
}

.logo-container .text-l2s {
  top: 5.36%;
  left: 18.63%;
  width: 11.87%;
  opacity: 0;
}

.logo-container .text-r1 {
  top: 33.5%;
  left: 66.38%;
  width: 12.59%;
  opacity: 0;
}

.logo-container .text-r2 {
  top: 62.2%;
  left: 81.08%;
  width: 5.36%;
  opacity: 0;
}

.logo-container .text-r3s {
  top: 33.52%;
  left: 88.13%;
  width: 11.87%;
  opacity: 0;
}

.logo-container .dots {
  top: 0;
  left: 40.6%;
  width: 18.69%;
  opacity: 0;
}

.logo-container .logo-headphone {
  top: 26.63%;
  left: 41.21%;
  width: 17.48%;
  opacity: 0;
}

.logo-container .logo_arrow_left {
  top: 8.81%;
  left: 0;
  width: 58.7%;
}

.logo-container .logo_arrow_right {
  top: 19.64%;
  left: 42.66%;
  width: 57.34%;
}

.logo-container .text-radio,
.logo-container .logo_arrow_right,
.logo-container .text-r1,
.logo-container .text-r2,
.logo-container .text-r3 {
  fill: #3cc4b5;
}

.logo-container .text-lively,
.logo-container .logo_arrow_left,
.logo-container .text-l1,
.logo-container .text-l2 {
  fill: #e93b65;
}

.logo-container .thunder {
  fill: #ffcf06;
}

.logo-container .headphone {
  fill: #363636;
}

.logo-container .text-sub {
  fill: #ffffff;
}

.logo-container .dot0 {
  fill: #d8f2ef;
}

.logo-container .dot1 {
  fill: #b1e5de;
}

.logo-container .dot2 {
  fill: #89d8ce;
}

.logo-container .dot3 {
  fill: #62cbbd;
}

.logo-container .dot4 {
  fill: #3bbead;
}

.logo-container .dot5 {
  fill: #e4355d;
}

.logo-container .dot6 {
  fill: #e85276;
}

.logo-container .dot7 {
  fill: #ec6e8c;
}

.logo-container .dot8 {
  fill: #f08ca5;
}

.logo-container .dot9 {
  fill: #f6b9c8;
}

.logo-container.active .text-l1 {
  animation: pon 1.12s infinite ease;
}

.logo-container.active .text-l2s {
  animation: pon 1.12s 0.15s infinite ease;
}

.logo-container.active .text-r1 {
  animation: pon 1.12s 0.3s infinite ease;
}

.logo-container.active .text-r2 {
  animation: pon2 1.12s 0.45s infinite ease;
}

.logo-container.active .text-r3s {
  animation: pon 1.12s 0.6s infinite ease;
}

.logo-container.active .logo-headphone {
  animation: doki 0.56s infinite ease;
}

@media only screen and (max-width: 768px) {
  .loading .logo-container {
    width: 160px;
    height: 51.5px;
  }
  .loading .logoline-container {
    height: 51.5px;
  }
  .loading .logoline-container .maskline {
    height: 42px;
  }
  .loading .logoline-container .maskline.maskline-left {
    right: calc(50% - 15px);
    width: calc(50% + 15px);
  }
  .loading .logoline-container .maskline.maskline-right {
    left: calc(50% - 15px);
    width: calc(50% + 15px);
  }
  .loading.on .logoline-container .maskline.maskline-left2, .loading.on .logoline-container .maskline.maskline-right2 {
    width: calc(50% - 80px);
  }
}

@keyframes doki {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pon {
  0% {
    transform: translate3d(0, -5%, 0);
  }
  10% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pon2 {
  0% {
    transform: translate3d(0, -30%, 0);
  }
  10% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/*# sourceMappingURL=common.css.map */
