@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@500&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@500&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
.products_link {
  width: 85%;
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .products_link {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1300px) {
  .products_link {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.products_link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 160px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .products_link a {
    height: 250px;
  }
  .products_link a:hover::before {
    -webkit-transform: scale(110%);
            transform: scale(110%);
  }
  .products_link a:hover::after {
    opacity: 0.65;
  }
}
.products_link a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products_link a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0b4d88;
  opacity: 0.3;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products_link a span {
  position: relative;
  z-index: 3;
}

.kv {
  position: relative;
  height: calc(100vh - 76px);
  z-index: -1;
  min-height: 640px;
}
@media screen and (min-width: 1300px) {
  .kv {
    margin-top: -100px;
    height: 100vh;
  }
}
.kv video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.kv__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .kv__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.kv__inner .front_text {
  margin: 0 auto 0;
  width: 85%;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  line-height: 45px;
}
@media screen and (min-width: 960px) {
  .kv__inner .front_text {
    font-size: 34px;
    margin-top: 40px;
  }
}
.kv__inner .front_text span {
  display: inline-block;
}
.kv__inner .front_subtext {
  margin: 0 auto 0;
  width: 85%;
  font-size: 18px;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  line-height: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .kv__inner .front_subtext {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.kv__inner .front_subtext span {
  display: inline-block;
}

.our_philosophy {
  margin: 65px auto;
  position: relative;
  width: 85%;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .our_philosophy {
    margin: 220px auto;
  }
}
.our_philosophy::before {
  content: "Our Philosophy";
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 45px;
  position: absolute;
  z-index: -1;
  line-height: normal;
  color: #F2F5F8;
}
@media screen and (min-width: 960px) {
  .our_philosophy::before {
    font-size: 140px;
  }
}
.our_philosophy p {
  line-height: 32px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .our_philosophy p {
    text-align: center;
  }
}
.our_philosophy p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .our_philosophy p br {
    display: block;
  }
}

.front_company {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (min-width: 960px) {
  .front_company {
    margin-bottom: 210px;
  }
}
.front_company::before {
  content: "";
  display: block;
  width: 210px;
  height: 100px;
  position: absolute;
  z-index: -1;
  background-color: #0b4d88;
  opacity: 0.06;
  right: 0;
  bottom: 40px;
}
@media screen and (min-width: 960px) {
  .front_company::before {
    width: 20%;
    top: 200px;
    bottom: auto;
    height: 150px;
  }
}
.front_company::after {
  content: "Company";
  display: block;
  position: absolute;
  z-index: -2;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #F2F5F8;
  font-size: 64px;
  line-height: normal;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .front_company::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: auto;
    right: 10vw;
    top: 270px;
    bottom: auto;
    font-size: 140px;
  }
}
.front_company__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 960px) {
  .front_company__inner {
    gap: 120px;
  }
}
.front_company .pc_img {
  display: none;
}
@media screen and (min-width: 960px) {
  .front_company .pc_img {
    display: block;
    width: 40%;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .front_company .content {
    width: 40%;
  }
}
.front_company .content h2 {
  width: 85%;
  margin: 0 auto 12px;
}
@media screen and (min-width: 960px) {
  .front_company .content h2 {
    margin-bottom: 30px;
    width: 100%;
  }
}
.front_company .content .sp_img {
  display: block;
  max-width: 100%;
  width: 65%;
}
@media screen and (min-width: 960px) {
  .front_company .content .sp_img {
    display: none;
  }
}
.front_company .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 25px auto 10px;
  width: 85%;
}
@media screen and (min-width: 960px) {
  .front_company .content h3 {
    font-size: 24px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.front_company .content p {
  margin: 0 auto;
  width: 85%;
}
@media screen and (min-width: 960px) {
  .front_company .content p {
    width: 100%;
  }
}

.front_service {
  position: relative;
}
@media screen and (min-width: 1300px) {
  .front_service {
    margin-bottom: 150px;
  }
}
.front_service::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: #063057;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .front_service::before {
    width: 97%;
  }
}
.front_service::after {
  content: "Service";
  display: block;
  position: absolute;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #0b4d88;
  font-size: 60px;
  left: 5%;
  top: -55px;
  line-height: normal;
}
@media screen and (min-width: 960px) {
  .front_service::after {
    left: 0;
    font-size: 140px;
    top: -120px;
  }
}
.front_service__inner {
  background-image: url(./../img/map.svg);
  background-repeat: no-repeat;
  background-size: 1000px auto;
  background-position: center;
  padding-bottom: 65px;
}
.front_service h2 {
  text-align: center;
  color: #ffffff;
  padding-top: 40px;
}
@media screen and (min-width: 960px) {
  .front_service h2 {
    padding-top: 120px;
  }
}
.front_service h2 strong {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 24px;
  opacity: 1;
  color: #ffffff;
}
.front_service h2 span {
  opacity: 0.53;
}
.front_service_content {
  width: 90%;
  margin: 0 auto;
  color: #ffffff;
}
@media screen and (min-width: 960px) {
  .front_service_content {
    text-align: center;
    max-width: 900px;
  }
}
.front_service .viewmore_btn {
  color: #ffffff;
  margin: 55px auto 0;
  border-bottom-color: #ffffff;
}
.front_service_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 54px auto 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 310px;
}
@media screen and (min-width: 960px) {
  .front_service_flex {
    max-width: 700px;
  }
}
.front_service_flex_item {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px #de8000 solid;
}
@media screen and (min-width: 960px) {
  .front_service_flex_item {
    width: 320px;
    height: 320px;
    border: 5px #de8000 solid;
  }
}
.front_service_flex_item__inner {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .front_service_flex_item__inner {
    width: 300px;
    height: 300px;
  }
}
.front_service_flex_item__inner p {
  font-size: 23px;
  color: #0b4d88;
  font-family: "Noto Serif JP", serif;
  line-height: normal;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .front_service_flex_item__inner p {
    font-size: 57px;
  }
}
.front_service_flex_item__inner p.en {
  font-size: 16px;
}
@media screen and (min-width: 960px) {
  .front_service_flex_item__inner p.en {
    font-size: 40px;
  }
}
.front_service_flex_item__inner span {
  font-size: 8px;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #de8000;
  line-height: normal;
  margin-top: 6px;
}
@media screen and (min-width: 960px) {
  .front_service_flex_item__inner span {
    font-size: 21px;
    margin-top: 16px;
  }
}
.front_service__img {
  display: none;
}
@media screen and (min-width: 1300px) {
  .front_service__img {
    display: block;
    width: 20vw;
    position: absolute;
  }
}
.front_service__img1 {
  left: 0;
  bottom: -120px;
}
.front_service__img2 {
  right: 0;
  top: 40%;
}

.front_delivery {
  position: relative;
  padding-top: 120px;
  margin-bottom: 80px;
}
@media screen and (min-width: 960px) {
  .front_delivery {
    padding-top: 250px;
    margin-bottom: 120px;
  }
}
.front_delivery::after {
  content: "Real Estate";
  display: block;
  position: absolute;
  z-index: -2;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #F2F5F8;
  font-size: 64px;
  line-height: normal;
  left: 50%;
  top: 65px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .front_delivery::after {
    font-size: 140px;
    top: 115px;
  }
}
.front_delivery__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .front_delivery__inner {
    gap: 120px;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.front_delivery__inner::before {
  content: "";
  display: block;
  width: 75%;
  height: 150px;
  position: absolute;
  z-index: -1;
  background-color: #0b4d88;
  opacity: 0.06;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .front_delivery__inner::before {
    width: 40%;
    height: 15vw;
  }
}
.front_delivery .pc_img {
  display: none;
}
@media screen and (min-width: 960px) {
  .front_delivery .pc_img {
    display: block;
    width: 40%;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .front_delivery .content {
    width: 40%;
    padding-top: 2vw;
  }
}
.front_delivery .content h2 {
  width: 85%;
  margin: 0 auto 12px;
}
@media screen and (min-width: 960px) {
  .front_delivery .content h2 {
    margin-bottom: 30px;
    width: 100%;
  }
}
.front_delivery .content .sp_img {
  display: block;
  max-width: 100%;
  width: 65%;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 18px;
}
@media screen and (min-width: 960px) {
  .front_delivery .content .sp_img {
    display: none;
  }
}
.front_delivery .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 25px auto 10px;
  width: 85%;
}
@media screen and (min-width: 960px) {
  .front_delivery .content h3 {
    font-size: 24px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.front_delivery .content p {
  margin: 0 auto;
  width: 85%;
}
@media screen and (min-width: 960px) {
  .front_delivery .content p {
    width: 100%;
  }
}

.front_product {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.front_product::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0b4d88;
  opacity: 0.06;
  z-index: -2;
}
.front_product::after {
  content: "Products";
  display: block;
  color: #ffffff;
  position: absolute;
  z-index: -2;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  font-size: 64px;
  line-height: normal;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .front_product::after {
    font-size: 140px;
    top: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.front_product__inner {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 31px 0 50px;
}
@media screen and (min-width: 960px) {
  .front_product__inner {
    padding: 60px 0 140px;
  }
}

.front_news {
  margin-top: 50px;
  padding-top: 70px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .front_news {
    margin-top: 100px;
    padding-top: 0;
    margin-bottom: 70px;
  }
}
.front_news::after {
  content: "News";
  display: block;
  color: #F2F5F8;
  position: absolute;
  z-index: -2;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  font-size: 64px;
  line-height: normal;
  left: 0;
  top: 20px;
}
@media screen and (min-width: 960px) {
  .front_news::after {
    font-size: 140px;
    top: auto;
    left: 5%;
    bottom: 0;
  }
}
.front_news__inner {
  margin: 0 auto;
  position: relative;
  padding-bottom: 65px;
}
@media screen and (min-width: 960px) {
  .front_news__inner {
    width: 85%;
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.front_news__inner::before {
  content: "";
  display: block;
  width: 90%;
  height: 60%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #0b4d88;
  opacity: 0.06;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .front_news__inner::before {
    max-width: 800px;
    width: 60%;
    right: -140px;
  }
}
.front_news__inner > div:first-child {
  margin: 0 auto;
  width: 85%;
}
@media screen and (min-width: 960px) {
  .front_news__inner > div:first-child {
    width: 350px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media screen and (max-width: 959px) {
  .front_news__inner > div:first-child .viewmore_btn {
    display: none;
  }
}
.front_news__body {
  width: 90%;
  background-color: #fafafa;
  margin-left: 3%;
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
}
@media screen and (min-width: 960px) {
  .front_news__body {
    width: 100%;
    margin: 0;
    padding: 25px 55px;
  }
}
.front_news__body__inner a {
  display: block;
  width: 100%;
  text-decoration: none;
  padding-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .front_news__body__inner a {
    padding: 40px 0;
  }
  .front_news__body__inner a:hover .post_title::after {
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .front_news__body__inner a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.front_news__body__inner a:not(:last-child) {
  border-bottom: 1px #d0d0d0 solid;
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .front_news__body__inner a:not(:last-child) {
    margin-bottom: 0;
  }
}
.front_news__body__inner .post_meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.front_news__body__inner .post_meta .date {
  color: #0b4d88;
  width: 90px;
  display: block;
  font-family: "Work Sans", sans-serif;
}
.front_news__body__inner .post_meta .cat {
  min-width: 120px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.front_news__body__inner .post_meta .cat span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  color: #0b4d88;
  background-color: #ffffff;
  width: fit-content;
  padding: 0 15px;
  border: 1px #0b4d88 solid;
  border-radius: 6px;
  margin: 0 auto;
}
.front_news__body__inner .post_title {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .front_news__body__inner .post_title {
    margin-top: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  .front_news__body__inner .post_title::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #0b4d88;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.front_news__body .viewmore_btn {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 960px) {
  .front_news__body .viewmore_btn {
    display: none;
  }
}