@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* =========================================
   1. 基本変数とリセット
   ========================================= */
:root {
  --primary: #014998;
  --secondary: #00a8e8;
  --accent: #FDD700;
  --accent2: #e17c00;
  --bg-light: #f4f7fa;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.marker-red {
  background: linear-gradient(transparent 80%, #ff2b2b 60%);
}

.marker-orange {
  background: linear-gradient(transparent 80%, #EF8416 60%);
}

.marker-white {
  background: linear-gradient(transparent 80%, #fff 60%);
}

.marker-blue {
  background: linear-gradient(transparent 80%, #2966B4 60%);
}

.marker-green {
  background: linear-gradient(transparent 80%, #159A39 60%);
}

.marker-black {
  background: linear-gradient(transparent 80%, #000 60%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

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

.kome {
  padding-left: 1.2em;
  text-indent: -1.1em;
  display: block;
}
.kome::before {
  content: "※";
}

/* =========================================
   2. ヘッダー
   ========================================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-container img {
  height: 45px;
  width: auto;
}

.logo-text h2 {
  line-height: 1.2;
}

.logo-text1 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-text2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover {
  color: var(--secondary);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent) 0%, #ffc107 100%);
  color: var(--text-dark) !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 215, 0, 0.3);
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(253, 215, 0, 0.4);
}

/* =========================================
   3. ヒーローセクション
   ========================================= */
#tsparticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero {
  margin-top: 80px;
  background: radial-gradient(circle at 20% 30%, #0056b3 0%, #002d62 100%);
  color: var(--white);
  padding: 60px 5% 40px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-catchphrase {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(253, 215, 0, 0.2);
}

.hero-subtext {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.95;
  border-left: 3px solid var(--secondary);
  padding-left: 15px;
}

.hero-image-container {
  position: relative;
  text-align: center;
}

.floating-img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.approval-info {
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0.8;
}

.product-label {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
}
.product-label span {
  margin-right: 0.5em;
}

.approval-number {
  font-size: 0.75rem;
}

/* =========================================
   4. 各セクション
   ========================================= */
section {
  padding: 70px 5%;
}
section:nth-of-type(odd):not(:first-of-type) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section-title p {
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}
.feature-card dl dt {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 0.3em;
}
.feature-card dl dd {
  font-size: 1rem;
  color: var(--text-light);
}
.feature-card dl dt:nth-of-type(2) {
  margin-top: 1em;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: auto;
}

/* =========================================
   フリップカード
   ========================================= */
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.flip-card-back {
  background: var(--primary);
  transform: rotateY(180deg);
}
.flip-card-back h3,
.flip-card-back p,
.flip-card-back dt,
.flip-card-back dd {
  color: #fff !important;
}

.flip-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.flip-card dl {
  text-align: left;
}
.flip-card dl dt {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5em;
}
.flip-card dl dd {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.flip-hint {
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: auto;
  padding-top: 1.5rem;
  font-weight: 500;
  text-align: center;
}

/* ホバー効果 */
.flip-card:hover .flip-card-inner {
  box-shadow: var(--shadow-hover);
}

/* アニメーション効果（既存のinview機能と併用） */
.flip-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.flip-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .flip-card-inner {
    min-height: 400px;
  }
  .flip-card-front,
  .flip-card-back {
    padding: 2rem;
  }
}
.tech-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.tech-text {
  min-width: 0;
}
.tech-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.tech-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.tech-text dl dt {
  margin-top: 0.75em;
  font-weight: bold;
  color: var(--text-light);
}
.tech-text dl dd {
  color: var(--text-light);
}
.tech-text dl.side-by-side {
  display: flex;
  margin-top: 0.5em;
}
.tech-text dl.side-by-side dt {
  margin-top: 0;
  width: 28%;
}
.tech-text dl.side-by-side dd {
  width: 72%;
}

.navigation-texts p {
  font-size: 1.1em;
  color: var(--text-light);
}
.navigation-texts dl.side-by-side {
  display: flex;
  margin-top: 0.5em;
}
.navigation-texts dl.side-by-side dt {
  margin-top: 0;
  width: 30%;
}
.navigation-texts dl.side-by-side dd {
  width: 70%;
}
.navigation-texts ol {
  margin-left: 1.3em;
}
.navigation-texts ol li {
  margin-top: 0.5em;
  padding-left: 0.3em;
  font-size: 1.1em;
}
.navigation-texts ol li a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .navigation-texts {
    width: 100%;
    justify-content: start;
  }
  .navigation-texts ol li {
    margin-top: 0.2em;
  }
}
.tech-image {
  min-width: 0;
  text-align: center;
}
.tech-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tech-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: left;
  margin-top: 0.5rem;
}

.system-list {
  list-style: none;
  margin-top: 0.5rem;
}
.system-list li {
  list-style-type: disc;
  margin-left: 1em;
  padding: 0.2em 0;
  color: var(--text-light);
}
.system-list li:nth-child(1) {
  padding-top: 0;
}

h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 0.7em;
}

/* Swiper全体の設定 */
.swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

@media (max-width: 768px) {
  .swiper {
    padding-bottom: 0px !important;
  }
}
.swiper.graphSwiper {
  width: 100%;
  padding-bottom: 30px !important;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}
.swiper-slide h4 {
  text-align: left;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.swiper-slide p {
  font-size: 1.05rem;
  line-height: 1.4;
  text-align: left;
  margin: 0.5em 0;
  color: var(--text-light);
}
.swiper-slide dl {
  display: flex;
  gap: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 0 !important;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary);
}

.custom-arrow.swiper {
  position: relative;
  padding: 0 !important;
}

.custom-arrow .swiper-button-prev,
.custom-arrow .swiper-button-next {
  position: absolute;
  top: 40%;
}

@media (max-width: 1500px) {
  .custom-arrow .swiper-button-prev,
  .custom-arrow .swiper-button-next {
    top: 38%;
  }
}
@media (max-width: 900px) {
  .custom-arrow .swiper-button-prev,
  .custom-arrow .swiper-button-next {
    top: 32%;
  }
}
@media (max-width: 768px) {
  .custom-arrow .swiper-button-prev,
  .custom-arrow .swiper-button-next {
    top: 40%;
  }
}
@media (max-width: 410px) {
  .custom-arrow .swiper-button-prev,
  .custom-arrow .swiper-button-next {
    top: 32%;
  }
}
.custom-arrow img {
  margin: 1em 0;
}
.custom-arrow dt,
.custom-arrow dd {
  color: var(--text-light);
}

/* Twenty Twenty */
.twentytwenty-wrapper {
  width: 100% !important;
}

.filter .twentytwenty-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 1px;
}
.filter .twentytwenty-container img {
  width: 100%;
  height: auto;
  display: block;
}

.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-overlay .twentytwenty-after-label {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .twentytwenty-overlay .twentytwenty-before-label,
  .twentytwenty-overlay .twentytwenty-after-label {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 480px) {
  .twentytwenty-overlay .twentytwenty-before-label,
  .twentytwenty-overlay .twentytwenty-after-label {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

/* スライダーハンドルを巨大化 */
.twentytwenty-handle {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 3px solid #00a8e8;
  background: #00a8e8;
  box-shadow: 0 0 0 6px rgba(0, 168, 232, 0.2), 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* 中央の矢印を強調 */
.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  border-width: 8px;
}

/* 上下ラインを太く＋色変更 */
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  background: #00a8e8;
  width: 4px;
}

/* 常に軽く鼓動させる（人間は動く物を見る） */
.twentytwenty-handle {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
/* Table */
.table-section p {
  max-width: 1200px;
  margin: 10px auto 0;
  padding-left: 1.2em;
}
.table-section p::before {
  content: "※ ";
  margin-left: -1.2em;
}

.table-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

thead {
  background: radial-gradient(circle at 20% 30%, #0056b3 0%, #002d62 100%);
  color: var(--white);
}
thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
thead th:nth-child(1) {
  width: 10%;
}
thead th:nth-child(2) {
  width: 25%;
}
thead th:nth-child(3) {
  width: auto;
}
thead th.spec:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
thead th.spec:nth-child(1) {
  width: 20%;
}
thead th.spec:nth-child(2) {
  width: 80%;
}

tbody td:not(:last-child) {
  border-right: 1px solid rgba(128, 128, 128, 0.3);
}

th,
td {
  padding: 1.2rem;
  border-bottom: 1px solid #e9ecef;
}

.abbr-cell {
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

/* Contact */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-placeholder {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px dashed var(--secondary);
}

/* Footer */
footer {
  background: radial-gradient(circle at 20% 30%, #0056b3 0%, #002d62 100%);
  padding: 3rem 5%;
  text-align: center;
}
footer p {
  color: var(--white);
}

/* =========================================
   5. レスポンシブ対応
   ========================================= */
@media (max-width: 900px) {
  header {
    height: 70px;
    padding: 0 3%;
  }
  .logo-container img {
    height: 32px;
  }
  .logo-text2 {
    font-size: 0.9rem;
  }
  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .hero {
    padding: 40px 5% 30px;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtext {
    font-size: 1.1rem;
    border-left: none;
    border-top: 3px solid var(--secondary);
    padding: 1rem 0 0 0;
    display: inline-block;
  }
  footer {
    padding: 1.2rem 5%;
  }
  footer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .tech-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .tech-image,
  .tech-text {
    width: 100%;
  }
  .tech-image img {
    width: 100%;
    max-width: 100%;
  }
  .tech-text {
    text-align: left;
  }
  .tech-note {
    text-align: left;
  }
  table {
    min-width: 0;
  }
  thead {
    display: none;
  }
  tbody tr {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  tbody td {
    display: flex;
    justify-content: space-between;
    border-right: none !important;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 480px) {
  .logo-text1 {
    font-size: 0.7rem;
  }
  .logo-text2 {
    font-size: 1rem;
  }
  section {
    padding: 60px 5%;
  }
}
/* inview */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   学術エビデンスセクション（即座に表示バージョン）
   ========================================= */
.evidence {
  padding: 70px 5%;
}
.evidence h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (max-width: 900px) {
  .evidence h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .evidence h2 br {
    display: none;
  }
}
.evidence h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.evidence > p:first-of-type {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .evidence > p:first-of-type {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.evidence .evidence-item {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary);
}
@media (max-width: 768px) {
  .evidence .evidence-item {
    padding: 1.5rem;
  }
}
.evidence .evidence-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.evidence .evidence-item .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .evidence .evidence-item .category-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
}
.evidence .evidence-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  .evidence .evidence-item h3 {
    font-size: 1.2rem;
  }
}
.evidence .evidence-item > p:first-of-type {
  margin-bottom: 1rem;
}
.evidence .evidence-item > p:first-of-type a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.6;
  display: inline-block;
  transition: color 0.3s ease;
}
.evidence .evidence-item > p:first-of-type a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .evidence .evidence-item > p:first-of-type a {
    font-size: 0.95rem;
  }
}
.evidence .evidence-item > p:first-of-type small {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .evidence .evidence-item > p:first-of-type small {
    font-size: 0.85rem;
  }
}
.evidence .evidence-item > p:last-of-type {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .evidence .evidence-item > p:last-of-type {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
.evidence .evidence-footer {
  background: rgba(0, 168, 232, 0.05);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 168, 232, 0.15);
}
@media (max-width: 768px) {
  .evidence .evidence-footer {
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
  }
}
.evidence .evidence-footer p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .evidence .evidence-footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .evidence {
    padding: 60px 5%;
  }
}/*# sourceMappingURL=landing_q-link.css.map */