html {
  scroll-behavior: smooth;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section .visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
}

img {
  max-width: 100%;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.note {
  margin-top: 20px;
  font-size: 0.93em;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
}
@media (max-width: 768px) {
  .note .note {
    font-size: 0.86em;
    line-height: 1.4;
  }
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1240px;
  width: 86%;
}
@media (max-width: 768px) {
  .wrapper {
    width: 90%;
  }
}

.nav_btn {
  position: fixed;
  width: 68px;
  height: 68px;
  top: 40px;
  right: 40px;
  z-index: 200;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .nav_btn {
    top: 20px;
    right: 20px;
  }
}
.nav_btn span {
  position: absolute;
  width: 60%;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.nav_btn span:nth-child(1) {
  top: 18px;
}
.nav_btn span:nth-child(2) {
  top: 33px;
}
.nav_btn span:nth-child(3) {
  top: 47px;
}

.open .nav_btn span:nth-child(1) {
  transform: translate(-20px, 15px) rotate(45deg);
}
.open .nav_btn span:nth-child(2) {
  opacity: 0;
}
.open .nav_btn span:nth-child(3) {
  transform: translate(-20px, -14px) rotate(-45deg);
}

.nav_menu {
  position: fixed;
  top: 0;
  right: -30%;
  z-index: 100;
  background-color: #fff;
  opacity: 0.92;
  height: 100vh;
  width: 25%;
  padding: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .nav_menu {
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    opacity: 0.96;
  }
}

.open .nav_menu {
  right: 0;
}

.header ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header li {
  border-top: 1px solid #cacaca;
  padding: 30px 10px;
}
.header ul li:last-child {
  border-bottom: 1px solid #cacaca;
}
.header a {
  display: block;
  transition: 0.3s;
}
.header a:hover {
  opacity: 0.5;
}

.float_pc {
  position: fixed;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .float_pc {
    display: none;
  }
}
.float_pc a {
  width: 150px;
  transition: 0.3s;
}
.float_pc a:hover {
  opacity: 0.7;
}

.float_sp {
  display: none;
}
@media (max-width: 768px) {
  .float_sp {
    width: 100%;
    position: fixed;
    display: flex;
    bottom: 0;
    z-index: 10;
    transition: 0.3s;
  }
  .float_sp span {
    font-size: 0.7em;
  }
  .float_sp a {
    font-size: 1.5em;
    font-family: serif;
    width: 50%;
    text-align: center;
    padding: 10px;
    color: #fff;
    line-height: 1.3;
    transition: 0.3s;
  }
  .float_sp ahover {
    opacity: 0.5;
  }
  .float_sp .blue {
    background-color: #407296;
  }
  .float_sp .red {
    background-color: #90534B;
  }
}

.float_pc.hidden,
.float_sp.hidden {
  opacity: 0;
}

.attention {
  display: flex;
  flex-direction: column;
}
.attention .title {
  text-align: center;
  padding-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.5;
}

.top {
  background-image: url(../img/pc/fv_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .top {
    background-image: url(../img/sp/fv_bg.jpg);
  }
}
.top .fv {
  display: flex;
  justify-content: center;
  height: 100svh;
}
.top .fv picture {
  width: 72%;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top .fv picture {
    width: 87%;
  }
}
.top .present {
  background-color: rgba(42, 12, 8, 0.9);
  padding: 60px 0;
}
.top .present .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top .present .title {
  width: 39%;
}
@media (max-width: 768px) {
  .top .present .title {
    width: 100%;
  }
}
.top .present .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .top .present .content {
    flex-direction: column;
    row-gap: 60px;
  }
}
.top .present .content picture {
  width: 32%;
}
@media (max-width: 768px) {
  .top .present .content picture {
    width: 100%;
  }
}

.cta {
  background-image: url(../img/pc/cta_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta .container {
  padding: 80px 0 55px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .cta .container {
    padding: 40px 0;
  }
}
.cta .container .btn_area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media (max-width: 768px) {
  .cta .container .btn_area {
    flex-direction: column;
    row-gap: 40px;
  }
}
.cta .container .btn_area a {
  width: 31%;
  transition: 0.3s;
}
.cta .container .btn_area a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .cta .container .btn_area a {
    width: 100%;
  }
}
.cta .container .attention {
  color: #fff;
  margin-top: 80px;
}
.cta .container .attention .title {
  border-bottom: 1px solid #fff;
}

.housemaker .container {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .housemaker .container {
    padding: 80px 0 40px;
  }
}
.housemaker .container .title {
  width: 85%;
}
.housemaker .container .title .note {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .housemaker .container .title .note {
    text-align: justify;
  }
}
.housemaker .container .jump {
  margin-top: 40px;
  display: flex;
  width: 100%;
  -moz-column-gap: 44px;
       column-gap: 44px;
  row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .housemaker .container .jump {
    -moz-column-gap: 18px;
         column-gap: 18px;
    row-gap: 20px;
  }
}
.housemaker .container .jump a {
  font-family: serif;
  font-size: 1.12em;
  position: relative;
  padding-right: 12px;
  color: #1562A3;
}
.housemaker .container .jump a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.housemaker .container .jump a:hover {
  color: #1562A3;
  border-bottom: 1px solid #1562A3;
}
.housemaker .container .jump a:hover:after {
  border-bottom: solid 2px #1562A3;
  border-right: solid 2px #1562A3;
}
.housemaker .container .hm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 80px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .housemaker .container .hm {
    margin-top: 40px;
  }
}
.housemaker .container .hm picture {
  width: 48%;
}
@media (max-width: 768px) {
  .housemaker .container .hm picture {
    width: 100%;
  }
}
.housemaker .container .note {
  margin-top: 50px;
  width: 100%;
  text-align: left;
}

.footer {
  background-color: #ebebeb;
}
.footer .address {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .footer .address {
    padding: 60px 0;
  }
}
.footer .address p {
  font-family: serif;
  font-size: 1.5em;
  text-align: center;
}
.footer .address div {
  margin-top: 50px;
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer .address div {
    margin-top: 32px;
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
  }
}
.footer .address div picture {
  width: 27%;
}
@media (max-width: 768px) {
  .footer .address div picture {
    width: 85%;
  }
}
.footer .copylight {
  text-align: center;
  color: #fff;
  padding: 20px 0 50px;
  background-color: #000;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer .copylight {
    padding: 20px 0 40px;
  }
}

.contact .container {
  width: 75%;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .contact .container {
    width: 90%;
  }
}
.contact .container h2 {
  text-align: center;
  color: white;
  padding: 24px 0;
  font-size: 2.3em;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .contact .container h2 {
    font-size: 1.7em;
    line-height: 1.3;
    padding: 10px 0;
  }
}
.contact .container .kaigyo {
  background-color: #407296;
}
.contact .container .kinmui {
  background-color: #90534B;
}
.contact .container .form {
  margin-top: 40px;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .contact .container .form {
    margin-top: 20px;
  }
}
.contact .container .attention {
  color: #000;
  margin: 80px 0;
}
.contact .container .attention .title {
  border-bottom: 1px solid #000;
}/*# sourceMappingURL=style.css.map */