@charset "UTF-8";
:root {
  --primary-color: #db1527;
  --secondary-color: #cfbc55;
  --text-color-primary: #1b1830;
  --text-color-secondary: #5d5b67;
  --border-color: #d1d5db;
  --background-color-primary: #fafafa;
  --hover-color: #ff0017;
  --transition-hover: 0.2s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: var(--text-color-primary);
  background: #fff;
  overflow-x: hidden;
}

ul,
ol {
  padding: 0;
}

.is-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

.c-button-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 62.8rem;
  margin: 0 auto;
  padding: 4.8rem 7.2rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  transition: --transition-hover;
}
@media (max-width: 767px) {
  .c-button-cta {
    max-width: 31.5rem;
    padding: 2.4rem 3.2rem;
    gap: 1.6rem;
  }
}
.c-button-cta small {
  position: relative;
  z-index: 2;
  font-family: "Anton", sans-serif;
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-button-cta small {
    font-size: 2.6rem;
  }
}
.c-button-cta strong {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5625;
}
@media (max-width: 767px) {
  .c-button-cta strong {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.c-button-cta::before {
  content: "";
  position: absolute;
  bottom: -12.7rem;
  z-index: 1;
  border-radius: 100%;
  width: 50rem;
  height: 12.7rem;
  background-color: #FF0017;
  transition: var(--transition-hover);
}
@media (max-width: 767px) {
  .c-button-cta::before {
    display: none;
  }
}
.c-button-cta::after {
  position: relative;
  z-index: 2;
  content: "";
  display: block;
  width: 0.9rem;
  height: 1.36rem;
  margin: 0 0 0 auto;
  background: url("../img/icon_arrow_white.svg") center/100% 100% no-repeat;
}
@media (max-width: 767px) {
  .c-button-cta::after {
    width: 0.9rem;
    height: 1.36rem;
  }
}
@media (hover: hover) {
  .c-button-cta:hover::before {
    bottom: -12rem;
    width: 117rem;
    height: 29.7rem;
  }
}

.c-address {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .c-address {
    flex-direction: column;
  }
}
.c-address .c-address__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .c-address .c-address__box {
    width: 100%;
    padding: 0;
  }
}
.c-address .c-address__box--left {
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .c-address .c-address__box--left {
    gap: 0.2rem;
    text-align: center;
  }
}
.c-address .c-address__box--right {
  position: relative;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .c-address .c-address__box--right {
    margin-top: 3.2rem;
    text-align: center;
    padding-top: 3.2rem;
  }
}
.c-address .c-address__box--right::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .c-address .c-address__box--right::before {
    width: 8rem;
    height: 1px;
    left: calc(50% - 4rem);
  }
}
.c-address .c-address__name {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-address .c-address__name {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-address .c-address__name-sub {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7857142857;
}
@media (max-width: 767px) {
  .c-address .c-address__name-sub {
    font-size: 1.2rem;
  }
}
.c-address .c-address__tel {
  font-family: "Anton", sans-serif;
  font-size: 3.6rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-address .c-address__tel {
    font-size: 2.8rem;
  }
}
.c-address .c-address__tel a {
  color: #fff;
  text-decoration: none;
}
.c-address .c-address__mail {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-address .c-address__mail {
    font-size: 1.4rem;
  }
}
.c-address .c-address__mail a {
  color: #fff;
  text-decoration: none;
}
.c-address .c-address__time {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-address .c-address__time {
    font-size: 1.3rem;
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role=button]:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 1rem 1.4rem;
  background: #fff;
  color: var(--text-color-primary);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--text-color-primary);
  transform: translateY(-180%);
  transition: var(--transition-hover);
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0);
}

.l-header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 2.4rem auto 0 0;
  padding: 0 4rem;
  height: 8rem;
}
@media (max-width: 767px) {
  .l-header {
    margin-top: 0;
    padding: 0 1.6rem;
    height: 5.3rem;
  }
}

.l-header__toggle {
  display: none;
}
@media (max-width: 767px) {
  .l-header__toggle {
    mix-blend-mode: difference;
    position: fixed;
    top: 2.6rem;
    right: 1.6rem;
    z-index: 1000;
    display: grid;
    place-items: center;
    gap: 0.6rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform-origin: center;
  }
  .l-header__toggle span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background-color: #fff;
    transition: var(--transition-hover);
  }
}

.l-header__logo {
  position: absolute;
  top: 2.4rem;
  left: 4rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.l-header__logo img {
  width: 11.8rem;
  height: auto;
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 8.7rem;
  }
}
.l-header__logo span {
  padding: 0.5rem 1rem;
  background-color: var(--text-color-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .l-header__logo span {
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .l-header__logo {
    top: 1.6rem;
    left: 1.6rem;
    gap: 1rem;
  }
}

.l-header__nav {
  position: fixed;
  z-index: 1;
  top: 4.6rem;
  right: 24.6rem;
  z-index: 100;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  .l-header__nav {
    inset: 0;
    padding: 8.4rem 4rem 5.6rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background-color: var(--text-color-primary);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-hover);
    mix-blend-mode: normal;
  }
}

.l-header__menu {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .l-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
  }
}
.l-header__menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-header__menu li a {
    align-items: flex-start;
  }
}
.l-header__menu li a small {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .l-header__menu li a small {
    font-size: 2.2rem;
  }
}
.l-header__menu li a strong {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-header__menu li a strong {
    font-size: 1.5rem;
  }
}

.l-header__entry {
  position: fixed;
  top: 3.6rem;
  right: 4rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  transition: background-color var(--transition-hover);
}
@media (max-width: 767px) {
  .l-header__entry {
    padding: 1rem 1.2rem;
    top: 1.6rem;
    right: 5.6rem;
  }
}
.l-header__entry small {
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-header__entry small {
    font-size: 1.944rem;
  }
}
.l-header__entry strong {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-header__entry strong {
    display: none;
  }
}
@media (hover: hover) {
  .l-header__entry:hover {
    background-color: var(--hover-color);
  }
}

.l-header.is-open .l-header__logo {
  position: fixed;
  z-index: 1000;
}
.l-header.is-open .l-header__toggle span:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.l-header.is-open .l-header__toggle span:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__toggle span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.l-header.is-open .l-header__nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.l-header.is-open .l-header__menu {
  display: grid;
  gap: 0;
  margin-bottom: 5.6rem;
}
.l-header.is-open .l-header__menu li a {
  display: flex;
  width: 100%;
  padding: 2.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
  background: url(../img/icon_arrow_menu.svg) no-repeat right center/2rem auto;
}
.l-header.is-open .l-header__menu li a small {
  display: none;
}
.l-header.is-open .l-header__menu li a strong {
  font-size: 1.5rem;
}
.l-header.is-open .c-button-cta {
  max-width: inherit;
  margin: 5.6rem auto;
}

.hero {
  position: relative;
  height: 100%;
  min-height: 100svh;
  color: #fff;
  padding: 0 0 30.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .hero {
    padding: 0 0 12.3rem;
  }
}

.hero__bg {
  position: sticky;
  top: 0;
  z-index: -1;
  height: 100%;
  min-height: 100vh;
  margin-bottom: -100vh;
  background: url("../img/hero_bg.webp") center/cover no-repeat;
}
@media (max-width: 767px) {
  .hero__bg {
    background-image: url("../img/hero_bg_sp.webp");
  }
}

.hero__text-vertical {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 19.4rem;
  right: 6rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .hero__text-vertical {
    top: 11.1rem;
    right: 4.6rem;
    font-size: 4.3rem;
  }
}
.hero__text-vertical span {
  display: inline-block;
  background-color: var(--text-color-primary);
}
.hero__text-vertical span:last-child {
  position: relative;
  top: 14.1rem;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 90%);
}
@media (max-width: 767px) {
  .hero__text-vertical span:last-child {
    top: 10.2rem;
  }
}

.hero__title {
  font-family: "Anton", sans-serif;
  font-size: 20rem;
  letter-spacing: -0.2rem;
  line-height: 0.94;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 8rem;
    letter-spacing: normal;
  }
}
@supports (-webkit-touch-callout: none) {
  @media (min-width: 768px) {
    .hero__title {
      letter-spacing: -0.8rem;
    }
  }
  @media (max-width: 767px) {
    .hero__title {
      letter-spacing: -0.2rem;
    }
  }
}
.hero__title span {
  display: block;
  margin: 0 0 0.6rem 0.3rem;
  color: var(--primary-color);
  font-family: "Anton", sans-serif;
  font-size: 2.9rem;
  letter-spacing: normal;
  line-height: 1;
  text-align: left;
}
@media (max-width: 767px) {
  .hero__title span {
    margin: 0 0 0.4rem 0.3rem;
    font-size: 1.175rem;
  }
}

.hero__title--red {
  display: inline-flex;
  flex-direction: column;
  color: var(--primary-color);
  margin: 42rem 0 0 -32rem;
}
@media (max-width: 767px) {
  .hero__title--red {
    margin: 48.9rem 0 0 -7.4rem;
  }
}

.hero__title--white {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  mix-blend-mode: difference;
  margin: 0 0 0 9.6rem;
}
@media (max-width: 767px) {
  .hero__title--white {
    margin-left: 0.4rem;
  }
}
.hero__title--white img {
  width: 16rem;
  height: auto;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .hero__title--white img {
    width: 6.5rem;
  }
}

.hero__title-script {
  display: inline-flex;
  position: relative;
  z-index: 1;
  margin: -16.9rem 0 0 82.8rem;
}
@media (max-width: 767px) {
  .hero__title-script {
    margin: -3.6rem 0 0 10.2rem;
  }
}
.hero__title-script img {
  width: 50.3rem;
  height: 23.4rem;
}
@media (max-width: 767px) {
  .hero__title-script img {
    width: 22.4rem;
    height: auto;
  }
}

.hero__scroll-down {
  position: fixed;
  bottom: 4.4vh;
  left: 4rem;
  display: flex;
  gap: 2.4rem;
  place-items: center;
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  line-height: 1;
  opacity: 1;
  transition: var(--transition-hover);
}
@media (max-width: 767px) {
  .hero__scroll-down {
    position: fixed;
    top: 46.3rem;
    right: 2rem;
    bottom: auto;
    left: auto;
    gap: 1.4rem;
    font-size: 0.923rem;
  }
}
.hero__scroll-down img {
  width: 4rem;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .hero__scroll-down img {
    width: 2.4rem;
    height: auto;
  }
}
.hero__scroll-down.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__text {
  margin: 9.6rem auto 0;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 2.3;
}
.hero__text span {
  position: relative;
  padding-left: 0.8rem;
}
@media (max-width: 767px) {
  .hero__text span {
    padding-left: 0.2rem;
  }
}
.hero__text span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1.2rem;
  background-color: var(--primary-color);
}
@media (max-width: 767px) {
  .hero__text span::before {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .hero__text {
    margin-top: 7.5rem;
    font-size: 1.545rem;
    line-height: 2.6;
  }
}

.hero__period {
  margin: 7.8rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .hero__period {
    margin-top: 3.8rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.hero__period__title {
  background-color: #fff;
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .hero__period__title {
    padding: 0.45rem 1rem;
    font-size: 1.5rem;
  }
}

.hero__period__date {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 3.596rem;
  line-height: 1;
}
.hero__period__date strong {
  font-size: 4.795rem;
}
@media (max-width: 767px) {
  .hero__period__date strong {
    font-size: 2.415rem;
  }
}
.hero__period__date small {
  font-size: 2.098rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .hero__period__date small {
    font-size: 1.057rem;
  }
}
.hero__period__date img {
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .hero__period__date img {
    width: 1.8rem;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero__period__date {
    font-size: 1.811rem;
  }
}

.hero__button {
  margin-top: 10.8rem;
}
@media (max-width: 767px) {
  .hero__button {
    margin-top: 5.4rem;
  }
}

.news {
  display: flex;
  gap: 8rem;
  align-items: center;
  padding: 4.9rem 8rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .news {
    flex-direction: column;
    gap: 2.4rem;
    padding: 6.4rem 3rem 6.4rem;
  }
}

.news__title {
  font-family: "Anton", sans-serif;
  font-size: 2.719rem;
}
@media (max-width: 767px) {
  .news__title {
    font-size: 2.7rem;
    line-height: 1;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news__list {
    width: 100%;
    font-size: 1.5rem;
  }
}

.news__list__item {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news__list__item {
    flex-direction: column;
    font-size: 1.3rem;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
  }
}
.news__list__item time {
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .news__list__item time {
    font-size: 1.3rem;
  }
}
.news__list__item a {
  color: var(--text-color-primary);
  transition: var(--transition-hover);
}
@media (hover: hover) {
  .news__list__item a:hover {
    color: var(--hover-color);
    text-decoration: none;
  }
}

.overview {
  background: var(--primary-color) url("../img/overview_bg.webp") center top/cover no-repeat;
  padding: 24.6rem 4rem 35.1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .overview {
    padding: 12rem 0;
    background-image: url("../img/overview_bg_sp.webp");
  }
}

.overview__inner {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .overview__inner {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding: 0 4rem;
  }
}

.overview__box-text {
  color: #fff;
  white-space: nowrap;
}

.overview__title-en {
  font-family: "Anton", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .overview__title-en {
    font-size: 1.2rem;
  }
}

.overview__title-ja {
  margin: 10.2rem 0 0;
  font-size: 7.6rem;
  font-weight: 900;
  letter-spacing: -0.01rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .overview__title-ja {
    margin-top: 8.2rem;
    font-size: 3.8rem;
  }
}

.overview__text {
  margin: 7.2rem 0 0;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 2;
}
@media (max-width: 767px) {
  .overview__text {
    margin-top: 5.5rem;
    white-space: normal;
    font-size: 1.545rem;
    line-height: 2.4;
  }
}

.overview__box-image {
  flex-shrink: 0;
  position: relative;
  margin: 0 -18rem 0 0;
  width: 66.2rem;
  height: 70.2rem;
}
@media (max-width: 767px) {
  .overview__box-image {
    margin: 7.9rem 0 0;
    width: 31.5rem;
    height: 31.3rem;
  }
}
.overview__box-image .img1 {
  position: absolute;
  top: -0.4rem;
  left: 9.6rem;
  width: 56rem;
  height: 59.1rem;
}
@media (max-width: 767px) {
  .overview__box-image .img1 {
    top: 0;
    left: 4.5rem;
    width: 25rem;
    height: 26.3rem;
  }
}
.overview__box-image .img2 {
  position: absolute;
  bottom: 0.4rem;
  left: -0.6rem;
  width: 37.4rem;
  height: 21.9rem;
}
@media (max-width: 767px) {
  .overview__box-image .img2 {
    left: 0;
    bottom: 0;
    width: 16.6rem;
    height: 9.8rem;
  }
}

.guidelines {
  background: #F8F9FA;
  padding: 20rem 4rem;
}
@media (max-width: 767px) {
  .guidelines {
    padding: 12rem 3rem;
  }
}

.guidelines__inner {
  display: grid;
  gap: 11.2rem;
  max-width: 128rem;
  margin: 0 auto;
}
.guidelines__inner hr {
  border: none;
  height: 1px;
  background: var(--border-color);
}
@media (max-width: 767px) {
  .guidelines__inner {
    gap: 8rem;
  }
}

.guidelines__box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .guidelines__box-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.8rem;
  }
}

.guidelines__title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .guidelines__title {
    gap: 1.2rem;
  }
}
.guidelines__title small {
  font-family: "Anton", sans-serif;
  font-size: 8.319rem;
  letter-spacing: -0.067rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .guidelines__title small {
    font-size: 4rem;
  }
}
.guidelines__title strong {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .guidelines__title strong {
    font-size: 1.8rem;
  }
}

.guideline-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}
@media (max-width: 767px) {
  .guideline-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.guideline-link__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.06);
  color: var(--text-color-primary);
  font-size: 1.6rem;
  line-height: 1;
  padding: 1.6rem 2.4rem 1.6rem 3.2rem;
  text-decoration: none;
  transition: var(--transition-hover);
}
@media (max-width: 767px) {
  .guideline-link__item {
    font-size: 1.4rem;
    padding: 1.7rem 1rem 1.7rem 2rem;
  }
}
.guideline-link__item::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: url("../img/icon_arrow_circle.svg") center/100% 100% no-repeat;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .guideline-link__item::after {
    width: 2rem;
    height: 2rem;
  }
}
@media (hover: hover) {
  .guideline-link__item:hover {
    border-color: var(--text-color-primary);
  }
}

.guideline-block__title {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .guideline-block__title {
    gap: 1.2rem;
  }
}
.guideline-block__title strong {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .guideline-block__title strong {
    font-size: 2.2rem;
  }
}
.guideline-block__title small {
  color: var(--primary-color);
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .guideline-block__title small {
    font-size: 1.1rem;
  }
}

.guideline-block__list {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 3.8rem auto 0;
}

.guideline-block__list__item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #fff;
  padding: 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .guideline-block__list__item {
    padding: 2.85rem 2.4rem;
    font-size: 1.5rem;
    line-height: 1.5;
    gap: 1.2rem;
  }
}
.guideline-block__list__item::before {
  flex-shrink: 0;
  content: "";
  width: 1rem;
  height: 0.4rem;
  background-color: var(--primary-color);
}
.guideline-block__list__item small {
  display: block;
  margin-top: 1rem;
  color: var(--text-color-secondary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .guideline-block__list__item small {
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

.guideline-block__list-table {
  display: grid;
  grid-template-columns: 37.6rem 1fr;
  gap: 0.2rem;
  margin: 3.8rem auto 0;
}
@media (max-width: 767px) {
  .guideline-block__list-table {
    grid-template-columns: 1fr;
  }
}

.guideline-block__list-table__item-title {
  display: flex;
  align-items: center;
  padding: 4.8rem;
  background-color: #F2E6E6;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .guideline-block__list-table__item-title {
    padding: 1.9rem 2.4rem;
    font-size: 1.5rem;
  }
}

.guideline-block__list-table__item-text {
  padding: 4.8rem;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .guideline-block__list-table__item-text {
    padding: 3.2rem 2.4rem;
    font-size: 1.5rem;
  }
}
.guideline-block__list-table__item-text small {
  display: block;
  margin-top: 0.8rem;
  color: var(--text-color-secondary);
  font-size: 1.4rem;
}

.guideline-block__list-text {
  list-style: none;
  display: grid;
  margin: 4rem auto 0;
}

.guideline-block__list-text__item {
  font-size: 1.6rem;
  line-height: 1.75;
  opacity: 0.9;
}
.guideline-block__list-text__item::before {
  content: "■";
  margin-right: 0.4rem;
}
@media (max-width: 767px) {
  .guideline-block__list-text__item {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.flow {
  background: #fff;
  padding: 18rem 4rem;
}
@media (max-width: 767px) {
  .flow {
    padding: 12rem 3rem;
  }
}

.flow__inner {
  display: grid;
  grid-template-columns: 28rem 1fr;
  gap: 4rem;
  max-width: 128rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .flow__inner {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}

.flow__title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .flow__title {
    gap: 1.2rem;
  }
}
.flow__title small {
  font-family: "Anton", sans-serif;
  font-size: 4.319rem;
  letter-spacing: -0.067rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .flow__title small {
    font-size: 4rem;
  }
}
.flow__title strong {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .flow__title strong {
    font-size: 1.8rem;
  }
}

.flow__list {
  list-style: none;
  display: grid;
  gap: 3.3rem;
}
@media (max-width: 767px) {
  .flow__list {
    gap: 3.3rem;
  }
}

.flow__list__item {
  position: relative;
  display: grid;
  grid-template-columns: 22.4rem 1fr;
  align-items: center;
  gap: 1.6rem;
  background: var(--background-color-primary);
  padding: 4rem;
}
@media (max-width: 767px) {
  .flow__list__item {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 3.2rem 2.4rem 4rem;
  }
}
.flow__list__item:not(:last-child)::after {
  position: absolute;
  left: calc(50% - 0.6rem);
  bottom: -2rem;
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-right: 0.3rem solid var(--text-color-primary);
  border-bottom: 0.3rem solid var(--text-color-primary);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .flow__list__item:not(:last-child)::after {
    left: calc(50% - 0.6rem);
    bottom: -1.8rem;
  }
}
.flow__list__item .title {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .flow__list__item .title {
    flex-direction: column;
    gap: 1.6rem;
    font-size: 1.8rem;
  }
}
.flow__list__item .title span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--text-color-primary);
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
}
.flow__list__item .text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .flow__list__item .text {
    font-size: 1.5rem;
    text-align: center;
  }
}

.flow__list__item--red {
  background: var(--primary-color);
  color: #fff;
}

.flow__list__item--gold {
  background: var(--secondary-color);
  color: #fff;
}

.downloads {
  background: #F8F9FA;
  padding: 18rem 4rem;
}
@media (max-width: 767px) {
  .downloads {
    padding: 12rem 3rem;
  }
}

.downloads__inner {
  max-width: 128rem;
  margin: 0 auto;
}

.downloads__title {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .downloads__title {
    gap: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.downloads__title small {
  font-family: "Anton", sans-serif;
  font-size: 6.4rem;
  letter-spacing: -0.067rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .downloads__title small {
    font-size: 4rem;
  }
}
.downloads__title strong {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .downloads__title strong {
    font-size: 1.8rem;
  }
}

.download__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  margin: 8rem auto 0;
}
@media (max-width: 767px) {
  .download__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.download__list__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  height: 100%;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  color: var(--text-color-primary);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: var(--transition-hover);
}
@media (max-width: 767px) {
  .download__list__item a {
    padding: 4rem 2.4rem;
  }
}
.download__list__item a .icon img {
  width: 3.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .download__list__item a .icon img {
    position: absolute;
    width: 2rem;
  }
}
.download__list__item a .box-title {
  margin: 1.8rem 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .download__list__item a .box-title {
    margin: 0 0 0 3rem;
    gap: 0.8rem;
  }
}
.download__list__item a .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .download__list__item a .title {
    font-size: 1.7rem;
  }
}
.download__list__item a .type {
  padding: 0.2rem 0.5rem 0.3rem;
  border: 0.2rem solid var(--text-color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .download__list__item a .type {
    font-size: 0.8rem;
    padding: 0.1rem 0.3rem 0.1rem;
    border-width: 0.137rem;
  }
}
.download__list__item a .text {
  margin: 1.4rem 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .download__list__item a .text {
    margin: 1.5rem 4.8rem 0 0;
  }
}
.download__list__item a::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon_download_black.svg") center/100% 100% no-repeat;
  margin: 2.4rem 0 0 auto;
}
@media (max-width: 767px) {
  .download__list__item a::after {
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    right: 2.4rem;
    margin-top: 3rem;
  }
}
@media (hover: hover) {
  .download__list__item a:hover {
    border-color: #fff;
  }
}

.faq {
  background: #fff;
  padding: 18rem 4rem;
}
@media (max-width: 767px) {
  .faq {
    padding: 12rem 3rem;
  }
}

.faq__inner {
  display: grid;
  grid-template-columns: 26.4rem 1fr;
  gap: 8rem 4rem;
  align-items: start;
  max-width: 128rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}

.faq__title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .faq__title {
    gap: 1.2rem;
  }
}
.faq__title small {
  font-family: "Anton", sans-serif;
  font-size: 4.319rem;
  letter-spacing: -0.067rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq__title small {
    font-size: 4rem;
  }
}
.faq__title strong {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq__title strong {
    font-size: 1.8rem;
  }
}

.faq__list {
  display: grid;
  gap: 2px;
}
.faq__list details {
  background-color: var(--background-color-primary);
  padding: 4rem;
}
@media (max-width: 767px) {
  .faq__list details {
    padding: 3.33rem 2.2rem;
  }
}
.faq__list details::details-content {
  content-visibility: unset;
  display: block grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-hover);
}
.faq__list details[open]::details-content {
  grid-template-rows: 1fr;
}
.faq__list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .faq__list summary {
    font-size: 1.5rem;
    line-height: 1.5;
    gap: 1rem;
  }
}
.faq__list summary::-webkit-details-marker {
  display: none;
}
.faq__list summary::marker {
  content: none;
}
.faq__list summary::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin: 0 0 0 auto;
  border-right: 0.3rem solid var(--text-color-primary);
  border-bottom: 0.3rem solid var(--text-color-primary);
  transform: rotate(45deg);
  transition: var(--transition-hover);
}
.faq__list summary span {
  flex-shrink: 0;
  display: block;
  width: 5.6rem;
  font-family: "Anton", sans-serif;
  font-size: 2.8rem;
  line-height: 1.1428571429;
}
@media (max-width: 767px) {
  .faq__list summary span {
    width: 2rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.faq__list details[open] summary::after {
  transform: rotate(-135deg);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.faq__list__panel {
  min-height: 0;
  overflow: hidden;
}
.faq__list__panel p {
  margin: 1.6rem 5.6rem 0 5.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .faq__list__panel p {
    margin: 1.4rem 0 0 3rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.faq__bottom {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8rem;
}
@media (max-width: 767px) {
  .faq__bottom {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.faq__bottom__text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.75;
  border-right: 1px solid var(--border-color);
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .faq__bottom__text {
    justify-content: center;
    padding-right: 0;
    border-right: none;
    font-size: 1.5rem;
    text-align: center;
  }
}

.faq__bottom__button {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 3.2rem 4rem;
  background-color: var(--text-color-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3888888889;
  text-decoration: none;
  transition: var(--transition-hover);
}
@media (max-width: 767px) {
  .faq__bottom__button {
    padding: 2.6rem 3.2rem;
    font-size: 1.5rem;
    gap: 1rem;
  }
}
.faq__bottom__button span {
  padding: 0.2rem 0.5rem 0.3rem;
  border: 0.2rem solid #fff;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq__bottom__button span {
    font-size: 0.8rem;
    padding: 0.1rem 0.3rem 0.1rem;
    border-width: 0.137rem;
  }
}
.faq__bottom__button::after {
  flex-shrink: 0;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0 0 auto;
  background: url("../img/icon_download_white.svg") center/100% 100% no-repeat;
}
@media (max-width: 767px) {
  .faq__bottom__button::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}
@media (hover: hover) {
  .faq__bottom__button:hover {
    background-color: var(--hover-color);
  }
}

.contact {
  padding: 16rem 4rem 5.6rem;
  background: url("../img/contact_bg.webp") center/cover no-repeat;
}
@media (max-width: 767px) {
  .contact {
    padding: 12rem 0;
    background-image: url("../img/contact_bg_sp.webp");
  }
}

.contact__title-en {
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact__title-en {
    font-size: 1.4rem;
  }
}

.contact__title-ja {
  margin: 5.6rem auto 0;
  color: #fff;
  text-align: center;
  font-size: 6.9rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.2rem;
}
@media (max-width: 767px) {
  .contact__title-ja {
    margin-top: 5.6rem;
    font-size: 4rem;
    line-height: 1.25;
    letter-spacing: 0;
  }
}

.contact__text {
  margin: 4rem auto 0;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact__text {
    margin-top: 2.4rem;
    font-size: 1.545rem;
    line-height: 2.4;
  }
}

.contact__mail {
  display: block;
  width: fit-content;
  margin: 5.6rem auto;
  padding: 2.4rem 3.2rem;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact__mail {
    margin: 1.6rem auto 5.6rem;
    padding: 1.6rem;
    font-size: 1.5rem;
  }
}

.contact__info {
  display: grid;
  gap: 3.2rem;
  max-width: 80rem;
  margin: 5.6rem auto 9.6rem;
  padding: 4.8rem;
  background-color: var(--text-color-primary);
}
@media (max-width: 767px) {
  .contact__info {
    margin: 5.6rem 2.4rem 7.2rem;
    padding: 4.8rem 2.4rem;
  }
}

.contact__info__title {
  position: relative;
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__info__title {
    gap: 1.6rem;
    font-size: 1.5rem;
  }
}
.contact__info__title::after {
  content: "";
  width: 3.2rem;
  height: 1px;
  background-color: #fff;
}

.contact__info__list {
  display: grid;
  gap: 2.4rem;
  list-style: none;
}
.contact__info__list > li {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__info__list > li {
    font-size: 1.4rem;
  }
}
.contact__info__list > li span {
  display: flex;
  gap: 0.8rem;
}
.contact__info__list > li span::before {
  content: "●";
  color: var(--primary-color);
}
.contact__info__list .list-indent {
  display: flex;
  flex-direction: column;
  list-style: disc;
  margin: 0.8rem 0 0 4rem;
}
@media (max-width: 767px) {
  .contact__info__list .list-indent {
    gap: 0.8rem;
  }
}
.contact__info__list .list-indent > li {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__info__list .list-indent > li {
    font-size: 1.2rem;
  }
}
.contact__info__list .box-notes {
  display: grid;
  gap: 3.2rem;
  align-items: center;
  grid-template-columns: 11.6rem 1fr;
  width: 100%;
  margin-top: 1.6rem;
  padding: 2.4rem 1.6rem 2.4rem 3.2rem;
  background-color: #39364F;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes {
    grid-template-columns: 1fr;
    padding: 3.2rem 2.4rem;
    gap: 1.6rem;
  }
}
.contact__info__list .box-notes .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes .title {
    flex-direction: column;
    gap: 1.6rem;
    font-size: 1.2rem;
    text-align: center;
    min-height: inherit;
    font-weight: 700;
  }
}
.contact__info__list .box-notes .title::after {
  content: "";
  display: block;
  width: 1px;
  height: 4.2rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes .title::after {
    width: 3.2rem;
    height: 1px;
  }
}
.contact__info__list .box-notes .list-bg {
  display: flex;
  flex-direction: column;
  list-style: disc;
  margin-left: 1.6rem;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes .list-bg {
    gap: 0.8rem;
  }
}
.contact__info__list .box-notes .list-bg li {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes .list-bg li {
    font-size: 1.2rem;
  }
}
.contact__info__list .box-notes .text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__info__list .box-notes .text {
    font-size: 1.2rem;
    text-align: center;
  }
}

.contact__button {
  margin: 7.2rem auto 0;
}
@media (max-width: 767px) {
  .contact__button {
    margin-top: 5.6rem;
    padding: 0 3rem;
  }
}

.contact__address {
  margin-top: 7.2rem;
}

.l-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 3.2rem;
  padding: 4em 4.8rem;
  background: #fff;
}
@media (max-width: 767px) {
  .l-footer {
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 3.2rem;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .l-footer__logo {
    gap: 2.4rem;
  }
}
.l-footer__logo img {
  width: 10.5rem;
  height: auto;
}
@media (max-width: 767px) {
  .l-footer__logo img {
    width: 8.3rem;
  }
}
.l-footer__logo span {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  color: var(--text-color-primary);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .l-footer__logo span {
    gap: 1.8rem;
    font-size: 1.3rem;
  }
}
.l-footer__logo span::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.8rem;
  background-color: var(--border-color);
}
@media (max-width: 767px) {
  .l-footer__logo span::before {
    display: none;
  }
}

.l-footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-color-primary);
}
@media (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.1rem;
  }
}