/* ===== PRINT / PDF ===== */
@media print {
  @page { margin: 15mm; }
  header,
  .hamburger,
  .mobile-nav,
  .hero-btns,
  .scroll-top,
  .property-portals,
  .inquiry-section,
  .sdgs-more-link,
  .back-section { display: none !important; }
  header { position: static !important; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2c2c2c;
    background: white;
    font-size: 10pt;
  }
  .section { padding: 24px 0 !important; }
  .section-inner { max-width: 100% !important; padding: 0 !important; }
  .section-head { margin-bottom: 16px !important; }
  .section-head h2 { font-size: 14pt !important; }
  .hero {
    background: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    margin-top: 0 !important;
    min-height: auto !important;
    height: auto !important;
    padding: 24px !important;
  }
  .hero-illust,
  .hero-deco { display: none !important; }
  .hero-title { font-size: 16pt !important; }
  .hero-desc { font-size: 9pt !important; }
  .about-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .about-card {
    border: 1px solid #ccc !important;
    border-top: 3px solid #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    break-inside: avoid;
  }
  .about-card-icon {
    background: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .steps-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .step-num {
    background: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .property-section {
    background: #2c2c2c !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .property-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .property-icon {
    background: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .outline-table th,
  .outline-table td {
    display: table-cell !important;
    padding: 8px 12px !important;
    font-size: 9pt !important;
  }
  .outline-table th {
    width: 140px;
    color: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .sdgs-poster-img { width: 100% !important; }
  .access-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .access-hours {
    background: #d4601a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .map-area { height: 200px !important; }
  footer {
    background: #1e1e1e !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 20px !important;
  }
  .footer-inner {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
  }
  section { break-inside: avoid; }
}
/* ===== BASE ===== */
:root {
  --primary: #2c2c2c;
  --accent: #d4601a;
  --accent2: #e8813a;
  --light: #faf8f5;
  --white: #ffffff;
  --text: #2c2c2c;
  --gray: #999;
  --border: #e8e2d8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
}
.about-card-icon i,
.property-icon i {
  font-size: 1.4rem;
  color: white;
}
.form-icon i {
  font-size: 2.5rem;
  color: white;
}
.portal-btn i {
  font-size: 1rem;
}

/* ===== MOBILE STYLES (?767px) ===== */
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
  }
  .logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .logo span {
    display: block;
    font-size: 0.55rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.15em;
    margin-top: 2px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  nav { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 2px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 150;
    flex-direction: column;
    padding: 32px 24px;
    overflow-y: auto;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a::after { content: '→'; color: var(--accent); font-size: 0.9rem; }
  .mobile-nav a.nav-contact {
    color: var(--accent);
    font-weight: 700;
  }
  .mobile-nav-tel {
    margin-top: 32px;
    text-align: center;
    padding: 24px;
    background: var(--light);
    border-radius: 4px;
  }
  .mobile-nav-tel .label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 300;
  }
  .mobile-nav-tel a {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    border: none;
    padding: 0;
    justify-content: center;
  }
  .mobile-nav-tel a::after { display: none; }
  .mobile-nav-tel .hours {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 6px;
    font-weight: 300;
    line-height: 1.7;
  }
  .header-tel-btn { display: none; }
  .hero {
    margin-top: 56px;
    min-height: 520px;
    height: auto;
    padding: 48px 0 52px;
    background: linear-gradient(135deg, #b84d10 0%, #d4601a 45%, #e8813a 75%, #f0a060 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 75% 25%, rgba(255,220,180,0.18) 0%, transparent 50%),
      radial-gradient(circle at 25% 75%, rgba(180,80,20,0.15) 0%, transparent 50%);
  }
  .hero-deco { display: none; }
  .hero-illust { display: none; }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
  }
  .hero-left { width: 100%; }
  .hero-tag {
    color: rgba(255,255,255,0.75);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    font-weight: 300;
    margin-bottom: 16px;
    display: block;
  }
  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .hero-title em {
    font-style: normal;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    padding-bottom: 2px;
  }
  .hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 13px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
  .hero-btn.primary { background: white; color: var(--accent); }
  .hero-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
  }
  .hero-btn::after { content: '→'; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .section { padding: 56px 16px; }
  .section-inner { max-width: 100%; }
  .section-head { text-align: center; margin-bottom: 40px; }
  .section-head h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }
  .section-head .en {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
  }
  .about-section { background: var(--light); }
  .about-lead {
    text-align: left;
    font-size: 0.88rem;
    line-height: 2.1;
    color: #444;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .about-lead02 {
    text-align: center;
    font-size: 0.88rem;
    line-height: 2.1;
    color: #444;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 2px;
    padding: 28px 20px;
  }
  .about-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #f0a060);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .about-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
  }
  .about-card p {
    font-size: 0.84rem;
    line-height: 2;
    color: #555;
    font-weight: 300;
  }
  h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-align: center;
  }
  .steps-section { background: var(--white); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    position: relative;
  }
  .steps-grid::before { display: none; }
  .step-item {
    text-align: center;
    padding: 24px 12px 28px;
    position: relative;
  }
  .step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
  }
  .step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.45;
  }
  .step-num .num { font-family: 'Noto Serif JP', serif; font-size: 1.2rem; font-weight: 700; line-height: 1; }
  .step-num .step-en { font-size: 0.5rem; letter-spacing: 0.12em; opacity: 0.7; margin-top: 2px; }
  .step-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
  }
  /* STEP 03 リボン（モバイル） */
  /* STEP 03 プレゼントボックス（モバイル） */
  .step-gift-box {
    width: 73px;
    height: 68px;
    margin: 0 auto 16px;
    display: block;
    overflow: visible;
  }
  .property-section { background: #2c2c2c; }
  .property-section .section-head h2 { color: white; }
  .property-section .section-head .en { color: rgba(255,255,255,0.4); }
  .property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }
  .property-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.25s;
  }
  .property-card:active { background: rgba(255,255,255,0.13); }
  .property-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .property-cat { font-size: 0.6rem; color: var(--accent); }
  .property-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.82rem;
    color: white;
    font-weight: 600;
    line-height: 1.6;
  }
  .property-portals {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .portal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: 100%;
  }
  .outline-section { background: var(--light); }
  .outline-table {
    width: 100%;
    border-collapse: collapse;
  }
  .outline-table tr { border-bottom: 1px solid var(--border); }
  .outline-table th {
    display: block;
    width: 100%;
    padding: 14px 16px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: left;
    background: none;
  }
  .outline-table td {
    display: block;
    width: 100%;
    padding: 2px 16px 14px;
    font-size: 0.84rem;
    color: #444;
    line-height: 1.8;
    font-weight: 300;
  }
  .outline-table a { color: black; }
  .sdgs-section { background: var(--light); }
  .sdgs-poster {
    margin-bottom: 32px;
    border-radius: 4px;
    overflow: hidden;
  }
  .sdgs-poster-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .sdgs-more-link { text-align: center; }
  .sdgs-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: background 0.2s;
  }
  .sdgs-btn:hover { background: var(--accent2); }
  .access-section { background: var(--white); }
  .access-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .access-info h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  .access-detail { list-style: none; margin-bottom: 24px; }
  .access-detail li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.84rem;
    align-items: flex-start;
  }
  .access-detail li .label {
    min-width: 60px;
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-top: 2px;
  }
  .access-detail li .value { color: var(--text); line-height: 1.7; font-weight: normal; }
  .access-detail li a { color: var(--accent); text-decoration: none; font-weight: normal; }
  .access-hours {
    background: var(--accent);
    border-radius: 4px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hours-item .label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
    font-weight: 500;
  }
  .hours-item .value { font-size: 0.84rem; color: white; font-weight: 300; }
  .map-area {
    border-radius: 4px;
    height: 260px;
    overflow: hidden;
  }
  .map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .inquiry-section { background: var(--accent); }
  .inquiry-section .section-head h2 { color: white; }
  .inquiry-section .section-head .en { color: rgba(255,255,255,0.4); }
  .inquiry-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inquiry-tel {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
  }
  .inquiry-tel .tel-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    font-weight: 300;
  }
  .inquiry-tel a {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
  }
  .inquiry-tel .hours {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 300;
  }
  .inquiry-form-btn {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .inquiry-form-btn p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 300;
  }
  .form-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent);
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    width: 100%;
    justify-content: center;
  }
  .form-link::after { content: '→'; }
  footer {
    background: #1e1e1e;
    color: rgba(255,255,255,0.75);
    padding: 40px 16px 24px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
  }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
  }
  .footer-sub {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }
  .footer-address {
    font-size: 0.74rem;
    line-height: 2;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
  }
  .footer-address a { color: var(--accent); text-decoration: none; }
  .footer-nav h4 {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .footer-nav ul { list-style: none; }
  .footer-nav ul li { margin-bottom: 8px; }
  .footer-nav ul li a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 300;
  }
  .footer-copy {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    letter-spacing: 0.06em;
  }
  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 99;
  }
  a[href^="tel:"] { text-decoration: none; }
}

/* ===== PC STYLES (768px以上) ===== */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: black;
  }
  .about-card-icon i,
  .property-icon i { font-size: 1.4rem; color: white; }
  .form-icon i { font-size: 2.5rem; color: white; }
  .portal-btn i { font-size: 1rem; }
  .header-tel-btn { display: none; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 70px;
  }
  .logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
  .logo span {
    display: block;
    font-size: 0.62rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.22em;
    margin-top: 3px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  nav {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    transition: color 0.2s;
    padding: 6px 12px;
    text-align: center;
    line-height: 1.4;
  }
  nav a .en {
    display: block;
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    font-weight: 500;
  }
  nav a:hover { color: var(--accent); }
  .nav-contact {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 2px;
    padding: 10px 18px !important;
    transition: background 0.2s !important;
  }
  .nav-contact:hover { background: var(--accent) !important; }
  .nav-contact .en { color: rgba(255,255,255,0.7) !important; }
  .hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 580px;
    background: linear-gradient(135deg, #b84d10 0%, #d4601a 45%, #e8813a 75%, #f0a060 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 75% 25%, rgba(255,220,180,0.18) 0%, transparent 50%),
      radial-gradient(circle at 25% 75%, rgba(180,80,20,0.15) 0%, transparent 50%);
  }
  .hero-deco {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-deco svg { width: 100%; height: 100%; }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .hero-left { flex: 1; min-width: 0; }
  .hero-illust {
    flex: 0 0 420px;
    width: 420px;
    animation: fadeUp 0.9s 0.3s ease both;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  }
  .hero-illust svg { width: 100%; height: auto; }
  @media (max-width: 900px) { .hero-illust { display: none; } }
  .hero-tag {
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    font-weight: 300;
    margin-bottom: 22px;
    display: block;
    animation: fadeUp 0.8s ease both;
  }
  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.65;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-title em {
    font-style: normal;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    padding-bottom: 2px;
  }
  .hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 2.1;
    max-width: 460px;
    font-weight: 300;
    margin-bottom: 44px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
  .hero-btn.primary { background: white; color: var(--accent); }
  .hero-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
  }
  .hero-btn::after { content: '→'; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .section { padding: 88px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-head { text-align: center; margin-bottom: 60px; }
  .section-head h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .section-head .en {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
  }
  .about-section { background: var(--light); }
  .about-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 0.93rem;
    line-height: 2.2;
    color: #444;
    font-weight: 300;
  }
  .about-lead02 {
    text-align: center;
    font-size: 0.88rem;
    line-height: 2.1;
    color: #444;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .about-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 2px;
    padding: 40px 36px;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .about-card:hover { box-shadow: 0 12px 40px rgba(28,45,74,0.1); transform: translateY(-4px); }
  .about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #f0a060);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .about-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
  }
  h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    text-align: center;
  }
  .about-card p { font-size: 0.85rem; line-height: 2; color: #555; font-weight: 300; }
  .sdgs-section { background: var(--light); }
  .sdgs-poster { margin-bottom: 48px; border-radius: 4px; overflow: hidden; }
  .sdgs-poster-img { width: 80%; height: auto; display: block; margin: 0 auto; }
  .sdgs-more-link { text-align: center; }
  .sdgs-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: background 0.2s, transform 0.2s;
  }
  .sdgs-btn:hover { background: var(--accent2); transform: translateY(-2px); }
  .steps-section { background: var(--white); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  .step-item { text-align: center; padding: 28px 16px 36px; position: relative; }
  .step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    transition: transform 0.3s;
  }
  .step-item:hover .step-num { transform: scale(1.1); }
  .step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.45;
  }
  .step-num .num { font-family: 'Noto Serif JP', serif; font-size: 1.4rem; font-weight: 700; line-height: 1; }
  .step-num .step-en { font-size: 0.55rem; letter-spacing: 0.15em; opacity: 0.7; margin-top: 2px; }
  .step-label { font-family: 'Noto Serif JP', serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
  .step-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.85; font-weight: 300; }

  /* ===== STEP 03 プレゼントボックス ===== */
  .step-gift-box {
    width: 85px;
    height: 80px;
    margin: 0 auto 22px;
    transition: transform 0.3s;
    display: block;
    overflow: visible;
  }
  .step-item:hover .step-gift-box { transform: scale(1.1); }
  .property-section { background: #2c2c2c; }
  .property-section .section-head h2 { color: white; }
  .property-section .section-head .en { color: rgba(255,255,255,0.4); }
  .property-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  .property-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 28px 14px;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    display: block;
  }
  .property-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
  .property-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .property-cat { font-size: 0.65rem; color: var(--accent); }
  .property-name { font-family: 'Noto Serif JP', serif; font-size: 0.85rem; color: white; font-weight: 600; line-height: 1.6; }
  .property-portals { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
  .portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .portal-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .outline-section { background: var(--light); }
  .outline-table { width: 100%; max-width: 800px; margin: 0 auto; border-collapse: collapse; }
  .outline-table tr { border-bottom: 1px solid var(--border); }
  .outline-table th {
    width: 180px;
    padding: 20px 24px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-align: left;
    vertical-align: top;
  }
  .outline-table td { padding: 20px 24px; font-size: 0.85rem; color: #444; line-height: 1.8; font-weight: 300; }
  .access-section { background: var(--white); }
  .access-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
  .access-info h3 { font-family: 'Noto Serif JP', serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; letter-spacing: 0.06em; }
  .access-detail { list-style: none; margin-bottom: 28px; }
  .access-detail li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; align-items: flex-start; }
  .access-detail li .label { min-width: 72px; font-size: 0.75rem; color: var(--gray); font-weight: 500; letter-spacing: 0.08em; padding-top: 2px; }
  .access-detail li .value { color: var(--text); line-height: 1.7; font-weight: normal; }
  .access-detail li a { color: var(--accent); text-decoration: none; font-weight: normal; }
  .access-hours { background: var(--accent); border-radius: 4px; padding: 24px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hours-item .label { font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.75); margin-bottom: 6px; font-weight: 500; }
  .hours-item .value { font-size: 0.88rem; color: white; font-weight: 300; }
  .map-area { background: var(--light); border-radius: 4px; height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .map-area iframe { width: 100%; height: 100%; border: none; }
  .inquiry-section { background: var(--accent); }
  .inquiry-section .section-head h2 { color: white; }
  .inquiry-section .section-head .en { color: rgba(255,255,255,0.4); }
  .inquiry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; }
  .inquiry-tel { text-align: center; padding: 40px 32px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; }
  .inquiry-tel .tel-label { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 12px; font-weight: 300; }
  .inquiry-tel a { display: block; font-family: 'Noto Serif JP', serif; font-size: 2rem; font-weight: 700; color: white; text-decoration: none; margin-bottom: 8px; }
  .inquiry-tel .hours { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; }
  .inquiry-form-btn { text-align: center; padding: 40px 32px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
  .inquiry-form-btn .form-icon { font-size: 3rem; }
  .inquiry-form-btn p { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; }
  .form-link { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--accent); text-decoration: none; padding: 13px 28px; border-radius: 2px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; transition: transform 0.2s, box-shadow 0.2s; }
  .form-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
  .form-link::after { content: '→'; }
  footer { background: #1e1e1e; color: rgba(255,255,255,0.75); padding: 56px 24px 28px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
  .footer-logo { font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 6px; }
  .footer-sub { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; margin-bottom: 18px; }
  .footer-address { font-size: 0.77rem; line-height: 2; font-weight: 300; color: rgba(255,255,255,0.55); }
  .footer-address a { color: var(--accent); text-decoration: none; }
  .footer-nav h4 { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--accent); margin-bottom: 16px; font-weight: 500; text-transform: uppercase; }
  .footer-nav ul { list-style: none; }
  .footer-nav ul li { margin-bottom: 10px; }
  .footer-nav ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-weight: 300; letter-spacing: 0.05em; }
  .footer-nav ul li a:hover { color: white; }
  .footer-copy { max-width: 1100px; margin: 0 auto; font-size: 0.7rem; color: rgba(255,255,255,0.3); text-align: center; letter-spacing: 0.1em; }
  .scroll-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--primary); color: white; border: none; border-radius: 2px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 99; }
  .scroll-top:hover { background: var(--accent); transform: translateY(-3px); }
}
/* ===== TABLET ===== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-inner { padding: 0 16px; }
  nav a { padding: 6px 8px; font-size: 0.68rem; }
  .hero-content { padding: 0 28px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: repeat(3, 1fr); }
  .about-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-inner > div:nth-last-child(-n+2):not(:first-child) { display: none; }
}
