/*============================
CTAスターターキット
============================*/
#cta-starterkit {
  width: min(100%, 102rem);
  background-color: #FFFCF6;
  border-radius: 16px;
  margin: 0 auto;
  padding: 3.2rem 4rem;
}
.cta-starterkit__title {
  color: var(--color-navy);
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.4rem;
}
.cta-starterkit__cont {
  display: grid;
  grid-template-columns: minmax(19rem, 24rem) 2.5rem minmax(32rem, 46rem);
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.cta-starterkit__mist {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.cta-starterkit_mist-img {
  width: 100%;
  max-width: 22rem;
}
.cta-starterkit_mist-img img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-starterkit__mist-text,
.cta-starterkit__flavor-text {
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.cta-starterkit__polygon {
  width: 2.5rem;
}
.cta-starterkit__polygon img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-starterkit__flavor {
  width: 100%;
}
.cta-starterkit__flavor-text {
  margin-bottom: 0.8rem;
}
.cta-starterkit__packages-img {
  width: 100%;
}
.cta-starterkit__packages-img img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-starterkit__btn {
  background-color: var(--color-navy);
  width: min(100%, 32rem);
  min-height: 5.6rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  margin: 3.2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .3s;
}
.cta-starterkit__btn-text {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #cta-starterkit {
    border-radius: 10px;
    padding: 2.4rem 1.6rem;
  }
  .cta-starterkit__title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .cta-starterkit__cont {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .cta-starterkit__mist {
    width: 100%;
  }
  .cta-starterkit__mist-img {
    max-width: 24rem;
  }
  .cta-starterkit__polygon {
    transform: rotate(90deg);
  }
  .cta-starterkit__flavor {
    width: 100%;
  }
  .cta-starterkit__flavor-text {
    text-align: center;
  }
  .cta-starterkit__packages-img {
    max-width: 42rem;
    margin: 0 auto;
  }
  .cta-starterkit__btn {
    width: 100%;
    max-width: 32rem;
    min-height: 5rem;
    margin-top: 3rem;
  }
  .cta-starterkit___btn-text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
 .cta-starterkit__btn:hover {
  background-color: var(--color-white);
 }
 .cta-starterkit__btn:hover .cta-starterkit__btn-text {
  color: var(--color-navy);
 }
}