html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.4em;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  padding: 0;
  text-decoration: none;
  outline: none;
}

input, button {
  background: none;
  border: none;
  outline: none;
}

button {
  font-size: inherit;
  line-height: inherit;
}

textarea {
  resize: none;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
}

/* =======================
 * * VARIABLES
 * * ======================= */
* {
  font-family: "noto-jp", sans-serif !important;
  font-weight: bold !important;
  color: #FFF;
  line-height: 1.7em;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.valign {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.full {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.gap-20 {
  gap: 20px;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.confetti {
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  will-change: transform, filter;
}

/* =====================
 * Common (common parts)
 * ===================== */
.gumike25-bg {
  background: url("../images/background.svg") no-repeat center center/cover;
}

.cur {
  cursor: pointer;
}

table {
  width: 100%;
}

.hide {
  display: none !important;
}

.no-pointer-events {
  pointer-events: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
}
.modal__container {
  width: 100%;
  max-width: clamp(10px, 68.4375vw, 1314px);
  height: clamp(10px, 38.4375vw, 738px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__closeBtn {
  position: fixed;
  top: 5.5vw;
  right: 5vw;
  width: clamp(10px, 2.6041666667vw, 50px);
  height: clamp(10px, 2.6041666667vw, 50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}
.modal__closeBtn:hover:before, .modal__closeBtn:hover:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  background-color: #E02861;
}
.modal__closeBtn:before, .modal__closeBtn:after {
  content: "";
  position: absolute;
  width: clamp(10px, 2.6041666667vw, 50px);
  height: 0.4vw;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal__closeBtn:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__closeBtn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal__video {
  width: 100%;
  height: 100%;
}
.modal__video iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .modal__container {
    max-width: clamp(10px, 86.8vw, 651px);
    height: clamp(10px, 48.8vw, 366px);
  }
  .modal__closeBtn {
    top: clamp(10px, 9.3333333333vw, 70px);
    right: clamp(10px, 6.6666666667vw, 50px);
    width: clamp(10px, 6.4vw, 48px);
    height: clamp(10px, 6.4vw, 48px);
  }
  .modal__closeBtn:before, .modal__closeBtn:after {
    width: clamp(10px, 10.6666666667vw, 80px);
    height: 1vw;
  }
}

@media only screen and (min-width: 769px) {
  html,
  body {
    height: auto;
    overflow: auto;
  }
  body {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    overflow-y: auto;
  }
  .section,
  #TOP,
  #footer {
    scroll-snap-align: start !important;
  }
  .no-scroll {
    overflow: hidden;
  }
  .snap {
    height: 100%;
    overflow: hidden;
  }
  .snap-flow {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    overflow-y: scroll;
  }
  .mobile_bgVideo {
    display: none !important;
  }
  .mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }
  .section__bgVideo {
    display: none !important;
  }
  .mobile_bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
  }
  .preloader__content {
    display: table;
    position: relative;
    margin: 0 auto;
  }
  .preloader__heading {
    width: clamp(10px, 46.875vw, 900px);
    margin-bottom: clamp(10px, 5.2083333333vw, 100px);
  }
  .gumike--fillElem {
    position: absolute;
    top: 0;
    left: 10;
  }
}
@media only screen and (max-width: 768px) {
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
  }
  .preloader__content {
    display: table;
    position: relative;
    margin: 0 auto;
  }
  .preloader__content svg {
    width: 300px;
  }
  .preloader__heading {
    width: clamp(10px, 70.6666666667vw, 530px);
    margin-bottom: clamp(10px, 2.6666666667vw, 20px);
  }
  .gumike--fillElem {
    position: absolute;
    top: 0;
    left: 10;
  }
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 1000;
  -webkit-transition: none;
  transition: none;
}
.menu__openBtn {
  position: fixed;
  top: 3.5vw;
  right: 4vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 999;
}
.menu__openBtnImg {
  width: clamp(10px, 4.6875vw, 90px);
  height: clamp(10px, 4.6875vw, 90px);
}
.menu__closeBtn {
  position: fixed;
  top: 4vw;
  right: 4vw;
  width: clamp(10px, 2.6041666667vw, 50px);
  height: clamp(10px, 2.6041666667vw, 50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}
.menu__closeBtn:hover:before, .menu__closeBtn:hover:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  background-color: #E02861;
}
.menu__closeBtn:before, .menu__closeBtn:after {
  content: "";
  position: absolute;
  width: clamp(10px, 2.6041666667vw, 50px);
  height: 0.4vw;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu__closeBtn:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1.9285714286vw;
  left: 1.0714285714vw;
}
.menu__closeBtn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 1.9285714286vw;
  left: 1.0714285714vw;
}
.menu__headerWrapper {
  opacity: 0;
}
.menu__header {
  width: clamp(100px, 19.537037037vh, 300px);
  margin: 0 auto;
  margin-top: clamp(5px, 9.2592592593vh, 80px);
}
.menu__subheader {
  font-family: "noto-jp";
  font-size: clamp(10px, 2.4074074074vh, 26px);
  line-height: 2.962962963vh;
  margin-bottom: clamp(10px, 9.2592592593vh, 100px);
}
.menu__listItems {
  font-family: "noto-jp";
  font-size: clamp(18px, 2.037037037vh, 24px);
  line-height: clamp(18px, 4.4444444444vh, 48px);
  padding: clamp(10px, 1.4814814815vh, 32px);
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

@media only screen and (max-width: 768px) {
  .menu__openBtnImg {
    width: clamp(10px, 12vw, 90px);
    height: clamp(10px, 12vw, 90px);
  }
  .menu__closeBtn {
    top: clamp(10px, 9.3333333333vw, 70px);
    right: clamp(10px, 6.6666666667vw, 50px);
    width: clamp(10px, 10.6666666667vw, 80px);
    height: clamp(10px, 10.6666666667vw, 80px);
  }
  .menu__closeBtn:before, .menu__closeBtn:after {
    width: clamp(10px, 10.6666666667vw, 80px);
    height: 1vw;
  }
}
@media only screen and (min-width: 769px) {
  .sidebar {
    position: fixed;
    right: 0;
    bottom: 40px;
    z-index: 200;
  }
  .reserve {
    position: relative;
    right: -2.6041666667vw;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .reserve:hover {
    right: -1.3020833333vw;
  }
  .reserve__Btn {
    width: clamp(10px, 15.625vw, 300px);
    display: block;
  }
  .reserve img {
    width: 100%;
  }
  .toTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .toTop__Btn {
    width: clamp(10px, 8.3333333333vw, 160px);
    display: block;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    margin-right: 3.125vw;
  }
  .toTop img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .sidebar {
    position: fixed;
    right: 0;
    bottom: 50px;
    z-index: 200;
  }
  .reserve {
    position: relative;
    right: -30px;
  }
  .reserve__Btn {
    display: block;
  }
  .reserve img {
    width: clamp(10px, 36.6666666667vw, 275px);
  }
}
/* =====================
 * * Sections
 * * ===================== */
@media only screen and (min-width: 769px) {
  .section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    display: none;
    z-index: 1;
  }
  .section__container {
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    z-index: 20;
    opacity: 0;
    height: 100vh;
  }
  .section__bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section__btnContainer {
    width: clamp(10px, 28.3333333333vw, 544px);
  }
  .section__btn {
    width: clamp(10px, 12.7083333333vw, 244px);
    margin-top: clamp(10px, 1.9270833333vw, 37px);
  }
  .section__svg {
    width: clamp(10px, 28.3333333333vw, 544px);
    position: relative;
  }
  .section__col {
    position: relative;
  }
  .section__itm__wrapper {
    width: clamp(10px, 29.5833333333vw, 568px);
    position: relative;
  }
  .section__itm__videoWrap {
    width: clamp(10px, 23.6979166667vw, 455px);
    position: absolute;
    top: clamp(10px, 9.1145833333vw, 175px);
    left: clamp(10px, 2.96875vw, 57px);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .section__itm__videoWrap:hover {
    opacity: 0.7;
  }
  .section.active {
    display: block;
    opacity: 1;
    z-index: 1;
  }
  .sectionWrapper {
    height: 100vh;
  }
  .reversify {
    display: none;
  }
}
@media only screen and (max-width: 769px) {
  .section {
    position: relative;
    overflow: hidden;
  }
  .section__objBackground {
    width: 100%;
    margin: 0 auto;
  }
  .section__objBackground.obj2 {
    width: 80%;
  }
  .section__objBackground.obj3 {
    width: 55%;
    margin-top: clamp(10px, 17.3333333333vw, 130px);
    margin-bottom: clamp(10px, 6.6666666667vw, 50px);
  }
  .section__objBackground.obj4 {
    width: 80%;
  }
  .section__objBackground.obj5 {
    width: 90%;
  }
  .section__container {
    max-width: 750px;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 7.7333333333vw, 58px) clamp(10px, 4vw, 30px);
    margin: 0 auto;
    z-index: 10;
    padding: 0 clamp(10px, 8vw, 60px);
    z-index: 20;
  }
  .section__row {
    z-index: 99 !important;
  }
  .section__bgVideo {
    display: none;
  }
  .section__svg {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .section__col {
    position: relative;
  }
  .section__itm__wrapper {
    width: 100%;
  }
  .section__itm__videoWrap {
    width: clamp(10px, 71.7333333333vw, 538px);
    position: absolute;
    top: clamp(10px, 27.7333333333vw, 208px);
    left: clamp(10px, 6.1333333333vw, 46px);
  }
  .mSection {
    position: relative;
    overflow: hidden;
  }
  .mSection__container {
    max-width: 750px;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 7.7333333333vw, 58px) clamp(10px, 4vw, 30px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 7.7333333333vw, 58px) clamp(10px, 8vw, 60px);
    z-index: 20;
  }
  .mSection__row {
    z-index: 99 !important;
  }
  .mSection__bgVideo {
    display: none;
  }
  .mSection__svg {
    width: clamp(10px, 42.2666666667vw, 317px);
    margin: 0 auto;
    position: relative;
  }
  .mSectionBG {
    position: absolute;
    top: 0;
  }
  .mSectionBG__img {
    display: block;
    width: 100vw;
  }
  .sectionWrapper {
    padding-bottom: clamp(10px, 21.3333333333vw, 160px);
  }
}
/* =====================
 * * Hero/Key Visual
 * * ===================== */
@media only screen and (min-width: 769px) {
  .hero {
    background: url("../images/bg-kv.png") center center/cover;
  }
  .hero__container {
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    z-index: 20;
    opacity: 1;
    height: 100vh;
  }
  .hero__row {
    height: 100%;
  }
  .hero__logo {
    width: clamp(10px, 33.0729166667vw, 635px);
  }
  .hero__body {
    font-size: clamp(10px, 0.9375vw, 18px);
    line-height: clamp(10px, 1.6666666667vw, 32px);
    margin-bottom: clamp(10px, 1.6666666667vw, 32px);
  }
  .hero__heading {
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero__startBtn {
    width: clamp(10px, 15.2604166667vw, 293px);
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    background: url("../images/bg-kv.png") center center/cover;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 999;
  }
  .hero__container {
    max-width: 750px;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 7.7333333333vw, 58px) clamp(10px, 4vw, 30px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 18.6666666667vw, 140px) clamp(10px, 10.6666666667vw, 80px) clamp(10px, 5.7333333333vw, 43px) clamp(10px, 10.6666666667vw, 80px);
  }
  .hero__row {
    height: 100%;
  }
  .hero__logo {
    width: clamp(10px, 78.6666666667vw, 590px);
  }
  .hero__body {
    font-size: clamp(10px, 3.7333333333vw, 28px);
    line-height: clamp(10px, 5.6vw, 42px);
    margin-bottom: clamp(10px, 4.2666666667vw, 32px);
  }
  .hero__heading {
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero__reserveImg {
    width: clamp(10px, 66.6666666667vw, 500px);
  }
  .mHeroBG {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .mHeroBG__vid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.footer__gMap {
  text-decoration: underline;
}

@media only screen and (min-width: 769px) {
  .footer {
    z-index: 10;
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }
  .footer__container {
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 3.0208333333vw, 58px) clamp(10px, 19.375vw, 372px);
    height: 100vh;
    overflow-y: scroll;
  }
  .footer__heading__svg {
    width: clamp(10px, 14.0625vw, 270px);
    margin: 0 auto;
  }
  .footer__subheading {
    font-size: clamp(10px, 1.0416666667vw, 20px);
    position: relative;
    margin: 0 auto;
  }
  .footer__map {
    padding: clamp(10px, 3.5416666667vw, 68px) 0;
  }
  .footer__contactInfo {
    width: clamp(10px, 30.2083333333vw, 580px);
    font-size: clamp(10px, 0.9375vw, 18px);
    line-height: clamp(10px, 2.5vw, 48px);
  }
  .footer__linkContainer {
    padding-top: clamp(10px, 4.2708333333vw, 82px);
    gap: clamp(10px, 1.5625vw, 30px);
  }
  .footer__links {
    width: clamp(10px, 20.8333333333vw, 400px);
    height: clamp(10px, 10.78125vw, 207px);
  }
  .footer__col hr {
    margin: clamp(10px, 6.25vw, 120px) 0 clamp(10px, 4.0625vw, 78px) 0;
    border: none;
    height: 3px;
    background: #fff;
    width: 100%;
  }
  .footer__gumike {
    width: clamp(10px, 26.0416666667vw, 500px);
    margin: 0 auto;
  }
  .footer__last {
    font-family: "noto-jp";
    font-size: clamp(10px, 0.8333333333vw, 16px);
    gap: clamp(10px, 1.0416666667vw, 20px);
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    z-index: 10;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
  }
  .footer__container {
    max-width: 750px;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: clamp(10px, 7.7333333333vw, 58px) clamp(10px, 4vw, 30px);
    margin: 0 auto;
    z-index: 10;
    padding: clamp(10px, 7.7333333333vw, 58px);
    padding-top: clamp(10px, 21.3333333333vw, 160px);
  }
  .footer__heading__svg {
    width: clamp(10px, 34.6666666667vw, 260px);
    margin: 0 auto;
  }
  .footer__subheading {
    font-size: clamp(10px, 3.7333333333vw, 28px);
    position: relative;
    margin: 0 auto;
  }
  .footer__map {
    padding: clamp(10px, 9.0666666667vw, 68px) 0;
  }
  .footer__map img {
    width: clamp(10px, 78.6666666667vw, 590px);
  }
  .footer__contactInfo {
    width: clamp(10px, 77.3333333333vw, 580px);
    font-size: clamp(10px, 3.7333333333vw, 28px);
    line-height: clamp(10px, 6.4vw, 48px);
  }
  .footer__linkContainer {
    padding-top: clamp(10px, 10.9333333333vw, 82px);
    gap: clamp(10px, 4vw, 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__links {
    height: clamp(10px, 27.6vw, 207px);
  }
  .footer__tableContent .mobile {
    padding-bottom: 20px;
  }
  .footer__col hr {
    margin: clamp(10px, 16vw, 120px) 0 clamp(10px, 10.4vw, 78px) 0;
    border: none;
    height: 3px;
    background: #fff;
    width: 100%;
  }
  .footer__gumike {
    width: clamp(10px, 66.6666666667vw, 500px);
    margin: 0 auto;
  }
  .footer__last {
    font-family: "noto-jp";
    font-size: clamp(10px, 1.7333333333vw, 13px);
    gap: clamp(10px, 2.6666666667vw, 20px);
  }
  .footer td {
    padding: 20px 0;
  }
}