@charset "utf-8";

@media screen and (min-width: 1441px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: calc(100vw / 128.0); /* base width 1280px */
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5); /* base width 375px */
  }
}

/* ==============================
  Safari用
  ============================== */
@supports (-webkit-hyphens:none) {
  :root {
    --zoom-invert: 1;
  }
  html {
    width: 100%;
    font-size: calc((100vw / 144.0) * var(--zoom-invert));
    overflow-x: hidden;
  }
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: block;
  }
  @media screen and (min-width: 1441px) {
    html {
      font-size: calc(10px * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 1280px) {
    html {
      font-size: calc((100vw / 128.0) * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 767px) {
    html {
      font-size: calc((100vw / 37.5) * var(--zoom-invert));
    }
  }
}

/* ==============================
  p-kv
  ============================== */
.p-fv {
  position: relative;
}
.p-fv__contents-wrapper {
  padding: 6.0rem 0 0;
}
.p-fv__title {
  width: fit-content;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 130%;
  opacity: 0.9;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-fv__contents-wrapper {
    padding: 4.0rem 1.6rem 0;
  }
  .p-fv__title {
    margin-inline: auto;
    font-size: 3.6rem;
    text-align: center;
  }
}

/* ==============================
  p-info
  ============================== */
.p-info {
  margin-top: 6.0rem;
}
.p-info__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.144rem;
  color: #111;
  opacity: 0.9;
}
.p-info__item {
  display: flex;
  gap: 3.2rem;
  margin-top: 4.0rem;
  padding-bottom: 4.0rem;
  border-bottom: 0.1rem solid #CED2DA;
}
.p-info__item:first-child {
  margin-top: 0;
}
.p-info__label {
  width: 23.1rem;
  flex-shrink: 0;
}
.p-info__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.072rem;
  color: #393939;
  opacity: 0.9;
}
.p-info__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #111;
  opacity: 0.9;
}
.p-info__decimal {
  list-style-type: decimal;
  padding-left: 2.0rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #111;
  opacity: 0.9;
}
.p-info__decimal > li {
  position: relative;
  margin-top: 0.8rem;
}
.p-info__decimal > li:first-child {
  margin-top: 0;
}
.p-info__note {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.048rem;
  color: #4D4D4D;
  opacity: 0.9;
}
.p-info__note > li {
  position: relative;
}
.p-info__note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.2rem;
}
@media screen and (max-width: 767px) {
  .p-info {
    margin-top: 4.0rem;
    padding-bottom: 5.0rem;
  }
  .p-info__contents-wrapper {
    max-width: 34.2rem;
  }
  .p-info__title {
    font-size: 3.2rem;
    letter-spacing: 0.128rem;
  }
  .p-info__item {
    display: block;
    margin-top: 2.0rem;
    padding-bottom: 2.0rem;
  }
  .p-info__label {
    width: 100%;
  }
  .p-info__body {
    margin-top: 1.6rem;
  }
  .p-info__note {
    margin-top: 0.2rem;
  }
}