:root {
    color-scheme: light;
    --vw-blue: #00265a;
    --vw-silver: #f4f5f7;
    --vw-gray: #4a5664;
    --accent: #1ba4e8;
    --danger: #d9534f;
    --border-light: rgba(0, 32, 64, 0.08);
  }

  * {
    box-sizing: border-box;
  }

@font-face {
    font-family: 'vw-text';
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/vwtext-regular.woff2) format('woff2'), url(../fonts/vwtext-regular.woff) format('woff');
}

.lcNPmo:lang(ja) {
    --font-family-head: vw-head, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, MS Pゴシック, MS PGothic, Helvetica Neue, Helvetica, Arial, sans-serif;
    --font-family-text: vw-text, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, MS Pゴシック, MS PGothic, Helvetica Neue, Helvetica, Arial, sans-serif;
}

  body {
    margin: 0;
    color: #1b1b1f;
    background-color: var(--vw-silver);
    line-height: 1.65;
    letter-spacing: 0.01em;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(1120px, 92vw);
    margin: 0 auto;
  }

  header {
    background: rgba(255, 255, 255, 1);
    /*backdrop-filter: blur(14px);*/
    /*border-bottom: 1px solid var(--border-light);*/
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 24px;
  }

  .logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vw-blue);
    border: 2px solid var(--vw-blue);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    font-size: 13px;
    color: var(--vw-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
    background: var(--vw-blue);
    border: 1px solid var(--vw-blue);
    padding: 10px 18px;
    border-radius: 999px;
    transition: opacity 0.2s ease;
  }

  .header-cta:hover {
    opacity: 0.85;
  }

  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 30%, rgba(27, 164, 232, 0.12));
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0)
    );*/
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    padding: 88px 0 60px;
    display: grid;
    gap: 24px;
    color: var(--vw-blue);
  }

  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 56, 107, 0.72);
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
  }

  .hero p {
    margin: 0;
    color: rgba(0, 56, 107, 0.82);
    max-width: 640px;
  }

  .hero-highlights {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--vw-blue);
  }

  main {
    padding: 48px 0 96px;
  }

  .intro {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 45px -32px rgba(0, 32, 64, 0.3);
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
  }

  .intro h2 {
    margin-top: 0;
    color: var(--vw-blue);
    font-size: 24px;
  }

  .intro p {
    margin-bottom: 0;
    color: #3a3f47;
  }

  .checklist {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
    color: var(--vw-gray);
  }

  .checklist li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 8px;
    font-weight: bold;
  }

  form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px -48px rgba(0, 32, 64, 0.5);
    border: 1px solid var(--border-light);
    padding: clamp(26px, 5vw, 44px);
    display: grid;
    gap: 32px;
  }

  fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
  }

  fieldset legend {
    font-weight: 700;
    font-size: 18px;
    color: var(--vw-blue);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  legend span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 56, 107, 0.08);
    color: var(--vw-blue);
    font-size: 12px;
    font-weight: 600;
  }

  .fieldset-description {
    font-size: 13px;
    color: rgba(79, 90, 104, 0.78);
    margin-top: -8px;
  }

  .form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  label {
    font-weight: 600;
    font-size: 14px;
    color: var(--vw-gray);
  }

  label span.required {
    color: var(--danger);
    font-weight: 700;
    margin-left: 4px;
  }

  .kana-label {
    font-size: 13px;
    color: rgba(79, 90, 104, 0.85);
    font-weight: 500;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 32, 64, 0.18);
    border-radius: 12px;
    font-size: 15px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    background: #fff;
	appearance: none;
	-webkit-appearance: none;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(88, 167, 224, 0.25);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .inline-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .option-group {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .group-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--vw-gray);
  }

  .checkbox-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 32, 64, 0.16);
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
      background 0.2s ease;
  }

  .checkbox-chip:hover {
    border-color: var(--vw-blue);
    box-shadow: 0 12px 28px -24px rgba(0, 38, 90, 0.6);
    transform: translateY(-1px);
  }

  .checkbox-chip input {
    width: 16px;
    height: 16px;
    accent-color: var(--vw-blue);
  }

  .checkbox-chip:has(input:checked) {
    border-color: var(--vw-blue);
    background: rgba(0, 38, 90, 0.08);
    color: var(--vw-blue);
  }

  .checkbox-chip input[type="radio"] {
    accent-color: var(--vw-blue);
  }

  .checkbox-tile,
  .radio-tile {
    position: relative;
    border: 1px solid rgba(0, 32, 64, 0.14);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
  }

  .checkbox-tile input,
  .radio-tile input {
    accent-color: var(--vw-blue);
    width: 18px;
    height: 18px;
  }

  .checkbox-tile:hover,
  .radio-tile:hover {
    border-color: var(--vw-blue);
    box-shadow: 0 12px 26px -22px rgba(0, 56, 107, 0.6);
    transform: translateY(-1px);
  }

  .notice {
    font-size: 12px;
    color: rgba(79, 90, 104, 0.76);
    margin-top: -4px;
  }

  .privacy-box {
    background: rgba(0, 56, 107, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    gap: 16px;
  }

  .segmented-input {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .segmented-input input {
    flex: 0 0 92px;
    text-align: center;
  }

  .segmented-input input[data-length="3"] {
    flex-basis: 72px;
  }

  .segmented-input input[data-length="4"] {
    flex-basis: 80px;
  }

  .segmented-input input[data-length="2"] {
    flex-basis: 64px;
  }

  .segmented-input span.divider {
    font-weight: 600;
    color: rgba(79, 90, 104, 0.5);
  }

  .inline-note {
    font-size: 12px;
    color: rgba(79, 90, 104, 0.76);
    margin-top: 4px;
  }

  .privacy-box p {
    margin: 0;
    font-size: 13px;
    color: rgba(79, 90, 104, 0.88);
  }

  button[type="submit"] {
    background: var(--vw-blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    justify-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -22px rgba(0, 56, 107, 0.82);
  }

  .submit-hint {
    font-size: 12px;
    color: rgba(79, 90, 104, 0.76);
  }

  .success-message {
    display: none;
    background: #ebf7f1;
    border: 1px solid rgba(0, 150, 100, 0.3);
    color: #176241;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
  }

  @media (max-width: 720px) {
    nav ul {
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hero-inner {
      padding: 64px 0 48px;
    }

    .intro {
      padding: 24px;
    }

    .header-cta {
      padding: 6px 12px;
    }
  }
  
  @media (min-width: 721px) {
	/* 姓・名を横並び */
	.name-group {
	  flex-direction: row;
	  gap: 16px;
	}

	/* 各項目を縦並び */
	.name-item {
	  display: flex;
	  flex-direction: column;
	  gap: 8px;
	  flex: 1;
	}
  }

 @media (min-width: 960px) {
	.form-grid.preferred {
		grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
		justify-content: start;
	}
}
 
/*
 * https://www.volkswagen.co.jp/ja/vw-dealer/setagaya.html のヘッダー部
 */
header ul {
	display: block;
	text-transform: none;
	gap: 0;
}
.dXcGQh {
    width: 100%;
    height: var(--s2-one-hub-navigation-top-bar-height);
    transition: top 0.5s ease-in;
    color: rgb(255, 255, 255);
    /*background-color: transparent;*/
    transform: translateY(0px);
}
@media (min-width: 0px) {
    .dXcGQh {
        --s2-one-hub-navigation-top-bar-height: calc(16px + 24px + 12px + 32px);
    }
}
@media (min-width: 560px) {
    .dXcGQh {
        --s2-one-hub-navigation-top-bar-height: calc(16px + 24px + 12px + 40px);
    }
}
@media (min-width: 960px) {
    .dXcGQh {
        --s2-one-hub-navigation-top-bar-height: calc(16px + 24px + 12px + 48px);
    }
}
.gwXrlj {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    grid-template-columns: repeat(24, 4.16667%);
    pointer-events: auto;
    grid-template-rows: 12px 1fr 12px;
}
.fPqVqH {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    transition: top 0.5s ease-in;
    top: 0px;
}
@media (min-width: 0px) {
    .fPqVqH {
        transform: translateY(calc(37px));
    }
}
@media (min-width: 560px) {
    .fPqVqH {
        transform: translateY(calc(33px));
    }
}
@media (min-width: 960px) {
    .fPqVqH {
        transform: translateY(calc(29px));
    }
}
.gjwpbA {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    --logo-size: 32px;
    --margin-size: 8px;
    grid-template-columns: auto max-content auto;
    column-gap: var(--margin-size);
}
@media (min-width: 560px) {
    .gjwpbA {
        grid-template-columns: auto max-content auto;
		--logo-size: 40px;
        --margin-size: 10px;
    }
}
@media (min-width: 960px) {
    .gjwpbA {
        grid-template-columns: calc(min(66.66vw, 1706.66px) - var(--margin-size)) max-content auto;
		 --logo-size: 48px;
        --margin-size: 12px;
    }
}
.gjwpbA::before, .gjwpbA::after {
    content: "";
    height: 2px;
    background: rgb(255, 255, 255);
}
.eqnwup {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.kyuJLR button, .kyuJLR a {
    pointer-events: auto;
}
.eAcYOo {
    text-decoration: none;
}
.gjwpbA svg {
    fill: rgb(0, 30, 80);
    width: var(--logo-size);
    height: var(--logo-size);
}
.gjwpbA::before, .gjwpbA::after {
    content: "";
    height: 2px;
    background: rgb(0, 30, 80);
}
@media (min-width: 960px) {
    .gjwpbA {
        --logo-size: 48px;
        --margin-size: 12px;
    }
}

/*
 * https://www.volkswagen.co.jp/ja/vw-dealer/setagaya.html のフッター部
 */
footer ul {
	display: block;
	text-transform: none;
	gap: 0;
}
.hrKsvR {
    z-index: 0;
    position: relative;
    background: white;
}
footer {
    display: block;
    unicode-bidi: isolate;
}
.gbhDCT {
    display: grid;
    max-width: 2560px;
    margin: auto;
    grid-template-columns: repeat(24, 1fr);
    grid-template-areas: "a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0 a0";
}
.gxbORQ {
    grid-area: a0;
    overflow: hidden;
}
.gocybb {
    display: block;
    flex-wrap: unset;
    margin: 0px;
    padding: 0px min(8.33vw, 213.33px);
}
.dMjrDW {
    flex-shrink: 0;
    max-width: 100%;
    margin: 0px;
}
.bREryc {
    border-top: 2px solid rgb(0, 30, 80);
    padding: 44px 0px;
}
@media (min-width: 560px) {
    .bREryc {
        padding-top: 72px;
        padding-left: min(4.16vw, 106.66px);
        padding-right: min(4.16vw, 106.66px);
    }
}
@media (min-width: 560px) {
    .gjYbIe {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}
.AJIwV {
    hyphens: auto;
    word-break: break-word;
    display: grid;
    gap: 24px;
    height: 100%;
}
@media (min-width: 560px) {
    .AJIwV {
        width: min(16.66vw, 426.66px);
    }
}
nav {
    display: block;
    unicode-bidi: isolate;
}
.jYhODB {
    color: rgb(0, 14, 38);
    margin: unset;
    font-family: var(--font-family-head);
    font-weight: bold;
    font-size: 0.88rem;
    line-height: 120%;
    letter-spacing: 0.5px;
}
h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.AJIwV {
    hyphens: auto;
    word-break: break-word;
    display: grid;
    gap: 24px;
    height: 100%;
}
.kJpehI {
    margin: 0px 0px 44px;
    padding: 0px;
    list-style: none;
}
.clymfh {
    color: rgb(0, 14, 38);
    margin: unset;
    font-family: var(--font-family-text);
    font-weight: normal;
    font-size: 0.88rem;
    line-height: 150%;
    letter-spacing: calc(-0.02em + 0.02rem);
}
.kJpehI a {
    display: inline-block;
    padding: 4px 0px;
}
.lcNPmo * {
    box-sizing: border-box;
}
.iqsYBA {
    font-weight: inherit;
    display: inline-grid;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding: 0px;
    text-align: inherit;
    color: rgb(0, 30, 80);
    background: transparent;
    border: none;
    -webkit-tap-highlight-color: transparent;
}
a {
    background-color: transparent;
}
.iqsYBA:hover span, .iqsYBA:active span, .iqsYBA:focus:not(:focus-visible) span {
    text-decoration-thickness: 2px;
}
.iqsYBA:hover, .iqsYBA:active, .iqsYBA:focus:not(:focus-visible) {
    color: rgb(0, 64, 197);
    background: transparent;
}
.cjBXGc {
    position: relative;
    text-underline-offset: 0.2em;
    text-decoration: none;
    cursor: pointer;
}
.hRurno {
    display: flex;
    flex-direction: column;
}
@media (min-width: 560px) {
    .hRurno {
        flex-direction: row;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}
.cKZhRg {
    margin-top: 44px;
    order: 1;
}
@media (min-width: 560px) {
    .cKZhRg {
        margin-top: 0px;
        padding-left: 44px;
        white-space: nowrap;
    }
}
.TLIqO {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.gWdbHP {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.fcKWlq {
    display: flex;
}
.fcKWlq:not(:last-child)::after {
	content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1' height='15'><rect width='1' height='15' fill='black'/></svg>");
	margin: 2px 12px;
}
.hIMlRO {
    border-top: 1px solid rgb(223, 228, 232);
    text-align: left;
    width: min(41.66vw, 1066.66px);
    margin-top: 44px;
}
@media (min-width: 560px) {
    .hIMlRO {
        margin-top: 64px;
        width: min(20.83vw, 533.33px);
    }
}
.bcThAe {
    margin-bottom: 32px;
    margin-top: 20px;
}
@media (min-width: 560px) {
    .bcThAe {
        margin-bottom: 0px;
        white-space: nowrap;
    }
}
.lcNPmo {
    --font-family-head: vw-head, Helvetica, Arial, sans-serif;
    --font-family-text: vw-text, Helvetica, Arial, sans-serif;
    font-family: var(--font-family-text);
    -webkit-font-smoothing: antialiased;
    --size-dynamic0020: 4px;
    --size-dynamic0040: 12px;
    --size-dynamic0050: 12px;
    --size-dynamic0100: 20px;
    --size-dynamic0120: 24px;
    --size-dynamic0130: 24px;
    --size-dynamic0140: 28px;
    --size-dynamic0150: 28px;
    --size-dynamic0200: 32px;
    --size-dynamic0250: 44px;
    --size-dynamic0270: 56px;
    --size-dynamic0300: 72px;
    --size-dynamic0350: 100px;
    --size-dynamic0450: 156px;
    --size-grid001: min(4.16vw, 106.66px);
    --size-grid002: min(8.33vw, 213.33px);
    --size-grid003: min(12.5vw, 320px);
    --size-grid004: min(16.66vw, 426.66px);
    --size-grid005: min(20.83vw, 533.33px);
    --size-grid006: min(25vw, 640px);
    --size-grid007: min(29.16vw, 746.66px);
    --size-grid008: min(33.33vw, 853.33px);
    --size-grid009: min(37.5vw, 960px);
    --size-grid010: min(41.66vw, 1066.66px);
    --size-grid011: min(45.83vw, 1173.33px);
    --size-grid012: min(50vw, 1280px);
    --size-grid013: min(54.16vw, 1386.66px);
    --size-grid014: min(58.33vw, 1493.33px);
    --size-grid015: min(62.5vw, 1600px);
    --size-grid016: min(66.66vw, 1706.66px);
    --size-grid017: min(70.83vw, 1813.33px);
    --size-grid018: min(75vw, 1920px);
    --size-grid019: min(79.16vw, 2026.66px);
    --size-grid020: min(83.33vw, 2133.33px);
    --size-grid021: min(87.5vw, 2240px);
    --size-grid022: min(91.66vw, 2346.66px);
    --size-grid023: min(95.83vw, 2453.33px);
    --size-grid024: min(100vw, 2560px);
    background-color: rgb(255, 255, 255);
}
@media (min-width: 560px) {
    .lcNPmo {
        --size-dynamic0020: 4px;
        --size-dynamic0040: 20px;
        --size-dynamic0050: 20px;
        --size-dynamic0100: 24px;
        --size-dynamic0120: 20px;
        --size-dynamic0130: 40px;
        --size-dynamic0140: 32px;
        --size-dynamic0150: 52px;
        --size-dynamic0200: 56px;
        --size-dynamic0250: 68px;
        --size-dynamic0270: 80px;
        --size-dynamic0300: 96px;
        --size-dynamic0350: 132px;
        --size-dynamic0450: 172px;
    }
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 40px;
	background: url(../images/arrow.svg) no-repeat right 10px center;
	background-size: 20px;
	padding-top: 11.5px;
	padding-bottom: 11.5px;
}
.w_auto_im {
	width: auto !important;
}