/* common */
html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP" !important;
}

#build-ai-academy {
  background: #f1f1f1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.tb-only {
  display: none;
}

@media (max-width: 600px) {
  .tb-only {
    display: block;
  }
}
.sp-only {
  display: none;
}

@media (max-width: 425px) {
  .sp-only {
    display: block;
  }
}
.cta-btn {
  display: block;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.cta-btn img {
  width: 265px;
  height: auto;
}
.cta-btn:hover {
  transform: scale(1.05);
  opacity: 0.5;
}
.cta-btn:active {
  transform: scale(0.98);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #5b1c1a;
}
.header.show {
  opacity: 1;
  visibility: visible;
}
.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
}
.header__inner__logo img {
  width: 155px;
  height: auto;
}
.header__inner__right {
  display: flex;
  align-items: center;
  gap: 54px;
}
.header__inner__ham {
  position: relative;
  z-index: 100;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__inner__ham span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__inner__ham span:nth-child(1) {
  top: 0;
}
.header__inner__ham span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__inner__ham span:nth-child(3) {
  bottom: 0;
}
.header__inner__ham.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__inner__ham.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.header__inner__ham.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header__menu {
  position: absolute;
  top: 0;
  right: -110vw;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/build-ai-academy/pc_nav.png);
  background-size: cover;
  transition: right 0.3s ease;
  z-index: 5;
}
.header__menu.active {
  right: 0;
}
.header__menu__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1156px;
  margin: 200px auto;
  padding: 0 24px;
}
.header__menu__inner__logo img {
  width: 294px;
  height: auto;
}
.header__menu__inner__list {
  list-style: disc;
  padding: 0;
  margin: 0;
  text-align: left;
  height: 420px;
  color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 24px;
}
.header__menu__inner__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
}
.header__menu__inner__link:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px;
}
@media (max-width: 1024px) {
  .header__menu__inner__logo {
    display: none;
  }
  .header__menu__inner__list {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .header__menu__inner {
    margin: 80px auto;
  }
  .header__menu__inner__list {
    flex-wrap: nowrap;
    gap: 24px;
  }
}
@media (max-width: 425px) {
  .header__menu {
    background-image: url(../images/build-ai-academy/sp_nav.png);
  }
  .header__menu__inner {
    margin: 64px auto;
  }
  .header__menu__inner__list {
    margin: 0 auto;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding: 24px 40px;
  }
}
@media (max-width: 600px) {
  .header__inner {
    padding: 14px 40px;
  }
  .header__inner__logo img {
    width: 120px;
  }
}
@media (max-width: 425px) {
  .header__inner {
    padding: 14px 24px;
  }
  .header__inner__logo img {
    width: 105px;
  }
}

.section__fv {
  background-image: url(../images/build-ai-academy/pc_fv-bg.png);
  background-size: cover;
}
.section__fv__inner {
  position: relative;
  padding: 22px 40px 80px;
}
.section__fv__inner__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section__fv__inner__top__logo img {
  width: 155px;
  height: auto;
}
.section__fv__inner__top__btn img {
  width: 200px;
  height: auto;
}
.section__fv__inner__img img {
  width: 100%;
  height: auto;
  padding: 0 40px;
}
.section__fv__inner__btn {
  display: block;
  position: absolute;
  bottom: 80px;
  left: 80px;
}
@media (max-width: 1024px) {
  .section__fv__inner__btn {
    bottom: 40px;
    left: 40px;
  }
}
@media (max-width: 768px) {
  .section__fv {
    background-image: url(../images/build-ai-academy/tb_fv-bg.png);
  }
  .section__fv__inner {
    position: static;
    padding: 32px 40px 40px;
  }
  .section__fv__inner__btn {
    position: static;
    margin: 24px auto 0;
  }
}
@media (max-width: 600px) {
  .section__fv__inner {
    padding: 14px 40px 40px;
  }
  .section__fv__inner__top__logo img {
    width: 120px;
  }
}
@media (max-width: 425px) {
  .section__fv {
    background-image: url(../images/build-ai-academy/sp_fv-bg.png);
  }
  .section__fv__inner {
    padding: 14px 24px 24px;
  }
  .section__fv__inner__top__logo img {
    width: 111px;
  }
  .section__fv__inner__top__btn img {
    width: 120px;
  }
  .section__fv__inner__btn {
    display: none;
  }
}

.section__question {
  background-image: url(../images/build-ai-academy/pc_question-bg.png);
  background-size: cover;
}
.section__question__inner {
  max-width: 953px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section__question__inner__img {
  width: 100%;
  height: auto;
}
.section__question__inner__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__question {
    background-image: url(../images/build-ai-academy/tb_question-bg.png);
  }
  .section__question__inner {
    padding: 80px 40px;
  }
}
@media (max-width: 480px) {
  .section__question {
    background-image: url(../images/build-ai-academy/sp_question-bg.png);
  }
  .section__question__inner {
    padding: 64px 24px;
  }
}

.section__feature {
  background-image: url(../images/build-ai-academy/pc_feature-bg.png);
  background-size: cover;
}
.section__feature__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section__feature__inner__exc {
  margin-bottom: 120px;
}
.section__feature__inner__exc__title {
  display: block;
  width: 58.5%;
  height: auto;
  margin: 0 auto;
}
.section__feature__inner__exc__title__img img {
  width: 100%;
  height: auto;
}
.section__feature__inner__exc__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 64px auto 80px;
}
.section__feature__inner__exc__items__item img {
  width: 100%;
  height: auto;
}
.section__feature__inner__exc__btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 265px;
  height: auto;
}
.section__feature__inner__exc__btn img {
  width: 100%;
  height: auto;
}
.section__feature__inner__learn__title {
  display: block;
  width: 47.75%;
  height: auto;
  margin: 0 auto;
}
.section__feature__inner__learn__title__img img {
  width: 100%;
  height: auto;
}
.section__feature__inner__learn__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 64px auto 48px;
}
.section__feature__inner__learn__contents__item img {
  width: 100%;
  height: auto;
}
.section__feature__inner__learn__text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 155.556%;
  text-align: center;
  margin-bottom: 52px;
}
.section__feature__inner__learn__text-img {
  display: none;
}
.section__feature__inner__learn__btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 265px;
  height: auto;
}
.section__feature__inner__learn__btn img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__feature {
    background-image: url(../images/build-ai-academy/tb_feature-bg.png);
  }
  .section__feature__inner {
    padding: 80px 80px;
  }
  .section__feature__inner__exc__title {
    width: 100%;
  }
  .section__feature__inner__exc__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin: 48px auto 64px;
  }
  .section__feature__inner__learn__title {
    width: 76%;
  }
  .section__feature__inner__learn__contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 48px auto 32px;
  }
  .section__feature__inner__learn__text {
    display: none;
  }
  .section__feature__inner__learn__text-img {
    display: block;
    margin: 0 auto;
    width: 74.6%;
    margin-bottom: 40px;
  }
  .section__feature__inner__learn__text-img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 600px) {
  .section__feature__inner {
    padding: 64px 40px;
  }
}
@media (max-width: 480px) {
  .section__feature {
    background-image: url(../images/build-ai-academy/sp_feature-bg.png);
  }
  .section__feature__inner {
    padding: 64px 24px;
  }
  .section__feature__inner__exc__items {
    margin: 40px auto 48px;
  }
  .section__feature__inner__learn__title {
    width: 91%;
  }
  .section__feature__inner__learn__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin: 40px auto 24px;
  }
  .section__feature__inner__learn__text {
    display: block;
    font-size: 14px;
    line-height: 171.429%;
    margin-bottom: 24px;
  }
  .section__feature__inner__learn__text-img {
    display: none;
  }
}

.section__contents {
  background-image: url(../images/build-ai-academy/pc_contents-bg.png);
  background-size: cover;
}
.section__contents__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 80px 24px 78px;
}
.section__contents__inner__title {
  display: block;
  max-width: 586px;
  width: 100%;
  height: auto;
  margin: 0 auto 64px;
}
.section__contents__inner__title__img img {
  width: 100%;
  height: auto;
}
.section__contents__inner__text {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.section__contents__inner__text--movie {
  max-width: 502px;
  width: 100%;
}
.section__contents__inner__text--list {
  max-width: 228px;
  width: 100%;
}
.section__contents__inner__text__img img {
  width: 100%;
  height: auto;
}
.section__contents__inner__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 48px auto 120px;
}
.section__contents__inner__contents__item {
  cursor: pointer;
}
.section__contents__inner__contents__item:hover {
  opacity: 0.8;
}
.section__contents__inner__contents__item:active {
  opacity: 0.6;
}
.section__contents__inner__contents__item img {
  width: 100%;
  height: auto;
}
.section__contents__inner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: center;
  padding: 0 133px;
  margin: 48px auto 0;
}
.section__contents__inner__list__item {
  width: calc((100% - 26px) / 3);
}
.section__contents__inner__list__item img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .section__contents__inner__list {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .section__contents {
    background-image: url(../images/build-ai-academy/tb_contents-bg.png);
  }
  .section__contents__inner {
    max-width: 640px;
    padding: 80px 24px 78px;
  }
  .section__contents__inner__title {
    max-width: 530px;
    width: 100%;
  }
  .section__contents__inner__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 428px;
  }
  .section__contents__inner__list {
    gap: 8px;
    padding: 0;
  }
  .section__contents__inner__list__item {
    width: calc((100% - 8px) / 2);
  }
}
@media (max-width: 480px) {
  .section__contents {
    background-image: url(../images/build-ai-academy/sp_contents-bg.png);
  }
  .section__contents__inner__list {
    gap: 8px;
  }
  .section__contents__inner__list__item {
    width: 100%;
  }
}

.section__plan {
  background-image: url(../images/build-ai-academy/pc_plan-bg.png);
  background-size: cover;
}
.section__plan__detail {
  max-width: 1248px;
  margin: 0 auto;
  padding: 80px 24px 160px;
}
.section__plan__detail__title__img {
  display: block;
  margin: 0 auto;
  width: 466px;
  height: auto;
}
.section__plan__detail__title__img img {
  width: 100%;
  height: auto;
}
.section__plan__detail__contents {
  margin-top: 64px;
}
.section__plan__detail__contents__item {
  width: 100%;
  height: auto;
}
.section__plan__detail__contents__item img {
  width: 100%;
  height: auto;
}
.section__plan__detail__small {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: end;
  margin-top: 16px;
}
.section__plan__detail__scroll {
  display: none;
}
@media (max-width: 768px) {
  .section__plan__detail {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 108px;
  }
  .section__plan__detail__title__img {
    width: 62%;
  }
  .section__plan__detail__contents {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .section__plan__detail__contents__item {
    display: inline-block;
    width: 1200px;
    height: auto;
    vertical-align: top;
    white-space: normal;
  }
  .section__plan__detail__contents__item img {
    width: 100%;
    height: auto;
  }
  .section__plan__detail__small {
    display: none;
  }
  .section__plan__detail__scroll {
    display: block;
    margin: 24px auto 0;
    text-align: center;
  }
  .section__plan__detail__scroll img {
    width: 194px;
    height: auto;
  }
}
@media (max-width: 375px) {
  .section__plan__detail {
    padding: 64px 24px 128px;
  }
  .section__plan__detail__contents {
    margin-top: 40px;
  }
  .section__plan__detail__contents__item {
    width: 717px;
  }
}
.section__plan__compare {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0;
}
.section__plan__compare__title__img {
  display: block;
  margin: 0 auto;
  width: 430px;
  height: auto;
}
.section__plan__compare__title__img img {
  width: 100%;
  height: auto;
}
.section__plan__compare__contents {
  padding-top: 64px;
}
.section__plan__compare__contents__item {
  display: block;
  width: 100%;
  height: auto;
}
.section__plan__compare__contents__item img {
  width: 100%;
  height: auto;
}
.section__plan__compare__scroll {
  display: none;
}
@media (max-width: 768px) {
  .section__plan__compare {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 0;
  }
  .section__plan__compare__title__img {
    width: 65%;
  }
  .section__plan__compare__contents {
    padding-top: 48px;
  }
}
@media (max-width: 480px) {
  .section__plan__compare {
    padding: 0 24px 0;
  }
  .section__plan__compare__title__img {
    width: 220px;
  }
  .section__plan__compare__contents {
    margin-top: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .section__plan__compare__contents__item {
    display: inline-block;
    width: 608px;
    height: auto;
    vertical-align: top;
    white-space: normal;
  }
  .section__plan__compare__scroll {
    display: block !important;
    margin: 24px auto 0;
    text-align: center;
  }
  .section__plan__compare__scroll img {
    width: 192px;
    height: auto;
  }
}
.section__plan__system {
  max-width: 928px;
  margin: 0 auto;
  padding: 160px 24px 90px;
}
.section__plan__system__title__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.section__plan__system__title__img img {
  width: 100%;
  height: auto;
}
.section__plan__system__small {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 64px;
}
.section__plan__system__contents {
  padding-top: 64px;
}
.section__plan__system__contents__item {
  display: block;
  width: 100%;
  height: auto;
}
.section__plan__system__contents__item img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__plan__system {
    max-width: 720px;
    margin: 0 auto;
    padding: 160px 24px 80px;
  }
  .section__plan__system__title__img {
    width: 100%;
  }
  .section__plan__system__small {
    margin-top: 48px;
  }
  .section__plan__system__contents {
    padding-top: 48px;
  }
}
@media (max-width: 600px) {
  .section__plan__system {
    padding: 128px 40px 64px;
  }
  .section__plan__system__small {
    margin-top: 48px;
  }
}
@media (max-width: 375px) {
  .section__plan__system {
    padding: 128px 0 64px;
  }
  .section__plan__system__title__img {
    width: 100%;
  }
  .section__plan__system__small {
    font-size: 16px;
    line-height: 150%;
  }
  .section__plan__system__contents {
    margin-top: 40px;
    padding: 0 16px;
  }
  .section__plan__system__contents__item {
    width: 100%;
    height: auto;
  }
}

.section__jhap {
  background-image: url(../images/build-ai-academy/pc_jhap-bg.png);
  background-size: cover;
}
.section__jhap__inner {
  max-width: 1016px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section__jhap__inner__title__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.section__jhap__inner__title__img img {
  width: 100%;
  height: auto;
}
.section__jhap__inner__text {
  margin-top: 64px;
  margin-bottom: 64px;
}
.section__jhap__inner__text__img {
  display: block;
  margin: 0 auto;
  width: 450px;
  height: auto;
}
.section__jhap__inner__text__img img {
  width: 100%;
  height: auto;
}
.section__jhap__inner__btn {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.section__jhap__inner__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.section__jhap__inner__btn:active {
  transform: translateY(0);
}
.section__jhap__inner__btn__img {
  display: block;
  margin: 0 auto;
  width: 712px;
  height: auto;
}
.section__jhap__inner__btn__img img {
  width: 100%;
  height: auto;
}
.section__jhap__inner__img {
  display: block;
  margin: 0 auto;
  width: 712px;
  height: auto;
}
.section__jhap__inner__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__jhap {
    background-image: url(../images/build-ai-academy/tb_jhap-bg.png);
  }
  .section__jhap__inner {
    max-width: 696px;
    margin: 0 auto;
    padding: 80px 24px;
  }
  .section__jhap__inner__text {
    max-width: 498px;
    margin: 0 auto;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .section__jhap__inner__text__img {
    width: 100%;
  }
  .section__jhap__inner__btn {
    max-width: 528px;
    margin: 0 auto;
  }
  .section__jhap__inner__btn__img {
    width: 100%;
  }
  .section__jhap__inner__img {
    max-width: 528px;
    width: 100%;
    margin: 0 auto;
  }
  .section__jhap__inner__img__img {
    width: 100%;
  }
  .section__jhap__inner__img__img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 425px) {
  .section__jhap {
    background-image: url(../images/build-ai-academy/sp_jhap-bg.png);
  }
  .section__jhap__inner {
    padding: 64px 24px;
  }
  .section__jhap__inner__title {
    padding: 0 14px;
  }
  .section__jhap__inner__title__img {
    width: 100%;
  }
  .section__jhap__inner__text {
    padding: 0 36px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section__jhap__inner__text__img {
    width: 100%;
  }
  .section__jhap__inner__btn__img {
    width: 100%;
  }
  .section__jhap__inner__img {
    width: 100%;
  }
}

.section__cta {
  background-image: url(../images/build-ai-academy/pc_cta-bg.png);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.section__cta__inner {
  max-width: 1248px;
  padding: 80px 24px 80px;
  margin-left: auto;
}
.section__cta__inner__title {
  display: block;
  width: 579px;
  height: auto;
}
.section__cta__inner__title img {
  width: 100%;
  height: auto;
}
.section__cta__inner__btn {
  display: block;
  margin-top: 64px;
  transition: transform 0.2s ease;
  cursor: pointer;
  width: 265px;
  height: auto;
}
.section__cta__inner__btn a {
  display: block;
  text-decoration: none;
}
.section__cta__inner__btn a img {
  width: 265px;
  height: auto;
}
.section__cta__inner__btn:hover {
  transform: scale(1.05);
  opacity: 0.5;
}
.section__cta__inner__btn:active {
  transform: scale(0.98);
}
@media (max-width: 1024px) {
  .section__cta__inner__title {
    width: 451px;
  }
}
@media (max-width: 768px) {
  .section__cta {
    background-image: url(../images/build-ai-academy/tb_cta-bg.png);
    background-size: cover;
    background-position: right center;
    height: 372px;
  }
  .section__cta__inner {
    padding: 56px 24px;
  }
  .section__cta__inner__title {
    width: 451px;
  }
}
@media (max-width: 600px) {
  .section__cta__inner__title {
    width: 322px;
  }
}
@media (max-width: 425px) {
  .section__cta {
    background-image: url(../images/build-ai-academy/sp_cta-bg.png);
    background-size: cover;
    background-position: right center;
    height: auto;
  }
  .section__cta__inner {
    padding: 32px 24px;
    margin: 0 auto;
  }
  .section__cta__inner__title {
    width: 322px;
    margin: 0 auto;
  }
  .section__cta__inner__btn {
    display: block;
    margin: 0 auto;
    margin-top: 117px;
    text-align: center;
  }
  .section__cta__inner__btn a {
    display: inline-block;
  }
}

.section__company {
  background-image: url(../images/build-ai-academy/pc_company-bg.png);
  background-size: cover;
}
.section__company__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1248px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section__company__inner__title {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 64px;
}
.section__company__inner__title__img img {
  width: 100%;
  height: auto;
}
.section__company__inner__title--about, .section__company__inner__title--achieve {
  max-width: 620px;
}
.section__company__inner__title--feature {
  max-width: 712px;
}
.section__company__inner__text {
  display: block;
  max-width: 546px;
  width: 100%;
  height: auto;
}
.section__company__inner__text__img img {
  width: 100%;
  height: auto;
}
.section__company__inner__sho-san {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-top: 64px;
  margin-bottom: 32px;
}
.section__company__inner__sho-san img {
  width: 100%;
  height: auto;
}
.section__company__inner__about, .section__company__inner__achieve {
  display: block;
  max-width: 928px;
  width: 100%;
  height: auto;
  margin-bottom: 160px;
}
.section__company__inner__about__img img, .section__company__inner__achieve__img img {
  width: 100%;
  height: auto;
}
.section__company__inner__feature {
  display: block;
  max-width: 1248px;
  width: 100%;
  height: auto;
}
.section__company__inner__feature__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__company__inner__title {
    margin-bottom: 48px;
  }
  .section__company__inner__title--about, .section__company__inner__title--achieve {
    max-width: 558px;
  }
  .section__company__inner__title--feature {
    max-width: 628px;
  }
  .section__company__inner__text {
    max-width: 498px;
  }
  .section__company__inner__sho-san {
    margin-top: 72px;
  }
  .section__company__inner__about {
    max-width: 656px;
  }
  .section__company__inner__achieve {
    max-width: 478px;
  }
  .section__company__inner__feature {
    max-width: 528px;
  }
}
@media (max-width: 425px) {
  .section__company__inner__title {
    margin-bottom: 40px;
  }
  .section__company__inner__title--about, .section__company__inner__title--achieve {
    max-width: 356px;
  }
  .section__company__inner__title--feature {
    max-width: 300px;
  }
  .section__company__inner__text {
    max-width: 304px;
  }
  .section__company__inner__sho-san {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.section__voice {
  background-image: url(../images/build-ai-academy/pc_voice-bg.png);
  background-size: cover;
}
.section__voice__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__voice__inner__title {
  display: block;
  max-width: 514px;
  width: 100%;
  height: auto;
  margin-bottom: 64px;
}
.section__voice__inner__title__img img {
  width: 100%;
  height: auto;
}
.section__voice__inner__contents {
  display: block;
  width: 100%;
  height: auto;
}
.section__voice__inner__contents__item img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section__voice__inner__title {
    max-width: 474px;
    margin-bottom: 48px;
  }
  .section__voice__inner__contents {
    max-width: 526px;
  }
}

.section__form {
  background-color: #E8D9D9;
}
.section__form__inner {
  max-width: 848px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section__form__inner__title {
  display: block;
  padding: 0 40px;
  margin-bottom: 80px;
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .section__form__inner__title {
    padding: 0 24px;
  }
}
.section__form__inner__title__img {
  display: block;
  width: 100%;
  height: auto;
}
.section__form__inner__title__img img {
  width: 100%;
  height: auto;
}
.section__form__inner__span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  text-align: center;
}
@media (max-width: 768px) {
  .section__form__inner__span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .section__form__inner__span {
    font-size: 12px;
  }
}
.section__form__inner .wpcf7 {
  margin-top: 80px;
}
@media (max-width: 480px) {
  .section__form__inner .wpcf7 {
    margin-top: 40px;
  }
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt .section-form-privacy {
  background-color: #fff;
  height: 200px;
  overflow-y: auto;
  letter-spacing: 0.08em;
  padding: 15px;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt .section-form-privacy {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt .section-form-privacy {
    font-size: 12px;
  }
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix {
    display: block;
  }
  .section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix .form-common__inner--cnt--left {
    margin-bottom: 24px;
  }
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix li {
  display: flex;
  gap: 56px;
  width: 100%;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix li .form-common__inner--cnt--left {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix li .form-common__inner--cnt--left .form-common__inner--label {
  display: block;
  background-color: #9F9F9F;
  color: #fff;
  padding: 2px 28px;
  margin-right: 20px;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix li .form-common__inner--cnt--left .form-common__inner--label.label-required {
  background-color: #390A09;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--cnt ul.clearfix li .form-common__inner--cnt--right {
  flex: 1;
  width: 100%;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy .section-form-privacy {
  background-color: #fff;
  height: 200px;
  overflow-y: auto;
  padding: 15px;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy .section-form-privacy__cnt {
  letter-spacing: 0.08em;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy .section-form-privacy__cnt h2 {
  font-size: 16px;
  margin-bottom: 14px;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy .section-form-privacy__cnt h3 {
  font-size: 16px;
  margin-bottom: 14px;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy .section-form-privacy__cnt p {
  font-size: 14px;
  margin-bottom: 20px;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--privacy--check {
  margin-top: 32px;
  text-align: center;
}
.section__form__inner .wpcf7 .wpcf7-form .form-common__inner--btn {
  margin-top: 40px;
  text-align: center;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap {
  margin-bottom: 24px;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=text],
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=email],
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=tel],
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=text]:focus,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=email]:focus,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=tel]:focus,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select:focus,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #390A09;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=email]::-moz-placeholder, .section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=tel]::-moz-placeholder, .section__form__inner .wpcf7 .wpcf7-form-control-wrap select::-moz-placeholder, .section__form__inner .wpcf7 .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #d5d5d5;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=text]::placeholder,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=email]::placeholder,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap input[type=tel]::placeholder,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select::placeholder,
.section__form__inner .wpcf7 .wpcf7-form-control-wrap textarea::placeholder {
  color: #d5d5d5;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap textarea {
  min-height: 144px;
  resize: vertical;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select {
  border: none;
  color: #d5d5d5;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select option {
  color: #333;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select:not([value=""]) {
  color: #333;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap select:focus {
  color: #333;
}
.section__form__inner .wpcf7 .wpcf7-form-control-wrap.wpcf7-not-valid-tip {
  display: none !important;
}
.section__form__inner .wpcf7 .wpcf7-not-valid-tip {
  display: none !important;
}
.section__form__inner .wpcf7 .wpcf7-submit {
  display: block;
  margin: 0 auto;
  background-color: #390A09;
  color: #fff;
  border: none;
  padding: 14px 184px;
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section__form__inner .wpcf7 .wpcf7-submit:hover {
  background-color: #2a0807;
  transform: translateY(-2px);
}
.section__form__inner .wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .section__form__inner .wpcf7 .wpcf7-submit {
    width: 100%;
    padding: 14px 0;
  }
}
.section__form__inner .wpcf7-response-output {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}
.section__form__inner .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.section__form__inner .wpcf7-response-output.wpcf7-validation-errors {
  display: none;
}

.footer {
  background-color: #390A09;
  color: #fff;
}
.footer__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 64px 24px;
}
.footer__inner__main {
  display: grid;
  grid-template-columns: 1fr 240px 282px;
  padding-bottom: 64px;
  border-bottom: 1px solid #fff;
  gap: 80px;
}
.footer__inner__main__logo {
  display: block;
  width: 155px;
  height: auto;
}
.footer__inner__main__logo img {
  width: 100%;
  height: auto;
}
.footer__inner__main__baa__title {
  font-size: 18px;
  line-height: 155.556%;
  margin-bottom: 14px;
}
.footer__inner__main__baa__text {
  font-size: 14px;
  line-height: 142.857%;
}
.footer__inner__main__company__title {
  font-size: 18px;
  line-height: 155.556%;
  margin-bottom: 14px;
}
.footer__inner__main__company__text {
  font-size: 14px;
  line-height: 142.857%;
}
.footer__inner__copy {
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .footer__inner__main {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 56px 80px 24px;
  }
  .footer__inner__main {
    display: block;
    padding-bottom: 80px;
  }
  .footer__inner__main__logo {
    margin: 0 auto 64px;
  }
  .footer__inner__main__baa {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .footer__inner {
    padding: 40px 24px;
  }
  .footer__inner__main {
    padding-bottom: 72px;
  }
  .footer__inner__main__logo {
    margin-bottom: 48px;
  }
  .footer__inner__main__baa {
    margin-bottom: 56px;
  }
  .footer__inner__copy {
    font-size: 10px;
  }
}

.section__cta-fix {
  position: fixed;
  z-index: 3;
  bottom: 16px;
  right: 16px;
}
.section__cta-fix__inner__btn {
  display: block;
  text-align: center;
}
.section__cta-fix__inner__btn a {
  display: block;
  text-decoration: none;
}
.section__cta-fix__inner__btn a img {
  width: 210px;
  height: auto;
}
@media (max-width: 425px) {
  .section__cta-fix {
    bottom: 0;
    right: 0;
    z-index: 300;
  }
  .section__cta-fix__inner__btn a img {
    width: 100%;
  }
}/*# sourceMappingURL=page-build-ai-academy.css.map */