    /* =========================================================
       0. Base
    ========================================================= */
    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC",
                   "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
      color: #222;
      background: #fff;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page {
      width: 100%;
      overflow-x: hidden;
    }

    /* =========================================================
       1. Header（固定在最上方）
       【本次修改 1】讓 logo 靠左、按鈕靠右
    ========================================================= */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .site-header__inner {
      width: 100%;
      margin: 0;
      padding: 10px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 72px;
    }

    .site-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex-shrink: 0;
    }

    .site-logo img {
      height: 44px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
    }

    .site-logo__text {
      font-size: 14px;
      color: #666;
      line-height: 1.4;
      white-space: nowrap;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 122px;
      height: 48px;
      padding: 0 22px;
      border: none;
      border-radius: 8px;
      background: #f2aa00;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, opacity 0.2s ease;
      box-shadow: 0 4px 10px rgba(242, 170, 0, 0.25);
      flex-shrink: 0;
    }

    .header-cta:hover {
      transform: translateY(-1px);
      opacity: 0.95;
    }

    .has-fixed-header {
      padding-top: 72px;
    }

    /* =========================================================
       2. 共用 section 樣式
    ========================================================= */
    .section-full {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .section-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .section-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .section-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .section-content {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* =========================================================
       3. 第一區：Banner Hero
    ========================================================= */
    .hero-section {
      min-height: 850px;
      display: flex;
      align-items: flex-start;
      overflow: hidden;
    }

    /* 【本次修改 2】由上到下遞減的黑色漸層 */
    .hero-section .section-overlay {
      background: linear-gradient(
        to bottom,
        rgba(253, 253, 253, 0.6) 0%,
        rgba(253, 253, 253, 0.48) 20%,
        rgba(253, 253, 253, 0.28) 45%,
        rgba(253, 253, 253, 0.48) 70%,
        rgba(253, 253, 253, 0.6) 100%
      );
    }

    .hero-content {
      padding-top: 70px;
      padding-bottom: 40px;
      position: relative;
      min-height: 820px;
    }

    .hero-text-wrap {
      max-width: 1400px;
      padding-top: 8px;
      position: relative;
      z-index: 5;
    }

    .hero-main-title {
      margin: 0 0 14px;
      font-size: 72px;
      line-height: 1.05;
      font-weight: 900;
      color: #ffffff;
      letter-spacing: 1px;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    }

    .hero-info-block {
        position: relative;
        display: inline-block;
        padding-left: 22px;
    }

    .hero-info-block::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 6px;
        background: #ffffff;
        border-radius: 3px;
        opacity: 0.95;
    }

    .hero-sub-title {
        display: block;
        margin: 0 0 8px;
        padding-left: 0;
        position: relative;
        font-size: 30px;
        line-height: 1.4;
        font-weight: 800;
        color: #1e2d39;
    }

    .hero-desc {
        margin: 0;
        padding-left: 0;
        font-size: 24px;
        line-height: 1.6;
        font-weight: 700;
        color: #24333e;
    }

    .hero-bottom-card {
      position: absolute;
      left: 50%;
      bottom: 110px;
      transform: translateX(-50%);
      width: min(92%, 520px);
      padding: 22px 34px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 10px 30px rgba(28, 74, 109, 0.12);
      z-index: 6;
    }

    .hero-bottom-card p {
      margin: 0;
      text-align: center;
      font-size: 21px;
      line-height: 1.7;
      font-weight: 800;
      color: #1c5f8f;
    }

    /* 左右人物圖 */
    .hero-player {
    position: absolute;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
    }

    .hero-player img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    }

    .hero-player--left {
    left: -30px;   
    width: 520px;
    }

    .hero-player--right {
    right: -30px;  
    width: 580px;
    }

    /* =========================================================
       4. 第二區：東京青春文化
    ========================================================= */
    .culture-section {
        position: relative;
        width: 100%;
        background: #f6f3f3;
        overflow: hidden;
        margin-top: 2px; 
    }

    .culture-inner {
        width: 100%;
        max-height: 900px;
        min-height: 760px;
        display: grid;
        grid-template-columns: 50vw 1fr; 
        align-items: stretch;
        position: relative;
    }

    /* 左側圖片區 */
    .culture-media {
        position: relative;
        min-height: 760px;
        overflow: hidden;
        width: 100%;
    }

    .culture-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    /* 【新增 1】左側圖上方覆蓋白色透明漸層（由左而右） */
    .culture-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.40) 28%,
        rgba(255, 255, 255, 0.25) 55%,
        rgba(255, 255, 255, 0.65) 100%
      );
    }

    /* 左圖右側幾條深色透明直條 */
    .culture-media-stripes {
      position: absolute;
      top: 0;
      right: 65px;
      bottom: 0;
      width: 130px;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }

    .culture-media-stripes span {
      width: 18px;
      height: 100%;
      background: rgba(30, 24, 26, 0.18);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    }

    .culture-body {
        position: relative;
        padding: 34px 72px 46px 56px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: #f6f3f3;
    }

    .culture-heading {
      margin-bottom: 42px;
      position: relative;
      z-index: 2;
    }

    .culture-title {
      margin: 0;
      font-size: 50px;
      line-height: 1.12;
      font-weight: 700;
      color: #f08b43;
      letter-spacing: 0.5px;
    }

    .culture-title .pink {
      color: #f07f9d;
      position: relative;
      display: inline-block;
    }

    /* 【新增 2】青春文化的中心 - 彎曲虛線底線 */
    .culture-title .pink::after {
      content: "";
      position: absolute;
      left: 8px;
      right: -6px;
      bottom: -18px;
      height: 16px;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 24' preserveAspectRatio='none'><path d='M2 13 C45 2, 92 3, 122 13 S198 22, 238 11' fill='none' stroke='%23f08b43' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='5 6'/></svg>");
    }

    .culture-copy {
      position: relative;
      z-index: 2;
      margin-bottom: 42px;
    }

    .culture-copy p {
      margin: 0;
      font-size: 26px;
      line-height: 1.95;
      font-weight: 500;
      color: #ef7f9c;
    }

    .culture-copy p + p {
      margin-top: 2px;
    }

    .culture-feature-block {
      margin-top: 18px;
      position: relative;
      z-index: 2;
    }

    .culture-feature-title {
      margin: 0 0 18px;
      font-size: 26px;
      line-height: 1.5;
      font-weight: 500;
      color: #4c4c4c;
    }

    .culture-feature-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .culture-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
    position: relative;
    z-index: 2;
    }

    .culture-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    }

    .culture-feature-item {
    display: flex;
    align-items: center;
    min-height: 60px;
    }

    .culture-feature-text {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #4c4c4c;
    }

    .culture-feature-text.highlight {
    color: #ff6f8d;
    font-weight: 700;
    }

    .culture-title-inline {
    white-space: nowrap;
    }

    /* 【修改 3】右下角整塊圖片 */
    .culture-side-image {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 0;
    overflow: hidden;
    }

    .culture-side-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.26);
    z-index: 2;
    pointer-events: none;
    }

    .culture-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }

    /* 【新增 3】右下浮水印圖片區，手機版隱藏 */
    .culture-watermark {
      position: absolute;
      right: 0;
      bottom: 120px;
      width: 360px;
      max-width: 42%;
      z-index: 1;
      opacity: 0.18;
      pointer-events: none;
    }

    .culture-watermark::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.36);
    }

    .culture-watermark img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      filter: grayscale(100%);
    }

    /* 【新增 4】橘色 / 粉色虛線圓 */
    .culture-ring {
      position: absolute;
      border-radius: 50%;
      border: 3px dashed;
      background: transparent;
      pointer-events: none;
      z-index: 2;
    }

    .culture-ring--orange {
      border-color: #f3a25d;
    }

    .culture-ring--pink {
      border-color: #ee86a8;
    }

    .culture-ring--o1 {
      width: 30px;
      height: 30px;
      top: 255px;
      right: 58px;
    }

    .culture-ring--p1 {
      width: 46px;
      height: 46px;
      left: -20px;
      top: 420px;
    }

    .culture-ring--o2 {
      width: 18px;
      height: 18px;
      top: 132px;
      right: 300px;
      opacity: 0.85;
    }

    /* =========================================================
    4. 第三區：東京巨蛋
    ========================================================= */

    .dome-section{
    position: relative;
    width: 100%;
    min-height: 880px;
    overflow: hidden;
    margin-top: 2px;
    }

    .dome-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
    }

    .dome-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .dome-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.55) 68%,
        rgba(0,0,0,0.8) 100%
    );
    }

    .dome-content{
    position: relative;
    z-index: 3;
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 44px 24px 40px 56px;
    }

    .dome-kicker{
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 700;
    }

    .dome-title{
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 22px;
    }

    .dome-highlight{
    font-size: 42px;
    font-weight: 900;
    color: #d7a347;
    margin: 0 0 2px;
    }

    .dome-sub{
    font-size: 26px;
    color: #d7a347;
    font-weight: 700;
    margin: 0;
    }

    /* 【調整 1】補回左下玻璃卡片 */
    .dome-card{
    position: absolute;
    left: 56px;
    bottom: 120px;
    z-index: 4;
    padding: 18px 22px;
    width: min(92%, 700px);
    background: rgba(255,255,255,0.22);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.34);
    color: #ffffff;
    font-size: 26px;
    line-height: 1.55;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    /* 【調整 3】棒球縫線圖，不是波浪 */
    .dome-stitch{
    position: absolute;
    right: 86px;
    top: 28px;
    width: 1500px;
    opacity: 0.16;
    z-index: 2;
    pointer-events: none;
    }

    .dome-stitch img{
    width: 100%;
    height: auto;
    display: block;
    }

    /* =========================================================
    5. 第四區：東京文化沉浸體驗
    ========================================================= */
    .culture-gallery-section{
    width: 100%;
    background: #d9dada;
    margin-top: 2px;
    padding: 34px 0 40px;
    }

    .culture-gallery-inner{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8px;
    }

    .culture-gallery-heading{
    text-align: center;
    margin-bottom: 28px;
    }

    .culture-gallery-title{
    margin: 0 0 10px;
    font-size: 64px;
    line-height: 1.15;
    font-weight: 900;
    color: #e1b12f;
    }

    .culture-gallery-subtitle{
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    color: #4b5560;
    }

    /* 上排三張 */
    .culture-gallery-grid-top{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    }

    /* 下排兩張，與上排距離更大 */
    .culture-gallery-grid-bottom{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
    }

    .culture-gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
    border: 2px solid rgba(255,255,255,0.42);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .culture-gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }

    /* 固定比例，方便整齊排列 */
    .culture-gallery-card--landscape{
    aspect-ratio: 1 / 0.95;
    }

    .culture-gallery-card--portrait{
    aspect-ratio: 1 / 1.15;
    }

    .culture-gallery-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.38) 0%,
        rgba(0,0,0,0.14) 25%,
        rgba(0,0,0,0) 52%
    );
    pointer-events: none;
    }

    .culture-gallery-caption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    text-align: center;
    padding: 0 12px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    }

    /* =========================================================
    6. 第五區：走進日本傳統文化
    ========================================================= */
    .tradition-section{
    position: relative;
    width: 100%;
    min-height: 880px;
    margin-top: 2px;
    overflow: hidden;
    background: #e8dcc0;
    }

    .tradition-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
    }

    .tradition-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }

    /* 1) 背景圖上再疊一層壓紋 */
    .tradition-pattern{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;

    background-image:
        url("../images/japanese-pattern.png");   /* 壓紋圖 */

    background-repeat:repeat;
    background-size:320px;
    opacity:0.05;   /* 控制壓紋透明度 */
    }

    .tradition-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(255,255,255,0.06);
    }

    .tradition-content{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 28px 56px;
    min-height: 760px;
    }

    /* 標題區 */
    .tradition-heading{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;  /* 2) 副標右側與主標右側切齊 */
    margin-bottom: 72px;
    }

    .tradition-title{
    margin: 0;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 900;
    color: #00524f;
    }

    .tradition-subtitle{
    margin: 8px 0 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    color: #75966f;
    }

    /* 左下卡片 */
    .tradition-card-wrap{
    position: absolute;
    left: 20px;
    bottom: 84px;
    z-index: 4;
    }

    .tradition-card{
    position: relative;
    width: min(92vw, 380px);
    padding: 28px 26px 30px;
    background: rgba(243, 229, 199, 0.68);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 8px 18px rgba(85, 67, 30, 0.06);
    overflow: visible;
    border-radius: 10px;
    }

    /* 卡片內淡花紋 */
    .tradition-card::before{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 0 100%, rgba(127,110,70,0.55) 0, rgba(127,110,70,0.55) 2px, transparent 2px),
        radial-gradient(circle at 100% 0, rgba(127,110,70,0.35) 0, rgba(127,110,70,0.35) 2px, transparent 2px);
    background-size: 140px 140px;
    pointer-events: none;
    }

    .tradition-card p{
    position: relative;
    z-index: 2;
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.72;
    font-weight: 500;
    color: #d88a55;
    }

    .tradition-card .tradition-highlight{
    display: block;
    margin: 12px 0;
    font-size: 23px;
    line-height: 1.6;
    font-weight: 800;
    color: #d88a55;
    }

    .tradition-card .tradition-highlight .emoji{
    margin-right: 6px;
    font-size: 20px;
    }

    .tradition-card .tradition-bottom{
    margin-top: 10px;
    }

    /* 3) 卡片右側雙線 + 下側一條線，與卡片間隔約 2px */
    .tradition-frame-right{
    position: absolute;
    top: -1px;
    right: -15px;   /* 與卡片距離約 2~6px，視覺較接近設計圖 */
    width: 8px;
    height: calc(100% + 8px);
    pointer-events: none;
    }

    .tradition-frame-right::before,
    .tradition-frame-right::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(135, 132, 76, 0.95);
    }

    .tradition-frame-right::before{
    left: 0;
    }

    .tradition-frame-right::after{
    right: 0;
    }

    .tradition-frame-bottom{
    position: absolute;
    left: 26px;
    right: -2px;
    bottom: -8px;
    height: 1px;
    background: rgba(135, 132, 76, 0.95);
    pointer-events: none;
    }

    /* =========================================================
    7. 第六區：把東京變成你的語言教室
    ========================================================= */
    .language-section{
    position: relative;
    width: 100%;
    min-height: 880px;
    margin-top: 2px;
    overflow: hidden;
    }

    .language-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
    }

    .language-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }

    .language-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.16) 0%,
        rgba(0,0,0,0.08) 28%,
        rgba(0,0,0,0.10) 100%
    );
    }

    .language-content{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 760px;
    padding: 42px 20px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;   /* 標題、卡片置中 */
    }

    .language-heading{
    text-align: center;
    margin-bottom: 24px;
    }

    .language-title{
    margin: 0 0 8px;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.2);
    }

    .language-title .accent{
    color: #ffd08a;
    }

    .language-subtitle{
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.14);
    }

    .language-card{
    width: min(92vw, 560px);
    margin: 120px auto 0;
    padding: 24px 32px;
    border-radius: 14px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }

    .language-card-inner{
    text-align: left;   /* 卡片中的文字靠左 */
    }

    .language-card p{
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.65;
    font-weight: 500;
    color: #111111;
    }

    .language-card .spacer{
    height: 20px;
    }

    .language-card .summary{
    margin-top: 6px;
    font-size: 23px;
    line-height: 1.7;
    font-weight: 500;
    color: #111111;
    }

/* =========================================================
   8. 第七區：填單表單
========================================================= */
.lead-form-section{
  width: 100%;
  background: linear-gradient(to right, #f4f4f4 0%, #f8f8f8 50%, #f4f4f4 100%);
  margin-top: 2px;
  padding: 48px 16px;
}

.lead-form-inner{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.lead-form-card{
  position: relative;
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,0.7);
  border: 1px solid #f0b07d;
  border-radius: 6px;
  padding: 16px 14px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.lead-form-title{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.lead-form-message{
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.lead-form-message.success{
  background: #eef9f0;
  color: #1d6b2c;
  border: 1px solid #bde0c5;
}

.lead-form-message.error{
  background: #fff0f0;
  color: #b12626;
  border: 1px solid #f0c1c1;
}

#leadForm{
  display: block;
}

.form-row{
  margin-bottom: 8px;
}

.form-row label{
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

#leadForm input[type="text"],
#leadForm input[type="email"],
#leadForm select{
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  color: #111;
  outline: none;
}

#leadForm input[type="text"]:focus,
#leadForm input[type="email"]:focus,
#leadForm select:focus{
  border-color: #ee934f;
  box-shadow: 0 0 0 2px rgba(238,147,79,0.12);
}

.phone-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}

.gender-group{
  display: flex;
  gap: 22px;
  align-items: center;
  padding-top: 2px;
}

.radio-item,
.checkbox-item{
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0 !important;
  font-size: 14px;
}

.radio-item input,
.checkbox-item input{
  width: 16px;
  height: 16px;
}

.privacy-wrap{
  padding-top: 4px;
}

.field-error{
  min-height: 18px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #cc2d2d;
}

.lead-submit-btn{
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 5px;
  background: #ec9554;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lead-submit-btn:hover{
  opacity: 0.95;
}

.lead-submit-btn:disabled{
  cursor: not-allowed;
  opacity: 0.7;
}

.lead-form-card.is-submitting{
  pointer-events: none;
  opacity: 0.88;
}

.lead-form-loading{
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.lead-form-loading__box{
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(17,17,17,0.85);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

    /* =========================================================
       5. RWD
    ========================================================= */
    @media (max-width: 1400px) {
        .hero-player--left {
            width: 520px;
            left: -20px;
        }

        .hero-player--right {
            width: 580px;
            right: -20px;
        }        
    }

    @media (max-width: 1200px) {
        .hero-main-title {
            font-size: 58px;
        }

        .hero-sub-title {
            font-size: 22px;
        }

        .hero-desc {
            font-size: 20px;
        }

        .tokyo-dome-title {
            font-size: 48px;
        }

        .hero-player--left {
            width: 520px;
            left: -20px;
        }

        .hero-player--right {
            display: none;
        }

        .hero-bottom-card {
        left: 70%;
      }


        /* 第2區塊 */
        .culture-section{
            display:block;
        }

        .culture-left{
            width:100%;
        }

        .culture-right{
            width:100%;
            padding:40px 24px 50px;
        }        
        .culture-left{
            width:40%;
        }

        .culture-right{
            width:60%;
        }

      .culture-inner {
        min-height: 680px;
      }

      .culture-media {
        min-height: 680px;
      }

      .culture-body {
        padding: 34px 34px 40px 36px;
      }

      .culture-title {
        font-size: 48px;
      }

      .culture-copy p {
        font-size: 22px;
      }

      .culture-feature-title {
        font-size: 22px;
      }

      .culture-feature-item {
        grid-template-columns: 1fr 200px;
        gap: 20px;
        min-height: 64px;
      }

      .culture-feature-text {
        font-size: 21px;
      }

      .culture-feature-icon {
        width: 46px;
        height: 46px;
        right: 20px;
      }

      .culture-feature-icon img {
        width: 20px;
        height: 20px;
      }
    }

    @media (max-width:1024px){
        /**第2區塊 */
        .culture-section {
            overflow: visible;
        }

        .culture-inner {
            display: grid;
            grid-template-columns: 1fr !important;
            min-height: auto !important;
            height: auto !important;
        }

        .culture-media {
            width: 100%;
            min-height: 300px;
            height: 300px;
        }

        .culture-body {
            width: 100%;
            min-height: auto !important;
            height: auto !important;
            padding: 28px 24px 40px !important;
            display: block;
        }

        .culture-heading,
        .culture-copy,
        .culture-feature-block {
            width: 100%;
            max-width: 100%;
        }

        .culture-copy {
            margin-bottom: 24px;
        }

        .culture-copy p {
            font-size: 18px;
            line-height: 1.8;
        }

        .culture-feature-layout {
            display: block !important;
        }

        .culture-feature-list {
            width: 100%;
        }

        .culture-feature-item {
            display: flex;
            align-items: center;
            min-height: 54px;
            padding: 6px 0;
        }

        .culture-feature-text {
            font-size: 18px;
            line-height: 1.6;
        }

        .culture-side-image,
        .culture-watermark {
            display: none !important;
        }

        .culture-ring--o1,
        .culture-ring--o2,
        .culture-ring--p1 {
            display: none;
        }

        .culture-title-inline {
            white-space: normal;
        }


        /**第三區塊 */
        .dome-title{
            font-size: 44px;
        }

        .dome-highlight{
            font-size: 34px;
        }

        .dome-sub{
            font-size: 22px;
        }

        .dome-stitch{
            width: 250px;
            right: 40px;
            top: 34px;
        }

        /**第4區塊 */
        .culture-gallery-section{
            padding: 30px 0 34px;
        }

        .culture-gallery-title{
            font-size: 46px;
        }

        .culture-gallery-subtitle{
            font-size: 19px;
        }

        .culture-gallery-grid-top,
        .culture-gallery-grid-bottom{
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .culture-gallery-grid-top{
            margin-bottom: 14px;
        }

        .culture-gallery-card--landscape,
        .culture-gallery-card--portrait{
            aspect-ratio: 1 / 0.9;
        }

        .culture-gallery-caption{
            font-size: 16px;
        }        

        /**第5區塊 */
        .tradition-section{
            min-height: 680px;
        }

        .tradition-content{
            min-height: 680px;
            padding: 24px 20px 46px;
        }

        .tradition-title{
            font-size: 52px;
        }

        .tradition-subtitle{
            font-size: 20px;
        }

        .tradition-card{
            width: min(92vw, 390px);
        }   

        /**第6區塊 */
        .language-section{
            min-height: 680px;
        }

        .language-content{
            min-height: 680px;
            padding: 34px 18px 30px;
        }

        .language-title{
            font-size: 48px;
        }

        .language-subtitle{
            font-size: 20px;
        }

        .language-card{
            width: min(92vw, 500px);
            padding: 22px 26px;
        }

        .language-card p,
        .language-card .summary{
            font-size: 20px;
        }        
    }

    @media (max-width: 768px) {
      .site-header__inner {
        min-height: 64px;
        padding: 8px 16px;
      }

      .site-logo img {
        height: 36px;
      }

      .site-logo__text {
        display: none;
      }

      .header-cta {
        min-width: auto;
        height: 42px;
        padding: 0 16px;
        font-size: 15px;
        border-radius: 7px;
      }

      .has-fixed-header {
        padding-top: 64px;
      }

      .section-content {
        padding-left: 16px;
        padding-right: 16px;
      }

      /* Hero */
      .hero-section {
        min-height: 650px;
      }

      .hero-content {
        min-height: 650px;
        padding-top: 34px;
        padding-bottom: 24px;
      }

      .hero-text-wrap {
        max-width: 100%;
      }

      .hero-main-title {
        margin-bottom: 12px;
        font-size: 36px;
        line-height: 1.16;
        letter-spacing: 0;
      }

      .hero-sub-title {
        margin-bottom: 6px;
        padding-left: 12px;
        font-size: 18px;
        line-height: 1.45;
      }

      .hero-sub-title::before {
        width: 4px;
        top: 3px;
        height: calc(100% - 6px);
      }

      .hero-desc {
        padding-left: 12px;
        font-size: 16px;
        line-height: 1.6;
      }

      .hero-bottom-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 230px;   
        width: calc(100% - 32px);
        max-width: 360px;
        padding: 14px 16px;
        border-radius: 12px;
      }

      .hero-bottom-card p {
        font-size: 16px;
        line-height: 1.6;
      }

      .hero-player--left {
        width: 320px;
        left: -35px;
      }

      .hero-player--right {
        display: none;
      }

      /* 第二區塊 */
    .culture-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    }

    .culture-feature-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    }

    .culture-side-image {
    display: none;
    }

    .culture-title-inline {
    white-space: normal;
    }

      .culture-media {
        min-height: 420px;
      }

      .culture-media-stripes {
        right: 28px;
        width: 86px;
      }

      .culture-media-stripes span {
        width: 12px;
      }

      .culture-body {
        padding: 34px 20px 34px;
      }

      .culture-heading {
        margin-bottom: 28px;
      }

      .culture-title {
        font-size: 34px;
        line-height: 1.22;
      }

      .culture-title .pink::after {
        bottom: -12px;
        height: 12px;
      }

      .culture-copy {
        margin-bottom: 28px;
      }

      .culture-copy p {
        font-size: 18px;
        line-height: 1.9;
      }

      .culture-feature-title {
        margin-bottom: 12px;
        font-size: 20px;
      }

      .culture-feature-item {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: auto;
        padding: 10px 0 14px;
      }

      .culture-feature-text {
        font-size: 20px;
      }

      .culture-feature-line {
        width: 100%;
      }

      .culture-feature-icon {
        width: 42px;
        height: 42px;
        right: 16px;
      }

      .culture-feature-icon img {
        width: 18px;
        height: 18px;
      }

      /* 手機版隱藏右下浮水印圖片 */
      .culture-watermark {
        display: none;
      }

      .culture-ring--o1 {
        width: 24px;
        height: 24px;
        top: auto;
        right: 22px;
        bottom: 220px;
      }

      .culture-ring--p1 {
        width: 34px;
        height: 34px;
        left: auto;
        right: 72px;
        top: 360px;
      }

      .culture-ring--o2 {
        display: none;
      }      

      /* 第三區塊 */
        .dome-section{
            min-height: 560px;
        }

        .dome-content{
            padding: 28px 16px 22px 16px;
        }

        .dome-kicker{
            font-size: 18px;
            margin-bottom: 10px;
        }

        .dome-title{
            font-size: 34px;
            margin-bottom: 14px;
        }

        .dome-highlight{
            font-size: 28px;
        }

        .dome-sub{
            font-size: 18px;
        }

        .dome-card{
            left: 16px;
            right: 16px;
            bottom: 18px;
            width: auto;
            padding: 14px 16px;
            font-size: 16px;
            line-height: 1.55;
        }

        .dome-stitch{
            width: 150px;
            right: 10px;
            top: 60px;
            opacity: 0.12;
        }

        /**第4區塊 */
        .culture-gallery-section{
            padding: 26px 0 30px;
        }

        .culture-gallery-inner{
            padding: 0 16px;
        }

        .culture-gallery-heading{
            margin-bottom: 22px;
        }

        .culture-gallery-title{
            font-size: 34px;
            line-height: 1.2;
        }

        .culture-gallery-subtitle{
            font-size: 16px;
            line-height: 1.6;
        }

        .culture-gallery-grid-top,
        .culture-gallery-grid-bottom{
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .culture-gallery-grid-top{
            margin-bottom: 14px;
        }

        .culture-gallery-card--landscape,
        .culture-gallery-card--portrait{
            aspect-ratio: 1 / 0.76;
        }

        .culture-gallery-caption{
            bottom: 12px;
            font-size: 18px;
        }    
        
        /**第5區塊 */
        .tradition-section{
            min-height: 450px;
        }

        .tradition-content{
            min-height: 450px;
            padding: 20px 16px 28px;
        }

        .tradition-heading{
            margin-bottom: 34px;
        }

        .tradition-title{
            font-size: 34px;
            line-height: 1.2;
        }

        .tradition-subtitle{
            margin-top: 6px;
            font-size: 18px;
        }

        /* 4) 手機版卡片疊在背景圖上 */
        .tradition-card-wrap{
            left: 16px;
            right: 16px;
            bottom: 18px;
        }

        .tradition-card{
            width: 100%;
            padding: 20px 18px 22px;
            background: rgba(243, 229, 199, 0.78);
        }

        .tradition-card p{
            font-size: 16px;
            line-height: 1.66;
        }

        .tradition-card .tradition-highlight{
            font-size: 19px;
            line-height: 1.55;
        }

        .tradition-frame-right{
            right: -5px;
            width: 7px;
        }

        .tradition-frame-bottom{
            left: 20px;
            bottom: -7px;
        }

        /**第6區塊 */
        .language-section{
            min-height: 620px;
        }

        .language-content{
            min-height: 620px;
            padding: 28px 16px 26px;
        }

        .language-heading{
            margin-bottom: 18px;
        }

        .language-title{
            font-size: 36px;
            line-height: 1.18;
        }

        .language-subtitle{
            font-size: 16px;
            line-height: 1.5;
        }

        .language-card{
            width: calc(100% - 32px);
            padding: 18px 18px;
            border-radius: 12px;
        }

        .language-card p,
        .language-card .summary{
            font-size: 16px;
            line-height: 1.7;
        }

        .language-card .spacer{
            height: 12px;
        }

        /* 第7區 */
        .lead-form-section{
            padding: 28px 16px;
        }

        .lead-form-card{
            padding: 18px 14px 14px;
        }

        .lead-form-title{
            font-size: 22px;
        }

        .phone-row{
            grid-template-columns: 88px 1fr;
            gap: 10px;
        }

        .lead-submit-btn{
            font-size: 18px;
        }        

    }

    @media (max-width: 480px) {
      .hero-section {
        min-height: 580px;
      }

      .hero-content {
        min-height: 580px;
      }

      .hero-main-title {
        font-size: 31px;
      }

      .hero-sub-title {
        font-size: 17px;
      }

      .hero-desc {
        font-size: 15px;
      }

      .hero-bottom-card {
        bottom: 230px;
      }

      .hero-bottom-card p {
        font-size: 17px;
      }

      .hero-player--left {
        width: 300px;
        left: -14px;
      }

      .hero-player--right {
        width: 300px;
        right: -14px;
      }

      .tokyo-dome-section {
        min-height: 460px;
      }

      .tokyo-dome-title {
        font-size: 30px;
      }

      /* 第2區塊 */
      .culture-media {
        min-height: 360px;
      }

      .culture-title {
        font-size: 28px;
      }

      .culture-copy p {
        font-size: 16px;
      }

      .culture-feature-title {
        font-size: 18px;
      }

      .culture-feature-text {
        font-size: 18px;
      }

      .culture-feature-icon {
        width: 38px;
        height: 38px;
        right: 12px;
      }

      .culture-ring--o1 {
        bottom: 205px;
      }

      .culture-ring--p1 {
        top: 320px;
        right: 58px;
      }      

      /* 第三區塊 */
        .dome-title{
            font-size: 30px;
        }

        .dome-highlight{
            font-size: 24px;
        }

        .dome-sub{
            font-size: 16px;
        }

        .dome-card{
            font-size: 15px;
        }

        .dome-stitch{
            width: 120px;
            right: 6px;
            top: 66px;
        }      

        /**第5區塊 */
        .tradition-title{
            font-size: 30px;
        }

        .tradition-subtitle{
            font-size: 16px;
        }

        .tradition-card p{
            font-size: 15px;
        }

        .tradition-card .tradition-highlight{
            font-size: 17px;
        }        

        /**第6區塊 */
        .language-title{
            font-size: 31px;
        }

        .language-subtitle{
            font-size: 15px;
        }

        .language-card p,
        .language-card .summary{
            font-size: 15px;
        }        
    }