@charset "UTF-8";

body{
    background:#0b0b0f;
    color:white;
}


/* #drop-area {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #777;
    background-color: #fafafa;
    transition: all 0.25s ease;
}

#drop-area.hover {
    border-color: #4CAF50;
    background-color: #f0fff4;
    color: #2e7d32;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
*/

/* カードコンテナ */
.result-card {
  background: #15151d;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
  border:1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

/* hoverで浮く */
.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* タイトル */
.result-title {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 6px;
}

/* 値 */
.result-value {
  font-size: 1.4rem;
  font-weight: 600;
}

/* 横並び */
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ↓↓↓ ここから追加 ↓↓↓ */

/* ヘッダー */
.card-header {
  font-weight: 600;
  margin-bottom: 10px;
  background:none;
  border:none;
  color:#fff;
  padding:0;
  font-size:20px;
}
.card-body {
	color:#fff;
}

/* 区切り線 */
.card-divider {
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:14px 0;
}

/* 行 */
.card-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

/* ラベル */
.card-label {
  color: #9aa4b2;
  font-size: 0.85rem;
}

/* 値 */
.card-value {
  font-weight: 500;
  color:#fff;
}

/* 強調値 */
.card-value-main {
  font-size: 1.2rem;
  font-weight: 600;
}

/* ボタン */
.apple-btn {
  width: 150px;
  background: #0071e3;
  border: none;
  border-radius: 10px;
  padding: 6px 14px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.apple-btn:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

.result-summary-card{
    background:#15151d;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    color:#fff;
}



/*-------------------------------------------------*/
/* =========================
   ロゴ
========================= */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -15px;
}

.hero-logo {
    width: min(420px, 85vw);
    height: auto;
    display: block;

    filter: drop-shadow(0 0 22px rgba(0, 170, 255, 0.35));
}



/* =========================
   HERO
========================= */

.hero-section{
    padding-top:80px;
    padding-bottom:40px;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    font-size:14px;
    color:#aaa;
}

.hero-title{
    font-size:clamp(42px,7vw,82px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;
    margin-top:20px;
}

.hero-subtitle{
    font-size:20px;
    color:#aaa;
    line-height:1.8;
}

.hero-points{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-points span{
    background:#15151d;
    border:1px solid rgba(255,255,255,0.08);
    padding:10px 18px;
    border-radius:999px;
    color:#ddd;
    font-size:14px;
}

/* =========================
   DROP AREA
========================= */

#drop-area{
    background:linear-gradient(
        145deg,
        #15151d,
        #111
    );

    border:2px dashed rgba(255,255,255,0.15) !important;

    border-radius:24px;

    transition:0.25s;
}

#drop-area:hover,
#drop-area.hover{
    transform:translateY(-4px) scale(1.01);
    border-color:#4da3ff !important;
    box-shadow:0 20px 50px rgba(77,163,255,0.15);
    background:linear-gradient(
        145deg,
        #182235,
        #111827
    );
}

/* =========================
   BEFORE AFTER
========================= */

.compare-card{
    padding:40px;
    border-radius:24px;
    height:100%;
}

.before-card{
    background:#171717;
    border:1px solid rgba(255,255,255,0.08);
}

.after-card{
    background:linear-gradient(
        145deg,
        #0f223a,
        #102b4a
    );
    border:1px solid rgba(77,163,255,0.3);
}

.compare-label{
    display:inline-block;
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    margin-bottom:20px;
}

.before-label{
    background:#333;
    color:#aaa;
}

.after-label{
    background:#4da3ff;
    color:white;
}

.compare-title{
    font-size:28px;
    margin-bottom:25px;
}

.compare-list{
    list-style:none;
    padding:0;
    margin:0;
}

.compare-list li{
    padding:10px 0;
    color:#ccc;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* =========================
   STEP
========================= */

.steps-title{
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.step-card{
    background:#141414;
    padding:40px 25px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.06);
}

.step-number{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#4da3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin:0 auto 24px;
}

/* =========================
   RESULT
========================= */

#resultTable{
    margin-top:50px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

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

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

}


#file-name{
    color:#fff;
    font-size:14px;
}

#status{
    color:#d1d5db;
}

#error{
    color:#ff6b6b !important;
}

.progress{
    background:#1b1b24;
    border-radius:999px;
    overflow:hidden;
}

/* =========================
   フッター
========================= */
.site-footer{
    padding:40px 0 30px;
    text-align:center;
    color:#888;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:14px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    font-size:14px;
}

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

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

.legal-page{
    max-width:900px;
    margin:60px auto;
    background:#15151d;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:40px;
}

.legal-page h1{
    font-size:32px;
    margin-bottom:24px;
}

.legal-page h2{
    font-size:22px;
    margin-top:32px;
    margin-bottom:12px;
}

.legal-page p,
.legal-page li,
.legal-page td,
.legal-page th{
    color:#ccc;
    line-height:1.8;
}

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

.legal-table th,
.legal-table td{
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:14px;
    vertical-align:top;
}

.legal-table th{
    width:28%;
    color:#fff;
    font-weight:600;
}

.back-link{
    display:inline-block;
    margin-top:30px;
    color:#4da3ff;
    text-decoration:none;
}


