:root {
    --orange: #F07030;
    --orange-dark: #C85A18;
    --orange-light: #FF9B5A;
    --orange-vlight: #FFF0E5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --soft-white: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-mid: #555555;
    --text-light: #888888;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
  }

  /* ===== Common ===== */
  .ct-section { padding: 100px 0; }
  .ct-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .ct-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
  }
  .ct-section-title {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .ct-section-title.centered { text-align: center; }
  .ct-section-lead {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 48px;
  }
  .ct-section-lead.centered {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== Page Header ===== */
  .ct-header {
    position: relative;
    padding: 180px 0 96px;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 55%, var(--orange-vlight) 100%);
    overflow: hidden;
  }
  .ct-header::before,
  .ct-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .ct-header::before {
    width: 480px; height: 480px; top: -140px; right: -120px;
    background: radial-gradient(circle, rgba(240,112,48,0.16) 0%, rgba(240,112,48,0) 70%);
  }
  .ct-header::after {
    width: 380px; height: 380px; bottom: -160px; left: -120px;
    background: radial-gradient(circle, rgba(255,155,90,0.18) 0%, rgba(255,155,90,0) 70%);
  }
  .ct-header-inner { position: relative; z-index: 1; text-align: center; }
  .ct-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
  }
  .ct-breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .ct-breadcrumb a:hover { color: var(--orange); }
  .ct-breadcrumb span.sep { margin: 0 10px; color: var(--text-light); }
  .ct-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .ct-header p.lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 720px;
    margin: 0 auto;
  }

  /* ===== SVG Icon ===== */
  .tg-svg-icon { width: 28px; height: 28px; display: inline-block; vertical-align: middle; }

  /* ===== Photo Frame ===== */
  .photo-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    background: var(--white);
    border: 2px dashed var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s ease;
  }
  .photo-frame.wide { aspect-ratio: 2 / 1; min-height: 320px; }
  .photo-frame:hover { border-color: var(--orange); }
  .photo-frame[data-label]::before {
    content: attr(data-label);
    position: absolute;
    top: 12px; left: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .photo-frame-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    text-align: center;
    padding: 16px;
  }
  .photo-frame-icon { width: 40px; height: 40px; opacity: 0.85; }
  .photo-frame-text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
  }
  .photo-frame-hint {
    font-size: 0.7rem;
    color: var(--text-light);
  }

  /* ===== Method Cards ===== */
  .method-section { background: var(--off-white); }
  .method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .method-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(240,112,48,0.14);
    border-color: rgba(240,112,48,0.2);
  }
  .method-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--orange-vlight);
    color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }
  .method-icon-wrap .tg-svg-icon { width: 32px; height: 32px; }
  .method-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .method-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 22px;
    flex: 1;
  }
  .method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.92rem;
    transition: gap 0.2s ease, color 0.2s ease;
  }
  .method-link:hover { color: var(--orange); gap: 12px; }
  .method-link::after { content: '\2192'; }

  /* ===== Contact Form Section ===== */
  .contact-section { background: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  .contact-side h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .contact-side p.desc {
    color: var(--text-mid);
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .contact-side .photo-frame { margin-bottom: 28px; }
  .info-block {
    background: var(--off-white);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    padding: 20px 22px;
  }
  .info-block h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .info-block h4 .tg-svg-icon { width: 18px; height: 18px; color: var(--orange); }
  .info-block p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 0;
  }

  /* ===== Form ===== */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(26,26,26,0.06);
  }
  .form-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--orange-vlight);
  }
  .form-group { margin-bottom: 22px; }
  .form-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .form-label .req {
    color: var(--orange);
    margin-left: 6px;
    font-size: 0.7rem;
    font-weight: 800;
  }
  .form-label .opt {
    color: var(--text-light);
    margin-left: 6px;
    font-size: 0.7rem;
    font-weight: 700;
  }
  .form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,112,48,0.12);
  }
  .form-control::placeholder { color: var(--text-light); }
  textarea.form-control { resize: vertical; min-height: 150px; }
  select.form-control {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F07030' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-submit {
    width: 100%;
    padding: 17px;
    background: var(--orange-dark);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.08em;
    margin-top: 10px;
    box-shadow: 0 10px 24px rgba(200,90,24,0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .form-submit:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,90,24,0.32); }
  .form-submit:active { transform: scale(0.99); }
  .privacy-note {
    font-size: 0.74rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
    line-height: 1.8;
  }
  .form-success {
    text-align: center;
    padding: 40px 20px;
  }
  .form-success-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--orange-vlight);
    color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
  }
  .form-success-icon .tg-svg-icon { width: 32px; height: 32px; }
  .form-success h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .form-success p {
    color: var(--text-mid);
    line-height: 2;
    font-size: 0.95rem;
  }

  /* ===== Access Section ===== */
  .access-section { background: var(--off-white); }
  .access-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
  }
  .access-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
  }
  .access-info p {
    color: var(--text-mid);
    line-height: 2;
    font-size: 0.94rem;
    margin-bottom: 18px;
  }
  .access-info .address {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
  }
  .access-info .address strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .access-info .address span {
    display: block;
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.9;
  }
  .access-note {
    background: var(--orange-vlight);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--orange-dark);
    font-size: 0.86rem;
    line-height: 1.8;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .access-note .tg-svg-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

  /* ===== SNS Section ===== */
  .sns-section { background: var(--white); }
  .sns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .sns-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sns-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(240,112,48,0.16);
    border-color: var(--orange-light);
  }
  .sns-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange-vlight);
    color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .sns-icon-wrap .tg-svg-icon { width: 28px; height: 28px; }
  .sns-card h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
  }
  .sns-card .sns-id {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 16px;
    word-break: break-all;
  }
  .sns-follow {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: var(--orange-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: background 0.2s ease;
  }
  .sns-card:hover .sns-follow { background: var(--orange); }

  /* ===== FAQ Link Card ===== */
  .faq-link-section { background: var(--off-white); padding: 64px 0; }
  .faq-link-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .faq-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(240,112,48,0.14);
    border-color: var(--orange-light);
  }
  .faq-link-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange-vlight);
    color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
  }
  .faq-link-icon .tg-svg-icon { width: 28px; height: 28px; }
  .faq-link-text { flex: 1; }
  .faq-link-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
  }
  .faq-link-text p {
    font-size: 0.86rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.7;
  }
  .faq-link-arrow {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ===== Fade ===== */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.is-visible { opacity: 1; transform: none; }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    .ct-section { padding: 64px 0; }
    .ct-header { padding: 140px 0 64px; }
    .method-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 32px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .access-grid { grid-template-columns: 1fr; gap: 32px; }
    .sns-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-link-card { flex-direction: column; text-align: center; padding: 28px 24px; }
  }
  @media (max-width: 480px) {
    .sns-grid { grid-template-columns: 1fr; }
  }
