@charset "UTF-8";

:root {
  --gutter: min(20px, calc(20 / 375 * 100%));
  --color-primary: #fffcda;
  --fontFamily-serif: "utsukushi", serif;
  --fontFamily-old-mincho: "Zen Old Mincho", serif;
  --width-inner: 830;
}

/* ==========================================
   Base: body reset
   ========================================== */
body {
  color: #000;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

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

table {
  table-layout: fixed;
}

table th,
table td {
  padding: 10px;
}

/* ==========================================
   Utility
   ========================================== */
.u-text-primary {
  color: var(--color-primary);
}

.u-font-default {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.u-hidden {
  display: none;
}

.u-mt-10 {
  margin-top: 10px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-45 {
  margin-top: 45px;
}

.px-gutter {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.pagetop {
  display: none;
  width: 56px;
  height: 74px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 4;
}

.is-sp {
  display: none;
}

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

/* ==========================================
   Base (default.css の要素セレクタから移動)
   ========================================== */
.enoshimatourou img {
  border: 0;
  vertical-align: bottom;
}

/* ==========================================
   Block: top-nav
   ========================================== */
.top-nav {
  padding-top: 30px;
  padding-bottom: 30px;
  opacity: 0.8;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: var(--fontFamily-serif);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 1024px) {
  .top-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-nav {
    display: none;
  }
}

.top-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 5px;
}

.top-nav__link {
  display: block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  white-space: nowrap;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .top-nav__link {
    font-size: 18px;
  }
}

.top-nav__link:hover {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

/* ==========================================
   Block: hamburger（SPハンバーガーボタン）
   ========================================== */
.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 200;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   Block: spmenu（SPメニュー）
   ========================================== */
.spmenu {
  display: none;
}

@media screen and (max-width: 768px) {
  .spmenu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 150;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .hamburger[aria-expanded="true"] ~ .spmenu {
    opacity: 1;
    visibility: visible;
  }

  .spmenu__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .spmenu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .spmenu__item {
    margin-bottom: 24px;
  }

  .spmenu__item:last-child {
    margin-bottom: 0;
  }

  .spmenu__link {
    color: #fff;
    font-size: 20px;
    font-family: var(--fontFamily-serif);
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .spmenu__link:hover {
    color: #fff;
    opacity: 0.7;
  }
}

.top-copyright {
  text-align: center;
  padding: 10px 0 15px;
  box-sizing: border-box;
  display: block;
}

.enoshimatourou {
  color: #fff;
  background-color: #000000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  background-image: linear-gradient(to bottom, #000000, #2d3162, #334673);
}

.enoshimatourou h2,
.enoshimatourou h3,
.enoshimatourou h4 {
  font-weight: normal;
}

@media (max-width: 768px) {
  .enoshimatourou {
    font-size: 14px;
  }
}

/* ==========================================
   Animation: js-effect
   ========================================== */
.js-effect {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition:
    opacity cubic-bezier(0, -0.26, 0, 0.98) 0.4s 0.4s,
    -webkit-transform 0.4s cubic-bezier(0, -0.16, 0, 0.98) 0.4s;
  transition:
    opacity cubic-bezier(0, -0.26, 0, 0.98) 0.4s 0.4s,
    -webkit-transform 0.4s cubic-bezier(0, -0.16, 0, 0.98) 0.4s;
  transition:
    transform 0.4s cubic-bezier(0, -0.16, 0, 0.98) 0.4s,
    opacity cubic-bezier(0, -0.26, 0, 0.98) 0.4s 0.4s;
  transition:
    transform 0.4s cubic-bezier(0, -0.16, 0, 0.98) 0.4s,
    opacity cubic-bezier(0, -0.26, 0, 0.98) 0.4s 0.4s,
    -webkit-transform 0.4s cubic-bezier(0, -0.16, 0, 0.98) 0.4s;
}

/* ==========================================
   Component: button-arrow
   ========================================== */
.button-arrow {
  display: block;
  color: var(--color-primary);
  padding: 15px 10px 15px 20px;
  border-style: solid;
  border-width: 1px;
  position: relative;
}
.button-arrow:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.button-arrow:after {
  content: "";
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  rotate: 45deg;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15px;
  transition: all 0.25s ease;
  color: inherit;
  text-decoration: none;
}

.button-arrow:hover:after {
  translate: 3px -50%;
}

.button-arrow--whiteBorder {
  color: #fff;
}

.button-arrow--whiteBorder:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.button-arrow--whiteBorder:hover {
  color: #fff;
  text-decoration: none;
}

/* ==========================================
   Component: heading-top
   ========================================== */
.heading-top__title {
  font-size: 45px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-primary);
  font-family: var(--fontFamily-old-mincho);
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.heading-top__subtitle {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  font-family: var(--fontFamily-serif);
}

.heading-top__catch {
  margin-top: 20px;
  text-align: center;
  font-family: var(--fontFamily-serif);
  font-size: 40px;
  line-height: 1.5;
}

.heading-top__catch-parts {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .heading-top__title {
    font-size: 32px;
  }
  .heading-top__subtitle {
    font-size: 5vw;
  }

  .heading-top__catch {
    font-size: 24px;
  }
}

/* ==========================================
   Component: slider
   ========================================== */
.slider-for .slick-slide img {
  width: 100%;
}

.slider-nav .slick-slide img {
  width: 100%;
  aspect-ratio: 370/247;
  object-fit: cover;
}

/* ==========================================
   Layout: top-wrap
   ========================================== */
.top-wrap {
  width: 100%;
  overflow: clip;
}

/* ==========================================
   Block: top-mv
   ========================================== */
.top-mv {
  position: relative;
  max-height: 900px;
  overflow: hidden;
  height: calc(100svh - 85px);
}
.top-mv__main {
  max-height: 900px;
  height: calc(100svh - 85px);
}

.top-mv__visual {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 900px;
  height: calc(100svh - 85px);
}

.top-mv__logo {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: calc(70 / 1226 * 100vw);
  font-size: 20px;
}

.top-mv__logo-img {
  max-width: 286px;
}
@media screen and (max-width: 768px) {
  .top-mv__logo-img {
    max-width: 150px;
  }
}

.top-mv__catch {
  position: absolute;
  left: calc(70 / 1226 * 100vw);
  top: 50%;
  translate: 0 -50%;
}

.top-mv__catch-img {
  max-width: 57px;
}

@media screen and (max-width: 768px) {
  .top-mv__catch-img {
    max-width: 30px;
  }
}

/* ==========================================
   Block: top-period
   ========================================== */
.top-period {
  padding-top: 30px;
  text-align: center;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 18px;
  line-height: 1.5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .top-period {
    padding-top: 0;
  }
}

.top-period__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.top-period__name {
  font-size: calc(32 / 18 * 100%);
}

@media screen and (max-width: 768px) {
  .top-period__name {
    font-size: 130%;
  }
}
.top-period__date {
  margin-top: 5px;
  font-size: calc(64 / 18 * 100%);
}
@media screen and (max-width: 768px) {
  .top-period__date {
    font-size: 200%;
  }
}

.top-period__time {
  font-size: 32px;
}

.top-period__note {
  font-size: 18px;
  margin-top: 20px;
}

/* ==========================================
   Block: top-about
   ========================================== */
.top-about {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .top-about {
    font-size: 14px;
  }
}

.top-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.top-about__place {
  color: #fffcda;
  margin-top: 20px;
}

.top-about__business {
  margin-top: 20px;
  color: #fffcda;
}

.top-about__button {
  margin-top: 50px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .top-about__button .button-arrow {
    text-align: left;
    padding: 15px 10% 15px 5%;
  }
}

.top-about__box {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

/* ==========================================
   Block: box-beige
   ========================================== */
.box-beige__box {
  padding: 30px 50px;
  background-color: #fffcda;
  color: #232584;
  filter: drop-shadow(0 0 6px #fffcda);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .box-beige__box {
    padding: 25px 15px;
  }
}

.box-beige__thumbnail {
  max-width: 358px;
  margin-left: auto;
  margin-right: auto;
}

.box-beige__thumbnail-img {
  width: 100%;
  height: auto;
}

.box-beige__heading {
  margin-top: 10px;
  font-size: 32px;
  font-family: var(--fontFamily-serif);
  line-height: 1.4;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .box-beige__heading {
    font-size: 24px;
  }
}

.box-beige__period {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.box-beige__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .box-beige__text {
    font-size: 14px;
  }
}

.box-beige__note {
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
  color: #fffcda;
}

.box-beige__note a[href] {
  color: #fffcda;
  text-decoration: underline;
}

.box-beige__note a[href]:hover {
  opacity: 0.7;
}
/* ==========================================
   Block: top-map
   ========================================== */
.top-map {
  padding-top: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.top-map__inner {
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
}

.top-map__body {
  position: relative;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .top-map__body {
    margin-top: 20px;
  }
}

.top-map__map svg {
  width: 100%;
  height: auto;
}

.top-map__button-item {
  display: block;
  margin-top: 18px;
  width: 230px;
  margin-left: auto;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .top-map {
    padding-top: 50px;
  }
  .top-map__buttons {
    position: static;
    margin-top: 20px;
  }
  .top-map__button-item {
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
  }
}

/* ==========================================
   Block: top-lightup
   ========================================== */
.top-lightup {
  padding-top: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.top-lightup__inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.top-lightup__escalator {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.top-lightup__spots {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  row-gap: calc(50px + 25px);
}

@media screen and (max-width: 768px) {
  .top-lightup__spots {
    margin-top: 50px;
    row-gap: 50px;
  }
}

/* ==========================================
   Block: top-escalator
   ========================================== */
.top-escalator {
  font-family: var(--fontFamily-serif);
}
.top-escalator__heading {
  font-size: 30px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.top-escalator__text {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.top-escalator__image {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .top-lightup {
    padding-top: 50px;
  }
}

/* ==========================================
   Block: spot
   ========================================== */

.spot__heading {
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  font-family: var(--fontFamily-serif);
}

.spot__body {
  margin-top: 20px;
}

.spot__main {
  position: relative;
}

.enoshimatourou .spot__caption {
  padding: 35px 40px;
  width: 520px;
  background: rgba(9, 4, 4, 0.8);
  border-style: solid;
  border-width: 1px;
  position: absolute;
  right: -22px;
  bottom: -25px;
  border-color: var(--color-primary);
  color: var(--color-primary);
  z-index: 99;
}

.spot--pt {
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  .spot--pt {
    padding-top: 0;
  }
}
.spot--even .spot__caption {
  right: auto;
  left: -22px;
  border-left-style: solid;
  border-left-width: 1px;
}

.spot--caption-shift-down .spot__main {
  padding-bottom: 220px;
}

.spot__caption-title {
  font-size: 30px;
  font-family: var(--fontFamily-serif);
  line-height: 40px;
  position: relative;
}

.spot__caption-text {
  margin-top: 10px;
  line-height: 29px;
}

.spot__label {
  position: absolute;
  left: 0;
  width: 90px;
  top: 0;
  translate: -14% -45%;
}

.spot__thumbnails {
  overflow: hidden;
  padding: 16px 0 0;
}

.spot__thumbnails .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.spot__thumbnails .slick-slide {
  margin: 0 5px 10px 0;
  cursor: pointer;
}

.spot__thumbnails .slick-slide:last-child {
  margin-right: 0;
}

.spot__thumbnails--right .slick-track {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .spot__thumbnails--right .slick-track {
    justify-content: flex-start;
  }
}

.spot__thumbnails--right .slick-slide {
  margin: 0 0 10px 5px;
}

.spot__thumbnails--right .slick-slide:last-child {
  margin-right: 5px;
}

.spot__thumbnails--right .slick-slide:first-child {
  margin-left: 0;
}

.spot__thumbnails .slick-slide img {
  vertical-align: middle;
  border: solid 1px transparent;
  box-sizing: border-box;
}

.spot__thumbnails .slick-slide.slick-current img {
  border-style: solid;
  border-width: 1px;
  border-color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .spot__heading {
    font-size: 5vw;
    padding: 0 16px;
  }
  .enoshimatourou .spot__caption {
    padding: 20px;
    width: 100%;
    position: static;
    border-style: solid;
    border-width: 1px;
  }
  .spot--even .spot__caption {
    border-style: solid;
    border-width: 1px;
  }
  .spot__caption--shift-down {
    transform: none;
  }
  .spot--caption-shift-down .spot__main {
    padding-bottom: 0;
  }
  .spot__caption-title {
    line-height: 1.6;
    font-size: 5vw;
    position: relative;
  }
  .spot__caption-text {
    font-size: 14px;
  }
  .spot__label {
    width: 60px;
  }
  .spot__thumbnails {
    padding: 16px 8px 0;
  }
  .spot__thumbnails .slick-slide {
    display: block !important;
    float: none !important;
    flex: 0 0 calc((100% - 12px) / 3);
    margin: 0 2px;
  }
}

/* ==========================================
   Block: top-nightview
   ========================================== */
.top-nightview__img:not(:first-of-type) {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .top-nightview__img:not(:first-of-type) {
    margin-top: 25px;
  }
}
.top-nightview__figcaption {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-nightview__figcaption {
    margin-top: 10px;
  }
}

/* ==========================================
   Block: top-schedule
   ========================================== */
.top-schedule {
  padding-top: 100px;
}

.top-schedule__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 830px;
}

@media screen and (max-width: 768px) {
  .top-schedule {
    padding-top: 50px;
  }
  .top-schedule__inner {
    padding: 20px 0;
  }
}

/* ==========================================
   Block: table-schedule
   ========================================== */
.table-schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 30px;
  table-layout: auto;
}

.table-schedule__table th {
  text-align: center;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  padding: 10px;
}

.table-schedule__table th:last-of-type {
  border-right: none;
}

.table-schedule__th--area {
  width: 40%;
}

.table-schedule__th--time {
  width: 40%;
}

.table-schedule__table td {
  border-right: solid 1px #fff;
  border-bottom: dotted 1px #fff;
  padding: 10px;
}

.table-schedule__table td:last-of-type {
  border-right: none;
}

.table-schedule__table td a {
  color: #fff;
  text-decoration: underline;
}

.table-schedule__note {
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 29px;
}

@media screen and (max-width: 768px) {
  .table-schedule__table {
    background: none;
  }
  .table-schedule__table tr {
    display: block;
  }
  .table-schedule__table tr td:first-of-type {
    margin-top: 10px;
  }
  .table-schedule__table td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .table-schedule__table th {
    display: none;
  }
}

.top-banners__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.top-banners__list {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.top-banners__item {
  list-style: none;
}

.top-banners__link:hover {
  opacity: 0.7;
}

/* ==========================================
   Block: top-contact
   ========================================== */
.top-contact {
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .top-contact {
    padding-top: 50px;
  }
}

.top-contact__inner {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.top-contact__heading {
  text-align: center;
  font-size: 30px;
  font-family: var(--fontFamily-serif);
}

.top-contact__box {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  border: solid 1px #fff;
}

.top-contact__column {
  font-size: 18px;
  padding: 10px 20px;
  width: 50%;
}

.top-contact__column--bordered {
  border-right: solid 1px #fff;
}

.top-contact__name[class] {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .top-contact__name[class] {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .top-contact__tel {
    font-size: 14px;
  }
}
.top-contact__tel a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top-contact__heading {
    font-size: 5vw;
  }
  .top-contact__column {
    font-size: 14px;
    width: 100%;
  }
  .top-contact__name {
    font-size: 16px;
  }
  .top-contact__column--bordered {
    border-right: none;
    border-bottom: solid 1px #fff;
  }
}

/* ==========================================
   Block: top-footer
   ========================================== */
#gfoot.top-footer {
  color: #fff;
  text-align: center;
  background-color: transparent;
  padding-top: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #gfoot.top-footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.top-footer__inner {
  max-width: 830px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.top-footer__note {
  margin-top: 30px;
  text-align: center;
}
.top-footer__sponsor-text + .top-footer__sponsor-text {
  margin-top: 20px;
}

.top-footer__banner {
  margin-top: 30px;
}

.top-footer__banner-list {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.top-footer__banner-item {
  display: inline-block;
  max-width: 341px;
  list-style: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-footer__banner-item .button-arrow {
  font-size: 10px;
  width: 100%;
}

.top-footer__banner-item .bold {
  font-size: 15px;
}

.top-events {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .top-events {
    padding-top: 50px;
  }
}
.top-events__box {
  margin-top: 50px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.top-pricing {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .top-pricing {
    padding-top: 50px;
  }
}
.top-pricing__box {
  margin-top: 50px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.top-pricing__info {
  margin-top: 30px;
}

.top-pricing__body {
  margin-top: 30px;
  display: grid;
  place-items: center;
}

.top-pricing__banners {
  margin-top: 50px;
}

/* ==========================================
   Component: pricing-dl
   ========================================== */
.pricing-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  color: #fff;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .pricing-dl {
    grid-template-columns: auto;
  }
}

.pricing-dl__term {
  white-space: nowrap;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .pricing-dl__term:not(:first-of-type) {
    margin-top: 10px;
  }
}
.pricing-dl__desc {
  margin-left: 1em;
}
