@charset "UTF-8";
/*------------------------------------------------------
    全ページ共通SCSS
------------------------------------------------------*/
/*------------------------------------------------------
    reset
------------------------------------------------------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  letter-spacing: 0px;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
}

ul, li {
  list-style: none;
}

.cf-turnstile {
display: block;
text-align: center;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------------------------------
    Breakpoint　値はサイトに合わせて変更しましょう
------------------------------------------------------*/
/*------------------------------------------------------
    このファイルは基本触らない
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
body {
  background-color: #FFFFFF;
  color: #5C5C5C;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 974px) {
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.l-container {
  max-width: 1200px;
  margin: 0 auto;
}

/*------------------------------------------------------
    header
------------------------------------------------------*/
.l-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.l-header .container {
  display: flex;
  justify-content: space-between;
  padding-right: clamp(40px, 2.0833333333vw, 74px);
  padding-left: clamp(50px, 3.125vw, 100px);
  box-shadow: 0 4px 4px rgba(207, 207, 207, 0.25);
}
.l-header .container .header__logo {
  width: fit-content;
  height: clamp(75px, 4.4270833333vw, 85px);
  object-fit: contain;
  margin: 4px 0 3px;
}
.l-header .container .header__nav {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header .container .header__nav .header__list {
  height: 100%;
  display: flex;
}
.l-header .container .header__nav .header__list__item {
  margin-right: clamp(30px, 2.6041666667vw, 50px);
  display: flex;
  align-items: center;
  position: relative;
}
.l-header .container .header__nav .header__list__item:last-child {
  margin-right: 0;
}
.l-header .container .header__nav .header__list__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  opacity: 0;
  background: #54BE84;
  transition: all 0.3s ease;
}
.l-header .container .header__nav .header__list__item.is_page::after {
  opacity: 1;
}
@media (any-hover: hover) {
  .l-header .container .header__nav .header__list__item:hover::after {
    opacity: 1;
  }
}
.l-header .container .header__nav .header__list__item__link {
  display: block;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #5C5C5C;
  display: flex;
  align-items: center;
}
.l-header .container .header__nav .header__list__item__link__toggle {
  width: 24px;
  height: auto;
  object-fit: contain;
  margin-left: 8px;
  position: relative;
  top: -4px;
}
.l-header .container .header__nav .header__list__item--privacy {
  display: none;
}
.l-header .container .header__nav .header__list__item .header__inner__list {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: rgba(26, 169, 129, 0.9019607843);
  z-index: 100;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}
.l-header .container .header__nav .header__list__item .header__inner__list__item {
  width: 273px;
  position: relative;
}
.l-header .container .header__nav .header__list__item .header__inner__list__item__link {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFFFFF;
  padding: 12px 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link:hover {
    background: rgba(84, 190, 132, 0.9019607843);
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link:hover .header__inner__list__item__link__arrow {
    transform: translateX(12px);
  }
}
.l-header .container .header__nav .header__list__item .header__inner__list__item__link__dash {
  display: inline;
}
.l-header .container .header__nav .header__list__item .header__inner__list__item__arrow {
  width: 18px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
.l-header .container .header__nav .header__list__item .header__inner__list__item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 25px;
  width: 216px;
  height: 1px;
  background: #54BE84;
  pointer-events: none;
}
.l-header .container .header__nav .header__list__item .header__inner__list__item:last-of-type::after {
  display: none;
}
@media (any-hover: hover) {
  .l-header .container .header__nav .header__list .header__list__item:has(.header__inner__list):hover .header__inner__list {
    visibility: visible;
    opacity: 1;
  }
}
.l-header .container .header__nav .header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link {
  height: auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1AA981;
  border: 2px solid #1AA981;
  border-radius: 10px;
  padding: 13px clamp(20px, 1.9270833333vw, 37px) 16px;
  transition: all 0.3s ease;
  position: relative;
}
.l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(150deg, #F7B848 30%, #E7713D 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link::after {
  content: "採用情報";
  white-space: nowrap;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(130deg, #F7B848 30%, #E7713D 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link:hover {
    color: transparent;
    border-color: transparent;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link:hover::before {
    opacity: 1;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link:hover::after {
    opacity: 1;
  }
}
.l-header .container .header__nav .header__btns .header__btns__item--contact .header__btns__item__link {
  height: auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFFFFF;
  padding: 13px clamp(20px, 1.9270833333vw, 37px) 16px;
  border-radius: 10px;
  background: linear-gradient(130deg, #AFCA54 10%, #1AA982 50%, #AFCA54 80%);
  background-size: 200% 100%;
  background-position: 200% 50%;
  transition: background-position 0.5s ease;
}
@media (any-hover: hover) {
  .l-header .container .header__nav .header__btns .header__btns__item--contact .header__btns__item__link:hover {
    background-position: 180% 50%;
  }
}
.l-header .container .header__ham {
  display: none;
}

@media (max-width: 1400px) {
  .l-header .container {
    padding: 0px 30px;
  }
  .l-header .container .header__logo {
    height: 65px;
  }
  .l-header .container .header__nav .header__list__item {
    margin-right: 20px;
  }
  .l-header .container .header__nav .header__list__item__link {
    font-size: clamp(1.35rem, 1.0714285714vw, 1.5rem);
  }
  .l-header .container .header__nav .header__list__item__link__toggle {
    width: 18px;
  }
  .l-header .container .header__nav .header__btns {
    gap: 15px;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link,
  .l-header .container .header__nav .header__btns .header__btns__item--contact .header__btns__item__link {
    display: flex;
    font-size: 1.5rem;
    padding: 10px clamp(13px, 1.26953125vw, 20px) 10px;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link::after {
    top: 48%;
  }
}
@media (max-width: 1024px) {
  .l-header .container {
    background: #fff;
    align-items: center;
    position: relative;
  }
  .l-header .container .header__logo {
    width: auto;
  }
  .l-header .container .header__ham {
    flex-shrink: 0;
    display: block;
    width: 49px;
    height: 49px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #AFCA54 0%, #1AA982 100%);
  }
  .l-header .container .header__ham__line {
    display: block;
    width: 29px;
    height: 2px;
    background: #FEFEFE;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  .l-header .container .header__ham__line:nth-of-type(1) {
    top: calc(50% - 4px);
  }
  .l-header .container .header__ham__line:nth-of-type(2) {
    top: calc(50% + 4px);
  }
  .l-header .container .header__nav {
    width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 85px 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: #ffffff;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: all 0.3s ease;
  }
  .l-header .container .header__nav .header__list {
    width: 100%;
    max-width: 335px;
    height: auto;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .l-header .container .header__nav .header__list__item {
    width: 100%;
    margin-right: 0;
    border-bottom: 0.3px solid #138062;
    display: flex;
    flex-direction: column;
  }
  .l-header .container .header__nav .header__list__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .l-header .container .header__nav .header__list__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-header .container .header__nav .header__list__item::after {
    display: none;
  }
  .l-header .container .header__nav .header__list__item__link {
    width: 100%;
    font-size: 2rem;
    justify-content: space-between;
    padding: 16px 10px;
    color: #262626;
    position: relative;
  }
  .l-header .container .header__nav .header__list__item__link__toggle {
    display: none;
  }
  .l-header .container .header__nav .header__list__item__link__icon {
    width: 17px;
    height: 17px;
    position: relative;
    display: block;
  }
  .l-header .container .header__nav .header__list__item__link__icon span {
    display: block;
    width: 17px;
    height: 2px;
    background: #138062;
    margin-bottom: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
  }
  .l-header .container .header__nav .header__list__item__link__icon span:first-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-header .container .header__nav .header__list__item__link__icon span:last-child {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .l-header .container .header__nav .header__list__item__link.nobetween {
    justify-content: flex-start;
    gap: 10px;
  }
  .l-header .container .header__nav .header__list__item__link__arrow__sp {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header .container .header__nav .header__list__item__link__arrow__sp::before, .l-header .container .header__nav .header__list__item__link__arrow__sp::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #1aa982;
    transform-origin: calc(100% - 1px) 50%;
  }
  .l-header .container .header__nav .header__list__item__link__arrow__sp::before {
    transform: rotate(45deg);
  }
  .l-header .container .header__nav .header__list__item__link__arrow__sp::after {
    transform: rotate(-45deg);
  }
  .l-header .container .header__nav .header__list__item--privacy {
    display: block;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 1;
    visibility: visible;
    top: unset;
    left: unset;
    transform: translate(0);
    padding: 0;
    background: transparent;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item {
    width: 100%;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item:last-of-type {
    margin-bottom: 10px;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item::after {
    display: none;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.4rem;
    gap: 10px;
    font-weight: 400;
    color: #5C5C5C;
    padding: 7.5px 15px;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow {
    display: none;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow.spblock {
    display: block;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__dash {
    display: none;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__dash:not(:first-child) {
    display: inline;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link::before {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: #138062;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow__sp {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 1px;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow__sp::before, .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow__sp::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #1aa982;
    transform-origin: calc(100% - 1px) 50%;
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow__sp::before {
    transform: rotate(45deg);
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link__arrow__sp::after {
    transform: rotate(-45deg);
  }
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link.nodash::before {
    display: none;
  }
}
@media (max-width: 1024px) and (any-hover: hover) {
  .l-header .container .header__nav .header__list__item .header__inner__list__item__link:hover {
    background: #F6F9F2;
  }
}
@media (max-width: 1024px) {
  .l-header .container .header__nav .header__list__item.active .header__list__item__link__icon span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-header .container .header__nav .header__list__item.active .header__inner__list {
    height: auto;
  }
  .l-header .container .header__nav .header__btns {
    width: 100%;
    max-width: 335px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 26px;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit,
  .l-header .container .header__nav .header__btns .header__btns__item--contact {
    width: 100%;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link,
  .l-header .container .header__nav .header__btns .header__btns__item--contact .header__btns__item__link {
    width: 100%;
    font-size: 2rem;
    justify-content: center;
    padding: 18px 0;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--contact .header__btns__item__link {
    box-shadow: 7px 7px 17px rgba(105, 195, 111, 0.3);
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link {
    background: #fff;
  }
  .l-header .container .header__nav .header__btns .header__btns__item--recruit .header__btns__item__link::after {
    top: 48%;
  }
  .l-header.active .container {
    background: #fff;
  }
  .l-header.active .container .header__nav {
    transform: translateX(0);
  }
  .l-header.active .container .header__ham__line:nth-of-type(1) {
    top: calc(50% - 0px);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header.active .container .header__ham__line:nth-of-type(2) {
    top: calc(50% - 0px);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .l-header .container {
    padding: 7px 15px;
  }
  .l-header .container .header__logo {
    height: 53px;
    margin: 0;
  }
  .l-header .container .header__ham {
    width: 39px;
    height: 39px;
  }
  .l-header .container .header__ham__line {
    width: 19px;
  }
}
/*------------------------------------------------------
    footer
------------------------------------------------------*/
.footer__contact {
  background: url(../img/footer_contact_bg.webp) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 180px 20px 240px;
  padding-top: clamp(100px, 9.375vw, 180px);
  padding-bottom: clamp(100px, 12.5vw, 240px);
  box-sizing: border-box;
  gap: clamp(75px, 5.2083333333vw, 100px);
}
.footer__contact .footer__contact__title {
  font-size: clamp(28px, 3.3333333333vw, 48px);
  font-weight: bold;
  font-family: "Sawarabi Mincho", sans-serif;
  color: #262626;
  text-align: center;
}
.footer__contact .footer__btn {
  width: clamp(222px, 27.4vw, 274px);
  height: auto;
  padding: clamp(20px, 2.5vw, 25px) 0 clamp(19px, 2.4vw, 24px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(130deg, #1AA982 10%, #AFCA54 50%, #AFCA54 80%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.5s ease;
}
.footer__contact .footer__btn__text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.3;
}
.footer__contact .footer__btn__arrow {
  width: 18px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .footer__contact .footer__btn:hover {
    background-position: 20% 50%;
  }
  .footer__contact .footer__btn:hover .footer__btn__arrow {
    transform: translateX(12px);
  }
}
.footer__contact.no_contact {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    background: url(../img/footer_contact_bg_sp.webp) no-repeat center center/cover;
  }
}

.l-footer {
  width: 100%;
  background: url(../img/footer_bg.webp) no-repeat center center/cover;
  color: #fff;
  padding: 60px 40px 53px;
  box-sizing: border-box;
}
.l-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.l-footer .container .footer__logo {
  width: 145px;
}
.l-footer .container .footer__list {
  display: flex;
  gap: clamp(30px, 3.125vw, 60px);
}
.l-footer .container .footer__list__item__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: clamp(2rem, 0.1197916667vw, 2.3rem);
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.l-footer .container .footer__list__item__link.ai-center {
  align-items: center;
  justify-content: flex-start;
}
.l-footer .container .footer__list__item__link__arrow__sp {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 1px;
}
.l-footer .container .footer__list__item__link__arrow__sp::before, .l-footer .container .footer__list__item__link__arrow__sp::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 8px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 0.5px) 50%;
}
.l-footer .container .footer__list__item__link__arrow__sp::before {
  transform: rotate(45deg);
}
.l-footer .container .footer__list__item__link__arrow__sp::after {
  transform: rotate(-45deg);
}
.l-footer .container .footer__list__item .footer__inner__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #fff;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link.nodash::before {
  display: none;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link__arrow__sp {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 1px;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link__arrow__sp::before, .l-footer .container .footer__list__item .footer__inner__list__item__link__arrow__sp::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 8px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 0.5px) 50%;
}
.l-footer .container .footer__list__item .footer__inner__list__item__link__arrow__sp::before {
  transform: rotate(45deg);
}
.l-footer .container .footer__list__item .footer__inner__list__item__link__arrow__sp::after {
  transform: rotate(-45deg);
}
.l-footer .container .footer__list__item .footer__inner__list.nodash .footer__inner__list__item__link::before {
  display: none;
}
.l-footer .container .footer__list__item:last-of-type .footer__inner__list {
  margin: 8px 0 0;
}
.l-footer small {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 44px auto 0;
  font-size: 1.4rem;
  text-align: right;
}

@media (max-width: 1024px) {
  .l-footer .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .l-footer .container .footer__list {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .l-footer {
    padding: 45px 20px 30px;
  }
  .l-footer .container {
    max-width: 335px;
    flex-direction: column;
    gap: 0;
  }
  .l-footer .container .footer__logo {
    margin: 0 10px 29px;
  }
  .l-footer .container .footer__list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .l-footer .container .footer__list__item {
    padding: 0 9px;
    border-top: 0.3px solid #fff;
  }
  .l-footer .container .footer__list__item__link {
    padding: 16px 0px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-footer .container .footer__list__item__link__icon {
    width: 17px;
    height: 17px;
    position: relative;
    display: block;
  }
  .l-footer .container .footer__list__item__link__icon span {
    display: block;
    width: 17px;
    height: 2px;
    background: #fff;
    margin-bottom: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
  }
  .l-footer .container .footer__list__item__link__icon span:first-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-footer .container .footer__list__item__link__icon span:last-child {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .l-footer .container .footer__list__item .footer__inner__list {
    gap: 0;
  }
  .l-footer .container .footer__list__item .footer__inner__list__item__link {
    display: block;
    padding: 7.5px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 16px;
  }
  .l-footer .container .footer__list__item .footer__inner__list__item__link.pl0 {
    padding-left: 0;
  }
  .l-footer .container .footer__list__item .footer__inner__list__item__link::before {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: #fff;
  }
  .l-footer .container .footer__list__item .footer__inner__list__item__link.nodash::before {
    display: none;
  }
  .l-footer .container .footer__list__item .footer__inner__list__item:last-of-type {
    margin-bottom: 10px;
  }
  .l-footer .container .footer__list__item:last-of-type .footer__inner__list {
    margin: 8px 0 0;
  }
  .l-footer .container .footer__list__item:last-of-type .footer__inner__list__item__link {
    font-size: 2rem;
  }
  .l-footer .container .footer__list__item:last-of-type .footer__inner__list__item__link::before {
    display: none;
  }
  .l-footer .container .footer__list__item.active .footer__list__item__link__icon span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-footer .container .footer__list__item.active .footer__inner__list {
    height: auto;
  }
  .l-footer small {
    text-align: left;
  }
}