@charset "UTF-8";
/*color*/
/*add color*/
/*font-family*/
/*filler color*/
/*text-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*cubic*/
/* media query */
/* hover */
/* ------------------------------------------------------------
	lineHeightCrop（line-heightの不要な余白を打ち消す）のmixin。
------------------------------------------------------------ */
.p-top-mv {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-top-mv {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-mv__img {
    aspect-ratio: 1/1;
  }
}
.p-top-mv__cap {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0.7;
}
.p-top-mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .p-top-mv__video {
    aspect-ratio: 1/1;
  }
}
.p-top-mv #skipButton {
  z-index: 99;
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px;
  background: #b59a5b;
  color: #fff;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .p-top-mv #skipButton {
    top: 1rem;
    left: unset;
    bottom: unset;
    right: 1rem;
  }
}
.p-top-point {
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  .p-top-point {
    padding: 1rem 0;
  }
}
.p-top-point__inner {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-top-point__inner {
    flex-direction: column;
  }
}
.p-top-point__item {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: min(1.7vw, 2.4rem);
  padding: 0 1rem;
  line-height: 1.4;
}
.p-top-point__item small {
  font-size: 0.6em;
}
.p-top-point__item sup {
  font-size: 0.5em;
  vertical-align: text-top;
}
.p-top-point__item:not(:first-child) {
  border-left: 1px solid #b2b2b2;
}
@media only screen and (max-width: 768px) {
  .p-top-point__item {
    position: relative;
    width: 100%;
    font-size: 2.2rem;
    padding: 1.5rem;
    border-left: none !important;
  }
  .p-top-point__item:not(:first-child):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 3em;
    height: 1px;
    background-color: #b2b2b2;
    transform: translateX(-50%);
  }
}
.p-top-info {
  background-color: #fff;
  padding: 3rem 0;
}
.p-top-info__inner {
  width: 90%;
  max-width: 400px;
  margin-inline: auto;
  font-size: 2rem;
  text-align: center;
}
.p-top-cg01 {
  position: relative;
  --img-height: 100vh;
  --sp-img-width: 250vw;
  --sp-img-height: auto;
  --sp-slide-amount: calc(var(--sp-img-width) - 100vw);
}
.p-top-cg01__imgwrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--img-height);
  overflow: hidden;
  --clip-progress: 0;
  --slide-progress: 0;
  --clip-v: 15%;
  --clip-h: 40%;
  clip-path: inset(calc(var(--clip-v) * (1 - var(--clip-progress))) calc(var(--clip-h) * (1 - var(--clip-progress))));
  will-change: clip-path;
}
.p-top-cg01__imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(calc(1.1 - var(--clip-progress) * 0.1));
  filter: grayscale(calc(1 - var(--clip-progress)));
  will-change: transform, filter;
}
@media only screen and (max-width: 768px) {
  .p-top-cg01__imgwrap img {
    width: var(--sp-img-width);
    height: var(--sp-img-height);
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(calc(1.1 - var(--clip-progress) * 0.1)) translateX(calc(var(--slide-progress) * var(--sp-slide-amount) * -1));
  }
}
.p-top-cg01__spacer {
  height: var(--img-height);
}
@media only screen and (max-width: 768px) {
  .p-top-cg01__spacer {
    height: calc(var(--img-height) * 2);
  }
}
.p-top-concept {
  padding: 25rem 0 15rem;
}
@media only screen and (max-width: 768px) {
  .p-top-concept {
    padding: 10rem 0;
  }
}
.p-top-concept__inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-top-concept__inner {
    width: 75%;
  }
}
.p-top-concept__heading {
  height: clamp(3rem, 13.0434782609px + 4.347826087vw, 6rem);
}
.p-top-concept__heading img {
  height: 100%;
  width: auto;
}
.p-top-concept__txtBox {
  margin-top: 15rem;
  display: flex;
  gap: 15rem;
}
@media only screen and (max-width: 768px) {
  .p-top-concept__txtBox {
    flex-direction: column;
    margin-top: 5rem;
    gap: 5rem;
  }
}
.p-top-concept__txtBox__L {
  display: flex;
  font-size: 2.8rem;
  align-items: flex-start;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .p-top-concept__txtBox__L {
    justify-content: flex-start;
  }
}
.p-top-concept__txtBox__R {
  font-size: clamp(1rem, 6.6086956522px + 0.8695652174vw, 1.6rem);
  line-height: 2.4;
}
@media only screen and (max-width: 768px) {
  .p-top-concept__txtBox__R {
    font-size: 1.45rem;
    letter-spacing: 0em;
    line-height: 2;
  }
}
.p-top-contents {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem 2rem;
}
@media only screen and (max-width: 768px) {
  .p-top-contents {
    grid-template-columns: 1fr;
    gap: 7rem 2rem;
  }
}
.p-top-contents__item--full {
  grid-column: 1/3;
}
@media only screen and (max-width: 768px) {
  .p-top-contents__item--full {
    grid-column: unset;
  }
}
.p-top-contents__item--sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
}
.p-top-contents__item__designImg {
  overflow-x: hidden;
  --expand-progress: 0;
  --clip-h: 20%;
  margin: 0 calc(50% - 49.4vw);
  clip-path: inset(0 calc(var(--clip-h) * (1 - var(--expand-progress))) 0 calc(var(--clip-h) * (1 - var(--expand-progress))));
  will-change: clip-path;
}
.p-top-contents__lead {
  font-size: 2rem;
  margin-top: 1.5rem;
}
.p-top-contents__link, .p-top-contents__link--min {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: "Manrope", serif;
  color: #242424;
  letter-spacing: 0;
  font-size: 1.8rem;
  transition: 0.3s;
}
.p-top-contents__link i, .p-top-contents__link--min i {
  display: block;
  width: 8rem;
  height: 0.5rem;
  background-image: url(../../img/top/contents_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  transition: 0.3s;
}
.p-top-contents__link--min {
  min-height: 12.7rem;
}
@media only screen and (max-width: 768px) {
  .p-top-contents__link--min {
    min-height: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-contents__link:hover, .p-top-contents__link--min:hover {
    color: #242424;
  }
  .p-top-contents__link:hover i, .p-top-contents__link--min:hover i {
    width: 10rem;
  }
}
/*# sourceMappingURL=../../map/top/top.css.map */