@charset "UTF-8";
@font-face {
  font-family: "Bayon-Regular";
  src: url(/fonts/Bayon/Bayon-Regular.woff) format("woff");
  font-display: swap;
}
/*========*/
/* フッタ */
/*========*/
/* ページトップへ戻る
-----------------------------------*/
.ptop {
  position: fixed;
  bottom: 80px;
  right: 64px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFC600;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .ptop {
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 32px;
  }
}
.ptop a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
}
.ptop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #FFF transparent;
  margin: -8px auto 0;
}
.ptop a:hover {
  opacity: 0.7;
}

/* フッタ
-----------------------------------*/
footer {
  padding: 80px 0 60px;
  background-color: #FFF;
}
@media (max-width: 1023px) {
  footer {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
footer .contents {
  width: 86%;
  max-width: 749px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .contents {
    width: 90%;
  }
}
footer .f-logo {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  footer .f-logo {
    max-width: 90px;
    margin-bottom: 24px;
  }
}
footer .row {
  display: flex;
  justify-content: space-between;
  border-left: 1px solid #DCDDDD;
}
@media (max-width: 767px) {
  footer .row {
    justify-content: flex-start;
    flex-wrap: wrap;
    border-left: none;
  }
}
footer .row .col {
  padding: 8px 48px;
  border-right: 1px solid #DCDDDD;
}
@media (max-width: 1023px) {
  footer .row .col {
    padding: 8px 24px;
  }
}
@media (max-width: 767px) {
  footer .row .col {
    padding: 0;
    border: none;
  }
}
footer .row .col:last-child {
  border: none;
}
footer .row .col:nth-of-type(1) {
  width: 215px;
}
@media (max-width: 767px) {
  footer .row .col:nth-of-type(1) {
    width: 120px;
    margin-right: 40px;
    padding-right: 40px;
    border-right: 1px solid #DCDDDD;
  }
}
footer .row .col:nth-of-type(2) {
  width: 260px;
}
@media (max-width: 767px) {
  footer .row .col:nth-of-type(2) {
    width: calc(100% - 160px);
  }
}
footer .row .col:nth-of-type(3) {
  flex: 1;
  padding-right: 0;
}
@media (max-width: 767px) {
  footer .row .col:nth-of-type(3) {
    width: 100%;
    margin-top: 30px;
  }
}
footer .menu-nav > li {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  footer .menu-nav > li {
    margin-bottom: 12px;
  }
}
footer .menu-nav > li:last-child {
  margin-bottom: 0;
}
footer .menu-nav > li .sub-menu {
  margin-top: 20px;
}
@media (max-width: 767px) {
  footer .menu-nav > li .sub-menu {
    margin-top: 12px;
  }
}
footer .menu-nav > li .sub-menu li {
  margin-bottom: 8px;
}
footer .menu-nav > li .sub-menu li:last-child {
  margin-bottom: 0;
}
footer .menu-nav > li .sub-menu li a {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  color: #424242;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .menu-nav > li .sub-menu li a {
    padding-left: 12px;
  }
}
footer .menu-nav > li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: #000;
}
@media (max-width: 767px) {
  footer .menu-nav > li .sub-menu li a::before {
    width: 4px;
  }
}
footer .menu-nav > li .sub-menu li a:hover {
  color: #FFC600;
  text-decoration: none;
}
footer .menu-nav > li a, footer .menu-nav > li span {
  display: inline-block;
  font-size: 16px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  footer .menu-nav > li a, footer .menu-nav > li span {
    font-size: 14px;
  }
}
footer .menu-nav > li a:hover {
  color: #FFC600;
  text-decoration: none;
}
footer .contact-btn {
  max-width: 224px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  footer .contact-btn {
    max-width: 230px;
    margin: 0 auto;
  }
}
footer .contact-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 500px;
  background: linear-gradient(to right, #FFC600 0%, #FF7166 100%);
  color: #FFF;
  font-size: 16px;
  line-height: 44px;
}
@media (max-width: 767px) {
  footer .contact-btn a {
    font-size: 15px;
  }
}
footer .contact-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background: linear-gradient(to right, #108DC7 0%, #FFC600 100%);
  transition: 0.5s all;
}
footer .contact-btn a:hover {
  text-decoration: none;
}
footer .contact-btn a:hover::before {
  opacity: 1;
}
footer .contact-btn a i {
  margin-right: 10px;
}
footer .contact-btn a i::before {
  font-size: 18px;
}
@media (max-width: 767px) {
  footer .contact-btn a i::before {
    font-size: 13px;
  }
}
footer .copyright {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-family: "Bayon-Regular", sans-serif;
  writing-mode: vertical-lr;
}
@media (max-width: 1023px) {
  footer .copyright {
    position: initial;
    transform: translateY(0);
    margin-top: 40px;
    padding: 24px 0 40px;
    writing-mode: initial;
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    margin-top: 0;
    padding: 24px 0 28px;
    font-size: 10px;
  }
}
/*# sourceMappingURL=footer.css.map */