@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap");
/* Default Options */
/* Media Query */
/**
 * Media Query Mixin
 * @param {string} $mq  - min | max | min-max
 * @param {string} $bp1 - breakpoint key (e.g. "lg")
 * @param {string} $bp2 - breakpoint key (e.g. "xl") for min-max upper bound
 */
/* Transform Font Size */
/* custom property ------------------------ */
:root {
  --contents-inner-padding: max(6vw, 20px);
  --accent-color: rgba(222, 17, 94, 1);
  --space-lg: clamp(120px, 15vw, 240px);
  --space-md: clamp(80px, 10vw, 160px);
  --space-sm: clamp(40px, 5vw, 80px);
  --space-xs: clamp(20px, 3vw, 40px);
  --space-xxs: clamp(10px, 1vw, 20px);
}

/* ---------------------------------------- */
.main-contents {
  position: relative;
  overflow: hidden;
}
.main-contents .page-header-child {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------- */
.enquete-head {
  margin-block-end: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-sm);
}
.enquete-head .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-xxs);
  position: relative;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(0, 0, 0);
}
.enquete-head .catch .copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
}
.enquete-head .catch .text {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  text-align: center;
}
.enquete-head .catch .left,
.enquete-head .catch .right {
  height: 120%;
  position: absolute;
  top: -10%;
  z-index: 0;
}
.enquete-head .catch .left img,
.enquete-head .catch .right img {
  width: auto;
  height: 100%;
}
.enquete-head .catch .left {
  left: -30%;
}
.enquete-head .catch .right {
  right: -30%;
}
.enquete-head .image {
  width: 100vw;
  max-width: 1800px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  column-gap: clamp(20px, 6vw, 120px);
  position: relative;
}
.enquete-head p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: rgb(0, 0, 0);
}
.enquete-list {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.enquete-list .item {
  border-radius: var(--space-xxs);
  overflow: hidden;
  position: relative;
  color: rgb(0, 0, 0);
}
.enquete-list .item:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.enquete-list .item:nth-child(1), .enquete-list .item:nth-child(2), .enquete-list .item:nth-child(3) {
  display: flex;
  flex-direction: column;
}
.enquete-list .item:nth-child(1) .inner, .enquete-list .item:nth-child(2) .inner, .enquete-list .item:nth-child(3) .inner {
  padding-block-end: 0;
}
.enquete-list .item:nth-child(1) {
  background-color: #fdce79;
}
.enquete-list .item:nth-child(1):before {
  background-image: url(../../assets/images/product/enquete/bg_list01.svg);
  background-size: 80% auto;
  background-position: 200% -10%;
}
.enquete-list .item:nth-child(1) .image {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.enquete-list .item:nth-child(2) {
  background-color: #e8ceca;
}
.enquete-list .item:nth-child(2):before {
  background-image: url(../../assets/images/product/enquete/bg_list02.svg);
  background-size: 70% auto;
  background-position: 50% 30%;
}
.enquete-list .item:nth-child(2) .image {
  padding-inline-start: var(--space-xs);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.enquete-list .item:nth-child(3) {
  background-color: #69b7a2;
  row-gap: var(--space-xs);
}
.enquete-list .item:nth-child(3):before {
  background-image: url(../../assets/images/product/enquete/bg_list03.svg);
  background-size: 70% auto;
  background-position: -20% 50%;
}
.enquete-list .item:nth-child(3) .image {
  aspect-ratio: 3/2;
  display: flex;
  align-items: start;
  overflow: hidden;
}
.enquete-list .item:nth-child(4) {
  background-color: #d4dee7;
}
.enquete-list .item:nth-child(4):before {
  background-image: url(../../assets/images/product/enquete/bg_list04.svg);
  background-size: 70% auto;
  background-position: -30% 100%;
}
.enquete-list .item:nth-child(5) {
  background-color: #ffa0ab;
}
.enquete-list .item:nth-child(5):before {
  background-image: url(../../assets/images/product/enquete/bg_list05.svg);
  background-size: 60% auto;
  background-position: 60% 120%;
}
.enquete-list .item .image {
  position: relative;
  z-index: 2;
}
.enquete-list .item .inner {
  padding-block: var(--space-xs);
  padding-inline: var(--space-xs);
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: var(--space-xxs);
  position: relative;
  z-index: 1;
}
.enquete-list .item .number {
  height: clamp(28px, 3vw, 32px);
  padding-inline: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: clamp(14px, 1.5vw, 16px);
  font-size: 1.4rem;
  font-family: "Bree Serif", serif;
  line-height: 1;
}
.enquete-list .item .copy {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.enquete-list .item p {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .enquete-head .catch .copy {
    font-size: 6.4rem;
  }
  .enquete-head .catch .text {
    font-size: 2rem;
  }
  .enquete-head .catch .text br {
    display: none;
  }
  .enquete-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: var(--space-xxs);
  }
  .enquete-list .item:nth-child(1) {
    grid-area: 1/1/2/2;
    justify-content: space-between;
  }
  .enquete-list .item:nth-child(1) .image {
    aspect-ratio: 1/1;
  }
  .enquete-list .item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .enquete-list .item:nth-child(3) {
    grid-area: 2/1/4/2;
  }
  .enquete-list .item:nth-child(3) .image {
    aspect-ratio: 1/1;
  }
  .enquete-list .item:nth-child(4) {
    grid-area: 2/2/3/3;
  }
  .enquete-list .item:nth-child(5) {
    grid-area: 3/2/4/3;
  }
}
@media screen and (min-width: 992px) {
  .enquete-head p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .enquete-list {
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
  }
  .enquete-list .item:nth-child(1) {
    grid-area: 1/1/2/9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .enquete-list .item:nth-child(1):before {
    background-size: 60% auto;
    background-position: 150% -100%;
  }
  .enquete-list .item:nth-child(1) .image {
    grid-area: 1/1/2/2;
    aspect-ratio: inherit;
  }
  .enquete-list .item:nth-child(1) .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .enquete-list .item:nth-child(1) .inner {
    padding-block-start: 0;
    grid-area: 1/2/2/3;
  }
  .enquete-list .item:nth-child(2) {
    grid-area: 2/1/3/9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .enquete-list .item:nth-child(2):before {
    background-size: 50% auto;
    background-position: 50% 130%;
  }
  .enquete-list .item:nth-child(2) .inner {
    padding-block-end: var(--space-xs);
  }
  .enquete-list .item:nth-child(3) {
    grid-area: 1/9/3/13;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
  }
  .enquete-list .item:nth-child(3) .image {
    aspect-ratio: 1/1;
  }
  .enquete-list .item:nth-child(4) {
    min-height: 280px;
    display: flex;
    align-items: center;
    grid-area: 3/1/4/7;
  }
  .enquete-list .item:nth-child(4):before {
    background-size: 60% auto;
    background-position: -30% -100%;
  }
  .enquete-list .item:nth-child(5) {
    min-height: 280px;
    display: flex;
    align-items: center;
    grid-area: 3/7/4/13;
  }
  .enquete-list .item .inner {
    justify-content: center;
  }
  .enquete-list .item .number {
    font-size: 1.6rem;
  }
  .enquete-list .item .copy {
    font-size: 3.2rem;
  }
  .enquete-list .item p {
    font-size: 1.6rem;
  }
  .enquete-list .item p br {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .enquete-list .item p br {
    display: block;
  }
}
