/* ============================================================
   linka.css — Linka LP スタイルシート
   ブランドカラーを変更する場合は :root の変数を更新してください
   ============================================================ */

/* ── カスタムプロパティ（ブランドカラー）─────────────────── */
:root {
  --navy:   #0B2A4A;
  --blue:   #143264;
  --yellow: #F5B51B;
  --gray:   #ecedf0;
  --border: #DDE4EF;
  --white:  #ffffff;
  --text-muted: rgba(11,42,74,0.75);
  --text-light: rgba(11,42,74,0.70);

  --radius-card: 16px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 28px rgba(0,0,0,0.12);
  --container: 1100px;
  --font: 'Noto Sans JP', sans-serif;
}

/* ── リセット & ベース ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* スマホで改行を非表示（PC のみ表示する <br>） */
.hidden-sp { display: none; }
@media (min-width: 768px) { .hidden-sp { display: inline; } }

/* ── コンテナ ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
.container--narrow { max-width: 800px; }

/* ── セクション共通 ──────────────────────────────────────── */
.section-heading {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-light);
  line-height: 1.8;
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-inline: auto;
  margin-bottom: 20px;
}

.section-head { text-align: center; margin-bottom: 56px; }

/* フェードインアニメーション（JS の IntersectionObserver が付与） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ヘッダー ─────────────────────────────────────────────── */
#lk-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  padding-block: 16px;
  transition: box-shadow 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
#lk-header.scrolled {
  padding-block: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img { height: 32px; object-fit: contain; }

.header-nav { display: flex; align-items: center; gap: 32px; }

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--blue);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--blue); }
.header-nav a:hover::after { width: 100%; }

/* ハンバーガーボタン */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.mobile-toggle svg { display: block; }

/* モバイルナビ */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 16px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding-block: 12px;
  border-bottom: 1px solid rgba(221,228,239,0.5);
  display: block;
}

@media (max-width: 767px) {
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ── ヒーロー ─────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 16px;
  background: var(--white);
  overflow: hidden;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(circle, #c8d4e8 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-diagonal {
  display: none;
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 52%;
  background: #f1f5fd;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-text-in 0.6s ease forwards 0.05s;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(20,50,100,0.1);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(20,50,100,0.2);
}

.hero-title {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-body {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(11,42,74,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: #0d2550;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary img { width: 20px; height: auto; }

.hero-image {
  flex: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  animation: hero-img-in 0.6s ease forwards 0.25s;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.hero-pc { width: 100%; drop-shadow: 0 25px 50px rgba(0,0,0,0.25); }

.hero-label {
  position: absolute;
  right: -24px;
  bottom: 6%;
  width: 28%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  animation: label-entrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@keyframes hero-text-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-img-in {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes label-entrance {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}

@media (min-width: 768px) {
  .hero { padding-top: 96px; padding-bottom: 24px; }
  .hero-text { max-width: 600px; }
}

@media (min-width: 1024px) {
  .hero-diagonal { display: block; }
  .hero-inner { flex-direction: row; align-items: center; }
  .hero-text { text-align: left; }
  .hero-text .hero-cta { justify-content: flex-start; }
  .hero-image-wrap { margin-right: -10%; }
}

/* ── 課題提起（Pain Points）─────────────────────────────── */
.pain-points {
  padding-block: 48px 80px;
  background: var(--gray);
  scroll-margin-top: 80px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.pain-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 3px solid transparent;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--yellow);
}

.pain-card-img { width: 72px; flex-shrink: 0; }

.pain-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pain-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (min-width: 640px) {
  .pain-card { flex-direction: row; align-items: flex-start; }
  .pain-card-img { margin-top: 4px; }
}

@media (min-width: 768px) {
  .pain-points { padding-block: 56px 96px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ソリューション（Solution）──────────────────────────── */
.solution {
  padding-block: 64px;
  background: var(--white);
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .solution { padding-block: 96px; }
}

.solution-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.flow-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 24px;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow-card-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.flow-card-img { width: 80px; height: 80px; object-fit: contain; }

.flow-card--center {
  background: var(--blue);
  border-color: transparent;
  padding: 40px 28px;
  max-width: 280px;
}

.flow-card--center .flow-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.flow-arrow {
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
  transform: rotate(90deg);
  line-height: 1;
  user-select: none;
}

.flow-arrow svg { display: none; }

.bullet-list { text-align: left; width: 100%; }
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy);
}
.bullet-list li:last-child { margin-bottom: 0; }
.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.bullet-list--light li { color: var(--white); }

.solution-close {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(11,42,74,0.8);
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .solution-flow {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 40px;
  }
  .flow-card { width: 240px; }
  .flow-card--center {
    width: 260px;
    margin-block: -24px;
  }
  .flow-arrow {
    transform: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-arrow span { display: none; }
  .flow-arrow svg {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 24px;
  }
}

/* ── 機能紹介（Features）────────────────────────────────── */
.features {
  padding-block: 64px;
  background: var(--gray);
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .features { padding-block: 96px; }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.15s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--yellow);
}

.feature-accent { width: 32px; height: 3px; background: var(--yellow); margin-bottom: 16px; }

.feature-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}

.feature-tag {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 4px;
  white-space: nowrap;
}

.feature-tag .note-star { color: #e53e3e; }

.features-note {
  font-size: 14px;
  color: var(--text-light);
  text-align: right;
}
.features-note .red { color: #e53e3e; }

/* ── 画面紹介（Screens）─────────────────────────────────── */
.screens {
  padding-block: 64px;
  background: var(--white);
}

@media (min-width: 768px) {
  .screens { padding-block: 96px; }
}

.screens-list { display: flex; flex-direction: column; gap: 64px; }

@media (min-width: 768px) {
  .screens-list { gap: 80px; }
}

.screen-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.screen-text { flex: 1; width: 100%; }
.screen-img  { flex: 1; width: 100%; }
.screen-img img { width: 100%; height: auto; }

.screen-accent { width: 32px; height: 3px; background: var(--yellow); margin-bottom: 16px; }

.screen-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.screen-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.screen-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .screen-row { flex-direction: row; gap: 64px; }
  /* 偶数行: テキスト左・画像右（デフォルト） */
  /* 奇数行: 画像左・テキスト右 */
  .screen-row--reverse { flex-direction: row-reverse; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  padding-block: 64px;
  background: var(--gray);
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .faq { padding-block: 96px; }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

.faq-col { display: flex; flex-direction: column; gap: 20px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

.faq-question:hover { color: var(--blue); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--navy);
  transition: transform 0.25s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── お問い合わせ（Contact）────────────────────────────── */
.contact {
  padding-block: 64px;
  background: var(--white);
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .contact { padding-block: 96px; }
}

.contact-head { text-align: center; margin-bottom: 40px; }
.contact-head .accent-line { margin-bottom: 32px; }

.contact-intro {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(11,42,74,0.8);
  line-height: 1.8;
  text-align: left;
  margin-bottom: 8px;
}

.contact-note {
  font-size: 14px;
  color: rgba(11,42,74,0.8);
}
.contact-note .red { color: #e53e3e; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .contact-card { padding: 40px; }
}

/* フォーム */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.required-badge {
  font-size: 11px;
  background: #e53e3e;
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  background: #f5f7fa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
  pointer-events: none;
}
.form-select { padding-right: 32px; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(20,50,100,0.15);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-error {
  font-size: 13px;
  color: #e53e3e;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: #e53e3e; }

.form-submit { text-align: center; padding-top: 16px; }

.btn-submit {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-submit:hover {
  background: #e0a518;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* 送信完了 */
.contact-success {
  display: none;
  text-align: center;
  padding: 48px 16px;
}
.contact-success.visible { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245,181,27,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 24px;
}
.success-icon svg { color: var(--yellow); }

.success-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.success-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-outline {
  background: none;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  padding: 10px 28px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--navy); }

/* ── フッター ─────────────────────────────────────────────── */
.footer {
  background: var(--blue);
  color: var(--white);
  padding-block: 32px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .footer-links { flex-direction: row; gap: 40px; }
}

.footer-links a {
  font-size: 14px;
  color: var(--white);
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.75; }

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--white);
}
.footer-copy a { color: var(--white); transition: opacity 0.2s; }
.footer-copy a:hover { opacity: 0.75; }

/* ── お問い合わせフォーム ─────────────────────────────────────────────── */
#tx_form_0 {
    margin: 0;
    padding: 0;
    display: block;
}

#mailform-section {
    margin: 0;
    color: #333;
}

#mailform-section {
    margin-bottom: 20px;
}

#mailform-section div.form-layout {
    width: 95%;
    display: block;
    margin: 0 auto;
}

#mailform-section div.form-layout div.form-items {
    width: 100%;
    margin: 0 auto;
}

#mailform-section div.form-layout div.form-items div.form-item {
    clear: both;
    padding: 0 0 20px 0;
    margin-bottom: 30px;
    border-bottom: dashed 1px #ccc;
}

#mailform-section div.form-layout div.form-items div.form-item:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#mailform-section div.form-layout div.form-items div.form-item div.label {
    float: none;
    clear: both;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 0 0 0 10px;
    color: #333;
    font-size: 100%;
    border-left: solid 4px #F5B51B;
}

#mailform-section div.form-layout div.form-items div.form-item div.field {
    float: none;
    clear: both;
    background: #fff;
    width: 100%;
    text-align: left;
    vertical-align: top;
    padding: 8px 0;
}

#mailform-section div.form-layout div.form-items div.form-item div.field p.description {
    margin: 10px 0;
    font-size: 100%;
}

#mailform-section div.form-layout div.form-items .field-textarea {
    width: calc(100% - 20px);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: none;
    background: #efefef;
    padding: 10px;
    font-size: 100%;
    border: 1px solid #ccc;
    color: #333;
}

#mailform-section input.input-text {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: calc(100% - 20px);
    border: none;
    background: #efefef;
    padding: 10px;
    font-size: 100%;
    color: #333;
    border: 1px solid #ccc;
}

#mailform-section textarea.input-textarea {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #ccc;
}

#mailform-section input.input-select {
    border: 1px solid #ccc;
}

#mailform-section select.input-select {
    position: relative;
    width: 100%;
    padding: 10px;
    /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
    height: 40px;
    border: none;
    background: #eee;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #eee), color-stop(0, #fff));
    background: -webkit-linear-gradient(#fff, #eee);
    background: -moz-linear-gradient(#fff, #eee);
    background: -o-linear-gradient(#fff, #eee);
    background: -ms-linear-gradient(#fff, #eee);
    background: linear-gradient(#fff, #eee);
    border: solid 1px #ccc;
    font-size: 100%;
}

#mailform-section select.input-select option {
    padding: 5px 0;
    display: block;
}

#mailform-section .required {
    color: red;
    font-weight: normal;
}

#mailform-section .error {
    background-color: #fcf;
    padding: 0px;
    text-align: left;
}

#mailform-section .error-message {
    color: #f00;
    text-align:left;
    padding: 20px;
}

#mailform-section .completion-message {
    border: 1px solid #ccc;
    padding: 30px;
}

#mailform-section div.submitee {
    clear: both;
    text-align: center;
}

#mailform-section div.submitee button {
    cursor: pointer;
    border-width: 0px;
    height: 50px;
    width: 100px;
    margin-top: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    background: #F5B51B;
    color: white;
}

#mailform-section div.submitee button:hover {
    opacity: 0.7;
    transition: 0.5s;
}

#mailform-section div.submitee button span {
    font-size: 180%;
}

#mailform-section input[type=radio],
#mailform-section input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
    display: none;
    margin: 0;
}

#mailform-section input[type=radio]+label,
#mailform-section input[type=checkbox]+label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    cursor: pointer;
    padding: 0 0 0 20px;
}

#mailform-section input[type=radio]+label:hover,
#mailform-section input[type=checkbox]+label:hover {
    color: #F5B51B;
}

#mailform-section input[type=radio]+label::before,
#mailform-section input[type=checkbox]+label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background: #FFF;
}

#mailform-section input[type=radio]:checked+label::after,
#mailform-section input[type=checkbox]:checked+label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}

#mailform-section input[type=radio]+label::before {
    border: 1px solid #666;
    border-radius: 30px;
}

#mailform-section input[type=radio]:checked+label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -2px;
    background: #F5B51B;
    border-radius: 8px;
}

#mailform-section input[type=checkbox]+label::before {
    border: 1px solid #666;
}

#mailform-section input[type=checkbox]:checked+label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}