@charset "utf-8";
/* common
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  color: var(--baseBlack);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

:root {
  --black: #1C1C1C;
  --baseBlack: #191919;
  --white: #fff;
  --green: #009348;
  --lightGreen: #D7E4DF;
  --blue: #004165;
  --lightBlue: #3E9EDE;
  --gray: #303030;
  --lightGray: #F8F8F8;
  --planBlue: #106894;
  --planRed: #B11C17;
}

.en {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 600;
}

.en2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}

main {
  position: relative;
  z-index: 1;
  padding-top: var(--headerHeight, 96px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: var(--green);
}

a.opacity:hover {
  opacity: .7;
}

a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li, dt, dd {
	list-style: none;
	vertical-align: bottom;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

@media (768px <= width) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (width <= 767px) {
  body {
    font-size: 1.4rem;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* header
-------------------------------------------------------------- */
header {
  position: fixed;
  width: 100%;
  background: var(--white);
  z-index: 999;
}

header .headerWrap {
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 96px;
}

header .logo {
  align-items: center;
  width: 370px;
}

header .global-nav {
  padding-right: 10rem;
  justify-content: flex-end;
  gap: 2rem;
  width: calc(100% - 380px);
}

header .global-nav ul:first-child {
  justify-content: flex-end;
  align-items: center;
}

header .global-nav ul:first-child li {
  padding: 0 2rem;
  border-right: 1px solid #C0CED7;
}

header .global-nav ul:first-child li:last-child {
  border: none;
}

header .global-nav ul:first-child li a {
  display: block;
  letter-spacing: .3rem;
  line-height: 1.3;
}

header .global-nav a.current {
  color: var(--green);
  font-weight: 700;
}

header .btnWrap {
  gap: 1rem
}

header .btnWrap li a {
  width: 172px;
  aspect-ratio: 172 / 58;
}

header .btnWrap li a span {
  font-size: 1.2rem;
}

header .logo2 {
  position: absolute;
  top: 2.2rem;
  right: 2rem;
  margin: auto;
}

.hamburger {
  display: none;
}

@media (width <= 1500px) {
  header .headerWrap {
    padding: 0 2rem;
  }

  header .logo {
    width: 280px;
  }

  header .global-nav {
    padding-right: 7rem;
    gap: 1rem;
    width: calc(100% - 290px);
  }

  header .global-nav ul:first-child li {
    padding: 0 1.5rem;
  }

  header .global-nav ul:first-child li a {
    font-size: 1.4rem;
  }

  header .btnWrap li a {
    width: 150px;
  }

  header .btnWrap li a span {
    font-size: 1.1rem;
  }

  header .btnWrap li a::before {
    width: 20px;
  }

  header .logo2 {
    top: 2.5rem;
    right: 1.5rem;
  }

  header .logo2 img {
    width: 6rem;
  }
}

@media (width <= 1200px) {
  header .headerWrap {
    padding: 0 1rem;
    height: 60px;
  }

  header .logo {
    width: 200px;
  }

  header .global-nav {
    padding-right: 6rem;
    gap: .5rem;
    width: calc(100% - 210px);
  }

  header .global-nav ul:first-child li {
    padding: 0 1rem;
  }

  header .global-nav ul:first-child li a {
    font-size: 1.2rem;
  }

  header .btnWrap {
    gap: .6rem;
  }

  header .btnWrap li a {
    width: 130px;
  }

  header .btnWrap li a span {
    font-size: 1rem;
  }

  header .btnWrap li a::before {
    width: 15px;
  }

  header .logo2 {
    top: 1.6rem;
  }

  header .logo2 img {
    width: 4rem;
  }
}

@media (width <= 960px) {
  header .headerWrap {
    height: 60px;
  }

  header .logo {
    width: 140px;
  }

  header .global-nav {
    padding-right: 4.5rem;
    gap: .5rem;
    width: calc(100% - 150px);
  }

  header .global-nav ul:first-child li {
    padding: 0 .5rem;
  }

  header .global-nav ul:first-child li a {
    font-size: 1rem;
    letter-spacing: .1rem;
  }

  header .btnWrap {
    gap: .5rem;
  }

  header .logo2 {
    top: 1.5rem;
  }

  header .logo2 img {
    width: 3rem;
  }
}

@media (width <= 767px) {
  header .logo {
    width: 206px;
  }

  header .global-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    padding: 0 5%;
    width: 100%;
    background-color: var(--white);
    height: 100%;
    z-index: 200;
    overflow-y: auto;
  }

  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }

  header .global-nav ul:first-child {
    display: block;
  }

  header .global-nav ul:first-child li {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #C0CED7;
  }

  header .global-nav ul:first-child li a {
    padding: 2rem 0;
    font-size: 1.8rem;
  }

  header .btnWrap {
    margin: 3rem auto;
    gap: 2rem;
    width: 90%;
  }

  header .btnWrap li {
    width: 100%;
  }

  header .btnWrap li a {
    padding: 0 3rem;
    width: 100%;
    aspect-ratio: 320 / 65;
  }

  header .btnWrap li a span {
    font-size: 1.6rem;
  }

  header .btnWrap li a::before {
    width: 25px;
  }

  header .logo2 {
    top: 1.6rem;
    right: 6rem;
  }

  header .logo2 img {
    width: 4rem;
  }

  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--blue);
    border-radius: 10px;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 25px;
  }

  .hamburger__line--2 {
    top: 25px;
  }

  .hamburger__line--3 {
    top: 35px;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}

/* sv（下層ページ共通）
-------------------------------------------------------------- */
.sv {
  position: relative;
  align-items: stretch;
  background-color: var(--lightGreen);
  aspect-ratio: 1600 / 415;
}

.sv .txtArea {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 0 5rem 0 13rem;
  overflow: hidden; 
}

.sv .txtArea .txtInner {
  position: relative;
  align-self: flex-start;
  opacity: 0; /* リロード時にテキスト（カーテン含む）が一瞬表示されるのを防ぐため、JS実行前から非表示にしておく */
}

.sv .txtArea .txtOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: var(--green);
  pointer-events: none;
}

.sv .txtArea h1 {
  display: inline-block;
}

.sv .txtArea h1 .en {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--green);
  font-size: 2.4rem;
  letter-spacing: .1rem;
  line-height: 1;
}

.sv .txtArea h1 .jp {
  display: block;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: .5rem;
  line-height: 1.2;
}

.sv .photoArea {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0 2.5rem 2.6rem;
  width: 49%;
  z-index: 2;
}

.sv .photoArea::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/sv_bg.png) no-repeat top left / contain;
  content: "";
  z-index: 1;
}

.sv .photoArea img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv .photoArea .svOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  clip-path: polygon(9.25% 0%, 100% 0%, 95.5% 100%, 0% 100%); /* asset/img/common/sv_bg.png と同じ台形にする */
  background-color: var(--green);
  pointer-events: none;
}

@media (width <= 1200px) {
  .sv .txtArea {
    padding: 0 3rem 0 6rem;
  }

  .sv .txtArea h1 .en {
    font-size: 2rem;
  }
  
  .sv .txtArea h1 .jp {
    font-size: 4rem;
  }
}

@media (width <= 960px) {
  .sv .txtArea {
    padding: 0 2rem 0 5rem;
  }

  .sv .txtArea h1 .en {
    font-size: 1.8rem;
  }
  
  .sv .txtArea h1 .jp {
    font-size: 3.6rem;
  }
}

@media (width <= 767px) {
  .sv {
    background: transparent;
    aspect-ratio: auto;
  }
  
  .sv .txtArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 3rem 5%;
    order: 1;
  }
  
  .sv .txtArea .txtInner {
    margin: auto;
    text-align: center;
  }

  .sv .txtArea h1 .en {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  .sv .txtArea h1 .jp {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .sv .photoArea {
    position: relative;
    top: 0;
    right: 0;
    padding: 0 0 .8rem;
    width: 100%;
  }
  
  .sv .photoArea::before {
    top: auto;
    bottom: 0;
    height: .8rem;
    background: var(--green);
  }

  .sv .photoArea .svOverlay {
    clip-path: none; /* SPは::beforeも台形でなくなるため、カーテンも長方形に戻す */
  }
}

/* ttl（見出し）
-------------------------------------------------------------- */
.ttl {
  padding-bottom: 10rem;
  text-align: center;
}

.ttl .en {
  display: block;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1;
}
.ttl .jp {
  display: block;
  margin-top: 1rem;
  font-size: 4rem;
  letter-spacing: .5rem;
  text-indent: .5rem;
  line-height: 1;
}

@media (width <= 767px) {
  .ttl {
    padding-bottom: 4rem;
  }
  
  .ttl .en {
    font-size: 1.8rem;
  }

  .ttl .jp {
    margin-top: .5rem;
    font-size: 3rem;
    letter-spacing: .3rem;
    text-indent: .3rem;
    line-height: 1.4;
  }
}

/* breadcrumb
-------------------------------------------------------------- */
.breadcrumb {
  margin: 3rem auto;
  width: 90%;
  max-width: 1094px;
  font-size: 1.2rem;
  color: var(--black);
}

.breadcrumb li {
  position: relative;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 .8rem;
  background: url("../img/common/ico_bc.svg") no-repeat center / contain;
}

.breadcrumb li span {
  font-weight: 600;
}

.breadcrumb li a span {
  font-weight: 400;
}

@media (width <= 767px) {
  .breadcrumb {
    margin: 1.5rem auto;
    font-size: 1rem;
  }

  .breadcrumb li:not(:last-child)::after {
    width: 10px;
    height: 10px;
  }
}

/* btn
-------------------------------------------------------------- */
.btn a {
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  border-radius: 10rem;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn a::before {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 100%;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.5s ease-in-out;
  content: "";
}

.btn span {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.btnDoc a {
  border: 1px solid var(--green);
  background-color: var(--green);
}

.btnDoc a::before {
  -webkit-mask-image: url(../img/common/ico_doc_wh.svg);
  mask-image: url(../img/common/ico_doc_wh.svg);
}

.btnFaq a {
  border: 1px solid var(--lightBlue);
  background-color: var(--lightBlue);
}

.btnFaq a::before {
  -webkit-mask-image: url(../img/common/ico_faq_wh.svg);
  mask-image: url(../img/common/ico_faq_wh.svg);
}

.btnDoc a:hover {
  background-color: var(--white);
  color: var(--green);
}

.btnFaq a:hover {
  background-color: var(--white);
  color: var(--lightBlue);
}

.btnMore a {
  position: relative;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  background: var(--white);
  border: 1px solid var(--tabColor, var(--green));
  border-radius: 10rem;
  color: var(--tabColor, var(--green));
  aspect-ratio: 300 / 60;
}

.btnMore a span {
  display: inline-block;
  padding: 0 2rem;
  font-weight: 700;
  line-height: 1;
}

.btnMore a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 20px;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url(../img/common/arrow_r_gr.svg) no-repeat center / contain;
  mask: url(../img/common/arrow_r_gr.svg) no-repeat center / contain;
  transition: background-color 0.5s ease-in-out;
  content: "";
}

.btnMore a:hover {
  background: var(--tabColor, var(--green));
  color: var(--white);
}

@media (width <= 767px) {
  .btn a {
    padding: 0 1.5rem;
  }
  
  .btn a::before {
    width: 20px;
  }

  .btnMore a {
    margin: auto;
    font-size: 1.6rem;
  }
}

/* anchorNav（左固定アンカーナビ・下層ページ共通）
-------------------------------------------------------------- */
.anchorLayout {
  align-items: flex-start;
  gap: 6rem;
}

.anchorNav {
  position: sticky;
  top: calc(var(--headerHeight, 96px) + 4rem);
  flex-shrink: 0;
  box-sizing: border-box;
  z-index: 2;
}

.anchorNav li {
  position: relative;
  margin-bottom: 3.5rem;
  padding-left: 4rem;
}

.anchorNav li a {
  display: block;
  color: var(--black);
  line-height: 1;
  opacity: .2;
  transition: opacity .3s ease-in-out;
}

.anchorNav li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
  transition: opacity .3s ease-in-out;
  content: "";
}

.anchorNav li strong {
  display: block;
  margin-bottom: .3rem;
  font-weight: 500;
  letter-spacing: .1rem;
  line-height: 1;
}

.anchorNav li span {
  display: block;
  font-weight: 600;
  line-height: 1.4;
}

.anchorNav li.is-current a,
.anchorNav li.is-current::before,
.anchorNav li a:hover,
.anchorNav li a:hover::before {
  opacity: 1;
}

.anchorContent {
  flex: 1;
  min-width: 0;
}

.pointSection {
  scroll-margin-top: var(--headerHeight, 96px);
}

.pointSection--bg {
  background-color: var(--lightGray);
}

@media (width <= 767px) {
  .anchorLayout {
    display: block;
  }

  .anchorNav {
    position: static;
    width: 100%;
  }
}

/* tab（下層ページ共通）
-------------------------------------------------------------- */
.tabPanel {
  display: none;
}

.tabPanel.is-show {
  display: block;
}

.tabNav {
  align-items: flex-end;
}

.tabNav li {
  display: flex;
  box-sizing: border-box;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  min-width: 39rem;
  height: 7rem;
  border-top: 1px solid var(--tabColor, var(--green));
  border-left: 1px solid var(--tabColor, var(--green));
  border-right: 1px solid var(--tabColor, var(--green));
  border-radius: 10px 10px 0 0;
  background-color: var(--tabColor, var(--green));
  color: var(--white);
  text-align: center;
  font-weight: 600;
  letter-spacing: .1rem;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.tabNav li::after {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  width: .8rem;
  height: .8rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.tabNav li.is-active {
  height: 8rem;
  background-color: var(--white);
  color: var(--tabColor, var(--green));
}

@media (width <= 960px) {
  .tabNav li {
    min-width: 0;
    flex: 1;
  }
}

/* floatingBnr (SP専用・下部固定ボタン)
-------------------------------------------------------------- */
.floatingBnr {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--white);
  z-index: 500;
}

.floatingBnr .btn {
  width: 50%;
}

.floatingBnr .btn a {
  border-radius: 0;
  aspect-ratio: 195 / 56;
}

/* footer
-------------------------------------------------------------- */
.prArea {
  padding: 6rem 0 5rem;
  background-color: var(--lightGreen);
}

.prArea .container {
  max-width: 1094px;
}

.prArea .prWrap {
  justify-content: space-between;
  text-align: center;
}

.prArea .sumikaeBox {
  width: 57.3%;
}

.prArea .sumikaeBox strong {
  display: block;
  padding-bottom: 2rem;
  letter-spacing: .2rem;
}

.prArea .relatedBox {
  width: 35.7%;
}

.prArea .relatedBox strong {
  display: block;
  padding-bottom: 2rem;
  font-size: 1.8rem;
  letter-spacing: .2rem;
}

.prArea .relatedBox li:first-child {
  margin-bottom: 1rem;
}


.prArea .bnr a {
  position: relative;
}

.prArea .bnr a::after {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 29px;
  height: 29px;
  content: "";
}

.prArea .sumikaeBox .bnr a::after {
  background: url(../img/common/ico_blank_wh.svg) no-repeat center / contain;  
}

.prArea .relatedBox .bnr a::after {
  background: url(../img/common/ico_blank_gr.svg) no-repeat center / contain;  
}
@media (width <= 767px) {
  .prArea {
    padding: 4rem 0;
  }
  
  .prArea .prWrap {
    gap: 2rem;
  }
  
  .prArea .sumikaeBox {
    width: 100%;
  }
  
  .prArea .sumikaeBox strong {
    padding-bottom: 1.2rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  
  .prArea .relatedBox {
    width: 100%;
  }
  
  .prArea .relatedBox strong {
    padding-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  
  .prArea .relatedBox li:first-child {
    margin-bottom: 1rem;
  }

  .prArea .bnr a::after {
    bottom: .8rem;
    right: .8rem;
  }
}

/* pagetop
-------------------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  cursor: pointer;
  z-index: 99;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media (width <= 767px) {
  .pagetop {
    right: 2rem;
    bottom: 7rem;
    width: 4rem;
  }
}

/* footer
-------------------------------------------------------------- */
footer .footerWrap {
  background-color: var(--gray);
  color: var(--white);
  letter-spacing: .2rem;
}

footer .footerWrap > .container {
  padding: 4.5rem 0 1.5rem;
  justify-content: space-between;
}

footer .infoBox {
  width: 26.6%;
}

footer .infoBox address {
  padding: 1rem 0 0 29%;
  font-style: normal;
  font-size: 1.2rem;
}

footer nav {
  gap: 5rem;
  width: 64.1%;
}

footer nav li {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}

footer nav li::before {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--white);
  content: "";
}

footer nav li a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
}

footer nav .child {
  padding-top: 3.2rem;
}

footer nav .child li {
  margin: 0 0 1rem -1.5rem;
  padding-left: 0;
  font-size: 1.6rem;
}

footer nav .child li::before {
  content: none;
}

footer nav .child  li a {
  font-size: 1.6rem;
  font-weight: 400;
}

footer .subNav {
  border-top: 1px solid #A8A8A8;
}

footer .subNav .container {
  padding: 1.5rem 0;
  justify-content: center;
  gap: 5rem;
}

footer .subNav a {
  position: relative;
}

footer .subNav a[target="_blank"]::after {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: .5rem;
  background: url(../img/common/ico_blank.svg) no-repeat center / contain;
  content: "";
}

footer .copy {
  padding: 2.5rem 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media (width <= 1350px) {
  footer nav {
    gap: 3rem;
    width: 70%;
  }
}

@media (width <= 1200px) {
  footer .infoBox {
    width: 27%;
  }

  footer nav {
    gap: 2rem;
  }
  
  footer nav li {
    margin-bottom: 2.2rem;
  }

  footer nav li a {
    font-size: 1.5rem;
  } 

  footer nav .child {
    padding-top: 2.5rem;
  }

  footer nav .child li a {
    font-size: 1.3rem;
  }
  
  footer .subNav a {
    font-size: 1.3rem;
  }

  footer .copy {
    padding: 2rem 0;
    font-size: 1.2rem;
  }
  
}

@media (width <= 960px) {
  footer .infoBox {
    width: 100%;
    text-align: center;
  }

  footer .infoBox address {
    padding: 1rem 0 2rem;
  }

  footer nav {
    padding-top: 1rem;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #A8A8A8;
  }
}

@media (width <= 767px) {
  footer {
    padding-bottom: var(--floatingBnrHeight, 0px);
  }
  footer .footerWrap > .container {
    padding: 0;
  }
  
  footer .infoBox {
    padding: 2.5rem 0 2rem;
    width: 100%;
    text-align: left;
  }

  footer .infoBox .logo {
    margin-left: -0.7rem;
    max-width: 320px;
  }
  
  footer .infoBox address {
    padding: 1rem 0 0;
    font-size: 1rem;
  }
  
  footer nav {
    padding: 1.5rem 0 1rem;
    gap: 0;
    width: 100%;
    border-top: 1px solid #A8A8A8;
  }

  footer nav ul {
    width: 100%;
  }
  
  footer nav li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  
  footer nav li::before {
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--white);
    content: "";
  }
  
  footer nav li a {
    font-size: 1.5rem;
  }
  
  footer nav .child {
    padding-top: 1.5rem;
  }
  
  footer nav .child li {
    margin: 0 0 .5rem 0;
    font-size: 1.6rem;
  }
  
  footer nav .child li a {
    font-size: 1.4rem;
  }

  footer nav .child li a span {
    display: inline-block;
  }

  footer .subNav {
    margin: auto;
    width: 90%;
  }
  
  footer .subNav .container {
    padding: 1.5rem 0;
    justify-content: flex-start;
    gap: .5rem;
    width: 100%;
  }
  
  footer .subNav a {
    font-size: 1.2rem;
  }
  
  footer .copy {
    padding: 1rem 0;
    font-size: 1.2rem;
  }
}