@charset "UTF-8";
/* Scss Document */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  background-color: #fff;
}

body p, body a, body h3, body li {
  font-family: "ryo-gothic-plusn", sans-serif;
}

.wf-loading::before {
  content: "";
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #ecf3fa;
}
.wf-loading::after {
  content: "";
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#127ac0 90%,#0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
.wf-active {
  visibility: visible;
}
.wf-active::before {
  content: none;
}

main {
  margin: 0;
  background-color: #ecf3fa;
  padding-top: 160px;
  padding-bottom: 72px;
  min-height: 100vh;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.breadcrumb {
  width: 1080px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
  text-align: left;
}
.breadcrumb li {
  position: relative;
  margin-right: 16px;
  color: #127ac0;
}
.breadcrumb li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #127ac0;
  border-right: solid 1.5px #127ac0;
  position: absolute;
  right: -18px;
  top: 45%;
  transform: rotate(45deg) translateY(-50%);
}
.breadcrumb li:last-child {
  color: #222f3e;
}
.breadcrumb li:last-child::after {
  display: none;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #127ac0;
  padding: 4px 24px;
  border-radius: 999px;
  background: linear-gradient(to right, #2c3e69, #127ac0);
  box-shadow: 0 6px 10px rgba(56, 120, 187, 0.2);
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
.btn::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  z-index: -1;
  background-color: #fff;
  transition: 0.3s;
}
.btn::after {
  content: "";
  display: block;
}
.btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.btn:hover::before {
  background-color: #C9D7E0;
}
.btn_primary::after {
  background-image: url("../img/arrow.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  right: 19px;
}
.btn_mail::after {
  background-image: url("../img/icon_mail.svg");
  width: 16px;
  height: 16px;
  background-size: cover;
  order: -1;
}
.btn_tel::after {
  background-image: url("../img/icon_tel.svg");
  width: 16px;
  height: 16px;
  background-size: cover;
  order: -1;
}
.btn_action {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.6px;
  padding: 19px 95px;
}
.btn_action::after {
  position: absolute;
  right: 19px;
  background-image: url("../img/arrow.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
}
.btn_open {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.6px;
  padding: 19px 95px;
}
.btn_open::after {
  position: absolute;
  right: 19px;
  background-image: url("../img/icon_open.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
}
.btn_link::after {
  position: absolute;
  right: 19px;
  background-image: url("../img/icon_open.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  padding: 32px 40px;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  z-index: 3;
}
header p {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}

.header-menu-sp {
  display: none;
}

.header-hover-overlay {
  background-color: rgba(44, 62, 105, 0.5);
  margin-top: 32px;
  display: none;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -99;
  transition: 0.5s;
}

.header-hover {
  display: none;
  width: 100%;
  left: 0;
  transition: 0.2s;
  opacity: 0;
  z-index: -99;
}
.header-hover__sub-ttl {
  color: #127ac0;
  font-size: 16px;
}
.header-hover__ttl {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.header-hover__content {
  background-color: #fff;
  margin-top: 32px;
  padding-top: 8px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.header-hover__content .inner:first-of-type {
  align-items: start;
  width: 1080px;
}
.header-hover__content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 1行に4つの列を作成 */
  row-gap: 40px;
  padding: 56px 0;
  width: 1080px;
}
.header-hover__content ul li {
  color: #222f3e;
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}
.header-hover__content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #222f3e;
  border-right: solid 1px #222f3e;
  transform: rotate(45deg);
}
.header-hover__content ul li:hover {
  color: #127ac0;
}
.header-hover__content ul li:hover::before {
  border-color: #127ac0;
}
.header-hover__about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  background-image: url(../img/header_aboutus@2x.png);
  background-size: cover;
  margin: 0 8px;
  padding: 40px 0;
}
.header-hover__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  background-image: url(../img/header_info@2x.png);
  background-size: cover;
  margin: 0 8px;
  padding: 40px 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.header-menu {
  margin: 0 0 0 auto;
  display: grid;
  gap: 16px;
}
.header-menu nav {
  color: #222f3e;
}
.header-menu__menu {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 24px;
}
.header-menu__menu > li > a {
  transition: 0.3s;
}
.header-menu__menu > li > a:hover {
  color: #127ac0;
}
.header-menu__menu .menu-hover {
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}
.header-menu__menu .menu-hover:hover {
  color: #127ac0;
}
.header-menu .address {
  color: #127ac0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-menu .address::before {
  content: "";
  display: block;
  background-image: url("../img/icon_address.svg");
  width: 16px;
  height: 16px;
  padding-right: 8px;
  background-size: cover;
}
.header-menu .address span {
  margin-left: 8px;
}
.header-menu .tel {
  color: #127ac0;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-menu .tel::before {
  content: "";
  display: block;
  background-image: url("../img/icon_tel.svg");
  width: 24px;
  height: 24px;
  padding-right: 8px;
  background-size: cover;
}

.header-hamburger {
  width: 50px;
  height: 50px;
}

.hamburger {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid #ecf3fa;
}
.hamburger__wrap {
  display: block;
  cursor: pointer;
}
.hamburger button {
  color: #127ac0;
}
.hamburger__icon {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  z-index: 6;
}
.hamburger__icon button {
  text-align: center;
}
.hamburger__icon .menu-btn {
  background: #127ac0;
  content: "";
  height: 2px;
  position: absolute;
  transition: 0.8s;
  width: 39px;
}
.hamburger__icon--01 {
  top: 0px;
  left: 5px;
}
.hamburger__icon--02 {
  top: 10px;
  left: 5px;
}
.hamburger__icon--03 {
  top: 20px;
  left: 5px;
}
.hamburger__txt {
  text-align: center;
  color: #127ac0;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 12px;
}

.global-nav {
  position: relative;
  right: calc(-100% - 16px);
  position: fixed;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(44, 62, 105, 0.5);
  overflow-y: scroll;
  transition: 0.5s;
  z-index: 3;
}
.global-nav__content {
  background-color: #2c3e69;
  width: 375px;
  min-height: 100%;
  margin: 0 0 0 auto;
  padding: 24px 20px;
}
.global-nav__content p {
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.global-nav__logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-nav__logo img {
  width: 144px;
}
.global-nav__logo .close {
  position: relative;
  top: 8px;
  cursor: pointer;
}
.global-nav__logo .close .close-btn {
  position: absolute;
  left: 4px;
}
.global-nav__logo .close .close-btn::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.global-nav__logo .close .close-btn::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.global-nav__logo .close p {
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.global-nav__nav {
  margin-bottom: 32px;
}
.global-nav__nav > li {
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.global-nav__nav > li > a,
.global-nav__nav > li .accordion__arrow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.global-nav__nav > li > a::after,
.global-nav__nav > li .accordion__arrow::after {
  content: "";
  display: block;
  background-image: url("../img/arrow_white.svg");
  width: 16px;
  height: 16px;
  padding-right: 8px;
  background-size: cover;
  transition: transform 0.3s ease;
}
.global-nav__nav > li div {
  width: 100%;
  height: 100%;
}
.global-nav__nav > li div p:first-child {
  font-size: 22px;
  color: #fff;
}
.global-nav__nav > li div p:last-child {
  font-size: 10px;
  color: #127ac0;
}
.global-nav .accordion {
  cursor: pointer;
}
.global-nav .accordion__body {
  height: 0;
  overflow: hidden;
  padding-left: 48px;
  transition: 0.5s;
}
.global-nav .accordion__body li {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}
.global-nav .accordion__body li::before {
  content: "";
  display: block;
  background-image: url("../img/arrow_white.svg");
  width: 12px;
  height: 12px;
  padding-right: 8px;
  background-size: cover;
}
.global-nav__btn {
  display: grid;
  gap: 12px;
  border-radius: 999px;
}
.global-nav__btn .btn {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  padding: 19px 0;
}
.global-nav__btn .btn_tel::after {
  width: 20px;
  height: 20px;
}
.global-nav__btn .btn_mail::after {
  width: 20px;
  height: 20px;
}

.open {
  right: 0;
}

.accordion__arrow.arrow-rotated::after {
  transform: rotate(90deg);
}

footer {
  background-image: url("../img/footer_bk@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  background-color: #ecf3fa;
  padding-bottom: 30px;
}

.footer-content {
  padding: 160px 0 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer-content__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-content > div:last-child {
  font-size: 20px;
  line-height: 40px;
}

.footer-buttons {
  display: grid;
  gap: 8px;
}
.footer-buttons .btn {
  padding: 8px 24px;
}
.footer-buttons .btn_footer-tel {
  color: #2c3e69;
  font-size: 16px;
  flex-direction: column;
  gap: 0;
}
.footer-buttons .btn_footer-tel span {
  display: block;
  color: #127ac0;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 40px;
}
.footer-buttons .btn_footer-tel span::before {
  content: "";
  display: block;
  background-image: url("../img/icon_tel.svg");
  width: 24px;
  height: 24px;
  padding-right: 8px;
  background-size: cover;
}

.footer-bottom__wrap {
  margin: 0 20px;
  display: flex;
  gap: 120px;
  justify-content: end;
}
.footer-bottom__content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.footer-bottom__content .link {
  display: flex;
  justify-content: right;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 16px;
}
.footer-bottom__content .link p:first-child {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #898989;
}
.footer-bottom__content .copy {
  font-size: 12px;
}
.footer-bottom__go-top {
  font-size: 14px;
  display: flex;
  align-items: end;
  cursor: pointer;
}
.footer-bottom__go-top > p {
  position: relative;
}
.footer-bottom__go-top > p::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/arrow_up.svg");
  width: 16px;
  height: 14px;
  background-size: cover;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.lower__title {
  background-color: #fff;
  padding: 46px 0 80px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lower__title p {
  font-size: 14px;
  line-height: 14px;
  color: #127ac0;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}
.lower__title h2 {
  font-size: 32px;
  line-height: 32px;
  color: #222f3e;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}

/* --------------------------------

lg to xl (1280px to 1535px) screen responsive

----------------------------------*/
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .footer-bottom__wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
  }
}
/* --------------------------------

lg to xl (1024px to 1279px) screen responsive

----------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .breadcrumb {
    width: 960px;
  }
  header {
    padding: 20px 30px;
  }
  .header-logo {
    width: 160px;
  }
  .header-menu .address {
    font-size: 12px;
  }
  .header-menu .tel {
    font-size: 20px;
  }
  .header-menu .tel::before {
    width: 20px;
    height: 20px;
  }
  .header-menu__menu {
    font-size: 14px;
    gap: 18px;
  }
  .header-menu__menu .btn_mail {
    font-size: 12px;
    padding: 2px 20px;
  }
  .header-hover__sub-ttl {
    font-size: 16px;
  }
  .header-hover__ttl {
    font-size: 28px;
  }
  .header-hover__content {
    margin-top: 20px;
  }
  .header-hover__content .inner:first-of-type {
    align-items: start;
    width: 960px;
  }
  .header-hover__content ul {
    width: 960px;
  }
  .header-hover__content ul li {
    font-size: 18px;
  }
  main {
    padding-top: 124px;
  }
  .hamburger {
    padding-left: 30px;
    margin-left: 30px;
  }
  .global-nav__content {
    width: 35%;
  }
  .global-nav__logo img {
    width: 130px;
  }
  .global-nav__logo .close p {
    font-size: 14px;
  }
  .global-nav__logo .close .close-btn::before, .global-nav__logo .close .close-btn::after {
    width: 35px;
    height: 2px;
  }
  .global-nav__nav > li div p:first-child {
    font-size: 18px;
  }
  .global-nav__nav > li div p:last-child {
    font-size: 10px;
  }
  .global-nav__btn .btn {
    font-size: 18px;
    padding: 18px 0;
  }
  .global-nav__btn .btn_tel::after {
    width: 20px;
    height: 20px;
  }
  .global-nav__btn .btn_mail::after {
    width: 20px;
    height: 20px;
  }
  .footer-content {
    gap: 24px;
  }
  .footer-bottom__wrap {
    padding: 0 20px;
    gap: 60px;
  }
}
/* --------------------------------

md to lg (768px to 1023px) screen responsive

----------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    padding: 20px 20px;
  }
  .header-logo {
    width: 140px;
  }
  .header-menu .address {
    font-size: 9px;
  }
  .header-menu .tel {
    font-size: 16px;
  }
  .header-menu .tel::before {
    width: 16px;
    height: 16px;
  }
  .header-menu__menu {
    font-size: 11px;
    gap: 12px;
  }
  .header-menu__menu .btn {
    font-size: 9px;
    padding: 2px 16px;
  }
  .header-menu__menu .btn_mail::after {
    width: 12px;
    height: 12px;
  }
  .header-hover__sub-ttl {
    font-size: 14px;
  }
  .header-hover__ttl {
    font-size: 24px;
  }
  .header-hover__content {
    margin-top: 20px;
  }
  .header-hover__content .inner:first-of-type {
    padding: 0;
    align-items: start;
    width: 720px;
  }
  .header-hover__content ul {
    width: 720px;
  }
  .header-hover__content ul li {
    font-size: 14px;
  }
  /* --------------------------------
  // md to lg: Lower page common 下層ページ共通
  ----------------------------------*/
  .lower__title {
    padding: 40px 0 60px;
    margin-bottom: 8px;
  }
  .lower__title p {
    font-size: 12px;
    line-height: 12px;
  }
  .lower__title h2 {
    font-size: 28px;
    line-height: 28px;
  }
  main {
    padding-top: 110px;
  }
  .hamburger {
    padding-left: 20px;
    margin-left: 20px;
  }
  .hamburger__icon .menu-btn {
    margin-left: 12px;
  }
  .hamburger__icon .menu-btn {
    width: 32px;
    margin-left: 0;
  }
  .hamburger__icon--01 {
    left: 4px;
  }
  .hamburger__icon--02 {
    left: 4px;
  }
  .hamburger__icon--03 {
    left: 4px;
  }
  .hamburger__txt {
    font-size: 10px;
  }
  .global-nav__content {
    width: 35%;
  }
  .global-nav__logo {
    margin-bottom: 30px;
  }
  .global-nav__logo img {
    width: 130px;
  }
  .global-nav__logo .close p {
    font-size: 12px;
  }
  .global-nav__logo .close .close-btn::before, .global-nav__logo .close .close-btn::after {
    width: 32px;
    height: 2px;
  }
  .global-nav__nav {
    margin-bottom: 24px;
  }
  .global-nav__nav > li {
    padding-bottom: 20px;
    margin-bottom: 18px;
  }
  .global-nav__nav > li div p:first-child {
    font-size: 16px;
  }
  .global-nav__nav > li div p:last-child {
    font-size: 8px;
  }
  .global-nav__btn .btn {
    font-size: 13px;
    padding: 16px 0;
  }
  .global-nav__btn .btn_tel::after {
    width: 18px;
    height: 18px;
  }
  .global-nav__btn .btn_mail::after {
    width: 18px;
    height: 18px;
  }
  /* --------------------------------
  // md to lg: Footer
  ----------------------------------*/
  .footer-content {
    padding: 120px 20px 50px;
    gap: 16px;
  }
  .footer-content__left {
    gap: 32px;
  }
  .footer-logo {
    width: 220px;
  }
  .footer-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .footer-buttons .btn_footer-tel span {
    font-size: 24px;
  }
  .footer-bottom__wrap {
    gap: 60px;
  }
  .footer-bottom__content .link {
    font-size: 14px;
    line-height: 14px;
  }
  .footer-bottom__content .copy {
    font-size: 10px;
  }
  .inner {
    max-width: none;
    padding: 0 20px;
  }
  .breadcrumb {
    width: 100%;
  }
  .breadcrumb li {
    font-size: 14px;
  }
}
/* --------------------------------

SP

----------------------------------*/
@media screen and (max-width: 767px) {
  main {
    padding-top: 72px;
  }
  .lower__title {
    padding: 35px 0 50px;
    margin-bottom: 8px;
  }
  .lower__title p {
    font-size: 14px;
  }
  .lower__title h2 {
    font-size: 30px;
  }
  .inner {
    max-width: none;
    padding: 0 20px;
  }
  .breadcrumb {
    width: 100%;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .breadcrumb li {
    margin-right: 4px;
  }
  .breadcrumb li::after {
    right: -10px;
  }
  .btn_action {
    width: 100%;
  }
  .btn_open {
    width: 100%;
  }
  header {
    padding: 16px 20px;
  }
  .header-logo {
    width: 142px;
  }
  .header-menu-sp {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: right;
    color: #2c3e69;
    font-size: 12px;
  }
  .header-menu-sp a > div {
    display: grid;
    place-items: center;
  }
  .header-menu-sp a > div img {
    padding-top: 2px;
    width: 22px;
  }
  .header-menu-sp a > div p {
    font-size: 8px;
  }
  .header-menu {
    display: none;
  }
  .hamburger {
    padding-left: 0;
    margin-left: 10px;
    border-left: none;
  }
  .hamburger__icon .menu-btn {
    width: 26px;
    background: #2c3e69;
    margin-top: 4px;
  }
  .hamburger__icon--01 {
    left: 4px;
  }
  .hamburger__icon--02 {
    top: 8px;
    left: 4px;
  }
  .hamburger__icon--03 {
    top: 16px;
    left: 4px;
  }
  .hamburger__txt {
    font-size: 8px;
    color: #2c3e69;
  }
  .global-nav__content {
    width: 100%;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-calender {
    text-align: center;
  }
  .footer-calender p {
    font-size: 20px;
    line-height: 30px;
  }
  .footer-calender p > img {
    width: 100%;
    display: block;
  }
  .footer-content {
    max-width: 520px;
    flex-direction: column;
    padding: 160px 20px 62px 20px;
  }
  .footer-content > div:last-child {
    font-size: 20px;
    line-height: 34px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }
  .footer-bottom__wrap {
    margin: 0;
    justify-content: space-between;
    max-width: 480px;
    width: 100%;
    gap: 0;
  }
  .footer-bottom__content {
    margin: 0;
  }
  .footer-bottom__content .link {
    display: flex;
    justify-content: left;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 14px;
  }
  .footer-bottom__content .link p:first-child {
    padding-right: 16px;
    margin-right: 16px;
  }
  .footer-bottom__content .copy {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */