.site-body {
    padding-top:0
  }
  .re-lp {
    --re-main: #1f4d45;
    --re-main-deep: #143832;
    --re-sub: #8aa39b;
    --re-accent: #e29d6c;
    --re-accent-deep: #c77e4d;
    --re-bg: #f8f8f5;
    --re-soft: #eef2ef;
    --re-soft-2: #f3eee8;
    --re-text: #1f2d2a;
    --re-muted: #687572;
    --re-white: #ffffff;
    --re-border: rgba(31, 77, 69, 0.14);
    --re-shadow: 0 18px 45px rgba(31, 77, 69, 0.12);

    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    color: var(--re-text);
    line-height: 1.8;
    background: var(--re-white);
  }

  .re-lp * {
    box-sizing: border-box;
  }

  .re-lp img {
    max-width: 100%;
    display: block;
  }

  .re-full-width-container {
      position:relative;
      width: 100vw;
      left: 50%;
      margin-left: -50vw;
  }

  .re-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }

  .re-section {
    padding: 88px 0;
  }

  .re-section-soft {
    background: var(--re-bg);
  }

  .re-section-blue {
    background: linear-gradient(135deg, var(--re-main-deep) 0%, var(--re-main) 58%, #315f56 100%);
    color: var(--re-white);
  }

  .re-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--re-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .re-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
  }

  .re-heading {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.35;
    color: var(--re-main);
    margin: 0 0 18px;
    letter-spacing: 0.03em;
  }

  .re-section-blue .re-heading {
    color: var(--re-white);
  }

  .re-lead {
    font-size: 16px;
    color: var(--re-muted);
    max-width: 760px;
    margin: 0;
  }

  .re-section-blue .re-lead {
    color: rgba(255, 255, 255, 0.82);
  }

  .re-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }

  .re-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .re-btn:hover {
    transform: translateY(-2px);
  }

  .re-btn-primary {
    color: var(--re-white);
    background: var(--re-accent);
    box-shadow: 0 12px 30px rgba(226, 157, 108, 0.28);
  }

  .re-btn-primary:hover {
    background: var(--re-accent-deep);
  }

  .re-btn-secondary {
    color: var(--re-main);
    background: var(--re-white);
    border: 1px solid var(--re-border);
  }

  .re-btn-outline {
    color: var(--re-white);
    border: 1px solid rgba(255, 255, 255, 0.42);
  }

  .re-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(20, 56, 50, 0.6) 10%, rgba(31, 77, 69, 0.4) 70%, rgba(31, 77, 69, 0.1) 100%),
      url("https://edison-capital.jp/wp-content/uploads/2026/04/tierra-mallorca-rgJ1J8SDEAY-unsplash-1.jpg") center/cover no-repeat;
    color: var(--re-white);
  }

  .re-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0 120px;
  }

  .re-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
  }

  .re-hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.22;
    margin: 0 0 24px;
    letter-spacing: 0.04em;
  }

  .re-hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 19px);
    margin: 0;
  }

  .re-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .re-hero-badge {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
  }

  .re-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

  .re-intro-card {
    background: var(--re-white);
    border: 1px solid var(--re-border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--re-shadow);
  }

  .re-license-box {
    margin-top: 24px;
    padding: 20px;
    border-left: 4px solid var(--re-accent);
    background: var(--re-soft);
    border-radius: 14px;
  }

  .re-license-box strong {
    display: block;
    color: var(--re-main);
    margin-bottom: 4px;
  }

  .re-photo-stack {
    position: relative;
    min-height: 420px;
  }

  .re-photo-main,
  .re-photo-sub {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--re-shadow);
  }

  .re-photo-main {
    top: 0;
    right: 0;
    width: 82%;
    height: 330px;
  }

  .re-photo-sub {
    left: 0;
    bottom: 0;
    width: 58%;
    height: 210px;
    border: 8px solid var(--re-white);
  }

  .re-photo-main img,
  .re-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .re-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
  }

  .re-section-head .re-lead {
    max-width: 480px;
  }

  .re-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .re-service-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 26px;
    background: var(--re-white);
    border: 1px solid var(--re-border);
    box-shadow: 0 12px 32px rgba(31, 77, 69, 0.08);
  }

  .re-service-img {
    height: 160px;
    overflow: hidden;
  }

  .re-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .re-service-card:hover .re-service-img img {
    transform: scale(1.06);
  }

  .re-service-body {
    padding: 24px;
  }

  .re-service-no {
    display: inline-flex;
    color: var(--re-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .re-service-card h3 {
    color: var(--re-main);
    font-size: 21px;
    margin: 0 0 10px;
  }

  .re-service-card p {
    color: var(--re-muted);
    font-size: 14.5px;
    margin: 0;
  }

  .re-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .re-strength-card {
    padding: 26px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .re-strength-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(226, 157, 108, 0.22);
    color: #ffd6ba;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .re-strength-card h3 {
    color: var(--re-white);
    font-size: 18px;
    margin: 0 0 10px;
  }

  .re-strength-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    margin: 0;
  }

  .re-use-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
  }

  .re-use-image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--re-shadow);
  }

  .re-use-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
  }

  .re-use-list {
    display: grid;
    gap: 16px;
  }

  .re-use-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background: var(--re-white);
    border: 1px solid var(--re-border);
  }

  .re-use-num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--re-main);
    color: var(--re-white);
    font-size: 13px;
    font-weight: 800;
  }

  .re-use-item h3 {
    color: var(--re-main);
    margin: 0 0 4px;
    font-size: 18px;
  }

  .re-use-item p {
    color: var(--re-muted);
    margin: 0;
    font-size: 14.5px;
  }

  .re-related {
    background:
      linear-gradient(135deg, rgba(248, 248, 245, 0.94), rgba(238, 242, 239, 0.94)),
      url("https://edison-capital.jp/wp-content/uploads/2026/04/sean-pollock-PhYq704ffdA-unsplash.jpg") center/cover no-repeat;
  }

  .re-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
  }

  .re-related-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 77, 69, 0.12);
    backdrop-filter: blur(8px);
  }

  .re-related-card h3 {
    color: var(--re-main);
    font-size: 18px;
    margin: 0 0 8px;
  }

  .re-related-card p {
    color: var(--re-muted);
    font-size: 14px;
    margin: 0;
  }

  .re-company-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
  }

  .re-company-note {
    padding: 30px;
    border-radius: 28px;
    background: var(--re-main);
    color: var(--re-white);
  }

  .re-company-note .re-label {
    color: #ffd6ba;
  }

  .re-company-note .re-heading {
    color: var(--re-white);
  }

  .re-company-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 14px 0 0;
  }

  .re-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--re-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(31, 77, 69, 0.08);
  }

  .re-table th,
  .re-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--re-border);
    text-align: left;
    vertical-align: top;
  }

  .re-table th {
    width: 30%;
    color: var(--re-main);
    background: var(--re-soft);
    font-weight: 800;
  }

  .re-table td {
    color: var(--re-muted);
  }

  .re-table tr:last-child th,
  .re-table tr:last-child td {
    border-bottom: none;
  }

  .re-contact-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 30px;
    background: var(--re-white);
    color: var(--re-text);
    box-shadow: var(--re-shadow);
  }

  .re-contact-box h2 {
    color: var(--re-main);
    font-size: clamp(26px, 4vw, 38px);
    margin: 0 0 10px;
  }

  .re-contact-box p {
    color: var(--re-muted);
    margin: 0;
  }

  .re-faq {
    margin-top: 32px;
  }

  .re-faq-item {
    border-bottom: 1px solid var(--re-border);
  }

  .re-faq-question {
    width: 100%;
    padding: 20px 0;
    border: none;
    background: transparent;
    color: var(--re-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .re-faq-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--re-soft);
    color: var(--re-main);
    transition: transform 0.2s ease;
  }

  .re-faq-answer {
    display: none;
    color: var(--re-muted);
    padding: 0 0 20px;
  }

  .re-faq-item.is-open .re-faq-answer {
    display: block;
  }

  .re-faq-item.is-open .re-faq-icon {
    transform: rotate(45deg);
  }

  .re-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .re-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 960px) {
    .re-section {
      padding: 72px 0;
    }

    .re-intro-grid,
    .re-use-grid,
    .re-company-grid {
      grid-template-columns: 1fr;
    }

    .re-photo-stack {
      min-height: 360px;
    }

    .re-service-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .re-strength-grid,
    .re-related-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .re-contact-box {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .re-container {
      width: min(100% - 28px, 1120px);
    }

    .re-hero {
      min-height: 620px;
      background:
        linear-gradient(180deg, rgba(20, 56, 50, 0.95) 0%, rgba(31, 77, 69, 0.83) 62%, rgba(31, 77, 69, 0.48) 100%),
        url("https://edison-capital.jp/wp-content/uploads/2026/04/tierra-mallorca-rgJ1J8SDEAY-unsplash-1.jpg") center/cover no-repeat;
    }

    .re-hero-content {
      padding: 72px 0 100px;
    }

    .re-section-head {
      display: block;
    }

    .re-service-grid,
    .re-strength-grid,
    .re-related-grid {
      grid-template-columns: 1fr;
    }

    .re-photo-main {
      width: 100%;
      height: 260px;
    }

    .re-photo-sub {
      width: 68%;
      height: 170px;
    }

    .re-use-image img {
      height: 340px;
    }

    .re-table th,
    .re-table td {
      display: block;
      width: 100%;
    }

    .re-table th {
      padding-bottom: 8px;
      border-bottom: none;
    }

    .re-table td {
      padding-top: 8px;
    }
  }

#re-latest-posts{
      max-width:1000px;
      margin:0 auto;
      background:#fff;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .re-post-row{
      display:grid;
      grid-template-columns:160px 1fr;
      gap:24px;
      padding:24px 28px;
      border-bottom:1px solid #eee;
      align-items:start;
    }

    .re-post-row:last-child{
      border-bottom:none;
    }

    .re-post-date{
      color:#b9985a;
      font-weight:700;
      font-size:14px;
      letter-spacing:.05em;
      padding-top:4px;
      white-space:nowrap;
    }

    .re-post-content h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.4;
      font-weight:700;
    }

    .re-post-content h3 a{
      color:#102033;
      text-decoration:none;
    }

    .re-post-content h3 a:hover{
      opacity:.75;
    }

    .re-post-content p{
      margin:0;
      color:#666;
      font-size:15px;
      line-height:1.8;
    }

    .re-post-content p *{
      margin:0;
    }

    @media (max-width:768px){
      .re-post-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:22px 20px;
      }

      .re-post-content h3{
        font-size:19px;
      }
    }
