@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 80px;
}
html.is-modal-open {
  overflow: hidden;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: hsl(189, 33%, 88%);
}
body.is-modal-open {
  overflow: hidden;
}
@media (min-width: 480px) {
  body::before, body::after {
    position: fixed;
    z-index: 0;
    content: "";
  }
  body::before {
    bottom: 154px;
    left: min(4%, 48px);
    width: min((100% - 400px) * 35 / 100, 238px);
    height: 177px;
    background: url(../img/common/logo_full.png) no-repeat center bottom/contain;
  }
  body::after {
    bottom: 38px;
    left: 0;
    width: 100%;
    height: 96px;
    background: url(../img/common/bg_ribbon-human.png) repeat-x left center/contain;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}

.wrapper {
  position: relative;
  z-index: 10;
  min-height: 100dvh;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 0px 50px 0px hsla(0, 0%, 0%, 0.25);
}
@media (min-width: 480px) {
  .wrapper {
    max-width: 400px;
  }
}

.notice-area {
  padding: 20px 20px 10px;
  background-color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: #fff;
  z-index: 100;
}
@media (min-width: 480px) {
  .site-header {
    max-width: 400px;
  }
}

.header__ribbon {
  width: 24px;
  margin-right: 10px;
}

.site-logo {
  display: block;
  width: 244px;
  margin-right: auto;
  filter: brightness(0) saturate(100%) invert(10%) sepia(96%) saturate(7006%) hue-rotate(355deg) brightness(94%) contrast(95%);
}

.hamburger {
  position: relative;
  width: 35px;
  height: 35px;
  margin-left: 10px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: hsl(357, 90%, 48%);
  position: absolute;
  left: 8px;
  transform-origin: center center;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 27px;
}

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(357, 90%, 48%);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 480px) {
  .gnav {
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
  }
}
.gnav__header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.gnav__header .header__ribbon {
  filter: drop-shadow(0px 5px 5px hsla(357, 100%, 22%, 0.5));
}
.gnav__logo {
  display: block;
  text-decoration: none;
  filter: brightness(0) invert(1);
}
.gnav__close {
  width: 35px;
  height: 35px;
  margin-left: 10px;
  padding: 3px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.gnav__close span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 8px;
  transform-origin: center center;
}
.gnav__close span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.gnav__close span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}
.gnav__nav {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 95px - 80px);
  padding: 20px 20px 30px;
}
.gnav.is-open {
  opacity: 1;
  visibility: visible;
}
.gnav.is-open .gnav__item {
  opacity: 1;
  transform: translateY(0);
}
.gnav__list {
  list-style: none;
  text-align: center;
}
.gnav__item {
  background: linear-gradient(to right, hsl(356, 100%, 86%) 4px, transparent 4px) repeat-x right top/8px 1px;
}
.gnav__item:last-child {
  background: linear-gradient(to right, hsl(356, 100%, 86%) 4px, transparent 4px) repeat-x right top/8px 1px, linear-gradient(to right, hsl(356, 100%, 86%) 4px, transparent 4px) repeat-x right bottom/8px 1px;
}
.gnav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease;
}
.gnav__link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask: url(../img/common/icn_angle.svg) no-repeat right center;
          mask: url(../img/common/icn_angle.svg) no-repeat right center;
}
.gnav__link:hover {
  opacity: 0.7;
}
.gnav__link.is-disabled {
  color: hsla(0, 0%, 100%, 0.5);
  pointer-events: none;
}
.gnav__link.is-disabled::after {
  background-color: hsla(0, 0%, 100%, 0.5);
}

.banner {
  display: block;
  transition: opacity 0.2s ease;
}
.banner:hover {
  opacity: 0.7;
}
.banner.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button__wrapper {
  display: grid;
  gap: 10px;
}
.button {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  place-content: center;
  width: min(100%, 300px);
  height: 70px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  background-color: hsl(357, 90%, 48%);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  transition: opacity 0.2s ease;
}
.button::before, .button::after {
  content: "";
}
.button::after {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask: url(../img/common/icn_arrow.svg) no-repeat center;
          mask: url(../img/common/icn_arrow.svg) no-repeat center;
}
.button:hover {
  opacity: 0.7;
}
.button--ticket {
  background-color: hsl(0, 0%, 20%);
}
.button--line {
  background-color: hsl(116, 59%, 44%);
}
.button--support {
  background-color: hsl(238, 58%, 62%);
}
.button--reserve {
  background-color: #fff;
  color: hsl(357, 90%, 48%);
}
.button--reserve::after {
  background-color: hsl(357, 90%, 48%);
}
.button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.site-footer {
  display: block;
  background: hsl(216, 11%, 91%);
}

.footer__top {
  padding: 40px 20px;
}
.footer__top .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__top .logo {
  width: 166px;
}
.footer__top .gotop {
  display: block;
  width: 74px;
  height: 84px;
  background: url(../img/common/btn_gotop.png) no-repeat center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer__top .gotop:hover {
  background-image: url(../img/common/btn_gotop_hover.png);
}
.footer__gnav {
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer__gnav .gnav__item {
  background: linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right top/8px 1px;
}
.footer__gnav .gnav__item:last-child {
  background: linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right top/8px 1px, linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right bottom/8px 1px;
}
.footer__gnav .gnav__link {
  color: hsl(357, 90%, 48%);
}
.footer__gnav .gnav__link::after {
  background-color: hsl(357, 90%, 48%);
}
.footer__gnav .gnav__link.is-disabled {
  color: hsla(216, 16%, 58%, 0.5);
  pointer-events: none;
}
.footer__gnav .gnav__link.is-disabled::after {
  background-color: hsla(216, 16%, 58%, 0.5);
}
.footer__exlink {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 20px;
}
.footer__txtlink .txtlink__list {
  display: flex;
  gap: 15px;
}
.footer__txtlink .txtlink__link {
  color: hsl(357, 90%, 48%);
  font-weight: 500;
  text-underline-offset: 2px;
}
.footer__txtlink .txtlink__link:hover {
  text-decoration: none;
}
.footer__bottom {
  display: grid;
  gap: 10px;
  padding: 20px;
  background-color: hsl(212, 31%, 60%);
  color: hsl(0, 0%, 85%);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.footer__bottom .copy {
  font-weight: 700;
}

.red {
  color: hsl(357, 90%, 48%);
}

.bold {
  font-weight: 700;
}

.dotlist {
  display: grid;
  gap: 8px;
}
.dotlist li {
  padding-left: 1em;
  text-indent: -1em;
}
.dotlist li::before {
  content: "・";
}

.cast__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.eventinfo__list {
  display: grid;
  gap: 10px;
}
.eventinfo__label {
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  height: 25px;
  margin-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: hsl(357, 90%, 48%);
  border-radius: 4px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.eventinfo__label.char2 {
  letter-spacing: 1em;
  padding-left: calc(1em + 15px);
}
.eventinfo__detail {
  font-weight: 500;
}
.eventinfo__detail .small {
  font-size: 1.2rem;
}

.banner__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slider {
  position: relative;
}
.slider__slide {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slider__slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.slider__slide.is-active {
  opacity: 1;
}

.radialbox__wrapper {
  display: grid;
  gap: 10px;
}
.radialbox {
  padding: 20px 20px 50px;
  background-color: hsl(216, 11%, 91%);
  border-radius: 20px;
}
.radialbox__label {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: hsla(0, 0%, 0%, 0.5);
}
.radialbox__banner {
  width: 201px;
  margin: auto;
}
.radialbox__banner-wrapper {
  display: grid;
  gap: 20px;
}

.modal__background {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal__background.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 480px) {
  .modal__background {
    left: 50%;
    max-width: 400px;
    transform: translateX(-50%);
  }
}
.modal__content {
  position: relative;
  padding: 60px 20px 20px;
  background-color: hsl(357, 90%, 48%);
  border-radius: 20px;
  color: #fff;
}
.modal__content .modal-close {
  position: absolute;
  width: 32px;
  top: 10px;
  right: 11px;
}
.modal__content .eventinfo__list {
  gap: 20px;
}
.modal__content .eventinfo__label {
  background-color: #fff;
  color: hsl(357, 90%, 48%);
}
.modal__content .eventinfo__detail {
  font-weight: 700;
}
.modal__content .eventinfo__detail .small {
  font-size: 1.3rem;
  font-weight: 500;
}
.modal__inner {
  display: grid;
  gap: 20px;
  max-height: calc(100dvh - 40px - 60px - 20px);
  padding-bottom: 40px;
  overflow: auto;
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.index__event {
  padding: 30px 20px 50px;
  background: url(../img/common/bg_gradient.jpg) no-repeat center/cover;
}
.index__event .event__kv {
  margin-right: -20px;
  margin-bottom: 20px;
  margin-left: -20px;
}
.index__event .event__info {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}
.index__event .event__head {
  margin-bottom: 10px;
  padding: 5px 15px;
  background-color: hsl(357, 90%, 48%);
  border-radius: 4px;
  color: #fff;
  text-align: center;
}
.index__event .button--ticket {
  width: min(100%, 286px);
  margin-bottom: 20px;
  padding-left: 0;
  font-size: 1.6rem;
}
.index__event .eventinfo__detail ul {
  display: grid;
  gap: 8px;
}
.index__event .eventinfo__detail h3 {
  font-size: 1.6rem;
}
.index__event .eventinfo__detail p {
  font-size: 1.4rem;
  font-weight: 500;
}
.index__event .eventinfo__detail .caption {
  font-size: 1.4rem;
  color: hsl(357, 90%, 48%);
}
.index__faq {
  padding: 50px 20px 58px;
  background-color: hsl(216, 11%, 91%);
}
.index__faq .slider {
  width: min(100%, 300px);
  margin: 0 auto;
}
.index__faq .comingsoon {
  margin-top: 10px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: hsl(0, 0%, 46%);
}
.index__faq .button {
  margin-top: 20px;
}
.index__check {
  padding: 50px 20px 85px;
}
.index__check .check__kv {
  width: min(100%, 310px);
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.index__check .check__ttl {
  margin-bottom: 20px;
}
.index__check .check__desc {
  margin-bottom: 30px;
}
.index__check .check__linkbox {
  margin-top: 30px;
}

.event-page {
  padding: 30px 20px 60px;
  background: url(../img/common/bg_gradient.jpg) no-repeat center/cover;
}
.event-page .event__kv {
  margin-right: -20px;
  margin-bottom: 20px;
  margin-left: -20px;
}
.event-page .event__description {
  font-weight: 500;
}
.event-page .event__head {
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(357, 90%, 48%);
}
.event-page .cast__wrapper {
  gap: 10px 2px;
  margin-bottom: 20px;
}
.event-page .cast {
  width: min((100% - 4px) / 3, 120px);
}
.event-page .cast__name {
  margin-top: 2px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}
.event-page .banner__wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}
.event-page .eventinfo {
  margin-bottom: 40px;
}
.event-page .eventinfo__detail .map__wrapper {
  aspect-ratio: 360/255;
  margin-top: 10px;
}
.event-page .eventinfo__detail .map__iframe {
  width: 100%;
  height: 100%;
}
.event-page .eventinfo__detail .fin-box {
  padding: 40px 10px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: hsl(357, 90%, 48%);
}
.event-page .attention {
  margin-bottom: 40px;
  background: linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right top/8px 1px, linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right bottom/8px 1px;
}
.event-page .attention__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 10px;
  color: hsl(357, 90%, 48%);
  text-align: left;
}
.event-page .attention__button::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: hsl(357, 90%, 48%);
  -webkit-mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
          mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
  transform: rotate(90deg);
}
.event-page .attention__button.is-open::after {
  transform: rotate(-90deg);
}
.event-page .attention__title {
  font-size: 1.6rem;
  font-weight: 700;
}
.event-page .attention__list {
  padding-bottom: 20px;
}
.event-page .scrollbox {
  height: 200px;
  padding: 14px 20px;
  background-color: #fff;
  border: 1px solid hsl(0, 26%, 82%);
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.15) inset;
  overflow-y: scroll;
}
.event-page .scrollbox:focus {
  outline: none;
}
.event-page .scrollbox p {
  font-size: 1.4rem;
  font-weight: 500;
}
.event-page .privacy {
  margin-bottom: 20px;
}
.event-page .privacy .event__head {
  margin-bottom: 5px;
  font-weight: 700;
}
.event-page .privacy__lead {
  margin-bottom: 1em;
}
.event-page .privacy__section-title {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: 700;
}
.event-page .privacy__label {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: 500;
}
.event-page .txtlink {
  color: #000;
  text-decoration: none;
}
.event-page .txtlink:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.event-page .contact {
  margin-bottom: 40px;
}
.event-page .contact p {
  font-weight: 500;
}

.faq-page .faq__kv {
  padding: 50px;
  background-color: hsl(216, 11%, 91%);
}
.faq-page .faq__inner {
  padding: 20px 20px 100px;
}
.faq-page .faq__title, .faq-page .faq__lead {
  margin-bottom: 20px;
}
.faq-page .faq__group {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
  counter-reset: q-count;
}
.faq-page .faq__item {
  counter-increment: q-count;
  border: 1px solid;
  border-radius: 10px;
  overflow: hidden;
}
.faq-page .faq__item .question {
  position: relative;
  padding: 15px 25px 15px 75px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.faq-page .faq__item .question::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 75px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  content: "Q" counter(q-count);
}
.faq-page .faq__item .answer-area {
  position: relative;
  padding: 15px 20px 30px;
}
.faq-page .faq__item .answer-area::after {
  position: absolute;
  right: 5px;
  bottom: 7px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  -webkit-mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
          mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
  content: "";
}
.faq-page .faq__item .answer {
  position: relative;
  padding-left: 55px;
  font-weight: 700;
}
.faq-page .faq__item .answer::before {
  position: absolute;
  top: 0;
  left: -20px;
  width: 75px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  content: "A" counter(q-count);
}
.faq-page .faq__item .answer::after {
  position: absolute;
  top: -15px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 45px);
  cursor: pointer;
  content: "";
}
.faq-page .faq__item .exp {
  padding-top: 13px;
  font-weight: 500;
}
.faq-page .faq__item .exp h3 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.faq-page .faq__item .exp h3:not(:first-child) {
  margin-top: 10px;
}
.faq-page .faq__item .exp a {
  color: #000;
  text-underline-offset: 2px;
}
.faq-page .faq__item .exp a:hover {
  text-decoration: none;
}
.faq-page .faq__item .caption__wrapper {
  margin-top: 15px;
}
.faq-page .faq__item .caption {
  color: hsl(0, 0%, 39%);
  font-size: 1.3rem;
  font-weight: 400;
}
.faq-page .faq__item:nth-child(odd) {
  border-color: hsl(219, 26%, 73%);
}
.faq-page .faq__item:nth-child(odd) .question {
  background-color: hsl(219, 26%, 73%);
}
.faq-page .faq__item:nth-child(odd) .answer-area::after {
  background-color: hsl(219, 26%, 73%);
}
.faq-page .faq__item:nth-child(odd) .answer::before {
  color: hsl(219, 26%, 73%);
}
.faq-page .faq__item:nth-child(even) {
  border-color: hsl(114, 26%, 73%);
}
.faq-page .faq__item:nth-child(even) .question {
  background-color: hsl(114, 26%, 73%);
}
.faq-page .faq__item:nth-child(even) .answer-area::after {
  background-color: hsl(114, 26%, 73%);
}
.faq-page .faq__item:nth-child(even) .answer::before {
  color: hsl(114, 26%, 73%);
}
.faq-page .faq__item:has(.accordion__content.is-open) .answer-area::after,
.faq-page .faq__item:has(.accordion__content.is-open) .answer::after {
  content: none;
}
.faq-page .summary {
  margin-bottom: 50px;
  font-weight: 500;
}
.faq-page .summary .caption {
  margin-top: 15px;
  font-size: 1.2rem;
}
.faq-page .summary .dotlist {
  gap: 0;
}

.checkup-page {
  padding: 0 20px 100px;
}
.checkup-page .checkup__kv, .checkup-page .checkup__title {
  margin-bottom: 20px;
}
.checkup-page .checkup__lead {
  margin-bottom: 70px;
}
.checkup-page .checkup__wrapper {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
.checkup-page .checkup__description h2 {
  margin-bottom: 10px;
  color: hsl(357, 90%, 48%);
  font-size: 2rem;
  font-weight: 700;
}
.checkup-page .checkup__description p {
  font-weight: 500;
}
.checkup-page .checkup__description .caption {
  font-size: 1.2rem;
}
.checkup-page .checkup__description:nth-child(odd) {
  padding-left: 97px;
  background: url(../img/checkup/img_man.png) no-repeat left top/84px 153px;
}
.checkup-page .checkup__description:nth-child(even) {
  margin-right: -10px;
  padding-right: 107px;
  background: url(../img/checkup/img_woman.png) no-repeat right top/92px 154px;
}

.about-page {
  padding: 30px 20px 100px;
}
.about-page h1,
.about-page h2,
.about-page p,
.about-page li {
  font-weight: 500;
}
.about-page h1 {
  margin-bottom: 10px;
  color: hsl(357, 90%, 48%);
  font-size: 2rem;
}
.about-page h2 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.about-page .block {
  margin-top: 10px;
  margin-bottom: 10px;
}
.about-page .dotlist {
  gap: 0;
}
.about-page .textlink {
  color: #000;
  text-decoration: none;
}
.about-page .textlink:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-page .right {
  text-align: right;
}

.archive .header {
  padding: 50px 26px;
  background-color: hsl(357, 90%, 48%);
}
.archive .header .title::before {
  display: block;
  width: 258px;
  height: 18px;
  margin: 0 auto 15px;
  background-color: #fff;
  -webkit-mask: url(../img/common/logo.svg) no-repeat center/contain;
          mask: url(../img/common/logo.svg) no-repeat center/contain;
  content: "";
}
.archive .lead {
  margin-bottom: 20px;
}
.archive .pastevent__list {
  display: grid;
  gap: 30px;
  padding-bottom: 20px;
  margin-bottom: 58px;
}
.archive .pastevent__data .dates {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  padding: 5px 10px;
  background-color: hsl(357, 90%, 48%);
  border-radius: 4px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.archive .pastevent__data .image {
  margin-bottom: 15px;
}
.archive .pastevent__data .title {
  margin-bottom: 5px;
  color: hsl(357, 90%, 48%);
  font-size: 1.6rem;
  font-weight: 700;
}
.archive .pastevent__data .info,
.archive .pastevent__data .infolist {
  font-size: 1.4rem;
  font-weight: 500;
}
.archive .pastevent__data .infolist .label,
.archive .pastevent__data .infolist .name {
  display: inline;
}
.archive .pastevent__data .infolist .label::after {
  content: "：";
}
.archive .pastevent__data a {
  color: #000;
  text-underline-offset: 2px;
}
.archive .pastevent__data a:hover {
  text-decoration: none;
}
.archive__inner {
  padding: 30px 20px 100px;
}
.archive__item {
  background: linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right bottom/8px 1px;
}
.archive__item:first-child {
  background: linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right top/8px 1px, linear-gradient(to right, hsl(216, 16%, 58%) 4px, transparent 4px) repeat-x right bottom/8px 1px;
}
.archive__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 10px;
  color: hsl(357, 90%, 48%);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.archive__link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: hsl(357, 90%, 48%);
  -webkit-mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
          mask: url(../img/common/icn_angle.svg) no-repeat center/contain;
}
.archive__link:hover {
  opacity: 0.7;
}
.archive__link.is-current {
  color: hsl(216, 16%, 58%);
  pointer-events: none;
}
.archive__link.is-current::after {
  background-color: hsl(216, 16%, 58%);
}

.redribbon {
  padding: 30px 20px 100px;
}
.redribbon h1,
.redribbon p {
  font-weight: 500;
}
.redribbon h1 {
  margin-bottom: 10px;
  color: hsl(357, 90%, 48%);
  font-size: 2rem;
}
.redribbon p:not(:first-child) {
  margin-top: 10px;
}
.redribbon .reference {
  margin-top: 15px;
  font-size: 1.2rem;
}
.redribbon .reference p {
  margin-top: 0;
}