html:has(.navTgl.ex), html:has(.navTgl.ex) body {
  overflow: hidden;
}

body {
  background-color: #fff;
  color: var(--bc-brown);
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.ov {
  transition: opacity 0.3s;
}
.ov:hover {
  opacity: 0.8;
}

header {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background-color 0.3s;
}
header.bg, header:has(.shop:hover) {
  background-color: #fff;
}
header.bg .inner a.logo svg, header:has(.shop:hover) .inner a.logo svg {
  fill: var(--bc-green);
}
header.bg .inner .hLink .shop span, header.bg .inner .hLink a.contact, header:has(.shop:hover) .inner .hLink .shop span, header:has(.shop:hover) .inner .hLink a.contact {
  color: var(--bc-brown);
}
header.bg .inner .hLink .shop span svg, header:has(.shop:hover) .inner .hLink .shop span svg {
  fill: var(--bc-brown);
}
header.bg .inner .hLink a.contact svg, header:has(.shop:hover) .inner .hLink a.contact svg {
  stroke: var(--bc-brown);
}
header.bg .inner .navTgl i::before, header.bg .inner .navTgl i::after, header:has(.shop:hover) .inner .navTgl i::before, header:has(.shop:hover) .inner .navTgl i::after {
  background-color: var(--bc-brown);
}
header.bg aside p, header:has(.shop:hover) aside p {
  color: var(--bc-brown);
}
header.bg aside i, header:has(.shop:hover) aside i {
  border-bottom-color: var(--bc-brown);
}
header.bg aside a svg, header:has(.shop:hover) aside a svg {
  fill: var(--bc-brown);
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  max-width: 1300px;
  width: 90%;
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  header .inner {
    gap: 0 20px;
    width: 100%;
    padding: 20px 5%;
    position: relative;
  }
}
header .inner:has(.navTgl.ex) {
  background-color: #fff;
}
header .inner:has(.navTgl.ex) a.logo svg {
  fill: var(--bc-green);
}
header .inner:has(.navTgl.ex) .hLink {
  display: none;
}
header .inner:has(.navTgl.ex) aside a[href="/news/"] {
  border: 1px solid #000;
}
header .inner:has(.navTgl.ex) aside a[href="/news/"] span {
  color: #000;
}
header .inner:has(.navTgl.ex) aside p {
  color: var(--bc-brown);
}
header .inner:has(.navTgl.ex) aside i {
  border-bottom-color: var(--bc-brown);
}
header .inner:has(.navTgl.ex) aside a.ov svg {
  fill: var(--bc-brown);
}
header .inner a.logo {
  width: 180px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header .inner a.logo {
    width: 150px;
  }
}
header .inner a.logo svg {
  fill: #fff;
  transition: fill 0.3s;
}
header .inner a.logo svg:hover {
  fill: var(--bc-green);
}
header .inner .hLink {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 50px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  header .inner .hLink {
    gap: 0 20px;
  }
}
@media screen and (max-width: 550px) {
  header .inner .hLink {
    display: none;
  }
}
header .inner .hLink .shop span, header .inner .hLink a.contact {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s;
}
header .inner .hLink .shop {
  padding: 10px 0;
  position: relative;
}
header .inner .hLink .shop:not(:hover) {
  overflow: hidden;
}
header .inner .hLink .shop:hover ul {
  opacity: 1 !important;
}
header .inner .hLink .shop span {
  gap: 0 5px;
  cursor: default;
}
header .inner .hLink .shop span svg {
  width: 28px;
  fill: #fff;
  transition: fill 0.3s;
}
header .inner .hLink .shop ul {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 3;
  translate: 0 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
header .inner .hLink .shop ul:hover {
  opacity: 1;
}
header .inner .hLink .shop ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  width: 220px;
  height: 50px;
  padding: 0 10px;
  border-bottom: 1px solid #d7d7d7;
  background-color: #fff;
  color: var(--bc-brown);
  font-size: 14px;
}
header .inner .hLink .shop ul li a::before {
  content: "";
  width: 10px;
  border-bottom: solid 1px var(--bc-green);
}
header .inner .hLink a.contact {
  gap: 0 8px;
}
header .inner .hLink a.contact:hover {
  text-decoration: underline;
}
header .inner .hLink a.contact svg {
  width: 20px;
  stroke: #fff;
  transition: stroke 0.3s;
}
header .inner .navTgl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 14px;
  margin-left: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .inner .navTgl {
    margin-left: 5px;
  }
}
header .inner .navTgl.ex {
  height: 25px;
}
header .inner .navTgl.ex i::before, header .inner .navTgl.ex i::after {
  background-color: var(--bc-brown);
}
header .inner .navTgl.ex i::before {
  top: -1px;
  transform: rotate(-45deg);
}
header .inner .navTgl.ex i::after {
  bottom: -1px;
  transform: rotate(45deg);
}
header .inner .navTgl.ex + nav {
  opacity: 1;
}
header .inner .navTgl:not(.ex) + nav {
  pointer-events: none;
  opacity: 0;
}
header .inner .navTgl i {
  background-color: transparent;
  position: relative;
}
header .inner .navTgl i, header .inner .navTgl i::before, header .inner .navTgl i::after {
  width: 30px;
}
@media screen and (max-width: 768px) {
  header .inner .navTgl i, header .inner .navTgl i::before, header .inner .navTgl i::after {
    width: 26px;
  }
}
header .inner .navTgl i::before, header .inner .navTgl i::after {
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
header .inner .navTgl i::before {
  top: -7px;
}
header .inner .navTgl i::after {
  bottom: -7px;
}
header .inner .hNav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  width: 100vw;
  height: 100dvh;
  padding: 130px 5% 60px;
  background-color: #fff;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  header .inner .hNav {
    padding: 100px 5% 50px;
  }
}
@media screen and (max-width: 500px) {
  header .inner .hNav {
    padding: 75px 5% 50px;
  }
}
header .inner .hNav > ul, header .inner .hNav dl {
  max-width: 880px;
  width: 100%;
}
header .inner .hNav > ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 20px 4%;
  height: 305px;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul {
    gap: 10px 4%;
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul {
    gap: 0;
    height: 200px;
  }
}
@media screen and (max-width: 500px) {
  header .inner .hNav > ul {
    height: auto;
  }
}
header .inner .hNav > ul > li {
  max-width: 370px;
  width: 48%;
  padding: 30px 20px;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul > li {
    padding: 18px 12px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul > li {
    padding: 22px 8px 22px 0;
  }
}
@media screen and (max-width: 500px) {
  header .inner .hNav > ul > li {
    max-width: 100%;
    width: 100%;
  }
}
header .inner .hNav > ul > li a, header .inner .hNav > ul > li span {
  display: flex;
  gap: 0 20px;
  align-items: center;
  color: var(--bc-brown);
}
header .inner .hNav > ul > li > a, header .inner .hNav > ul > li span {
  font-size: 26px;
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul > li > a, header .inner .hNav > ul > li span {
    gap: 0 15px;
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul > li > a, header .inner .hNav > ul > li span {
    font-size: 20px;
  }
}
header .inner .hNav > ul > li svg {
  width: 24px;
  stroke: var(--bc-green);
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul > li svg {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul > li svg {
    width: 16px;
  }
}
header .inner .hNav > ul > li ul {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 35px 0 0 50px;
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul > li ul {
    gap: 20px 0;
    padding: 25px 0 0 25px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul > li ul {
    gap: 14px 0;
    padding: 16px 0 0 20px;
  }
}
@media screen and (max-width: 550px) {
  header .inner .hNav > ul > li ul {
    padding: clamp(0px, 3.6vw, 20px) 0 0 15px;
  }
}
header .inner .hNav > ul > li ul li a {
  gap: 0 15px;
  font-size: 22px;
}
@media screen and (max-width: 900px) {
  header .inner .hNav > ul > li ul li a {
    gap: 0 12px;
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav > ul > li ul li a {
    font-size: 17px;
  }
}
header .inner .hNav dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 0;
  padding: 35px 80px 35px 40px;
  background-color: #f7f7f7;
  font-size: 15px;
}
@media screen and (max-width: 850px) {
  header .inner .hNav dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  header .inner .hNav dl {
    gap: 14px 0;
    padding: 20px 5%;
  }
}
header .inner .hNav dl dt {
  display: flex;
  align-items: center;
  gap: 0 5px;
  width: 160px;
  font-weight: bold;
}
header .inner .hNav dl dt svg {
  width: 28px;
  height: 23px;
  fill: var(--bc-brown);
}
header .inner .hNav dl dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
}
@media screen and (max-width: 850px) {
  header .inner .hNav dl dd {
    gap: 12px 26px;
  }
}
header .inner .hNav dl dd a {
  color: var(--bc-brown);
  position: relative;
}
header .inner .hNav dl dd a:hover {
  text-decoration: underline;
}
header .inner .hNav dl dd a:nth-last-of-type(n+2)::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background-color: #cbcbcb;
  position: absolute;
  top: 4px;
  right: -25px;
  rotate: 20deg;
  pointer-events: none;
}
@media screen and (max-width: 850px) {
  header .inner .hNav dl dd a:nth-last-of-type(n+2)::after {
    right: -12px;
  }
}
header .inner .hNav a.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  width: 250px;
  min-height: 70px;
  border: 1px solid var(--bc-brown);
  border-radius: 35px;
  color: var(--bc-brown);
  font-size: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  header .inner .hNav a.contact {
    max-width: 240px;
    width: 100%;
    min-height: 60px;
  }
}
header .inner .hNav a.contact:hover {
  background-color: var(--bc-brown);
  color: #fff;
}
header .inner .hNav a.contact:hover svg {
  stroke: #fff;
}
header .inner .hNav a.contact svg {
  width: 20px;
  stroke: var(--bc-brown);
  transition: stroke 0.3s;
}
@media screen and (max-width: 768px) {
  header .inner .hNav aside {
    width: 100%;
  }
  header .inner .hNav aside nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3%;
    width: 100%;
  }
  header .inner .hNav aside nav p {
    line-height: 20px;
  }
  header .inner .hNav aside nav i {
    width: clamp(0px, 90% - 120px, 50%);
    height: 1px;
    background-color: #000;
  }
  header .inner .hNav aside nav a:nth-last-of-type(2) {
    width: 20px;
    height: 20px;
  }
  header .inner .hNav aside nav a:nth-last-of-type(1) {
    width: 22px;
    height: 22px;
  }
}
header:has(.navTgl.ex) + .fixedSide {
  mix-blend-mode: normal;
}
header:has(.navTgl.ex) + .fixedSide small {
  color: var(--bc-brown);
}
@media screen and (min-width: 769px) {
  header + .fixedSide small, header aside, header + .fixedSide aside {
    position: fixed;
    top: 50vh;
  }
  header + .fixedSide small > span, header + .fixedSide small nav, header aside > span, header aside nav, header + .fixedSide aside > span, header + .fixedSide aside nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    rotate: -90deg;
    translate: -50% -50%;
  }
}
header + .fixedSide small {
  font-size: 8px;
  left: 2.5vw;
}
@media screen and (max-width: 768px) {
  header + .fixedSide small {
    left: 2%;
  }
}
@media screen and (min-width: 769px) {
  header aside, header + .fixedSide aside {
    right: 2.5vw;
  }
  header aside nav, header + .fixedSide aside nav {
    flex-direction: row-reverse;
  }
  header aside nav a[href="/news/"], header + .fixedSide aside nav a[href="/news/"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 65px;
    border: 1px solid #fff;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    translate: 0% calc(-50% + 2.5vw);
    transition: 0.3s;
  }
  header aside nav a[href="/news/"]:hover, header + .fixedSide aside nav a[href="/news/"]:hover {
    background-color: #fff;
  }
  header aside nav a[href="/news/"]:hover span, header + .fixedSide aside nav a[href="/news/"]:hover span {
    color: #000;
  }
  header aside nav a[href="/news/"] span, header + .fixedSide aside nav a[href="/news/"] span {
    writing-mode: vertical-lr;
    white-space: nowrap;
    color: #fff;
    rotate: 90deg;
  }
  header aside nav p, header + .fixedSide aside nav p {
    font-size: 12px;
  }
  header aside nav i, header + .fixedSide aside nav i {
    width: 80px;
    margin: 0;
    border-bottom: solid 1px #fff;
  }
  header aside nav a.ov, header + .fixedSide aside nav a.ov {
    display: flex;
    width: 20px;
    rotate: 90deg;
  }
  header aside nav a.ov svg, header + .fixedSide aside nav a.ov svg {
    fill: #fff;
    transition: fill 0.3s;
  }
}

.fixedSide {
  color: #fff;
  mix-blend-mode: difference;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .fixedSide aside {
    display: none;
  }
}

main i.quot {
  display: inline-block;
  letter-spacing: 0;
}
main i.quot.stt {
  margin: -0.5em 0 0 -0.6em;
}
main i.quot.end {
  margin: -0.1em -0.1em 0 0;
}
main a.arw {
  display: inline-flex;
  align-items: center;
  gap: 0 30px;
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  main a.arw {
    gap: 0 15px;
    font-size: 18px;
  }
}
main a.arw:hover.cw i {
  background-color: #fff;
}
main a.arw:hover.cw i svg {
  stroke: #000;
}
main a.arw:hover.cb i {
  background-color: #000;
}
main a.arw:hover.cb i svg {
  stroke: #fff;
}
main a.arw.cw i {
  background-color: #000;
}
main a.arw.cw i svg {
  stroke: #fff;
}
main a.arw.cb {
  color: #fff;
  transition: color 0.3s;
}
main a.arw.cb i {
  background-color: #fff;
}
main a.arw.cb i svg {
  stroke: #000;
}
main a.arw i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  main a.arw i {
    width: 50px;
    height: 50px;
  }
}
main a.arw i svg {
  width: 20px;
  transition: stroke 0.3s;
}
@media screen and (max-width: 768px) {
  main a.arw i svg {
    width: 18px;
  }
}

section.cta {
  padding: 140px 0 160px;
  background: url(/common/img/cta_bg.jpg) no-repeat center center/cover;
  color: #544725;
}
@media screen and (max-width: 768px) {
  section.cta {
    padding: 42px 0 54px;
  }
}
section.cta .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.cta .inner {
    flex-direction: column;
    align-items: center;
  }
}
section.cta .inner h2 {
  line-height: 1;
  font-size: 36px;
}
@media screen and (min-width: 769px) {
  section.cta .inner h2 {
    writing-mode: vertical-lr;
  }
}
@media screen and (max-width: 768px) {
  section.cta .inner h2 {
    font-size: 28px;
    margin-bottom: 22px;
  }
}
section.cta .inner .cntWrap {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: calc(100% - 50px);
}
@media screen and (min-width: 769px) {
  section.cta .inner .cntWrap {
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap {
    gap: 28px 0;
    width: 100%;
  }
}
section.cta .inner .cntWrap .cntBox {
  display: flex;
  align-items: center;
  padding: 20px 50px;
  border: 1px solid #544725;
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap .cntBox {
    justify-content: center;
    padding: 24px 5%;
  }
}
section.cta .inner .cntWrap .cntBox svg {
  width: 50px;
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap .cntBox svg {
    width: 40px;
  }
}
section.cta .inner .cntWrap .cntBox svg * {
  stroke: #544725;
}
section.cta .inner .cntWrap .cntBox .txt {
  line-height: 1.2;
}
@media screen and (max-width: 500px) {
  section.cta .inner .cntWrap .cntBox .txt {
    line-height: 1.4;
  }
}
section.cta .inner .cntWrap .cntBox .txt .ttl {
  margin-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap .cntBox .txt .ttl {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
section.cta .inner .cntWrap .cntBox .txt p:not(.ttl) {
  font-size: 12px;
}
@media screen and (min-width: 501px) {
  section.cta .inner .cntWrap .cntBox .txt p:not(.ttl) br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap dl {
    flex-direction: column;
    gap: 18px 0;
  }
}
section.cta .inner .cntWrap dl dt {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (min-width: 769px) {
  section.cta .inner .cntWrap dl dt {
    padding-right: 50px;
    border-right: 1px solid #544725;
  }
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap dl dt {
    gap: 0 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #544725;
  }
}
section.cta .inner .cntWrap dl dt svg * {
  stroke-width: 7px;
}
section.cta .inner .cntWrap dl dd {
  margin: 0 auto;
  padding: 0 5%;
  line-height: 1;
}
section.cta .inner .cntWrap dl dd a {
  color: inherit;
  font-size: 24px;
}
@media screen and (min-width: 769px) {
  section.cta .inner .cntWrap dl dd a {
    pointer-events: none;
  }
}
section.cta .inner .cntWrap dl dd a span {
  font-size: 16px;
}
section.cta .inner .cntWrap > a {
  display: flex;
  align-items: center;
  gap: 0 30px;
  color: inherit;
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap > a {
    flex-wrap: wrap;
    gap: 20px 15px;
  }
}
section.cta .inner .cntWrap > a::after {
  content: "";
  width: 110px;
  height: 15px;
  border-bottom: 1px solid #544725;
  border-right: 1px solid #544725;
  transform: skew(45deg);
  transform-origin: 100% 100%;
}
@media screen and (max-width: 768px) {
  section.cta .inner .cntWrap > a::after {
    max-width: 280px;
    width: 100%;
    margin-bottom: 16px;
  }
}
section.cta .inner .cntWrap > a svg * {
  stroke-width: 1px;
}

footer {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}
footer .company {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 34.66666%;
  background-color: #fff;
  padding: 70px 10px 70px 5%;
  color: #544725;
}
@media screen and (max-width: 768px) {
  footer .company {
    align-items: flex-start;
    width: 100%;
    padding: 36px 5% 24px;
  }
}
footer .company .logo {
  display: flex;
  max-width: 370px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .company .logo {
    max-width: 240px;
    margin-bottom: 28px;
  }
}
footer .company .logo svg {
  max-width: 265px;
  width: 100%;
  fill: var(--bc-green);
}
footer .company .inner {
  display: flex;
  gap: 40px 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  footer .company .inner {
    flex-direction: column;
    max-width: 370px;
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  footer .company .inner {
    flex-wrap: wrap;
    gap: 28px 0;
  }
}
@media screen and (max-width: 768px) {
  footer .company .inner dl {
    min-width: 250px;
    width: 50%;
  }
}
footer .company .inner dl dt {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}
footer .company .inner dl dd {
  line-height: 2;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer .company .inner .approval {
    width: 100%;
    margin-top: 10px;
  }
}
footer nav {
  display: flex;
  align-items: center;
  width: 65.33333%;
  padding: 70px 5%;
  background-color: #2e3835;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer nav {
    flex-direction: column;
    gap: 10px 0;
    width: 100%;
    padding: 36px 5% 0;
  }
}
footer nav a, footer nav span {
  color: #fff;
}
footer nav ul:has(ul) {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 10px;
       column-gap: 10px;
  max-width: 830px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  footer nav ul:has(ul) {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (max-width: 610px) {
  footer nav ul:has(ul) {
    -moz-column-count: 2;
         column-count: 2;
  }
}
footer nav ul:has(ul) li {
  display: flex;
  flex-direction: column;
}
footer nav ul:has(ul) > li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
footer nav ul:has(ul) > li:nth-last-of-type(n+2) {
  margin: 45px 0;
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) > li:nth-last-of-type(n+2) {
    margin: 26px 0;
  }
}
footer nav ul:has(ul) > li:nth-of-type(1) {
  margin-top: 0;
}
footer nav ul:has(ul) > li a {
  display: inline-flex;
  align-items: center;
}
footer nav ul:has(ul) > li > a, footer nav ul:has(ul) > li span {
  font-size: 14px;
}
footer nav ul:has(ul) > li > a {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) > li > a {
    gap: 0 8px;
  }
}
footer nav ul:has(ul) > li > a[target=_blank] svg {
  width: 12px;
  margin-left: 3px;
  fill: none;
  stroke-width: 60px;
  stroke: var(--bc-green);
}
footer nav ul:has(ul) > li > a svg {
  width: 15px;
  stroke: var(--bc-green);
}
footer nav ul:has(ul) > li ul {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  padding: 25px 0 0 35px;
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) > li ul {
    gap: 20px 0;
    padding: 22px 0 0 24px;
  }
}
footer nav ul:has(ul) > li ul li.break2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  footer nav ul:has(ul) > li ul li.break2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) > li ul li.break2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 610px) {
  footer nav ul:has(ul) > li ul li.break2 {
    margin-bottom: 0;
  }
}
footer nav ul:has(ul) > li ul li a {
  gap: 0 8px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer nav ul:has(ul) > li ul li a {
    gap: 0 6px;
  }
}
footer nav ul:has(ul) > li ul li a::before {
  content: "";
  width: 10px;
  border-bottom: solid 1px var(--bc-green);
}
footer nav small {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 5%;
  color: #fff;
  font-size: 10px;
}/*# sourceMappingURL=common_style.css.map */