@charset "UTF-8";
/*
Theme Name: alba-inc
*/
/*font-face*/
@font-face {
  font-family: "NotoSana";
  src: url("../fonts/NotoSansCJKjp-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NotoSana";
  src: url("../fonts/NotoSansCJKjp-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: "ProductSans-Thin";
  src: url("../fonts/ProductSans-Thin.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/GothamBold.otf") format("opentype");
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("opentype");
}
/*sass 変数*/
/*sass function*/
/*global*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 1200px) {
  body {
    overflow-x: hidden !important;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.5s;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:hover {
  transition: 0.5s;
  opacity: 0.6;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

img,
video,
canvas {
  overflow: clip;
}

@media screen and (max-width: 1200px) {
  br.pc_only {
    display: none;
  }
}
br.sp_only {
  display: none;
}
@media screen and (max-width: 979px) {
  br.sp_only {
    display: inline;
  }
}

/* MARK: - components */
.c-inner {
  max-width: 1160px;
  margin: auto;
  padding-inline: 20px;
}

.c-heading {
  font-size: 90px;
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 979px) {
  .c-heading {
    font-size: min(8.8vw, 40px);
    margin-bottom: 4vw;
  }
}

/* contents */
/* MARK: - Navi */
#navi {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
#navi .navi__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 90px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  #navi .navi__inner {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
    padding: 10px 15px;
  }
}
#navi .navi__logo-text {
  font-size: 28.5px;
  font-weight: bold;
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  #navi .navi__logo-text {
    font-size: min(5vw, 30px);
  }
}
#navi .navi__nav-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 2.2rem 0;
  column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  #navi .navi__nav-list {
    padding: 0;
    column-gap: 4vw;
  }
}
#navi .navi__nav-item {
  position: relative;
  font-weight: bold;
  font-size: 15px;
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  white-space: nowrap;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: color 0.3s;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  #navi .navi__nav-item {
    font-size: min(3vw, 20px);
  }
}
@media (hover: hover) {
  #navi .navi__nav-item:hover {
    color: #e95550;
  }
}

/* MARK: - MV */
#mv {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #mv {
    height: auto;
  }
}
#mv .mv__bg {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #mv .mv__bg {
    padding-top: 0;
  }
}
#mv .mv__bg img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #mv .mv__bg img {
    height: auto;
    width: 100%;
    display: block;
  }
}

/* MARK: - Outline */
#outline {
  padding-top: 85px;
  padding-bottom: 180px;
  background-color: #e95550;
  color: #fff;
}
@media screen and (max-width: 979px) {
  #outline {
    padding-bottom: 10vw;
    padding-top: 10vw;
  }
}
#outline .outline__box {
  width: 100%;
  padding-bottom: 70px;
}
@media screen and (max-width: 979px) {
  #outline .outline__box {
    padding-bottom: 40px;
  }
}
#outline .outline__box + .outline__box {
  padding-top: 117px;
  padding-bottom: 0;
}
@media screen and (max-width: 979px) {
  #outline .outline__box + .outline__box {
    padding-top: 30px;
  }
}
#outline .outline__heading {
  margin-bottom: 87px;
}
@media screen and (max-width: 979px) {
  #outline .outline__heading {
    margin-bottom: 40px;
  }
}
#outline .outline__container {
  text-align: center;
}
@media screen and (max-width: 979px) {
  #outline .outline__container {
    text-align: left;
  }
}
#outline .outline__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 979px) {
  #outline .outline__text {
    font-size: min(3.2vw, 16px);
  }
}
#outline .outline__headline {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 979px) {
  #outline .outline__headline {
    font-size: min(4.8vw, 24px);
    margin-bottom: 4vw;
  }
}
#outline .outline__table {
  display: inline-block;
  text-align: left;
}
#outline .outline__table tr + tr td,
#outline .outline__table tr + tr th {
  padding-top: 30px;
}
@media screen and (max-width: 979px) {
  #outline .outline__table tr + tr td,
  #outline .outline__table tr + tr th {
    padding-top: 20px;
  }
}
#outline .outline__table td {
  font-size: 20px;
  line-height: 1.6;
  padding-right: 20px;
  color: #fff;
  vertical-align: top;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 979px) {
  #outline .outline__table td {
    font-size: min(3.2vw, 16px);
    white-space: nowrap;
  }
}
#outline .outline__table th {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  color: #fff;
  vertical-align: top;
}
@media screen and (max-width: 979px) {
  #outline .outline__table th {
    font-size: min(3.2vw, 16px);
  }
}

/* MARK: - System */
#system {
  position: relative;
  background: #ebdfcb;
  padding-block: 180px 200px;
}
@media screen and (max-width: 1200px) {
  #system {
    padding-block: 10vw;
  }
}
#system .system__inner {
  width: min(1464px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}
#system .system__heading {
  color: #000;
  margin-bottom: 100px;
}
@media screen and (max-width: 979px) {
  #system .system__heading {
    margin-bottom: 30px;
  }
}
#system .system__step {
  display: grid;
  grid-template-areas: "item1 item2" "item4 item3";
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: stretch;
  gap: 3px;
}
@media screen and (max-width: 979px) {
  #system .system__step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#system .system__step-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 25px;
  outline: 3px solid #000;
  border-radius: 50px;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 979px) {
  #system .system__step-item {
    row-gap: 10px;
    padding: 30px;
  }
}
#system .system__step-item:nth-of-type(1) {
  grid-area: item1;
}
#system .system__step-item:nth-of-type(2) {
  grid-area: item2;
}
#system .system__step-item:nth-of-type(3) {
  grid-area: item3;
}
#system .system__step-item:nth-of-type(4) {
  grid-area: item4;
}
#system .system__step-item-num {
  height: 72px;
  width: auto;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-num {
    height: 38px;
  }
}
#system .system__step-item-num img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
#system .system__step-item-detail-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.00008em;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-detail-text {
    font-size: min(3.2vw, 16px);
  }
}
#system .system__step-item-pic {
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-pic {
    margin: 15px auto 0;
  }
}
#system .system__step-item-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#system .system__step-item-attention {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-attention {
    gap: 5px;
    margin-top: 5px;
  }
}
#system .system__step-item-attention-icon {
  width: 52px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-attention-icon {
    width: 30px;
  }
}
#system .system__step-item-attention-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#system .system__step-item-attention-text {
  flex: 1;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
  letter-spacing: 0.05em;
  color: #e95550;
}
@media screen and (max-width: 979px) {
  #system .system__step-item-attention-text {
    font-size: min(3.2vw, 14px);
  }
}
#system .system__step-item:nth-of-type(1) .system__step-item-pic {
  width: min(460px, 100%);
  height: auto;
  aspect-ratio: 460/599;
}
#system .system__step-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 4px);
  z-index: 2;
  width: 28px;
  height: 68px;
  background: #ebdfcb;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(1)::before {
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#system .system__step-item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  z-index: 1;
  width: 28px;
  height: 68px;
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(1)::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#system .system__step-item:nth-of-type(2) .system__step-item-pic {
  width: min(370px, 100%);
  height: auto;
  aspect-ratio: 370/483;
}
#system .system__step-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 68px;
  height: 28px;
  background: #ebdfcb;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(2)::before {
    width: 48px;
    height: 20px;
  }
}
#system .system__step-item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 68px;
  height: 28px;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(2)::after {
    width: 48px;
    height: 20px;
  }
}
#system .system__step-item:nth-of-type(3) .system__step-item-pic {
  width: min(406px, 100%);
  height: auto;
  aspect-ratio: 406/316;
}
#system .system__step-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% - 4px);
  z-index: 2;
  width: 28px;
  height: 68px;
  background: #ebdfcb;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(3)::before {
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#system .system__step-item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  z-index: 1;
  width: 28px;
  height: 68px;
  background: #000;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 979px) {
  #system .system__step-item:nth-of-type(3)::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#system .system__step-item:nth-of-type(4) .system__step-item-pic {
  width: min(524px, 100%);
  height: auto;
  aspect-ratio: 524/523;
}

/* MARK: - System Attend */
#sys_attend {
  background-color: #fff;
  padding-block: 150px;
}
@media screen and (max-width: 979px) {
  #sys_attend {
    padding-block: 10vw;
  }
}
#sys_attend .system__text {
  width: min(1424px, 100%);
  margin-inline: auto;
}
#sys_attend .system__text-container {
  text-align: center;
}
#sys_attend .system__text-text {
  font-size: 20.5px;
  font-weight: 500;
  line-height: 1.73;
}
@media screen and (max-width: 979px) {
  #sys_attend .system__text-text {
    font-size: min(3.2vw, 16px);
  }
}

/* MARK: - Curry Shops */
#curry-shop {
  position: relative;
  padding-block: 180px 195px;
  background-color: #004155;
}
@media screen and (max-width: 979px) {
  #curry-shop {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
#curry-shop .curry-shop__inner {
  width: min(1751px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}
#curry-shop .curry-shop__heading {
  margin-bottom: 180px;
}
@media screen and (max-width: 979px) {
  #curry-shop .curry-shop__heading {
    margin-bottom: 30px;
  }
}
#curry-shop .curry-shop__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}
@media screen and (max-width: 1200px) {
  #curry-shop .curry-shop__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 979px) {
  #curry-shop .curry-shop__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 580px) {
  #curry-shop .curry-shop__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#curry-shop .curry-shop__item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 20px;
  background-color: #efefef;
  padding: 20px;
}
#curry-shop .curry-shop__item-img {
  flex-shrink: 0;
  width: min(367px, 100%);
  height: auto;
  aspect-ratio: 367/310;
  margin-inline: auto;
}
#curry-shop .curry-shop__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#curry-shop .curry-shop__item-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#curry-shop .curry-shop__title {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1200px) {
  #curry-shop .curry-shop__title {
    font-size: min(5vw, 20px);
  }
}
#curry-shop .curry-shop__title .--roboto {
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
#curry-shop .curry-shop__sns-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
#curry-shop .curry-shop__sns-link {
  display: block;
  width: 22px;
  height: auto;
  aspect-ratio: 1;
}
#curry-shop .curry-shop__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#curry-shop .curry-shop__note {
  margin-top: 190px;
  text-align: center;
  font-size: 18.5px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}
#curry-shop .curry-shop__note a {
  color: #fff;
}
@media screen and (max-width: 979px) {
  #curry-shop .curry-shop__note {
    margin-top: 8vw;
    font-size: min(4vw, 16px);
  }
}

/* MARK: - Schedule */
#schedule {
  background-color: #e95550;
  padding-block: 180px 200px;
}
@media screen and (max-width: 1200px) {
  #schedule {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
#schedule .schedule__inner {
  width: min(1755px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}
#schedule .schedule__heading {
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  #schedule .schedule__heading {
    margin-bottom: 5vw;
  }
}
#schedule .schedule__text {
  color: #fff;
  font-size: 20.5px;
  line-height: 1.73;
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.625;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  #schedule .schedule__text {
    font-size: min(3vw, 16px);
    margin-bottom: 5vw;
  }
}
#schedule .schedule__container {
  text-align: center;
}
@media screen and (max-width: 979px) {
  #schedule .schedule__container {
    width: min(500px, 100%);
    margin-inline: auto;
  }
}
#schedule .schedule__img {
  width: min(1715px, 100%);
  aspect-ratio: 1715/1992;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  #schedule .schedule__img {
    width: 100%;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 580px) {
  #schedule .schedule__img {
    width: 100%;
    aspect-ratio: auto;
  }
}
#schedule .schedule__img picture {
  display: block;
  width: 100%;
  margin-inline: auto;
}
#schedule .schedule__img picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* MARK: - autumn-fest */
#autumn-fest {
  text-align: center;
  padding-block: 127px 120px;
}
@media screen and (max-width: 1200px) {
  #autumn-fest {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
#autumn-fest .autumn-fest__heading {
  display: block;
  width: min(800px, 100%);
  height: auto;
  aspect-ratio: 800/179;
  margin-inline: auto;
  margin-bottom: 20px;
}
#autumn-fest .autumn-fest__heading img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#autumn-fest .autumn-fest__text {
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 1200px) {
  #autumn-fest .autumn-fest__text {
    font-size: min(4vw, 20px);
  }
}
#autumn-fest .autumn-fest__text a {
  color: #f0000a;
}

/* MARK: - Contact */
#contact {
  padding: 170px 0 110px;
  background: #000;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #contact {
    padding-top: 10vw;
    padding-bottom: 8vw;
  }
}
#contact .contact__heading {
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  #contact .contact__heading {
    margin-bottom: 5vw;
  }
}
#contact .contact__note {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.005em;
  margin-bottom: 45px;
}
@media screen and (max-width: 1200px) {
  #contact .contact__note {
    font-size: min(4vw, 20px);
    margin-bottom: 8vw;
  }
}
#contact .contact__icons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 35px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  #contact .contact__icons {
    margin: 10vw;
  }
}
#contact .contact__icons figure {
  width: 108px;
  aspect-ratio: 1;
}
@media screen and (max-width: 979px) {
  #contact .contact__icons figure {
    width: 15vw;
    height: auto;
  }
}
#contact .contact__icons figure a {
  display: block;
  width: 100%;
  height: 100%;
}
#contact .contact__icons figure a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#contact .contact__sponsor {
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0.005em;
  margin-bottom: 34px;
}
@media screen and (max-width: 1200px) {
  #contact .contact__sponsor {
    font-size: min(3.2vw, 16px);
  }
}
#contact .contact__archive-title {
  font-size: 60px;
  font-weight: normal;
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
@media screen and (max-width: 1200px) {
  #contact .contact__archive-title {
    font-size: min(5vw, 26px);
  }
}
#contact .contact__archive-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 979px) {
  #contact .contact__archive-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: fit-content;
    margin-inline: auto;
  }
}
#contact .contact__archive-list-item {
  font-size: 26px;
  font-family: "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: bold;
  line-height: 1.92;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  #contact .contact__archive-list-item {
    font-size: min(4vw, 18.5px);
  }
}
#contact .contact__archive-list-item:not(:last-child):after {
  content: "/";
  display: inline-block;
  margin-inline: 4px;
}
@media screen and (max-width: 979px) {
  #contact .contact__archive-list-item:not(:last-child):after {
    display: none;
  }
}
#contact .contact__archive-list-item a {
  color: #fff;
}

/* MARK: - Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 979px) {
  footer {
    font-size: min(2.5vw, 14px);
  }
}