:root {
  --white: #fff;
  --sunset-orange: #EB5252;
  --lavender: #7D4BF2;
  --yellow: #F9DF57;
  --tiffany-blue: #5290A5;
  --indigo: #09475C;
  --bg-main: #520F38;
  --bg-sub: #3b0b29;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Murecho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--white);
  background: var(--bg-main);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  display: flex;
  justify-content: center;
  background: var(--bg-sub);
}

.main {
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(#520f38, #d17875 50%, #b84053);
}

.header {
	padding: 8px 0px 0px;
}

.header__logo {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.slider {
  margin: 0px auto;
  position: relative;
  border-radius: 10px;
  overflow: visible;
  padding: 76px 20px 0;
  z-index: 1;
}

.slider::before {
  content: "";
  background: url(../img/baloon.png) no-repeat center center;
  background-size: contain;
  width: calc(100% - 36px);
  height: 80px;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.slider__main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: visible;
}

.slider__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomOut 3s ease-in-out infinite;
}

.slider__slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  text-decoration: none;
  color: inherit;
}

.slider__slide--active {
  opacity: 1;
}

.slider__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomOut 3s ease-in-out infinite;
}

.slider__slide--active .slider__slide-bg {
  animation: zoomIn 3.2s ease-in-out infinite;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.slider__overlay {
  position: absolute;
  bottom: calc(100vw / 3);
  left: 0px;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider__overlay--active {
  opacity: 1;
}

.slider__date {
  border-radius: 0px calc(infinity * 1px) calc(infinity * 1px) 0px;
  background: #FFF;
  padding: 0px 12px 0px 8px;
  font-size: 16px;
  font-weight: 700;
  color: #520F38;
  display: inline-block;
  margin-bottom: 4px;
  box-shadow: 0px 0px 4px 0px #FFF;
}

.slider__title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  padding: 4px 12px 6px 8px;
  border-radius: 0px calc(infinity * 1px) calc(infinity * 1px) 0px;
  background: #FFF;
  color: #520F38;
  margin-bottom: 8px;
  box-shadow: 0px 0px 4px 0px #FFF;
}

.slider__title--clicable::after {
  content: "";
  display: inline-block;
  background: url(../img/deco_carousel-text.svg) no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 23px;
  margin-left: 4px;
  vertical-align: middle;
}

.slider__date,
.slider__title {
  pointer-events: auto;
}

.slider__thumbnails {
  display: flex;
  gap: 12px;
  padding: 20px 0 0;
  justify-content: center;
}

.slider__thumbnail {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.event-closed {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.slider__thumbnail--active {
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.slider__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slider__thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 8px 4px;
  font-size: 12px;
  text-align: center;
}

.slider__thumbnail-date {
  font-weight: bold;
  line-height: 1.3;
}

.slider__thumbnail-title {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.3;
}

.time-table {
  padding: 20px 20px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.time-table__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.about {
  display: flex;
  flex-direction: column;
	padding: 40px 0px 20px;
  color: var(--white);
  position: relative;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 20px;
}

.about__title {
	color: #FFF;
  text-shadow: 3px 3px 0px #4A0D31;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.about__description {
  font-size: 16px;
  text-shadow: 2px 1px 0px #4A0D31;
}

.about__description span {
  font-weight: 700;
}

.about__schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.about__schedule-title {
  font-size: 16px;
  font-weight: 700;
  padding: 0 8px;
  background: #fff;
  color: #46849F;
  border-radius: calc(infinity * 1px);
}

.about__schedule-title:nth-of-type(2) {
  margin-top: 8px;
}

.about__img {
  width: 100%;
}

.section-title {
  text-align: center;
  text-shadow: 3px 3px 0px #4A0D31;
  font-size: 30px;
  font-weight: 700;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
	padding: 20px 20px;
}

.beers {
  position: relative;
  padding: 40px 0 20px;
}

.beers__title {
  position: relative;
}

.beers__title::before {
  content: "";
  display: inline-block;
  background: url(../img/deco_title1_left.svg) no-repeat center center;
  background-size: contain;
  width: 66px;
  height: 60px;
  position: absolute;
  left: -90px;
  top: 130%;
  transform: translateY(-130%);
}

.beers__title::after {
  content: "";
  display: inline-block;
  background: url(../img/deco_title1_right.svg) no-repeat center center;
  background-size: contain;
  width: 82px;
  height: 71px;
  position: absolute;
  right: -90px;
  top: 120%;
  transform: translateY(-120%);
}

.beer-list {
	display: flex;
  flex-direction: column;
  gap: 28px;
}

.beer {
	width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.beer__image {
	width: 41%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  text-align: center;
  line-height: 1.4;
  margin-left: 20px;
}

.beer__image--summer {
  position: relative;
}

.beer__image--summer::after {
  content: "";
  display: block;
  width: 70px;
  height: 68px;
  background: url(../img/summer-badge.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: 20%;
  left: -8px;
}

.beer__detail {
  width: 59%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  position: relative;
  margin-right: 20px;
}

.beer__name {
	font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.beer__feature {
  font-size: 12px;
  line-height: 1.4;
}

.beer__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.beer__tag {
  padding: 2px 4px 2px;
  color: var(--white);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.02em;
}

.beer__tag--summer-beers {
  background-color: #DB8756;
}

.beer__tag--hyuganatsu {
  background-color: #88C552;
}

.beer__tag--yuzu {
  background-color: #D0726D;
}

.beer__tag--jazzberry{
  background-color: #F33565;
}

.beer__radar {
  width: 70%;
  margin: 4px auto 0;
}

.beer__more-beers {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.beer__special {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-top: 16px;
}

.beer__special::before,
.beer__special::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: '';
}

.beer__special::before {
  border-left: solid 1px var(--white);
  border-top: solid 1px var(--white);
  top: 0;
  left: 0;
}

.beer__special::after {
  border-right: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
  bottom: 0;
  right: 0;
}

.beer__special-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beer__special-balloon {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #2C3F46;
  background: #FFE66A;
  border-radius: 4px;
  padding: 4px 8px 2px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.beer__special-balloon::before {
  content: "";
  display: inline-block;
  background: url(../img/deco_balloon.svg) no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 13px;
}

.beer__special-balloon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 6px solid var(--white);
  border-bottom: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.beer__special-description {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.beer__special-description span {
  color: var(--white);
}

.foods {
  position: relative;
  padding-bottom: 220px;
}

.food-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 0 0 16px;
}

.food-list.drink{
  padding: 0 20px;
}

.food__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.food__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 16px 0px #934558);
}

.food__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #934558;
  paint-order: stroke;
  position: relative;
  z-index: 2;
}

.food__title-small {
  font-size: 10px;
}

.food__more-foods {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.food__note {
  text-align: center;
  font-size: 10px;
  margin-top: -16px;
}

.tokuten{
  background: #3C3C3C;
  position: relative;
  padding: 40px 20px;
  color: var(--white);
  margin-bottom: 120px;
}

.tokuten::before {
  display: block;
  content: "";
  background: url(../img/deco_tokuten-section_top.svg) no-repeat center center;
  background-size: cover;
  width: 100%;
  aspect-ratio: 375 / 144;
  position: absolute;
  top: -13.2%;
  left: 0;
}

.tokuten__title {
  font-size: 28px;
  line-height: 1.3;
  position: relative;
}

.tokuten__title::before {
  content: "";
  display: inline-block;
  background: url(../img/deco_title2_left.svg) no-repeat center center;
  background-size: contain;
  width: 72px;
  height: 95px;
  position: absolute;
  left: -88px;
  top: 20%;
  transform: translateY(-20%);
}

.tokuten__title::after {
  content: "";
  display: inline-block;
  background: url(../img/deco_title2_right.svg) no-repeat center center;
  background-size: contain;
  width: 71px;
  height: 89px;
  position: absolute;
  right: -88px;
  top: 20%;
  transform: translateY(-20%);
}

.tokuten__addition{
  width: 100%;
  border-bottom: 1px dashed var(--white);
  padding: 16px 12px;
  text-align: center;
}

.tokuten__addition.asobi{
  border-bottom: none;
}

.tokuten__addition .ticket__description{
  text-align: center;
}

.tokuten-sub{
  margin-top: 16px;
}


.ticket {
  background: #785FA1;
  position: relative;
  padding: 40px 20px;
  color: var(--white);
}

.ticket::before {
  display: block;
  content: "";
  background: url(../img/deco_ticket-section_top.svg) no-repeat center center;
  background-size: cover;
  width: 40%;
  aspect-ratio: 63 / 31;
  position: absolute;
  top: -10.5%;
  right: 0;
}

.ticket__title {
  font-size: 28px;
  text-shadow: 3px 3px 0px #CE5F5F;
  line-height: 1.3;
  position: relative;
}

.ticket__small-title {
  font-size: 18px;
}

.ticket__title::before {
  content: "";
  display: inline-block;
  background: url(../img/deco_title3_left.svg) no-repeat center center;
  background-size: contain;
  width: 72px;
  height: 95px;
  position: absolute;
  left: -88px;
  top: 20%;
  transform: translateY(-20%);
}

.ticket__title::after {
  content: "";
  display: inline-block;
  background: url(../img/deco_title3_right.svg) no-repeat center center;
  background-size: contain;
  width: 75px;
  height: 89px;
  position: absolute;
  right: -88px;
  top: 20%;
  transform: translateY(-20%);
}

.section-sub-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--yellow);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}

.ticket__prices {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.4;
}

.ticket__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 4px);
  text-align: center;
  padding: 32px 0px 40px;
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--white);
}

.ticket--preorder {
  background: #C86469;
  text-shadow: 2px 2px 0px #9E4A4F;
}

.ticket--same-day {
  background-color: none;
  text-shadow: 2px 2px 0px #413258;
}

.ticket__price {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ticket__amount {
  font-size: 28px;
  font-weight: bold;
}

.ticket__tax {
  font-size: 12px;
}

.ticket__discount {
  width: 80px;
  background-color: var(--white);
  color: #C86469;
  padding: 4px 4px 2px;
  border-radius: 4px;
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: none;
}

.ticket__discount span {
  position: relative;
}

.ticket__discount span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 6px solid var(--white);
  border-bottom: 0;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.ticket__addition {
  width: 100%;
  border-top: 1px dashed var(--white);
  border-bottom: 1px dashed var(--white);
  padding: 16px 12px;
  text-align: center;
}

.ticket__description span {
  font-weight: 700;
  font-size: 16px;
}

.ticket__description {
  color: var(--white);
}

.ticket-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.button--purchase {
  display: inline-block;
  background: #C86469;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  color: var(--white);
  padding: 16px 24px;
  font-size: 24px;
  width: 100%;
  border-radius: 100vmax;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.button--purchase::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/btn-arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.ticket-note {
  font-size: 12px;
  color: var(--white);
}

.access {
  position: relative;
  padding: 48px 20px 20px;
}

.access__title::before {
  display: block;
  content: "";
  background: url(../img/deco_title1_right.svg) no-repeat center center;
  background-size: contain;
  width: 89px;
  height: 76px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.acsess__sub-title {
  font-size: 14px;
  line-height: 1.4;
  margin-top: -8px;
}

.access__details {
	font-size: 12px;
}

.faq {
  position: relative;
}

.faq__title {
  position: relative;
  z-index: 1;
  width: 100%;
}

.faq__title::before {
  content: "";
  display: inline-block;
  background: url(../img/deco_qa.svg) no-repeat center center;
  background-size: contain;
  width: 98px;
  height: 120px;
  position: absolute;
  left: -20px;
  top: -40px;
  z-index: -1;
}

.faq__accodion {
  padding: 8px 0 0;
}

.faq__sub-title {
  font-size:  16px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #96BAC5;
}

.faq__sub-title:nth-of-type(1) {
  margin-top: 0;
}

.faq__item {
  border-bottom: 1px solid #96BAC5;
  padding: 12px 0;
}

.faq__question {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}

.faq__question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-out;
  background: url(../img/circle-down.svg) no-repeat center center;
  width: 28px;
  height: 28px;
}

.faq__item.active .faq__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-size: 12px;
}

.faq__item.active .faq__answer {
  max-height: auto;
  padding: 0;
  margin-top: 4px;
}

.faq__link {
  color: var(--white);
  text-decoration: underline;
}

.footer {
  padding: 20px 0 120px;
  font-size: 12px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__event-title {
  margin-bottom: 4px;
  text-align: center;
}


.footer__events-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer__line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.footer__logo {
  max-width: 160px;
}

.footer__copyright {
  margin-top: 10px;
  font-size: 0.8em;
}

.present {
  pointer-events: none;
  opacity: 60%;
}

.left-block,
.right-block {
  display: none;
}

/* フローティングアクションパネル */
.floating-panel {
  position: fixed;
  bottom: 12px;
  right: -300px; /* 初期状態では画面外 */
  border-radius: 24px;
  padding: 8px 8px;
  background: #F38889;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: right 0.6s ease;
  z-index: calc(infinity);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.floating-panel.show {
  right: 0; /* 表示状態 */
  left: 0;
  margin: auto;
}

.floating-panel__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #45191A;
  padding: 2px 16px 4px 16px;
  border-radius: calc(infinity * 1px);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.floating-panel__btn::before {
  display: inline-block;
  content: "";
  background: url(../img/deco_cv-btn_left.svg) no-repeat center center;
  background-size: contain;
  width: 23px;
  height: 28px;
}

.floating-panel__btn::after {
  display: inline-block;
  content: "";
  background: url(../img/deco_cv-btn_right.svg) no-repeat center center;
  background-size: contain;
  width: 23px;
  height: 28px;
}

/* 要素フェイドイン用 */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (min-width: 640px) {
  .main {
    max-width: 424px;
    margin: 0 auto;
  }

  .slider__overlay {
    position: absolute;
    bottom: 27%;
    left: 0px;
  }

  .left-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 0px 40px 40px;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    background: var(--bg-sub);
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    border-left: 1px solid var(--white);
    border-radius: 8px 0 0 8px;
  }

  .menu__anchor {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px dashed var(--white);
    border-bottom: 1px dashed var(--white);
  }

  .menu__anchor li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px 0px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
  }

  .menu__anchor li::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid var(--black);
    border-right: 0;
  }

  .float-btn {
    right: 32px;
    bottom: 32px;
    margin: 0;
    width: 120px;
    height: 120px;
    font-size: 20px;
  }

  .right-block {
    display: none;
  }

  .button--ticket {
    left: auto;
    right: auto;
    top: 0;
    margin: 12px 0 0 334px;
  }
}

@media screen and (min-width: 1080px) {
  .right-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 40px 40px 40px 0;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    background: var(--bg-sub);
  }

  .right-block__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-radius: 0 8px 8px 0;
  }

  .right-block__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 8px;
    border: 1px dashed var(--white);
    padding: 20px 20px 16px;
  }

  .note {
    text-align: right;
    margin-bottom: auto;
    font-size: 16px;
    line-height: 1.3;
  }
}