@charset "UTF-8";
/* CSS Document */
/* トップページ以外で使用 */
.event-info {
  position: relative;
  margin-top: 48px;
  margin-bottom: 48px;
  overflow: hidden;
  border: 1px solid var(--color-theme-blue);
  border-radius: 4px;
}
.event-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-white);
  background: var(--color-theme-blue);
}
.event-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.event-info__list dt {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.event-info__list dd {
  font-size: 16px;
  line-height: 16px;
}
.event-info__list dd > p + p {
  margin-top: 4px;
}
.event-info__date, .event-info__time, .event-info__venue, .event-info__url, .event-info__ticket, .event-info__text, .event-info__act {
  padding-block: 12px;
  padding-inline: 24px;
}
.event-info__date:nth-of-type(odd), .event-info__time:nth-of-type(odd), .event-info__venue:nth-of-type(odd), .event-info__url:nth-of-type(odd), .event-info__ticket:nth-of-type(odd), .event-info__text:nth-of-type(odd), .event-info__act:nth-of-type(odd) {
  background: var(--color-white);
}
.event-info__date:nth-of-type(even), .event-info__time:nth-of-type(even), .event-info__venue:nth-of-type(even), .event-info__url:nth-of-type(even), .event-info__ticket:nth-of-type(even), .event-info__text:nth-of-type(even), .event-info__act:nth-of-type(even) {
  background: var(--color-off-white);
}
.event-info__date, .event-info__time, .event-info__venue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.event-info__url dd, .event-info__ticket dd, .event-info__text dd, .event-info__act dd {
  margin-top: 8px;
  line-height: 20px;
}
.event-info__url, .event-info__ticket, .event-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.event-info__act ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1px;
}
.event-info__act ul li:has(+ li)::after {
  margin-left: 1px;
  font-weight: 400;
  color: var(--color-gray-blue);
  content: "／";
}
.event-info__url a, .event-info__ticket a {
  color: var(--color-gray-blue);
  line-break: anywhere;
}
@media (hover: hover) {
  .event-info__url a:hover, .event-info__ticket a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 480px) {
  .event-info__list__date, .event-info__list__time, .event-info__list__venue, .event-info__list__url, .event-info__list__ticket, .event-info__list__text, .event-info__list__act {
    padding-inline: 16px;
  }
}
.link-article {
  position: relative;
  padding: 16px;
  margin-top: 64px;
  margin-bottom: 32px;
  border: 2px solid var(--color-gray5);
  border-radius: 4px;
}
.link-article:has(.link-article__title) {
  padding-top: 32px;
}
.link-article__title {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  padding-inline: 16px;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-white);
  background: var(--color-gray5);
  border-bottom-right-radius: 6px;
}
.link-article__title::before {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 8px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background: var(--color-white);
}
.link-article .article__title {
  margin-top: 0;
  font-size: 18px;
  line-height: 28px;
  display: -webkit-box;
  max-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.link-article .article__info {
  grid-template-columns: auto 1fr;
}
.link-article .article__info time::before {
  content: "";
}

@media screen and (max-width: 480px) {
  .link-article .article__title {
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .link-article + .link-article {
    margin-top: 40px;
  }
}
.members {
  position: relative;
  margin-top: 32px;
  margin-bottom: 64px;
}
.members__scroll {
  position: relative;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.members__table {
  width: 100%;
  letter-spacing: 0;
  white-space: nowrap;
  border-collapse: collapse;
}
.members__table thead th:first-child {
  border-top-left-radius: 8px;
}
.members__table thead th:last-child {
  border-top-right-radius: 8px;
}
.members__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.members__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}
.members__table th {
  height: 48px;
  padding-inline: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  vertical-align: middle;
  background: var(--color-gray5);
}
.members__table tr:nth-of-type(odd) td {
  background: var(--color-white);
}
.members__table tr:nth-of-type(even) td {
  background: var(--color-off-white);
}
.members__table td {
  min-height: 48px;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.members .vertical-enscroll {
  display: none;
}
.members__note {
  padding-left: 16px;
  margin-top: 16px;
  font-size: 10px;
  line-height: 14px;
  color: var(--color-gray-9);
}

.member__name {
  font-weight: 600;
}
.member__name:is(a) {
  color: var(--color-gray-blue);
}
@media (hover: hover) {
  .member__name:is(a):hover {
    color: var(--color-gray-blue);
    text-decoration: underline;
  }
}
.member__yomi {
  display: block;
  font-size: 10px;
  line-height: 10px;
  color: var(--color-gray-9);
}
.member__birthday {
  display: block;
}
.member__age {
  display: block;
  font-size: 13px;
  line-height: 13px;
}
.member__color {
  position: relative;
  top: 4px;
  z-index: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  border: 1px solid var(--color-gray-9);
  border-radius: 100%;
}
.member__date--blank {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .members {
    position: relative;
  }
  .members::after {
    position: absolute;
    top: 0;
    right: -2px;
    width: 12px;
    height: 100%;
    pointer-events: none;
    content: "";
    background: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
    background: linear-gradient(to left, #fff, transparent);
    mix-blend-mode: lighten;
  }
  .members .vertical-enscroll {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 64px);
    z-index: 10;
    display: block;
    width: 128px;
    height: 64px;
    padding-top: 32px;
    color: var(--color-white);
    text-align: center;
    background: var(--color-gray-9);
    border-radius: 8px;
    opacity: 0.8;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-animation: flick 2s linear infinite;
            animation: flick 2s linear infinite;
  }
  @-webkit-keyframes flick {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 0.8;
    }
    70% {
      opacity: 0.8;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes flick {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 0.8;
    }
    70% {
      opacity: 0.8;
    }
    100% {
      opacity: 0;
    }
  }
  .members .vertical-enscroll::before, .members .vertical-enscroll::after {
    position: absolute;
    top: 16px;
    width: 12px;
    height: 12px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    background: var(--color-white);
  }
  .members .vertical-enscroll::before {
    left: calc(50% - 24px);
    rotate: -180deg;
  }
  .members .vertical-enscroll::after {
    left: calc(50% + 12px);
  }
  .members:has(.js-enscroll-off)::after {
    display: none;
  }
  .members:has(.js-enscroll-off) > .vertical-enscroll {
    pointer-events: none;
    opacity: 0;
    -webkit-animation: disappear 0.2s linear;
            animation: disappear 0.2s linear;
  }
  @-webkit-keyframes disappear {
    0% {
      opacity: 0.8;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes disappear {
    0% {
      opacity: 0.8;
    }
    100% {
      opacity: 0;
    }
  }
  .members__scroll {
    padding-bottom: 4px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .members__table th:first-child,
  .members__table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
  }
  .members__table th:first-child::after,
  .members__table td:first-child::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    content: "";
    background: var(--color-white);
  }
}
.music-subscription-embed {
  margin-top: 64px;
}
.music-subscription-embed__spotify {
  margin-top: 32px;
}
.music-subscription-embed__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}
.music-subscription-embed__link {
  min-width: 182px;
  height: 40px;
  padding: 8px 16px;
  font-size: 20px;
  color: white;
  border-radius: 6px;
}
@media (hover: hover) {
  .music-subscription-embed__link:hover {
    opacity: 0.8;
  }
}
.music-subscription-embed__link > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.music-subscription-embed__link--amazon-music {
  background: #000;
}
.music-subscription-embed__link--amazon-music img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.music-subscription-embed__link--line-music img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.music-subscription-embed__link--youtube-music {
  font-family: "Gill Sans", sans-serif;
  font-weight: 600;
  color: #f00;
}

@media screen and (max-width: 480px) {
  .music-subscription-embed__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .music-subscription-embed__link {
    width: calc(50% - 4px);
  }
}
.quote-xpost {
  margin-inline: auto;
  margin-top: 32px;
  margin-bottom: 64px;
}
.quote-xpost .twitter-tweet {
  max-width: none !important;
}
.quote-xpost__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin-inline: auto;
  border: 1px solid transparent;
  border-radius: 12px;
  -webkit-transition: border-color 0.3s 3s, padding 0.05s 3s;
  transition: border-color 0.3s 3s, padding 0.05s 3s;
}
.quote-xpost__inner:has(.quote-xpost__archive) {
  width: auto;
  max-width: none;
}
.quote-xpost__inner:not(:has(iframe), :has(.quote-xpost__archive)) {
  padding: 16px 24px;
  border: 1px solid var(--color-gray-c);
}
.quote-xpost__alert {
  position: relative;
  padding-top: 40px;
}
.quote-xpost__alert > p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray-9);
  text-align: center;
}
.quote-xpost__alert::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 28px;
  height: 28px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  color: var(--color-error-red);
  text-align: center;
  content: "!";
  border: 2px solid var(--color-error-red);
  border-radius: 100%;
}
.quote-xpost__caption {
  padding-inline: 16px;
  margin-top: 16px;
  font-size: 12px;
  line-height: 16px;
}
.quote-xpost__archive {
  position: relative;
  padding: 16px 24px;
  margin-top: 16px;
  border: 1px solid var(--color-gray-c);
  border-radius: 12px;
}
.quote-xpost__link {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  color: #536471;
}
.quote-xpost__link:hover {
  text-decoration: underline;
}
.quote-xpost__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.quote-xpost__user {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-black);
}
.quote-xpost__id {
  font-size: 14px;
  color: #536471;
}
.quote-xpost__id::before {
  content: "@";
}
@media (hover: hover) {
  .quote-xpost__id:hover {
    text-decoration: underline;
  }
}
.quote-xpost__text {
  padding-inline: 8px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
}
.quote-xpost__text .hashtag {
  color: #006fd6;
}
.quote-xpost__text .link {
  color: #006fd6;
}
@media (hover: hover) {
  .quote-xpost__text a:hover {
    text-decoration: underline;
  }
}
.quote-xpost__date {
  padding-inline: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #536471;
}

@media screen and (max-width: 480px) {
  .quote-xpost {
    width: auto;
  }
  .quote-xpost__inner {
    width: auto;
  }
}
.quote-instagram {
  padding: 0;
  margin-inline: auto;
  margin-top: 32px;
}
.quote-instagram:has(iframe) .quote-instagram__alert,
.quote-instagram:has(iframe) .quote-instagram__archive {
  display: none;
}
.quote-instagram:has(.EmbedBrokenMedia) .quote-instagram__alert,
.quote-instagram:has(.EmbedBrokenMedia) .quote-instagram__archive {
  display: block;
}
.quote-instagram__alert {
  position: relative;
  padding-top: 40px;
}
.quote-instagram__alert > p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray-9);
  text-align: center;
}
.quote-instagram__alert::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 28px;
  height: 28px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  color: var(--color-error-red);
  text-align: center;
  content: "!";
  border: 2px solid var(--color-error-red);
  border-radius: 100%;
}
.quote-instagram__archive {
  position: relative;
  padding: 16px 24px;
  margin-top: 16px;
  border: 1px solid var(--color-gray-c);
  border-radius: 2px;
}
.quote-instagram__link {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  color: #848484;
}
.quote-instagram__link:hover {
  text-decoration: underline;
}
.quote-instagram__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.quote-instagram__user {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-black);
}
.quote-instagram__id {
  font-size: 14px;
  color: #848484;
}
.quote-instagram__id::before {
  content: "@";
}
@media (hover: hover) {
  .quote-instagram__id:hover {
    text-decoration: underline;
  }
}
.quote-instagram__text {
  padding-inline: 8px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
}
.quote-instagram__text .hashtag {
  color: #00376b;
}
.quote-instagram__text .at {
  color: #00376b;
}
@media (hover: hover) {
  .quote-instagram__text a:hover {
    text-decoration: underline;
  }
}
.quote-instagram__date {
  padding-inline: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #848484;
}

@media screen and (max-width: 480px) {
  .quote-instagram {
    width: auto;
  }
}
.series-link {
  margin-top: 32px;
}

.setlist {
  margin-top: 48px;
}
.setlist__header {
  padding-inline: 16px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  background: var(--color-theme-pink);
}
.setlist__event-info {
  margin-top: 12px;
  font-size: 14px;
}
.setlist__event-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.setlist__event-info-list dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 600;
}
.setlist .event-info__text {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray-9);
}
.setlist .event-info__act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.setlist .event-info__act ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 28px;
}
.setlist .event-info__act dd {
  margin-top: 0;
}
.setlist__inner {
  margin-top: 12px;
}
.setlist__title {
  padding-inline: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-theme-pink);
}

.setlist-songs {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  counter-reset: song_a;
  counter-reset: song_b;
  counter-reset: song_c;
  counter-reset: song_d;
  background: var(--color-off-white);
  border: 2px solid var(--color-off-white);
}
.setlist-songs > div:nth-of-type(even) {
  background: var(--color-white);
}
.setlist-songs__row {
  padding-right: 16px;
  padding-left: calc(16px + 2.5em);
}
.setlist-songs__row::before {
  display: inline-block;
  width: 2.5em;
  margin-right: 8px;
  margin-left: -2.5em;
  font-weight: 600;
  color: var(--color-gray-blue);
  text-align: right;
}
.setlist-songs__row--head {
  padding-inline: 24px;
  font-weight: 600;
}
.setlist-songs__row--MC {
  color: var(--color-gray-9);
}
.setlist-songs__row--MC::before {
  content: "";
}
.setlist-songs__row--reset::before {
  content: "# ";
}
.setlist-songs__row--song[data-group="0"] {
  counter-increment: song_a;
}
.setlist-songs__row--song[data-group="0"]::before {
  content: counter(song_a) ".";
}
.setlist-songs__row--song[data-group="1"] {
  counter-increment: song_b;
}
.setlist-songs__row--song[data-group="1"]::before {
  content: counter(song_b) ".";
}
.setlist-songs__row--song[data-group="2"] {
  counter-increment: song_c;
}
.setlist-songs__row--song[data-group="2"]::before {
  content: counter(song_c) ".";
}
.setlist-songs__row--song[data-group="3"] {
  counter-increment: song_d;
}
.setlist-songs__row--song[data-group="3"]::before {
  content: counter(song_d) ".";
}
.setlist-songs__row--song[data-before]::before {
  content: attr(data-before) ".";
}
.setlist-songs__topic {
  display: inline-block;
  margin-left: 1em;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray-9);
}

.simple-table {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}
.simple-table__table {
  border-collapse: collapse;
}
.simple-table__table caption {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
.simple-table__table th {
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  background: var(--color-gray5);
}
.simple-table__table td {
  padding-inline: 16px;
  font-size: 14px;
  text-align: left;
}
.simple-table__table thead th:first-child {
  border-top-left-radius: 4px;
}
.simple-table__table thead th:last-child {
  border-top-right-radius: 4px;
}
.simple-table__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
.simple-table__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
.simple-table__table tr:nth-of-type(odd) td {
  background: var(--color-white);
}
.simple-table__table tr:nth-of-type(even) td {
  background: var(--color-off-white);
}

.splide {
  z-index: 0;
}
.splide .article-content__image {
  margin-top: 8px;
  margin-bottom: 0;
}
.splide__slide-title {
  text-align: center;
}
.splide__track {
  position: relative;
  z-index: 0;
  margin-top: 24px;
}
.splide__arrows {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  width: 100%;
}
.splide__arrows--black .splide__arrow {
  -webkit-filter: none;
          filter: none;
}
.splide__arrow {
  position: absolute;
  top: 0;
  pointer-events: auto;
  cursor: pointer;
  -webkit-filter: brightness(0) saturate(100%) invert(56%) sepia(33%) saturate(0%) hue-rotate(207deg) brightness(91%) contrast(80%);
          filter: brightness(0) saturate(100%) invert(56%) sepia(33%) saturate(0%) hue-rotate(207deg) brightness(91%) contrast(80%);
  opacity: 0.6;
}
@media (hover: hover) {
  .splide__arrow:hover:not([disabled]) {
    opacity: 1;
  }
}
.splide__arrow--prev {
  left: 0;
  rotate: 180deg;
}
.splide__arrow--next {
  right: 0;
}
.splide__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 8px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.splide__thumbnails--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.splide__thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  cursor: pointer;
  opacity: 0.5;
}
.splide__thumbnail--active {
  position: relative;
  cursor: auto;
  opacity: 1;
}
.splide__thumbnail--active::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 4px solid var(--color-theme-pink);
}
.splide__thumbnail .article-content__image {
  display: contents;
}
.splide__thumbnail .article-content__image-container--mini {
  aspect-ratio: 1/1;
}
.splide__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.splide__thumbnail--number {
  width: 24px;
  height: 28px;
  text-align: center;
}
.splide__thumbnail--number > span {
  font-size: 20px;
  font-weight: 600;
}
.splide__thumbnail--number.splide__thumbnail--active::after {
  border: none;
  border-bottom: 4px solid var(--color-theme-pink);
}
.splide__xpost {
  position: relative;
}
.splide__xpost > .quote-xpost {
  margin-top: 0;
  margin-bottom: 0;
}
.splide__xpost > .quote-xpost .quote-xpost__inner {
  width: 480px;
}
.splide__xpost-link {
  display: none;
}

@media screen and (max-width: 480px) {
  .splide__xpost > .quote-xpost .twitter-tweet {
    pointer-events: none;
  }
  .splide__xpost > .quote-xpost .quote-xpost__inner {
    width: auto;
  }
  .splide__xpost-link {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(50% - 32px);
  }
  .splide__xpost-link--upper {
    top: 0;
  }
  .splide__xpost-link--lower {
    bottom: 0;
  }
  .splide__xpost-link__xpost {
    position: relative;
  }
}
.tour-info {
  margin-top: 48px;
}
.tour-info__tour-title {
  padding-inline: 16px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  background: var(--color-theme-green);
}
.tour-info__event-info {
  font-size: 14px;
}
.tour-info__event-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.tour-info__event-info-list dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 600;
}
.tour-info .event-info__text {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-gray-9);
}
.tour-info .event-info__act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.tour-info .event-info__act ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 28px;
}
.tour-info .event-info__act dd {
  margin-top: 0;
}
.tour-info .event-info__url dd, .tour-info .event-info__ticket dd {
  margin-top: 0;
}
.tour-info__title {
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-theme-green);
}
.tour-info__inner {
  margin-top: 24px;
}

.tour-events {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  background: var(--color-off-white);
  border: 2px solid var(--color-off-white);
}
.tour-events > li:nth-of-type(even) {
  background: var(--color-white);
}
.tour-events__row {
  padding-block: 4px;
  padding-right: 16px;
  padding-left: 32px;
}
.tour-events__row--head {
  padding-inline: 24px;
  font-weight: 600;
}
.tour-events__row--final .tour-events__venue {
  color: var(--color-theme-pink);
}
.tour-events__row--final .tour-events__prefecture {
  color: var(--color-gray-9);
}
.tour-events__basic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.tour-events__detail {
  margin-left: 64px;
  font-size: 12px;
}
.tour-events__year--hidden {
  pointer-events: none;
  opacity: 0;
}
.tour-events__prefecture {
  font-weight: 400;
  color: var(--color-gray-9);
}
.tour-events__final {
  padding-inline: 24px;
  font-weight: 600;
  color: var(--color-theme-pink);
}
.tour-events__guest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.tour-events__guest > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1px;
}
.tour-events__guest > ul li:has(+ li)::after {
  margin-left: 1px;
  font-weight: 400;
  color: var(--color-gray-blue);
  content: "／";
}

@media screen and (max-width: 480px) {
  .tour-events__year--hidden {
    pointer-events: all;
    opacity: 1;
  }
}
.youtube-embed {
  margin-bottom: 32px;
}
.youtube-embed__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 32px;
  overflow: hidden;
}
.youtube-embed__container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.youtube-embed__caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
}
.youtube-embed__caption > p {
  padding: 0;
  margin-top: 0;
  text-align: center;
  text-indent: 0;
}

/*
.article-content下のElementのうち、shortcodeに相当するものは/components/article-contentに@mixinで定義し、BEMのElement風に@includeする
*/
.article-content {
  padding: 32px;
  background: var(--color-white);
  border-radius: 12px;
}
@media screen and (max-width: 480px) {
  .article-content {
    padding: 32px 16px;
  }
}
.article-content .article-content__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-content .article-content__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-black);
}
.article-content .article-content__viewmore {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-text-black);
  position: relative;
}
.article-content .article-content__viewmore::before, .article-content .article-content__viewmore::after {
  position: absolute;
  display: block;
  width: 4px;
  height: 14px;
  content: "";
  background: var(--color-text-black);
  border-radius: 100vmax;
}
.article-content .article-content__viewmore::before {
  top: calc(50% - 9.8995198733px);
  left: 7.0710856238px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.article-content .article-content__viewmore::after {
  top: calc(50% - 2.8284342495px);
  left: 7.0710856238px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (hover: hover) {
  .article-content .article-content__viewmore:hover {
    text-decoration: underline;
  }
}
.article-content .article__title {
  display: block;
  max-height: none;
  overflow: auto;
  text-overflow: unset;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  font-size: 22px;
  line-height: 32px;
}
.article-content .article__info {
  grid-template-columns: auto auto 1fr;
}
.article-content .article__info > time::before {
  content: none;
}
.article-content .article__tag-list {
  padding-left: 0;
}
.article-content--profile .article__title, .article-content--disc .article__title {
  font-size: 24px;
}
.article-content--profile .article__info, .article-content--disc .article__info {
  grid-template-columns: auto 1fr auto;
}
.article-content--profile .article__info::before, .article-content--disc .article__info::before {
  content: "";
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.article-content--profile .article__date-wrapper, .article-content--disc .article__date-wrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.article-content--profile .article__date--log, .article-content--disc .article__date--log {
  color: var(--color-gray-9);
  font-weight: 400;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.article-content--profile .article__date--log::before, .article-content--disc .article__date--log::before {
  content: none;
}
.article-content--profile .article__type, .article-content--disc .article__type {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.article-content--profile .article__reading, .article-content--disc .article__reading {
  font-size: 12px;
  color: var(--color-gray5);
}
.article-content--profile:not(:has(.profile-sns__outer)):not(:has(> .profile-excerpt)), .article-content--disc:not(:has(.profile-sns__outer)):not(:has(> .profile-excerpt)) {
  padding-bottom: 240px;
}
@media screen and (max-width: 480px) {
  .article-content__head {
    padding-inline: 0;
    padding-top: 0;
    gap: 2px;
  }
  .article-content__head .article__title {
    font-size: 22px;
    line-height: 32px;
    margin-top: 4px;
    display: block;
    max-height: none;
    overflow: auto;
    text-overflow: unset;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
  }
  .article-content__head .article__tag-list {
    margin-top: 8px;
  }
  .article-content--disc:not(:has(.profile-sns__outer)):not(:has(> .profile-excerpt)), .article-content--profile:not(:has(.profile-sns__outer)):not(:has(> .profile-excerpt)) {
    padding-bottom: 32px;
  }
}
.article-content--short {
  position: relative;
  padding-bottom: 240px;
}
.article-content--short::after {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 0;
  width: 200px;
  height: 64px;
  margin-inline: auto;
  content: "";
  background-image: url("https://idomire.com/editorial/wp-content/themes/idomire_theme/assets/img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
}
.article-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px 32px;
}
.article-content__thumbnail {
  position: relative;
  width: 560px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.article-content__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-content__thumbnail-credit {
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 12px;
  color: var(--color-white);
  text-shadow: 1px 1px 2px var(--color-gray5);
}
.article-content__body {
  padding-inline: 64px;
  margin-top: 48px;
}
.article-content__body:has(.article-content__lead) {
  margin-top: 0;
}
.article-content__lead {
  padding: 16px 32px;
  margin-bottom: 64px;
  font-size: 13px;
  line-height: 21px;
  color: var(--color-gray5);
  letter-spacing: 0.01em;
  background: var(--color-pale-blue);
}
.article-content__lead p {
  margin-top: 0;
}
.article-content__text .article-content__lead {
  width: calc(100% + 64px);
  margin-right: -32px;
  margin-left: -32px;
}
.article-content__text {
  padding-inline: 32px;
  font-size: 16px;
  line-height: 28px;
}
.article-content__text h2 {
  margin-top: 48px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.article-content__text h2 + p {
  margin-top: 20px;
}
.article-content__text h2:first-child {
  margin-top: 0;
}
.article-content__text h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}
.article-content__text h3 + p {
  margin-top: 12px;
}
.article-content__text h4 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 300;
}
.article-content__text h4::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-text-black);
}
.article-content__text h4 + p {
  margin-top: 8px;
}
.article-content__text > p {
  margin-top: 16px;
  text-indent: 1em;
  letter-spacing: 0.01em;
}
.article-content__text > p.note {
  padding-left: 1em;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-9);
  text-indent: -1em;
}
.article-content__text > p.note + p:not(.note) {
  margin-top: 32px;
}
.article-content__text > p.noindent {
  text-indent: 0;
}
.article-content__text > p.mt0 {
  margin-top: 0;
}
.article-content__text > p + h3,
.article-content__text > a + h3 {
  margin-top: 32px;
}
.article-content__text > p + h4,
.article-content__text > a + h4 {
  margin-top: 16px;
}
.article-content__text > p + .splide,
.article-content__text > a + .splide {
  margin-top: 32px;
}
.article-content__text span.sup {
  font-size: 10px;
  line-height: 10px;
  vertical-align: super;
}
.article-content__text span.italic {
  font-style: italic;
}
.article-content__image {
  margin-top: 32px;
  margin-bottom: 32px;
}
.article-content__image-container {
  position: relative;
  width: 100%;
}
.article-content__image-container--original {
  margin-inline: auto;
}
.article-content__image-container--large {
  aspect-ratio: 4/3;
}
.article-content__image-container--square {
  max-width: 320px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
.article-content__image-container--flier {
  max-width: 280px;
  margin-inline: auto;
}
.article-content__image-container--HD {
  aspect-ratio: 16/9;
}
.article-content__image-container--medium_large {
  max-width: 480px;
  margin-inline: auto;
}
.article-content__image-container--medium {
  max-width: 300px;
  aspect-ratio: 3/2;
  margin-inline: auto;
}
.article-content__image-container--thumbnail {
  max-width: 150px;
  margin-inline: auto;
}
.article-content__image-container--mini {
  max-width: 150px;
  aspect-ratio: 3/2;
  margin-inline: auto;
}
.article-content__image-container--comment {
  width: 180px;
}
.article-content__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .article-content__image-container--comment {
    width: 144px;
  }
}
.article-content__image-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  font-size: 12px;
  color: var(--color-white);
  text-shadow: 1px 1px 2px var(--color-gray5);
}
.article-content__image-caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
}
.article-content__image-caption > p {
  padding: 0;
  margin-top: 0;
  text-align: center;
  text-indent: 0;
}
.article-content__link {
  position: relative;
  z-index: 0;
  margin-inline: 2px;
  color: var(--color-gray5);
  border-bottom: 2px dashed var(--color-gray-c);
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
}
@media (hover: hover) {
  .article-content__link:hover {
    border-bottom: 2px dashed var(--color-theme-pink);
  }
}
.article-content__link--disabled {
  cursor: pointer;
  border-bottom: 2px dashed var(--color-gray-e8);
  -webkit-transition: border-color 0s;
  transition: border-color 0s;
}
@media (hover: hover) {
  .article-content__link--disabled:hover {
    border-bottom: 2px dashed var(--color-gray-c);
  }
  .article-content__link--disabled:hover::after {
    position: absolute;
    top: 2em;
    left: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 24px;
    padding-inline: 16px;
    font-size: 12px;
    line-height: 12px;
    color: var(--color-white);
    text-indent: 0;
    white-space: nowrap;
    content: "まだ記事がありません";
    background: var(--color-gray-9);
    border-radius: 2px;
  }
}
.article-content__outbound-link {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  margin-right: 24px;
  color: var(--color-gray-blue);
  line-break: anywhere;
}
.article-content__outbound-link::before {
  position: absolute;
  top: calc(50% - 7px);
  right: -20px;
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 40% 0, 40% 60%, 100% 60%, 100% 100%, 0 100%);
  content: "";
  border: 2px solid var(--color-gray-blue);
}
.article-content__outbound-link::after {
  position: absolute;
  top: calc(50% - 9px);
  right: -22px;
  width: 10px;
  height: 10px;
  clip-path: polygon(4px 0, 10px 0, 10px 6px, 8px 6px, 8px 3.41px, 1.41px 10px, 0 8.59px, 6.59px 2px, 4px 2px);
  content: "";
  background: var(--color-gray-blue);
}
@media (hover: hover) {
  .article-content__outbound-link:hover {
    text-decoration: underline;
    opacity: 0.85;
  }
}
.article-content__outbound-link--button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 48px;
  margin-top: 20px;
  margin-left: 12px;
  text-align: center;
  border: 2px solid var(--color-gray-blue);
}
.article-content__outbound-link--button::before {
  right: 16px;
}
.article-content__outbound-link--button::after {
  right: 14px;
}
@media screen and (max-width: 480px) {
  .article-content__outbound-link--button {
    min-width: 240px;
    padding: 8px 48px;
    margin-inline: auto;
    line-height: 20px;
  }
}
.article-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.article-content__list > li {
  position: relative;
  z-index: 0;
  padding-left: 10px;
  margin-bottom: 0;
}
.article-content__list > li::before {
  position: absolute;
  top: 11px;
  left: 0;
  z-index: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gray-blue);
  border-radius: 100%;
}
.article-content__list--horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.article-content__quote {
  position: relative;
  z-index: 0;
  padding: 16px;
  margin: 32px 16px;
  border-left: 5px solid var(--color-pale-pink);
  border-radius: 5px;
}
.article-content__quote::before {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: -1;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--color-theme-pink);
  -webkit-filter: drop-shadow(16px 0 0 var(--color-theme-pink));
          filter: drop-shadow(16px 0 0 var(--color-theme-pink));
  opacity: 0.2;
}
.article-content__quote::after {
  position: absolute;
  top: -5px;
  left: 8px;
  z-index: -1;
  display: block;
  width: 10px;
  height: 12px;
  content: "";
  -webkit-filter: drop-shadow(16px 0 0 var(--color-theme-pink));
          filter: drop-shadow(16px 0 0 var(--color-theme-pink));
  border-top: 4px solid var(--color-theme-pink);
  border-left: 4px solid var(--color-theme-pink);
  border-top-left-radius: 100vmax;
  opacity: 0.2;
}
.article-content__quote-text {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gray-9);
}
.article-content__quote-text > p {
  margin-top: 0;
  text-indent: 0;
  letter-spacing: 0.01em;
}
.article-content__quote-source {
  padding-top: 8px;
}
.article-content__quote-source a,
.article-content__quote-source p {
  margin-top: 0;
  font-size: 12px;
  line-height: 20px;
  text-align: right;
}
.article-content__quote-source a {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 18px;
  color: var(--color-gray-blue);
}
.article-content__quote-source a::before {
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 40% 0, 40% 60%, 100% 60%, 100% 100%, 0 100%);
  content: "";
  border: 2px solid var(--color-gray-blue);
}
.article-content__quote-source a::after {
  position: absolute;
  top: calc(50% - 8px);
  right: -2px;
  width: 9px;
  height: 9px;
  clip-path: polygon(4px 0, 9px 0, 9px 5px, 7px 5px, 7px 3.41px, 1.41px 9px, 0 7.59px, 5.59px 2px, 4px 2px);
  content: "";
  background: var(--color-gray-blue);
}
@media (hover: hover) {
  .article-content__quote-source a:hover {
    color: var(--color-gray-blue);
    text-decoration: underline;
    opacity: 0.85;
  }
}
@media screen and (max-width: 480px) {
  .article-content__quote {
    padding-inline: 8px;
    margin-inline: 0;
  }
}
.article-content__note-list {
  padding-left: 16px;
  margin-top: 16px;
}
.article-content__note-list > li.note {
  padding-left: 1em;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-9);
  text-indent: -0.5em;
}
.article-content__note-list > li.note::before {
  content: "*";
}
.article-content__note-list > li.note + li.note {
  margin-top: 8px;
}
.article-content__def-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  margin-top: 16px;
}
.article-content__def-list--horizontal {
  gap: 8px;
}
.article-content__def-list-item--horizontal dt,
.article-content__def-list-item--horizontal dd {
  display: inline-block;
}
.article-content__def-list-item dt {
  font-size: 14px;
}
.article-content__def-list-item dd {
  margin-left: 16px;
}
.article-content__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.article-content__comment-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-content__comment-image .article-content__image {
  margin-top: 0;
  margin-bottom: 0;
}
.article-content__comment-name {
  font-size: 13px;
}
.article-content__comment-text {
  padding: 8px;
  margin-top: 16px;
  border-top: 2px solid var(--color-theme-pink);
}
.article-content__comment-text > p {
  text-indent: 1em;
}

@media screen and (max-width: 480px) {
  .article-content__body {
    padding-inline: 0;
  }
  .article-content__lead {
    padding-inline: 16px;
    margin-bottom: 48px;
  }
  .article-content__text {
    padding-inline: 0;
  }
  .article-content__text > .article-content__lead {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .article-content__thumbnail {
    width: 100%;
  }
}/*# sourceMappingURL=contents.css.map */