@charset "utf-8";

:root {
  /* Brand colors */
  --color-main: #C62E26;
  --color-sub: #C6A394;
  --color-bg: #F8F4EF;
  --color-bg-sub: #F8ECE8;
  --color-text: #222;

  /* Layout */
  --container-max: 1080px;
  --content-padding: 20px;
  --header-h: 180px;

  /* Fonts */
  --font-main: "Zen Kaku Gothic Antique", sans-serif;
  --font-sub: "Zen Maru Gothic", sans-serif;
  --font-number: "Lato", sans-serif;
  --font-base: 16px;

  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1080px;
  --bp-xl: 1280px;

  /* transition */
  --ease: cubic-bezier(.2, .6, 0, 1);
}

html {
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  touch-action: manipulation;
  user-select: auto;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h, 72px) + 8px)
}

*,
*::before,
*::after {
  box-sizing: inherit
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: #222;
  background-color: #F8F4EF;
  overflow-x: hidden;
}

/*================================
Component
=================================*/

/* 見出し */
.c-head {
  margin: 0 auto 6rem;
  text-align: center;
  font-family: var(--font-main);
}

.c-title {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: var(--font-main);
}

.c-sub-title {
  font-size: 2.4rem;
  color: var(--color-main);
  font-family: var(--font-sub);
}

.c-lead {
  margin-top: 4rem;
}

/* ボタン */
.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 288px;
  max-width: 100%;
  padding: 1.6rem 1.6rem 1.8rem;
  border: 2px solid currentColor;
  border-radius: 28px;
  background-color: transparent;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .3s ease,
    color .3s ease,
    transform .3s ease;
}

.c-btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: transform .3s ease;
}

/* hover時に矢印が少し動く */
.c-btn:hover::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.c-btn--primary {
  background-color: var(--color-main);
}

.c-btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 288px;
  max-width: 100%;
  padding: 1.8rem;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: #222;
  background-color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  transition: all .3s ease;
}

.c-btn-icon:hover {
  transform: translateY(-4px);
}

.c-btn-icon__icon {
  width: auto;
  height: 24px;
  display: block;
}

.c-btn-icon__text {
  white-space: nowrap;
}

.c-btn--red {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}

.c-btn--white {
  background-color: #fff;
  color: var(--color-main);
  border-color: var(--color-main);
}

.c-btn--area {
  background-color: #fff;
  color: var(--color-main);
  border-color: var(--color-main);
}

.c-btn--area::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}

@media (max-width: 768px) {

  /* 見出し */
  .c-head {
    margin: 0 auto 3rem;
  }

  .c-title {
    font-size: 2.4rem;
    margin-bottom: -12px;
  }

  .c-sub-title {
    font-size: 2rem;
  }

  .c-lead {
    margin-top: 3rem;
    font-size: 1.4rem;
    text-align: left;
  }

  /* ボタン */
  .c-btn {
    font-size: 1.4rem;
    width: 240px;
  }

  .c-btn-icon {
    font-size: 1.4rem;
    padding: 1.4rem;
  }
}

/*================================
Utility
=================================*/

.bg-white {
  background-color: #fff;
}

.pc-hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

.u-text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .pc-hidden {
    display: block;
  }

  .sp-hidden {
    display: none;
  }
}

/*================================
layout
=================================*/
.l-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .l-container {
    padding: 0 var(--content-padding);
  }
}

@media (max-width: 768px) {
  .top-slider__container.l-container {
    padding-inline: 0;
  }
}

/* header
---------------------------------*/

header {
  position: relative;
  background-color: unset !important;
}

.header_flex {
  display: flex;
  justify-content: space-between;
}

/* header_wrapを固定して中央配置 */
.header_wrap {
  background: url(../img/header/bg_header.svg) center / cover no-repeat;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: auto;
  min-height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
  aspect-ratio: 2215 / 260;
}

.header_wrap>* {
  pointer-events: auto;
}

/* site_logoを中央に配置 */
.site_logo {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: auto;
  aspect-ratio: 134 / 108;
  z-index: 1000;
  opacity: 1;
}

.site_name {
  position: absolute;
  top: -99999px;
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 900;
}

.nav_menu-top {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 16px 0;
  min-height: 68px;
  z-index: 1200;
}

.nav_menu-top ul {
  list-style: none;
  margin: 0 -20px 0 0;
  padding: 0;
  display: flex;
}

.nav_menu-top li {
  margin-right: 32px;
}

li.nav_list a {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

li.nav_list.achieve a {
  color: #F7DA06;
}

.nav_menu-top li:nth-child(4)::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 32px;
  width: 0;
  height: 15px;
  border-left: 2px solid #fff;
  border-radius: 3px;
}

li#google_translate_element {
  margin-right: 115px;
  margin-bottom: 10px;
  text-align: right;
  z-index: 1000;
  list-style: none;
}

.goog-te-gadget-simple {
  border: none !important;
  border-radius: 5px;
}

/* ハンバーガーメニュー */
.hamburger {
  position: fixed;
  display: flex;
  top: 12px;
  right: 1.5vw;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  margin-right: 16px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  z-index: 1200;
}

.hamburger.is-show {
  position: fixed;
  z-index: 1200;
}

.hamburger span {
  position: relative;
  display: block;
  width: 34px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  margin-bottom: 16px;
  width: 34px;
}

.hamburger span:nth-child(2) {
  margin-bottom: 16px;
  width: 54px;
}

.hamburger span:nth-child(3) {
  width: 74px;
}

/* ハンバーガーメニュー クリック時の動作 */
.hamburger.active span {
  position: absolute;
  right: -50%;
  top: 50%;
  width: 64px !important;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(20deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-20deg);
}

/* オーバーレイ背景 - 右上から赤く広がる円形エフェクト */
.overlay-background {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: #C62E26;
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.overlay-background.active {
  width: 300vmax;
  height: 300vmax;
  opacity: 0.98;
  visibility: visible;
}

/* オーバーレイメニュー */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 50%;
  transform: translateX(150%);
  width: 100%;
  max-width: 1080px;
  height: 100%;
  text-align: left;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease-out 0.3s, opacity 0.5s ease-out 0.3s;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1100;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.overlay::-webkit-scrollbar {
  display: none;
}

/* オーバーレイメニューが表示される時 */
.overlay.active {
  opacity: 1;
  transform: translateX(50%);
  visibility: visible;
  padding-bottom: 60px;
}

.overlay_menu {
  list-style: none;
  padding: 0;
  margin: 92px 0 0 40px;
}

.overlay_list {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
}

.overlay_list-menu {
  margin-bottom: 9px;
}

.sub_list-lest {
  margin-bottom: 20px;
}

.overlay_list a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.overlay_list-sub {
  margin-bottom: 0;
}

.overlay_list-sub a {
  font-size: 2rem;
}

/* 次に sub が続かない sub（＝最後の sub） */
.overlay_menu .overlay_list-sub:not(:has(+ .overlay_list-sub)) {
  margin-bottom: 30px;
}


.overlay_list a span,
.overlay_list span {
  display: block;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: -12px;
}

.overlay_list a:hover {
  opacity: 0.8;
}

.overlay_button {
  margin: 20px 0 0 40px;
  display: flex;
  gap: 20px;
}

.overlay_button-app a {
  display: block;
  transition: all 0.3s ease;
}

.overlay_button-app a:hover {
  transform: scale(1.05);
}

.overlay_button-app img {
  display: block;
  width: 170px;
  height: auto;
}

.overlay_flex {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  padding-bottom: 40px;
  margin-right: 26px;
}

/* ソーシャルアイコンのスタイル */
.social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.social-icons a {
  margin: 10px 0;
  display: block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons img {
  width: 110px;
  height: 110px;
}

.header__copyright {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}


@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 0%;
  }

  40% {
    opacity: 0.7;
    top: 30%;
  }

  70% {
    opacity: 0.5;
    top: 70%;
  }

  100% {
    opacity: 0.2;
    top: 90%;
  }
}

@media (max-width: 768px) {
  .header_wrap {
    background: url(../img/header/bg_header_sp.svg) center / cover no-repeat;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: auto;
    min-height: 100px;
    aspect-ratio: 390 / 116;
  }

  .site_logo {
    width: 64px;
  }

  .hamburger {
    margin-right: 10px;
    width: 64px;
    height: 64px;
  }

  .hamburger span {
    width: 20px;
  }

  .hamburger span:nth-child(1) {
    margin-bottom: 10px;
    width: 20px;
  }

  .hamburger span:nth-child(2) {
    margin-bottom: 10px;
    width: 34px;
  }

  .hamburger span:nth-child(3) {
    width: 54px;
  }

  .overlay_menu {
    margin: 40px 0 0 20px;
  }

  .overlay_list {
    margin-bottom: 1.4rem;
    font-size: 1.8rem;
  }

  .overlay_list a {
    font-size: 1.8rem;
  }

  .overlay_list a span,
  .overlay_list span {
    font-size: 1.2rem;
  }

  .overlay_list-sub a {
    font-size: 1.6rem;
  }

  .overlay_button {
    flex-direction: column;
    margin: 20px 0 0 20px;
    gap: 10px;
  }

  .overlay .sns-links__list {
    margin: 20px 0 0 20px;
  }

  .overlay_flex {
    position: static;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 0;
    margin-right: 20px;
    margin-left: 20px;
  }

  .social-icons {
    align-items: flex-start;
    gap: 0;
  }

  .search_icon-img {
    display: none;
  }
}

/* l-footer
---------------------------------*/
/* フッター前 公式アプリ */
.footer-app {
  border-radius: 12px;
}

.footer-app__content {
  background-image: url(../img/footer/bg_app.svg);
  background-repeat: repeat;
  background-size: auto;
  border-radius: 10px;
  padding: 6rem var(--content-padding);
}

.footer-app__link-wrap {
  display: flex;
  gap: 10rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}

.footer_app__app-icon img {
  width: 180px;
  height: auto;
}

.footer_app__button-app {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.button-app__img {
  width: 240px;
  height: auto;
  aspect-ratio: 304 / 91;
}

.footer-app__note {
  color: #7B7B7B;
  text-align: center;
  font-size: 12px;
}

.footer-prev {
  padding-bottom: 12rem;
}

.footer-prev-link {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
  transition: opacity .3s ease;
}

.footer-prev-link__link:hover {
  opacity: 0.9;
}

.footer-prev-link__img {}

/* パンくず */
.breadcrumb {
  padding: 2rem 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.breadcrumb__item::after {
  content: '>';
  margin: 0 0.8rem;
  color: #999;
}

.breadcrumb__item:last-child::after {
  content: '';
  margin: 0;
}

.breadcrumb__link {
  color: #A8A8A8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__current {
  color: #333;
}

/* フッター */
.l-footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 110px;
}

.footer__container {
  text-align: center;
  position: relative;
}

/* ページトップへ戻るボタン */
.page-top {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page-top__button {
  width: 54px;
  height: 54px;
  background-color: var(--color-main);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.page-top__button:hover {
  opacity: 0.8;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-image {
  width: 140px;
  height: auto;
}

/* フッターナビ */
.footer-nav {
  margin-bottom: 30px;
}

.footer-nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav__item {
  position: relative;
}

.footer-nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}

.footer-nav__link:hover {
  opacity: 0.7;
}

.footer-nav__submenu {
  display: none;
}

/* フッターナビサブ */
.footer-nav-sub {
  margin-bottom: 20px;
}

.footer-nav-sub__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav-sub__link {
  color: #C9C9C9;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-nav-sub__link:hover {
  opacity: 0.7;
}

/* ブランドリンク */
.brand-links {
  margin-bottom: 20px;
  position: relative;
}

.brand-links__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.brand-links__item {
  width: calc((100% - 150px) / 6);
  min-width: 120px;
}

.brand-links__link {
  display: block;
  transition: opacity 0.3s ease;
}

.brand-links__link:hover {
  opacity: 0.9;
}

.brand-links__image {
  width: 100%;
  height: auto;
  display: block;
}

/* SNSリンク */

.sns-links {
  margin-bottom: 40px;
}

.overlay .sns-links {
  margin-bottom: 0;
}

.sns-links__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.overlay .sns-links__list {
  justify-content: flex-start;
  margin: 30px 0 0 40px;
}

.sns-links__item {
  width: 28px;
  height: 28px;
}

.sns-links__link {
  display: block;
  transition: opacity 0.3s ease;
}

.sns-links__link:hover {
  opacity: 0.9;
}

.sns-links__image {
  width: 100%;
  height: auto;
  display: block;
}

/* コピーライト */
.footer__copyright {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

/* 追尾固定フッター（SP用） */
.fixed-footer {
  display: none;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .breadcrumb__item {
    font-size: 1.2rem;
  }

  .footer-app {
    border-radius: 10px;
  }

  .footer-app__link-wrap {
    gap: 3rem;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .footer_app__app-icon img {
    width: 80px;
    height: auto;
  }

  .footer_app__button-app {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .button-app__img {
    width: 120px;
  }

  .footer-prev {
    padding-bottom: 6rem;
  }

  .footer-prev-link {
    flex-direction: column;
  }

  .footer-app__note {
    text-align: left;
    line-height: 1.5;
  }

  .footer__container {
    padding-bottom: 8rem;
  }

  .page-top {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .page-top__button {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 40px;
    height: 40px;
  }

  .l-footer {
    padding: 80px 0 100px;
    margin-top: 60px;
  }

  .footer__logo-image {
    width: 100px;
    height: auto;
    aspect-ratio: 126 / 100;
  }

  .footer-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    justify-content: flex-start;
  }

  .footer-nav__item {
    width: 46%;
    text-align: left;
  }

  .footer-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-nav__link {
    font-size: 1.4rem;
  }

  .footer-nav__submenu {
    display: block;
    margin-top: 10px;
  }

  .footer-nav__submenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav__submenu-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-nav-sub__list {
    gap: 10px;
    row-gap: 0px;
  }

  .brand-links__list {
    gap: 1rem;
    justify-content: space-between;
  }

  .brand-links__item {
    width: calc((100% - 60px) / 3);
    min-width: 86px;
  }

  .fixed-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #C62E26;
    z-index: 1000;
  }

  .fixed-footer__list {
    list-style: none;
    display: flex;
    justify-content: space-around;
  }

  .fixed-footer__item {
    flex: 1;
  }

  .fixed-footer__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 5px;
    font-size: 11px;
  }

  .fixed-footer__icon {
    width: auto;
    height: 24px;
  }

  .fixed-footer__text {
    font-size: 1rem;
    font-weight: 700;
  }
}



/*================================
content
=================================*/

/* スマホ用の店舗検索・LINE友だち募集ボタン */
.store_line-buttons {
  display: none;
}

/* サーチアイコン */
.search_icon {
  position: relative;
  z-index: 999;
  cursor: pointer;
}

.search_icon-img {
  position: fixed;
  right: 17px;
  bottom: 4%;
  width: 110px;
  height: auto;
}


/* 404ページ */
.page-404 {
  position: relative;
  margin-top: 250px;
}

.page-404__inner {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 100px;
}

.page-404__title {
  font-size: 80px;
  font-weight: 900;
  color: var(--color-main);

  @media (max-width: 767px) {
    font-size: 60px;
  }
}

.page-404__desc {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-main);

  @media (max-width: 767px) {
    font-size: 30px;
  }
}

.page-404__text {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-main);
  margin-top: 30px;

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.page-404__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  border-radius: 100vh;
  background-color: var(--color-main);
  width: 288px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 90px;
  transition: background-color 0.3s ease;
  border: 2px solid var(--color-main);
  position: relative;

  @media (max-width: 767px) {
    margin-top: 60px;
  }
}

.page-404__btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (any-hover: hover) {
  .page-404__btn:hover {
    background-color: #fff;
    color: var(--color-main);
  }

  .page-404__btn:hover::after {
    border-color: var(--color-main);
  }
}