/*===========================================================================
footer
footerで使用するCSS
接頭辞【.l-】

【予測変換用 _base.css記述】
:root {
  --font-color-base: #000;
  --font-family-base: "Noto Sans JP", sans-serif;
  --back-color-base: #fff;
  --design-size-pc: 1400;
  --design-size-sp: 750;
}
===========================================================================*/
.l-ftr {
  position: relative;
  z-index: 12;
  width: 100%;
}
.l-ftr__cts {
  padding: 0 20rem;
  background-color: #f8fafb;
}
.l-ftr__ctsInr {
  max-width: 1200rem;
  margin: 0 auto;
  padding: 120rem 0;
}
.l-ftr__logo {
  width: 300rem;
}
.l-ftr__logo > a {
  display: block;
}
.l-ftr__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr) max-content;
  gap: 0 64rem;
  margin-top: 56rem;
}
.l-ftr__navTtl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 16rem;
  padding: 0 0 16rem;
  border-bottom: 1px solid #e0eaf7;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.3s linear;
}
.l-ftr__navTtl::after {
  content: " ";
  position: relative;
  right: 0;
  display: block;
  width: 18rem;
  height: 18rem;
  background-color: var(--back-color-main);
  mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
  transition: right 0.3s linear;
  -webkit-mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
}
.l-ftr__navList.--type-sub > *:not(:first-child) {
  margin-top: 16rem;
}
.l-ftr__navList.--type-sub .l-ftr__navTtl {
  padding-bottom: 0;
  border-bottom: none;
}
.l-ftr__navChildList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8rem 16rem;
  margin-top: 24rem;
}
.l-ftr__navChildItem a {
  position: relative;
  display: block;
  font-size: 13rem;
  line-height: 1.23;
  text-decoration: none;
  text-underline-offset: 2px;
}
@media (any-hover: hover) {
  .l-ftr__navTtl:hover {
    color: var(--font-color-main);
  }
  .l-ftr__navTtl:hover::after {
    right: -6rem;
  }
  .l-ftr__navChildItem a:hover {
    text-decoration: underline;
  }
}
/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
  .l-ftr__navCol:has(.l-ftr__navList.--type-sub) {
    padding-left: 7rem;
  }
  .l-ftr__navList > *:not(:first-child) {
    margin-top: 40rem;
  }
  .l-ftr__navChild {
    display: block !important;
    height: auto !important;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .l-ftr__ctsInr {
    max-width: initial;
    padding: 32rem 0 56rem;
  }
  .l-ftr__logo {
    width: 260rem;
  }
  .l-ftr__nav {
    display: block;
    margin-top: calc((48 - 24) * 1rem);
  }
  .l-ftr__nav > *:last-child {
    margin-top: calc((56 - 24) * 1rem);
  }
  .l-ftr__navList:not(.--type-sub) .l-ftr__navItem {
    border-bottom: 1px solid #e0e0e0;
  }
  .l-ftr__navCol:has( + .l-ftr__navCol .l-ftr__navList.--type-sub) .l-ftr__navItem:last-child {
    border-bottom: none;
  }
  .l-ftr__navTtl {
    border-bottom: none;
    font-size: 16rem;
  }
  .l-ftr__navList:not(.--type-sub) .l-ftr__navTtl {
    justify-content: space-between;
    padding: 24rem 0;
  }
  .l-ftr__navList.--type-sub .l-ftr__navTtl {
    display: inline-flex;
  }
  .l-ftr__navTtl[data-js-flex-btn]::after,
  .l-ftr__navTtl[data-js-flex-btn]::before {
    content: " ";
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 12rem;
    height: 1px;
    background: var(--back-color-main);
    mask: initial;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    -webkit-mask: initial;
  }
  .l-ftr__navTtl[data-js-flex-btn]::before {
    transform: translateY(-50%) rotate(90deg);
  }
  .is-open .l-ftr__navTtl[data-js-flex-btn]::before {
    transform: translateY(-50%) rotate(0);
  }
  .l-ftr__navChild {
    display: none;
    height: 0;
    min-height: 0;
    transition: transform 0s 0s ease-in-out;
  }
  .l-ftr__navChildInr {
    padding-bottom: 24rem;
  }
  .l-ftr__navChildList {
    grid-template-columns: minmax(0, 1fr);
    gap: 16rem;
    margin-top: 0;
  }
}


.l-ftr__copy {
  padding: 0 20rem;
  background-color: var(--back-color-main);
}
.l-ftr__copyInr {
  max-width: 1200rem;
  margin: 0 auto;
  padding: 19rem 0;
}
.l-ftr__copyRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.l-ftr__subNav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.l-ftr__subItem a {
  position: relative;
  display: block;
  padding: 4rem 0;
  color: #fff;
  font-size: 13rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  text-underline-offset: 2px;
}
.l-ftr__subItem:not(:first-child) a {
  padding-left: 24rem;
}
.l-ftr__subItem:not(:last-child) a {
  padding-right: 24rem;
}
.l-ftr__subItem:not(:last-child) a::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16rem;
  background-color: #fff;
  transform: translateY(-50%);
}
.l-ftr__copyTxt {
  color: #d3dfe7;
  font-size: 13rem;
  line-height: 1.4;
}
@media (any-hover: hover) {
  .l-ftr__subItem a:hover {
    text-decoration: underline;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .l-ftr__copyInr {
    max-width: initial;
    padding: 19rem 0 22rem;
  }
  .l-ftr__copyRow {
    display: block;
  }
  .l-ftr__subNav {
    justify-content: center;
  }
  .l-ftr__copyTxt {
    margin-top: 10rem;
    font-size: 13rem;
    text-align: center;
  }
}

