@charset "utf-8";

html, body {
	margin: 0;
  color: #231815;
  font-family: "neue-haas-grotesk-display", "dnp-shuei-gothic-kin-std", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  html, body {
    font-size: calc((var(--width) / 1440) * 10px);
  }
  :root {
    --width: 1440;
    --height: 960;
  }
  .sp {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: calc((var(--width) / 750) * 10px);
  }
  :root {
    --width: 750;
    --height: 555;
  }
  .pc {
    display: none!important;
  }
}

/*------------
  common
------------*/

.fade {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fade-delay {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fade.in {
  transform: translateY(0);
  opacity: 1;
}


/*------------
  header
------------*/



/*------------
  footer
------------*/

.footer {
  position: relative;
  .footer-bg {
    display: flex;
    width: 100%;
    div {
      width: 50%;
    }
  }
  .footer-content {
    position: absolute;
    bottom: 3.1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #CE8F57;
    h2 {
      margin: 4.4rem 0 4.9rem;
      font-size: 2.0rem;
      font-weight: 600;
    }
  }
  .footer-name {
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 500;
  }
  .footer-link {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7rem;
  }
  .footer-cright {
    margin-top: 10.7rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    .footer-bg {
      display: block;
      width: 100%;
      div {
        width: 100%;
        & + div {
          display: none;
        }
      }
    }
    .footer-content {
      h2 {
        margin: 2.7rem 0 3.2rem;
      }
    }
    .footer-name {
      line-height: 1.7rem;
    }
    .footer-cright {
      margin-top: 5.0rem;
    }
  }
}


/*------------
  index
------------*/

/*
  loading
------------*/

#loading {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100svh;
  background: #CE8F57;
  transition: opacity .5s;
  &._fin {
    opacity: 0;
    pointer-events: none;
  }
  .loading-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14.0rem;
  }
}

@media screen and (max-width: 768px) {
  #loading {
    .loading-logo {
      width: 19.3rem;
    }
  }
}


/*
  mv
------------*/

#mv {
  position: relative;
  width: 100%;
  height: 96.0rem;
  .mv-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 11.0rem 0;
    .content-box {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 2.2rem;
      color: #CE8F57;
      h1 {
        font-size: 5.5rem;
        font-weight: 600;
        line-height: 4.9rem;
      }
    }
  }
  .mv-bg {
    display: flex;
    width: 100%;
    height: 100%;
    .bg-half {
      position: relative;
      width: 50%;
      height: 100%;
      div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      &._left {
        div {
          clip-path: polygon(0% 0%, 100% 0%, 0% 0%, 0% 100%);
          &._first {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          }
          &._active {
            z-index: 99;
            animation: mv-slide-left 3s ease-in-out forwards;
          }
          &._before {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          }
        }
      }
      &._right {
        div {
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          &._first {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          }
          &._active {
            z-index: 99;
            animation: mv-slide-right 3s ease-in-out forwards;
          }
          &._before {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  #mv {
    height: 125.6rem;
    .mv-content {
      padding: 32.2rem 4.0rem;
      .content-box {
        font-size: 1.8rem;
        line-height: 2.2rem;
        &:nth-of-type(odd) {
          margin-right: auto;
          text-align: left;
        }
        &:nth-of-type(even) {
          margin-left: auto;
          text-align: right;
        }
        h1 {
          font-size: 6.0rem;
          line-height: 5.1rem;
        }
      }
    }
    .mv-bg {
      display: block;
      .bg-half {
        width: 100%;
        &._right {
          display: none;
        }
        div {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        &._left {
          div {
            clip-path: polygon(0% 0%, 100% 0%, 0% 0%, 0% 100%);
            &._first {
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
            &._active {
              z-index: 99;
              animation: mv-slide-left 3s ease-in-out forwards;
            }
            &._before {
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
          }
        }
        &._right {
          div {
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
            &._first {
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
            &._active {
              z-index: 99;
              animation: mv-slide-right 3s ease-in-out forwards;
            }
            &._before {
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
          }
        }
      }
    }
  }
}

@keyframes mv-slide-left {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes mv-slide-right {
  0% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}


/*
  about
------------*/

#about {
  display: flex;
  padding: 7.2rem 8.0rem 7.2rem;
  background: #CE8F57;
  .about-logo {
    width: 14.0rem;
  }
  .about-text {
    width: 64.6rem;
    margin-left: auto;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 3.7rem;
  }
}

@media screen and (max-width: 768px) {
  #about {
    display: block;
    padding: 5.1rem 4.0rem 6.4rem;
    .about-logo {
      width: 19.3rem;
      margin-left: auto;
    }
    .about-text {
      width: 100%;
      margin-top: 7.2rem;
      font-size: 2.5rem;
      line-height: 5.0rem;
    }
  }
}


/*
  item
------------*/

.item {
  position: relative;
  .item-head {
    display: flex;
    position: absolute;
    top: 8.5rem;
    left: 0;
    width: 51.7rem;
    margin-left: 5.5rem;
    .head-name {
      font-size: 1.3rem;
      font-weight: 500;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
    }
    .head-title {
      width: 35.4rem;
      margin-left: auto;
      h2 {
        margin-bottom: 4.5rem;
        text-align: center;
        font-size: 3.3rem;
        font-weight: 600;
      }
      .title-top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6.5rem;
        font-size: 1.3rem;
        font-weight: 500;
      }
      .title-text {
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 2.6rem;
      }
    }
  }
  .item-image {
    .image-caption {
      margin-top: 2.0rem;
      font-size: 1.3rem;
      &._flex {
        display: flex;
        .caption-item {
          width: 50%;
        }
      }
      .caption-item {
        width: 100%;
      }
      .caption-title {
        margin-bottom: 1.5rem;
        font-weight: 500;
      }
      .caption-detail {
        font-weight: 600;
        line-height: 2.0rem;
        list-style: none;
        small {
          font-size: 1.0rem;
          font-weight: 500;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .item {
    position: relative;
    padding-top: 5.0rem;
    .item-head {
      display: flex;
      position: relative;
      top: 0;
      width: 100%;
      margin-left: 0;
      padding: 0 4.0rem;
      .head-name {
        font-size: 1.7rem;
      }
      .head-title {
        width: 55.6rem;
        h2 {
          margin-bottom: 5.7rem;
          font-size: 4.0rem;
        }
        .title-top {
          display: flex;
          justify-content: space-between;
          margin-bottom: 8.4rem;
          font-size: 1.7rem;
        }
        .title-text {
          font-size: 2.3rem;
          line-height: 4.5rem;
        }
      }
    }
    .item-image {
      .image-caption {
        margin-top: 3.8rem;
        font-size: 2.2rem;
        &._flex {
          display: block;
          .caption-item {
            width: 100%;
          }
        }
        .caption-item {
          width: 100%;
          & + .caption-item {
            margin-top: 1.2rem;
          }
        }
        .caption-title {
          margin-bottom: 1.3rem;
        }
        .caption-detail {
          line-height: 3.2rem;
          small {
            font-size: 1.8rem;
          }
        }
      }
    }
  }
}

/*
  insulation
------------*/

#insulation {
  padding-bottom: 19.2rem;
  background: #CE8F57;
  .item-head {
    top: 12.5rem;
  }
  .insulation-image {
    position: relative;
    &.image01 {
      width: 34.7rem;
      padding-top: 12.5rem;
      margin-left: auto;
      div {
        & + div {
          margin-top: 0.8rem;
        }
      }
    }
    &.image02 {
      width: 66.3rem;
      margin-left: 22.2rem;
      margin-top: -58.8rem;
    }
    &.image03 {
      width: 50.4rem;
      margin-top: 3.1rem;
      margin-left: 83.0rem;
    }
    &.image04 {
      width: 50.0rem;
      margin-top: -39.6rem;
    }
    &.image05 {
      display: flex;
      justify-content: space-between;
      width: 61.0rem;
      margin-top: -11.6rem;
      margin-left: 80.1rem;
      div {
        width: 30.0rem;
      }
    }
    &.image06 {
      width: 37.5rem;
      margin-top: 2.5rem;
      margin-left: 19.7rem;
    }
    &.image07 {
      width: 41.5rem;
      margin-top: -37.7rem;
      margin-left: 91.9rem;
    }
    &.image08 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 97.4rem;
      margin-top: 11.5rem;
      margin-left: 10.4rem;
      div {
        width: 47.7rem;
      }
      .image-caption {
        width: 100%;
      }
    }
    &.image09 {
      width: 60.0rem;
      margin-top: 12.6rem;
      margin-left: 42.0rem;
    }
  }
}

@media screen and (max-width: 768px) {
  #insulation {
    padding-bottom: 22.7rem;
    .item-head {
      top: 0;
    }
    .insulation-image {
      &.image01 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-top: 0;
        margin-top: 13.6rem;
        div {
          width: 37.0rem;
          & + div {
            margin-top: 0;
          }
        }
      }
      &.image02 {
        width: 100%;
        margin-left: 0;
        margin-top: 13.5rem;
        .image-caption {
          padding: 0 4.4rem;
        }
      }
      &.image03 {
        width: 67.0rem;
        margin-top: 16.9rem;
        margin-left: 4.0rem;
      }
      &.image04 {
        width: 50.0rem;
        margin-top: 17.0rem;
        margin-left: 12.5rem;
      }
      &.image05 {
        width: 100%;
        margin-top: 16.8rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image06 {
        width: 55.0rem;
        margin-top: 15.8rem;
        margin-left: 4.0rem;
      }
      &.image07 {
        width: 55.0rem;
        margin-top: 9.7rem;
        margin-left: 16.0rem;
      }
      &.image08 {
        width: 100%;
        margin-top: 19.2rem;
        margin-left: 0;
        div {
          width: 100%;
        }
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image09 {
        width: 54.0rem;
        margin-top: 18.2rem;
        margin-left: 10.5rem;
      }
    }
  }
}


/*
  shirt
------------*/

#shirt {
  padding-bottom: 19.7rem;
  color: #CE8F57;
  background: #324556;
  .item-head {
    top: 17.8rem;
  }
  .shirt-image {
    position: relative;
    &.image01 {
      width: 70.0rem;
      padding-top: 17.8rem;
      margin-left: auto;
    }
    &.image02 {
      width: 50.0rem;
      margin-top: -42.1rem;
    }
    &.image03 {
      display: flex;
      justify-content: space-between;
      width: 69.4rem;
      margin-top: -4.2rem;
      margin-left: 62.6rem;
      div {
        width: 34.2rem;
      }
    }
    &.image04 {
      width: 45.0rem;
      margin-top: 19.7rem;
      margin-left: 17.1rem;
      div {
        & + div {
          margin-top: 1.0rem;
        }
      }
    }
    &.image05 {
      width: 61.0rem;
      margin-top: -108.3rem;
      margin-left: auto;
    }
    &.image06 {
      overflow: hidden;
      display: flex;
      width: 100%;
      margin-top: 45.6rem;
      div {
        flex-shrink: 0;
        width: 30.7rem;
        margin-left: 0.8rem;
        &:nth-of-type(1) {
          margin-left: 11.8rem;
        }
        &:nth-of-type(4) {
          margin-left: 18.5rem;
        }
      }
    }
    &.image07 {
      overflow: hidden;
      display: flex;
      width: 100%;
      margin-top: 8.7rem;
      div {
        flex-shrink: 0;
        width: 30.7rem;
        margin-left: 0.8rem;
        &:nth-of-type(1) {
          margin-left: 0;
        }
        &:nth-of-type(2) {
          margin-left: 27.6rem;
        }
      }
    }
    &.image08 {
      display: flex;
      justify-content: space-between;
      width: 96.5rem;
      margin-top: 19.9rem;
      margin-left: 23.7rem;
      div {
        width: 46.5rem;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  #shirt {
    padding-bottom: 22.3rem;
    .item-head {
      top: 0;
    }
    .shirt-image {
      &.image01 {
        width: 100%;
        margin-top: 11.7rem;
        padding-top: 0;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image02 {
        width: 57.0rem;
        margin-top: 10.8rem;
      }
      &.image03 {
        width: 100%;
        margin-top: 17.2rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image04 {
        width: 47.0rem;
        margin-top: 14.7rem;
        margin-left: 14.0rem;
        div {
          & + div {
            margin-top: 2.0rem;
          }
        }
      }
      &.image05 {
        width: 100%;
        margin-top: 14.9rem;
        margin-left: 0;
      }
      &.image06 {
        margin-top: 18.9rem;
        div {
          width: 28.2rem;
          margin-left: 0.8rem;
          &:nth-of-type(1) {
            margin-left: 0;
          }
          &:nth-of-type(3) {
            margin-left: 9.0rem;
          }
        }
      }
      &.image07 {
        width: 100%;
        margin-top: 8.1rem;
        margin-left: 0;
        div {
          width: 28.2rem;
          margin-left: 0.8rem;
          &:nth-of-type(1) {
            margin-left: -8.9rem;
          }
          &:nth-of-type(2) {
            margin-left: 10.0rem;
          }
        }
      }
      &.image08 {
        display: block;
        width: 52.4rem;
        margin-top: 21.2rem;
        margin-left: 11.2rem;
        div {
          width: 100%;
          & + div {
            margin-top: 5.6rem;
          }
        }
      }
    }
  }
}


/*
  bottoms
------------*/

#bottoms {
  padding-bottom: 23.9rem;
  background: #CE8F57;
  .item-head {
    top: 12.6rem;
  }
  .bottoms-image {
    position: relative;
    &.image01 {
      width: 68.5rem;
      padding-top: 12.6rem;
      margin-left: auto;
    }
    &.image02 {
      width: 41.0rem;
      margin-top: -36.8rem;
      margin-left: 19.1rem;
    }
    &.image03 {
      width: 34.5rem;
      margin-top:-5.4rem;
      margin-left: 91.9rem;
    }
    &.image04 {
      display: flex;
      justify-content: space-between;
      width: 57.0rem;
      margin-top: -23.8rem;
      margin-left: 12.4rem;
      div {
        width: 28.0rem;
      }
    }
    &.image05 {
      width: 68.5rem;
      margin-top: 30.2rem;
    }
    &.image06 {
      width: 46.0rem;
      margin-top: -116.5rem;
      margin-left: 86.1rem;
    }
    &.image07 {
      width: 46.0rem;
      margin-top: 4.5rem;
      margin-left: 86.1rem;
    }
    &.image08 {
      width: 54.9rem;
      margin-top: 14.5rem;
      margin-left: 44.7rem;
    }
  }
}

@media screen and (max-width: 768px) {
  #bottoms {
    padding-bottom: 18.3rem;
    .item-head {
      top: 0;
    }
    .bottoms-image {
      &.image01 {
        width: 100%;
        margin-top: 11.7rem;
        margin-left: 0;
        padding-top: 0;
      }
      &.image02 {
        width: 54.5rem;
        margin-top: 15.0rem;
        margin-left: 0;
      }
      &.image03 {
        width: 54.5rem;
        margin-top: 9.3rem;
        margin-left: auto;
      }
      &.image04 {
        width: 100%;
        margin-top: 15.1rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image05 {
        width: 65.6rem;
        margin-top: 17.6rem;
        margin-left: 4.7rem;
      }
      &.image06 {
        width: 100%;
        margin-top: 17.7rem;
        margin-left: 0;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image07 {
        width: 100%;
        margin-top: 6.0rem;
        margin-left: 0;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image08 {
        width: 50.0rem;
        margin-top: 13.7rem;
        margin-left: 12.0rem;
      }
    }
  }
}