@charset "utf-8";
/*------------------------------ 共通 ------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.inner,
.large-container {
  margin-inline: auto;
}

.flex {
  display: flex;
}

img {
  width: 100%;
  height: auto;
}

.nav-list {
  position: relative;
}

.nav-list::after {
  content: "";
  width: 100%;
  height: .2rem;
  background: #2180CC;
  position: absolute;
  bottom: -.6rem;
  left: 0;
  z-index: 1;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .5s ease;
  transform-origin: left;
}

.nav-list:hover::after {
  transform: scale(1, 1);
}

.btn {
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 2.6rem;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: .5s ease;
}

.btn::before {
  content: "";
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
  transition: transform .5s ease;
}

.btn:hover::before {
  transform: translateY(-50%) scale(1.7);
}

.btn.blue {
  color: #fff;
  background: #2180CC;
}

.btn.blue::before {
  background: #fff;
}

.btn.clear {
  border: .1rem solid #333333;
}

.btn.clear::before {
  background: #024BB1;
}

.btn .txt-wrapper {
  height: 1em;
  overflow: hidden;
  position: relative;
}

.btn .txt-wrapper .txt {
  display: block;
  line-height: 1;
  transform: translateY(0);
  transition: transform 0.5s ease; /* 追加 */
}

.btn .txt-wrapper .txt.next {
  position: absolute;
  top: 100%;
  left: 0;
}

.btn:hover .txt-wrapper .txt.current {
  transform: translateY(-103%);
}

.btn:hover .txt-wrapper .txt.next {
  transform: translateY(-103%);
}

.section-title .common-heading {
  font-weight: bold;
  letter-spacing: -0.1em;
}

.common-heading .char,
.section-title p .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title p {
  font-family: "Cardo", serif;
  color: #2180CC;
  font-weight: bold;
  letter-spacing: -0.1em;
}

.js-split-fade.active .common-heading .char
.js-split-fade.active p .char {
  opacity: 1;
  transform: translateY(0);
}

.js-split-fade.active .common-heading .char:nth-child(n),
.js-split-fade.active p .char:nth-child(n) {
  transition-delay: calc(0.06s * var(--i));
}

.js-split-fade.active .common-heading .char,
.js-split-fade.active p .char {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.04s * var(--i));
}

.sub-title {
  font-weight: bold;
  padding-bottom: 1.35rem;
  position: relative;
}

.sub-title::before {
  content: "";
  width: 100%;
  height: .1rem;
  background: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub-title::after {
  content: "";
  width: 8rem;
  height: .2rem;
  background: #2180CC;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0.05rem);
}

.js-flow-to-up {
  transform: translateY(2rem);
  opacity: 0;
  transition: .7s ease;
}

.js-flow-to-up.active {
  transform: translateY(0);
  opacity: 1;
}

.page-top-btn.js-fadeIn {
  width: 5.4rem;
  height: 5.4rem;
  background: rgba(255, 255, 255, .44);
  border: rgba(255, 255, 255, .4);
  box-shadow: 0 .1rem .3rem rgba(000, 000, 000, .16);
  position: fixed;
  bottom: 2rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: .5s ease;
}

.page-top-btn.js-fadeIn.active {
  opacity: 1;
  pointer-events: auto;
}

.page-top-btn a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.page-top-btn a::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border-top: .15rem solid #000;
  border-right: .15rem solid #000;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 60%;
  left: 50%;
  transition: .5s ease;
}

.page-top-btn a:hover::before  {
  transform: translate(-50%, -70%) rotate(-45deg);
}


/*------------------------------ ヘッダー ------------------------------*/
header {
  width: 100%;
  background: rgba(255, 255, 255, .44);
  border-bottom: .1rem solid rgba(255, 255, 255, .4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: .5s ease;
}

header.active {
  box-shadow: 0 2rem 2rem rgba(000, 000, 000, .16);
}

header .blur {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(.8rem);
  -webkit-backdrop-filter: blur(.8rem);
}

header .blur .logo-nav {
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

header .blur .logo-nav h1 a,
header .blur .logo-nav p a {
  display: block;
  transition: .5s ease;
}

header .blur .logo-nav h1 a:hover,
header .blur .logo-nav p a:hover {
  opacity: 0.7;
}

header .blur .logo-nav .nav-btn nav ul li a {
  color: #000;
  letter-spacing: 0.05em;
  font-weight: bold;
  transition: .5s ease;
}

/*------------------------------ ファーストビュー ------------------------------*/
#top .fv {
  position: relative;
}

#top .fv .swiper-wrapper .swiper-slide picture {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  overflow: hidden;
}

#top .fv .swiper-wrapper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
  transform: scale(1);
}

#top .fv .swiper-wrapper .swiper-slide[class*="-active"] picture img {
  transform: scale(1.05);
}

#top .fv .swiper-pagination {
  width: .2rem;
  height: 21.2rem;
  position: absolute;
}

#top .fv .swiper-pagination .swiper-pagination-bullet {
  width: .2rem;
  height: 4.4rem;
  background: #FFF;
  border-radius: 0;
  margin-bottom: 1.2rem;
  transition: .5s ease;
}

#top .fv .swiper-pagination .swiper-pagination-bullet-active {
  background: #024BB1;
}

#top .fv .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-bottom: 0;
}

#top .fv .txt {
  position: absolute;
  z-index: 1;
}

#top .fv .txt h2 {
  color: #fff;
  text-shadow: 0 0 5rem #000;
  font-weight: bold;
  opacity: 0;
  animation: fvTxtAnime 0.8s ease 0.5s forwards;
}

@keyframes fvTxtAnime {
  0% {
    transform: translateX(2rem);
    opacity: 0;
  }
  100%{
    transform: translateX(0);
    opacity: 1;
  }
}

/*------------------------------ メッセージ ------------------------------*/
#top .intro-message {
  background-position: center;
  background-size: cover;
}

#top .intro-message .bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

#top .intro-message .inner {
  width: fit-content;
  max-width: 105.8rem;
}

#top .intro-message .inner p {
  width: fit-content;
  font-weight: 600;
  filter: blur(1rem);
  transition: .5s ease .5s;
}

#top .intro-message .inner.active p {
  filter: blur(0);
}

#top .intro-message .inner p:nth-last-of-type(1) {
  margin-bottom: 0;
}

/*------------------------------ 事業紹介 ------------------------------*/
#top .services {
  background: #FBFBFA;
}

/*------------------------------ 施工実績 ------------------------------*/
#top .works .section-title {
  margin-bottom: 4.8rem;
}

#top .works .contents-wrap .works-slider.small {
  border-radius: 1rem;
}

@media screen and (max-width: 1101px) {
  #top .works .contents-wrap .works-slider.small.limited-big {
    display: none;
  }
}

@media screen and (min-width: 1100px) {
  #top .works .contents-wrap .works-slider.small.limited-small {
    display: none;
  }
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-prev {
  overflow: hidden;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide .img-txt img {
  border-radius: 1rem;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide .img-txt .slide-txt {
  display: none;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt,
#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-prev .img-txt .slide-txt {
  display: block;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap {
  gap: 1.4rem;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap time {
  font-family: "Cardo", serif;
  color: #707070;
  font-weight: bold;
  line-height: 2.4;
  display: block;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap .finish-date {
  position: relative;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap .finish-date:empty {
  display: none;
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap .finish-date.finish-date::before {
  content: "〜";
  color: #707070;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.4;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
}

#top .works .contents-wrap .works-slider.small .swiper-wrapper .swiper-slide-active .img-txt .slide-txt .time-wrap .finish-date:empty::before {
  content: none;
}

#top .works .contents-wrap .swiper .swiper-button-prev {
  width: 2.1rem;
  height: 3.4rem;
  background: #fff;
  position: absolute;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  display: block;
  top: auto;
  bottom: 0;
  z-index: 1000;
}

#top .works .contents-wrap .swiper .swiper-button-prev::after {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  border-top: .2rem solid #2180CC;
  border-right: .2rem solid #2180CC;
  transform: translateY(-50%) rotate(225deg);
  position: absolute;
  top: 50%;
  transition: .5s ease;
}

#top .works .contents-wrap .swiper .swiper-pagination {
  width: calc(7.2% - 2.1rem);
  width: 4.41rem;
  height: 3.4rem;
  font-family: "Cardo", serif;
  color: #2180CC;
  background: #fff;
  font-size: 1.4rem;
  line-height: 2.4;
  position: absolute;
  top: auto;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#top .works .contents-wrap .swiper .swiper-button-next {
  width: 2.1rem;
  height: 3.4rem;
  background: #fff;
  position: absolute;
  top: auto;
  bottom: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  display: block;
  z-index: 1000;
}

#top .works .contents-wrap .swiper .swiper-button-next::after {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  border-top: .2rem solid #2180CC;
  border-right: .2rem solid #2180CC;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  transition: .5s ease;
}

#top .works .contents-wrap .swiper .swiper-button-prev:hover::after,
#top .works .contents-wrap .swiper .swiper-button-next:hover::after {
  opacity: .7;
}


/*------------------------------ 会社概要 ------------------------------*/
#top .company {
  position: relative;
}

#top .company .bg {
  position: absolute;
  top: 0;
  z-index: -1;
}

#top .company .bg picture {
  aspect-ratio: 1179 / 556;
}

#top .company .contents-wrap {
  background: #FBFBFA;
  border-radius: 1rem;
}

#top .company .contents-wrap .profile-wrap .profile-contents .profile-list {
  border-bottom: .1rem solid #707070;
}

#top .company .contents-wrap .profile-wrap .profile-contents .profile-list dt {
  font-weight: bold;
}

#top .company .contents-wrap .profile-wrap .profile-contents .profile-list dd {
  font-weight: 500;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd {
  flex-wrap: wrap;
  justify-content: space-between;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd p {
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd p span {
  background: #FBFBFA;
  position: relative;
  z-index: 1;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd p span:nth-of-type(1) {
  padding-right: .8rem;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd p span:nth-of-type(2) {
  padding-left: .8rem;
}

#top .company .contents-wrap .profile-wrap .profile-contents .license dd p::before {
  content: "";
  width: 90%;
  height: 0.1rem;
  background: #3B4043;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  overflow: hidden;
}

#top .company .contents-wrap .map {
  width: 100%;
}

#top .company .contents-wrap .map iframe {
  width: 100%;
  display: block;
}

/*------------------------------ インスタグラム ------------------------------*/
#top .instagram {
  margin-inline: auto;
}

#top .instagram .section-title {
  text-align: center;
  margin-inline: auto;
}

#top .instagram .contents-wrap {
  flex-wrap: wrap;
}

/* #top .instagram .contents-wrap a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

#top .instagram .contents-wrap a img {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  transition: transform .5s ease;
}

#top .instagram .contents-wrap a img:hover {
  transform: scale(1.1);
} */

/*------------------------------ リクルート ------------------------------*/
.recruit {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.recruit figure {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  overflow: hidden;
}

.recruit figure .mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  position: relative;
}

.recruit figure .mask::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(112, 112, 112, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.recruit figure .mask picture {
  position: absolute;
  top: 0;
  left: 0;
}

.recruit figure .mask picture,
.recruit figure .mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recruit .txt.js-fade-txt {
  width: fit-content;
  position: absolute;
  opacity: 0;
  transition: opacity .5s ease .5s;
  z-index: 2;
}

.recruit .txt.js-fade-txt.active {
  opacity: 1;
}

.recruit .txt .section-title p {
  color: #fff;
  letter-spacing: 0;
}

.recruit .txt .section-title .common-heading {
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 0;
}

.recruit .txt .detail {
  color: #fff;
  font-weight: 500;
}

.recruit .txt .btn {
  border-radius: 2.8rem;
  border-color: #fff;
  color: #fff;
}

/*------------------------------ フッター ------------------------------*/
footer {
  color: #fff;
  background: #2A2245;
}

footer .inner .logo-info address p,
footer .inner .logo-info address a {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.7rem;
}

footer .inner .logo-info address a {
  margin-bottom: 0;
  transition: .5s ease;
}

footer .inner .logo-info address a:hover {
  opacity: .7;
}

footer .inner .logo-info .icon img {
  width: 1.9rem;
  transition: .5s ease;
}

footer .inner .logo-info .icon img:hover {
  opacity: .7;
}

footer .inner .btn-nav .btn-wrap .btn {
  width: 26rem;
  height: 5.6rem;
  border-radius: 2.8rem;
}

footer .inner .btn-nav .btn-wrap .btn.clear {
  border: .1rem solid #fff;
}

footer .inner .btn-nav .nav a {
  font-weight: 500;
  line-height: 1.5;
}

footer .inner .btn-nav .nav a::after {
  background: #fff;
}

footer small {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  display: block;
}

/*------------------------------ お問い合わせページ ------------------------------*/
#contact .inner {
  background: #FBFBFA;
}

#contact .inner .section-title {
  text-align: center;
}

#contact .inner .js-form-input-step.contact .none {
  display: none;
}

#contact .inner .js-form-input-step.contact .radio,
#contact .inner .js-form-input-step.contact .contact-detail {
  align-items: flex-start;
}

#contact .inner .js-form-input-step.contact .title-wrap {
  align-items: flex-end;
}

#contact .inner .js-form-input-step.contact .title-wrap .title,
#contact .inner .js-form-input-step.contact  .title {
  font-weight: bold;
}

#contact .inner .js-form-input-step.contact .title-wrap .required {
  font-size: 1.4rem;
  line-height: 2.1;
  color: #DB4C33;
  font-weight: bold;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity input,
#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity textarea {
  width: 100%;
  border: 0.1rem solid #707070;
  background: #fff;
  font-weight: 500;
  padding: 1.7rem 2rem;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity input {
  height: 5rem;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity input::placeholder,
#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity textarea::placeholder {
  font-weight: 500;
  color: #CDD6DD;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity label.first {
  margin-bottom: 1rem;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity label input {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity label input:checked::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  background: #2180CC;
  border-radius: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity label p {
  width: fit-content;
  font-weight: 500;
}

#contact .inner .js-form-input-step.contact .form-item .js-form-input-unity textarea {
  height: 14rem;
  resize: vertical;
}

#contact .inner .privacy-policy {
  height: 14rem;
  border: 0.1rem solid #707070;
  background: #fff;
  margin-inline: auto;
  overflow-y: scroll;
}

#contact .inner .privacy-policy p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}

#contact .inner .consent {
  width: fit-content;
  margin-inline: auto;
}

#contact .inner .consent label {
  margin: 0;
  cursor: pointer;
  align-items: center;
}

#contact .inner .consent label input {
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid #707070;
  background: #fff;
  margin-right: 1rem;
  position: relative;
  cursor: pointer;
}

#contact .inner .consent label input:checked::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/check-Icon.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact .inner .consent label p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

#contact .inner button {
  width: 26rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  margin-inline: auto;
  cursor: pointer;
  position: relative;
  cursor: pointer;
}

#contact .inner .js-form-input-step.contact .js-validation,
.js-submit-failed-msg {
  font-size: 1.2rem;
  color: #DB4C33;
  font-weight: 400;
  line-height: 1.2;
}

/*------------------------------ お問い合わせ確認ページ ------------------------------*/
#contact .contact-confirm {
  display: none;
}

#contact .contact-confirm .confirm-txt {
  font-weight: 500;
}

#contact .contact-confirm .contact-confirm-wrap .contact-confirm-item {
  margin-bottom: 4.5rem;
}

#contact .contact-confirm .contact-confirm-wrap .contact-confirm-item:nth-last-of-type(1){
  margin-bottom: 0;
}

#contact .contact-confirm .contact-confirm-wrap .contact-confirm-item .title {
  font-weight: bold;
}

#contact .contact-confirm .contact-confirm-wrap .js-confirm-item {
  font-weight: 500;
}

#contact .contact-confirm .btn-wrap {
  justify-content: center;
  gap: 1.8rem;
}

#contact .contact-confirm .btn-wrap .btn {
  width: 26rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  cursor: pointer;
  margin: 0;
}

/*------------------------------ お問い合わせ完了ページ ------------------------------*/
#contact .contact-complete {
  display: none;
}

#contact .contact-complete h2 {
  font-weight: bold;
}

#contact .contact-complete .message {
  font-weight: 500;
}

#contact .contact-complete .btn {
  width: 26rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  margin-inline: auto;
}

/*------------------------------ 404ページ ------------------------------*/
#notFound .inner {
  background: #FBFBFA;
  border-radius: 1rem;
}

#notFound .inner .section-title {
  text-align: center;
}

#notFound .inner h2 {
  font-weight: bold;
}

#notFound .inner .txt {
  font-weight: 500;
}

#notFound .inner .btn.clear {
  width: 26rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  margin-inline: auto;
}

#notFound .inner .btn.clear .txt-wrapper .txt {
  display: block;
  line-height: 1;
  margin-bottom: 0;
}