@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

ul, li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}

:root {
  --vw: 1vw;
}

.sidebar .sidebar__sns {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .sidebar .sidebar__sns {
    gap: 8vw;
  }
}
.sidebar .sidebar__sns a:nth-child(1) img {
  width: 21px;
}
@media screen and (max-width: 1024px) {
  .sidebar .sidebar__sns a:nth-child(1) img {
    width: 6.3vw;
  }
}
.sidebar .sidebar__sns a:nth-child(2) img {
  width: 23px;
}
@media screen and (max-width: 1024px) {
  .sidebar .sidebar__sns a:nth-child(2) img {
    width: 6.9vw;
  }
}
.sidebar .sidebar__sns a:nth-child(3) img {
  width: 30px;
}
@media screen and (max-width: 1024px) {
  .sidebar .sidebar__sns a:nth-child(3) img {
    width: 9vw;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    z-index: 100;
  }
  .sidebar__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sidebar__logo img {
    width: 120px;
    margin-top: 10px;
  }
  .sidebar__sns {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
  }
  body.nav-open .sidebar__sns {
    opacity: 1;
    visibility: visible;
  }
  .sidebar__sns img {
    width: 24px;
    height: auto;
    display: block;
  }
}
@media screen and (min-width: 1024.01px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 190px;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sidebar__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    gap: 60px;
  }
  .sidebar__nav {
    padding-bottom: 60px;
  }
  .sidebar__logo {
    text-align: center;
    padding-bottom: 30px;
  }
  .sidebar__logo img {
    width: 130px;
  }
  .sidebar__sns {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }
  .sidebar__sns img {
    width: 20px;
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
  }
  .nav.is-active {
    transform: translateX(-100%);
  }
  .nav__inner {
    width: 100%;
    max-width: 240px;
    text-align: left;
    margin-top: -60px;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .nav__list li a {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    letter-spacing: 0.1em;
  }
  .nav__line {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024.01px) {
  .nav {
    margin: auto 0;
  }
  .nav__inner {
    width: fit-content;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
  }
  .nav__list li a {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: #888;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 2px;
  }
  .nav__list li a::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 50%;
    width: 10px;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    opacity: 0;
    transition: 0.3s;
  }
  .nav__list li a:hover {
    color: #fff;
  }
  .nav__list li a:hover::before {
    opacity: 1;
    left: -20px;
  }
  .nav__list li.cu a {
    color: #fff;
  }
  .nav__list li.cu a::before {
    opacity: 1;
    left: -20px;
  }
  .nav__list li.cu a:hover {
    opacity: 1;
  }
  .nav__line {
    display: none;
  }
}

.menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  width: 35px;
  height: 24px;
  position: relative;
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu-trigger {
    display: block;
  }
}
.menu-trigger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.menu-trigger span:nth-child(1) {
  top: 3px;
}
.menu-trigger span:nth-child(2) {
  top: 11px;
  width: 70%;
}
.menu-trigger span:nth-child(3) {
  bottom: 3px;
}
.menu-trigger.is-active span:nth-child(1) {
  top: 0;
  transform: translateY(11px) rotate(30deg);
}
.menu-trigger.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-child(3) {
  bottom: 0;
  transform: translateY(-12px) rotate(-30deg);
}

.footer {
  margin-top: auto;
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.top .footer {
  margin-top: auto;
}
.footer__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 30px;
}
.footer__logo img {
  display: inline-block;
  width: 218px;
}
.footer__sns-label {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(14px, 3.2vw, 16px);
  margin-bottom: 20px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  font-family: "Cormorant Garamond", serif;
}
.footer__sns a:nth-child(1) img {
  width: 30px;
}
.footer__sns a:nth-child(2) img {
  width: 32px;
}
.footer__sns a:nth-child(3) img {
  width: 30px;
}
.footer__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 30px;
}
.footer__logo img {
  display: inline-block;
  width: 218px;
}
.footer__sns-label {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  font-family: "Cormorant Garamond", serif;
}
.footer__sns a:nth-child(1) img {
  width: 30px;
}
.footer__sns a:nth-child(2) img {
  width: 32px;
}
.footer__sns a:nth-child(3) img {
  width: 40px;
}
.footer .copyright {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(9px, 2.8vw, 11px);
  color: #aaaaaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #eeeeee;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  background: url(../img/bg.jpg) no-repeat top center;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

.pc {
  display: none;
}
@media screen and (min-width: 768.01px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp {
    display: none;
  }
}

.container {
  display: block;
}
@media screen and (min-width: 1024.01px) {
  .container {
    display: flex;
  }
}

.main-content {
  flex: 1;
  width: 100%;
  margin-left: 0;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 1024.01px) {
  .main-content {
    margin-left: 190px;
  }
}
.main-content__inner {
  margin-bottom: 60px;
}
.section-title {
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px;
}
.section-title span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 300;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  background-image: radial-gradient(rgb(255, 255, 255), rgb(110, 110, 110));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title span::before, .section-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(110, 110, 110, 0), rgb(110, 110, 110));
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .section-title span::before, .section-title span::after {
    width: 60px;
    margin-right: 14px;
    margin-left: 14px;
  }
}
.section-title span::before {
  right: 100%;
  margin-right: 25px;
}
.section-title span::after {
  left: 100%;
  margin-left: 25px;
  background-image: linear-gradient(-90deg, rgba(110, 110, 110, 0), rgb(110, 110, 110));
}

.js-fade-up {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
  transition-delay: var(--fade-delay, 0s);
}
.js-fade-up.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

body.js-loaded .js-fade-in-onload {
  animation: fadeUpIn 1s ease forwards;
  animation-delay: var(--fade-delay, 0s);
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn {
  min-width: 207px;
  display: inline-block;
  position: relative;
  padding: 10px 40px;
  text-decoration: none;
  transition: opacity 0.3s;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 6px 24px;
  }
}
.btn.back::before {
  width: 100%;
  height: 80%;
}
.btn.back::after {
  width: 100%;
  height: 70%;
}
.btn.back span::after {
  bottom: inherit;
  right: inherit;
  top: 0;
  left: 0;
  border: none;
  border-left: 1px solid rgb(148, 145, 121);
  border-top: 1px solid rgb(148, 145, 121);
}
.btn.btn-L {
  background-color: #000000;
  min-width: 360px;
  padding: 30px 40px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .btn.btn-L {
    min-width: 80%;
    padding: 6vw 8vw;
  }
}
.btn.btn-L::before {
  border-top: 2px solid;
  border-right: 2px solid;
}
.btn.btn-L::after {
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.btn.btn-L span {
  font-size: clamp(20px, 4.4vw, 24px);
}
.btn.btn-L span::after {
  border-bottom: 2px solid rgb(148, 145, 121);
  border-right: 2px solid rgb(148, 145, 121);
}
.btn span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.25em;
  line-height: 1;
  background: radial-gradient(circle at center, rgb(210, 206, 180) 0%, rgb(145, 141, 113) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: text-shadow 0.4s ease;
}
.btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid rgb(148, 145, 121);
  border-right: 1px solid rgb(148, 145, 121);
  transition: transform 0.3s ease;
  pointer-events: none;
  transform: skewX(45deg);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 70%;
  border-top: 1px solid;
  border-right: 1px solid;
  border-image: radial-gradient(circle at center, rgb(210, 206, 180) 0%, rgb(145, 141, 113) 100%) 1;
  pointer-events: none;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-image: radial-gradient(circle at center, rgb(210, 206, 180) 0%, rgb(145, 141, 113) 100%) 1;
  pointer-events: none;
}
.btn:hover span {
  text-shadow: 0 0 8px rgba(245, 242, 220, 0.5), 0 0 12px rgba(210, 206, 180, 0.3);
}
.btn:hover span::after {
  transform: translateX(10px) skewX(45deg);
}
.btn:hover {
  opacity: 1;
}
.btn:hover.back span:after {
  transform: translateX(-10px) skewX(45deg);
}

.not-found {
  width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .not-found {
    width: auto;
  }
}
.not-found__inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 698px;
}
.not-found p {
  margin: 40px auto;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: justify;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.top .main-content {
  padding-top: 0;
}
.top .main-content > :nth-last-child(2) {
  margin-bottom: 0;
}
.top .hero__badge_fixed {
  position: fixed;
  top: 5%;
  right: 5%;
  width: 14vw;
  height: 14vw;
  max-width: 202px;
  max-height: 202px;
  z-index: 4;
}
.top .hero__badge_fixed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .hero__badge_fixed {
    position: fixed;
    top: inherit;
    bottom: 5vw;
    right: 5vw;
    width: 26vw;
    height: 26vw;
    z-index: 4;
  }
}
.top .hero__badge_fixed a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 5;
}
.top .hero__badge_fixed .hero__badge_1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 4;
  pointer-events: none;
}
.top .hero__badge_fixed .hero__badge_2 {
  position: absolute;
  bottom: 16%;
  left: 36%;
  width: 30%;
  z-index: 4;
  pointer-events: none;
}
.top .hero__badge_fixed .hero__badge_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.top .hero {
  position: relative;
  height: 880px;
}
@media screen and (max-width: 768px) {
  .top .hero {
    overflow: hidden;
    width: 100%;
    height: 140vw;
  }
}
.top .hero .hero-inner {
  position: relative;
  height: 100%;
  text-align: center;
  background: url(../img/top/hero__bg.jpg) no-repeat center;
  background-size: cover;
  /* 下から20%（位置でいうと80%の地点）から透明化を開始 */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .top .hero .hero-inner {
    width: 100%;
  }
}
.top .hero__content {
  width: 100%;
  height: 380px;
  position: absolute;
  top: 320px;
  z-index: 2;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .top .hero__content {
    height: auto;
    top: 54vw;
    gap: 2vw;
  }
  .top .hero__content img {
    width: 100%;
  }
  .top .hero__content .hero__subtext {
    width: 70vw;
  }
  .top .hero__content .hero__status {
    width: 70vw;
  }
}
.top .hero__catch {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  top: 80px;
}
.top .hero__catch img {
  height: 24px;
}
@media screen and (max-width: 768px) {
  .top .hero__catch {
    flex-direction: column;
    text-align: left;
    top: 10vw;
    left: 10vw;
    gap: 3vw;
  }
  .top .hero__catch img {
    height: 5vw;
  }
  .top .hero__catch .hero__catch_2 {
    margin-left: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .top .hero__logo {
    width: 80vw;
  }
}
.top .hero__badge {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 14vw;
  height: 14vw;
  max-width: 202px;
  max-height: 202px;
  z-index: 4;
  display: none;
}
.top .hero__badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .hero__badge::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top .hero__badge {
    display: block;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: 15vw;
    left: 5%;
    z-index: 4;
    width: 90%;
    height: 15vw;
    max-width: inherit;
    max-height: inherit;
  }
}
.top .hero__badge .hero__badge_1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top .hero__badge .hero__badge_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: inherit;
  }
}
.top .hero__badge .hero__badge_2 {
  position: absolute;
  bottom: 16%;
  left: 36%;
  width: 30%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top .hero__badge .hero__badge_2 {
    left: inherit;
    position: absolute;
    bottom: 2vw;
    right: 0;
    width: 10vw;
    transform: inherit;
  }
}
.top .hero__badge .hero__badge_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top .hero__badge .hero__badge_3 {
    display: none;
  }
}
.top .hero__badge_sp {
  position: absolute;
  bottom: 15vw;
  left: 5%;
  z-index: 4;
  width: 90%;
  height: 15vw;
}
.top .hero__badge_sp img {
  width: 100%;
}
@media screen and (min-width: 768.01px) {
  .top .hero__badge_sp {
    display: none;
  }
}
.top .hero__badge_sp .hero__badge_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top .hero__badge_sp .hero__badge_2 {
  position: absolute;
  bottom: 2vw;
  right: 0;
  width: 10vw;
}
.top .hero__chara_wrapper {
  position: absolute;
  bottom: -80px;
  left: 47%;
  transform: translate(-50%, 0);
  z-index: 1;
  width: auto;
  height: 756px;
  aspect-ratio: 722/756;
}
@media screen and (max-width: 768px) {
  .top .hero__chara_wrapper {
    bottom: 5vw;
    width: 100%;
    height: 100vw;
  }
}
.top .hero__chara_wrapper img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top .section-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .section-title.section-title-intro span {
    font-size: 7vw;
  }
  .top .section-title.section-title-intro span::before {
    margin-right: 4vw;
  }
  .top .section-title.section-title-intro span::after {
    margin-left: 4vw;
  }
}
.top .intro {
  padding: 30px 0 60px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top .intro {
    padding: 0 20px 15vw;
    max-width: inherit;
  }
}
.top .intro__text {
  width: 507px;
  margin: 0 auto;
}
.top .intro__text img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .intro__text {
    width: 90%;
  }
}
.top .intro__text p {
  margin-bottom: 1.5em;
}
.top .news {
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
.top .news__list {
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}
.top .news__list li {
  border-bottom: 1px solid #333;
}
.top .news__list li a {
  display: flex;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .top .news__list li a {
    flex-direction: column;
  }
}
.top .news__list li .date {
  font-family: "Cormorant Garamond", serif;
  width: 120px;
  color: #bfb99a;
  font-size: clamp(16px, 2.5vw, 20px);
}
.top .news__list li .title {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(15px, 2.2vw, 18px);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .top .sidebar__logo {
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .top .sidebar__logo.is-visible {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top .hero__badge_fixed {
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .top .hero__badge_fixed.is-visible {
    opacity: 1;
  }
}

#js-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#js-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#js-loading .loading__logo img {
  width: 160px;
  opacity: 0;
  animation: loadingLogoIn 1.2s ease forwards 0.3s;
}
#js-loading .loading__bar-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
#js-loading .loading__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(191, 185, 154, 0.4), rgb(191, 185, 154));
  animation: loadingBar 1.8s ease forwards 0.2s;
}

@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes loadingBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes heroSlideUp {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes heroFadeBlur {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes heroSlideFromLeft {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}
@keyframes heroSlideFromRight {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}
@keyframes heroScaleIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes badgeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes badgeSlideLoop {
  0% {
    opacity: 0;
    translate: -8px 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    translate: 8px 0;
  }
}
.top .hero__catch_1,
.top .hero__catch_2,
.top .hero__chara_1,
.top .hero__chara_2,
.top .hero__chara_3,
.top .hero__chara_4,
.top .hero__chara_5,
.top .hero__logo,
.top .hero__subtext,
.top .hero__status,
.top .hero__badge,
.top .hero__badge_sp {
  opacity: 0;
}
.top.hero-animate .hero__catch_1 {
  animation: heroSlideUp 4s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0s;
}
.top.hero-animate .hero__catch_2 {
  animation: heroSlideUp 4s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1s;
}
.top.hero-animate .hero__chara_1 {
  animation: heroSlideFromLeft 2s ease both;
  animation-delay: 0s;
}
.top.hero-animate .hero__chara_5 {
  animation: heroSlideFromRight 2s ease both;
  animation-delay: 0.4s;
}
.top.hero-animate .hero__chara_2 {
  animation: heroSlideFromLeft 2s ease both;
  animation-delay: 0.8s;
}
.top.hero-animate .hero__chara_4 {
  animation: heroSlideFromRight 2s ease both;
  animation-delay: 1.2s;
}
.top.hero-animate .hero__chara_3 {
  animation: heroFadeBlur 2s ease both;
  animation-delay: 1.6s;
}
.top.hero-animate .hero__logo {
  animation: heroSlideUp 2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 3s;
}
.top.hero-animate .hero__subtext {
  animation: heroSlideUp 2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 3.4s;
}
.top.hero-animate .hero__status {
  animation: heroSlideUp 2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 3.8s;
}
.top.hero-animate .hero__badge,
.top.hero-animate .hero__badge_sp {
  animation: heroScaleIn 1s ease both;
  animation-delay: 4.5s;
}
.top.hero-animate .hero__badge_3 {
  animation: badgeRotate 12s linear infinite;
}
.top.hero-animate .hero__badge_2 {
  animation: heroScaleIn 1s ease both, badgeSlideLoop 2.4s ease-in-out 5.5s infinite;
}

.post-type-archive-news .news {
  width: 860px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .post-type-archive-news .news {
    width: 100%;
  }
}
.post-type-archive-news .news__list {
  padding: 0 20px;
  max-width: 698px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post-type-archive-news .news__list {
    max-width: inherit;
  }
}
.post-type-archive-news .news__list li {
  border-bottom: 1px solid #333;
}
.post-type-archive-news .news__list li a {
  display: flex;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .post-type-archive-news .news__list li a {
    flex-direction: column;
  }
}
.post-type-archive-news .news__list li .date {
  font-family: "Cormorant Garamond", serif;
  width: 120px;
  color: #bfb99a;
  font-size: clamp(16px, 2.5vw, 20px);
}
.post-type-archive-news .news__list li .title {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(15px, 2.2vw, 18px);
  text-decoration: underline;
}

.single-news .news {
  width: 860px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .single-news .news {
    width: auto;
  }
}
.single-news .news__header {
  margin: 0 auto;
  padding: 0 0 20px;
  max-width: 730px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .single-news .news__header {
    margin: 0 20px;
  }
}
.single-news .news__header time {
  color: #bfb99a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 20px);
}
.single-news .news__header h1 {
  margin: 5px 0 0;
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}
.single-news .news__entry {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 698px;
}
.single-news .news h2 {
  color: #bfb99a;
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(20px, 3vw, 24px);
  margin: 40px 0 10px;
  font-weight: 500;
}
.single-news .news h3 {
  color: #bfb99a;
  font-size: clamp(16px, 2vw, 18px);
  margin: 30px 0 10px;
  padding: 0 0 5px;
  font-weight: 500;
  border-bottom: 1px solid #333333;
}
.single-news .news h4.news__notes-title {
  font-size: 0.9em;
  position: relative;
  color: #a3a3a3;
}
.single-news .news p {
  text-align: justify;
  margin: 20px 0 20px;
  font-size: clamp(14px, 1.4vw, 14px);
  line-height: 2;
  word-break: break-all;
}
.single-news .news p a {
  color: #bfb99a;
  text-decoration: underline;
}
.single-news .news p img {
  display: block;
  width: 100%;
}
.single-news .news ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.single-news .news ul li {
  list-style: none;
  font-size: clamp(14px, 1.4vw, 14px);
  line-height: 1.5;
  word-break: break-all;
}
.single-news .news ul li a {
  color: #bfb99a;
  text-decoration: underline;
}
.single-news .news ul.news__notes li {
  position: relative;
  font-size: 0.9em;
  padding-left: 1.2em;
  color: #a3a3a3;
}
.single-news .news ul.news__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.single-news .news figure {
  margin: 40px 0 20px;
}
.single-news .news figure img {
  display: block;
  width: 100%;
}
.single-news .news figure figcaption {
  margin: 8px 0 0;
  text-align: right;
  font-size: 0.8em;
  line-height: 1.3;
  color: #a3a3a3;
}
.single-news .news .col3,
.single-news .news .col2 {
  margin: 40px 0 20px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .single-news .news .col3,
  .single-news .news .col2 {
    flex-wrap: wrap;
  }
}
.single-news .news .col3 figure,
.single-news .news .col2 figure {
  margin: 0;
  width: 100%;
}
.single-news .news .col3 figure figcaption,
.single-news .news .col2 figure figcaption {
  text-align: center;
}
.single-news .news .entry-video {
  margin: 40px 0 20px;
}
.single-news .news .entry-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.staff-page .staff {
  width: 860px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .staff-page .staff {
    width: auto;
  }
}
.staff-page .staff__list {
  padding: 0 20px;
  max-width: 698px;
  margin: 0 auto 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff-page .staff__list {
    max-width: inherit;
  }
}
.staff-page .staff__list li {
  line-height: 1.5;
  font-weight: 100;
}
.staff-page .staff__list li + li {
  margin-top: 20px;
}
.staff-page .staff__list li .staff__role {
  display: block;
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  color: #bfb99a;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 100;
}
.staff-page .staff__list li .staff__name {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  display: block;
  font-size: clamp(18px, 2.5vw, 20px);
}
.staff-page .staff hr {
  border: 0;
  max-width: 698px;
  margin: 30px auto;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .staff-page .staff hr {
    width: 90%;
    margin: 30px auto;
  }
}
.staff-page .staff__profile {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 698px;
  font-weight: 300;
}
.staff-page .staff__profile .staff__profile-name {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  color: #bfb99a;
  font-size: clamp(18px, 2.5vw, 20px);
}
.staff-page .staff__profile .staff__profile-name .staff__profile-title {
  font-size: 0.8em;
}
.staff-page .staff__profile .staff__profile-text {
  text-align: justify;
  margin: 10px 0 0;
  font-size: clamp(14px, 1.4vw, 14px);
  line-height: 2;
}

.audition-page .audition {
  width: 860px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .audition-page .audition {
    width: auto;
  }
}
.audition-page .audition__inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 698px;
}
.audition-page .audition__title {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  color: #bfb99a;
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__title {
    text-align: center;
  }
}
.audition-page .audition__title.maintitle {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__title.maintitle {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .audition-page .audition__title.contact_title {
    text-align: left;
  }
}
.audition-page .audition__text {
  margin: 0 auto 40px;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: justify;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__text {
    width: 100%;
  }
}
.audition-page .audition__text a {
  color: #bfb99a;
  text-decoration: underline;
}
.audition-page .audition__list {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  padding-left: clamp(14px, 1.5vw, 16px);
}
.audition-page .audition__list li {
  list-style: disc;
  margin: clamp(14px, 1.5vw, 16px) 0;
  font-size: clamp(14px, 1.5vw, 16px);
}
.audition-page .audition__info {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__info {
    width: 100%;
    margin: 0 auto;
  }
}
.audition-page .audition__info-term {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
  font-weight: 500;
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  color: #bfb99a;
  margin: 0 20px 0 0;
  padding: 4px 10px;
  text-align: center;
  font-size: clamp(14px, 1.4vw, 14px);
  border: 1px solid #4f4d3e;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__info-term {
    width: 100%;
    margin: 10px auto 0;
  }
}
.audition-page .audition__info-desc {
  width: calc(100% - 230px);
  padding: 5px 0;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .audition-page .audition__info-desc {
    margin-top: 10px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.audition-page .audition__notes {
  margin-top: 10px;
  list-style: none;
}
.audition-page .audition__notes-item {
  font-size: 0.9em;
  position: relative;
  padding-left: 1.2em;
  color: #a3a3a3;
}
.audition-page .audition__notes-item::before {
  content: "※";
  position: absolute;
  left: 0;
}
.audition-page .audition__notes-item + .audition__notes-item {
  margin-top: 5px;
}
.audition-page .audition hr {
  border: 0;
  max-width: 698px;
  margin: 30px auto;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .audition-page .audition hr {
    width: 100%;
    margin: 30px auto;
  }
}
.audition-page .audition__accordion {
  width: 100%;
  margin-top: 30px;
}
.audition-page .audition__accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background-color: #000000;
  border: 1px solid #4f4d3e;
  color: #bfb99a;
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}
.audition-page .audition__accordion-btn:hover {
  background-color: #111111;
}
.audition-page .audition__accordion-btn[aria-expanded=true] .audition__accordion-icon::after {
  transform: rotate(0deg);
}
.audition-page .audition__accordion-icon {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 12px;
}
.audition-page .audition__accordion-icon::before, .audition-page .audition__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #bfb99a;
  transition: transform 0.3s ease;
}
.audition-page .audition__accordion-icon::after {
  transform: rotate(90deg);
}
.audition-page .audition__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.audition-page .audition__accordion-text {
  padding: 24px 20px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.8;
  text-align: justify;
  border: 1px solid #4f4d3e;
  border-top: none;
  background-color: rgba(0, 0, 0, 0.2);
}
.audition-page .audition__accordion-text p {
  margin-bottom: 1em;
}
.audition-page .audition__accordion-text h3 {
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  color: #bfb99a;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  margin: 1.8em 0 0.6em;
  padding-bottom: 4px;
  border-bottom: 1px solid #4f4d3e;
}
.audition-page .audition__accordion-text ol {
  padding-left: 0;
  margin-bottom: 1em;
  list-style: none;
  counter-reset: ol-counter;
}
.audition-page .audition__accordion-text ol li {
  counter-increment: ol-counter;
  margin: 0.4em 0;
  padding-left: 2.2em;
  position: relative;
}
.audition-page .audition__accordion-text ol li::before {
  content: "(" counter(ol-counter) ")";
  position: absolute;
  left: 0;
}
.audition-page .audition__accordion-text a {
  color: #bfb99a;
  text-decoration: underline;
  word-break: break-all;
}

.character-page .character {
  width: 860px;
  margin: 0 auto;
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .character-page .character {
    width: 100%;
    padding-bottom: 16vw;
  }
}
.character-page .character__item {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}
.character-page .character__item img {
  display: block;
  width: 100%;
}
.character-page .character__item.character1 {
  margin-top: 0;
}
.character-page .character__item.character2 {
  margin-top: 0;
}
.character-page .character__item.character3 {
  margin-top: 60px;
}
.character-page .character__item.character4 {
  margin-top: 20px;
}
.character-page .character__item.character5 {
  margin-top: 60px;
}
.character-page .character__item.character6 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .character-page .character__item {
    max-width: 100%;
  }
  .character-page .character__item.character1 {
    margin-top: -10.667vw;
  }
  .character-page .character__item.character2 {
    margin-top: 0;
  }
  .character-page .character__item.character3 {
    margin-top: 16vw;
  }
  .character-page .character__item.character4 {
    margin-top: 0;
  }
  .character-page .character__item.character5 {
    margin-top: 16vw;
  }
  .character-page .character__item.character6 {
    margin-top: 0;
  }
}
.character-page .character__item:nth-child(even) .character__visual {
  align-self: flex-start;
  transform: translateX(30px);
}
@media screen and (max-width: 768px) {
  .character-page .character__item:nth-child(even) .character__visual {
    left: -21.333vw;
  }
}
.character-page .character__item:nth-child(even) .character__meta {
  margin-left: 250px;
}
@media screen and (max-width: 768px) {
  .character-page .character__item:nth-child(even) .character__meta {
    margin-left: auto;
    margin-right: 5.333vw;
  }
}
.character-page .character__item:nth-child(even) .character__cv {
  text-align: right;
}
.character-page .character__item:nth-child(even) .character__brush {
  clip-path: inset(0 100% 0 0);
  transform: translate(-30px, 0);
}
@media screen and (max-width: 768px) {
  .character-page .character__item:nth-child(even) .character__brush {
    transform: scale(150%) translateY(10%) translateX(-30px);
  }
}
.character-page .character__item.is-visible .character__visual {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition-delay: 0s;
}
.character-page .character__item.is-visible .character__brush {
  clip-path: inset(0 0 0 0);
  transform: translate(0, 0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .character-page .character__item.is-visible .character__brush {
    transform: scale(150%) translateY(10%) translateX(0);
  }
}
.character-page .character__item.is-visible .character__name,
.character-page .character__item.is-visible .character__cv,
.character-page .character__item.is-visible .character__desc {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 1s;
}
.character-page .character__thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  aspect-ratio: 720/480;
}
@media screen and (max-width: 768px) {
  .character-page .character__thumb {
    max-width: 100%;
  }
}
.character-page .character__brush {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 0 100%);
  transform: translate(30px, 0);
  transition: clip-path 1s ease, transform 1s ease;
}
@media screen and (max-width: 768px) {
  .character-page .character__brush {
    transform: scale(150%) translateY(10%) translateX(30px);
  }
}
.character-page .character__visual {
  position: relative;
  align-self: flex-end;
  max-width: 450px;
  aspect-ratio: 450/480;
}
@media screen and (max-width: 768px) {
  .character-page .character__visual {
    max-width: none;
    width: 90.667vw;
    left: 21.333vw;
  }
}
.character-page .character__visual {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-30px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.character-page .character__meta {
  position: relative;
  max-width: 355px;
  display: flex;
  flex-direction: column;
  margin-left: 140px;
  gap: 30px;
  margin-top: -210px;
}
@media screen and (max-width: 768px) {
  .character-page .character__meta {
    gap: 5.333vw;
    max-width: 66.667vw;
    margin-top: -38.667vw;
    margin-left: 5.333vw;
  }
}
.character-page .character__name {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.character-page .character__cv {
  text-align: left;
  font-size: clamp(12px, 1.5vw, 16px);
  font-family: "Noto Serif JP", "Hiragino Serif", serif;
  font-weight: 400;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.character-page .character__desc {
  margin: 0 auto;
  line-height: 2;
  font-size: clamp(12px, 1.5vw, 16px);
  text-align: justify;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 400;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}/*# sourceMappingURL=style.css.map */