/* 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;
}

/* ---------------------------------------- */
.proid-bg {
  width: 100%;
  min-width: 900px;
  max-height: 1200px;
  display: flex;
  align-items: end;
  position: absolute;
  top: 60px;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
}
.proid-bg:before {
  content: "";
  width: 100%;
  height: 70%;
  display: block;
  background-color: #13c6eb;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.proid-bg img {
  position: relative;
  z-index: 1;
}
.proid-head {
  max-width: 1000px;
  margin-block-end: var(--space-md);
  margin-inline: auto;
  padding-inline: var(--contents-inner-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  position: relative;
  z-index: 2;
}
.proid-head .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(0, 0, 0);
}
.proid-head .catch div {
  display: flex;
  align-items: center;
  column-gap: 3px;
}
.proid-head .catch span {
  display: inline-block;
  padding: clamp(5px, 0.5vw, 10px);
  background-color: rgb(255, 255, 255);
  line-height: 1;
}
.proid-head .copy {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: rgb(0, 0, 0);
}
.proid-head .image {
  margin-block-start: var(--space-xs);
  margin-block-end: var(--space-sm);
}
.proid-head p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: rgb(0, 0, 0);
}
.proid-head p br {
  display: none;
}
.proid-list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 5vw, 80px);
}
.proid-list .item {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.proid-list .item .image {
  border-radius: 10px;
  overflow: hidden;
}
.proid-list .item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-xs);
}
.proid-list .item .inner .icon {
  width: clamp(64px, 6vw, 96px);
}
.proid-list .item .inner .icon:after {
  display: none;
}
.proid-list .item .inner .copy {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(0, 0, 0);
}
.proid-list .item .inner p {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .proid-bg {
    min-height: 1000px;
    top: 100px;
  }
  .proid-head .catch {
    font-size: 4.8rem;
  }
  .proid-list .item {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    column-gap: var(--space-xxs);
  }
  .proid-list .item .image {
    grid-column: 1/5;
  }
  .proid-list .item .inner {
    grid-column: 6/10;
    justify-content: center;
    align-items: start;
  }
  .proid-list .item:nth-child(2n) .image {
    grid-area: 1/7/2/11;
  }
  .proid-list .item:nth-child(2n) .inner {
    grid-area: 1/2/2/6;
  }
}
@media screen and (min-width: 992px) {
  .proid-head .catch {
    font-size: 6.4rem;
  }
  .proid-head .copy {
    font-size: 2.4rem;
  }
  .proid-head p {
    font-size: 2rem;
    text-align: center;
  }
  .proid-head p br {
    display: block;
  }
  .proid-list {
    max-width: 1200px;
    margin-inline: auto;
  }
  .proid-list .item .inner .copy {
    font-size: 3.2rem;
  }
  .proid-list .item .inner p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .proid-head .catch {
    font-size: 8rem;
  }
}
