@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Montserrat&family=Poppins:wght@300;600&family=Ropa+Sans&display=swap");
/*
font-family: 'Abel', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Ropa Sans', sans-serif;
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

/* レスポンシブ用 */
/*flexbox*/
/* 文字の字詰用 */
body {
  box-sizing: border-box;
  background-color: #030d36;
}

a {
  text-decoration: none;
}
a.break {
  overflow-wrap: break-word;
}

.video_area {
  height: 100vh;
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.video_area .video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
.video_area .image {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  background-image: url(./../img/index_jacket_2025-02.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 420px) {
  .video_area .image {
    background-image: url(./../img/index_jacket_2025-02_sp.jpg);
    background-size: auto 100vh;
  }
}

.index_bg {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  background-image: url(./../img/index_jacket.png);
  background-position: center center;
  background-size: auto 56.25vw;
  background-repeat: no-repeat;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .index_bg {
    background-size: auto 100vw;
    background-position: center center;
  }
}
@media (max-width: 420px) {
  .index_bg {
    background-size: auto 120vw;
    background-position: center bottom 10vh;
  }
}

/* news */
main.news {
  width: max(60%, 640px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.news {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

.newslist li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 420px) {
  .newslist li {
    width: 100%;
    overflow: hidden;
  }
}
.newslist li:first-of-type {
  padding-top: 0;
}
.newslist li:last-of-type {
  border-bottom: 0 none;
}
.newslist li .newsleft {
  flex-basis: 88px;
  flex-shrink: 0;
}
.newslist li .newsleft span {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
.newslist li .newsleft span.month {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.newslist li .newsleft span.day {
  font-family: "Abel", sans-serif;
  font-size: 44px;
  color: white;
}
.newslist li .newsleft span.year {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.25em;
}
.newslist li .newsright {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .newslist li .newsright {
    flex: 3;
    flex-shrink: 1;
  }
}
@media (max-width: 420px) {
  .newslist li .newsright {
    min-width: 0;
  }
}
.newslist li .newsright h2 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6em;
}
@media (max-width: 768px) {
  .newslist li .newsright h2 {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .newslist li .newsright h2 {
    line-height: 1.4;
  }
}
.newslist li .newsright p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .newslist li .newsright p {
    font-size: 14px;
  }
}
.newslist li .newsright p a {
  color: rgba(255, 255, 255, 0.45);
}
.newslist li .newsright p a:hover, .newslist li .newsright p a:active {
  color: white;
}

/* live,event */
main.event {
  width: max(80%, 768px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.event {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

.center_text {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .center_text {
    font-size: 14px;
  }
}

.center_text_small {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-align: center;
}

address {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: white;
  text-align: center;
  padding: 4em 0;
}
address a {
  color: white;
  text-decoration: none;
}
address a:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  address {
    font-size: 15px;
  }
}

.box_btn {
  display: block;
  margin: 2em auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: 200px;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  padding: 1.5em 3.5em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .box_btn {
    font-size: 14px;
  }
}
.box_btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.event_newslist {
  width: max(60%, 640px);
  margin: 0 auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .event_newslist {
    width: calc(100% - 20px);
    margin: 50px auto 0;
    padding: 0 25px;
  }
}
.event_newslist li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 420px) {
  .event_newslist li {
    width: 100%;
    overflow: hidden;
  }
}
.event_newslist li:first-of-type {
  padding-top: 0;
}
.event_newslist li:last-of-type {
  border-bottom: 0 none;
}
.event_newslist li .newsleft {
  flex-basis: 88px;
  flex-shrink: 0;
}
.event_newslist li .newsleft span {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
.event_newslist li .newsleft span.month {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.event_newslist li .newsleft span.day {
  font-family: "Abel", sans-serif;
  font-size: 44px;
  color: white;
}
.event_newslist li .newsleft span.year {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.25em;
}
.event_newslist li .newsright {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .event_newslist li .newsright {
    flex: 3;
    flex-shrink: 1;
  }
}
@media (max-width: 420px) {
  .event_newslist li .newsright {
    min-width: 0;
  }
}
.event_newslist li .newsright h2 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .event_newslist li .newsright h2 {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .event_newslist li .newsright h2 {
    line-height: 1.4;
  }
}
.event_newslist li .newsright p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .event_newslist li .newsright p {
    font-size: 14px;
  }
}
.event_newslist li .newsright p a {
  color: rgba(255, 255, 255, 0.45);
}
.event_newslist li .newsright p a:hover, .event_newslist li .newsright p a:active {
  color: white;
}

.past h3 {
  width: max(60%, 640px);
  margin: 0 auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 24px;
  font-family: "Ropa Sans", sans-serif;
  margin-bottom: 2em;
  text-align: center;
  padding: 1em 0;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .past h3 {
    width: calc(100% - 50px);
    margin: 25px auto 0;
    padding: 25px 0;
  }
}
@media (max-width: 420px) {
  .past h3 {
    font-size: 20px;
    padding: 1em 0;
  }
}

/* secret */
main.secret {
  width: max(80%, 768px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.secret {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

/* media,sns */
main.media {
  width: max(80%, 768px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.media {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

.icon_border {
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon_border i {
  font-size: 24px;
  color: white;
}

.media_y {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 420px) {
  .media_y {
    display: block;
  }
}

.media_y + .media_y {
  margin-top: 24px;
}

.non-gap {
  gap: 0 !important;
}

.media_y_left {
  flex: 1;
}
@media (max-width: 420px) {
  .media_y_left {
    margin-bottom: 25px;
  }
}
.media_y_left .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.media_y_left .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.media_y_right {
  flex: 1;
  flex-shrink: 0;
  flex-grow: 1;
}

.media_title {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.media_title:hover {
  opacity: 0.5;
}
.media_title:active, .media_title:focus {
  opacity: 1;
}

.media_title_right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.media_title_right h3 {
  color: white;
  font-size: 20px;
  font-family: "Ropa Sans", sans-serif;
  margin-bottom: auto;
}
.media_title_right p {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  padding-top: 1em;
}

.media_text {
  margin-top: 1.6em;
  font-size: 14px;
  line-height: 1.4;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  color: rgba(255, 255, 255, 0.6);
}

.media_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 420px) {
  .media_list {
    margin-top: 50px;
    display: block;
  }
  .media_list a {
    margin-bottom: 25px;
  }
}
.media_list .media_title {
  flex: 1;
  flex-shrink: 1;
}

/* discography */
main.disco {
  width: max(90%, 960px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.disco {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

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

.panel {
  display: none;
  color: rgba(255, 255, 255, 0.25);
}
.panel.is-show {
  display: block;
}

.tab-panel {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 768px) {
  .tab-panel {
    gap: 25px;
  }
}
@media (max-width: 420px) {
  .tab-panel {
    display: block;
    gap: 0;
  }
}
.tab-panel .tab-group {
  flex-basis: 24vw;
  max-width: 340px;
}
@media (max-width: 420px) {
  .tab-panel .tab-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    display: none;
  }
}
.tab-panel .tab-group div ul li {
  font-feature-settings: "palt";
  text-rendering: geometricPrecision;
  -webkit-text-rendering: geometricPrecision;
  -moz-text-rendering: geometricPrecision;
  -o-text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  width: 288px;
  display: block;
}
.tab-panel .panel-group {
  min-width: 0;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .tab-panel .panel-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    flex-basis: 65vw;
  }
}
.tab-panel .panel-group .panel {
  margin: 0 auto;
  /*モバイルの場合は全表示*/
}
@media (max-width: 420px) {
  .tab-panel .panel-group .panel {
    display: block;
    padding-bottom: 25px;
  }
}
.tab-panel .panel-group .panel .disco_box .disco_box_right h3 {
  font-feature-settings: "palt";
  text-rendering: geometricPrecision;
  -webkit-text-rendering: geometricPrecision;
  -moz-text-rendering: geometricPrecision;
  -o-text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 1.3;
}
.tab-panel .panel-group .panel .disco_box .disco_box_right p {
  overflow-wrap: break-word;
}
.tab-panel h4 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Ropa Sans", sans-serif;
}
@media (max-width: 420px) {
  .tab-panel h4 {
    font-size: 13px;
  }
}
.tab-panel ul {
  margin-bottom: 10px;
}
@media (max-width: 420px) {
  .tab-panel ul {
    margin-bottom: 0px;
  }
}
.tab-panel ul li {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.35);
  padding-bottom: 1em;
  min-width: 288px;
  line-height: 1.33;
}
@media (max-width: 768px) {
  .tab-panel ul li {
    font-size: 32px;
    min-width: 0;
    line-height: 1.7;
  }
}
@media (max-width: 420px) {
  .tab-panel ul li {
    font-size: 20px;
    padding-bottom: 0.5em;
  }
}
.tab-panel ul li:first-of-type {
  padding-top: 1em;
}
.tab-panel ul li:hover {
  color: white;
}
.tab-panel ul li.is-active {
  color: white;
  font-feature-settings: "palt";
  text-rendering: geometricPrecision;
  -webkit-text-rendering: geometricPrecision;
  -moz-text-rendering: geometricPrecision;
  -o-text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.disco_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
  width: 100%;
}
@media (max-width: 768px) {
  .disco_box {
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .disco_box {
    gap: 25px;
    padding-bottom: 25px;
    max-width: calc(100% - 50px);
  }
}
.disco_box .disco_box_left {
  flex-basis: 288px;
}
.disco_box .disco_box_left img {
  min-width: 288px;
  width: 288px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .disco_box .disco_box_left img {
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.disco_box .disco_box_right {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
  flex: 1;
}
@media (max-width: 420px) {
  .disco_box .disco_box_right {
    max-width: 350px;
  }
}
.disco_box .genre {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .disco_box .genre {
    font-size: 15px;
  }
}
.disco_box .title {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .disco_box .title {
    font-size: 24px;
  }
}
.disco_box .date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .disco_box .date {
    font-size: 12px;
  }
}
.disco_box .info {
  margin-top: auto;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .disco_box .info {
    font-size: 14px;
  }
}
.disco_box .info a {
  color: rgba(255, 255, 255, 0.6);
}
.disco_box .info a:hover {
  color: white;
}

/* profile */
main.profile {
  width: max(90%, 960px);
  margin: 185px auto 0;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  main.profile {
    width: calc(100% - 50px);
    margin: 200px auto 0;
    padding: 0 25px;
  }
}

.profiles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .profiles {
    gap: 25px;
  }
}
@media (max-width: 420px) {
  .profiles {
    display: block;
    padding-bottom: 50px;
  }
}
.profiles .photos {
  background-image: url(./../img/prof_photos2.png);
  background-position: center top;
  background-repeat: no-repeat;
  height: 80vh;
  flex: 5;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .profiles .photos {
    background-size: cover;
    height: 50vw;
  }
}
@media (max-width: 420px) {
  .profiles .photos {
    width: 100%;
    height: 50vh;
    background-size: contain;
    margin-bottom: 50px;
  }
}
.profiles .photos .item {
  overflow: hidden;
  width: 25%;
}
.profiles .photos .item img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.profiles .texts {
  flex: 7;
}
@media (max-width: 768px) {
  .profiles .texts {
    font-size: 0.85em;
  }
}
.profiles .texts h2 {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .profiles .texts h2 {
    font-size: 24px; /*75%*/
  }
}
.profiles .texts h2 span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}
@media (max-width: 768px) {
  .profiles .texts h2 span {
    margin-left: 1em;
    font-size: 12px;
  }
}
.profiles .texts p {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .profiles .texts p {
    font-size: 14px;
  }
}
.profiles .texts p a {
  color: rgba(255, 255, 255, 0.45);
}
.profiles .texts p a:hover {
  color: white;
}

.photo_aspect {
  width: 100%;
  margin: 16px 0 0;
  padding: 0;
}

img.horizontal {
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  max-width: 480px;
}
@media (max-width: 768px) {
  img.horizontal {
    max-width: 100%;
  }
}
img.horizontal.max100 {
  max-width: 100% !important;
}

img.vertical {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  max-width: 360px;
}
@media (max-width: 768px) {
  img.vertical {
    max-width: 100%;
  }
}

img.square {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-width: 320px;
}
@media (max-width: 768px) {
  img.square {
    max-width: 100%;
  }
}
img.square.max100 {
  max-width: 100% !important;
}

img[src="./assets/img/img_fansite.jpg"],
img[src="./assets/img/event0312leaflet.jpeg"],
img[src="./assets/img/20230218flyer.jpg"] {
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  max-width: 480px;
}
@media (max-width: 768px) {
  img[src="./assets/img/img_fansite.jpg"],
  img[src="./assets/img/event0312leaflet.jpeg"],
  img[src="./assets/img/20230218flyer.jpg"] {
    max-width: 100%;
  }
}
img[src="./assets/img/img_fansite.jpg"].max100,
img[src="./assets/img/event0312leaflet.jpeg"].max100,
img[src="./assets/img/20230218flyer.jpg"].max100 {
  max-width: 100% !important;
}

img[src="./assets/img/20230812_flyer.jpg"],
img[src="./assets/img/20220215_013342.jpg"],
img[src="./assets/img/image_processing20220303-21509-7nud1v.jpeg"],
img[src="./assets/img/20220520_025756.jpeg"],
img[src="./assets/img/sapporo_realbeat_07-17.jpg"],
img[src="./assets/img/2023-03-24_flyer.jpg"],
img[src="./assets/img/2023-03-24_flyer2.jpg"],
img[src="./assets/img/cf_flyer_230210_3_cover.png"],
img[src="./assets/img/1676539562967.jpg"],
img[src="./assets/img/20230520_noon.jpeg"],
img[src="./assets/img/20230520flyer_4-2.jpeg"],
img[src="./assets/img/event_2023-10-27.jpg"],
img[src="./assets/img/event_2023-12-16.jpg"],
img[src="./assets/img/231222_christmas.jpeg"] {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  max-width: 360px;
}
@media (max-width: 768px) {
  img[src="./assets/img/20230812_flyer.jpg"],
  img[src="./assets/img/20220215_013342.jpg"],
  img[src="./assets/img/image_processing20220303-21509-7nud1v.jpeg"],
  img[src="./assets/img/20220520_025756.jpeg"],
  img[src="./assets/img/sapporo_realbeat_07-17.jpg"],
  img[src="./assets/img/2023-03-24_flyer.jpg"],
  img[src="./assets/img/2023-03-24_flyer2.jpg"],
  img[src="./assets/img/cf_flyer_230210_3_cover.png"],
  img[src="./assets/img/1676539562967.jpg"],
  img[src="./assets/img/20230520_noon.jpeg"],
  img[src="./assets/img/20230520flyer_4-2.jpeg"],
  img[src="./assets/img/event_2023-10-27.jpg"],
  img[src="./assets/img/event_2023-12-16.jpg"],
  img[src="./assets/img/231222_christmas.jpeg"] {
    max-width: 100%;
  }
}

img[src="./assets/img/hugnohi-326x326.jpg"],
img[src="./assets/img/2023-09_licht.jpg"] {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-width: 320px;
}
@media (max-width: 768px) {
  img[src="./assets/img/hugnohi-326x326.jpg"],
  img[src="./assets/img/2023-09_licht.jpg"] {
    max-width: 100%;
  }
}
img[src="./assets/img/hugnohi-326x326.jpg"].max100,
img[src="./assets/img/2023-09_licht.jpg"].max100 {
  max-width: 100% !important;
}

/*イベント1件ずつテーブルに*/
span.table {
  vertical-align: top;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
span.table a {
  color: rgba(255, 255, 255, 0.45);
}
span.table span.t_h {
  display: block;
}
span.table span.t_cell {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  span.table span.t_cell {
    display: block;
  }
}
@media (max-width: 768px) {
  span.table span.t_cell span {
    display: block;
  }
}
span.table span.t_cell span:first-of-type {
  white-space: nowrap;
}
@media (max-width: 768px) {
  span.table span.t_cell span:first-of-type {
    margin-top: 10px;
  }
}

/*
font-family: "游明朝体", 'Yu Mincho', 'YuMincho', 'Noto Serif JP', serif;
*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  height: 100px;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  z-index: 100;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
  }
}
@media (max-width: 420px) {
  header {
    flex-direction: column;
    height: auto;
  }
}
header.header_colored {
  animation: colored 0.3s ease 0s forwards;
}
@keyframes colored {
  from {
    background-color: rgba(13, 22, 51, 0);
  }
  to {
    background-color: rgba(13, 22, 51, 0.85);
  }
}
header h1 {
  padding-left: 24px;
  flex-shrink: 0;
}
@media (max-width: 420px) {
  header h1 {
    padding-left: 0;
  }
}
header h1 a {
  background-image: url(./../img/logo_ol.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  height: 84px;
  width: 318px;
  text-align: left;
  text-indent: -9987em;
}
@media (max-width: 420px) {
  header h1 a {
    width: 244px;
  }
}
header .pc_menu {
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  header .pc_menu {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 420px) {
  header .pc_menu {
    margin: 0;
    width: 100%;
  }
}
header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header ul.submenu {
  gap: 25px;
  padding: 10px 35px 10px 0;
}
@media (max-width: 768px) {
  header ul.submenu {
    justify-content: center;
    padding: 10px 0;
  }
}
@media (max-width: 420px) {
  header ul.submenu {
    justify-content: center;
    padding: 10px 0;
  }
}
header ul.submenu li {
  display: block;
  width: 20px;
  height: 20px;
}
header ul.submenu li.nlink {
  width: auto;
}
header ul.submenu li.nlink a {
  font-size: 13px;
  padding: 0.5em 0.75em;
  line-height: 1;
  background-color: rgb(144, 122, 214);
  border-radius: 3px;
  transition: all 0.3s 0s ease;
}
header ul.submenu li.nlink a:hover {
  background-color: rgba(144, 122, 214, 0.8);
}
header ul.submenu li.nlink a:active, header ul.submenu li.nlink a:focus {
  background-color: #a08ddc;
}
header ul.submenu li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
header ul.submenu li a:hover {
  color: white;
}
header ul.submenu li a.menu_svg {
  opacity: 0.8;
}
header ul.submenu li a.menu_svg:hover {
  opacity: 1;
}
header ul.mainmenu {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  header ul.mainmenu {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: auto;
  }
}
@media (max-width: 420px) {
  header ul.mainmenu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: auto;
  }
}
header ul.mainmenu li {
  display: block;
}
@media (max-width: 420px) {
  header ul.mainmenu li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  header ul.mainmenu li:last-of-type a {
    border-right: 0 none;
  }
}
header ul.mainmenu li a {
  font-feature-settings: "palt";
  text-rendering: geometricPrecision;
  -webkit-text-rendering: geometricPrecision;
  -moz-text-rendering: geometricPrecision;
  -o-text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: block;
  text-align: center;
  font-size: 14px;
  width: 114px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
}
header ul.mainmenu li a:hover {
  color: white;
}
@media (max-width: 420px) {
  header ul.mainmenu li a {
    height: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}/*# sourceMappingURL=style.css.map */