@charset "UTF-8";
.p-feature {
  font-family: var(--font-zen-kaku-gothic-new);
  font-weight: 400;
  letter-spacing: 0;
  font-feature-settings: normal;
}
.p-feature__header-keyvisual {
  width: 100%;
  margin: 0 auto;
}
.p-feature__header-heading {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-weight: 500;
}
.p-feature__header-title {
  text-align: center;
  line-height: 1.58;
}
.p-feature__header-lead {
  line-height: 2;
}
.p-feature__section {
  border-top: 1px solid #000;
}
.p-feature__section-header {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.p-feature__section-heading {
  font-family: var(--font-barbour-sans);
  text-align: center;
  font-weight: 300;
  line-height: 1;
}
.p-feature__section-lead {
  line-height: 2;
}
.p-feature__guide-list {
  display: grid;
  grid-template-columns: 100%;
  margin: 0 auto;
}
.p-feature__guide-inner {
  display: grid;
  grid-template-columns: 100%;
}
.p-feature__guide-heading-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
}
.p-feature__guide-heading-inner .text-lg {
  font-family: var(--font-barbour-sans);
  font-weight: 300;
}
.p-feature__guide-heading-inner .text-sm {
  font-weight: 500;
}
.p-feature__guide-thumbnail {
  overflow: hidden;
  border: 4px solid #000;
}
.p-feature__guide-thumbnail img {
  aspect-ratio: 1200 / 800;
  object-fit: contain;
}
.p-feature__view-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-family: var(--font-barbour-sans);
  color: #efefef;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 100vh;
}
.p-feature__view-link.--outline {
  border-color: currentColor;
}
.p-feature__view-link svg {
  flex-shrink: 0;
}
.p-feature__models-list {
  display: grid;
  grid-template-columns: 100%;
}
.p-feature__models-item {
  color: #fff;
  background-color: #000;
  border-bottom: solid #fff;
}
.p-feature__models-item-image {
  overflow: hidden;
}
.p-feature__models-item-image img {
  aspect-ratio: 720 / 900;
  object-fit: cover;
}
.p-feature__models-item-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-feature__models-item-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-barbour-sans);
  text-align: center;
  line-height: 1;
}
.p-feature__models-item-heading .text-lg {
  font-weight: 300;
}
.js-scrollIn {
  transform: translateY(30px);
  opacity: 0;
  transition: 0.8s ease;
  transition-property: transform, opacity;
}
.js-scrollIn.active {
  transform: translateY(0);
  opacity: 1;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-feature {
    --padding-inline: calc(21 *(100vw / 402));
  }
  .p-feature__header-heading {
    gap: calc(60 *(100vw / 402));
    padding: calc(100 *(100vw / 402)) var(--padding-inline, 0) calc(160 *(100vw / 402));
  }
  .p-feature__header-title {
    font-size: calc(24 *(100vw / 402));
  }
  .p-feature__header-lead {
    font-size: calc(17 *(100vw / 402));
  }
  .p-feature__section + .p-feature__section {
    margin-top: calc(160 *(100vw / 402));
  }
  .p-feature__section-header {
    gap: calc(60 *(100vw / 402));
    margin-bottom: calc(100 *(100vw / 402));
    padding: calc(60 *(100vw / 402)) var(--padding-inline, 0) 0;
  }
  .p-feature__section-heading {
    font-size: calc(32 *(100vw / 402));
  }
  .p-feature__section-lead {
    font-size: calc(15 *(100vw / 402));
  }
  .p-feature__guide-list {
    gap: calc(100 *(100vw / 402));
    padding: 0 var(--padding-inline, 0);
  }
  .p-feature__guide-inner {
    gap: calc(20 *(100vw / 402));
  }
  .p-feature__guide-heading-inner {
    gap: calc(14 *(100vw / 402));
  }
  .p-feature__guide-heading-inner .text-lg {
    font-size: calc(28 *(100vw / 402));
  }
  .p-feature__guide-heading-inner .text-sm {
    font-size: calc(14 *(100vw / 402));
  }
  .p-feature__models-item {
    border-bottom-width: calc(10 *(100vw / 402));
  }
  .p-feature__models-item-body {
    gap: calc(40 *(100vw / 402));
    padding: calc(60 *(100vw / 402)) 0;
  }
  .p-feature__models-item-heading {
    gap: calc(10 *(100vw / 402));
  }
  .p-feature__models-item-heading .text-lg {
    font-size: calc(28 *(100vw / 402));
  }
  .p-feature__models-item-heading .text-sm {
    font-size: calc(16 *(100vw / 402));
  }
  .p-feature__view-link {
    gap: calc(20 *(100vw / 402));
    height: calc(32 *(100vw / 402));
    padding: 0 calc(60 *(100vw / 402));
    font-size: calc(16 *(100vw / 402));
  }
  .p-feature__view-link svg {
    width: calc(9 *(100vw / 402));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-feature {
    --container-sm: 96rem;
    --container-md: 120rem;
  }
  .p-feature__header-heading {
    width: var(--container-sm);
    gap: 6rem;
    padding-top: 180px;
    padding-bottom: 240px;
  }
  .p-feature__header-title {
    font-size: 2.4rem;
  }
  .p-feature__header-lead {
    font-size: 1.7rem;
  }
  .p-feature__section + .p-feature__section {
    margin-top: 24rem;
  }
  .p-feature__section-header {
    gap: 6rem;
    width: var(--container-sm);
    margin-bottom: 18rem;
    padding-top: 6rem;
  }
  .p-feature__section-heading {
    font-size: 3.6rem;
  }
  .p-feature__section-lead {
    font-size: 1.7rem;
  }
  .p-feature__guide-list {
    gap: 18rem;
    width: var(--container-md);
  }
  .p-feature__guide-inner {
    gap: 3rem;
  }
  .p-feature__guide-heading-inner {
    gap: 1.6rem;
  }
  .p-feature__guide-heading-inner .text-lg {
    font-size: 4.8rem;
  }
  .p-feature__guide-heading-inner .text-sm {
    font-size: 2rem;
  }
  .p-feature__models-item {
    border-bottom-width: 0.2rem;
  }
  .p-feature__models-item-inner {
    display: flex;
  }
  .p-feature__models-item:nth-of-type(odd) .p-feature__models-item-inner {
    flex-direction: row-reverse;
  }
  .p-feature__models-item-image,
  .p-feature__models-item-body {
    flex: 0 0 50%;
  }
  .p-feature__models-item-body {
    gap: 6rem;
  }
  .p-feature__models-item-heading {
    gap: 2rem;
  }
  .p-feature__models-item-heading .text-lg {
    font-size: 4.8rem;
  }
  .p-feature__models-item-heading .text-sm {
    font-size: 2rem;
  }
  .p-feature__view-link {
    gap: 2rem;
    height: 3.2rem;
    padding: 0 8rem;
    font-size: 2rem;
  }
  .p-feature__view-link svg {
    width: 0.9rem;
  }
}
@media (hover: hover) {
  .p-feature__guide-thumbnail img,
  .p-feature__models-item-image img {
    transform: scale(1);
    transition: transform 5s cubic-bezier(.19, 1, .22, 1);
  }
  .p-feature__guide-thumbnail:hover img,
  .p-feature__models-item-image:hover img {
    transform: scale(1.04);
  }
  .p-feature__view-link {
    transition: 0.5s ease-in-out;
    transition-property: color, background-color, border-color;
  }
  .p-feature__view-link:hover {
    color: #000;
    background-color: #efefef;
  }
  .p-feature__guide-list .p-feature__view-link:hover {
    background-color: #fff;
  }
}
