@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #111;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.red_01 {
  color: #F24800;
}

.red_02 {
  color: #E50000;
}

.yellow {
  color: #F7FF00;
}

.opac {
  transition: all 0.3s ease;
}

.opac:hover {
  opacity: 0.7;
}

.text__gradation {
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

/* ヘッダー・ナビゲーション */
.header {
  max-width: 1360px;
  width: calc(100% - 60px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border-radius: 33px;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px 15px;
}

.header__logo img {
  height: 36px;
}

.header__nav ul {
  display: flex;
  gap: 20px;
}

.header__nav ul li a {
  font-weight: 500;
}

.header__nav ul li a:not(.header__cta-btn):hover {
  color: #3F41BE;
}

.nav-sp-only,
.header__hamburger {
  display: none;
}

body.is-resize .header__nav {
  transition: none;
}

@media (max-width: 1060px) {
  .header__logo {
    position: relative;
    z-index: 1101;
  }

  .header__logo img {
    height: 26px;
  }

  .header__nav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 920px) {
  .header__hamburger {
    display: block;
    background: #fff;
    border: none;
    width: 32px;
    height: 26px;
    position: relative;
    z-index: 1101;
    padding: 0;
  }

  .header__hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .header__hamburger span:not(:last-child) {
    margin-bottom: 7px;
  }

  .header__hamburger span {
    transition: all 0.3s;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(33deg);
  }

  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-33deg);
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 24px);
    background: #fff;
    border-radius: 20px;
    z-index: 1100;
    flex-direction: column;
    padding: 80px 16px 16px 16px;
    box-sizing: border-box;
    box-shadow: 0px 2px 12px 0px #00000026;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s cubic-bezier(0.4,0,0.2,1),
      visibility 0.4s;
    transition-delay: 0.1s;
  }
  
  .header__nav.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .header__nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 24px;
  }

  .header__nav ul li:not(.nav-sp-only) {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #A8A8A8;
    padding: 10px 0;
    font-weight: 500;
    line-height: 1;
    width: 178px;
    margin: 0 auto 19px;
  }

  .header__nav ul li a {
    font-size: 16px;
  }

  .nav-sp-only {
    margin-top: 20px;
  }
  
  .nav-sp-only .header__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 420px;
    background: #06C755;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    border-radius: 10px;
    padding: 12px;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: none;
  }

  .nav-sp-only .header__cta-btn:active {
    color: #fff;
  }

  .nav-sp-only .header__cta-btn img {
    width: 40px;
    height: 40px;
  }

  .header__cta-btn {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    padding: 16px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .nav-sp-only {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .header {
    width: calc(100% - 20px);
    top: 12px;
    box-shadow: 0px 2px 12px 0px #00000026;
  }

  .header__inner {
    padding: 14px 16px;
    justify-content: space-between;
  }
}

/* メインビジュアル */
.main-visual {
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/main-visual-bg-pc.jpg) no-repeat center center / cover;
  padding: 125px 0 38px;
  color: #fff;
  text-align: center;
}

.main-visual__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.main-visual__content {
  width: calc(536 / 1200 * 100%);
}

.main-visual__lead {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
  line-height: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 33%, #FFFFFF 65.87%, rgba(255, 255, 255, 0) 100%);
  padding: 8px;
}

.main-visual__lead span {
  font-weight: 700;
}

.main-visual__catch {
  margin-bottom: 20px;
}

.main-visual__sublead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  background: #1F057D;
  line-height: 1;
  padding: 5px 3px;
}

.main-visual__sublead .yellow {
  font-weight: 700;
}

.main-visual__sublead .main-visual__sublead-border {
  display: inline-block;
  border: 1px solid #F7FF00;
  line-height: 1;
  padding: 1px;
}

.main-visual__sublead-bg {
  display: inline-block;
}

.main-visual__benefits {
  display: flex;
  gap: 18px;
}

.main-visual__note {
  text-align: right;
  font-size: 8px;
}

.main-visual__image {
  width: calc(631 / 1200 * 100%);
}

.main-visual__image img {
  filter: drop-shadow(-6px 6px 10px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .main-visual {
    padding: 78px 0 40px;
    background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/main-visual-bg-sp.jpg) no-repeat center center / cover;
  }

  .main-visual__inner {
    padding: 0 16px;
  }

  .main-visual__top {
    display: block;
    margin-bottom: 30px;
  }

  .main-visual__content {
    width: 100%;
  }

  .main-visual__lead {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .main-visual__sublead {
    font-size: clamp(16px, 4.1vw, 28px);
    margin-bottom: 12px;
    text-align: left;
    background: none;
    padding: 0;
  }

  .main-visual__sublead-bg {
    background: #1F057D;
    padding: 5px;
  }

  .main-visual__sublead-bg:first-of-type {
    margin-bottom: 4px;
  }

  .main-visual__benefits.sp-only {
    display: flex !important;
    gap: 4px;
    margin-bottom: 4px;
  }

  .main-visual__note {
    font-size: 6px;
  }

  .main-visual__image {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 10px;
  }
}

/* CTA */
.cta {
  color: #fff;
  text-align: center;
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/cta-bg-pc.jpg) no-repeat center center / cover;
  padding: 78px 0;
}

.cta__present-lead {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  z-index: 1;
  display: inline-block;
  padding: 4px 27px;
}

.cta__present-lead::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: #e6002d;
  transform: translate(-50%, -50%) skew(-14deg, 0deg);
  z-index: -1;
}

.main-visual .cta__present-title {
  margin-bottom: 28px;
}

.cta__present-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 52px;
  text-shadow: 0px 0px 6px #000;
  line-height: 1;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #06C755;
  /* padding: 16px 72px 16px 32px; */
  padding: 16px 72px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 32px;
  /* line-height: 1; */
  line-height: 1.9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
}

.cta__button img {
  width: 60px;
  height: 60px;
}

.cta__button::after {
  content: '';
  display: block;
  position: absolute;
  right: -38px;
  top: 44%;
  width: 92px;
  height: 6.5px;
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/cta-arrow-pc.svg) no-repeat center center;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta {
    background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/cta-bg-sp.jpg) no-repeat center center / cover;
    padding: 32px 0 38px;
  }

  .cta__present-lead {
    font-size: 12px;
    margin-bottom: 4px;
    padding: 0 10px;
  }

  .cta__present-title {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .main-visual .cta__present-title,
  .cta__present-title {
    margin-bottom: 24px;
  }

  .cta__button {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    font-size: 18px;
    /* padding: 12px 50px 12px 0px; */
    padding: 12px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    line-height: 2.2;
  }

  .cta__button img {
    width: 40px;
    height: 40px;
  }

  .cta__button::after {
    content: '';
    display: block;
    position: absolute;
    right: -5px;
    top: 44%;
    width: 50px;
    height: 5px;
    background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/cta-arrow-sp.svg) no-repeat center center;
    pointer-events: none;
  }
}

/* 共通セクション */
section {
  padding: 120px 0;
}

.section__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 46px auto 56px;
  position: relative;
  z-index: 1;
}

.section__title-en {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.section__title-en-gradation {
  background: linear-gradient(90deg, #DEF6F3 0%, #E2E2F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 24px;
    margin: 20px auto 40px;
  }
  
  .section__title-en {
    font-size: 40px;
    top: -4px;
  }
}

/* 補助金紹介 */
.subsidy {
  padding: 80px 0;
}

.subsidy .section__inner {
  max-width: 860px;
}

.subsidy__title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}

.subsidy__title span:first-of-type {
  font-size: 64px;
}

.subsidy__box {
  padding: 28px 40px 40px;
  border: 3px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%) border-box;
}

.subsidy__list {
  display: flex;
  justify-content: center;
  gap: 140px;
  margin-bottom: 130px;
  position: relative;
}

.subsidy__list::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-top: 40px solid #F24800;
}

.subsidy__item {
  max-width: 264px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.subsidy__logo-box {
  flex: 1;
  display: flex;
  align-items: center;
}

.subsidy__logo {
  margin: 0 auto;
}

.subsidy__item:first-of-type .subsidy__logo {
  width: 121px;
}

.subsidy__desc {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  background: #F3F3F3;
  padding: 0 4px;
  box-sizing: border-box;
}

.subsidy__text {
  margin: 0;
}

.subsidy__text img {
  max-width: 527px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .subsidy {
    padding: 66px 0 60px;
  }

  .subsidy__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .subsidy__title span:first-of-type {
    font-size: 36px;
  }

  .subsidy__box {
    border: 2px solid transparent;
    padding: 12px 8px 16px;
  }

  .subsidy__list {
    gap: 20px;
    margin-bottom: 76px;
  }

  .subsidy__list::after {
    bottom: -48px;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 20px solid #F24800;
  }
  
  .subsidy__item:first-of-type .subsidy__logo {
    width: calc(80 / 161 * 100%);
  }

  .subsidy__item:nth-of-type(2) .subsidy__logo {
    width: calc(143 / 161 * 100%);
  }
  
  .subsidy__item {
    gap: 0;
  }

  .subsidy__desc {
    font-size: 10px;
    padding: 4px 6px;
    min-height: calc(3em + 12px);
    display: flex;
    align-items: center;
  }

  .subsidy__text {
    width: calc(300 / 340 * 100%);
    margin: 0 auto;
  }

  .subsidy__text img {
    max-width: 100%;
  }
  
}

/* 問題・悩み */
.problem {
  background: #EAEAEA;
  padding: 80px 0 30px;
  margin-bottom: 140px;
  position: relative;
}

.problem::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100vw;
  height: 140px;
  background: #EAEAEA;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.problem .section__title-en {
  color: #F8F8F8;
}

.problem .section__title-en::after {
  content: '';
  position: absolute;
  right: -110px;
  width: 47px;
  height: 73px;
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/icon-problem.svg) no-repeat center center / contain;
}

.problem__images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

.problem__image-item {
  max-width: 320px;
  position: relative;
}

.problem__image-text {
  position: absolute;
  bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  padding: 16px 24px;
}

.problem__list-box {
  text-align: center;
}

.problem__list {
  display: inline-block;
  text-align: left;
}

.problem__list-item {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 33px;
  padding-left: 30px;
}

.problem__list-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/icon-check.svg) no-repeat center center / contain;
}

.problem__list-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .problem {
    padding: 60px 0 30px;
    margin-bottom: 66px;
  }

  .problem::after {
    bottom: -66px;
    height: 66px;
    background: #EAEAEA;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }
  
  .problem .section__title-en::after {
    top: -14px;
    right: -38px;
    width: 29px;
    height: 38px;
  }
  
  .problem__images {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
  }
  
  .problem__list-item {
    font-size: 16px;
    margin-bottom: 18px;
    padding-left: 38px;
  }
  
  .problem__list-item::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ソリューション */
.solution {
  padding: 66px 0 137px;
}

.solution .section__title {
  margin-bottom: 80px;
}

.section__title-gradation {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 14px 20px;
  margin-top: 14px;
  font-weight: 500;
}

.solution__title-end {
  margin-top: 12px;
  font-weight: 500;
  display: inline-block;
}

.section__title-gradation::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  transform: translate(-50%, -50%) skew(-14deg, 0deg);
  z-index: -1;
}

.section__title-gradation:nth-last-of-type(2) {
  margin-bottom: 12px;
}

.solution__list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.solution__item {
  max-width: 320px;
  box-shadow: -4px 4px 10px 0px #00000026;
  position: relative;
  z-index: 1;
}
.solution__item::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -16px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
}

.solution__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  background: #fff;
}

@media (max-width: 768px) {
  .solution {
    padding: 60px 0 80px;
  }
  
  .solution .section__title {
    margin-bottom: 36px;
  }
  
  .section__title-gradation {
    margin-top: 12px;
    font-size: 18px;
    padding: 14px 15px;
  }

  .solution__title-end {
    font-size: 18px;
    margin-top: 0;
  }
  
  .section__title-gradation:nth-last-of-type(2) {
    margin-bottom: 12px;
  }
  
  .solution__list {
    flex-direction: column;
    align-items: center;
    transform: translateX(8px);
  }
  
  .solution__desc {
    padding: 16px 22px;
  }
}

/* 強み */
.strength {
  background: linear-gradient(90deg, #DEF6F3 0%, #E2E2F5 100%);
  overflow: hidden;
}

.strength .section__title {
  line-height: 1.3;
}

.strength .text__gradation {
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0 2px 3px;
  position: relative;
  line-height: 1;
}

.strength .text__gradation::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.strength__item {
  display: flex;
  margin-bottom: 60px;
  max-width: 879px;
  position: relative;
}

.strength__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: skew(-12deg, 0deg);
  box-shadow: -6px 6px 10px 0px #00000026;
  left: 27px;
}

.strength__image,
.strength__content {
  z-index: 1;
}

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

.strength__item--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
}

.strength__item--reverse::before {
  left: 0;
  right: 27px;
}

.strength__image img {
  height: 250px;
}

.strength__content {
  flex: 1;
  padding: 30px;
}

.strength__item--reverse .strength__content {
  padding-left: 50px;
}

.strength__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .strength .section__title {
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .strength__item {
    flex-direction: column;
    margin-bottom: 26px;
  }
  
  .strength__item::before {
    transform: skew(-6deg, 0deg);
    top: 80px;
    left: 12px;
    width: 93%;
  }

  .strength__image img {
    height: auto;
    width: calc(344 / 358 * 100%);
  }

  .strength__content,
  .strength__item--reverse .strength__content {
    padding: 20px calc(30 / 358 * 100%) 30px 30px;
  }

  .strength__title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .strength__desc {
    font-size: 14px;
  }
}

/* 受講後のキャリア */
.voice {
  background: #F8F8F888;
  overflow: hidden;
  padding-bottom: 60px;
}

.voice__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 98px;
}

.voice__slider {
  margin: 0 calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  width: calc(100vw + 120px);
  transform: translateX(-20px);
}

.voice__item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0 20px 16px;
  box-shadow: -6px 6px 10px 0px #00000026;
  display: flex !important;
  flex-direction: column;
  height: auto !important;
}

.voice__box {
  border: 1px solid #EAEAEA;
  padding: 0 12px 12px;
  height: 100%;
}

.voice__name {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  text-align: center;
}

.voice__title {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
  text-align: center;
}

.voice__voice {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.voice__lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 40px;
}

.voice__marker {
  background: linear-gradient(180deg, rgba(242, 72, 0, 0) 50%, rgba(242, 72, 0, 0.8) 90%,  rgba(242, 72, 0, 0) 91%);
  margin: 0 5px;
  display: inline-block;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .voice__text {
    margin-bottom: 80px;
  }

  .voice__slider {
    width: calc(100vw + 274px);
    transform: translateX(-12px);
  }

  .voice__item {
    margin: 0 12px 16px;
  }

  .voice__lead {
    font-size: 16px;
  }

  .voice__marker {
    margin: 0 2px;
  }
}

.voice__slider .slick-track {
  display: flex;
}

.voice__slider .slick-prev,
.voice__slider .slick-next {
  width: 30px;
  height: 30px;
  top: -58px;
  transform: none;
}

.voice__slider .slick-prev:before,
.voice__slider .slick-next:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
}

.voice__slider .slick-prev:before {
  background-image: url('https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/icon-prev.svg');
}

.voice__slider .slick-next:before {
  background-image: url('https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/icon-next.svg');
}

.voice__slider .slick-prev {
  left: auto;
  right: 340px;
}

.voice__slider .slick-next {
  right: 300px;
}

.voice__slider .slick-prev:hover::before,
.voice__slider .slick-next:hover::before {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .voice__slider .slick-prev,
  .voice__slider .slick-next {
    top: -40px;
  }

  .voice__slider .slick-prev {
    right: 318px;
  }

  .voice__slider .slick-next {
    right: 278px;
  }
}

/* インジケーター */
.voice__indicator {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.voice__indicator-bar {
  max-width: 860px;
  width: calc(100% - 40px);
  height: 4px;
  background: #D9D9D9;
  overflow: hidden;
  position: relative;
}

.voice__indicator-progress {
  height: 100%;
  background: #21C5B2;
  transition: all 0.5s ease;
  position: absolute;
  left: 0%;
}

@media (max-width: 768px) {
  .voice__indicator {
    margin-top: 9px;
  }

  .voice__indicator-bar {
    width: 100%;
  }
}

/* サポート */
.support .section__inner {
  max-width: 860px;
}

.support__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.support__item:not(:last-child) {
  margin-bottom: 40px;
}

.support__header {
  display: flex;
  align-items: center;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  padding: 9px 16px;
  color: #fff;
  font-weight: 700;
  gap: 32px;
}

.support__number {
  font-size: 48px;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  line-height: 1;
}

.support__title {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  flex: 1;
}

.support__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 20px;
  border: 2px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%) border-box;
}

.support__image {
  width: 152px;
}

@media (max-width: 768px) {
  .support__item:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .support__header {
    padding: 16px;
  }

  .support__item:first-of-type .support__header {
    gap: 16px;
  }
  
  .support__title {
    font-size: 20px;
    text-align: left;
  }

  .support__content {
    flex-direction: column;
    gap: 10px;
  }
  
  .support__image {
    width: calc(152 / 318 * 100%);
  }
}

/* インビテーション */
.invitation {
  background: linear-gradient(90deg, #7ADCD1 0%, #8C8DD8 100%);
}

.invitation__box {
  background: #fff;
  padding: 60px 36px 60px;
  text-align: center;
}

.invitation__list {
  display: inline-block;
  text-align: left;
}

.invitation__item {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 1.4;
  position: relative;
  padding-left: 40px;
}

.invitation__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/icon-check-02.svg) no-repeat center center / contain;
}

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

.invitation__item .text__gradation {
  font-weight: 700;
}

.invitation__check {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  background: linear-gradient(135deg, #21C5B2 0%, #3F41BE 100%);
  border-radius: 6px;
  position: relative;
}

.invitation__check::after {
  content: '\2714';
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
}

@media (max-width: 768px) {
  .invitation__box {
    padding: 40px 10px;
  }

  .invitation .section__title {
    line-height: 1.4;
    margin-top: 12px;
  }

  .invitation .section__title-en {
    top: 4px;
  }

  .invitation__item {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* 料金 */
.price {
  background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/price-bg-pc.jpg) no-repeat center center / cover;
}

.price .section__title {
  margin-bottom: 90px;
}

.price .section__title .text__gradation:first-of-type {
  font-family: 'Roboto', sans-serif;
  font-size: 64px;
  line-height: 1;
  transform: translateY(5px);
  display: inline-block;
}

.price__container {
  position: relative;
  max-width: 848px;
  margin: 0 auto;
  transform: translateX(6px);
}

.price__container::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -12px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
}

.price__discount-badge {
  position: absolute;
  top: -149px;
  right: -63px;
  background: #F7FF00;
  border-radius: 50%;
  width: 218px;
  height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.price__discount-badge .text__gradation {
  font-family: 'Roboto', sans-serif;
  font-size: 64px;
  line-height: 0.8;
  transform: translateY(5px);
  display: inline-block;
}

.price__discount-text {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
}

.price__discount-amount {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.price__box {
  background: #fff;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%) border-box;
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.price__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 47%;
  width: 1px;
  height: 100%;
  background: #DDDDDD;
}

.price__original,
.price__final {
  text-align: center;
}

.price__original {
  width: calc(379 / 848 * 100%);
}

.price__final {
  width: calc(430 / 848 * 100%);
}

.price__label {
  position: absolute;
  top: -12px;
  left: -3px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  font-style: normal;
  text-shadow: none;
}

.price__amount {
  font-size: 62px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  line-height: 1;
  text-shadow: -4px 4px 0px #E7E7E7;
  display: inline-block;
  position: relative;
  letter-spacing: 0;
}

.price__amount--gradation {
  position: relative;
  font-size: 80px;
  z-index: 1;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: -0.05em;
  padding-right: 3px;
}

.price__amount--shadow {
  position: absolute;
  font-size: 80px;
  top: 0;
  left: 0;
  text-shadow: -4px 4px 0px #E7E7E7;
  color: transparent;
  letter-spacing: -0.05em;
  padding-right: 3px;
}

.price__amount--gradation::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 120%;
  height: 12px;
  background: #F7FF00;
  z-index: -1;
}

.price__currency {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-shadow: -4px 4px 0px #E7E7E7;
  display: inline-block;
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
}

.price__tax {
  font-size: 12px;
  font-weight: 500;
  text-shadow: none;
  display: block;
}

.price__arrow {
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 3;
  width: 39px;
}

.price__note {
  font-size: 12px;
  line-height: 1.2;
  max-width: 860px;
  margin: 20px auto 0;
}

@media (max-width: 1060px) {
  .price__discount-badge {
    top: -110px;
    right: 0;
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .price {
    background: url(https://www.skillupai.com/open/subsidy2023/np-to-prompt-engineer-ad2-google/img/price-bg-sp.jpg) no-repeat center center / cover;
  }
  
  .price .section__title {
    margin: 20px calc(50% - 50vw) 56px;
    line-height: 1.3;
  }
  
  .price .section__title .text__gradation:first-of-type {
    font-size: 40px;
    transform: translateY(5px);
  }
  
  .price__container {
    transform: none;
  }
  
  .price__container::before {
    top: 4px;
    left: -4px;
  }

  .price__discount-badge {
    top: -54px;
    right: -9px;
    width: 90px;
    height: 90px;
  }
  
  .price__discount-badge .text__gradation {
    font-size: 24px;
    line-height: 0.9;
    transform: none;
  }
  
  .price__discount-text {
    font-size: 8px;
    margin-bottom: 8px;
  }
  
  .price__discount-amount {
    font-size: 10px;
  }

  .price__box {
    border: 1px solid transparent;
    padding: 36px 0 30px;
  }
  
  .price__box::before {
    left: 45%;
  }

  .price__original {
    width: calc(151 / 354 * 100%);
  }
  
  .price__final {
    width: calc(185 / 354 * 100%);
  }

  .price__label {
    top: -7px;
    left: 0px;
    font-size: 8px;
  }
  
  .price__amount {
    font-size: 26px;
    text-shadow: -2px 2px 0px #E7E7E7;
  }
  
  .price__amount--gradation {
    font-size: 38px;
  }

  .price__amount--shadow {
    font-size: 38px;
    text-shadow: -2px 2px 0px #E7E7E7;
  }
  
  .price__amount--gradation::after {
    height: 5px;
    background: #F7FF00;
  }
  
  .price__currency {
    font-size: 16px;
    text-shadow: -2px 2px 0px #E7E7E7;
    transform: translateY(-2px);
  }
  
  .price__tax {
    font-size: 5px;
  }

  .price__arrow {
    left: 44%;
    width: 17px;
  }
  
  .price__note {
    font-size: 8px;
    margin-top: 8px;
  }
}

/* 受講までの流れ */
.flow .section__title {
  margin-bottom: 76px;
}

.flow__steps {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.flow__step {
  border-radius: 50%;
  border: 1px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%) border-box;
  box-shadow: -6px 6px 20px 0px #00000026;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
  gap: 12px;
}

.flow__step-img {
  width: 37px;
}

.flow__step-content {
  display: flex;
  align-items: center;
  height: 76px;
}

.flow__step-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.flow__steps .flow__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -44px;
  width: 44px;
  height: 1px;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 920px) {
  .flow__step {
    width: 150px;
    height: 150px;
  }  
}

@media (max-width: 768px) {
  .flow .section__title {
    margin-bottom: 40px;
  }
  
  .flow__steps {
    gap: 18px;
  }
  
  .flow__step {
    box-shadow: -4px 4px 15px 0px #00000026;
    width: 76px;
    height: 70px;
    gap: 2px;
    justify-content: flex-start;
    padding-top: 4px;
  }

  .flow__step-img {
    width: 21.67px;
  }
  
  .flow__step-content {
    height: 31.64px;
  }
  
  .flow__step-title {
    font-size: 14px;
    line-height: 1.1;
  }

  .flow__step-title-session {
    font-size: 12px;
  }
  
  .flow__steps .flow__step:not(:last-child)::after {
    right: -18px;
    width: 18px;
  }
}

/* よくあるご質問 */
.faq .section__inner {
  max-width: 860px;
}

.faq__item:not(:last-child) {
  margin-bottom: 32px;
}

.faq__question {
  display: flex;
  background: #1F057D;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  gap: 20px;
}

.faq__question:hover {
  background: #3A5BBC;
}

.faq__q {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  padding: 12px 16px;
}

.faq__question-text {
  padding: 16px 86px 16px 12px;
  line-height: 1.5;
  flex: 1;
  display: flex;
  align-items: center;
}

.faq__question::before,
.faq__question::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 16px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}

.faq__question::before {
  transform: rotate(90deg);
}

.faq__question.is-open::before {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  border: 1px solid #1F057D;
  border-top: none;
  font-size: 16px;
  line-height: 1.5;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__answer-box {
  display: flex;
  gap: 20px;
}

.faq__a {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 12px 16px;
  line-height: 1;
}

.faq__answer-text {
  padding: 16px 40px 16px 12px;
}

.faq__answer-list {
  margin-top: 16px;
}

.faq__answer-item:not(:last-child) {
  margin-bottom: 8px;
}

.faq__answer-link {
  color: #3F41BE;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq__item:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .faq__question {
    font-size: 14px;
    gap: 10px;
  }

  .faq__question:hover {
    background: #1F057D;
  }

  .faq__q {
    padding: 12px 15px;
  }
  
  .faq__question-text {
    padding: 10px 76px 10px 0px;
  }

  .faq__answer {
    font-size: 14px;
  }
  
  .faq__answer-box {
    gap: 10px;
  }
  
  .faq__a {
    padding: 12px 15px;
  }
  
  .faq__answer-text {
    padding: 10px 20px 10px 0px;
  }
  
  .faq__answer-list {
    margin-top: 10px;
  }
  
  .faq__answer-item:not(:last-child) {
    margin-bottom: 4px;
  }
}

/* フッター */
.footer {
  background: linear-gradient(270deg, #3F41BE 0%, #21C5B2 100%);
  padding: 80px 0 40px;
  color: #fff;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo {
  width: 114px;
  margin-bottom: 16px;
}

.footer__company {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.footer__address {
  font-weight: 500;
  line-height: 1.5;
}

.footer__right {
  text-align: right;
}

.footer__copyright {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
    text-align: center;
  }
  
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  
  .footer__logo {
    margin: 0 auto 40px;
  }

  .footer__right {
    text-align: right;
  }
  
  .footer__copyright {
    font-size: 14px;
  }
}