/*
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
A-LINE株式会社
採用LP　スタイルシート
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/


/* ===== 共通設定 ===== */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}


/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
  animation: heroFadeUp 1.4s ease-out both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 720px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}


/* ===== ヒーロータイトル：ぼんやり出てくる ===== */
.hero-title span {
  position: relative;
  display: inline-block;

  color: #6ec1e4;
  opacity: 0;
  filter: blur(6px);

  animation: textFadeIn 1.8s ease-out forwards;
  animation-delay: 0.6s;
}


@keyframes textFadeIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}



/* ===== ヒーロータイトル：下線 ===== */
.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;
  background-color: #6ec1e4;

  animation: underlineDraw 1.2s ease-out forwards;
  animation-delay: 2.5s;
}

@keyframes underlineDraw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}



/* ===== ヒーローセクション：スクロール ===== */

.hero::after {
  content: "SCROLL";
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 12px;
  height: 12px;
  border-left: 2px solid rgba(255,255,255,0.8);
  border-bottom: 2px solid rgba(255,255,255,0.8);
  transform: translateX(-50%) rotate(-45deg);
  animation: scrollArrow 1.8s infinite;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px) rotate(-45deg);
  }
}

/* ポイント表示 */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.hero-points span {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* CTAボタン */
.hero-button {
  display: inline-block;
  background-color: #2a8fbd;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #237aa1;
}

/* ===== ヒーローセクション　Responsive ===== */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero::after {
    font-size: 11px;
    bottom: 24px;
  }

  .hero::before {
    bottom: 8px;
  }
}


/* ===== 熱量セクション全体 ===== */
.section-passion {
  background-color: #f4f3f1;
}

/* ===== タイトル ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 72px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2a25;
}

.section-title span {
  color: #c04b3a; /* 既存色は維持 */
}



/* ===== 各ブロック（カード） ===== */
.passion-block {
  background-color: #ffffff;
  padding: 36px 36px;
  margin-bottom: 64px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* 遊び①：カード左上の静かなアクセント */
.passion-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #5e7c6a;
  border-radius: 12px 0 0 12px;
  opacity: 0.9;
}

/* 見出し */
.passion-heading {
  font-size: 22px;
  margin-bottom: 28px;
  color: #2f2a25;
  line-height: 1.6;
  font-weight: 700;
}

/* 本文 */
.passion-block p {
  font-size: 16px;
  line-height: 1.9;
  color: #3f3a34;
  margin-bottom: 20px;
}

/* 強調文（重要ポイント） */
.emphasis {
  margin-top: 28px;
  padding: 20px 22px;
  background-color: #f6f8f7;
  border-left: 0px solid #5e7c6a;
  font-weight: 600;
  color: #2f2a25;
  border-radius: 6px;
}

/* strongタグも少しだけ主張させる */
.passion-block strong {
  background: linear-gradient(transparent 60%, rgba(94, 124, 106, 0.25) 60%);
  font-weight: 600;
}

/* ===== 写真 ===== */
.section-photo {
  margin: 48px 0 72px;
}

.section-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 56px;
  }

  .passion-heading {
    font-size: 20px;
  }

  .passion-block {
    padding: 28px 24px;
  }

  .passion-block p {
    font-size: 15px;
  }

  .container {
    padding: 56px 16px;
  }
}



/* ===== 熱量フォトギャラリー ===== */
.passion-gallery {
  margin: 60px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 行 */
.gallery-row {
  display: grid;
  gap: 24px;
}

.gallery-row.row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-row.row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

/* 写真カード */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background-color: #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item.large {
  border-radius: 18px;
}

/* 画像 */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%) contrast(0.95);
  transition: filter 0.4s ease;
}

/* ホバー効果（静か） */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
  filter: grayscale(0%) contrast(1);
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .gallery-row.row-3,
  .gallery-row.row-2 {
    grid-template-columns: 1fr;
  }
}


/* 1列レイアウト */
.gallery-row.row-1 {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 12px auto 0;
}

/* メイン写真 */
.gallery-item-main {
  border-radius: 22px;
  box-shadow: 0 32px 72px rgba(0,0,0,0.16);
}

.gallery-item-main img {
  filter: grayscale(0%) contrast(1);
}

/* =========================
   写真ギャラリー（高さ統一）
========================= */

/* 写真1枚分の枠 */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* 3列・2列レイアウト用 */
.gallery-row.row-3 .gallery-item,
.gallery-row.row-2 .gallery-item {
  aspect-ratio: 4 / 3; /* 高さを比率で統一 */
}

/* 画像本体 */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 縦長写真をトリミング */
  display: block;
  transition: transform 0.6s ease;
}

/* さりげない拡大（高級感） */
.gallery-item:hover img {
  transform: scale(1.04);
}

/* 1列レイアウト（ラスト写真用） */
.gallery-row.row-1 .gallery-item {
  aspect-ratio: 3 / 2; /* 少し縦を強調 */
  border-radius: 22px;
}




/* =========================
   人間性が育つ理由 セクション
========================= */

.section-humanity {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-humanity .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-humanity .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-humanity .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.section-humanity .section-title span {
  color: #e67e22; /* 正直・本音を表すアクセント */
}

.section-humanity .section-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* 質問リスト */
.humanity-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px; 
}

.humanity-item {
  border-left: 5px solid #e67e22;
  background-color: #fafafa;
  padding: 24px 28px;
  border-radius: 8px;
}

.humanity-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.humanity-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

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

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .section-humanity {
    padding: 60px 16px;
  }

  .section-humanity .section-title {
    font-size: 26px;
  }

  .humanity-item {
    padding: 20px;
  }

  .humanity-item h3 {
    font-size: 17px;
  }

  .humanity-item p {
    font-size: 14px;
  }
}



/* =========================
   未経験でも大丈夫な理由
========================= */

.section-support {
  padding: 80px 20px;
  background-color: #f7fbfa;
}

.section-support .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-support .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-support .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.section-support .section-title span {
  color: #27ae60; /* 安心・成長を表す色 */
}

.section-support .section-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* サポート項目 */
.support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.support-item {
  background-color: #ffffff;
  padding: 28px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.support-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e8449;
}

.support-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

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

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .section-support {
    padding: 60px 16px;
  }

  .section-support .section-title {
    font-size: 26px;
  }

  .support-item {
    padding: 22px;
  }

  .support-item h3 {
    font-size: 17px;
  }

  .support-item p {
    font-size: 14px;
  }
}




/* =========================
   1日の仕事の流れ
========================= */

.section-dayflow {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-dayflow .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-dayflow .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-dayflow .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-dayflow .section-title span {
  font-size: 18px;
  color: #666;
  margin-left: 8px;
}

.section-dayflow .section-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ブロック共通 */
.dayflow-block {
  margin-bottom: 60px;
}

.dayflow-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e8449;
}

/* タイムライン */
.dayflow-list {
  list-style: none;
  padding: 0;
}

.dayflow-list li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.dayflow-list .time {
  min-width: 110px;
  font-weight: 700;
  color: #333;
}

.dayflow-list .content {
  color: #444;
  line-height: 1.7;
}

/* 昼の分岐 */
.dayflow-split {
  margin-bottom: 60px;
}

.split-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split-item {
  background-color: #f7fbfa;
  padding: 24px;
  border-radius: 10px;
}

.split-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #27ae60;
}

.split-item ul {
  padding-left: 18px;
}

.split-item li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.split-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

/* フッター文 */
.dayflow-footer {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-weight: 600;
}

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .section-dayflow {
    padding: 60px 16px;
  }

  .section-dayflow .section-title {
    font-size: 26px;
  }

  .split-box {
    grid-template-columns: 1fr;
  }

  .dayflow-list li {
    flex-direction: column;
    gap: 6px;
  }

  .dayflow-list .time {
    min-width: auto;
  }
}



/* =========================
   この仕事、正直どう？Q&A
========================= */

.section-qa {
  padding: 80px 20px;
  background-color: #f7fbfa;
}

.section-qa .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-qa .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-qa .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-qa .section-title span {
  color: #27ae60;
}

.section-qa .section-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Q&A本体 */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.qa-item {
  background-color: #ffffff;
  padding: 28px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.qa-question {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e8449;
}

.qa-answer {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

.qa-answer:last-child {
  margin-bottom: 0;
}

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .section-qa {
    padding: 60px 16px;
  }

  .section-qa .section-title {
    font-size: 26px;
  }

  .qa-item {
    padding: 22px;
  }

  .qa-question {
    font-size: 17px;
  }

  .qa-answer {
    font-size: 14px;
  }
}


/* =========================
   向いている人・向いていない人
========================= */

.section-fit {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-fit .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-fit .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-fit .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-fit .section-title span {
  color: #27ae60;
}

.section-fit .section-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ボックス */
.fit-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fit-box {
  padding: 32px;
  border-radius: 12px;
}

.fit-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.fit-box ul {
  padding-left: 18px;
}

.fit-box li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* 向いている人 */
.fit-good {
  background-color: #f3faf7;
  border: 2px solid #27ae60;
}

.fit-good h3 {
  color: #1e8449;
}

/* 向いていない人 */
.fit-ng {
  background-color: #fbf5f5;
  border: 2px solid #e74c3c;
}

.fit-ng h3 {
  color: #c0392b;
}

/* フッター */
.fit-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-weight: 600;
}

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .section-fit {
    padding: 60px 16px;
  }

  .section-fit .section-title {
    font-size: 26px;
  }

  .fit-wrapper {
    grid-template-columns: 1fr;
  }

  .fit-box {
    padding: 24px;
  }

  .fit-box h3 {
    font-size: 18px;
  }

  .fit-box li {
    font-size: 14px;
  }
}


/* =========================
   フローティングボタン
========================= */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-buttons a {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* 応募ボタン */
.btn-entry {
  background-color: #27ae60;
  color: #fff;
}

/* TOPへ戻る */
.btn-top {
  background-color: #ffffff;
  color: #333;
  border: 2px solid #27ae60;
}

/* スマホ最適化 */
@media screen and (max-width: 768px) {
  .floating-buttons {
    right: 12px;
    bottom: 12px;
  }

  .floating-buttons a {
    font-size: 13px;
    padding: 12px 16px;
  }
}


/* ===== 募集職種（テーブル） ===== */
.lp-jobs {
  padding: 60px 20px;
  background-color: #f0f7f3;
}

.lp-jobs .container {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-jobs .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.lp-jobs .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.lp-jobs .section-title span {
  color: #27ae60;
}

.lp-jobs .section-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.job-table-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
}

.job-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2f6f4e;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.job-table th,
.job-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
}

.job-table th {
  width: 25%;
  background-color: #f9fbfa;
  text-align: left;
  font-weight: 600;
}

/* ===== 求人詳細リンクボタン ===== */
.job-detail-link {
  text-align: center;
  margin-top: 40px;
}

.job-detail-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2f6f4e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-detail-btn:hover {
  background-color: #24563c;
  transform: translateY(-2px);
}


/* ===== 福利厚生（かわいいカード） ===== */
.lp-benefits-cards {
  padding: 60px 20px;
  background-color: #ffffff;
}

.lp-benefits-cards .container {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-benefits-cards .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.lp-benefits-cards .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.lp-benefits-cards .section-title span {
  color: #27ae60;
}

.lp-benefits-cards .section-lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.benefits-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-card {
  background-color: #f6fbf8;
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

.benefit-icon {
  display: inline-block;
  font-size: 20px;
  color: #7bb89e;
  margin-bottom: 10px;
}

/* 見出し */
.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #2f6f4e;
  margin-bottom: 8px;
}

/* 説明文 */
.benefit-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}


/* ===== 最下部CTA ===== */
.section-cta {
  background: linear-gradient(
    180deg,
    #f7f9fa 0%,
    #eef2f4 100%
  );
  padding: 100px 20px;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.cta-title {
  font-size: 30px;
  font-weight: 700;
  color: #2f2a25;
  margin-bottom: 28px;
  line-height: 1.5;
}

.cta-title span {
  display: block;
  margin-top: 6px;
  color: #2a8fbd; /* ヒーローと思想を合わせる */
  font-size: 26px;
}

/* メインテキスト */
.cta-text {
  font-size: 17px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.9;
}

/* 補足メッセージ */
.cta-subtext {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* CTAボタン */
.cta-button {
  display: inline-block;
  background-color: #2a8fbd;
  color: #ffffff;
  padding: 16px 44px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 143, 189, 0.3);
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .section-cta {
    padding: 80px 16px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-title span {
    font-size: 22px;
  }

  .cta-text {
    font-size: 16px;
  }
}
