@charset "UTF-8";
.gNavi {
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Hina Mincho", serif;
}

.menu,
.menu span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 44px;
  height: 22px;
  z-index: 9999;
  border: none;
  background: none;
}

.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #999;
  z-index: 9999;
}

.menu span:nth-of-type(1) {
  top: 0px;
}

.menu span:nth-of-type(2) {
  top: 10px;
}

.menu span:nth-of-type(3) {
  bottom: 0px;
}

.menu.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #fff;
}

.menu.active span:nth-of-type(2) {
  opacity: 0;
}

.menu.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #fff;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  background-color: #a8b8d6;
  background-image: radial-gradient(circle at 10% 10%, #82b7d4 0%, transparent 70%), radial-gradient(circle at 90% 90%, #b4b8d9 0%, transparent 70%), radial-gradient(circle at 40% 80%, #82b7d4 0%, transparent 60%), radial-gradient(circle at 80% 20%, #b4b8d9 0%, transparent 60%);
}

#nav svg {
  height: 56px;
  opacity: 0.7;
}

#nav.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
#nav.active .navs ul li {
  opacity: 1;
  transform: translateY(0);
}
#nav.active .navs ul li:nth-child(1) {
  transition-delay: 0.16s;
}
#nav.active .navs ul li:nth-child(2) {
  transition-delay: 0.22s;
}
#nav.active .navs ul li:nth-child(3) {
  transition-delay: 0.28s;
}
#nav.active .navs ul li:nth-child(4) {
  transition-delay: 0.34s;
}
#nav.active .navs ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#nav.active .navs ul li:nth-child(6) {
  transition-delay: 0.46s;
}
#nav.active .navs ul li:nth-child(7) {
  transition-delay: 0.52s;
}
#nav.active .navs ul li:nth-child(8) {
  transition-delay: 0.58s;
}
#nav.active .navs ul li:nth-child(9) {
  transition-delay: 0.64s;
}
#nav.active .navs ul li:nth-child(10) {
  transition-delay: 0.7s;
}
#nav.active .navs ul li:nth-child(11) {
  transition-delay: 0.76s;
}
#nav.active .navs ul li:nth-child(12) {
  transition-delay: 0.82s;
}

#nav img {
  width: 100%;
  margin: 0 0 3rem 0;
}
@media (min-width: 769px) {
  #nav img {
    width: 260px;
    margin: 0 0 6rem 0;
  }
}
#nav .navs {
  font-weight: 700;
  width: 100%;
}
@media (min-width: 769px) {
  #nav .navs {
    width: 400px;
  }
}
#nav .navs ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
#nav .navs ul li {
  list-style: none;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#nav .navs a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  display: block;
}
#nav .navs a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#nav .navs .gNavi {
  margin: 0;
  padding: 1.5rem 1.5rem 1.5rem 0;
  font-size: 2.4rem;
}

#top li.top,
#news li.news,
#schedule li.schedule,
#music li.music,
#movie li.movie,
.profile li.profile,
.store li.store,
.fanclub li.fanclub,
.contact li.contact {
  opacity: 0.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
  margin: 0;
  padding: 0;
}

body {
  color: #999;
  font-size: 1.4rem;
  background: #fff;
  box-sizing: content-box;
  font-family: "Sawarabi Mincho", serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Hina Mincho", serif;
  text-transform: uppercase;
  background: linear-gradient(to right, #82b7d4 9%, #b4b8d9 86%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-weight: bold;
}

h5 {
  font-size: 1.6rem;
}

a,
a:link,
a:visited {
  color: #666;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active {
  text-decoration: none;
  color: #707070;
}

a.btn:link,
a.btn:visited {
  background: linear-gradient(to right, #82b7d4 9%, #b4b8d9 86%);
  border: 0;
  color: #ffffff;
  font-weight: bolder;
  margin: 1.5rem auto;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  position: relative;
}
a.btn:link::after,
a.btn:visited::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  color: #fff;
}
a.btn:link:hover::after,
a.btn:visited:hover::after {
  transform: translate(50%, -50%) rotate(-45deg);
}

a.btn:hover,
a.btn:active {
  background: linear-gradient(to right, #82b7d4 9%, #b4b8d9 86%);
}

a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

.view-all {
  text-transform: uppercase;
  display: flex;
  justify-content: end;
  padding: 1.5rem 0 0;
}
.view-all a.btn {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #666;
  border: none;
  border-radius: 0;
  outline: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  padding: 8px 64px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.view-all a.btn::after {
  content: "";
  display: none;
}
.view-all a.btn::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #eee9e6;
  z-index: -1;
  transition: all 0.3s ease;
}
.view-all a.btn:hover {
  background: transparent;
}
.view-all a.btn:hover::before {
  top: 0;
  left: 0;
}

.back2list {
  text-transform: uppercase;
  display: flex;
  justify-content: end;
  padding: 1.5rem 0 0;
}
.back2list .btn {
  position: relative;
}
.back2list .btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 2rem;
  border-top: 1px solid #666;
  top: 50%;
  left: -1rem;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-drag: none;
  pointer-events: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  position: fixed;
  z-index: 9999;
}
header h1 {
  margin: 0;
}
header {
  padding: 0;
}
header img {
  height: 44px;
  padding: 0 16px;
}

.tribe-events .tribe-events-header, .tribe-events-calendar-list__event-header {
  z-index: 1 !important;
  position: relative;
}

.hero {
  width: 100%;
  height: 100vh;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/hero_pc.jpg) top/cover no-repeat;
  animation: blurReveal 1.5s ease-out forwards;
}
.hero .reveal-svg {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 600px;
  height: auto;
  clip-path: inset(0 100% 0 0);
  animation: wipeReveal 0.8s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes blurReveal {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes wipeReveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}
main section {
  padding: 3rem 0;
  line-height: 1.8;
}
@media (min-width: 769px) {
  main section {
    padding: 6rem 0;
  }
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

footer {
  margin-top: auto;
  text-align: center;
  background: #a5a9c5;
  padding: 3rem 0 6rem;
  color: #fff;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  footer ul {
    justify-content: center;
    align-items: center;
  }
}
footer ul li {
  list-style: none;
  margin: 0;
  width: 50%;
}
@media (min-width: 769px) {
  footer ul li {
    width: auto;
  }
}
footer ul li a {
  display: block;
  width: 100%;
  padding: 3rem;
}
footer ul li a:link,
footer ul li a:visited {
  color: #fff;
  text-transform: uppercase;
}

.home h2 {
  font-size: 4rem;
  margin: 1.5rem 0;
}
.home h3 {
  font-size: 2.8rem;
  margin: 0 0 1.5rem 0;
}
.home .item {
  display: flex;
  justify-content: space-between;
}
.home .item .jk {
  width: 40%;
}
@media (min-width: 769px) {
  .home .item .jk {
    width: 430px;
  }
}
.home .item .detail {
  width: calc(60% - 1.5rem);
}
@media (min-width: 769px) {
  .home .item .detail {
    width: calc(100% - 445px);
  }
}
.home .item .detail h4 {
  font-size: 2.1rem;
  margin: 1.5rem 0;
}
.home .item .detail .date {
  font-size: 1.8rem;
  margin: 0 0 3rem 0;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

ul.newsList {
  margin: 0;
}
ul.newsList li {
  list-style: none;
}
ul.newsList li a {
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}
ul.newsList li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  color: #a5a9c5;
}
ul.newsList li a:hover::after {
  transform: translate(50%, -50%) rotate(-45deg);
}
ul.newsList li + li {
  border-top: 1px solid #ccc;
}

.newsNavi {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px dotted #ccc;
  padding: 3rem 0;
}
@media (min-width: 769px) {
  .newsNavi {
    flex-direction: row;
  }
}
.newsNavi li {
  list-style: none;
}
.newsNavi li a {
  padding: 1.5rem 0;
  display: block;
}
@media (min-width: 769px) {
  .newsNavi li {
    width: 33.3333333333%;
  }
}
.newsNavi li:first-child {
  order: 1;
}
@media (min-width: 769px) {
  .newsNavi li:first-child {
    order: 2;
    text-align: left;
  }
}
.newsNavi li:nth-child(2) {
  order: 2;
}
@media (min-width: 769px) {
  .newsNavi li:nth-child(2) {
    text-align: center;
  }
}
.newsNavi li:last-child {
  order: 1;
}
@media (min-width: 769px) {
  .newsNavi li:last-child {
    order: 2;
    text-align: right;
  }
}

ol.trackList,
ul.trackList {
  margin: 3rem;
}
ol.trackList li,
ul.trackList li {
  margin: 0 0 1.5rem;
}
ol.trackList li p,
ul.trackList li p {
  font-size: 0.8em;
}

.scheduleList {
  margin: 0 0;
}
.scheduleList li {
  list-style: none;
}
.scheduleList li a {
  font-size: 1.4rem;
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}
.scheduleList li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  color: #a5a9c5;
}
.scheduleList li a:hover::after {
  transform: translate(50%, -50%) rotate(-45deg);
}
.scheduleList li a span {
  font-size: 1.4em;
  display: inline-block;
}
.scheduleList li a em {
  font-style: normal;
  margin-left: 1.5rem;
  padding: 0.2rem 1rem;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.scheduleList li .disable {
  font-size: 1.4rem;
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}
.scheduleList li + li {
  border-top: 1px solid #ccc;
}

.schedule_date {
  font-size: 2.4rem;
}

.schedule_detail {
  padding: 3rem 0;
}

.schedule_publish {
  padding: 3rem 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.localNavi {
  margin: 1.5rem auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.localNavi li {
  list-style: none;
}
.localNavi li a {
  display: inline-block;
  padding: 1rem 2.5rem;
}
@media (min-width: 769px) {
  .localNavi li a {
    padding: 1.5rem;
  }
}

.music.single article {
  margin: 0 0 6rem;
}
@media (min-width: 769px) {
  .music.single article {
    display: flex;
    justify-content: space-between;
  }
  .music.single article .jk {
    width: 60%;
  }
  .music.single article .detail {
    width: calc(40% - 3rem);
  }
  .music.single article .detail h2 {
    margin: 3rem 0;
  }
}
.music.single article h3.headingLine {
  font-size: 2.6rem;
  margin: 0 0 3rem;
}

.musicList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -0.75rem;
}
@media (min-width: 769px) {
  .musicList {
    justify-content: center;
  }
}
.musicList li {
  list-style: none;
  margin: 0 0.75rem 2rem;
  width: calc((100% - 3rem) / 2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) {
  .musicList li {
    width: calc((100% - 4.5rem) / 3);
  }
}
.musicList li a {
  display: block;
  padding: 1.5rem;
  height: 100%;
}
.musicList li a .jk {
  margin-bottom: 1.5rem;
  display: flex;
  aspect-ratio: 1/1;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.musicList li a .jk::before {
  content: "";
  background: inherit;
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.musicList li a .jk img {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.musicList li a h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
}
@media (min-width: 769px) {
  .musicList li a h3 {
    font-size: 2.1rem;
    margin: 0 0 0.5rem 0;
  }
}

.relatedItems ul li {
  list-style: none;
}
.relatedItems ul li a {
  display: block;
}
.relatedItems ul li a .wrap {
  display: flex;
  justify-content: space-between;
}
.relatedItems ul li a .wrap .jk {
  width: 40%;
}
.relatedItems ul li a .wrap .detail {
  width: calc(60% - 1.5rem);
}

.tagList {
  margin: 0 0 1rem 0;
}
.tagList li {
  font-size: 1.1rem;
  list-style: none;
  display: inline;
  padding: 0.2rem 0.8rem;
  margin: 0 0.5rem 1.5rem 0;
  border: 1px solid #999;
  border-radius: 5px;
  word-break: keep-all;
}

.movieList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -0.75rem;
  background: #ccc;
}
.movieList li {
  list-style: none;
  margin: 0 0.75rem 2rem;
  width: calc((100% - 3rem) / 2);
}
.movieList li a {
  display: block;
  padding: 1.5rem;
}
.movieList li a img {
  width: 200%;
  display: block;
}

.storeList li {
  list-style: none;
}

.wp-pagenavi {
  /* 全体 */
  margin: 20px 0;
  font-size: 12px;
}

.wp-pagenavi a {
  /* フォント色 */
  color: #4a4a4a;
}

.pages {
  /* 左の表記 */
  margin-right: 20px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current {
  /* カレント数字 */
  border: none;
  background: #a5a9c5;
  color: #fff;
}

.wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background: #888db7;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  /* 記号の削除 */
  display: none;
}

main {
  margin-top: 6rem;
  line-height: 1.8;
}
main h2 {
  display: inline-block;
  margin: 0 auto 1.5rem;
}
main .date {
  margin: 0 auto 1.5rem;
}
main p {
  margin-bottom: 1.5rem;
}

.contact dd {
  margin: 0 0 3rem 0;
}
.contact input, .contact textarea {
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  max-width: 100%;
}
.contact .submit-btn input {
  background: linear-gradient(to right, #82b7d4 9%, #b4b8d9 86%);
  border: 0;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: bolder;
  margin: 0 auto;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
}
.contact .submit-btn {
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}
.contact .submit-btn input:hover {
  background: linear-gradient(to right, #82b7d4 9%, #b4b8d9 86%);
  opacity: 0.8;
  cursor: pointer;
}

@keyframes blurReveal {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
img.blur {
  display: block;
  max-width: 100%;
  opacity: 0;
}

img.blur.is-visible {
  animation: blurReveal 0.8s ease-out forwards;
}

.fc-logo {
  width: 620px;
  max-width: 80%;
  display: block;
  margin: auto;
}

.fc-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  padding: 0;
  margin: 4rem 0;
}
@media (min-width: 769px) {
  .fc-benefits {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 1.5rem;
    margin: 6rem 0;
  }
}
.fc-benefits li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fc-benefits li:nth-child(1) {
  transition-delay: 0s;
}
.fc-benefits li:nth-child(2) {
  transition-delay: 0.1s;
}
.fc-benefits li:nth-child(3) {
  transition-delay: 0.2s;
}
.fc-benefits li:nth-child(4) {
  transition-delay: 0.3s;
}
.fc-benefits li:nth-child(5) {
  transition-delay: 0.4s;
}
.fc-benefits li:nth-child(6) {
  transition-delay: 0.5s;
}
.fc-benefits li:nth-child(7) {
  transition-delay: 0.6s;
}
.fc-benefits li:nth-child(8) {
  transition-delay: 0.7s;
}
@media (min-width: 769px) {
  .fc-benefits li {
    padding: 3rem 1.5rem;
  }
}
.fc-benefits li .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .fc-benefits li .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
}
.fc-benefits li .icon svg {
  width: 100%;
  height: 100%;
  color: #666;
}
.fc-benefits li p {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .fc-benefits li p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.fc-benefits li p span {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  margin-top: 0.5rem;
  color: #666;
}
@media (min-width: 769px) {
  .fc-benefits li p span {
    font-size: 1.2rem;
  }
}
.fc-benefits.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.form {
  max-width: 600px;
  margin: auto;
}

@media (min-width: 769px) {
  .tribe-events-calendar-month__day {
    min-height: 80px !important;
  }
  .tribe-events-calendar-month__day-cell {
    padding: 4px !important;
  }
  .tribe-events-calendar-month__day-date {
    margin-bottom: 4px !important;
    padding: 2px !important;
  }
  .tribe-events-calendar-month__calendar-event {
    padding: 2px 4px !important;
    min-height: auto !important;
  }
  .tribe-events-calendar-month__calendar-event-wrapper {
    margin-bottom: 2px !important;
  }
  .tribe-events-calendar-month__calendar-event-title {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
  }
}
/*----------------------
 BIO
-----------------------*/
.biography-wrap {
  margin: 0 auto;
  padding: 4rem 0;
}
.biography-wrap h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}
.biography-wrap .bio-section {
  margin-bottom: 4rem;
}
.biography-wrap .bio-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.biography-wrap .stage-accordion {
  border-top: 1px solid #ccc;
}
.biography-wrap .stage-accordion .work-item {
  border-bottom: 1px solid #ccc;
}
.biography-wrap .stage-accordion .work-item > summary {
  list-style: none;
  display: block;
}
.biography-wrap .stage-accordion .work-item > summary::-webkit-details-marker {
  display: none;
}
.biography-wrap .stage-accordion .work-item .work-summary {
  position: relative;
  display: block;
  padding: 1.5rem 3rem 1.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 769px) {
  .biography-wrap .stage-accordion .work-item .work-summary {
    padding: 2rem 4rem 2rem 1.5rem;
  }
}
.biography-wrap .stage-accordion .work-item .work-summary:hover {
  background-color: #f9f9f9;
}
.biography-wrap .stage-accordion .work-item .work-summary .work-title {
  display: block;
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}
.biography-wrap .stage-accordion .work-item .work-summary .toggle-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
@media (min-width: 769px) {
  .biography-wrap .stage-accordion .work-item .work-summary .toggle-icon {
    right: 1.5rem;
  }
}
.biography-wrap .stage-accordion .work-item .work-summary .toggle-icon::before, .biography-wrap .stage-accordion .work-item .work-summary .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #a5a9c5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.biography-wrap .stage-accordion .work-item .work-summary .toggle-icon::before {
  width: 100%;
  height: 2px;
}
.biography-wrap .stage-accordion .work-item .work-summary .toggle-icon::after {
  width: 2px;
  height: 100%;
}
.biography-wrap .stage-accordion .work-item[open] .work-summary .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.biography-wrap .stage-accordion .work-item .work-details {
  overflow: hidden;
  padding: 0 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 769px) {
  .biography-wrap .stage-accordion .work-item .work-details {
    padding: 0 1.5rem 2.5rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.biography-wrap .stage-accordion .work-item .work-details .poster-img {
  margin: 0;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .biography-wrap .stage-accordion .work-item .work-details .poster-img {
    max-width: 640px;
    margin: auto;
  }
}
.biography-wrap .stage-accordion .work-item .work-details .poster-img img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.biography-wrap .stage-accordion .work-item .work-details .info-text {
  flex: 1;
}
.biography-wrap .stage-accordion .work-item .work-details .info-text .role {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #d1a84f;
}
.biography-wrap .stage-accordion .work-item .work-details .info-text .schedule {
  list-style: none;
  padding: 0;
  margin: 0;
}
.biography-wrap .stage-accordion .work-item .work-details .info-text .schedule li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
.biography-wrap .media-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.biography-wrap .media-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
.biography-wrap .media-list li .date {
  font-weight: bold;
}
.biography-wrap .media-list li small {
  display: block;
  color: #777;
  margin-top: 0.3rem;
  padding-left: 1em;
  text-indent: 0;
}/*# sourceMappingURL=style.css.map */