@charset "UTF-8";

/**======================================
	about
======================================**/

#about_contents {
  background: #fff;
}

#contents_wrap #about_contents .area > .box {
  margin-bottom: 72px;
}

#contents_wrap #about_contents .area > .box:last-child {
  margin-bottom: 0;
}

.about_section_head {
  margin-bottom: 34px;
}

.about_section_kicker,
.about_kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about_section_kicker::before,
.about_kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent-color);
}

.about_section_title {
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about_intro_visual {
  margin-bottom: 52px !important;
}

.about_hero_visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid #dedbd4;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 238, 160, 0.95),
      rgba(255, 238, 160, 0) 10%
    ),
    radial-gradient(
      circle at 34% 22%,
      rgba(255, 165, 133, 0.9),
      rgba(255, 165, 133, 0) 11%
    ),
    radial-gradient(
      circle at 68% 24%,
      rgba(250, 240, 195, 0.92),
      rgba(250, 240, 195, 0) 11%
    ),
    radial-gradient(
      circle at 78% 28%,
      rgba(108, 80, 227, 0.75),
      rgba(108, 80, 227, 0) 14%
    ),
    linear-gradient(
      180deg,
      rgba(48, 40, 72, 0.6) 0%,
      rgba(32, 18, 28, 0.4) 30%,
      rgba(20, 16, 18, 0.84) 100%
    ),
    linear-gradient(120deg, #41302c 0%, #261d20 45%, #151213 100%);
}

.about_hero_visual.has-image {
  min-height: 0;
  background: none;
}

.about_hero_visual.has-image::before {
  display: none;
}

.about_hero_visual_image {
  display: block;
  width: 100%;
  height: auto;
}

.about_hero_visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.34),
      rgba(7, 7, 7, 0) 35%,
      rgba(7, 7, 7, 0.22) 100%
    );
}

.about_hero_glow {
  position: absolute;
  top: 78px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
}

.about_hero_glow-left {
  left: 30%;
  background: rgba(255, 194, 115, 0.52);
}

.about_hero_glow-center {
  left: 46%;
  background: rgba(255, 253, 189, 0.64);
}

.about_hero_glow-right {
  left: 62%;
  background: rgba(103, 132, 255, 0.38);
}

.about_hero_shadow {
  position: absolute;
  right: 0;
  bottom: -12%;
  left: 0;
  height: 54%;
  background:
    radial-gradient(
      circle at 18% 88%,
      rgba(0, 0, 0, 0.66),
      rgba(0, 0, 0, 0) 30%
    ),
    radial-gradient(
      circle at 34% 90%,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0) 26%
    ),
    radial-gradient(
      circle at 56% 94%,
      rgba(0, 0, 0, 0.74),
      rgba(0, 0, 0, 0) 24%
    ),
    radial-gradient(
      circle at 78% 90%,
      rgba(0, 0, 0, 0.64),
      rgba(0, 0, 0, 0) 24%
    );
}

.about_intro_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  gap: 44px;
  align-items: start;
  justify-content: space-between;
}

.about_intro_copy,
.about_stats {
  width: 100%;
  max-width: 600px;
}

.about_lead {
  margin-bottom: 26px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #2f2f2f;
}

.about_description,
.about_description p {
  margin-bottom: 0.9em;
  font-size: 1.5rem;
  line-height: 2.15;
}

.about_description p:last-child {
  margin-bottom: 0;
}

.about_stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d9d5cd;
  background: #d9d5cd;
}

.about_stat {
  padding: 26px 24px 22px;
  background: #fff;
}

.about_stat_value {
  margin-bottom: 6px;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
}

.about_stat-stage .about_stat_value {
  white-space: nowrap;
}

.about_stat_unit {
  display: inline-block;
  margin-left: 0.02em;
  margin-right: -0.08em;
  font-family: 'Roboto Condensed', 'Noto Sans JP', sans-serif;
  font-size: 0.86em;
  font-weight: 700;
  line-height: 1;
  transform: scaleX(0.82);
  transform-origin: left bottom;
}

.about_stat_label {
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about_floor_tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #d9d5cd;
}

.about_floor_tab {
  position: relative;
  margin-bottom: -1px;
  padding: 0 24px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #a39a8c;
  text-transform: uppercase;
  cursor: pointer;
}

.about_floor_tab:hover,
.about_floor_tab:focus-visible,
.about_floor_tab.is-active {
  color: #2f2f2f;
  border-bottom-color: #292521;
}

.about_floor_tab:focus-visible {
  outline: none;
}

/* タブ切り替え機能を使う場合は有効化すること
.about_floor_panels {
  padding-top: 38px;
}
*/

.about_floor_panel {
  display: none;
}

.about_floor_panel.is-active {
  display: block;
}

.about_floor_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 52px;
  align-items: start;
}

.about_floor_map_wrap {
  position: relative;
}

.about_floor_map_button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-decoration: none;
  background: transparent;
  cursor: zoom-in;
}

.about_floor_map {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid #eee;
}

.about_floor_map-lounge {
  width: min(100%, 460px);
}

.about_floor_map_zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.78);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.about_floor_map_button:hover .about_floor_map_zoom,
.about_floor_map_button:focus-visible .about_floor_map_zoom {
  background: rgba(18, 18, 18, 0.92);
}

.about_floor_map_button:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.about_floor_capacity {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d5cd;
}

.about_floor_capacity_value {
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
}

.about_floor_capacity_label {
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about_floor_specs li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid #ddd;
  font-size: 1.35rem;
  line-height: 1.8;
}

.about_floor_specs li:first-child {
  border-top: 1px solid #ddd;
}

.about_floor_specs li::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a2723;
}

.about_gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 40px;
}

.about_gallery-main-floor {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
}

.about_gallery-main-floor .about_gallery_card {
  min-height: 0;
  aspect-ratio: 5 / 2;
}

.about_floor_documents {
  margin-top: 36px;
}

.about_floor_documents_title {
  margin-bottom: 14px;
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about_floor_documents_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

a.button.about_floor_document_link {
  min-width: 220px;
  margin: 0;
  background: #fff;
  background-image: linear-gradient(#2f2f2f, #2f2f2f);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a.button.about_floor_document_link::before {
  display: none;
}

a.button.about_floor_document_link:hover,
a.button.about_floor_document_link:active {
  background-size: 100% 100%;
}

.about_floor_document_link span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-size: 1.2rem !important;
  line-height: 1.4;
}

.about_floor_document_link .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about_floor_document_link .icon::before {
  font-size: 1.5rem;
}

.about_gallery_card {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #8e5e3e 0%, #322325 50%, #17181e 100%);
}

.about_gallery_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    transform 0.5s ease,
    opacity 0.35s ease;
}

.about_gallery_card-main-floor-stage,
.about_gallery_card-lounge-floor-main {
  grid-row: 1 / 3;
}

.about_gallery_card-main-floor-stage::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card-main-floor-bar::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card-main-floor-entrance::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card-lounge-floor-main::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card-lounge-floor-bar::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card-lounge-floor-entrance::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    var(--about-gallery-image);
}

.about_gallery_card:hover::before,
.about_gallery_card:focus-visible::before {
  transform: scale(1.06);
}

.about_gallery_card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.about_gallery_zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.about_gallery_zoom .icon::before {
  font-size: 1.3rem;
  color: #fff;
}

.about_equipment_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d9d5cd;
  background: #d9d5cd;
}

.about_equipment_card {
  padding: 36px 34px 30px;
  background: #fff;
}

.about_equipment_head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ddd;
}

.about_equipment_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
}

.about_equipment_icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.about_equipment_title {
  margin-bottom: 8px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #2f2f2f;
}

.about_equipment_subtitle {
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about_equipment_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
}

.about_equipment_row dt,
.about_equipment_row dd {
  margin: 0;
}

.about_equipment_row dt {
  font-size: 1.35rem;
  line-height: 1.75;
}

.about_equipment_row dd {
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #999;
  letter-spacing: 0.04em;
}

.about_equipment_note {
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #999;
}

.glightbox-container .gslide-inner-content {
  width: auto;
}

.glightbox-container .gslide {
  padding: 0;
}

.glightbox-container .ginner-container {
  overflow: hidden;
}

.glightbox-clean .gslide-media {
  box-shadow: none;
}

.glightbox-clean .gslide-description {
  background: #fff;
  flex: 0 0 auto;
}

.gslide.is-about-map-slide .gslide-description {
  display: none;
}

.glightbox-clean .gslide-title {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2f2f2f;
}

.glightbox-clean .gslide-desc {
  font-size: 1.35rem;
  line-height: 1.9;
  color: #665f56;
}

@media (min-width: 769px) {
  .glightbox-container .gslide-inner-content {
    width: fit-content;
    max-width: 80vw;
    max-height: 80vh;
    margin: auto;
  }

  .glightbox-container .ginner-container.desc-bottom {
    width: fit-content;
    max-width: 80vw;
    max-height: 80vh;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .glightbox-clean .gslide-media {
    width: fit-content;
    max-width: 80vw;
    max-height: calc(80vh - 160px);
    margin: 0 auto;
    flex: 1 1 auto;
  }

  .glightbox-clean .gslide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 80vw;
  }

  .glightbox-clean .gslide-image img {
    width: auto;
    max-width: 80vw;
    max-height: calc(80vh - 160px);
    object-fit: contain;
    margin: 0 auto;
  }

  .glightbox-clean .gslide-description.description-bottom {
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
  }

  .gslide.is-about-map-slide .gslide-inner-content,
  .gslide.is-about-map-slide .ginner-container.desc-bottom,
  .gslide.is-about-map-slide .gslide-media,
  .gslide.is-about-map-slide .gslide-image,
  .gslide.is-about-map-slide .gslide-image img {
    max-width: 90vw;
  }

  .gslide.is-about-map-slide .gslide-inner-content,
  .gslide.is-about-map-slide .ginner-container.desc-bottom {
    max-height: 90vh;
  }

  .gslide.is-about-map-slide .gslide-media,
  .gslide.is-about-map-slide .gslide-image img {
    max-height: 90vh;
  }
}

@media screen and (max-width: 1024px) {
  .about_section_title {
    font-size: 5.6rem;
  }

  .about_intro_grid,
  .about_floor_layout {
    gap: 36px;
  }

  .glightbox-clean .gslide-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #contents_wrap #about_contents .area > .box {
    margin-bottom: 56px;
  }

  .about_section_head {
    margin-bottom: 30px;
  }

  .about_section_kicker {
    margin-bottom: 12px;
  }

  .about_section_title {
    font-size: 4.2rem;
  }

  .about_intro_visual {
    margin-bottom: 36px !important;
  }

  .about_hero_visual {
    width: calc(100% + 10%);
    min-height: 280px;
    margin-left: -5%;
    margin-right: -5%;
    border-left: 0;
    border-right: 0;
  }

  .about_intro_grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about_lead {
    font-size: 2.3rem;
    line-height: 1.7;
  }

  .about_description,
  .about_description p {
    font-size: 1.35rem;
    line-height: 2;
  }

  .about_stat {
    padding: 20px 18px 18px;
  }

  .about_stat_value {
    font-size: 3.2rem;
  }

  .about_stat_label {
    font-size: 1.05rem;
  }

  .about_floor_tabs {
    overflow-x: auto;
    white-space: nowrap;
  }

  .about_floor_tab {
    flex: 0 0 auto;
  }

  .about_floor_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* タブ切り替え機能を使う場合はpadding-top:24pxを追加する必要あり */
  .about_floor_map_wrap {
    width: calc(100% + 10%);
    margin-left: -5%;
    margin-right: -5%;
    padding: 0 16px 24px;
    border-left: 0;
    border-right: 0;
  }

  .about_floor_map_zoom {
    right: 16px;
    bottom: 16px;
  }

  .about_floor_capacity_value {
    font-size: 5.6rem;
  }

  .about_floor_documents {
    margin-top: 28px;
  }

  .about_floor_documents_links {
    flex-direction: column;
  }

  .about_floor_document_link {
    width: 100%;
  }

  .about_gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 8px;
    margin-top: 32px;
  }

  .about_gallery_card {
    min-height: 160px;
  }

  .about_gallery_card-main-floor-stage,
  .about_gallery_card-lounge-floor-main {
    grid-row: auto;
  }

  .about_equipment_grid {
    grid-template-columns: 1fr;
  }

  .about_equipment_card {
    padding: 30px 22px 26px;
  }

  .about_equipment_head {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .about_equipment_icon {
    width: 36px;
    height: 36px;
  }

  .about_equipment_icon svg {
    width: 28px;
    height: 28px;
  }

  .about_equipment_title {
    margin-bottom: 6px;
    font-size: 2.5rem;
  }

  .about_equipment_subtitle {
    font-size: 1rem;
  }

  .glightbox-container .gslide-inner-content {
    width: fit-content;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
  }

  .glightbox-container .ginner-container.desc-bottom {
    width: fit-content;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .glightbox-clean .gslide-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 90vw;
    max-height: calc(90vh - 220px);
    margin: 0 auto;
  }

  .glightbox-clean .gslide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 90vw;
  }

  .glightbox-clean .gslide-image img {
    width: auto;
    height: auto !important;
    max-width: 90vw;
    max-height: calc(90vh - 220px);
    object-fit: contain;
    margin: 0 auto;
  }

  .glightbox-mobile .glightbox-container .gslide-description {
    position: static;
    bottom: auto;
    width: 100%;
    max-width: 90vw !important;
    max-height: none;
    overflow: visible !important;
    padding: 18px 16px 20px;
    background: #fff;
  }

  .glightbox-mobile .glightbox-container .gdesc-inner {
    max-height: none;
    overflow: visible;
  }

  .glightbox-mobile .glightbox-container .gslide-title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #2f2f2f;
  }

  .glightbox-mobile .glightbox-container .gslide-desc,
  .glightbox-mobile .glightbox-container .gslide-desc *,
  .glightbox-mobile .glightbox-container .gslide-desc a,
  .glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: #665f56;
    opacity: 1;
  }

  .gslide.is-about-map-slide .gslide-inner-content,
  .gslide.is-about-map-slide .ginner-container.desc-bottom,
  .gslide.is-about-map-slide .gslide-media,
  .gslide.is-about-map-slide .gslide-image,
  .gslide.is-about-map-slide .gslide-image img {
    max-width: 90vw;
  }

  .gslide.is-about-map-slide .gslide-inner-content,
  .gslide.is-about-map-slide .ginner-container.desc-bottom,
  .gslide.is-about-map-slide .gslide-media,
  .gslide.is-about-map-slide .gslide-image img {
    max-height: 90vh;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .about_section_title {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 480px) {
  .about_stats {
    grid-template-columns: 1fr 1fr;
  }

  .about_stat-stage {
    padding-right: 12px;
    padding-left: 12px;
  }

  .about_stat-stage .about_stat_value {
    font-size: 2.7rem;
  }

  .about_section_title {
    font-size: 3.8rem;
  }

  .about_floor_tab {
    padding-bottom: 12px;
    font-size: 1.1rem;
  }

  .about_equipment_row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
