@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
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, menu, 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,
main, 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, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, 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;
}

:root {
  --design-width: 1440;
  --design-width-sp: 375;
  --color-text: #333;
  --color-text-hover: #111;
  --color-primary: #f43434;
  --color-accent: #fdc55a;
  --color-secondary: #002ea5;
  --color-highlight: #eb8314;
}

html {
  /*
    * 基準サイズ。基本はremで表記する
    */
  font-size: min(100vw / var(--design-width) * 10, 10px);
}

body {
  font-size: 1.4rem;
}

@media screen and (max-width: 48rem) {
  html,
  body {
    /*
      * 基準サイズ。基本はremで表記する
      */
    font-size: calc(100vw / var(--design-width-sp) * 10);
  }
}
html,
body {
  opacity: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(min(0.6944444444vw, 10px), 0.6944444444vw);
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 2.6666666667vw;
  }
}

#wrapper {
  display: grid;
  gap: 12rem;
}
@media (max-width: 768px) {
  #wrapper {
    gap: 8rem;
  }
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  display: grid;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease-out;
}
#cover .cover__logo {
  transition: opacity 1s ease-out;
  opacity: 0;
  width: 26rem;
}
#cover.shown .cover__logo {
  opacity: 1;
}
#cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.js-inview {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.js-inview.inview {
  opacity: 1;
}

#firstvisual {
  display: grid;
  width: 100%;
  height: 100vh;
  max-height: 108rem;
  position: relative;
  grid-template-columns: 25% 75%;
}
#firstvisual .firstvisual__logo {
  height: calc(min(100vh, 108rem) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#firstvisual .firstvisual__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: calc(min(100vh, 108rem) - 4rem);
}
#firstvisual .firstvisual__slidearea {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#firstvisual .firstvisual__slidearea .firstvisual__slidetrack {
  display: flex;
  height: 100%;
  position: absolute;
  animation: slideLeft 120s linear infinite;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(min(33.3333333333vh, 36rem) * -12));
  }
}
#firstvisual .firstvisual__slidearea .firstvisual__slideset {
  display: flex;
  flex-wrap: wrap;
  width: calc(min(33.3333333333vh, 36rem) * 12);
  height: 100%;
  flex-shrink: 0;
}
#firstvisual .firstvisual__slidearea .firstvisual__slide {
  width: min(33.3333333333vh, 36rem);
  height: min(33.3333333333vh, 36rem);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
#firstvisual .firstvisual__slidearea .firstvisual__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 768px) {
  #firstvisual {
    grid-template-columns: 1fr;
    height: auto;
  }
  #firstvisual .firstvisual__logo {
    width: 100%;
    height: auto;
    padding: 2.4rem 0 0;
    order: 2;
  }
  #firstvisual .firstvisual__logo picture,
  #firstvisual .firstvisual__logo img {
    width: 100%;
    max-width: 33.4rem;
    height: auto;
  }
  #firstvisual .firstvisual__slidearea {
    width: 100%;
    height: 100vw;
    order: 1;
    pointer-events: none;
  }
  #firstvisual .firstvisual__slidearea .firstvisual__slidetrack {
    display: flex;
    height: 100vw;
  }
  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-400vw);
    }
  }
  #firstvisual .firstvisual__slidearea .firstvisual__slideset {
    display: flex;
    flex-wrap: wrap;
    width: 400vw;
    height: 100vw;
    flex-shrink: 0;
  }
  #firstvisual .firstvisual__slidearea .firstvisual__slide {
    width: 50vw;
    height: 50vw;
  }
}

#about .about__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
#about .about__title {
  margin-bottom: 8rem;
  text-align: center;
}
#about .about__title img {
  height: 5.6rem;
  width: auto;
}
#about .about__content {
  display: flex;
  gap: 6rem;
  align-items: center;
  justify-content: center;
}
#about .about__logo {
  flex-shrink: 0;
  width: 29.2rem;
}
#about .about__logo img {
  width: 100%;
  height: auto;
}
#about .about__text {
  flex: 1;
  max-width: 82.1rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.875;
  color: #000;
}
#about .about__text p {
  margin: 0;
}
#about .about__text .about__text-main {
  margin-bottom: 3.2rem;
}
#about .about__text .about__text-sub {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #about .about__inner {
    padding: 0 2rem;
  }
  #about .about__title {
    margin-bottom: 6rem;
  }
  #about .about__title img {
    height: 3.2rem;
  }
  #about .about__content {
    flex-direction: column;
    gap: 4rem;
  }
  #about .about__logo {
    width: 20rem;
  }
  #about .about__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  #about .about__text br {
    display: none;
  }
  #about .about__text .about__text-main {
    margin-bottom: 2.4rem;
  }
}

#universities .universities__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
#universities .universities__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
  color: #666;
}
#universities .universities__title p {
  margin: 0;
}
#universities .universities__scroll {
  height: 12rem;
  overflow-y: auto;
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  #universities .universities__inner {
    padding: 0 2rem;
  }
  #universities .universities__title {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
  #universities .universities__scroll {
    height: 10rem;
    font-size: 1.2rem;
    padding: 1.6rem;
  }
}

#mission .mission__image {
  width: 100%;
  height: 54.8rem;
  position: relative;
  overflow: hidden;
}
#mission .mission__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#mission .mission__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 8rem 12rem 0;
}
#mission .mission__title {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
  margin-bottom: 8rem;
}
#mission .mission__title-en {
  flex-shrink: 0;
}
#mission .mission__title-en img {
  height: 23.6rem;
  width: auto;
}
#mission .mission__title-ja {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: center;
  align-items: start;
}
#mission .mission__title-ja-line {
  background-color: #000;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.8;
  padding: 0 1rem;
  margin: 0;
}
#mission .mission__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
#mission .mission__section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
#mission .mission__section-header {
  background-color: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.4rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
#mission .mission__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4;
}
#mission .mission__list li {
  position: relative;
  padding-left: 3rem;
}
#mission .mission__list li::before {
  content: "•";
  position: absolute;
  left: 1rem;
}
@media (max-width: 768px) {
  #mission .mission__image {
    height: 20rem;
  }
  #mission .mission__inner {
    padding: 6rem 2rem 0;
  }
  #mission .mission__title {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
  }
  #mission .mission__title-en img {
    height: 12rem;
  }
  #mission .mission__title-ja {
    gap: 1.6rem;
  }
  #mission .mission__title-ja-line {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  #mission .mission__section-header {
    font-size: 1.8rem;
  }
  #mission .mission__list {
    font-size: 1.4rem;
    line-height: 2;
  }
  #mission .mission__list li {
    padding-left: 2rem;
  }
  #mission .mission__list li::before {
    left: 0.5rem;
  }
}

#seek .seek__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
#seek .seek__title {
  margin-bottom: 8rem;
}
#seek .seek__title img {
  height: 5.6rem;
  width: auto;
}
#seek .seek__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
#seek .seek__image {
  flex-shrink: 0;
  width: 32rem;
  height: 40rem;
  overflow: hidden;
  border-radius: 0.8rem;
}
#seek .seek__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#seek .seek__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
#seek .seek__header {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#seek .seek__header-title {
  background-color: #000;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.8;
  padding: 0 1rem;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
#seek .seek__header-desc {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.875;
  margin: 0;
}
#seek .seek__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
#seek .seek__list-item {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
#seek .seek__list-number {
  background-color: #000;
  color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 500;
  flex-shrink: 0;
}
#seek .seek__list-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  #seek .seek__inner {
    padding: 0 2rem;
  }
  #seek .seek__title {
    margin-bottom: 6rem;
  }
  #seek .seek__title img {
    height: 3.2rem;
  }
  #seek .seek__content {
    flex-direction: column;
    gap: 3rem;
  }
  #seek .seek__image {
    width: 100%;
    height: 30rem;
  }
  #seek .seek__header {
    gap: 2rem;
  }
  #seek .seek__header-title {
    font-size: 2rem;
    line-height: 1.6;
  }
  #seek .seek__header-desc {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  #seek .seek__list {
    gap: 2rem;
  }
  #seek .seek__list-item {
    gap: 2rem;
    align-items: center;
  }
  #seek .seek__list-number {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }
  #seek .seek__list-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

#interview {
  background-color: #e5dcd3;
  padding: 12rem;
}
#interview .interview__inner {
  max-width: 144rem;
  margin: 0 auto;
}
#interview .interview__title {
  margin-bottom: 4rem;
}
#interview .interview__title img {
  height: 5.3rem;
  width: auto;
}
#interview .interview__subtitle {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 4rem 0;
}
#interview .interview__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
#interview .interview__profile {
  flex-shrink: 0;
  width: 25.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
#interview .interview__profile-image {
  width: 100%;
  height: 33.6rem;
  overflow: hidden;
}
#interview .interview__profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#interview .interview__profile-info {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
#interview .interview__profile-info p {
  margin: 0;
}
#interview .interview__profile-info p:not(:last-child) {
  margin-bottom: 0.9rem;
}
#interview .interview__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#interview .interview__section {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#interview .interview__section-title {
  display: inline;
  background-color: #000;
  color: #e5dcd3;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2;
  padding: 0 0.25em 0.125em;
  margin: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
#interview .interview__section-body {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
}
#interview .interview__section-body p {
  margin: 0;
}
#interview .interview__section-body p:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  #interview {
    padding: 8rem 2rem;
  }
  #interview .interview__title {
    margin-bottom: 3rem;
  }
  #interview .interview__title img {
    height: 3.2rem;
  }
  #interview .interview__subtitle {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  #interview .interview__content {
    flex-direction: column;
    gap: 3rem;
  }
  #interview .interview__profile {
    width: 100%;
    flex-direction: row;
    gap: 2rem;
  }
  #interview .interview__profile-image {
    width: 8rem;
    height: auto;
  }
  #interview .interview__profile-info {
    font-size: 1.3rem;
  }
  #interview .interview__section-title {
    font-size: 1.6rem;
  }
  #interview .interview__section-body {
    font-size: 1.4rem;
  }
}

#contact .contact__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
#contact .contact__title img {
  height: 5.7rem;
  width: auto;
}
#contact .contact__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#contact .contact__text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.875;
  margin: 0;
}
#contact .contact__form {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background: #fff;
  padding: 4rem;
  border-radius: 0.8rem;
}
#contact .contact__form .cf7-wrapper {
  margin: 0;
}
#contact .contact__form .cf7-item {
  margin: 3rem 0;
}
#contact .contact__form .cf7-item:first-child {
  margin-top: 0;
}
#contact .contact__form .cf7-item br {
  display: none;
}
#contact .contact__form .cf7-item label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.8rem;
}
#contact .contact__form .cf7-item label.required::after {
  display: inline-block;
  content: "必須";
  margin-left: 1.2rem;
  border-radius: 0.4rem;
  background: #f82633;
  padding: 0.6rem 0.8rem;
  font-size: 1.2rem;
  color: #fff;
}
#contact .contact__form .cf7-item input {
  display: block;
  padding: 1.2rem;
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f2f2f2;
  border: 0.1rem solid #c4c4c4;
  border-radius: 0.4rem;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}
#contact .contact__form .cf7-item input:focus {
  border-color: #333;
}
#contact .contact__form .cf7-item textarea {
  display: block;
  padding: 1.2rem;
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f2f2f2;
  border: 0.1rem solid #c4c4c4;
  border-radius: 0.4rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
#contact .contact__form .cf7-item textarea:focus {
  border-color: #333;
}
#contact .contact__form .cf7-item .wpcf7-not-valid-tip {
  margin-top: 0.6rem;
  font-weight: bold;
  color: #f82633;
}
#contact .contact__form .cf7-item .submit {
  width: 20rem;
  margin: 4rem auto 0;
  padding: 1.6rem 3.2rem;
  border-radius: 4rem;
  border: none;
  color: #fff;
  background: #000;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
#contact .contact__form .cf7-item .submit:hover {
  opacity: 0.8;
}
#contact .contact__form .wpcf7-response-output {
  padding: 2.4rem !important;
  border-radius: 0.4rem;
}
@media (max-width: 768px) {
  #contact .contact__inner {
    padding: 0 2rem;
    gap: 6rem;
  }
  #contact .contact__title img {
    height: 3.2rem;
  }
  #contact .contact__content {
    gap: 2.4rem;
  }
  #contact .contact__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  #contact .contact__text br {
    display: none;
  }
  #contact .contact__form {
    padding: 2.4rem;
  }
  #contact .contact__form .cf7-item {
    margin: 2.4rem 0;
  }
  #contact .contact__form .cf7-item .submit {
    width: 100%;
  }
}

#bases .bases__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
}
#bases .bases__title {
  margin-bottom: 8rem;
}
#bases .bases__title img {
  height: 5.7rem;
  width: auto;
}
#bases .bases__map {
  margin-bottom: 8rem;
  width: 100%;
}
#bases .bases__map img {
  width: 100%;
  height: auto;
  display: block;
}
#bases .bases__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
#bases .bases__item {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
#bases .bases__item-image {
  flex-shrink: 0;
  width: 36rem;
  height: 24rem;
  overflow: hidden;
}
#bases .bases__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#bases .bases__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#bases .bases__item-header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
#bases .bases__item-name {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
#bases .bases__item-desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
}
#bases .bases__item-sns {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
#bases .bases__item-sns-link {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  transition: opacity 0.3s ease;
}
#bases .bases__item-sns-link:hover {
  opacity: 0.7;
}
#bases .bases__item-sns-link img {
  width: 100%;
  height: 100%;
}
#bases .bases__item-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
#bases .bases__item-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex-shrink: 0;
}
#bases .bases__item-info-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 4rem;
}
#bases .bases__item-info-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
}
@media (max-width: 768px) {
  #bases .bases__inner {
    padding: 0 2rem;
  }
  #bases .bases__title {
    margin-bottom: 6rem;
  }
  #bases .bases__title img {
    height: 3.2rem;
  }
  #bases .bases__map {
    margin-bottom: 6rem;
  }
  #bases .bases__list {
    gap: 6rem;
  }
  #bases .bases__item {
    flex-direction: column;
    gap: 2rem;
  }
  #bases .bases__item-image {
    width: 100%;
    height: 20rem;
  }
  #bases .bases__item-header {
    gap: 1.2rem;
  }
  #bases .bases__item-name {
    font-size: 2.4rem;
  }
  #bases .bases__item-desc {
    font-size: 1.2rem;
  }
  #bases .bases__item-sns {
    gap: 1.2rem;
  }
  #bases .bases__item-sns-link {
    width: 2.4rem;
    height: 2.4rem;
  }
  #bases .bases__item-info {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  #bases .bases__item-info-title {
    font-size: 1.8rem;
  }
  #bases .bases__item-info-text {
    font-size: 1.1rem;
  }
}

#footer {
  padding: 0 0 4rem;
}
#footer .footer__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
#footer .footer__copyright {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  #footer {
    padding: 4rem 0;
  }
  #footer .footer__inner {
    padding: 0 2rem;
    gap: 3rem;
  }
  #footer .footer__copyright {
    font-size: 1.2rem;
  }
}
