/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.7;
  background: #fff;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

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

/* ============================================
   Header
   ============================================ */
.header {
  position: relative;
  height: 53px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.logo-img {
  width: 92px;
  height: 38px;
  object-fit: contain;
}

/* ============================================
   Section Heading Box
   ============================================ */
.section-heading-box {
  border: 2px solid #000;
  padding: 10px 32px;
  display: table;
  margin: 0 auto 40px;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

/* ============================================
   MV (Hero)
   ============================================ */
/* MV - トップビュー写真全画面 */
.mv {
  width: 100%;
  line-height: 0;
}

.mv-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* MV Text Section */
.mv-text-section {
  background: #e8e8e8;
  padding: 48px 20px;
  text-align: center;
}

.mv-content {
  max-width: 600px;
  margin: 0 auto;
}

.mv-sub {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.mv-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #000;
}

.mv-sns-sub {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.mv-question {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.mv-badges {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-badge-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #004e9b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}

.mv-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #004e9b;
  text-align: center;
  line-height: 1.3;
}

.mv-badge-up {
  font-size: 1.4rem;
  font-weight: 900;
  color: #004e9b;
  line-height: 1;
}

.cta-btn--blue {
  display: inline-block;
  background: #004e9b;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s;
}

.cta-btn--blue:hover {
  opacity: 0.85;
}

.cta-free {
  display: block;
  font-size: 12px;
}

/* ============================================
   Concerns (元LP DevTools仕様に準拠)
   ============================================ */
.concerns {
  background: #4a4a4a;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  color: #fff;
  padding: 2.6rem 0 7rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* 見出し h2 */
.concerns-heading {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.concerns-heading span {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: relative;
  display: inline;
}

/* 「お悩み」の下線装飾 (元LPの::after疑似要素) */
.concerns-heading span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: #fff;
}

/* 吹き出し+イラストエリア */
.concerns-figure {
  margin: 0 auto 1.5rem;
  max-width: 400px;
  padding: 0 1rem;
}

.concerns-bubbles {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  min-height: 420px;
}

.concerns-person {
  display: block;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* 吹き出し */
.bubble {
  background: rgba(40, 40, 40, 0.93);
  padding: 0.3rem 0.9rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  display: inline-block;
  border-radius: 4px;
  transform: skewX(-4deg);
  line-height: 1.4;
  position: absolute;
  z-index: 2;
}

.bubble strong {
  font-weight: 900;
  font-size: 1.05rem;
  display: block;
  transform: skewX(4deg);
  letter-spacing: 0.5px;
}

/* bubble-1: 「採用しても すぐに辞めてしまう」→ おじさんの近く(右上寄り) */
.bubble-1 {
  position: absolute;
  top: 12%;
  right: 0;
}

/* bubble-2: 「若手が 全然集まらない」→ 左中 */
.bubble-2 {
  position: absolute;
  top: 30%;
  left: 0;
}

/* bubble-3: 「本当に採用したい 人が来ない...」→ 顔の右横(右中) */
.bubble-3 {
  position: absolute;
  top: 55%;
  right: 0;
}

/* テキストボックス（イラストのすぐ下） */
.concerns-box {
  background: rgba(180, 180, 180, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  padding: 1.8rem 1.2rem;
  text-align: center;
  max-width: 400px;
  margin: -60px auto 0;
}

.concerns-box p {
  font-size: 0.875rem;
  line-height: 2.2;
  margin-bottom: 0;
}

.concerns-bold {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* SP用改行 (デフォルト表示、PCで非表示) */
br.sp { display: inline; }
br.pc { display: none; }

/* ============================================
   About
   ============================================ */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-hero-img {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.about-hero-img img {
  max-width: 100%;
  width: 100%;
}

.about-bg-text {
  position: absolute;
  bottom: 10px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(200, 200, 200, 0.2);
  letter-spacing: 16px;
  pointer-events: none;
}

.text-blue {
  color: #004e9b;
  font-weight: 700;
}

.stats-medals {
  text-align: center;
  margin-bottom: 24px;
  overflow: visible;
}

.stats-medals img {
  max-width: 100%;
  width: 100%;
}

.stats-notes p {
  font-size: 11px;
  color: #7c7c7c;
}

/* ============================================
   Achievement (元LP準拠: スマホモックアップ)
   ============================================ */
.achievement {
  padding: 3.8rem 0 0;
  overflow: hidden;
}

.achievement_inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 見出し: 斜体枠線 */
.achievement h2 {
  width: 252px;
  border: 3px solid #000;
  margin: 0 auto 2.2rem;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  transform: skewX(-20deg);
  padding: 4px 0 6px;
}

.achievement h2 span {
  display: block;
  transform: skewX(20deg);
}

/* スライダー */
.achievement_slider {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.achievement_track {
  display: flex;
  transition: transform 0.4s ease;
}

/* 各スライド */
.achievement_slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  transition: transform 0.4s, opacity 0.4s;
}

/* スマホ風フレーム */
.achievement_item {
  width: 240px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: relative;
}

/* 動画エリア (角丸マスク) */
.achievement_video {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.achievement_video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ナビゲーション矢印 */
.achievement_prev,
.achievement_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s;
}

.achievement_prev:hover,
.achievement_next:hover {
  background: rgba(0,0,0,0.7);
}

.achievement_prev { left: 10px; }
.achievement_next { right: 10px; }

/* 成果テキスト (モックアップ下) */
.achievement_caption {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1rem;
  color: #000;
}

/* 企業詳細カード */
.achievement_detail {
  max-width: 500px;
  margin: 2rem auto 0;
  text-align: center;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 0 20px 1.5rem;
  position: relative;
  min-height: 120px;
}

/* 企業名タブ (黒帯) */
.achievement_detail h4 {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.3rem 1.5rem;
  border-radius: 4px;
  margin: -0.9rem auto 0.8rem;
  position: relative;
}

.achievement_detail h4 span {
  font-size: 1rem;
}

/* 地域・業種 */
.achievement_detail_prof {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #7c7c7c;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

/* 各カードの切り替え */
.achievement_detail_item {
  display: none;
}

.achievement_detail_item.show {
  display: block;
}

/* 企業コメント */
.achievement_detail_txt {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

/* ============================================
   UP Section
   ============================================ */
.up-section {
  padding: 60px 0;
  background: #fff;
}

.up-heading {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 32px;
}

.up-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.up-badge {
  text-align: center;
}

.up-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #004e9b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.up-circle-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #004e9b;
  line-height: 1.3;
  text-align: center;
}

.up-circle-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: #004e9b;
  line-height: 1;
}

/* ============================================
   Strength Result (建設業はすぐに結果が出ます)
   ============================================ */
.strength-result {
  padding: 40px 0 60px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.result-bubbles {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-bubble {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.result-box {
  display: inline-block;
  border: 3px solid #000;
  padding: 8px 24px;
  margin-bottom: 16px;
}

.result-box-title {
  font-size: 1.3rem;
  font-weight: 900;
}

.result-area {
  font-size: 1rem;
  font-weight: 700;
  color: #004e9b;
  line-height: 1.6;
  margin-bottom: 8px;
}

.result-dondon {
  font-size: 1.6rem;
  font-weight: 900;
  color: #cc0000;
}

.result-person {
  display: block;
  width: 120px;
  margin: 20px auto 0;
}

/* ============================================
   Strength
   ============================================ */
.strength {
  padding: 80px 0;
  background: #f5f5f5;
}

.strength-intro {
  text-align: center;
  margin-bottom: 48px;
}

.strength-intro-main {
  font-size: 24px;
  font-weight: 800;
}

.strength-intro-note {
  font-size: 12px;
  color: #7c7c7c;
}

.strength-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 48px;
  line-height: 1.4;
}

.strength-title-sub {
  font-size: 18px;
  font-weight: 600;
  color: #7c7c7c;
  display: block;
}

.strength-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 60px;
}

.strength-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.strength-num {
  font-size: 72px;
  font-weight: 900;
  color: #000;
  position: relative;
  display: inline-block;
}

.red-line {
  width: 50px;
  height: 4px;
  background: #cc0000;
  margin-top: -8px;
  margin-bottom: 16px;
}

.strength-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.strength-item h3 strong {
  color: #004e9b;
}

.strength-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.strength-item img {
  max-width: 320px;
  border-radius: 8px;
}

.strength-free-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.strength-free-title strong {
  color: #cc0000;
  font-size: 48px;
}

/* ============================================
   Voice Cards
   ============================================ */
.voice {
  padding: 80px 0;
  background: #fff;
}

.voice-carousel {
  position: relative;
  overflow: hidden;
}

.voice-track {
  display: flex;
  transition: transform 0.4s ease;
}

.voice-slide {
  min-width: 100%;
  padding: 0 10px;
}

.voice-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.voice-card-company {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
}

.voice-card-photo {
  margin-bottom: 16px;
}

.voice-card-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-card-headline {
  font-size: 18px;
  font-weight: 800;
  color: #004e9b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.voice-card-detail {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.voice-note {
  text-align: center;
  font-size: 12px;
  color: #7c7c7c;
  margin-top: 16px;
}

/* ============================================
   Mid CTA
   ============================================ */
.mid-cta-bg {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.mid-cta-overlay {
  width: 100%;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
}

.mid-cta-text {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ============================================
   Flow
   ============================================ */
.flow {
  padding: 80px 0;
  background: #f5f5f5;
}

.flow-steps {
  max-width: 600px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: center;
}

.flow-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004e9b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-icon img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.flow-body {
  flex: 1;
}

.flow-body h4 {
  font-size: 16px;
  font-weight: 700;
}

.flow-body p {
  font-size: 14px;
  color: #555;
}

.flow-connector {
  width: 2px;
  height: 24px;
  background: #004e9b;
  margin-left: 19px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-q {
  background: #004e9b;
}

.faq-icon-a {
  background: #cc0000;
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  gap: 12px;
  align-items: flex-start;
}

.faq-item.open .faq-a {
  display: flex;
}

.faq-a-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 80px 0;
  background: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.required {
  background: #cc0000;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}

.optional {
  background: #7c7c7c;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #000;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #004e9b;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  text-align: center;
  margin-top: 24px;
}

.btn-submit {
  background: #004e9b;
  color: #fff;
  padding: 16px 56px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.85;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 32px 0;
  background: #000;
  color: #999;
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 13px;
  color: #999;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  margin: 0 12px;
  color: #666;
}

.footer-copy {
  font-size: 12px;
  color: #666;
}

/* ============================================
   Floating CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-floating-cta {
  display: inline-block;
  background: #004e9b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}

.btn-floating-cta:hover {
  opacity: 0.85;
}

/* ============================================
   Medal Badge (About section)
   ============================================ */
.medal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  text-align: center;
  flex-direction: column;
}

.medal-number {
  color: #d4a843;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.medal-label {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* PC向けbr切り替え */
@media screen and (min-width: 769px) {
  br.sp { display: none; }
  br.pc { display: inline; }
}

/* ============================================
   Responsive — Tablet (768px)
   ============================================ */
@media screen and (max-width: 768px) {
  .mv-title {
    font-size: 40px;
  }

  .mv-badge-circle {
    width: 85px;
    height: 85px;
  }

  .up-circle {
    width: 95px;
    height: 95px;
  }

  .result-person {
    width: 100px;
    right: 10px;
    bottom: 10px;
  }

  .mv-badges {
    justify-content: center;
  }

  .mv-badge-circle-sm {
    width: 80px;
    height: 80px;
  }

  .concerns-person {
    width: 140px;
  }

  .up-badges {
    flex-direction: row;
    justify-content: center;
  }

  .strength-num {
    font-size: 48px;
  }

  .red-line {
    width: 40px;
    height: 4px;
  }

  .voice-card {
    padding: 20px;
  }

  .section-heading-box {
    font-size: 20px;
    padding: 8px 24px;
  }

  .about-bg-text {
    font-size: 48px;
    letter-spacing: 8px;
  }

  .strength-title {
    font-size: 26px;
  }

  .mid-cta-text {
    font-size: 20px;
  }

  .contact-form {
    padding: 24px;
  }
}

/* ============================================
   Responsive — Mobile (480px)
   ============================================ */
@media screen and (max-width: 480px) {
  .mv-title {
    font-size: 32px;
  }

  .mv-badge-circle {
    width: 75px;
    height: 75px;
  }

  .mv-badge-label {
    font-size: 0.6rem;
  }

  .up-circle {
    width: 85px;
    height: 85px;
  }

  .up-circle-label {
    font-size: 0.55rem;
  }

  .up-circle-text {
    font-size: 1.3rem;
  }

  .mv-badges {
    flex-wrap: wrap;
  }

  .strength-intro-main {
    font-size: 20px;
  }

  .concerns-heading span {
    font-size: 1.8rem;
  }

  .concerns-person {
    width: 130px;
  }

  .strength-free-title strong {
    font-size: 36px;
  }

  .strength-item {
    padding: 24px 16px;
  }

  .strength-item img {
    max-width: 100%;
  }

  .voice-card-headline {
    font-size: 16px;
  }

  .floating-cta {
    padding: 10px 12px;
  }

  .btn-floating-cta {
    font-size: 14px;
    padding: 12px 28px;
  }

  .flow-step {
    gap: 12px;
  }

  .cta-btn--blue {
    padding: 14px 28px;
    font-size: 15px;
  }
}
