@charset "UTF-8";
.pg-top {
  width: 100%;
}

.p-mv {
  position: relative;
  height: calc(100vh - 70px);
  width: 100vw;
  overflow: hidden;
}
.p-mv__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.p-mv__logo {
  transition: opacity 0.6s linear;
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 20;
  max-width: 200px;
  width: 80%;
}
@media screen and (min-width: 1000px) {
  .p-mv__logo {
    max-width: 438px;
    top: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }
}
.p-mv__logo img {
  width: 100%;
}

.p-products {
  font-family: "Noto Sans JP", sans-serif;
  padding: 60px 20px;
}
@media screen and (min-width: 1000px) {
  .p-products {
    padding: 80px 20px;
    max-width: 1240px;
    margin: 0 auto;
  }
}

.p-products__heading {
  text-align: center;
  margin-bottom: 48px;
}

.p-products__title {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 16px;
}
@media screen and (min-width: 1000px) {
  .p-products__title {
    font-size: 36px;
  }
}

.p-products__lead {
  font-size: 14px;
  color: #222222;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .p-products__lead {
    font-size: 16px;
  }
}

.p-products__grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}
.p-products__grid--3col {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1000px) {
  .p-products__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-products__grid--2col {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .p-products__grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
  }
}

.p-products__item {
  display: flex;
  flex-direction: column;
}

.p-products__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.p-products__thumb::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
}
.p-products__thumb i.foundry {
  position: relative;
  z-index: 1;
  font-size: 32px;
  color: #fff;
}

.p-products__logo {
  max-width: 70%;
  height: auto;
  position: relative;
  z-index: 1;
}

.p-products__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #F19A04;
  color: #F19A04;
  border-radius: 4px;
  font-family: "Avenir", Arial, sans-serif;
  font-size: 700;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}
.p-products__btn::after {
  content: "\f039";
  font-family: "FoundryProductsKit";
  color: #F19A04;
  font-size: 30px;
}
.p-products__btn:hover {
  color: #F19A04;
  opacity: 0.7;
  text-decoration: none;
}

.p-products__chevron {
  display: inline-block;
}

.p-features {
  background-color: #f5f5f5;
  padding: 60px 20px;
}
@media screen and (min-width: 1000px) {
  .p-features {
    padding: 80px 20px;
  }
}

.p-features__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.p-features__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 40px;
}
@media screen and (min-width: 1000px) {
  .p-features__title {
    font-size: 36px;
    margin-bottom: 48px;
  }
}

.p-features__title-dot {
  color: #FCB434;
}

.p-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1000px) {
  .p-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.p-features__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1000px) {
  .p-features__item {
    flex-direction: row;
    align-items: center;
  }
}

.p-features__img {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 1000px) {
  .p-features__img {
    flex: 0 0 160px;
    width: 160px;
    height: 100%;
  }
}
.p-features__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-features__body {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-features__name {
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  margin: 0 0 24px;
}
@media screen and (min-width: 1000px) {
  .p-features__name {
    font-size: 24px;
  }
}

.p-features__desc {
  font-weight: 300;
  font-size: 16px;
  color: #6E6D7A;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
@media screen and (min-width: 1000px) {
  .p-features__desc {
    font-size: 18px;
    margin: 0 0 24px 0;
    font-size: 18px;
  }
}

.p-features__link {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 32px;
  text-decoration: none;
  transition: opacity 0.2s;
  align-self: flex-start;
  background: #F19A04;
  border-radius: 4px;
}
.p-features__link:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

.p-lineup {
  background-color: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 1000px) {
  .p-lineup {
    padding: 100px 20px;
  }
}

.p-lineup__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 1000px) {
  .p-lineup__inner {
    gap: 120px;
  }
}

.p-lineup__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1000px) {
  .p-lineup__row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .p-lineup__row--reverse {
    flex-direction: row;
  }
}

.p-lineup__body {
  display: contents;
}
@media screen and (min-width: 1000px) {
  .p-lineup__body {
    display: block;
    flex: 0 0 48%;
    width: 48%;
  }
}

.p-lineup__title {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #222222;
  margin: 0 0 20px;
}
@media screen and (max-width: 1000px) {
  .p-lineup__title {
    order: 1;
  }
}
@media screen and (min-width: 1000px) {
  .p-lineup__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 1000px) {
  .p-lineup__text {
    order: 3;
  }
}

.p-lineup__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #444;
  line-height: 1.9;
  margin: 0 0 16px;
}
@media screen and (min-width: 1000px) {
  .p-lineup__desc {
    font-size: 16px;
  }
}
.p-lineup__desc:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .p-lineup__media {
    order: 2;
  }
}
.p-lineup__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.p-all-features {
  font-family: "Noto Sans JP", sans-serif;
}

.p-all-features__hero {
  position: relative;
  background-color: #0a0a0a;
  background-image: url(../img/top/family_bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 48px 20px;
}
.p-all-features__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
}

.p-all-features__hero-wrapper {
  max-width: 1240px;
  margin-inline: auto;
}

.p-all-features__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
@media screen and (min-width: 1000px) {
  .p-all-features__hero-inner {
    width: 40.5%;
  }
}

.p-all-features__hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
}
@media screen and (min-width: 1000px) {
  .p-all-features__hero-title {
    font-size: 30px;
  }
}

.p-all-features__hero-lead {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .p-all-features__hero-lead {
    font-size: 14px;
  }
}

.p-all-features__tab-nav {
  background-color: #111;
  border-bottom: 1px solid #2a2a2a;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-all-features__tab-nav-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-all-features__tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
@media screen and (min-width: 1000px) {
  .p-all-features__tab {
    font-size: 14px;
    padding: 18px 24px;
  }
}
.p-all-features__tab:hover {
  color: #fff;
}
.p-all-features__tab.is-active {
  color: #FCB434;
  border-bottom-color: #FCB434;
}

.p-all-features__panel {
  display: none;
}
.p-all-features__panel.is-active {
  display: block;
}

.p-all-features__panel-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (min-width: 1000px) {
  .p-all-features__panel-inner {
    padding: 80px 20px;
  }
}

.p-all-features__panel-title {
  font-size: 24px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 48px;
}
@media screen and (min-width: 1000px) {
  .p-all-features__panel-title {
    font-size: 28px;
  }
}

.p-all-features__title-dot {
  color: #FCB434;
}

.p-feat {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1000px) {
  .p-feat {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .p-feat--reverse {
    flex-direction: row-reverse;
  }
}
.p-feat:last-child {
  margin-bottom: 0;
}

.p-feat__media {
  position: relative;
  flex: 0 0 auto;
}
@media screen and (min-width: 1000px) {
  .p-feat__media {
    flex: 0 0 52%;
    width: 52%;
  }
}

.p-feat__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  border-radius: 10px;
}

.p-feat__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.p-feat__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-feat__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.p-feat__play-btn {
  color: #7F7F7F;
  background: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 300;
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease, visibility 0ms linear 0.3s;
  border-radius: 0 8px 0 0;
}
.p-feat__play-btn::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 0;
  height: 0;
  margin-right: 12px;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #7f7f7f;
  border-right: 0;
}
.p-feat__play-btn:hover {
  background: #FCB434;
}
.p-feat__play-btn span {
  color: #222222;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  pointer-events: none;
}

.p-feat__media {
  text-align: center;
}

.p-feat__media.is-playing .p-feat__poster {
  display: none;
}
.p-feat__media.is-playing .p-feat__iframe {
  display: block;
}
.p-feat__media.is-playing .p-feat__play-btn {
  display: none;
}

.p-feat__body {
  flex: 1;
  padding-top: 4px;
}

.p-feat__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #494845;
  padding: 0 0 16px;
}
@media screen and (min-width: 1000px) {
  .p-feat__title {
    font-size: 32px;
    padding-bottom: 24px;
  }
}

.p-feat__desc {
  color: #6E6D7A;
  padding: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 1000px) {
  .p-feat__desc {
    font-size: 18px;
  }
}

.p-feat-table {
  margin-top: 56px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (min-width: 1000px) {
  .p-feat-table {
    border-top: 0;
  }
}

.p-feat-table__head {
  display: none;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__head {
    display: grid;
    grid-template-columns: minmax(0, 3fr) repeat(5, minmax(0, 1fr));
    margin: 0 -16px;
    padding: 0 16px 14px;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    align-items: center;
  }
}

.p-feat-table__hcell {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__hcell {
    font-size: 18px;
  }
}
.p-feat-table__hcell--name {
  text-align: left;
}

.p-feat-table__item {
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__item {
    margin: 0 -16px;
    padding: 0 16px;
    transition: background-color 0.2s ease;
  }
  .p-feat-table__item:hover, .p-feat-table__item.is-open {
    background-color: #f5f5f5;
  }
}

.p-feat-table__row {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 20px 0;
  user-select: none;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__row {
    display: grid;
    grid-template-columns: minmax(0, 3fr) repeat(5, minmax(0, 1fr));
    align-items: center;
    padding: 22px 0;
  }
}

.p-feat-table__cell--name {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__cell--name {
    align-items: flex-start;
  }
}

.p-feat-table__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  margin-left: 8px;
  padding-top: 2px;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__toggle {
    order: 0;
    margin-left: 0;
    margin-right: 8px;
    padding-top: 0;
  }
}
.p-feat-table__toggle::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease, margin-top 0.25s ease;
}

.p-feat-table__item.is-open .p-feat-table__toggle::before {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.p-feat-table__name-inner {
  order: 1;
  flex: 1;
  min-width: 0;
}

.p-feat-table__name {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #222222;
  line-height: 1.5;
  transition: color 0.2s;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__name {
    font-size: 20px;
  }
}

.p-feat-table__sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 7px;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__sp-tags {
    display: none;
  }
}

.p-feat-table__sp-tag {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.04em;
  display: none;
}
.p-feat-table__sp-tag.is-on {
  display: inline-flex;
  align-items: center;
  color: #555;
}

.p-feat-table__cell--dot {
  display: none;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__cell--dot {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-feat-table__cell--dot.is-on::before {
    content: "●";
    color: #FCB434;
    font-size: 15px;
    line-height: 1;
  }
}

.p-feat-table__expand {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.p-feat-table__item.is-open .p-feat-table__expand {
  max-height: 300px;
  padding: 0 0 16px;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__item.is-open .p-feat-table__expand {
    padding: 0 0 20px;
  }
}

.p-feat-table__expand .p-feat-table__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #6E6D7A;
  line-height: 1.85;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .p-feat-table__expand .p-feat-table__desc {
    font-size: 16px;
    padding-inline: 20px;
  }
}
