@charset "UTF-8";
:root {
  --page-width: 1366px; /* ページ全体の最大幅 */
  --page-outer-width: 1035px; /* ページの最大幅 */
  --page-inner-width: 960px; /* ページの最大幅 */
  --ratio-w: 111; /* 画像の横比 */
  --ratio-h: 86; /* 画像の縦比 */
  /* 画像高さの 50% = 50% * (縦/横)
     → 列幅に対する % で指定（Grid列幅に依存して常に正確） */
  --offset-pc: calc(30% * (var(--ratio-h) / var(--ratio-w)));
  --card-max: m.myClamp(80, 160, 414, 950); /* カードの最大幅 */
  --gap: clamp(72px, 2.4vw, 24px);
  --section-gap: 136px;
  --section-gap-sp: 80px;
  --gold:#d7b46a;
  --bg:#0b0b0e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 779px) {
  body {
    font-size: 1rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.heading {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  font-weight: 600;
  color: var(--gold);
  word-break: break-all;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align-last: left;
  margin: 0;
  margin-bottom: 48px;
}
@media (min-width: 779px) {
  .heading {
    font-size: clamp(6.875rem, -1.7916666667rem + 17.3333333333vw, 8.5rem);
    margin-bottom: 104px;
  }
}

.l-page {
  background: url("../images/bg.png"), linear-gradient(360deg, #C9151D 0%, #8D1015 100%);
  background-repeat: repeat;
  background-blend-mode: overlay;
  background-size: 250%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 779px) {
  .l-page {
    background-size: 100%;
  }
}

.alpa-logo.white path {
  fill: white;
}
.alpa-logo.red path {
  fill: #d73225;
}
.alpa-logo__header {
  width: 54px;
  height: auto;
  z-index: 100;
}
@media (min-width: 779px) {
  .alpa-logo__header {
    width: 86px;
  }
}
.alpa-logo__footer {
  width: 80px;
}
@media (min-width: 779px) {
  .alpa-logo__footer {
    width: 100%;
    max-width: 168px;
  }
}

.arrow-down {
  position: relative;
  line-height: 1;
}
.arrow-down::after {
  content: "";
  background-image: url("../images/arrow-down.png");
  display: block;
  margin: 0 auto;
  animation: arrowMove 1s ease-in-out infinite;
  width: 13px;
  height: 8px;
  background-size: contain;
  margin-top: 8px;
}

@keyframes arrowMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.jp {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (max-width: 779px) {
  .jp {
    font-size: 1rem;
  }
}

.en {
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width: 779px) {
  .en {
    font-family: "Baskervville SC", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 779px) {
  .sp-only {
    display: inline;
  }
}

.main-visual {
  position: relative;
  height: 100dvh;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (min-width: 779px) {
  .main-visual {
    justify-content: center;
  }
}
.main-visual h1 {
  padding: 30px;
}
.main-visual h1 img {
  width: 100%;
  max-width: 650px;
  animation: floatY 3s ease-in-out infinite;
}
@media (max-width: 779px) {
  .main-visual h1 img {
    max-width: auto;
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.main-visual__msg {
  color: #fff;
  text-align: center;
  margin-bottom: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  margin-bottom: 60px;
  padding: 15px;
}
@media (min-width: 779px) {
  .main-visual__msg {
    height: 50vh;
    margin-top: 0;
    margin-bottom: 20vh;
  }
}
.main-visual__msg img {
  width: 100%;
  max-width: 772px;
}

.footer-gradation {
  position: relative;
}
.footer-gradation::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(89, 8, 13, 0) 0%, rgba(89, 8, 13, 0.6) 40%, rgb(89, 8, 13) 100%);
  mix-blend-mode: multiply;
  z-index: 0;
}
.footer-gradation section {
  position: relative;
  z-index: 1;
}

.footer {
  background-color: #FEFCF2;
  padding: 48px 0 50px;
  margin-top: auto;
  text-align: center;
}
@media (min-width: 779px) {
  .footer {
    padding: 120px 0 50px;
  }
}
.footer__content {
  max-width: var(--page-inner-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
@media (min-width: 779px) {
  .footer__content {
    grid-template-columns: auto 291px;
    display: grid;
    flex-direction: row;
    justify-content: center;
    max-width: 1083px;
  }
}
.footer__info {
  text-align: left;
  font-size: 14px;
  color: #4B4B4B;
}
.footer__access {
  font-weight: bold;
  margin-top: 30px;
}
@media (min-width: 779px) {
  .footer__access {
    margin-top: 0;
  }
}
.footer__note {
  margin-top: 35px;
}
.footer__note li {
  font-size: 13px;
}
.footer__note li:nth-child(1) {
  width: 100%;
}
.footer__logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__logo .pagetop {
  white-space: nowrap;
}
@media (min-width: 779px) {
  .footer__logo {
    width: auto;
    align-items: flex-end;
    gap: 58px;
    margin-top: 20px;
  }
}
.footer__nav {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin: 0;
  margin-top: 30px;
}
.footer__nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px 20px;
  flex-wrap: wrap;
}
@media (min-width: 779px) {
  .footer__nav-list {
    gap: 10px 40px;
  }
}
.footer__nav-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-item a {
  color: #4B4B4B;
  text-decoration: none;
}
.footer__nav-item a:hover {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #4B4B4B;
  display: block;
  margin-top: 80px;
}

body.header-active .gnav::after {
  opacity: 1;
}

.gnav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  height: 248px;
  pointer-events: none;
}
.gnav a {
  pointer-events: all;
}
.gnav::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(121, 6, 6, 0.6) 0%, rgba(121, 6, 6, 0.3) 50%, rgba(121, 6, 6, 0) 100%);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
.gnav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 779px) {
  .gnav {
    height: 136px;
  }
  .gnav__inner {
    padding: 16px;
  }
  .gnav .logo {
    font-size: 1.2rem;
    z-index: 100;
  }
}

.nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: all;
}
@media (max-width: 779px) {
  .nav {
    gap: 32px;
  }
}
.nav a {
  font-family: "Arsenal", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: 0.3s opacity;
  pointer-events: auto;
}
.nav a:hover {
  opacity: 0.7;
}
@media (max-width: 779px) {
  .nav a {
    font-size: 0.875rem;
    writing-mode: vertical-rl;
    line-height: 1;
  }
}
.nav__item {
  margin: 0;
  padding: 0;
}
.nav--sp {
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: 30px;
}
@media (min-width: 779px) {
  .nav--sp {
    display: none;
  }
}
.nav--pc {
  display: none;
}
@media (min-width: 779px) {
  .nav--pc {
    display: flex;
  }
}

body.noscroll {
  overflow: hidden;
}

body.header-active #menu {
  display: block;
}
body.header-active #menuBtn {
  transform: translateX(0px) !important;
}

#menu {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: none;
}
#menu.active {
  visibility: visible;
  opacity: 1;
}
#menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100dvh;
  inset: 0;
  background: rgba(143, 0, 2, 0.8);
  mix-blend-mode: multiply;
}
#menu ul {
  list-style: none;
  margin: 0;
  margin-top: 140px;
  padding: 60px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 10;
  position: relative;
}
#menu a {
  color: white;
  text-decoration: none;
  font-size: 26px;
  pointer-events: all;
  letter-spacing: 0.05em;
  font-family: "Arsenal", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 779px) {
  #menu, #menuBtn {
    display: none !important;
  }
}
/* ハンバーガーメニュー（2本線） */
.menu-btn {
  position: relative;
  width: 30px;
  height: 13px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: all 0.3s ease;
  /* 上下の線 */
  /* ホバー時：上下の距離を近づける */
}
.menu-btn__wrapper {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 100;
}
.menu-btn span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  bottom: 0;
}
.menu-btn:hover span:nth-child(1) {
  top: 1px;
}
.menu-btn:hover span:nth-child(2) {
  bottom: 1px;
}

/* クリック時（activeクラス付与で×に変形） */
#menuBtn {
  transform: translateX(80px);
  transition: all 0.3s ease;
}
#menuBtn.active {
  width: 33px;
  height: 19px;
}
#menuBtn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
#menuBtn.active span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-25deg);
}

.pagetop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 779px) {
  .pagetop {
    bottom: 50px;
    right: 50px;
  }
}
.pagetop::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  transform: rotate(45deg);
  margin-bottom: 6px;
}
.pagetop:hover {
  transform: translateY(-5px);
  opacity: 0.85;
}

.c-notes {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.c-notes li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}

.grid {
  display: grid;
  grid-template-columns: 1fr; /* SP: 1列 */
  gap: var(--gap);
}
.grid h2 {
  font-size: 80px;
}

@media (min-width: 779px) {
  .grid {
    grid-template-columns: 1fr 1fr; /* PC: 2列 */
    /* 左列を下げるぶん、下端が欠けないよう余白を確保 */
    padding-bottom: var(--offset-pc);
  }
}
.cards {
  display: grid;
  gap: 36px;
}
@media (min-width: 779px) {
  .cards--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards__item {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: center;
  color: white;
}
.cards__title {
  font-size: 1rem;
  font-weight: 300;
  margin: 30px 0 15px;
}
@media (min-width: 779px) {
  .cards__title {
    margin: 1em 0;
  }
}
.cards__date {
  display: block;
  font-family: "Arsenal", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  margin-top: 5px;
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #d9d1bf;
  color: white;
}
.cards__date span {
  font-size: 1.5rem;
}
.cards__place {
  margin: 0;
  margin-top: 5px;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
}

.card {
  display: block;
  border-radius: 8px;
  background-color: #fff;
  aspect-ratio: calc(var(--ratio-w) / var(--ratio-h));
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .card {
    transition: all 0.3s ease;
  }
  .card::before {
    transition: opacity 0.3s ease;
    opacity: 0;
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url("../images/view-more.png");
    background-repeat: no-repeat;
    background-position: center bottom 45px;
    background-size: 83px auto;
  }
  .card:hover::before {
    opacity: 1;
  }
  .card:hover {
    transform: scale(0.95);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  }
}
.card::after {
  content: "";
  display: block;
  background-image: url(../images/card-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card__inner {
  display: grid;
  place-items: center;
  height: 100%;
}
.card__logo {
  text-align: center;
}
.card__logo img {
  width: 50%;
}

.floor-map {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 170px;
  margin-bottom: 70px;
  padding: 15px;
  display: grid;
  position: relative;
  text-align: center;
}
@media (min-width: 779px) {
  .floor-map {
    margin-bottom: 170px;
  }
}
.floor-map .heading {
  font-size: 80px;
  margin: -160px 0 0;
  padding-top: 160px;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media (min-width: 779px) {
  .floor-map .heading {
    font-size: 136px;
    margin-top: -170px;
    margin-left: calc(clamp(0rem, -29.53125rem + 46.875vw, 5.625rem) * -1);
  }
}
.floor-map p {
  color: white;
}
.floor-map::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: calc(100% - 160px);
  background-color: #BA4242;
  mix-blend-mode: multiply;
  isolation: isolate;
  border-radius: 16px;
  top: 160px;
  left: 16px;
  z-index: 0;
}
.floor-map__inner {
  padding: 15px;
  z-index: 1;
}
.floor-map__txt1 {
  display: inline-block;
  max-width: 730px;
  margin-top: 30px;
}
.floor-map__img {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
.floor-map__img img {
  position: relative;
  width: 100%;
  max-width: 662px;
}
.floor-map__txt2 {
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 0.7164383562rem + 1.095890411vw, 1.25rem);
  font-weight: 300;
}
.floor-map__txt2 p {
  margin: 0;
}
.floor-map__txt2 p:first-child {
  margin: 24px 0 16px;
}
.floor-map__txt2 .arrow-down {
  font-size: 14px;
  margin-bottom: 0;
}

.new-opens {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 20px;
}
@media (min-width: 779px) {
  .new-opens {
    padding: clamp(14.375rem, -3.0514705882rem + 35.2941176471vw, 18.125rem) 30px 0;
  }
}
.new-opens .new-opens__desc {
  width: fit-content;
  margin: 0;
  margin-left: auto;
  margin-bottom: 48px;
  padding-left: 30px;
  color: white;
}
@media (min-width: 779px) {
  .new-opens .new-opens__desc {
    position: absolute;
    top: 0;
    left: calc(50% + 38px);
  }
}
.new-opens .new-opens__desc .heading {
  margin: 0;
}
.new-opens .new-opens__desc p {
  line-height: 1.5;
  font-weight: 300;
}

.new-open__item {
  width: 100%;
  margin-inline: auto; /* SP時は中央寄せ */
  perspective: var(--page-width);
  position: relative;
}
.new-open__inner {
  position: relative;
  width: 100%;
  aspect-ratio: calc(var(--ratio-w) / var(--ratio-h));
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1);
  margin: 0;
}
.new-open__inner a {
  padding: 26px;
}
.new-open__inner a::after {
  content: "";
  display: block;
  background-image: url("../images/card-frame.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (hover: hover) and (pointer: fine) {
  .new-open__inner a::before {
    opacity: 0;
    transition: 0.3s opacity;
    content: "";
    background-image: url("../images/view-more.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px auto;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: all;
  }
  .new-open__inner a:hover::before {
    opacity: 1;
  }
  .new-open__inner a:hover {
    padding: 18px;
  }
}
.new-open__name {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.95rem;
  color: #d9d1bf;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
}
.new-open__name img {
  display: block;
  margin: 32px auto 10px;
}
.new-open__date {
  font-family: "Arsenal", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  margin-top: 10px;
  text-align: center;
  color: white;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.new-open__date span {
  font-size: 20px;
}
@media (min-width: 779px) {
  .new-open__date {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
  .new-open__date span {
    font-size: 1.5rem;
  }
}
.new-open__place {
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 300;
  color: white;
}
@media (min-width: 779px) {
  .new-open__place {
    margin-top: 5px;
    font-size: 1.125rem;
  }
}

.new-open__item.is-inview .new-open__inner {
  transform: rotateY(180deg);
}
.new-open__item.is-inview .new-open__inner:hover {
  transform: rotateY(180deg) scale(0.95);
}
.new-open__item.is-inview .new-open__inner:hover .new-open__frame {
  box-shadow: 0 10px 26px transparent, inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.new-open__frame {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: clip;
  transition: all 0.3s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (min-width: 779px) {
  .new-open__frame {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
}
.new-open__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.back {
  background: #9b0b0b;
} /* 透け防止の下地 */
.front {
  transform: rotateY(180deg);
}

/* ============ PC時の“右上スタート & ジグザグ”指定 ============ */
@media (min-width: 779px) {
  /* 左列のカード（= 偶数番）だけ画像高さの50%分下げる */
  .new-open__item:nth-child(even) {
    top: 30%;
  }
}
@media (max-width: 779px) {
  .san-ai .new-open__name img {
    width: 46.783625731%;
  }
  .mary-quant .new-open__name img {
    width: 46.783625731%;
  }
  .risa-magli .new-open__name img {
    width: 42.1052631579%;
  }
  .biple .new-open__name img {
    width: 37.4269005848%;
  }
  .typy .new-open__name img {
    width: 37.4269005848%;
  }
  .rojita .new-open__name img {
    width: 56.1403508772%;
  }
}
.cafe-restaurant {
  max-width: var(--page-outer-width);
  margin: var(--section-gap-sp) auto;
  padding: 15px;
}
@media (min-width: 779px) {
  .cafe-restaurant {
    margin: var(--section-gap) auto;
  }
}
.cafe-restaurant .heading {
  text-align: center;
  font-size: 36px;
}
@media (min-width: 779px) {
  .cafe-restaurant .heading {
    font-size: 96px;
  }
}
.cafe-restaurant__inner {
  width: 100%;
  max-width: var(--page-inner-width);
  margin: 0 auto;
}

.renewal-open {
  max-width: var(--page-outer-width);
  margin: var(--section-gap-sp) auto 0;
  padding: 15px;
}
.renewal-open .heading {
  text-align: center;
  font-size: 72px;
}
@media (min-width: 779px) {
  .renewal-open .heading {
    font-size: clamp(4.5rem, -7.671875rem + 25vw, 8.5rem);
  }
}
.renewal-open__inner {
  width: 100%;
  max-width: var(--page-inner-width);
  margin: 0 auto;
  padding-bottom: var(--section-gap-sp);
}
@media (min-width: 779px) {
  .renewal-open__inner {
    padding-bottom: var(--section-gap);
  }
}
.renewal-open .cards__item:nth-child(1) img, .renewal-open .cards__item:nth-child(2) img {
  width: 71.9594594595%;
}

/* View More */
/* ========================= */
.view-more {
  margin: 0 auto 50px;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 779px) {
  .view-more {
    margin: 0 auto var(--section-gap);
    padding: 0;
  }
}
.view-more p {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  font-weight: 300;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 64px;
  max-width: 400px;
  border-radius: 30px;
  font-size: 30px;
  background-color: white;
  font-family: "Arsenal", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f00;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(0.95);
  color: #CD0000;
}/*# sourceMappingURL=screen.css.map */