<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand-yellow: #F5C200;
    --brand-dark: #1a1a1a;
    --brand-navy: #1B2A4A;
    --brand-blue: #2C5282;
    --brand-orange: #E07B30;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-light: #888;
    --bg-light: #F7F7F5;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
    --yellow: #F5C200;
    --dark: #111;
    --navy: #1B2A4A;
    --white: #fff;
    --gray-bg: #F5F5F3;
    --gray-light: #E8E8E8;
    --gray-mid: #999;
    --gray-text: #555;
    --green: #1E7E4A;
    --green-bg: #E6F4EC;
    --red: #C62828;
    --red-bg: #FDECEA;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--brand-dark);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 56px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  .header-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 18px; font-weight: 700;
    color: var(--brand-yellow);
    letter-spacing: 2px;
    text-decoration: none;
  }

  .header-logo span {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 2px 6px;
    margin-right: 6px;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  /* 中の画像（img）の調整 */
  .header-logo img {
    width: auto;          /* 横幅は自動調整 */
    height: 40px;         /* ★ここで縦幅を好きな大きさに調整してください */
    max-width: 100%;      /* 親要素からはみ出さないようにガード */
    object-fit: contain;  /* 画像が歪むのを防ぎます */
    margin-top: 16px;
  }

  .header-nav { display: flex; align-items: center; gap: 32px; }
  .header-nav a { color: #ccc; text-decoration: none; font-size: 13px; transition: color .2s; }
  .header-nav a:hover { color: var(--brand-yellow); }

  .header-cta {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border: none; padding: 9px 20px;
    font-size: 12px; font-weight: 700;
    cursor: pointer; border-radius: 3px;
    font-family: 'Noto Sans JP', sans-serif;
    text-decoration: none;
    transition: background .2s;
  }
  .header-cta:hover { background: #e0ae00; }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 60%, #1a1a1a 100%);
    color: white;
    padding: 80px 40px 80px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex; align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute; right: 0; top: 0;
    width: 40%; height: 100%;
    background: url('img/1015mv_sp.png') center/cover no-repeat;
    opacity: 1;
  }
  .hero-bread {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
  }
  .hero-content { position: relative; z-index: 1; max-width: 700px; }

  .hero-badge {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-size: 11px; font-weight: 700;
    padding: 4px 12px; margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 42px; font-weight: 900;
    line-height: 1.2; margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .hero h1 em {
    color: var(--brand-yellow);
    font-style: normal;
  }

  .hero-sub {
    font-size: 15px; color: #ccc;
    margin-bottom: 24px; line-height: 1.8;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 700px;
    margin-bottom: 24px;
    border: 1px solid #252525;
    border-radius: var(--r);
    overflow: hidden;
  }

  .h-stat {
    padding: 14px 18px;
    background: #161616;
    border-right: 1px solid #252525;
  }
  .h-stat:last-child { border-right: none; }
  .h-stat-label { font-size: 10px; color: #666; margin-bottom: 4px; }
  .h-stat-val { font-size: 22px; font-weight: 900; color: var(--brand-yellow); line-height: 1.15; }
  .h-stat-val.white { color: var(--white); }
  .h-stat-val .accent { color: var(--brand-yellow); }
  .h-stat-val small { font-size: 12px; font-weight: 400; color: #666; }
  .h-stat-note { font-size: 10px; color: #444; margin-top: 3px; }

  .hero-checks {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 32px;
  }

  .hero-check {
    display: flex; align-items: center; gap: 6px;
    font-size: 18px; color: #fff;
  }

  .hero-check::before {
    content: '■';
    color: var(--brand-yellow);
    font-weight: 700; font-size: 13px;
  }

  .btn-primary {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 14px 32px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; border-radius: 3px;
    border: none; cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: #e0ae00; transform: translateY(-1px); }

  .btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 13px 28px;
    font-size: 13px; font-weight: 500;
    text-decoration: none; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
    transition: border-color .2s;
  }
  .btn-outline:hover { border-color: white; }

  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

  /* ===== SECTION COMMONS ===== */
  section { padding: 60px 40px; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-label {
    text-align: center;
    font-size: 11px; font-weight: 700;
    color: var(--brand-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .section-title {
    text-align: center;
    font-size: 28px; font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }

  .section-sub {
    text-align: center;
    font-size: 13px; color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
  }

  /* ===== MERITS ===== */
  .merits { background: var(--gray-bg); }

  .merits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .merit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    transition: box-shadow .2s;
  }
  .merit-card:hover { box-shadow: var(--shadow-md); }

  .merit-icon {
    width: 40px; height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 14px;
  }

  .merit-card h3 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 10px;
  }

  .merit-card p {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.8;
  }

  /* ===== SERVICES ===== */
  .services { background: var(--bg-white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .service-item {
    background: white;
    border-radius: 8px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid var(--border);
  }

  .service-item .icon { font-size: 24px; margin-bottom: 8px; }
  .service-item h4 { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
  .service-item p { font-size: 10px; color: var(--text-light); }

  /* 中の画像（img）の調整 */
  .service-item img {
    width: auto;          /* 横幅は自動調整 */
    height: 35px;         /* ★ここで縦幅を好きな大きさに調整してください */
    max-width: 100%;      /* 親要素からはみ出さないようにガード */
    object-fit: contain;  /* 画像が歪むのを防ぎます */
  }

  .services-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .photo-card { border-radius: 8px; overflow: hidden; position: relative; }

  .photo-card img {
    width: 100%; height: 200px; object-fit: cover; display: block;
    transition: transform .3s;
  }
  .photo-card:hover img { transform: scale(1.03); }

  .photo-card-label {
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
  }
  .photo-card-label h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
  .photo-card-label p { font-size: 12px; color: var(--text-secondary); line-height: 1.7; }

  /* ===== PRICING ===== */
  .pricing { background: var(--gray-bg);}

  .pricing-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 32px;
  }

  .pricing-tab {
    padding: 8px 28px; border-radius: 4px;
    font-size: 13px; font-weight: 500;
    cursor: pointer; border: 1px solid var(--brand-yellow);
    background: white; transition: all .2s;
  }
  .pricing-tab.active { background: var(--brand-yellow); color: white; border-color: var(--white); }

  .campaign-bar {
    background: #FFF8E1;
    border: 1px solid var(--brand-yellow);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 12px; color: var(--brand-dark);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 8px;
  }

  .campaign-bar::before { content: '☆'; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .plan-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
  }
  .plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .plan-card.featured { border-color: var(--brand-yellow); }

  .plan-photo { height: 160px; overflow: hidden; position: relative; }
  .plan-photo img { width: 100%; height: 100%; object-fit: cover; }

  .plan-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 3px;
  }

  .plan-badge.popular {
    background: #E53E3E; color: white;
  }

  .plan-body { padding: 20px; }
  .plan-type { font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
  .plan-name { font-size: 15px; font-weight: 700; margin-bottom: 12px; }

  .plan-price {
    font-size: 28px; font-weight: 900;
    color: var(--brand-dark);
    margin-bottom: 10px;
    line-height: 1;
  }
  .plan-price span { font-size: 13px; font-weight: 400; color: var(--text-secondary); }

  .yoko{ position: relative;}
  .yoko::before {
    position: absolute;
    content: "";
    display: block;
    transform: rotate(0);
    background-color: red;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .p-specs { border-top: 1px solid var(--gray-light); padding-top: 9px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 4px; }
  .p-spec { display: flex; justify-content: space-between; font-size: 11px; }
  .p-spec .pk { color: var(--gray-mid); }
  .p-spec .pv { font-weight: 700; }

  .plan-status {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    margin-top: 10px;
  }

  .p-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .p-status.open {
    background: var(--green-bg);
    color: var(--green);
  }
  .plan-status.available { background: #E6F4EA; color: #2E7D32; }
  .plan-status.full { background: #FDECEA; color: #C62828; }

  .p-btns {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .p-btn-main {
    display: block;
    padding: 9px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--dark);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
  }
  .options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .option-item {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
  }
  .option-item .opt-label { font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
  .option-item .opt-name { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
  .option-item .opt-price { font-size: 18px; font-weight: 900; color: var(--brand-dark); }
  .option-item .opt-price span { font-size: 12px; font-weight: 400; color: var(--text-secondary); }

  /* ===== COMPARISON ===== */
  .comparison {background: var(--white); }

  .compare-table-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 900px; margin: 0 auto;
  }

  .compare-col { padding: 0; }

  .compare-header {
    padding: 20px 28px;
    font-size: 14px; font-weight: 700;
    text-align: center;
  }

  .compare-col.bad .compare-header { background: #666; color: white; }
  .compare-col.good .compare-header { background: var(--brand-navy); color: white; }
  .compare-col.good .compare-header strong { color: var(--brand-yellow); }

  .compare-items { background: white; }

  .compare-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .compare-item .ci-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0; font-weight: 700;
  }

  .compare-col.bad .ci-icon { background: #FDECEA; color: #C62828; }
  .compare-col.good .ci-icon { background: #E6F4EA; color: #2E7D32; }

  .compare-footer {
    padding: 16px 28px; text-align: center;
    font-size: 13px;
  }
  .compare-col.bad .compare-footer { background: #f5f5f5; }
  .compare-col.bad .compare-footer strong { color: #C62828; font-size: 15px; }
  .compare-col.good .compare-footer { background: var(--brand-yellow); }
  .compare-col.good .compare-footer strong { color: var(--brand-dark); font-size: 15px; }

  .compare-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top:40px;
  }

  /* ===== FLOW ===== */
  .flow { background: var(--gray-bg); }

  .flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
  }

  .flow-steps::before {
    content: '';
    position: absolute; top: 36px; left: 12%; right: 12%;
    height: 2px; background: var(--brand-yellow); z-index: 0;
  }

  .flow-step {
    text-align: center; position: relative; z-index: 1;
    padding: 0 12px;
  }

  .flow-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-weight: 900; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 2px 10px rgba(245,194,0,0.4);
  }

  .flow-step .flow-icon { font-size: 20px; margin-bottom: 8px; }
  .flow-step h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
  .flow-step p { font-size: 11px; color: var(--text-secondary); line-height: 1.7; }

  /* 中の画像（img）の調整 */
  .flow-step img {
    width: auto;          /* 横幅は自動調整 */
    height: 35px;         /* ★ここで縦幅を好きな大きさに調整してください */
    max-width: 100%;      /* 親要素からはみ出さないようにガード */
    object-fit: contain;  /* 画像が歪むのを防ぎます */
  }
  /* ===== LOCATIONS ===== */
  .locations { background: var(--white); }

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .location-card {
    background: white;
    border-radius: 10px;
    padding: 28px;
    border: 1px solid var(--border);
  }

  .location-card h3 {
    font-size: 16px; font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
  }

  .location-info { display: flex; flex-direction: column; gap: 10px; }

  .location-row {
    display: flex; gap: 8px;
    font-size: 12px;
  }
  .location-row .l-label {
    color: var(--text-light); min-width: 60px;
    flex-shrink: 0;
  }
  .location-row .l-val { color: var(--text-primary); }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 60px 40px;
  }

  .contact .s-title { color: var(--white); }
  .contact .s-sub { color: rgba(255,255,255,.6); margin-bottom: 28px; }

  .contact-meta { 
   display: flex; justify-content: center; gap: 32px; 
   flex-wrap: wrap; 
   margin-bottom: 28px; }

  .contact-meta-item { 
   font-size: 13px; 
   color: rgba(255,255,255,.65); 
  }

  .contact-3btns { 
    display: flex; justify-content: 
    center; gap: 12px; 
    flex-wrap: wrap; 
    margin-bottom: 20px; 
  }

   .btn-ghost-w { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--white); padding: 10px 20px; font-size: 12px; border-radius: 4px; text-decoration: none; border: 1px solid rgba(255,255,255,.25); transition: border-color .2s; white-space: nowrap; }
   .btn-ghost-w:hover { border-color: rgba(255,255,255,.6); }

  .contact-phone .contact-meta-item::before { content: '??'; }
  .contact-email .contact-meta-item::before { content: '??'; }






  /* ===== FAQ ===== */
  .faq { background: var(--bg-white); }

  .faq-list { max-width: 800px; margin: 0 auto; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    width: 100%; background: none; border: none;
    text-align: left; padding: 20px 0;
    font-size: 14px; font-weight: 700;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: flex-start; gap: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-primary);
  }

  .faq-q .q-prefix {
    color: var(--brand-yellow); font-size: 16px; flex-shrink: 0; margin-top: 1px;
  }

  .faq-q .q-text { flex: 1; }

  .faq-q .q-arrow {
    font-size: 12px; color: var(--text-light);
    transition: transform .3s; flex-shrink: 0;
  }
  .faq-item.open .q-arrow { transform: rotate(180deg); }

  .faq-a {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.9;
    padding: 0 0 20px 28px;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--brand-dark);
    color: #aaa;
    text-align: center;
    padding: 28px 40px;
    font-size: 11px;
  }
  footer strong { color: var(--brand-yellow); font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

  /* ===== link ===== */
.link-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.link-card {
  display: block;
  margin-top: 30px;
  padding: 20px;
  background: var(--brand-yellow);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ホバー時の動き */
.link-card:hover {
  transform: translateY(-4px);
  border-color: #666;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  background: #333;
  border-radius: 4px;
  color: #aaa;
}

.link-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.link-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero h1 { font-size: 28px; }
    .merits-grid, .services-photos, .pricing-grid, .locations-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
    .flow-steps::before { display: none; }
    .compare-table-wrap { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    header { padding: 0 16px; }
    .header-nav { display: none; }
    section { padding: 60px 20px; }
    .location-card { height: 374px; }
    .hero { padding: 60px 20px; }
    .compare-photos { grid-template-columns: 1fr; }
  }
</style>