@charset "UTF-8";
/* ============common
=============================================== */
html {
  font-size: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style-type: none;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 17px;
  padding-left: 17px;
}
@media (max-width: 768px) {
  .wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 440px) {
  .wrapper {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.flex {
  display: flex;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* =============  header  ================ */
.topHero {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 820px;
  color: #fff;
}

.topHero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.topHero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.topHero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 24px 28px;
}

.topHero__logo {
  width: 210px;
}

.topHero__logo img {
  width: 100%;
  display: block;
}

.topHero__lead {
  position: absolute;
  top: 28px;
  left: 265px;
  margin: 0;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.55), 0 0 18px rgba(255, 255, 255, 0.28);
}

.topHero__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}

.topHero__left {
  width: 58%;
  padding-left: 28px;
}

.topHero__title {
  width: 690px;
  max-width: 100%;
}

.topHero__title img {
  width: 100%;
  display: block;
  margin-left: -10px;
}

.topHero__tags {
  display: flex;
  justify-content: space-evenly;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.topHero__tag {
  width: 165px;
}

.topHero__tag img {
  width: 100%;
  display: block;
}

.topHero__text {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
}

.topHero__btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.topHero__btn {
  min-width: 302px;
  text-align: center;
  display: inline-block;
  padding: 20px 28px;
  border-radius: 999px;
  border: 4px solid #fff;
  background: linear-gradient(90deg, #57d5f7 0%, #f766c7 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.topHero__right {
  width: 43%;
  display: flex;
  justify-content: center;
  padding-top: 135px;
}

.topHero__photo {
  width: 560px;
  max-width: 100%;
}

.topHero__photo img {
  width: 100%;
  display: block;
  margin-left: -20px;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .topHero {
    min-height: auto;
  }
  .topHero__inner {
    padding: 22px 20px 36px;
  }
  .topHero__lead {
    left: 245px;
    font-size: 22px;
  }
  .topHero__content {
    gap: 20px;
    margin-top: 86px;
  }
  .topHero__left {
    width: 56%;
    padding-left: 10px;
  }
  .topHero__right {
    width: 44%;
  }
  .topHero__tag {
    width: 145px;
  }
  .topHero__text {
    font-size: 18px;
  }
  .topHero__btn {
    min-width: 290px;
    font-size: 17px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .topHero {
    min-height: auto;
  }
  .topHero__inner {
    max-width: 520px;
    padding: 16px 14px 26px;
  }
  .topHero__logo {
    width: 156px;
  }
  .topHero__lead {
    position: static;
    margin-top: 8px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.3;
  }
  .topHero__content {
    margin-top: 12px;
    flex-direction: column-reverse;
  }
  .topHero__right {
    width: 100%;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .topHero__photo {
    width: 360px;
    margin: 0 auto;
  }
  .topHero__left {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  .topHero__title {
    width: 100%;
    margin-top: -8px;
  }
  .topHero__tags {
    justify-content: space-between;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: nowrap;
  }
  .topHero__tag {
    width: calc((100% - 16px) / 3);
  }
  .topHero__text {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.4;
  }
  .topHero__btnWrap {
    margin-top: 22px;
  }
  .topHero__btn {
    min-width: 0;
    width: 82%;
    padding: 18px 20px;
    font-size: 17px;
    border-width: 3px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .topHero__inner {
    padding: 14px 12px 24px;
  }
  .topHero__logo {
    width: 156px;
  }
  .topHero__lead {
    font-size: 17px;
    margin-top: 8px;
  }
  .topHero__photo {
    width: 330px;
  }
  .topHero__title {
    margin-top: -4px;
  }
  .topHero__tags {
    gap: 6px;
    margin-top: 16px;
  }
  .topHero__tag {
    width: calc((100% - 12px) / 3);
  }
  .topHero__text {
    font-size: 16px;
  }
  .topHero__btn {
    width: 86%;
    font-size: 16px;
    padding: 16px 18px;
  }
}
/* --------------- section1 --------------- */
.section1 {
  background: #ededed;
  padding: 64px 20px 76px;
  overflow: hidden;
}

.section1__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section1__title {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #7f8ffb;
  text-shadow: 2px 2px 0 #ffffff;
}

.section1__visual {
  width: 520px;
  margin: 34px auto 14px;
}

.section1__visual img {
  width: 100%;
  display: block;
}

.section1__box {
  max-width: 940px;
  margin: 0 auto;
  padding: 42px 44px 38px;
  background: #ededed;
  border: 5px solid transparent;
  border-radius: 20px;
  background-image: linear-gradient(#ededed, #ededed), linear-gradient(90deg, #46d7f0 0%, #f25cc8 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.section1__boxTitle {
  margin: 0 0 34px;
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 900;
  color: #111;
}

.section1__text {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 700;
  color: #111;
}

.section1__text:last-child {
  margin-bottom: 0;
}

.section1__spBr {
  display: none;
}

.section1__pcBr {
  display: inline;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section1 {
    padding: 56px 20px 66px;
  }
  .section1__title {
    font-size: 38px;
  }
  .section1__visual {
    width: 470px;
    margin-top: 30px;
  }
  .section1__box {
    max-width: 900px;
    padding: 42px 42px 38px;
  }
  .section1__boxTitle {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .section1__text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section1 {
    padding: 42px 14px 50px;
  }
  .section1__inner {
    max-width: 520px;
  }
  .section1__title {
    font-size: 26px;
    line-height: 1.25;
  }
  .section1__visual {
    width: 300px;
    margin: 24px auto 16px;
  }
  .section1__box {
    padding: 28px 18px 24px;
    border-width: 4px;
    border-radius: 14px;
  }
  .section1__boxTitle {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .section1__text {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .section1__spBr {
    display: inline;
  }
  .section1__pcBr {
    display: none;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section1 {
    padding: 36px 10px 44px;
  }
  .section1__title {
    font-size: 22px;
  }
  .section1__visual {
    width: 260px;
    margin-top: 20px;
    margin-bottom: 14px;
  }
  .section1__box {
    padding: 24px 14px 22px;
    border-radius: 12px;
  }
  .section1__boxTitle {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .section1__text {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
  }
}
/* --------------- section2 --------------- */
.section2 {
  padding: 66px 20px 76px;
  background: linear-gradient(180deg, #57b5ff 0%, #d84cff 100%);
}

.section2__inner {
  max-width: 980px;
  margin: 0 auto;
}

.section2__title {
  margin: 0;
  text-align: center;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #111;
  text-shadow: -3px -3px 0 #ffffff, 3px -3px 0 #ffffff, -3px 3px 0 #ffffff, 3px 3px 0 #ffffff, 0 4px 0 rgba(0, 0, 0, 0.7);
}

.section2__cards {
  margin-top: 46px;
}

.section2__card {
  background: #ededed;
  padding: 46px 44px 40px;
  margin-bottom: 40px;
}

.section2__card:last-child {
  margin-bottom: 0;
}

.section2__cardTitle {
  margin: 0;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #56a8ff 0%, #d85cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section2__line {
  width: 68%;
  height: 2px;
  margin: 22px auto 28px;
  background: linear-gradient(90deg, #56a8ff 0%, #d85cff 100%);
}

.section2__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
  color: #111;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section2 {
    padding: 56px 20px 66px;
  }
  .section2__title {
    font-size: 46px;
  }
  .section2__cards {
    margin-top: 48px;
  }
  .section2__card {
    padding: 42px 38px 36px;
    margin-bottom: 42px;
  }
  .section2__cardTitle {
    font-size: 31px;
  }
  .section2__text {
    font-size: 18px;
    line-height: 1.9;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section2 {
    padding: 40px 14px 48px;
  }
  .section2__inner {
    max-width: 520px;
  }
  .section2__title {
    font-size: 30px;
    line-height: 1.25;
    text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, 0 3px 0 rgba(0, 0, 0, 0.7);
  }
  .section2__cards {
    margin-top: 34px;
  }
  .section2__card {
    padding: 28px 16px 24px;
    margin-bottom: 42px;
  }
  .section2__cardTitle {
    font-size: 22px;
  }
  .section2__line {
    width: 86%;
    margin: 14px auto 16px;
  }
  .section2__text {
    font-size: 12px;
    line-height: 2;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section2 {
    padding: 34px 10px 42px;
  }
  .section2__title {
    font-size: 28px;
  }
  .section2__cards {
    margin-top: 28px;
  }
  .section2__card {
    padding: 24px 14px 22px;
    margin-bottom: 40px;
  }
  .section2__cardTitle {
    font-size: 19px;
  }
  .section2__line {
    width: 88%;
    margin: 12px auto 14px;
  }
  .section2__text {
    font-size: 12px;
    line-height: 1.95;
  }
}
/* --------------- section3 --------------- */
.section3 {
  background: #000;
  padding-bottom: 70px;
}

.section3__head {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.section3__headInner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 34px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.section3__headBg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section3__headBg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.section3__title {
  margin: auto;
  text-align: center;
  font-size: 50px;
  line-height: 1.33;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #55b8ff 0%, #d95aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section3__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.section3__leadBox {
  max-width: 960px;
  margin: 20px auto 46px;
  padding: 34px 34px 30px;
  background: linear-gradient(90deg, rgba(92, 176, 255, 0.96) 0%, rgba(227, 102, 255, 0.96) 100%);
}

.section3__leadText {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.85;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(118, 118, 118, 0.5921568627);
}

.section3__leadText:last-child {
  margin-bottom: 0;
}

.section3__leadText strong {
  font-weight: 900;
  font-size: 24px;
}

.section3__graphList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.section3__graph {
  width: 720px;
  max-width: 100%;
}

.section3__graph img {
  width: 100%;
  display: block;
}

.section3__graphList::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.18);
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section3 {
    padding-bottom: 62px;
  }
  .section3__head {
    height: 300px;
  }
  .section3__title {
    font-size: 44px;
  }
  .section3__leadBox {
    max-width: 900px;
    padding: 30px 28px 28px;
    margin-bottom: 50px;
  }
  .section3__leadText {
    font-size: 21px;
    line-height: 1.85;
  }
  .section3__graphList {
    gap: 50px;
  }
  .section3__graph {
    width: 660px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section3 {
    padding-bottom: 40px;
  }
  .section3__head {
    height: 122px;
  }
  .section3__headInner {
    padding: 28px 16px 14px;
    justify-content: flex-start;
  }
  .section3__title {
    width: 100%;
    font-size: 28px;
    line-height: 1.35;
    text-align: center;
  }
  .section3__inner {
    max-width: 540px;
    padding: 16px 10px 0;
  }
  .section3__leadBox {
    margin: 15px auto 42px;
    padding: 18px 16px 16px;
  }
  .section3__leadText {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 8px;
  }
  .section3__leadText strong {
    font-size: 16px;
  }
  .section3__graphList {
    gap: 34px;
  }
  .section3__graph {
    width: 100%;
    max-width: 485px;
  }
  .section3__graphList::after {
    margin-top: 2px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section3__head {
    height: 122px;
  }
  .section3__headInner {
    padding: 26px 10px 12px;
  }
  .section3__title {
    font-size: 25px;
  }
  .section3__inner {
    padding: 16px 8px 0;
  }
  .section3__leadBox {
    padding: 16px 14px 14px;
    margin-bottom: 36px;
  }
  .section3__leadText {
    font-size: 12px;
    line-height: 1.95;
  }
  .section3__leadText strong {
    font-size: 14px;
  }
  .section3__graphList {
    gap: 28px;
  }
  .section3__graph {
    max-width: 363px;
  }
}
/* --------------- section4 --------------- */
.section4 {
  position: relative;
  overflow: hidden;
  padding: 42px 20px 72px;
}

.section4__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section4__bg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.section4__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.section4__top {
  padding-bottom: 74px;
}

.section4__bottom {
  padding-top: 10px;
}

.section4__title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.section4__title--bottom {
  line-height: 1.28;
}

.section4__visuals {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 84px;
  margin-top: 34px;
}

.section4__visual {
  width: 350px;
}

.section4__visual--left {
  margin-top: 8px;
}

.section4__visual--right {
  margin-top: 18px;
}

.section4__visual img {
  width: 100%;
  display: block;
}

.section4__aboutBox {
  max-width: 920px;
  margin: 40px auto 0;
  padding: 34px 42px;
  background: rgba(255, 255, 255, 0.68);
}

.section4__aboutText {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  color: #111;
}

.section4__aboutText strong {
  font-weight: 900;
}

.section4__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px 56px;
  max-width: 980px;
  margin: 46px auto 0;
}

.section4__card {
  background: #fff;
  border: 2px solid #8c67ff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.section4__cardTitle {
  margin: 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
  color: #111;
}

.section4__cardLine {
  width: 82%;
  height: 2px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, #5fd5ff 0%, #ef52ff 100%);
}

.section4__cardText {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  color: #111;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section4 {
    padding: 56px 20px 66px;
  }
  .section4__title {
    font-size: 42px;
  }
  .section4__visuals {
    gap: 52px;
    margin-top: 36px;
  }
  .section4__visual {
    width: 310px;
  }
  .section4__aboutBox {
    max-width: 860px;
    margin-top: 44px;
    padding: 28px 32px;
  }
  .section4__aboutText {
    font-size: 18px;
    line-height: 1.8;
  }
  .section4__cards {
    gap: 36px 34px;
    margin-top: 48px;
  }
  .section4__cardTitle {
    font-size: 25px;
  }
  .section4__cardText {
    font-size: 15px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section4 {
    padding: 24px 14px 42px;
  }
  .section4__inner {
    max-width: 540px;
  }
  .section4__top {
    padding-bottom: 44px;
  }
  .section4__bottom {
    padding-top: 0;
  }
  .section4__title {
    font-size: 25px;
    line-height: 1.3;
  }
  .section4__visuals {
    gap: 18px;
    margin-top: 18px;
    align-items: center;
  }
  .section4__visual {
    width: calc((100% - 18px) / 2);
    max-width: 150px;
  }
  .section4__visual--left {
    margin-top: 0;
  }
  .section4__visual--right {
    margin-top: 0;
  }
  .section4__aboutBox {
    margin-top: 18px;
    padding: 16px 14px;
  }
  .section4__aboutText {
    font-size: 11px;
    line-height: 1.95;
  }
  .section4__cards {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 320px;
    margin-top: 28px;
  }
  .section4__card {
    border-radius: 12px;
    padding: 18px 14px 16px;
  }
  .section4__cardTitle {
    font-size: 17px;
  }
  .section4__cardLine {
    width: 78%;
    margin: 10px auto 12px;
  }
  .section4__cardText {
    font-size: 11px;
    line-height: 1.85;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section4 {
    padding: 20px 10px 36px;
  }
  .section4__title {
    font-size: 22px;
  }
  .section4__visuals {
    gap: 14px;
    margin-top: 16px;
  }
  .section4__visual {
    max-width: 128px;
  }
  .section4__aboutBox {
    padding: 14px 12px;
  }
  .section4__aboutText {
    font-size: 11px;
    line-height: 1.9;
  }
  .section4__top {
    padding-bottom: 36px;
  }
  .section4__cards {
    max-width: 290px;
    gap: 20px;
  }
  .section4__card {
    padding: 16px 12px 14px;
  }
  .section4__cardTitle {
    font-size: 15px;
  }
  .section4__cardText {
    font-size: 10px;
  }
}
/* --------------- section5 --------------- */
.section5 {
  background: #000;
  padding: 54px 20px 72px;
}

.section5__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section5__box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 84px 36px 42px;
  background: #f3f3f3;
  border-radius: 24px;
}

.section5__label {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 430px;
  padding: 24px 34px;
  border-radius: 24px;
  background: linear-gradient(90deg, #63b8ff 0%, #db49ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section5__labelText {
  display: block;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.section5__frame {
  border: 6px solid transparent;
  background-image: linear-gradient(#f3f3f3, #f3f3f3), linear-gradient(90deg, #60b6ff 0%, #db49ff 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 52px 54px 44px;
}

.section5__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.section5__left {
  flex: 1;
  min-width: 0;
  padding-top: 10px;
}

.section5__right {
  width: 300px;
  flex-shrink: 0;
}

.section5__image {
  width: 100%;
}

.section5__image img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.section5__title {
  margin: 0;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  color: #f3f3f3;
  -webkit-text-stroke: 2px #6b6b6b;
  text-stroke: 2px #6b6b6b;
  letter-spacing: 0.01em;
}

.section5__sub {
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  color: #111;
}

.section5__list {
  margin: 42px 0 0;
}

.section5__row {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 20px;
}

.section5__row:last-child {
  margin-bottom: 0;
}

.section5__term {
  min-width: 120px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  color: #111;
}

.section5__desc {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 900;
  color: #666;
}

.section5__result {
  margin: 44px 0 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 900;
  color: #111;
}

.section5__btnWrap {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.section5__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #1e1a1f;
  text-decoration: none;
  /* ここが本質 */
  filter: drop-shadow(-5px -5px 0 #00eaff) drop-shadow(5px 5px 0 #ff00f0); /* 右下 */
  transition: 0.3s;
}

.section5__btnMain {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.section5__btnSub {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.section5__btn:hover {
  transform: translateY(-3px);
  filter: drop-shadow(-8px -8px 4px #00eaff) drop-shadow(8px 8px 4px #ff00f0);
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section5 {
    padding: 48px 20px 64px;
  }
  .section5__box {
    max-width: 920px;
    padding: 76px 30px 38px;
  }
  .section5__label {
    min-width: 390px;
    padding: 22px 28px;
  }
  .section5__labelText {
    font-size: 30px;
  }
  .section5__frame {
    padding: 42px 40px 38px;
  }
  .section5__content {
    gap: 34px;
  }
  .section5__right {
    width: 250px;
  }
  .section5__title {
    font-size: 44px;
  }
  .section5__sub {
    font-size: 22px;
    margin-top: 24px;
  }
  .section5__list {
    margin-top: 34px;
  }
  .section5__term {
    min-width: 110px;
    font-size: 22px;
  }
  .section5__desc {
    font-size: 24px;
  }
  .section5__result {
    margin-top: 38px;
    font-size: 32px;
  }
  .section5__btn {
    min-width: 320px;
  }
  .section5__btnMain {
    font-size: 18px;
  }
  .section5__btnSub {
    font-size: 16px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section5 {
    padding: 40px 14px 50px;
  }
  .section5__inner {
    max-width: 540px;
  }
  .section5__box {
    max-width: 100%;
    padding: 62px 16px 24px;
    border-radius: 18px;
  }
  .section5__label {
    top: -24px;
    min-width: 260px;
    padding: 16px 20px;
    border-radius: 18px;
  }
  .section5__labelText {
    font-size: 21px;
  }
  .section5__frame {
    padding: 28px 18px 26px;
    border-width: 5px;
  }
  .section5__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 26px;
  }
  .section5__left {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
  .section5__right {
    width: 260px;
  }
  .section5__title {
    font-size: 28px;
    -webkit-text-stroke: 1px #6b6b6b;
    text-stroke: 1px #6b6b6b;
  }
  .section5__sub {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .section5__list {
    margin-top: 24px;
  }
  .section5__row {
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .section5__term {
    min-width: auto;
    font-size: 16px;
  }
  .section5__desc {
    font-size: 18px;
  }
  .section5__result {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.5;
  }
  .section5__btnWrap {
    margin-top: 24px;
  }
  .section5__btn {
    min-width: 240px;
    padding: 13px 18px;
    filter: drop-shadow(-3px -3px 0 #00eaff) drop-shadow(3px 3px 0 #ff00f0);
  }
  .section5__btnMain {
    font-size: 14px;
  }
  .section5__btnSub {
    font-size: 13px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section5 {
    padding: 34px 10px 44px;
  }
  .section5__box {
    padding: 56px 12px 20px;
    border-radius: 16px;
  }
  .section5__label {
    min-width: 230px;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .section5__labelText {
    font-size: 18px;
  }
  .section5__frame {
    padding: 22px 12px 22px;
  }
  .section5__right {
    width: 200px;
  }
  .section5__title {
    font-size: 22px;
  }
  .section5__sub {
    font-size: 14px;
  }
  .section5__term {
    font-size: 14px;
  }
  .section5__desc {
    font-size: 16px;
  }
  .section5__result {
    font-size: 16px;
  }
  .section5__btn {
    min-width: 200px;
  }
  .section5__btnMain {
    font-size: 12px;
  }
  .section5__btnSub {
    font-size: 12px;
  }
}
/* --------------- section6 --------------- */
.section6 {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 38px 20px 70px;
}

.section6__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section6__label {
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #59b5ff 0%, #e44fff 100%);
}

.section6__labelText {
  display: block;
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  color: #fff;
}

.section6__title {
  margin: 26px 0 0;
  text-align: center;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.621), 0 0px 4px rgba(255, 255, 255, 0.25);
}

.section6__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 34px;
  max-width: 1000px;
  margin: 46px auto 0;
}

.section6__card {
  position: relative;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 32px 28px 28px;
  min-height: 260px;
}

.section6__num {
  position: absolute;
  top: -16px;
  left: 14px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #67c7ff 0%, #d84bff 100%);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.section6__num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 0 10px;
  border-color: transparent transparent transparent #6e2e8f;
}

.section6__cardTitle {
  margin: 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
  color: #111;
}

.section6__line {
  width: 82%;
  height: 2px;
  margin: 18px auto 22px;
  background: linear-gradient(90deg, #60c8ff 0%, #ea50ff 100%);
}

.section6__cardText {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #111;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section6 {
    padding: 34px 18px 62px;
  }
  .section6__inner {
    max-width: 1080px;
  }
  .section6__label {
    max-width: 620px;
    padding: 16px 22px;
  }
  .section6__labelText {
    font-size: 25px;
  }
  .section6__title {
    font-size: 56px;
    margin-top: 22px;
  }
  .section6__cards {
    gap: 34px 24px;
    margin-top: 46px;
  }
  .section6__card {
    padding: 30px 22px 24px;
    min-height: 230px;
  }
  .section6__cardTitle {
    font-size: 21px;
  }
  .section6__cardText {
    font-size: 15px;
    line-height: 1.8;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section6 {
    padding: 20px 14px 40px;
  }
  .section6__inner {
    max-width: 540px;
  }
  .section6__label {
    max-width: 95%;
    padding: 14px 16px;
    border-radius: 22px;
  }
  .section6__labelText {
    font-size: 17px;
    line-height: 1.35;
  }
  .section6__title {
    margin-top: 18px;
    font-size: 36px;
    line-height: 1.1;
  }
  .section6__cards {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 34px;
  }
  .section6__card {
    min-height: auto;
    padding: 30px 22px 20px;
    border-radius: 8px;
  }
  .section6__num {
    top: -12px;
    left: 14px;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .section6__num::after {
    right: -8px;
    border-width: 12px 0 0 8px;
  }
  .section6__cardTitle {
    font-size: 18px;
    line-height: 1.45;
  }
  .section6__line {
    width: 82%;
    margin: 14px auto 16px;
  }
  .section6__cardText {
    font-size: 12px;
    line-height: 1.8;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section6 {
    padding: 18px 10px 36px;
  }
  .section6__label {
    padding: 12px 14px;
    border-radius: 18px;
  }
  .section6__labelText {
    font-size: 15px;
  }
  .section6__title {
    margin-top: 16px;
    font-size: 28px;
  }
  .section6__cards {
    gap: 28px;
    margin-top: 28px;
  }
  .section6__card {
    padding: 20px 16px 18px;
    max-width: 90%;
    margin: 0 auto;
  }
  .section6__num {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
  .section6__cardTitle {
    font-size: 16px;
  }
  .section6__cardText {
    font-size: 12px;
    line-height: 1.75;
  }
}
/* --------------- section7 --------------- */
.section7 {
  padding: 46px 20px 50px;
  background: linear-gradient(90deg, #63b6ff 0%, #d949ff 100%);
}

.section7__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section7__title {
  margin: 0;
  font-size: 46px;
  line-height: 1.35;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18), 0 8px 18px rgba(0, 0, 0, 0.08);
}

.section7__text {
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.75;
  font-weight: 700;
  color: #fff;
}

.section7__btnWrap {
  margin-top: 30px;
}

.section7__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 20px 32px;
  border-radius: 999px;
  background: #fff;
  color: #7b92ff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease;
}

.section7__btn:hover {
  opacity: 0.88;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section7 {
    padding: 40px 20px 44px;
  }
  .section7__title {
    font-size: 40px;
  }
  .section7__text {
    font-size: 24px;
    margin-top: 24px;
  }
  .section7__btn {
    min-width: 240px;
    font-size: 30px;
    padding: 18px 28px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section7 {
    padding: 30px 14px 34px;
  }
  .section7__inner {
    max-width: 520px;
  }
  .section7__title {
    font-size: 20px;
    line-height: 1.45;
  }
  .section7__text {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.8;
  }
  .section7__btnWrap {
    margin-top: 18px;
  }
  .section7__btn {
    min-width: 132px;
    padding: 10px 22px;
    font-size: 19px;
    border-radius: 999px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section7 {
    padding: 26px 10px 30px;
  }
  .section7__title {
    font-size: 18px;
  }
  .section7__text {
    font-size: 12px;
    margin-top: 16px;
  }
  .section7__btn {
    min-width: 128px;
    font-size: 17px;
    padding: 9px 20px;
  }
}
/* --------------- section8 --------------- */
.section8 {
  background: #ebebf0;
  padding: 62px 20px 76px;
}

.section8__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section8__title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  color: #6d2cff;
}

.section8__list {
  max-width: 980px;
  margin: 42px auto 0;
}

.section8__item {
  background: #fff;
  border-radius: 34px;
  padding: 28px 36px 30px;
  margin-bottom: 22px;
}

.section8__item:last-child {
  margin-bottom: 0;
}

.section8__head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.section8__q {
  flex-shrink: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  color: #6d2cff;
}

.section8__question {
  flex: 1;
  padding-top: 4px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  color: #111;
}

.section8__plus {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 4px;
}

.section8__plus::before,
.section8__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #6d2cff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.section8__plus::before {
  width: 28px;
  height: 2px;
}

.section8__plus::after {
  width: 2px;
  height: 28px;
}

.section8__head[aria-expanded=true] .section8__plus::after {
  opacity: 0;
}

.section8__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.section8__answer {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  color: #111;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section8 {
    padding: 56px 20px 66px;
  }
  .section8__title {
    font-size: 50px;
  }
  .section8__list {
    max-width: 940px;
    margin-top: 44px;
  }
  .section8__item {
    padding: 26px 30px 28px;
    border-radius: 30px;
  }
  .section8__q {
    font-size: 38px;
  }
  .section8__question {
    font-size: 26px;
  }
  .section8__answer {
    font-size: 18px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section8 {
    padding: 36px 14px 46px;
  }
  .section8__inner {
    max-width: 540px;
  }
  .section8__title {
    font-size: 28px;
    line-height: 1.25;
  }
  .section8__list {
    margin-top: 26px;
    max-width: 100%;
  }
  .section8__item {
    padding: 18px 18px 18px;
    border-radius: 24px;
    margin-bottom: 22px;
  }
  .section8__head {
    gap: 12px;
  }
  .section8__q {
    font-size: 24px;
  }
  .section8__question {
    padding-top: 0;
    font-size: 16px;
    line-height: 1.45;
  }
  .section8__plus {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
  .section8__plus::before {
    width: 20px;
  }
  .section8__plus::after {
    height: 20px;
  }
  .section8__answer {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.8;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section8 {
    padding: 30px 10px 40px;
  }
  .section8__title {
    font-size: 24px;
  }
  .section8__item {
    padding: 16px 16px 16px;
    border-radius: 22px;
    margin-bottom: 18px;
  }
  .section8__q {
    font-size: 22px;
  }
  .section8__question {
    font-size: 14px;
  }
  .section8__plus {
    width: 22px;
    height: 22px;
  }
  .section8__plus::before {
    width: 18px;
  }
  .section8__plus::after {
    height: 18px;
  }
  .section8__answer {
    font-size: 11px;
    line-height: 1.75;
  }
}
/* --------------- section9 --------------- */
.section9 {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 18px 20px 62px;
}

.section9__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section9__bg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.section9__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 900px;
}

.section9__visual {
  position: absolute;
  top: 0;
  right: 60px;
  width: 450px;
}

.section9__visual img {
  width: 100%;
  display: block;
}

.section9__content {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding-top: 400px;
  padding-left: 60px;
}

.section9__textBox {
  display: inline-block;
  padding: 18px 22px 20px;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.section9__lead {
  margin: 0;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(252, 252, 252, 0.711);
}

.section9__text {
  margin: 28px 0 0;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(252, 252, 252, 0.711);
}

.section9__text--last {
  margin-top: 34px;
  text-shadow: 0px 0px 4px rgba(252, 252, 252, 0.711);
}

.section9__btnWrap {
  padding-left: 20px;
  margin: 34px auto 0;
}

.section9__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 410px;
  padding: 22px 30px;
  border-radius: 24px;
  background: linear-gradient(90deg, #57aeff 0%, #df4fff 100%);
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s ease;
}

.section9__btn:hover {
  opacity: 0.9;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .section9 {
    padding: 18px 20px 56px;
  }
  .section9__inner {
    max-width: 1080px;
    min-height: 820px;
  }
  .section9__visual {
    right: 30px;
    width: 420px;
  }
  .section9__content {
    max-width: 680px;
    padding-top: 400px;
    padding-left: 40px;
  }
  .section9__textBox {
    padding: 16px 18px 18px;
  }
  .section9__lead {
    font-size: 24px;
  }
  .section9__text {
    font-size: 22px;
    margin-top: 24px;
  }
  .section9__text--last {
    margin-top: 28px;
  }
  .section9__btn {
    min-width: 360px;
    font-size: 24px;
    padding: 20px 26px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .section9 {
    padding: 16px 14px 34px;
  }
  .section9__inner {
    max-width: 540px;
    min-height: auto;
  }
  .section9__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 250px;
    margin: 0 0 0 auto;
  }
  .section9__content {
    max-width: 100%;
    padding-top: 12px;
    padding-left: 10px;
  }
  .section9__textBox {
    display: block;
    padding: 14px 14px 16px;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 10px;
  }
  .section9__lead {
    font-size: 17px;
    line-height: 1.45;
  }
  .section9__text {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.45;
  }
  .section9__text--last {
    margin-top: 22px;
  }
  .section9__btnWrap {
    margin-top: 20px;
    padding-left: 0;
    text-align: center;
    padding-right: 30px;
  }
  .section9__btn {
    min-width: 280px;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 18px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .section9 {
    padding: 14px 10px 30px;
  }
  .section9__visual {
    width: 220px;
    margin: 10px 25px 0 auto;
  }
  .section9__content {
    padding-top: 0px;
    padding-left: 30px;
  }
  .section9__textBox {
    padding: 12px 12px 14px;
  }
  .section9__lead {
    font-size: 14px;
  }
  .section9__text {
    margin-top: 16px;
    font-size: 14px;
  }
  .section9__text--last {
    margin-top: 18px;
  }
  .section9__btnWrap {
    margin-top: 18px;
  }
  .section9__btn {
    min-width: 240px;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 16px;
  }
}
/* --------------- Footer --------------- */
.footer {
  background: #ffffff;
  padding: 48px 20px 38px;
}

.footer__inner {
  max-width: 980px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
}

.footer__logo {
  width: 220px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  display: block;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 10px;
}

.footer__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  -moz-column-gap: 26px;
       column-gap: 26px;
  align-items: start;
}

.footer__label {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #111;
}

.footer__value {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: #111;
}

.footer__copy {
  margin: 42px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #111;
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .footer {
    padding: 42px 20px 34px;
  }
  .footer__inner {
    max-width: 900px;
  }
  .footer__top {
    gap: 70px;
  }
  .footer__logo {
    width: 190px;
  }
  .footer__info {
    gap: 28px;
  }
  .footer__row {
    grid-template-columns: 72px 1fr;
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
  .footer__label,
.footer__value {
    font-size: 18px;
  }
  .footer__copy {
    margin-top: 46px;
    font-size: 16px;
  }
}
/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  .footer {
    padding: 28px 14px 24px;
  }
  .footer__inner {
    max-width: 520px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer__logo {
    width: 160px;
  }
  .footer__info {
    width: 100%;
    max-width: 360px;
    gap: 20px;
    padding-top: 0;
  }
  .footer__row {
    grid-template-columns: 56px 1fr;
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
  .footer__label,
.footer__value {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer__copy {
    margin-top: 20px;
    font-size: 12px;
  }
}
/* ---------- 440px以下 ---------- */
@media (max-width: 440px) {
  .footer {
    padding: 24px 10px 22px;
  }
  .footer__logo {
    width: 136px;
  }
  .footer__info {
    max-width: 320px;
    gap: 16px;
  }
  .footer__row {
    grid-template-columns: 50px 1fr;
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
  .footer__label,
.footer__value {
    font-size: 12px;
  }
  .footer__copy {
    margin-top: 28px;
    font-size: 10px;
  }
}
/* ========================================
   animation utility
======================================== */
/* 初期状態 */
.js-fadeIn,
.js-fadeUp,
.js-marker,
.js-float {
  will-change: transform, opacity;
}

/* ------------------------------
   1. ふわっと表示
------------------------------ */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.js-fadeIn.is-active {
  opacity: 1;
}

/* ------------------------------
   2. 下からふわっと表示
------------------------------ */
.js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 少し強めに出したい時 */
.js-fadeUp--lg {
  transform: translateY(70px);
}

/* 左右版もあると便利 */
.js-fadeLeft {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fadeLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fadeRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------
   3. マーカーが引かれる
------------------------------ */
.js-marker {
  position: relative;
  display: inline;
  background-image: linear-gradient(transparent 58%, #fff36a 58%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-marker.is-active {
  background-size: 100% 100%;
}

/* 色違い */
.js-marker--pink {
  background-image: linear-gradient(transparent 58%, #ffb3f6 58%);
}

.js-marker--blue {
  background-image: linear-gradient(transparent 58%, #aee8ff 58%);
}

/* 少し太め */
.js-marker--thick {
  background-image: linear-gradient(transparent 45%, #fff36a 45%);
}

/* ------------------------------
   4. 継続的にゆらゆら動く
------------------------------ */
.js-float {
  -webkit-animation: floatY 3.2s ease-in-out infinite;
          animation: floatY 3.2s ease-in-out infinite;
}

.js-float--slow {
  -webkit-animation-duration: 4.8s;
          animation-duration: 4.8s;
}

.js-float--fast {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
}

.js-float--delay1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.js-float--delay2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.js-float--delay3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 横ゆれしたい時 */
.js-sway {
  -webkit-animation: swayX 4s ease-in-out infinite;
          animation: swayX 4s ease-in-out infinite;
  transform-origin: center center;
}

.js-sway--slow {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

@-webkit-keyframes swayX {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1.5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes swayX {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1.5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* ------------------------------
   遅延 utility
------------------------------ */
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

/* marker用遅延 */
.js-marker[data-delay="100"] {
  transition-delay: 0.1s;
}

.js-marker[data-delay="200"] {
  transition-delay: 0.2s;
}

.js-marker[data-delay="300"] {
  transition-delay: 0.3s;
}

.js-marker[data-delay="400"] {
  transition-delay: 0.4s;
}

.js-marker[data-delay="500"] {
  transition-delay: 0.5s;
}

/* ------------------------------
   スマホで動きを少し弱める
------------------------------ */
@media (max-width: 768px) {
  .js-fadeUp {
    transform: translateY(24px);
  }
  .js-fadeLeft {
    transform: translateX(-24px);
  }
  .js-fadeRight {
    transform: translateX(24px);
  }
  @-webkit-keyframes floatY {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatY {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
    100% {
      transform: translateY(0);
    }
  }
}
/*# sourceMappingURL=style.css.map */