/* =========================================================
  あしらい 円グラデ
========================================================= */
/* 横ぶれ対策 */
main {
  overflow-x: hidden;
}

.circle-left-3min,
.circle-right-3min {
  position: relative;
}
.circle-left-3min::before,
.circle-right-3min::after {
  position: absolute;
  z-index: 0;
  content: "";
  mix-blend-mode: hard-light;
}
.circle-left-3min::before {
  top: 0;
  left: 0;
  width: 24vw;
  height: 24vw;
  background: url(/special/img/3min_circle-left.svg) no-repeat center/contain;
}
.circle-right-3min::after {
  top: 100%;
  right: 0;
  transform: translate(50%, -50%);
  width: 71vw;
  height: 71vw;
  background: url(/special/img/3min_circle-right.svg) no-repeat left center / contain;
}
.z-index-1 {
  position: relative;
  z-index: 1;
}



/* =========================================================
  common
========================================================= */
section + section {
  padding-top: 48px;
}
.h3-unique {
  text-align: center;
  font-size: 5.6rem;
  font-weight: 200;
  line-height: 1.6;

  + p {
    margin: 16px 0 64px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
@media screen and (max-width: 979px) {
  .h3-unique {
    font-size: 3.2rem;
    line-height: 1.5;

    + p {
      margin: 16px 0 32px;
      font-size: 2rem;
    }
  }
}

.unique-bg {
  margin: 96px 0 0;
  padding: 48px 0 96px; 
  background: url(/special/img/3min_bg.svg) no-repeat center/cover;
  color: var(--White, #FFF);
}
@media screen and (max-width: 979px) {
  .unique-bg {
    margin: 48px 0 0;
    padding: 48px 0; 
  }
}


/* =========================================================
  セクション別
========================================================= */
/* About us - リスト
--------------------------------------------------------- */
.about-us-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  
  li {
    display: flex;
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 300px;
    padding: 55px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--White, #FFF);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    color: var(--FS_primary, #004399);
  }
  div {
    display: flex;
    align-items: baseline;
  }
  span {
    font-size: 5.6rem;
    line-height: 1.6;
  }
  img {
    height: 80px;
  }
}
@media screen and (max-width: 979px) {
  .about-us-list {
    gap: 10px;

    li {
      gap: 0;
      max-width: 100px;
      max-height: 100px;
      padding: 20px 0;
      font-size: 0.8rem;
    }
    .h3-basis {
      font-size: 0.8rem;
    }
    span {
      font-size: 2rem;
    }
    img {
      height: 28px;
    }
  } 
}


