@charset "utf-8";
/* ---------------- common ------- */
html {
  font-size: 62.5%;
}
body {
  color: #33312c;
  background-color: #fffdf7;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  position: relative;

  .menu-open {
    overflow: clip;
  }
}
.font-weight-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.comfortaa-semibold {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  font-style: normal;
}
main {
  width: 100%;
  height: auto;
}
.inner {
  max-width: 960px;
  width: 100%;
  padding: 0 1.2rem;
  margin: 0 auto;

  @media (max-width: 1024px) {
    padding: 0 2.4rem;
  }
}
section {
  &.inner {
    margin-top: 12rem;
  }
}
.section-wrap {
  width: 100%;
  height: 100vh;

  @media (max-width: 1024px) {
    width: 100%;
    height: auto;
    margin-bottom: 16rem;
  }
}
.section-title-wrap {
  text-align: center;
  padding-bottom: 4.5rem;
}
.section-title {
  padding-top: 3.5rem;
  font-size: 4rem;
}
.menu-item-type-post_type.current-menu-item {
  opacity: 0.5;
}
/* ---------------- canvas --------- */
.bg-3dmodel {
  width: calc(100vw - calc(100vw - 100%));
  height: 100vh;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}
/* ---------------- button---------- */
.button-wrap {
  text-align: right;
}
.link-text {
  height: 4rem;
  line-height: 4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #33312c;
}
.link-image {
  width: 4rem;
  height: 4rem;
}
.link-text,
.link-image {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .butto-link:hover .link-text {
    color: #f7b500;
    border-bottom: 1px solid #f7b500;
  }
  .butto-link:hover .link-image {
    transform: translateY(-0.2rem);
    opacity: 0.6;
    filter: drop-shadow(0px 8px 4px rgba(51, 49, 44, 0.3));
  }
}
.butto-link:active .link-image {
  transform: translateY(0);
  filter: none;
}
.leftArrow-button-wrap {
  text-align: center;
  margin-top: 8rem;
}
.leftArrow-link-image {
  transform: scale(-1, 1);
}
@media (any-hover: hover) {
  .butto-link:hover .leftArrow-link-image {
    transform: translateY(-0.2rem) scale(-1, 1);
  }
}
.butto-link:active .leftArrow-link-image {
  transform: translateY(0) scale(-1, 1);
}
.simpleBtn-wrap {
  text-align: center;

  .simpleBtn-link {
    display: inline-block;
    width: 13.6rem;
    height: 4.8rem;
    line-height: 4.8rem;
    background-color: #f7b500;
    border-radius: 2.4rem;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
  }
}
@media (any-hover: hover) {
  .simpleBtn-link:hover {
    transform: translateY(-0.2rem);
    opacity: 0.6;
    filter: drop-shadow(0px 8px 4px rgba(51, 49, 44, 0.3));
  }
}
.simpleBtn-link:active {
  transform: translateY(0);
  filter: none;
}
/* ---------------- header ----------*/
.header {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow-x: hidden;
}
.haeder-nav {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  @media (max-width: 1024px) {
    position: fixed;
    z-index: 500;
  }
}
.header-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 1024px) {
    display: block;
  }
}
.header-logo-wrap,
.menu {
  display: flex;
  align-items: center;
}
.header-logo-image {
  width: 5rem;
  height: auto;

  @media (max-width: 1024px) {
    width: 4rem;
    height: auto;
  }
}
.header-logo {
  padding-left: 1.2rem;
  font-size: 2.4rem;
}
.orange {
  color: #f7b500;
}
.menu-item + .menu-item {
  padding-left: 2.4rem;
}
.focus-trap {
  width: 1px;
  height: 1px;
}
.header-logo,
.menu-item a,
.footer-logo,
.footer-nav-link {
  position: relative;
}
.header-logo::before,
.menu-item a::before,
.footer-logo::before,
.footer-nav-link::before {
  content: "";
  opacity: 0;
  background-color: #f7b500;
  width: 0rem;
  height: 0rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.5s ease;
}
@media (any-hover: hover) {
  .header-logo-link:hover .header-logo::before,
  .menu-item a:hover::before,
  .footer-logo-link:hover .footer-logo:before,
  .footer-nav-link:hover::before {
    width: 2.4rem;
    height: 2.4rem;
    opacity: 1;
    border-radius: 50%;
  }
}
.catch_copy {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-title {
  font-size: 6.4rem;
  line-height: 1.2;

  @media (max-width: 600px) {
    font-size: 4.8rem;
  }
}
.site-title-lead {
  margin-top: 2rem;

  @media (max-width: 1024px) {
    margin-top: 1rem;
    font-weight: 500;
  }
}
.kv {
  width: 78vw;
  height: auto;
  position: absolute;
  top: 0;
  right: -2%;
  z-index: -30;

  @media (max-width: 1024px) {
    width: auto;
    height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @media (max-width: 600px) {
    width: auto;
    height: 60vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
  }
}
.kv-frame {
  width: 79vw;
  height: auto;
  position: absolute;
  top: 0;
  right: -5%;
  z-index: -20;

  @media (max-width: 1024px) {
    width: auto;
    height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
  }

  @media (max-width: 600px) {
    width: auto;
    height: 60vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* ---------------- blob animation -- */
.blob-animation-wrap {
  width: 100%;
  height: auto;
  position: relative;
}
.image-box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  overflow-x: clip;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
/*Google Chrome、Safariへの対応*/
.image-box::-webkit-scrollbar {
  display: none;
}
.blob {
  width: auto;
  height: 110vh;
  position: absolute;

  @media (max-width: 1024px) {
    width: auto;
    height: auto;
    position: absolute;
  }
}
/* --------------- top-works ------------ */
.work-list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;

  @media (max-width: 1024px) {
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }

  &.page-works {
    @media (max-width: 600px) {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8rem;
    }
  }
}
.work-item {
  width: 30%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #fffdf7;
  border-radius: 0.8rem;

  @media (max-width: 1024px) {
    width: 100%;
    height: 100%;
  }
}
.work-item-link img {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  border: 0.1px solid rgba(51, 49, 44, 0.1);
  object-fit: cover;
  border-radius: left;
  transition: all 0.3s ease;

  @media (max-width: 1024px) {
    object-fit: cover;
  }
}
@media (any-hover: hover) {
  .work-item-link:hover img,
  .works-item-link:hover .works-image {
    opacity: 0.6;
    filter: brightness(110%);
  }
}
/* ------------------ service -------- */
.service-list {
  display: flex;
  justify-content: space-between;

  @media (max-width: 1024px) {
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
}
.service-item {
  width: 30%;

  @media (max-width: 1024px) {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 600px) {
    display: flex;
    align-items: start;
  }
}
.service-item-inner {
  @media (max-width: 1024px) {
    width: 75%;
  }
}
.service-image-box {
  width: 15rem;
  height: 15rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  /* background-color: #fffdf7; */
  background-color: #f5f3ed;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1024px) {
    width: 20%;
    height: auto;
    aspect-ratio: 1/ 1;
    margin: 0;
  }
}
.service-img {
  width: 10rem;

  @media (max-width: 1024px) {
    min-width: 50px;
    width: 60%;
    aspect-ratio: 1/ 1;
  }
}
.service-img.support {
  width: 9rem;

  @media (max-width: 1024px) {
    min-width: 45px;
    width: 50%;
    aspect-ratio: 1/ 1;
  }
}
.service-item-title {
  font-size: 2.4rem;
  text-align: center;
  padding: 2rem 0 1rem;

  @media (max-width: 1024px) {
    text-align: left;
    padding: 0 0 1rem;
  }
}
/* ----------------- contact ------ */
.contact {
  margin-bottom: 16rem;

  .section-title-wrap {
    padding-bottom: 3rem;
  }
}
.contact-text {
  text-align: center;
  font-size: 1.4rem;
}
form {
  width: 45%;
  margin: 1.5rem auto 0;

  @media (max-width: 1024px) {
    max-width: 500px;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}
.form-label-span {
  color: #d43c19;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.form-box {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  &.hearing {
    margin-top: 4rem;
  }
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
}
input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  vertical-align: sub;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="checkbox"],
textarea {
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(51, 49, 44, 0.5);
  border-radius: 0.8rem;
  background-color: #fffdf7;
}
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-chekbox-box {
  margin-top: 1.5rem;

  .wpcf7-list-item {
    display: inline-block;
    margin-left: 0;
  }

  &.hearing {
    margin-top: 4rem;
  }
}
.privacy-policy-link {
  border-bottom: 1px solid rgba(51, 49, 44, 0.8);
  opacity: 1;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .privacy-policy-link:hover {
    opacity: 0.5;
  }
}
.submit-btn-box {
  margin: 2.5rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  &.form-hearign-btn {
    margin: 8rem auto 0;
  }
}
.wpcf7-submit {
  width: 13.6rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background-color: #f7b500;
  border-radius: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .wpcf7-submit:hover {
    transform: translateY(-0.2rem);
    opacity: 0.6;
    filter: drop-shadow(0px 8px 4px rgba(51, 49, 44, 0.3));
  }
}
.wpcf7-submit:active {
  transform: translateY(0);
  filter: none;
}
.wpcf7-submit:disabled {
  width: 13.6rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background-color: #fde7ad;
  border-radius: 2.4rem;
  opacity: 1;
  filter: none;
  transform: none;
}
/* ------------ footer ----------- */
.footer {
  background-color: #fffdf7;
}
.footer-wrap {
  background-color: rgba(51, 49, 44, 0.05);
}
.footer-inner {
  padding-top: 6rem;
  position: relative;
  z-index: 101;

  @media (max-width: 1024px) {
    padding-top: 6rem;
  }
}
.footer-logo-wrap {
  display: flex;
  text-align: center;
  gap: 1.2rem;
}
.footer-logo-link {
  display: inline-block;
}
.footer-logo-image {
  width: 2.5rem;
}
.footer-logo {
  font-size: 2rem;
}
.footer-contets {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4rem 0 4rem;

  @media (max-width: 600px) {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 2rem;
  }

  .menu {
    display: flex;
    justify-content: start;
    gap: 2.5rem;
    font-weight: normal;
    font-size: 1.6rem;
  }
}
.copyright {
  font-size: 1.2rem;
}
/* ---------- ハンバーガーメニュー ------------- */
@media (max-width: 1024px) {
  .hbg-menu {
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: grid;
    place-items: center;
    place-content: center;
    position: fixed;
    top: 1rem;
    right: 2.4rem;
    z-index: 999;
  }
  /* バー */
  .bar,
  .bar::before,
  .bar::after {
    width: 25px;
    height: 2px;
    background-color: #33312c;
    transition: transform 0.3s;
  }
  .bar {
    display: grid;

    &::before,
    &::after {
      content: "";
      grid-area: 1 / 1;
    }

    &::before {
      transform: translateY(-8px);
    }

    &::after {
      transform: translateY(8px);
    }
  }
  /* オープン時のバー */
  .menu-open {
    .bar {
      background-color: transparent;

      &::before {
        transform: rotate(45deg);
      }

      &::after {
        transform: rotate(-45deg);
      }
    }
  }
  /* メニュー */
  #menu {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 253, 247, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }
  .header-logo-link {
    display: inline-block;
  }
  .header-nav-wrap .menu {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    position: absolute;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-item + .menu-item {
    padding-left: 0;
    padding-top: 4rem;
  }
  /* オープン時のメニュー */
  .menu-open #menu {
    transform: translateX(0);
  }
}
/* -------- sub-page common ---------- */
.subPage-header {
  height: 8rem;
}
.subPage-inner {
  margin-bottom: 16rem;
}
.subPage-contant-wrap {
  margin-top: 3.5rem;
}
/* --------- profile ------------------ */
.profile {
  .profile-content-wrap {
    display: flex;
    justify-content: space-between;

    @media (max-width: 1024px) {
      display: flex;
      flex-direction: column;
      gap: 8rem;
    }

    .profile-image-box,
    .profile-text-box {
      width: 48%;

      @media (max-width: 1024px) {
        width: 100%;
        text-align: center;
      }

      img {
        aspect-ratio: 4 / 3;
        border-radius: 0.8rem;
        object-fit: cover;
      }
    }

    .profile-name {
      font-size: 2.4rem;

      @media (max-width: 1024px) {
        text-align: center;
        font-weight: 500;
      }

      @media (max-width: 600px) {
        font-size: 2rem;
      }
    }
    .profile-text {
      padding-top: 2rem;
      text-align: left;

      @media (max-width: 1024px) {
        max-width: 700px;
        width: 100%;
        padding-top: 4rem;
        margin: 0 auto;
      }
    }
    .profile-text + .profile-text {
      padding-top: 1rem;

      @media (max-width: 1024px) {
        padding-top: 2rem;
      }
    }
  }

  @media (max-width: 1024px) {
    .profile-content-wrap {
      .profile-image {
        max-width: 500px;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }
    }
  }
}
/* ------ works ------------------- */
.works {
  .works-item-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;

    @media (max-width: 1024px) {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8rem;
    }
    .works-image {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      border-radius: 0.8rem;
      border: 0.1px solid rgba(51, 49, 44, 0.1);
      object-fit: cover;
      object-position: left;
      transition: all 0.3s ease;

      @media (max-width: 1024px) {
        max-width: 900px;
        width: 100%;
      }
    }
  }
}
/* ----------- sub-works ---------- */
.subWorks {
  .subWorks-thumbnail-wrap {
    max-width: 960px;
    width: 100%;
    height: 100%;
    aspect-ratio: 7 / 5;

    .attachment-subworks-main {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .subWorks-contant-inner {
    margin-top: 12rem;

    .subWorks-title {
      font-size: 3.2rem;

      @media (max-width: 1024px) {
        font-size: 2.4rem;
      }
    }

    .subworks-site-link {
      border-bottom: 1px solid #33312c;
      transition: all 0.3s ease;
    }
    @media (any-hover: hover) {
      .subworks-site-link:hover {
        color: #f7b500;
        border-bottom: 1px solid #f7b500;
      }
    }

    .subWorks-detail-wrap {
      display: flex;
      margin-top: 8rem;

      @media (max-width: 1024px) {
        display: block;
      }

      .subWorks-subTitle {
        width: 20%;
        font-size: 1.8rem;

        @media (max-width: 1024px) {
          width: 100%;
        }
      }

      .production-table {
        tr > td:first-child {
          font-weight: normal;
          padding-right: 5rem;

          @media (max-width: 600px) {
            padding-right: 3.5rem;
          }
        }
      }

      .production-detail-item {
        @media (max-width: 1024px) {
          margin-top: 2rem;
        }
      }

      .subWorks-detail-text {
        width: 80%;

        @media (max-width: 1024px) {
          width: 100%;
        }
      }

      img {
        max-width: 680px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        filter: drop-shadow(0px 2px 80px rgba(51, 49, 44, 0.07))
          drop-shadow(0px 0.446726px 17.869px rgba(51, 49, 44, 0.0417275))
          drop-shadow(0px 0.133002px 5.32008px rgba(51, 49, 44, 0.0282725));
      }
    }
  }
}
/* ----------------- 404 ------------- */
.errorPage {
  .section-title-wrap {
    margin-top: 9.5rem;
    height: auto;
    background-image: url(../image/blob1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    .section-title {
      font-size: 6rem;

      @media (max-width: 600px) {
        font-size: 4rem;
      }
    }
  }

  .errorPage-content-wrap {
    padding-bottom: 3.5rem;

    .errorPage-text {
      text-align: center;
    }
  }
}
/* ﾌﾟﾗｲﾊﾞｼｰﾎﾟﾘｼｰ ------------------- */
.pp-title {
  font-size: 2rem;
  font-weight: 500;
}
.hearing-lead-wrap {
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: center;

  .hearing-lead {
    text-align: left;
  }
}
