@charset "UTF-8";
/* Scss Document */
.pc {
  display: block;
}
@media (max-width: 834px) {
  .pc {
    display: none;
  }
}

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

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 402;
  transform: translateY(0%);
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  background-image: url(../common/images/bg-menu.svg);
  background-size: cover;
}
.loading.out {
  transform: translateY(-100%);
}
.loading.out .loading__parts h1 img {
  opacity: 0 !important;
}

.loading__parts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
}
@media (max-width: 834px) {
  .loading__parts {
    width: 170px;
  }
}
.loading__parts h1 img {
  opacity: 0;
  width: 100%;
  transition: 0.3s all;
}

.loading.in .loading__parts h1 img {
  opacity: 1;
}

#top-container {
  padding: 0px 0 0;
}
@media (max-width: 834px) {
  #top-container {
    overflow-x: hidden;
    padding: 0px 0 0;
  }
}

#bg-black {
  background-color: #000;
}

#main {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 0 74px;
}
@media (max-width: 834px) {
  #main {
    height: initial;
    padding: 0px 0 24px;
  }
}
#main .main-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  min-height: 640px;
}
@media (max-width: 834px) {
  #main .main-box {
    max-width: 100%;
    min-width: 100%;
  }
}
#main .main-box .box {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 4%;
  transform: translate(0%, -50%);
}
@media (max-width: 834px) {
  #main .main-box .box {
    width: 100%;
    padding: 0 0px;
    transform: initial;
    top: 42%;
  }
}
#main .main-box .box .catch {
  color: #FFF;
  font-size: 76px;
  line-height: 116px;
  letter-spacing: 0.26em;
  font-weight: bold;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 834px) {
  #main .main-box .box .catch {
    font-size: 40px;
    line-height: 56px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.18em;
  }
}
#main .main-box h1 {
  position: absolute;
  bottom: 100px;
  right: 10%;
  z-index: 2;
  letter-spacing: 0;
  font-size: 34px;
  color: #FFF;
  font-family: "Bodoni Moda", "Noto Serif JP", serif;
}
@media (max-width: 834px) {
  #main .main-box h1 {
    font-size: 20px;
    bottom: 130px;
    right: 25px;
  }
}
#main .fv {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../images/main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 834px) {
  #main .fv {
    background-image: url(../images/main-sp.jpg);
    height: 80vh;
    min-height: 520px;
  }
}

.scroll-area {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.scroll-indicator__label {
  color: #fff;
  font-size: 16px;
  font-family: "Bodoni Moda", "Noto Serif JP", serif;
}
@media (max-width: 834px) {
  .scroll-indicator__label {
    font-size: 12px;
  }
}
.scroll-indicator__line {
  position: relative;
  width: 1.5px;
  height: 90px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  border-radius: 1.5px;
}
.scroll-indicator__line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 60%;
  background: #fff;
  border-radius: 1.5px;
  transform: translateY(-100%);
  animation: si-drop-linear 2s linear infinite;
}

@keyframes si-drop-linear {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(190%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator__line::after {
    animation: none;
    transform: translateY(0);
  }
}
.fv {
  opacity: 0;
  transform: translateY(100px);
}

.fv.animate-inbounce {
  animation: slideUpBounce 0.6s ease-in-out forwards !important;
}

@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  60% {
    opacity: 0.6;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#logo, #logo-sp, .nav-box nav, .nav_btn, .cv-area {
  transition: all 0.8s ease-out;
  opacity: 0;
}

#logo.animate-inbounce, #logo-sp.animate-inbounce, .nav-box nav.animate-inbounce, .nav_btn.animate-inbounce, .cv-area.animate-inbounce {
  animation: slideUpBounce2 1s ease-in-out forwards !important;
}

.no-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
}

@keyframes slideUpBounce2 {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  60% {
    opacity: 0.6;
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.catch {
  opacity: 0;
  transform: translateY(0px);
  transition: all 1.8s ease-out;
}

h1 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
}

.scroll-area {
  opacity: 0;
  transform: translate(-50%, -10px) !important;
  transition: all 1.4s ease-out;
}
.scroll-area.animate-in {
  opacity: 1 !important;
  transform: translate(-50%, 0) !important;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#concept {
  position: relative;
}
#concept .concept-box {
  width: 100%;
  background-image: url(../images/concept-ph.png);
  background-size: 760px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 380px 0 350px 35%;
}
@media (max-width: 834px) {
  #concept .concept-box {
    background-image: url(../images/concept-ph-sp.png);
    background-size: 100%;
    padding: 240px 10px 160px;
    text-align: center;
  }
}
#concept .concept-box .en {
  display: block;
  font-size: 14px;
  color: #FFF;
  padding-bottom: 24px;
  font-family: "Noto Serif JP", serif;
}
#concept .concept-box .h-catch {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 32px;
  letter-spacing: 0.17em;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 834px) {
  #concept .concept-box .h-catch {
    font-size: 21px;
    line-height: 36px;
  }
}
#concept .concept-box .lead {
  color: #FFF;
  line-height: 2.2em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 834px) {
  #concept .concept-box .lead {
    text-align: left;
  }
}

#service {
  padding: 160px 0;
}
#service .h-catch {
  font-size: 24px;
  line-height: 46px;
}
@media (max-width: 834px) {
  #service .h-catch {
    font-size: 18px;
    line-height: 34px;
  }
}
#service .service-box .en {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #004339;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 834px) {
  #service .service-box .en {
    font-size: 11px;
  }
}
#service .service-box h2 {
  margin: 0 0 8px;
}
#service .service-box .more-btn {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 9999px;
  background: #004339;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 834px) {
  #service .service-box .more-btn {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
}
#service .service-box .more-btn:hover {
  transform: translateY(0px) scale(1.02);
  background: #07322c;
}
#service .service-box .more-btn:hover:before {
  width: calc(100% + 3px);
  height: calc(100% + 3px);
}
#service .service-box .more-btn:before {
  content: "";
  display: inline-block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #004339;
  border-radius: 100px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
#service #spatical {
  position: relative; /* more-btn の基準 */
  align-items: flex-start; /* .just-flex による横並び時の揃え */
  gap: 8vw;
  padding: 80px 0;
}
@media (max-width: 834px) {
  #service #spatical {
    padding: 80px 0 0;
  }
}
#service #spatical .info-box {
  width: 60%;
  flex: 1 1 auto;
}
#service #spatical .info-box .img-box {
  width: 100%;
  aspect-ratio: 1.9;
  background-image: url("../images/sdd01.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0 40px 40px 0; /* 右上/右下だけ40px */
  overflow: hidden;
}
@media (max-width: 834px) {
  #service #spatical .info-box .img-box {
    border-radius: 0 16px 16px 0;
    width: 84%;
    aspect-ratio: 1.6;
  }
}
#service #spatical .info-box .txt-box {
  margin-top: 100px;
  margin-left: calc((100vw - 1200px) / 2);
  position: relative;
}
@media (max-width: 834px) {
  #service #spatical .info-box .txt-box {
    margin-top: 32px;
    margin-left: 20px;
  }
}
#service #spatical .ph-box {
  width: 28%;
  flex: 0 0 auto;
  padding-right: calc((100vw - 1200px) / 2);
  align-self: center; /* 右画像を縦中央あたりに */
}
@media (max-width: 834px) {
  #service #spatical .ph-box {
    display: none;
  }
}
#service #spatical .ph-box .square-box {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  background-image: url("../images/sdd02.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 320px;
}
@media (max-width: 834px) {
  #service #spatical .ph-box .square-box {
    max-width: 100%;
  }
}
#service #spatical .more-btn {
  right: 20%;
  bottom: -20%;
}
@media (max-width: 834px) {
  #service #spatical .more-btn {
    right: 3%;
    bottom: 0%;
  }
}
#service #construction {
  position: relative; /* more-btn の基準 */
  align-items: flex-start; /* .just-flex による横並び時の揃え */
  gap: 8vw;
  padding: 80px 0;
}
@media (max-width: 834px) {
  #service #construction {
    padding: 80px 0 0;
  }
}
#service #construction .info-box {
  width: 60%;
  flex: 1 1 auto;
}
#service #construction .info-box .img-box {
  width: 100%;
  aspect-ratio: 1.9;
  background-image: url("../images/ld01.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 40px 0px 0px 40px;
  overflow: hidden;
}
@media (max-width: 834px) {
  #service #construction .info-box .img-box {
    border-radius: 16px 0px 0px 16px;
    aspect-ratio: 1.6;
    margin-left: 16%;
  }
}
#service #construction .info-box .txt-box {
  margin-top: 100px;
  margin-right: calc((100vw - 1200px) / 2);
  position: relative;
}
@media (max-width: 834px) {
  #service #construction .info-box .txt-box {
    margin-top: 32px;
    margin-right: 0px;
    margin-left: 20px;
  }
}
#service #construction .ph-box {
  width: 28%;
  flex: 0 0 auto;
  padding-left: calc((100vw - 1300px) / 2);
  align-self: center; /* 右画像を縦中央あたりに */
}
@media (max-width: 834px) {
  #service #construction .ph-box {
    display: none;
  }
}
#service #construction .ph-box .box {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 0.65;
  background-image: url("../images/ld02.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 320px;
}
@media (max-width: 834px) {
  #service #construction .ph-box .box {
    max-width: 100%;
  }
}
#service #construction .more-btn {
  right: 20%;
  bottom: -20%;
}
@media (max-width: 834px) {
  #service #construction .more-btn {
    right: 3%;
    bottom: 0%;
  }
}
#service #rental {
  position: relative; /* more-btn の基準 */
  align-items: flex-start; /* .just-flex による横並び時の揃え */
  gap: 8vw;
  padding: 80px 0;
}
@media (max-width: 834px) {
  #service #rental {
    padding: 80px 0 0;
  }
}
#service #rental .info-box {
  width: 60%;
  flex: 1 1 auto;
}
#service #rental .info-box .img-box {
  width: 100%;
  aspect-ratio: 1.9;
  background-image: url("../images/pl01.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0 40px 40px 0; /* 右上/右下だけ40px */
  overflow: hidden;
}
@media (max-width: 834px) {
  #service #rental .info-box .img-box {
    border-radius: 0 16px 16px 0;
    width: 84%;
    aspect-ratio: 1.6;
  }
}
#service #rental .info-box .txt-box {
  margin-top: 100px;
  margin-left: calc((100vw - 1200px) / 2);
  position: relative;
}
@media (max-width: 834px) {
  #service #rental .info-box .txt-box {
    margin-top: 32px;
    margin-left: 20px;
  }
}
#service #rental .ph-box {
  width: 28%;
  flex: 0 0 auto;
  padding-right: calc((100vw - 1200px) / 2);
  align-self: center; /* 右画像を縦中央あたりに */
}
@media (max-width: 834px) {
  #service #rental .ph-box {
    display: none;
  }
}
#service #rental .ph-box .box {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 0.65;
  background-image: url("../images/pl02.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 320px;
}
@media (max-width: 834px) {
  #service #rental .ph-box .box {
    max-width: 100%;
  }
}
#service #rental .more-btn {
  right: 20%;
  bottom: -20%;
}
@media (max-width: 834px) {
  #service #rental .more-btn {
    right: 3%;
    bottom: 0%;
  }
}

#works .works-unit .box {
  width: 25%;
  position: relative;
  display: block;
  height: 100%;
  aspect-ratio: 0.56;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  outline: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 834px) {
  #works .works-unit .box {
    width: 50%;
  }
}
#works .works-unit .box::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 上部少し強め → 下に行くほど薄く */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#works .works-unit .box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  border-radius: 9999px;
  background: url("../images/watch.svg") center/28px 28px no-repeat, rgba(0, 67, 57, 0.8196078431); /* 濃いグリーン */
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
@media (max-width: 834px) {
  #works .works-unit .box::after {
    width: 60px;
    height: 60px;
    background: url("../images/watch.svg") center/16px 16px no-repeat, rgba(0, 67, 57, 0.8196078431); /* 濃いグリーン */
  }
}
#works .works-unit .box .title {
  position: absolute;
  top: 30px;
  left: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
}
@media (max-width: 834px) {
  #works .works-unit .box .title {
    top: 15px;
    left: 15px;
    font-size: 12px;
  }
}
#works .works-unit .box .category {
  position: absolute;
  left: 35px;
  bottom: 35px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  z-index: 1;
  transform-origin: left bottom;
  transform: rotate(-90deg);
  white-space: nowrap;
}
@media (max-width: 834px) {
  #works .works-unit .box .category {
    left: 25px;
    bottom: 20px;
    font-size: 10px;
  }
}
#works .works-unit .box:hover, #works .works-unit .box:focus-visible {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
#works .works-unit .box:hover::before, #works .works-unit .box:focus-visible::before {
  opacity: 0; /* 薄黒背景を消す */
}
#works .works-unit .box:hover::after, #works .works-unit .box:focus-visible::after {
  opacity: 1; /* 丸を出す */
  transform: translate(-50%, -50%) scale(1);
}

#instagram {
  text-align: center;
  padding: 160px 0;
}
#instagram .label-en {
  display: inline-block;
}
#instagram .insta-box {
  position: relative;
}
#instagram .insta-link {
  z-index: 6;
  background: rgba(255, 255, 255, 0);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.txt-link {
  text-align: center;
}
.txt-link a {
  display: inline-block;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
  transition: 0.3s ease;
}
.txt-link a:hover {
  color: #004339;
}
.txt-link a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 17px;
  height: 2px;
  background: #333333;
  transform: translateY(-50%);
  transition: transform 0.2s ease, width 0.2s ease;
  pointer-events: none;
}
.txt-link a::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.txt-link a:hover::before {
  transform: translate(4px, -50%);
  background: #004339;
}
.txt-link a:hover::after {
  transform: translate(4px, -50%) rotate(45deg);
  border-top: 2px solid #004339;
  border-right: 2px solid #004339;
}

.thumbnail-wrapper .thumbnail .thumbnail-image .object-fit {
  border-radius: 16px;
}/*# sourceMappingURL=custom.css.map */