@charset "UTF-8";
.section-firstview {
  height: 120svh;
}
.section-firstview .firstview-overlay{
  height: 120svh;
}
.section-firstview .firstview-visual{
  height: 120svh;
}
.section-firstview .firstview-overlay .overlay-wrap{
  height: 120svh;
}
.section-firstview .firstview-overlay .overlay-bg{
  height: 120svh;
}

.firstview-visual__sub {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-areas:
    "title title"
    "item01 item02";
  gap: 25px;
  max-width: 756px;
}
.firstview-visual__sub-title {
  grid-area: title;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  background-color: #fff;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.2;
  letter-spacing: 2px;
  padding: 10px 11%;
  border: 1px solid #FF0007;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.firstview-visual__sub-item{
  width: 100%;
  height: 100%;
  aspect-ratio: 366/224;
  max-width: 366px;
}
.firstview-visual__sub-item:first-child {
  grid-area: item01;
}
.firstview-visual__sub-item:last-child {
  grid-area: item02;
}
.firstview-visual-sp {
  width: 100%;
  max-width: 100%;
}

.firstview-visual__sub::before {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 105%;
  background-color: rgba(0, 0, 0, 0.4); /* #AE8C8D with 70% opacity */
  z-index: -1;
}

.pickup {
  padding: 85px 42px 0 42px;
  background-color: #fff;
  max-width: 1119px;
  margin-inline: auto;
}

.pickup__title {
  text-align: center;
  font-size: 38px;
  color: #fff;
  background-color: #c265e5;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 0px 32px;
}

.pickup__subtitle {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  margin-top: 32px;
}

.pickup__highlight {
  background-color: #ffeb3b; /* 黄色マーカー風 */
  font-weight: bold;
  padding: 0 5px;
}

.pickup__item--01 {
  display: grid;
  grid-template-areas:
    "image logo"
    "image title"
    "image description";
  column-gap: 56px;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
}

.pickup__item--02 {
  display: grid;
  grid-template-areas:
    "title image"
    "description image"
    "logo image";
  column-gap: 56px;
  grid-template-columns: 1fr 0.9fr;
  margin-top: 122px;
}
.pickup__image {
  max-width: 100%;
  width: 100%;
  grid-area: image;
}
.pickup__image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 534/700;
}

.pickup__logo {
  max-width: 100%;
  width: 65px;
  height: auto;
  grid-area: logo;
}
.pickup__item--02 .pickup__logo {
  width: 429px;
  margin-inline: auto;
  margin-top: -100px;
}
.pickup__description-title-wrap {
  grid-area: title;
  position: relative;
  margin-top: -34px;
}
.pickup__description-title-wrap--02 {
  margin-top: auto;
}
.pickup__description-title-wrap::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  bottom: 96%;
  right: 0;
}
.pickup__description-title-wrap--01::before {
  background-image: url(../img/pickUpNum01.png);
}
.pickup__description-title-wrap--02::before {
  background-image: url(../img/pickUpNum02.png);
}

.pickup__description-title {
  font-size: 22px;
}
.pickup__description-title:not(:first-child) {
  margin-top: 16px;
}
.pickup__description-title--pink {
  color: #e69fbe;
  font-size: 24px;
  font-weight: bold;
}
.pickup__description-title span {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 17px;
}
.pickup__description-title-pink {
  color: #e69fbe;
}
.pickup__description-title-green {
  color: #61c1be;
}
.pickup__description {
  font-size: 16px;
  line-height: 1.6;
  grid-area: description;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .section-firstview .firstview-visual{
    height: 68svh;
    min-height: 480px;
  }
  .section-firstview {
    height: 68svh;
    min-height: 480px;
  }
  .section-firstview .firstview-overlay .overlay-wrap{
    height: 68svh;
    min-height: 480px;
  }
  .section-firstview .firstview-overlay .overlay-bg{
    height: 68svh;
    min-height: 480px;
  }
  .section-firstview .firstview-scroll{
    bottom: 8.666vw;
  }
  .section-firstview .firstview-catch{
    margin-top: -18vw;
  }
  .section-firstview .firstview-copy{
    margin-top: 0;
  }
  .firstview-visual__sub {
    padding-bottom: 15px;
    grid-template-areas:
      "title"
      "item01"
      "item02";
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
  }
  .firstview-visual__sub-title {
    padding: 10px 40px;
    width: 100%;
  }
  .firstview-visual__sub::before{
    background-color: #C265E5;
    bottom: 0;
    height: 100%;
  }
  .firstview-visual__sub-item{
    max-width: 100%;
    padding: 0 15px;
    aspect-ratio: initial;
  }
  .pickup {
    padding: 0 10px;
  }
  .pickup__highlight {
    padding: 0 5px;
    display: block;
  }
  .pickup__description-title {
    margin-top: 28px;
  }
  .pickup__item--02 .pickup__description-title {
    margin-top: 0;
  }
  .pickup__subtitle {
    font-size: 24px;
    margin-top: 16px;
  }
  .pickup__item--01 .pickup__description:before {
    width: 90px;
    height: 90px;
    bottom: 100%;
    right: 0;
  }
  .pickup__item--01 {
    grid-template-areas:
      "title"
      "logo"
      "image"
      "description";
    grid-template-columns: 1fr;
    margin-top: 108px;
    row-gap: 32px;
  }
  .pickup__item--02 {
    grid-template-areas:
      "title"
      "logo"
      "image"
      "description";
    grid-template-columns: 1fr;
    margin-top: 108px;
    row-gap: 32px;
  }
  .pickup__description-title-wrap {
    padding: 0 15px;  }
  .pickup__description-title-wrap::before {
    width: 90px;
    height: 67px;
    left: 0;
  }
  .pickup__description-title-wrap--02::before {
    /* top: -214%; */
    top: -92px;
  }
  .pickup__logo {
    margin-inline: auto;
  }
  .pickup__item--02 .pickup__logo {
    width: 157px;
    margin-top: 0;
  }
  .pickup__description {
    padding: 0 15px;
    line-height: 2;
  }
}
