@charset "UTF-8";
/* # =================================================================
# footer
# ================================================================= */
.footer {
  position: relative;
  background-color: #251e1c;
}
.footer__inner {
  padding-top: 80px;
  padding-bottom: 10px;
}

.footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.footer-item {
  position: relative;
  width: calc((100% - 50px) / 3);
  text-align: center;
  border-radius: 30px;
  padding: 50px 40px 40px;
  overflow: hidden;
}
.footer-item--blue {
  background-color: #3a638e;
}
.footer-item--blue .footer-item__link.c-pill-button--tel::before {
  background-color: #25456c;
}
.footer-item--blue .footer-item__link .c-pill-button__text {
  color: #3a638e;
}
.footer-item--orange {
  background-color: #e08d2a;
}
.footer-item--orange .footer-item__link.c-pill-button::before {
  background-color: #e08d2a;
}
.footer-item--orange .footer-item__link .c-pill-button__text {
  color: #e08d2a;
}
.footer-item::after {
  content: "";
  position: absolute;
  background-size: contain;
  mix-blend-mode: multiply;
}
.footer-item:nth-child(1)::after {
  top: 140px;
  right: -80px;
  width: 210px;
  height: 210px;
  background-image: url("../img/pattern01.png");
}
.footer-item:nth-child(2)::after {
  top: 120px;
  right: -110px;
  width: 240px;
  height: 240px;
  background-image: url("../img/pattern02.png");
}
.footer-item:nth-child(3)::after {
  top: -100px;
  left: -100px;
  width: 610px;
  height: 610px;
  background-image: url("../img/pattern05.png");
}
.footer-item__heading {
  position: relative;
  font-size: 22px;
	font-weight: 500;
  line-height: 1.5;
	z-index: 2;
}
.footer-item__heading::after {
  content: "⚫︎　⚫︎　⚫︎　⚫︎";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 10px;
  letter-spacing: -3px;
  color: #251e1c;
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.footer-item__text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 25px;
}
.footer-item__heading {
  color: #ffffff;
}
.footer-item__text {
  color: #ffffff;
}
.footer-item__link {
  min-height: 83px;
  background-color: #ffffff;
  margin-top: 30px;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .footer-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  .footer-item {
    width: 100%;
  }
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 60px;
  margin-top: 58px;
}

.footer-link {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.footer-link + .footer-link {
  position: relative;
}

.footer-link + .footer-link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -30px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 425px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 25px;
  }
  .footer-link + .footer-link::before {
    content: none;
  }
}
.footer-info {
  width: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin: 50px auto 0;
}
.footer-info__logo {
  width: 140px;
  height: 125px;
  margin: 0 auto;
}
.footer-info__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-info__title {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}
.footer-info__title span {
  display: block;
}
.footer-info__title span:nth-child(2) {
  font-size: 13px;
  margin-top: 10px;
}
.footer-info__link {
  width: 100%;
  display: block;
  background-color: #443c37;
}
.footer-info__link.c-pill-button--tel::before {
  background-color: #ffffff;
}
.footer-info__link .c-pill-button__text {
  color: #ffffff;
}
.footer-info__address {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 425px) {
  .footer-info {
    margin-top: 100px;
  }
}
.footer-copyright {
  color: #ffffff;
  font-size: 9px;
  text-align: center;
  margin-top: 60px;
}

/* # =================================================================
# top-link
# ================================================================= */
.top-link {
  position: absolute;
  top: -30px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.top-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-90deg);
          transform: translate(-50%, -50%) rotateZ(-90deg);
  display: block;
  width: 17px;
  height: 17px;
  -webkit-mask-image: url("../img/icon/icon_arrow.svg");
          mask-image: url("../img/icon/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #443c37;
}

@media (hover: hover) {
  .top-link:hover {
    background-color: #443c37;
    opacity: 1;
  }
  .top-link:hover::before {
    background-color: #ffffff;
  }
}


/* # =================================================================
# footer-link-popup-contents
# ================================================================= */
.footer-link:has(.js-open-popup) {
  position: relative;
}
.footer-link__popup-open {
  color: #ffffff;
}
.footer-link-popup-contents {
  width: 170px;
  position: absolute;
  bottom: -70px;
  left: 0;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.03);
  padding: 16px 18px;
  opacity: 0.96;
  z-index: 1000;
}
.footer-question-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.footer-question-list__item {
  font-size: 14px;
  opacity: 1;
}
.footer-question-list__item::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #251e1c;
  border-width: 5px 0px 5px 6px;
  margin-right: 5px;
  margin-bottom: 1px;
}
.footer-question-list__item--blue::before {
  border-color: transparent transparent transparent #3a638e;
}
.footer-question-list__item--orange::before {
  border-color: transparent transparent transparent #e08d2a;
}

@media screen and (max-width: 768px) {
  .footer-link-popup-contents {
    bottom: -25px;
    left: -50px;
  }
}