@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 {
    width: 100%;
  }
  .footer-content {
    position: absolute;
    bottom: 3.1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #E0D293;
    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-content {
      h2 {
        margin: 2.7rem 0 3.2rem;
      }
    }
    .footer-name {
      line-height: 1.7rem;
    }
    .footer-cright {
      margin-top: 5.0rem;
    }
  }
}


/*------------
  index
------------*/

/*
  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: #E0D293;
      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.0rem 8.0rem 7.0rem;
  background: #E0D293;
  .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 11.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;
      h1 {
        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;
      }
    }
  }
}

@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;
        h1 {
          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;
        }
      }
    }
  }
}

/*
  breezer
------------*/

#breezer {
  padding-bottom: 26.6rem;
  background: #E0D293;
  .breezer-image {
    position: relative;
    &.image01 {
      width: 71.0rem;
      margin-left: auto;
    }
    &.image02 {
      width: 40.6rem;
      margin-left: 11.6rem;
      margin-top: -58.9rem;
    }
    &.image03 {
      display: flex;
      justify-content: space-between;
      width: 56.3rem;
      margin-top: 18.1rem;
      margin-left: 20.2rem;
      div {
        width: 27.7rem;
      }
    }
    &.image04 {
      width: 50.0rem;
      margin-top: -22.2rem;
      margin-left: auto;
    }
    &.image05 {
      width: 63.5rem;
      margin-top: -29.2rem;
      .image-caption {
        margin-left: 3.0rem;
      }
    }
    &.image06 {
      width: 41.3rem;
      margin-top: -45.3rem;
      margin-left: 81.3rem;
    }
    &.image07 {
      overflow: hidden;
      display: flex;
      justify-content: center;
      margin-top: 14.2rem;
      div {
        flex-shrink: 0;
        width: 58.2rem;
      }
    }
    &.image08 {
      width: 43.7rem;
      margin-top: 21.2rem;
      margin-left: 88.1rem;
      div {
        & + div {
          margin-top: 0.8rem;
        }
      }
    }
    &.image09 {
      width: 65.0rem;
      margin-top: -87.3rem;
    }
    .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) {
  #breezer {
    padding-bottom: 0;
    .breezer-image {
      &.image01 {
        width: 100%;
        margin-top: 11.8rem;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image02 {
        width: 42.0rem;
        margin-left: 16.5rem;
        margin-top: 12.3rem;
      }
      &.image03 {
        width: 100%;
        margin-top: 17.3rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image04 {
        width: 66.0rem;
        margin-top: 15.6rem;
        margin-left: auto;
      }
      &.image05 {
        width: 100%;
        margin-top: 14.4rem;
        .image-caption {
          margin-left: 0;
          padding: 0 4.0rem;
        }
      }
      &.image06 {
        width: 48.3rem;
        margin-top: 9.7rem;
        margin-left: 22.6rem;
      }
      &.image07 {
        margin-top: 18.7rem;
        div {
          width: 49.8rem;
        }
      }
      &.image08 {
        width: 53.0rem;
        margin-top: 18.5rem;
        margin-left: 10.9rem;
      }
      &.image09 {
        width: 100%;
        margin-top: 21.3rem;
      }
      .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;
          }
        }
      }
    }
  }
}


/*
  yipee
------------*/

#yipee {
  padding-bottom: 15.4rem;
  color: #E0D293;
  background: #404A3D;
  .yipee-image {
    position: relative;
    &.image01 {
      width: 70.0rem;
      margin-left: auto;
    }
    &.image02 {
      width: 47.0rem;
      margin-top: -50.1rem;
    }
    &.image03 {
      display: flex;
      justify-content: space-between;
      width: 66.8rem;
      margin-top: 3.3rem;
      margin-left: 56.9rem;
      div {
        width: 33.0rem;
      }
    }
    &.image04 {
      width: 64.0rem;
      margin-top: 17.9rem;
      margin-left: 14.1rem;
    }
    &.image05 {
      width: 32.9rem;
      margin-top: -70.4rem;
      margin-left: 98.1rem;
      div {
        & + div {
          margin-top: 0.8rem;
        }
      }
    }
    &.image06 {
      display: flex;
      flex-wrap: wrap;
      margin-top: 19.8rem;
      div {
        width: calc(100% / 3);
      }
      .image-caption {
        width: 100%;
        padding-left: 5.2rem;
      }
    }
    &.image07 {
      width: 58.0rem;
      margin-top: 10.2rem;
      margin-left: 43.0rem;
    }
    .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) {
  #yipee {
    padding-bottom: 21.2rem;
    .yipee-image {
      &.image01 {
        width: 100%;
        margin-top: 12.8rem;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image02 {
        width: 57.8rem;
        margin-top: 8.6rem;
      }
      &.image03 {
        width: 100%;
        margin-top: 15.3rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image04 {
        width: 100%;
        margin-top: 21.2rem;
        margin-left: 0;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      &.image05 {
        width: 48.8rem;
        margin-top: 7.2rem;
        margin-left: 20.4rem;
        div {
          & + div {
            margin-top: 1.0rem;
          }
        }
      }
      &.image06 {
        margin-top: 19.6rem;
        div {
          width: calc(100% / 2);
          &:nth-of-type(n + 3) {
            margin-top: 3.0rem;
          }
        }
        .image-caption {
          padding-left: 4.0rem;
        }
      }
      &.image07 {
        width: 58.0rem;
        margin-top: 19.7rem;
        margin-left: 8.5rem;
      }
      .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;
          }
        }
      }
    }
  }
}


/*
  altamesa
------------*/

#altamesa {
  padding-bottom: 45.7rem;
  background: #E0D293;
  .altamesa-image {
    position: relative;
    &.image01 {
      width: 49.0rem;
      margin-left: 84.9rem;
      padding-top: 6.9rem;
    }
    &.image02 {
      width: 73.1rem;
      margin-top: -26.4rem;
      .image-caption {
        position: absolute;
        bottom: 0;
        left: calc(100% + 3.7rem);
        width: 50%;
      }
    }
    &.image03 {
      display: flex;
      justify-content: space-between;
      width: 60.8rem;
      margin-top: 9.3rem;
      margin-left: 61.9rem;
      div {
        width: 30.0rem;
      }
    }
    &.image04 {
      width: 36.0rem;
      margin-top: 1.6rem;
      margin-left: 11.4rem;
    }
    &.image05 {
      width: 47.2rem;
      margin-top: 16.7rem;
      margin-left: 23.6rem;
    }
    &.image06 {
      width: 59.5rem;
      margin-top: -108.3rem;
      margin-left: auto;
    }
    .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) {
  #altamesa {
    padding-bottom: 28.5rem;
    .altamesa-image {
      &.image01 {
        width: 55.3rem;
        margin-top: 16.8rem;
        margin-left: 14.5rem;
        padding-top: 0;
      }
      &.image02 {
        width: 100%;
        margin-top: 15.8rem;
        .image-caption {
          position: relative;
          left: 0;
          width: 100%;
          padding: 0 4.0rem;
        }
      }
      &.image03 {
        width: 100%;
        margin-top: 11.6rem;
        margin-left: 0;
        div {
          width: 37.0rem;
        }
      }
      &.image04 {
        width: 56.5rem;
        margin-top: 23.8rem;
        margin-left: 3.0rem;
      }
      &.image05 {
        width: 56.5rem;
        margin-top: 7.7rem;
        margin-left: 15.5rem;
      }
      &.image06 {
        width: 100%;
        margin-top: 22.7rem;
        margin-left: 0;
        .image-caption {
          padding: 0 4.0rem;
        }
      }
      .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;
          }
        }
      }
    }
  }
}