@charset "UTF-8";
/* ページ全体のドットパターン背景 */
body {
  background-color: #fff;
}

/* SP専用の要素表示制御 */
.sp-only {
  display: none;
}

@media (max-width: 750px) {
  .sp-only {
    display: inline;
  }
}
.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
  background-image: radial-gradient(#00a89d 3.3333333333%, transparent 3.3333333333%);
  background-position: left 30px bottom 30px;
  background-repeat: repeat;
  background-size: 50px 50px;
  position: relative;
}

.skillup-ai-sections {
  position: relative;
  margin: 0 auto;
}

/* シンプルヘッダー */
.simple-header {
  padding: 20px 0;
}
@media (max-width: 750px) {
  .simple-header {
    padding: 15px 0;
  }
}

.simple-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 750px) {
  .simple-header__inner {
    padding: 0 20px;
  }
}

.simple-header__logo {
  width: 224px;
}
.simple-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 750px) {
  .simple-header__logo {
    max-width: 180px;
  }
}

/* お問い合わせ完了ページ専用スタイル */
.skillup-ai-s-contactComplete {
  padding: 0 0 50px 0;
  position: relative;
}
@media (max-width: 750px) {
  .skillup-ai-s-contactComplete {
    padding: 35px 0;
  }
  .skillup-ai-s-contactComplete .s-contactComplete__cont {
    padding: 0 20px;
  }
}

.s-contactComplete__cont {
  max-width: 800px;
  margin: 0 auto;
}

.skillup-ai-s-contactComplete .tit {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #303030;
}
@media (max-width: 750px) {
  .skillup-ai-s-contactComplete .tit {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

.skillup-ai-s-contactComplete__message {
  margin-top: 30px;
  line-height: 1.7;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.skillup-ai-s-contactComplete__message p {
  margin-bottom: 0;
}
.skillup-ai-s-contactComplete__message a {
  color: #0b8871;
  font-weight: bold;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.skillup-ai-s-contactComplete__message a:hover {
  opacity: 0.7;
}
@media (max-width: 750px) {
  .skillup-ai-s-contactComplete__message {
    font-size: 1.6rem;
  }
}

/* 箇条書きスタイル */
.skillup-ai-s-contactComplete__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}
.skillup-ai-s-contactComplete__list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #1b1b1b;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  /* 青緑色の丸マーク */
}
.skillup-ai-s-contactComplete__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background-color: #0b8871;
  border-radius: 50%;
}
.skillup-ai-s-contactComplete__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .skillup-ai-s-contactComplete__list li {
    font-size: 1.5rem;
  }
}

/* ご一緒にいかがですか? セクション */
.skillup-ai-s-together {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .skillup-ai-s-together {
    padding: 0 24px 35px;
  }
  .skillup-ai-s-together .s-together__inner {
    padding: 0 20px;
  }
}

.s-together__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  z-index: 1;
}

.s-together__box {
  background-color: #fff;
  padding: 60px 60px 40px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}
@media (max-width: 750px) {
  .s-together__box {
    padding: 35px 20px;
    gap: 30px;
  }
}

/* 下部：画像とコンテンツを横並び */
.s-together__bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .s-together__bottom {
    flex-direction: column;
    gap: 30px;
    margin-top: 0;
  }
}

/* 左側の装飾SVG */
.s-together__decoration {
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 2;
}
@media (max-width: 750px) {
  .s-together__decoration {
    display: none;
  }
}

.s-together__images {
  flex: 0 0 280px;
  position: relative;
  height: auto;
}
@media (max-width: 750px) {
  .s-together__images {
    flex: none;
    width: 100%;
  }
}

.s-together__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.s-together__content {
  flex: 1;
}

.s-together__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.s-together__icon {
  width: 20px;
  height: 20px;
  background-image: url(https://green-transformation.jp/img/common/deco_together.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.s-together__heading {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0b8871;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
}
@media (max-width: 750px) {
  .s-together__heading {
    font-size: 2rem;
  }
}

.s-together__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #303030;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media (max-width: 750px) {
  .s-together__title {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.s-together__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.s-together__text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 1em 0;
}
.s-together__text li {
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  .s-together__text {
    font-size: 1.6rem;
    margin: 20px 0 20px 0;
  }
}

/* ボタンエリア */
.s-together__buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .s-together__buttons {
    justify-content: center;
  }
}
.s-together__buttons .skillup-ai-c-button {
  max-width: 320px;
  width: 320px;
  flex: none;
}
@media (max-width: 750px) {
  .s-together__buttons .skillup-ai-c-button {
    width: 100%;
    max-width: 100%;
  }
}
.s-together__buttons .skillup-ai-c-button a {
  background: linear-gradient(90deg, #0b8871, #0d9a8a);
  color: #fff;
  opacity: 1;
}
.s-together__buttons .skillup-ai-c-button a:hover {
  opacity: 1;
  background: linear-gradient(90deg, #0d9a8a, #0b8871);
}
.s-together__buttons .skillup-ai-c-button a:hover::after {
  right: 10px;
}
.s-together__buttons .skillup-ai-c-button.-wh a {
  color: #0b8871;
}
.s-together__buttons .skillup-ai-c-button.-wh a:hover {
  background-color: #f6f6f6;
  color: #0b8871;
}

/* 申し込み受付中のセミナー セクション */
.skillup-ai-s-seminar {
  padding: 50px 0;
  position: relative;
  /* 外部CSSの::before疑似要素を無効化 */
}
.skillup-ai-s-seminar::before {
  display: none !important;
}
@media (max-width: 750px) {
  .skillup-ai-s-seminar {
    padding: 0 0 35px;
  }
}

.s-seminar__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 750px) {
  .s-seminar__inner {
    padding: 0 30px;
  }
}

.s-seminar__title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #303030;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .s-seminar__title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.s-seminar__cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  /* 2件の場合のセンター揃え */
}
.s-seminar__cards.-center {
  justify-content: center;
}
@media (max-width: 750px) {
  .s-seminar__cards {
    flex-direction: column;
    gap: 28px;
  }
}

.s-seminar__card {
  flex: 0 1 calc(33.333% - 20px);
  max-width: 380px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .s-seminar__card {
    flex: none;
    max-width: 100%;
  }
}

.s-seminar__card-image {
  width: 100%;
  height: auto;
  display: block;
}

.s-seminar__card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.s-seminar__card-description {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: #1b1b1b;
  letter-spacing: 0.045em;
  margin-bottom: 20px;
  flex: 1;
}

.s-seminar__card-button {
  margin-top: auto;
  display: flex;
  justify-content: center;
}
.s-seminar__card-button .skillup-ai-c-button {
  width: 235px;
  max-width: 235px;
  min-height: 55px;
}
.s-seminar__card-button .skillup-ai-c-button a {
  background: linear-gradient(90deg, #07c849, #2dd865);
  font-size: 1.6rem;
  color: #fff;
  opacity: 1;
}
.s-seminar__card-button .skillup-ai-c-button a:hover {
  opacity: 1;
  background: linear-gradient(90deg, #2dd865, #07c849);
}
.s-seminar__card-button .skillup-ai-c-button a:hover::after {
  right: 10px;
}

/* バナーセクション */
.skillup-ai-s-banner {
  padding: 0 0 50px 0;
  position: relative;
}
@media (max-width: 750px) {
  .skillup-ai-s-banner {
    padding: 0 0 35px 0;
  }
}

.s-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 750px) {
  .s-banner__inner {
    padding: 0 15px;
  }
}

.s-banner__list {
  display: flex;
  gap: 97px;
  justify-content: center;
  /* 1件の場合のセンター揃え */
}
.s-banner__list.-center {
  justify-content: center;
}
@media (max-width: 750px) {
  .s-banner__list {
    flex-direction: column;
    gap: 35px;
  }
}

.s-banner__item {
  flex: 0 1 calc(50% - 14px);
  max-width: 486px;
}
@media (max-width: 750px) {
  .s-banner__item {
    flex: none;
    max-width: 100%;
  }
}

.s-banner__link {
  display: block;
  transition: opacity 0.3s ease;
}
.s-banner__link:hover {
  opacity: 0.8;
}

.s-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

/* 導入事例紹介 セクション */
.skillup-ai-s-successStories {
  padding: 50px 0 100px;
  position: relative;
}
@media (max-width: 750px) {
  .skillup-ai-s-successStories {
    padding: 0 0 86px 0;
  }
}

.s-successStories__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 750px) {
  .s-successStories__inner {
    padding: 0 30px;
  }
}

.s-successStories__title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #303030;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .s-successStories__title {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

.s-successStories__cards {
  display: flex;
  gap: 28px;
  justify-content: center;
}
@media (max-width: 750px) {
  .s-successStories__cards {
    flex-direction: column;
  }
}

.s-successStories__card {
  flex: 0 1 calc(33.333% - 19px);
  max-width: 320px;
  /* hover時もtext部分の色を変えない */
}
@media (max-width: 750px) {
  .s-successStories__card {
    flex: none;
    max-width: 100%;
  }
}
.s-successStories__card .post-logo {
  height: 125px;
  padding: 15px;
  margin-top: -30px;
  margin-bottom: -30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-successStories__card .post-logo img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}
.s-successStories__card .c-card__detail {
  padding: 12px;
}
@media (min-width: 769px) {
  .s-successStories__card .c-card__detail {
    padding: 12px;
  }
}
.s-successStories__card .c-card__title {
  border-top: 0.5px solid #969696;
  padding-top: 10px;
  text-align: center;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-successStories__card .c-card__text {
  line-height: 1.8;
  margin-top: 12px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #333;
}
.s-successStories__card .skillup-ai-c-card:hover .c-card__text {
  color: #333;
}

/* シンプルフッター */
.simple-footer {
  padding: 0;
}

.simple-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: right;
  background-color: #0b8871;
}
@media (max-width: 750px) {
  .simple-footer__inner {
    padding: 20px;
  }
}

.simple-footer__copyright {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
}

/*# sourceMappingURL=page-contact-complete.css.map */
