@charset "UTF-8";

:root {
  --ppc-header-height: 60px;
  --ppc-color-red: #ff0033;
  --ppc-color-gray-90: #3f3a39;
  --ppc-color-gray-60: #606060;
  --ppc-color-gray-20: #e0e0e0;
  --ppc-color-white: #ffffff;
  --ppc-shadow: 0 2px 6px -2px rgb(0 0 0 / 8%);
}

body {
    overflow-x: visible;
}

.ppcHeader {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--ppc-color-white);
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.ppcHeader a:hover,
.ppcHeader button:hover {
  opacity: 1;
}

.ppcHeader__main {
  position: relative;
  z-index: 992;
  padding: 0 20px;
  border-bottom: 1px solid var(--ppc-color-gray-20);
}

.ppcHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--ppc-header-height);
  margin: 0 auto;
}

.ppcHeader__logoImage {
  display: block;
  height: 30px;
  width: auto;
}

.ppcHeader__menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.ppcHeader__nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ppcCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 0 14px;
    border-radius: 14.5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #bababa;
  color: var(--ppc-color-gray-90);
  background: #fff;
}
.ppcHeader__actionList .ppcCta {
    min-height: 30px;
    padding: 11px 23px;
    border-radius: 68px;
    font-size: 16px;
    line-height: 1.3;
}

.ppcCta--primary {
  min-width: 102px;
  color: #fff;
  background: var(--ppc-color-red);
  border-color: var(--ppc-color-red);
}

.ppcCta--secondary {
  min-width: 110px;
  color: #606060;
}

.ppcCta--login::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  content: "";
  background: url("/images/webheader_v3/ico_login.svg") no-repeat center / contain;
}
.ppcHeader__actionList .ppcCta--login::before {
  width: 20px;
  height: 20px;
}

.ppcCta--contact::before {
  display: inline-block;
  width: 12px;
  height: 14px;
  margin-right: 6px;
  content: "";
  background: url("/images/webheader_v3/ico_contact.svg") no-repeat center /
    contain;
}

.ppcCta--guide::before {
  display: inline-block;
  width: 10px;
  height: 14px;
  margin-right: 6px;
  content: "";
  background: url("/images/webheader_v3/ico_guide.svg") no-repeat center /
    contain;
}

.ppcCta--mobileHide {
  display: none;
}

.ppcHeader__hamburger {
  position: relative;
  width: 24px;
  height: 18px;
  background: transparent;
  border: 0;
}

.ppcHeader__hamburgerLine {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ppc-color-gray-90);
  border-radius: 2px;
}

.ppcHeader__hamburgerLine:nth-child(1) {
  top: 0;
}

.ppcHeader__hamburgerLine:nth-child(2) {
  top: 8px;
}

.ppcHeader__hamburgerLine:nth-child(3) {
  bottom: 0;
}

.ppcHeader__hamburger.is-open .ppcHeader__hamburgerLine:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.ppcHeader__hamburger.is-open .ppcHeader__hamburgerLine:nth-child(2) {
  opacity: 0;
}

.ppcHeader__hamburger.is-open .ppcHeader__hamburgerLine:nth-child(3) {
  bottom: auto;
  top: 8px;
  transform: rotate(-45deg);
}

.ppcHeader__hamburger.is-open .ppcHeader__hamburgerLine {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ppcHeader__back {
  display: none;
  position: relative;
  z-index: 993;
  width: 18px;
  height: 18px;
  border: 0;
  opacity: 1;
  background-color: var(--ppc-color-red);
  mask: url("/images/webheader_v3/ico_arrow.svg") no-repeat center / contain;
}

.ppcHeader__global {
  position: fixed;
  inset: 0;
  z-index: 990;
  width: 100%;
  height: 100vh;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-30%);
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.ppcHeader__global.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 1079.98px) {
  .ppcHeader__logo,
  .ppcHeader__nav {
    transition: opacity 0.3s ease;
  }

  .ppcHeader.is-menu-open .ppcHeader__logo,
  .ppcHeader.is-menu-open .ppcHeader__nav {
    opacity: 0;
    visibility: hidden;
  }

  .ppcHeader:not(.is-menu-open) .ppcHeader__logo,
  .ppcHeader:not(.is-menu-open) .ppcHeader__nav {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
  }

  .ppcHeader.is-menu-open .ppcHeader__logo,
  .ppcHeader.is-menu-open .ppcHeader__nav {
    display: none;
  }

  .ppcHeader.is-menu-open .ppcHeader__menu {
    justify-content: flex-end;
  }

  .ppcHeader.is-menu-open .ppcHeader__back {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
  }

  .ppcHeader.is-menu-open .ppcHeader__hamburger {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
  }
  .ppcHeader.is-menu-open .ppcHeader__main {
    border-bottom-color: transparent; 
  }

}

@media screen and (max-width: 1079.98px) {
  .ppcHeader.is-menu-open .ppcHeader__back {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 767.98px) {
  .ppcHeader a:hover,
  .ppcHeader button:hover {
    opacity: 1;
  }
}

.ppcHeader__global.is-second-open .ppcHeader__firstItem {
  display: none;
}

.ppcHeader__global.is-second-open .ppcHeader__firstItem.is-open {
  display: block;
}

.ppcHeader__global.is-second-open .ppcHeader__firstItem.is-open > .ppcHeader__firstOnly,
.ppcHeader__global.is-second-open .ppcHeader__firstItem.is-open > .ppcHeader__firstArrow {
  display: none;
}

.ppcHeader__globalInner {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

.ppcHeader__actionList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 40px 0 20px;
    max-width: 360px;
    column-gap: 12px;
    margin-inline: auto;
}

.ppcHeader__actionNote {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--ppc-color-gray-90);
  margin-top: 12px;
}

.ppcHeader__firstFloor {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: calc(100vh - 400px);
  overflow-y: auto;
}

.ppcHeader__firstItem {
  border-bottom: 1px solid var(--ppc-color-gray-20);
}

.ppcHeader__firstOnly,
.ppcHeader__firstArrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ppc-color-gray-90);
  text-decoration: none;
}

.ppcHeader__firstArrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--ppc-color-red);
  mask: url("/images/webheader_v3/ico_arrow.svg") no-repeat center / contain;
  transform: rotate(0deg);
}

.ppcHeader__secondFloor {
  position: fixed;
  inset: 0;
  z-index: 992;
  background: #fff;
  padding: 60px 20px 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-30%);
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.ppcHeader__secondFloor.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.ppcHeader__secondNav {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.ppcHeader__secondItem {
  border-bottom: 1px solid var(--ppc-color-gray-20);
}

.ppcHeader__secondLink {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ppc-color-gray-90);
  text-decoration: none;
}

.ppcHeader__secondLink--withArrow::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: var(--ppc-color-red);
  mask: url("/images/webheader_v3/ico_arrow.svg") no-repeat center / contain;
  margin-left: 8px;
  top: .1em;
  position: relative;
}

.ppcHeader__iconExternal {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background-color: currentColor;
  mask: url("/images/webheader_v3/ico_external.svg") no-repeat center / contain;
}

.ppcHeader__headingBlock {
  width: 100%;
  max-width: 700px;
  margin: 16px auto 0;
}

.ppcHeader__secondHeading {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--ppc-color-gray-60);
  font-weight: 700;
}

.ppcHeader__secondHeading--gold::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  margin-right: 8px;
  background: url("/images/webheader_v3/ico_gold.svg") no-repeat center / contain;
}

.ppcHeader__secondHeading--column::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("/images/webheader_v3/ico_column.svg") no-repeat center /
    contain;
}

.ppcHeader__headingList {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.ppcHeader__bannerListWrapper {
  padding: 16px 0 24px;
}

.ppcHeader__bannerList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  justify-content: center;
}

@media screen and (max-width: 1079.98px) {
  .ppcHeader__secondLink--withArrow::after {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .ppcHeader__main {
    padding: 0 60px;
  }

  .ppcHeader__inner {
    max-width: 960px;
  }

  .ppcHeader__nav {
    display: flex;
  }

  .ppcCta--mobileHide {
    display: inline-flex;
  }

  .ppcHeader__hamburger {
    display: none;
  }

  .ppcHeader__global {
    position: relative;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .ppcHeader__globalWrapper {
    background: var(--ppc-color-white);
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 3;
  }

  .ppcHeader__globalWrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #eee;
    z-index: 4;
    pointer-events: none;
  }

  .ppcHeader__globalInner {
    height: auto;
    padding: 0;
    overflow: visible;
    max-width: 960px;
    margin: 0 auto;
  }

  .ppcHeader__actionList,
  .ppcHeader__bannerListWrapper {
    display: none;
  }

  .ppcHeader__firstFloor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 32px;
    overflow: visible;
    max-height: none;
    padding: 0;
    max-width: 960px;
    margin: 0 auto;
  }

  .ppcHeader__firstItem {
    border: none;
  }

  .ppcHeader__firstOnly {
    padding: 0;
    min-height: 104px;
    width: auto;
    white-space: nowrap;
    position: relative;
  }

  .ppcHeader__firstArrow {
    min-height: 104px;
    padding: 0;
    width: auto;
    justify-content: flex-start;
    gap: 8px;
    position: relative;
  }

  .ppcHeader__firstOnly::before,
  .ppcHeader__firstArrow::before {
    content: none;
  }

  .ppcHeader__firstArrow::after {
    background-color: var(--ppc-color-red);
    mask: url("/images/webheader_v3/ico_arrowDown.svg") no-repeat center /
      contain;
    transform: rotate(0deg);
  }

  .ppcHeader__firstArrow:hover::after,
  .ppcHeader__firstArrow[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }


  .ppcHeader__secondFloor {
    position: absolute;
    inset:auto;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 48px 60px;
    box-shadow: var(--ppc-shadow);
    transform: translateX(0);
    z-index: 2;
    background:#fff;
  }

  .ppcHeader__firstItem--compact .ppcHeader__secondFloor {
    padding-bottom: 80px;
  }

  .ppcHeader__secondFloor.is-show {
    visibility: visible;
    opacity: 1;
  }

  .ppcHeader__secondNav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 960px;
  }

  .ppcHeader__secondItem {
    border: none;
  }

  .ppcHeader__secondLink {
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .ppcHeader__headingBlock {
    max-width: 960px;
    margin: 24px auto 0;
  }

  .ppcHeader__headingList {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 960px;
    margin: 8px auto 0;
  }

  .ppcHeader__firstItem--pcHide {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .ppcHeader__main {
    padding: 0 80px;
  }

  .ppcHeader__inner {
    max-width: 1120px;
  }

  .ppcHeader__globalInner {
    max-width: 1120px;
  }

  .ppcHeader__firstFloor {
    max-width: 1120px;
  }

  .ppcHeader__firstOnly,
  .ppcHeader__firstArrow {
    min-height: 68px;
  }

  .ppcHeader__secondNav {
    max-width: 1120px;
  }

  .ppcHeader__headingBlock {
    max-width: 1120px;
  }

  .ppcHeader__headingList {
    max-width: 1120px;
  }
}




/* --- フッター --- */

/* ========================================================
   変数定義・共通スタイル (ベースリセット)
======================================================== */
:root {
  --footer-bg: #f7f7f7;
  --footer-text: #242323;
  --footer-border: #e5e5e5;
  --brand-color: #ff0033;
}

.footerNavigation,
.webFooter {
  width: 100%; 
  background-color: var(--footer-bg);
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--footer-text);
  box-sizing: border-box;
}

.footerNavigation ul,
.webFooter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerNavigation a,
.webFooter a,
.footerNavigation button {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

/* ========================================================
   Typography (共通タイポグラフィ)
======================================================== */
.footerNavigation__listLink {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06px;
  display: block;
}

.webFooter__sideLink,
.footerNavigation__subMenuLink {
  font-size: 13px;
  font-weight: normal; 
  line-height: 1.4;
  letter-spacing: 0.06px;
  display: block;
}
.footerNavigation__blankIconWrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  color: #242323;
  flex-shrink: 0;
  vertical-align: middle;
  margin-top: -2px;
}

.footerNavigation__blankIcon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ========================================================
   SP & Tablet 向けスタイル ( - 1079px )
======================================================== */
@media screen and (max-width: 1079px) {
  .footerNavigation { padding: 40px 20px 0; }
  .webFooter { padding: 0 20px 40px; }
  
  @media screen and (min-width: 768px) {
    .footerNavigation { padding: 52px 40px 0; }
    .webFooter { padding: 0 40px 52px; }
  }

  .footerNavigation__listItem {
    border-bottom: 1px solid var(--footer-border);
  }

  .footerNavigation__listItem:first-child {
    padding-bottom:20px;
  }

  .footerNavigation__listLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
  }

  .footerNavigation__subMenuArrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
  }
  .js-subMenuTrigger[aria-expanded="true"] .footerNavigation__subMenuArrowIcon {
    transform: rotate(180deg);
  }

  .footerNavigation__subMenuContent {
    display: none;
    padding-bottom: 16px;
  }
  .js-subMenuTrigger[aria-expanded="true"] + .footerNavigation__subMenuContent {
    display: block;
    padding:20px;
    border-top: 1px dashed #e6e6e6;

  }

  .footerNavigation__subMenuContent li { margin-bottom: 12px; }
  .footerNavigation__subMenuContent li:last-child { margin-bottom: 0; }

  .webFooter__sideNav { margin-bottom: 32px !important; }
  .webFooter__sideNav li { margin-bottom: 16px; }
  .webFooter__bodyWrapper{padding-top: 32px;}

  .footerNavigation button {padding: 20px 0;}
}

/* ========================================================
   PC 向けスタイル ( 1080px - )
======================================================== */
@media screen and (min-width: 1080px) {

.footerNavigation {
    padding: 52px max(60px, calc(50% - 640px)) 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .webFooter {
    padding: 0 max(60px, calc(50% - 640px)) 52px;
  }

  @media screen and (min-width: 1280px) {
    .footerNavigation {
      padding-left: max(80px, calc(50% - 560px));
      padding-right: max(80px, calc(50% - 640px));
    }
    .webFooter {
      padding-left: max(80px, calc(50% - 640px));
      padding-right: max(80px, calc(50% - 640px));
    }
  }

  .footerNavigation__list {
    display: flex;
    flex-direction: column;
    width: 75%;
  }

  .footerNavigation__listItem {
    display: block; 
    margin-bottom: 32px;
    border-bottom: none;
  }

  .footerNavigation__listItem:first-child {
    display: none;
  }

  .footerNavigation__listLink {
    width: 100%;
    pointer-events: none;
    padding: 0;
    margin-bottom: 0;
  }
  
  .footerNavigation__subMenuArrowIcon {
    display: none;
  }

  div.footerNavigation__subMenuContent {
    display: block !important;
  }
  
  ul.footerNavigation__subMenuContent,
  div.footerNavigation__subMenuContent > ul {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footerNavigation__subMenuContent li {
    margin-bottom: 0;
  }
.footerNavigation button {margin-bottom:16px;}

  .webFooter__sideNav {
    width: 20%; 
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media screen and (min-width: 1280px) {
    .webFooter__sideNav {
      right: max(80px, calc(50% - 640px));
    }
  }
}

/*-----------------
  webHeader 
-------------------------------*/
.webHeader {
  position: relative;
  z-index: 100;
  width: 100%;
  padding: 0 12px 0 16px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.17);
}
.webHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.webHeader__right {
  display: flex;
  align-items: center;
}
.webHeader__logoImage {
  width: auto;
  min-width: 97px;
  height: 32px;
}
.webHeader__inner {
  width: 100%;
  max-width: 990px;
  height: 60px;
  margin: 0 auto;
}
.webHeader__primaryButton {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 32px;
  padding: 5px 7px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  background-color: #3895ff;
  border-radius: 8px;
}
.webHeader__secondaryButton {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 32px;
  padding: 5px 7px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #3895ff;
  background-color: #fff;
  border: solid 1px #3895ff;
  border-radius: 8px;
}
@media screen and (max-width: 767.98px) {
  .webHeader__secondaryButton.spHide {
    display: none;
  }
  .webHeader__secondaryButton img {
    display: none;
  }
  .webHeader__primaryButton {
    margin-left: 8px;
  }
  .webHeader__secondaryButton {
    margin-left: 8px;
  }
}
@media screen and (min-width: 768px) {
  .webHeader__inner {
    width: 100%;
    max-width: 990px;
    height: 60px;
    margin: 0 auto;
  }
  .webHeader__logoImage {
    height: 36px;
  }
  .webHeader__primaryButton {
    min-width: 106px;
    min-height: 36px;
    margin-left: 12px;
  }
  .webHeader__secondaryButton {
    margin-left: 12px;
  }
  /* 既存CSSリセット */
  a.webHeader__primaryButton:hover,
  a.webHeader__secondaryButton:hover {
    opacity: 1;
  }
  .webHeader__primaryButton:active,
  .webHeader__secondaryButton:active {
    color: #3286e5;
    background-color: #f7f7f7;
    border-color: #3286e5;
  }
  .webHeader__buttonInner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
  }
  @media (pointer: fine) {
    .webHeader__secondaryButton:hover {
      color: #3286e5;
      background-color: #f7f7f7;
      border-color: #3286e5;
    }
    .webHeader__secondaryButton:hover .webHeader__buttonInner {
      opacity: 0.7;
    }
  }
}


/* ========================================================
   フッター下部 (webFooter__bottom) 共通
======================================================== */
.webFooter__bottom {
  text-align: center;
  border-top: 1px solid var(--footer-border);
  padding-top: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .webFooter__bottom { margin-top: 0; }
}

.webFooter__warning {
  width: 100%;
  border-bottom: 1px solid var(--footer-border);
  padding-bottom: 20px;
  margin: 0 0 20px 0;
}

.webFooter__warningLink {
  color: var(--footer-text);
  font-weight: normal;
  font-size: 13px;
}

.webFooter__logo {
  margin-bottom: 16px;
}

/* Page Top Button */
.webFooter__pageTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .webFooter__pageTop {
    position: absolute;
    right: 0;
    bottom: 20px; 
    top: auto;
  }
}

.webFooter__pageTopIcon {
  position: relative;
  display: block;
  width: 2px;           
  height: 16px;         
  background-color: var(--brand-color);
  border: none;         
  transform: none;      
  margin-top: 2px;     
}

.webFooter__pageTopIcon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--brand-color);
  border-left: 2px solid var(--brand-color);
  transform: translateX(-50%) rotate(45deg); 
}

.webFooter__copyright {
  font-size: 13px;
  color: #666;
}
