/*------------------------------
cta
------------------------------*/
.cta {
  background: #39677E;
  color: #fff;
}

.cta__wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .cta__wrapper {
    display: block;
  }
}

.cta__block {
  width: 50%;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .cta__block:first-child {
    padding-right: min(80px, 7.6923076923vw);
    border-right: 1px solid #fff;
  }
  .cta__block:nth-child(2) {
    padding-left: min(80px, 7.6923076923vw);
  }
}
@media (max-width: 767px) {
  .cta__block {
    width: 100%;
    padding: 60px 24px;
  }
  .cta__block:first-child {
    border-bottom: 1px solid #fff;
  }
}

.cta__title {
  font-size: min(3.2rem, 3.0769230769vw);
  font-weight: 700;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 2.4rem;
  }
}

.cta__description {
  margin-top: 24px;
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .cta__description {
    font-size: 1.6rem;
  }
}

.cta__button {
  margin-top: 24px;
}
.cta__button a {
  display: inline-block;
  width: 100%;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #39677E;
  padding: 1.5em;
  position: relative;
}
.cta__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  background: url(../img/icon_link-arrow01_blue.png) no-repeat center center/contain;
  width: 1.5em;
  aspect-ratio: 1/1;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: 80px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 60px 0 30px;
  }
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .footer__wrapper {
    display: block;
  }
}

.footer__content {
  width: 45%;
}
@media (max-width: 999px) {
  .footer__content {
    width: 100%;
  }
}

.footer__logo {
  width: min(340px, 23.6111111111vw);
}
@media (max-width: 999px) {
  .footer__logo {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 340px;
    max-width: 100%;
  }
}

.footer__address {
  margin-top: 28px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .footer__address {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    margin-top: 30px;
  }
}

.footer__privacy-policy {
  margin-top: 28px;
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer__privacy-policy {
    text-align: center;
    margin-top: 35px;
  }
}

.footer__copyright {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}
@media (max-width: 767px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__nav {
  width: 51%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__nav {
    width: 55%;
  }
}
@media (max-width: 999px) {
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    display: block;
    border-top: 1px solid #047FAC;
  }
}

@media (min-width: 768px) {
  .footer__menu li:nth-child(n+2) {
    margin-top: 40px;
  }
}

.footer__item {
  font-size: 1.4rem;
  font-weight: 700;
  color: #39677E;
}
@media (max-width: 767px) {
  .footer__item {
    padding: 14.5px 0;
    border-bottom: 1px solid #047FAC;
    position: relative;
  }
}

.footer__item-icon {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 4px;
  top: 20px;
}
@media (min-width: 768px) {
  .footer__item-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__item-icon {
    display: block;
  }
}
.footer__item-icon.is-open .footer__item-bar2 {
  transform: translate(-50%, -50%);
}

.footer__item-bars {
  position: relative;
}

.footer__item-bar1,
.footer__item-bar2 {
  width: 10px;
  height: 2px;
  background: #39677E;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer__item-bar2 {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s;
}

.footer__submenu {
  margin-top: 16px;
}
.footer__submenu li {
  font-weight: 400;
  color: #555;
}
.footer__submenu li:nth-child(n+2) {
  margin-top: 16px;
}
.footer__submenu li a {
  position: relative;
  padding-left: 16px;
}
.footer__submenu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #555;
  width: 8px;
  height: 1px;
}
@media (min-width: 768px) {
  .footer__submenu {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .footer__submenu {
    display: none;
  }
}
/*# sourceMappingURL=footer.css.map */