@media screen and (max-width: 768px) {
  body.is-nav-open {
    overflow: hidden;
  }
}
.body {
  background-color: #fafafa;
}

.header-wrapper {
  width: 100%;
  position: fixed;
  padding-right: 13.1rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #fff;
  z-index: 990;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    height: 0;
  }
}
.header-logo {
  z-index: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 16.4%;
  min-width: 10.3rem;
  max-width: 23rem;
  aspect-ratio: 23/22.3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: width 0.3s ease, max-width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 6.4rem;
    min-width: 6.4rem;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
}
.header-logo a {
  display: block;
  width: 70%;
  aspect-ratio: 16/15.4;
}
.header-logo a img {
  width: 100%;
}
.header.is-scrolled .header-logo {
  width: 9.5%;
}
@media screen and (max-width: 768px) {
  .header.is-scrolled .header-logo {
    opacity: 0;
    pointer-events: none;
  }
}
.header-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5.1rem;
}
.header-nav__item {
  font-weight: 700;
}
.header-nav__item--insta {
  width: 3.6rem;
  aspect-ratio: 36/34.6;
}
.header-nav__item--insta img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header-nav__inner {
    flex-direction: column;
    gap: 2.4rem;
    background-color: #fff;
    padding: 3.2rem 2.4rem;
    border-radius: 1.2rem;
    width: 100%;
    max-width: 32rem;
    text-align: center;
    box-shadow: 0 1.2rem 3.6rem rgba(0, 0, 0, 0.2);
  }
  .header-nav__item {
    width: 100%;
  }
  .header-nav__item a {
    display: block;
    width: 100%;
  }
  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 768px) {
  .header.is-nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header.is-nav-open .header-logo {
  opacity: 0;
  pointer-events: none;
}

.main {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 0;
  }
}

.sec-title {
  position: relative;
  font-weight: 700;
  font-size: 2.4rem;
  padding-left: 1.9rem;
  padding-right: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .sec-title {
    padding-top: 0.4rem;
    font-size: 2rem;
    padding-bottom: 1.6rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
  }
}
.sec-title::before {
  content: "";
  width: 1rem;
  height: 3rem;
  background-color: #8FC320;
  top: 0;
  left: 0;
  position: absolute;
}
.sec-title::after {
  content: "";
  width: 0.5rem;
  height: 3rem;
  background-color: #5A98D6;
  top: 0;
  left: 0;
  position: absolute;
}
.sec-head {
  font-size: 5.4rem;
  font-weight: 700;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
}
@media screen and (max-width: 768px) {
  .sec-head {
    font-size: 2.4rem;
    gap: 1.2rem;
  }
}
.sec-head::before {
  content: "";
  display: block;
  width: 5.2rem;
  aspect-ratio: 1/1;
  background: url(../images/common/head-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .sec-head::before {
    width: 3.6rem;
  }
}

.contactBnr {
  margin-top: 15.4rem;
  width: 100%;
  max-width: 109.4rem;
  padding: 3.6rem 2.8rem 4.4rem;
  background: url(../images/common/contact-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .contactBnr {
    margin-top: 8rem;
    padding: 3rem 1.6rem 3.6rem;
  }
}
.contactBnr-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.56;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contactBnr-title {
    font-size: 3.2rem;
  }
}
.contactBnr-desc {
  margin-top: 2.1rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contactBnr-desc {
    margin-top: 1.2rem;
  }
}
.contactBnr-taglines {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border-top: 2px solid #000;
  margin-top: 1.6rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.6rem;
}
@media screen and (max-width: 768px) {
  .contactBnr-taglines {
    gap: 1.8rem;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.contactBnr-tagline {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.24;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactBnr-tagline {
    font-size: 1.6rem;
  }
}
.contactBnr-tagline::before {
  content: "";
  display: block;
  width: 5rem;
  min-width: 5rem;
  aspect-ratio: 1/1;
  margin-right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .contactBnr-tagline::before {
    width: 3.6rem;
    min-width: unset;
  }
}
.contactBnr-tagline:nth-child(1)::before {
  background: url(../images/common/contact-icon01.png) no-repeat center center/contain;
}
.contactBnr-tagline:nth-child(2)::before {
  background: url(../images/common/contact-icon02.png) no-repeat center center/contain;
}
.contactBnr-tagline:nth-child(3)::before {
  background: url(../images/common/contact-icon03.png) no-repeat center center/contain;
}
.contactBnr-btn {
  margin-top: 4.5rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 5rem;
  background-color: #F59E42;
  width: 42rem;
  height: 8rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contactBnr-btn {
    font-size: 1.6rem;
    width: 28rem;
    height: 5.4rem;
    margin-top: 3rem;
  }
}
.contactBnr-btn::before {
  margin-top: 0.4rem;
  margin-right: 1.6rem;
  content: "";
  width: 3rem;
  aspect-ratio: 3/2.3;
  background: url(../images/common/mail.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .contactBnr-btn::before {
    width: 2.4rem;
  }
}

.aside .estimate {
  background-color: #FF9525;
  width: 6rem;
  height: 28rem;
  position: fixed;
  right: 0;
  top: min(20.4rem, 12vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  writing-mode: vertical-lr;
  box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .aside .estimate {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    top: unset;
    right: unset;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    width: 28rem;
    height: 5.4rem;
    border-radius: 5rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.aside .estimate::before {
  content: "";
  background: url(../images/common/mail-w.png) no-repeat center center/contain;
  width: 2.1rem;
  aspect-ratio: 21/13.5;
}
@media screen and (max-width: 768px) {
  .aside .bar {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .aside .bar.is-scrolled {
    opacity: 1;
    pointer-events: all;
  }
}

.footer {
  margin-top: 10.8rem;
  background: url(../images/common/footer-bg.jpg) no-repeat center center/max(100%, 140rem) 100%;
  padding-top: 6rem;
  height: 76rem;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 4.6rem;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 4rem;
    background: url(../images/common/footer-bg.jpg) no-repeat center top/auto 110%;
  }
}
.footer-wrapper {
  width: 100%;
  max-width: 115.4rem;
  display: flex;
  justify-content: space-between;
  gap: 5.4rem;
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    background: url(../images/common/area-map.png) no-repeat right calc(100% - 32rem)/19.4rem 31.6rem;
  }
}
.footer-left {
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .footer-left {
    width: 100%;
  }
}
.footer-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer-title {
    font-size: 2.4rem;
  }
}
.footer-add {
  margin-top: 4.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.42;
}
@media screen and (max-width: 768px) {
  .footer-add {
    margin-top: 2.4rem;
    font-size: 1.4rem;
  }
}
.footer-wrap {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-wrap {
    margin-top: 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.footer-tel {
  line-height: 1.42;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer-tel {
    font-size: 1.4rem;
  }
}
.footer-insta {
  width: 2.8rem;
  aspect-ratio: 1/1;
}
.footer-insta img {
  width: 100%;
}
.footer-links {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .footer-links {
    margin-top: 3.2rem;
  }
}
.footer-links li {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer-links li {
    font-size: 1.6rem;
  }
}
.footer-right {
  width: 48rem;
  background: url(../images/common/area-map.png) no-repeat right 16.5rem/23.3rem 37.9rem;
}
@media screen and (max-width: 768px) {
  .footer-right {
    width: 100%;
    margin-top: 3.2rem;
    padding-bottom: 3rem;
    background: none;
  }
}
.footer-area {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.46;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .footer-area {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}
.footer-area:first-child {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer-area:first-child {
    margin-top: 0;
  }
}
.footer-area span {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer-area span {
    font-size: 1.6rem;
  }
}
.footer-areas p {
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer-areas p {
    margin-top: 0.4rem;
  }
}
.footer-areas p:last-child {
  margin-top: 7.5em;
}
@media screen and (max-width: 768px) {
  .footer-areas p:last-child {
    margin-top: 3.6rem;
  }
}
/*# sourceMappingURL=common.css.map */