@charset "UTF-8";

@font-face {
  font-family: 'Neura Display';
  src: url('../fonts//NeuraDisplayVariable[wght].ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
   --color-black: #2D2D2D;
   --color-white: #FFFFFF;
   --color-gray: #807E7B;
   --color-navy: #1D4984;
   --color-pink: #DBB7C3;
   --color-gold: #BD9E85;
}

/*============================
全体
============================*/
html {
  font-size: 10px;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
  width: 100%;
}
main {
  overflow-x: hidden;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.neura-display {
  font-family: 'Neura Display', sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  /* コンテンツ幅 */
  .wrapper {
    width: 100%;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
/*============================
スターターキットセクションの配置
============================*/
.sec-starterkit-wrap {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
}
/*============================
スターターキットセクション
============================*/
#sec-starterkit {
  position: relative;
  width: 100%;
  background-image: url("../img/sec-starterkit-bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  padding: 6.4rem 4rem 6.8rem;
  border-radius: 10px;
}
.sec-starterkit__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto 2rem;
  padding: 3.2rem 8.8rem 1.6rem;
  border-radius: 20px;
  background-color: var(--color-white);
}
.sec-starterkit__inner {
  width: 100%;
}
.sec-starterkit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 55.2rem;
  grid-template-areas:
    "top-left top-right"
    "bottom-left bottom-right";
  column-gap: 0;
  row-gap: 0;
  align-items: center;
}
.sec-starterkit__top-left {
  grid-area: top-left;
}
.sec-starterkit__top-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.sec-starterkit__bottom-left {
  grid-area: bottom-left;
}
.sec-starterkit__bottom-right {
  display: flex;
  justify-content: flex-end;
}
.sec-starterkit__title {
  color: var(--color-navy);
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  white-space: nowrap;
}
.sec-starterkit__title-lg {
  font-size: 6.4rem;
}
.sec-starterkit__badges {
  display: flex;
  gap: .7rem;
  margin-bottom: 2.4rem;
  white-space: nowrap;
}
.sec-starterkit__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.sec-starterkit__badge--gold {
  background-color: #ceaa35;
}
.sec-starterkit__lead,
.sec-starterkit__text,
.sec-starterkit__text--strong {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  white-space: nowrap;
}
.sec-starterkit__text--strong {
  color: var(--color-navy);
  font-size: 2rem;
}
.sec-starterkit__bottom-left .sec-starterkit__text--strong {
  margin-bottom: 0;
}
.sec-starterkit__price-img {
  width: 100%;
  max-width: 46.9rem;
  margin-left: auto;
}
.sec-starterkit__main-price-img {
  width: 100%;
  max-width: 55.2rem;
  margin-left: auto;
}
.sec-starterkit__price-img img,
.sec-starterkit__main-price-img img {
  display: block;
  width: 100%;
  height: auto;
}
.starter-campaign__button-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.starter-campaign__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 44rem;
  height: 8rem;
  margin: 0 auto;
  border-radius: 8px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  transition: .3s;
}
@media screen and (max-width: 1200px) {
  #sec-starterkit {
    padding: 5.6rem 4rem 6rem;
  }
  .sec-starterkit__card {
    max-width: 100%;
    padding: 3.2rem 4rem 2.4rem;
  }
  .sec-starterkit__grid {
    grid-template-columns: minmax(0, 1fr) minmax(40rem, 48rem);
    column-gap: 2.4rem;
  }
  .sec-starterkit__title {
    font-size: 4rem;
  }
  .sec-starterkit__title-lg {
    font-size: 4.8rem;
  }
  .sec-starterkit__badges {
    gap: .6rem;
  }
  .sec-starterkit__badge {
    padding: .7rem 1.2rem;
    font-size: 1.5rem;
  }
  .sec-starterkit__lead,
  .sec-starterkit__text,
  .sec-starterkit__text--strong {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .sec-starterkit__text--strong {
    font-size: 1.7rem;
  }
  .sec-starterkit__price-img {
    max-width: 46.9rem;
  }
  .sec-starterkit__main-price-img {
    max-width: 48rem;
  }
}
@media screen and (max-width: 960px) {
  .sec-starterkit__card {
    padding: 3.2rem 3.2rem 2.4rem;
  }
  .sec-starterkit__grid {
    grid-template-columns: minmax(0, 1fr) 28rem;
    column-gap: 1.6rem;
  }
  .sec-starterkit__title {
    font-size: 3.6rem;
    white-space: nowrap;
  }
  .sec-starterkit__title-lg {
    font-size: 4rem;
    white-space: nowrap;
  }
  .sec-starterkit__badges {
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.6rem;
  }
  .sec-starterkit__badge {
    padding: .6rem 1rem;
    font-size: 1.3rem;
  }
  .sec-starterkit__lead,
  .sec-starterkit__text,
  .sec-starterkit__text--strong {
    white-space: normal;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .sec-starterkit__text--strong {
    font-size: 1.6rem;
  }
  .sec-starterkit__price-img {
    max-width: 30rem;
  }
  .sec-starterkit__main-price-img {
    max-width: 34rem;
  }
}
@media screen and (max-width: 767px) {
  #sec-starterkit {
    background-image: url("../img/sec-starterkit-bg_sp.webp");
    max-width: 100%;
    padding: 3.2rem 2rem 2.4rem;
  }
  .sec-starterkit__card {
    padding: 3.2rem 2.4rem;
    border-radius: 12px;
  }
  .sec-starterkit__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top-left"
      "bottom-left"
      "top-right"
      "bottom-right";
    gap: .8rem;
  }
  .sec-starterkit__title {
    display: table;
    margin: 0 auto 1.6rem;
    text-align: left;
    font-size: 3rem;
  }
  .sec-starterkit__title-lg {
    font-size: 3.2rem;
  }
  .sec-starterkit__badges {
    justify-content: center;
    gap: .6rem;
  }
  .sec-starterkit__badge {
    height: 2.8rem;
    padding: 0 1.2rem;
    font-size: 1.2rem;
  }
  .sec-starterkit__lead,
  .sec-starterkit__text,
  .sec-starterkit__text--strong {
    font-size: 1.4rem;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .sec-starterkit__text--strong {
    font-size: 1.6rem;
  }
  .sec-starterkit__price-img {
    max-width: 85%;
    margin: 0 auto;
  }
  .sec-starterkit__main-price-img {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
	.starter-campaign__button:hover {
	  background-color: var(--color-white);
	  color: var(--color-navy);
	}
}