/* src/import.css */
/* src/scss/theme.scss */
:root {
  --color-primary: #8E6678;
  --color-secondary-1: #49BDCC;
  --color-secondary-2: #EDD8E0;
  --color-tertiary-1: #C8B5C0;
  --color-tertiary-2: #EBE3DC;
  --color-background: #F1E1D1;
  --color-text: #8E6678;
  --color-white: #EBE3DC;
  --font-montserrat: "Montserrat", sans-serif;
  --font-ibm-plex: "IBM Plex Sans JP", sans-serif;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
@media screen and (max-width: 840px) {
  html {
    font-size: 13px;
  }
}
body {
  font-family: var(--font-ibm-plex);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--color-background);
  color: var(--color-primary);
  margin: 0;
  padding: 0;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}
body *:lang(en-US) {
  font-family: var(--font-montserrat);
}
.pc-hide {
  display: none;
}
@media screen and (max-width: 840px) {
  .pc-hide {
    display: inherit;
  }
}
.sp-hide {
  display: inherit;
}
@media screen and (max-width: 840px) {
  .sp-hide {
    display: none;
  }
}
.sw-hide {
  display: inherit;
}
@media screen and (min-width: 841px) and (max-width: 1170px) {
  .sw-hide {
    display: none;
  }
}
.lw-hide {
  display: none;
}
@media screen and (max-width: 1170px) {
  .lw-hide {
    display: inherit;
  }
}
a {
  color: inherit;
}
a.icon {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
a.icon::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 0.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
a.icon--instagram::before {
  background-image: url(../images/icon_instagram.svg);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1em 0;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin: 1em 0;
  font-weight: 600;
}
span.line {
  display: inline-block;
  width: 4rem;
  height: 1px;
  vertical-align: middle;
  background-color: var(--color-text);
  border: none;
  margin: 0 0.5em;
}
.site-main .top-visual {
  text-align: center;
  padding: 4rem 1rem;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .site-main .top-visual {
    margin-right: 6vw;
    margin-left: 6vw;
  }
}
.site-main .top-visual .contents-wrapper .contents .contents-title {
  opacity: 0;
}
.site-main .top-visual .contents-wrapper .contents .contents-title h1 {
  margin: 3rem 0 1.5rem;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .site-main .top-visual .contents-wrapper .contents .contents-title h1 {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 840px) {
  .site-main .top-visual .contents-wrapper .contents .contents-title h1 .logo {
    width: 64vw;
    height: auto;
  }
}
.site-main .top-visual .contents-wrapper .contents .contents-title h1 .main {
  display: none;
}
.site-main .top-visual .contents-wrapper .contents .contents-title h1::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
  background-image: url(../images/logo_vortex.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: rorate_vortex 10s linear infinite;
}
.site-main .top-visual .contents-wrapper .contents .contents-music {
  overflow: hidden;
  max-height: 0;
}
.site-main .top-visual .contents-wrapper .contents .contents-music p {
  font-family: var(--font-montserrat);
  text-transform: uppercase;
}
.site-main .top-visual .contents-wrapper .contents .contents-music iframe {
  opacity: 0;
  max-width: 100%;
  height: 130px;
}
.site-main .top-visual .contents-wrapper .contents .contents-sns {
  opacity: 0;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  font-size: 0.8rem;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.site-main .top-information .contents-wrapper {
  max-width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .site-main .top-information .contents-wrapper {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}
.site-main .top-information .contents-wrapper .contents .contents-title h2 {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.site-main .top-information .contents-wrapper .contents .contents-body {
  text-align: center;
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper {
  margin: 4rem 0;
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper .item {
  display: flex;
  gap: 1.5rem;
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper .item .item-image {
  flex-shrink: 0;
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper .item .item-body {
  text-align: left;
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper .item .item-body h3 {
  margin: 0 0 0.4em;
  font-size: 1.1428571429rem;
}
.site-main .top-information .contents-wrapper .contents .contents-body.item-wrapper .item .item-body p {
  margin: 0;
}
.site-main .top-about {
  position: relative;
}
.site-main .top-about::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 375px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
  background: url(../images/bg_main_sub.svg);
  background-position: center bottom;
  background-size: 100% 100%;
}
.site-main .top-about .contents-header {
  padding: 1rem;
}
.site-main .top-player {
  margin: 4rem 0;
}
.site-main .top-player .contents-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
.site-footer .contents-wrapper {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 0 4rem;
}
.site-footer .contents-wrapper .contents {
  text-align: center;
}
.site-footer .contents-wrapper .contents .contents-sns h2 {
  margin-bottom: 0.5rem;
}
.site-footer .contents-wrapper .contents .contents-sns a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 0.3rem;
  font-size: 0.9285714286rem;
  font-weight: 600;
}
.site-footer .contents-wrapper .contents .contents-sns a svg {
  aspect-ratio: 1/1;
  width: 3rem;
  height: auto;
}
.site-footer .contents-wrapper .contents .contents-sns a svg path {
  fill: var(--color-primary);
}
.site-footer .contents-wrapper .contents .contents-change-language {
  margin: 3rem 0;
}
body[data-loaded=done] .site-main .top-visual .contents-wrapper .contents .contents-title {
  animation: fade_in 1s 0s ease forwards;
}
body[data-loaded=done] .site-main .top-visual .contents-wrapper .contents .contents-music {
  animation: toggle_open 1.5s 1.5s linear forwards;
}
body[data-loaded=done] .site-main .top-visual .contents-wrapper .contents .contents-music iframe {
  animation: fade_in 1s 2s ease forwards;
}
body[data-loaded=done] .site-main .top-visual .contents-wrapper .contents .contents-sns {
  animation: fade_in 1s 2.5s ease forwards;
}
.ui-music-player {
  border-radius: 1.5rem;
}
.ui-lang-swither {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 2.5rem;
  padding: 2px;
}
.ui-lang-swither li {
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: 1;
  border-radius: 2.5rem;
}
.ui-lang-swither li a {
  display: block;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
}
.ui-lang-swither li.current {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.ui-lang-swither li.current a {
  padding: 0.5rem 1.2rem;
}
@keyframes toggle_open {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 480px;
  }
}
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rorate_vortex {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=theme.min.css.map */
