/* =============================================
   本質社 - 構造補強×デザインリノベーション
   Color: Navy #0D1F3C, White #FFFFFF, Brick #A0522D
   ============================================= */

:root {
  --navy: #0D1F3C;
  --navy-light: #152844;
  --navy-dark: #091529;
  --white: #FFFFFF;
  --brick: #A0522D;
  --brick-light: #B8693E;
  --brick-dark: #7A3E22;
  --gray-50: #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #D8DCE2;
  --gray-300: #B0B8C4;
  --gray-500: #6B7A8D;
  --gray-700: #3D4A5C;
  --shadow-sm: 0 2px 8px rgba(13,31,60,0.06);
  --shadow-md: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.sp-only { display: none; }

/* ---- Sample Banner ---- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: var(--brick);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.04em;
}

.sample-banner a {
  color: var(--white);
  text-decoration: underline;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 37px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,31,60,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-desktop a:not(.nav-cta):hover {
  color: var(--brick);
}

.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brick);
  transition: width var(--transition);
}

.nav-desktop a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--brick);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--brick-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--navy);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-inner {
  padding: 120px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.04em;
}

.mobile-nav-link:hover {
  color: var(--brick-light);
}

.mobile-nav-cta {
  display: block;
  margin-top: 24px;
  background: var(--brick);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
}

.mobile-nav-phone {
  margin-top: 32px;
  text-align: center;
  color: var(--gray-300);
  font-size: 13px;
}

.mobile-nav-phone a {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 109px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.88) 0%, rgba(13,31,60,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brick-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--brick);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brick-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,82,45,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-full {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brick-light);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brick);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label-light {
  color: var(--brick-light);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.section-desc-light {
  color: rgba(255,255,255,0.7);
}

/* ---- About ---- */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-label { margin-bottom: 8px; }
.about-text .section-title { margin-bottom: 24px; }

.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-text strong {
  color: var(--brick);
  font-weight: 700;
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon svg {
  width: 100%;
  max-width: 300px;
}

/* ---- Danger ---- */
.danger {
  background: var(--navy);
  text-align: center;
}

.danger-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.danger-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}

.danger-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.danger-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.danger-card-icon svg {
  width: 100%;
  height: 100%;
}

.danger-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.danger-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.danger-bottom {
  text-align: center;
}

.danger-arrow {
  margin-bottom: 20px;
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.danger-solution {
  font-size: 17px;
  color: var(--white);
  line-height: 1.9;
}

.danger-solution strong {
  color: var(--brick-light);
}

/* ---- Services ---- */
.services {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.service-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--brick);
  background: rgba(160,82,45,0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- Works ---- */
.works {
  background: var(--gray-50);
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-img img {
  transform: scale(1.05);
}

.work-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brick);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.work-body {
  padding: 24px;
  text-align: left;
}

.work-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.work-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.work-meta span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.work-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ---- Numbers ---- */
.numbers {
  background: var(--navy);
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.number-item {
  padding: 20px;
}

.number-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.counter {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.number-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--brick-light);
}

.number-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  font-weight: 500;
}

/* ---- Flow ---- */
.flow {
  text-align: center;
}

.flow-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.flow-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.flow-item:last-child {
  border-bottom: none;
}

.flow-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
}

.flow-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.flow-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ---- Company ---- */
.company {
  background: var(--gray-50);
  text-align: center;
}

.company-table-wrap {
  max-width: 700px;
  margin: 32px auto 0;
  text-align: left;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.company-table th,
.company-table td {
  padding: 18px 16px;
  font-size: 14px;
  vertical-align: top;
}

.company-table th {
  width: 140px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(13,31,60,0.03);
}

.company-table td {
  color: var(--gray-700);
}

.company-table td a {
  color: var(--brick);
  font-weight: 600;
}

/* ---- Contact ---- */
.contact {
  background: var(--navy);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-phone {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.contact-phone-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.contact-phone-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.contact-phone-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.required {
  background: var(--brick);
  color: var(--white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brick-light);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  margin-top: 8px;
  padding: 18px;
  font-size: 16px;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-credit a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

.footer-credit a:hover {
  color: var(--white);
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

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

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

  .works-grid .work-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sp-only { display: inline; }

  .section { padding: 72px 0; }

  .hero { min-height: 100svh; }

  .hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .hero-desc { font-size: 14px; }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-icon { order: -1; }

  .about-icon svg {
    max-width: 200px;
  }

  .danger-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .danger-card {
    padding: 32px 24px 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .works-grid .work-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .work-img { height: 200px; }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .flow-item {
    gap: 20px;
    padding: 24px 0;
  }

  .flow-num {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .company-table th {
    width: 110px;
    font-size: 13px;
  }

  .company-table td {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .header-inner { height: 60px; }

  .logo-text { font-size: 18px; }

  .hero-content { padding: 0 16px; }

  .service-card { padding: 32px 24px 28px; }

  .service-num { font-size: 36px; top: 20px; right: 20px; }

  .counter { font-size: 36px; }

  .contact-phone { padding: 32px 24px; }

  .contact-phone-num { font-size: 24px; }
}
