/* ===================================================
   Stay Pass Ticket LP — lp-css/stay-pass-ticket.css
   page-ticketing-lp.php が自動読み込み
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --black: #111111; --white: #FAFAF8; --yellow: #F5C400; --gray: #6B6B6B; --light: #F0EFEB; --border: #DDDDDD; --dark-gray: #222222; --green: #4ADE80; --blue: #60A5FA; }
body { font-family: 'Noto Sans JP', sans-serif; background: var(--white); color: var(--black); font-size: 16px; line-height: 1.7; }

/* ===== Header ===== */
header { background: var(--black); padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 56px; position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--yellow); }
.logo { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; letter-spacing: 0.03em; }
.logo small { display: block; font-size: 9px; font-weight: 400; color: #888; letter-spacing: 0.08em; margin-top: 2px; }
.header-tel { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; color: var(--yellow); text-decoration: none; display: flex; align-items: center; gap: 5px; letter-spacing: 0.03em; }

/* ===== Hero ===== */
.hero {
  background: var(--black);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

/* --- PC: 写真右寄せ＋テキスト左重なり --- */
@media (min-width: 769px) {
  .hero {
    display: flex !important;
    align-items: stretch !important;
    min-height: 560px !important;
  }
  /* 画像：右65% */
  .hero-img-wrap {
    position: absolute !important;
    top: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 65% !important;
    z-index: 1;
    aspect-ratio: auto !important;
  }
  .hero-img-wrap img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    object-position: center right !important;
    display: block !important;
    opacity: 1 !important;
  }
  /* 左からのグラデーションオーバーレイ */
  .hero-img-wrap::after {
    content: '' !important;
    position: absolute !important;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, rgba(17,17,17,0.85) 30%, rgba(17,17,17,0.4) 60%, transparent 100%) !important;
    z-index: 2;
  }
  /* テキスト：左寄せ */
  .hero-body {
    position: relative !important;
    z-index: 3;
    width: 55% !important;
    max-width: 640px !important;
    padding: 60px 48px 60px 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .hero h1 {
    font-size: 36px !important;
  }
  .hero-sub {
    font-size: 15px !important;
  }
  .hero-price-main .price {
    font-size: 52px !important;
  }
  .hero-cta {
    flex-direction: row !important;
    gap: 12px !important;
  }
  .btn-yellow, .btn-tel {
    flex: 1;
    white-space: nowrap;
  }
}

/* --- モバイル: 画像上・テキスト下 --- */
@media (max-width: 768px) {
  .hero-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.7;
  }
  .hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  }
}

.hero-body { padding: 28px 20px 36px; }
.hero-eyebrow { margin-bottom: 16px; }
.hero-eyebrow-badge { display: inline-block; background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; padding: 5px 14px; letter-spacing: 0.08em; }
.hero h1 { font-size: 28px; font-weight: 900; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 13px; color: #aaa; margin-bottom: 20px; line-height: 1.7; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.hero-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #bbb; font-size: 11px; padding: 4px 10px; letter-spacing: 0.05em; border-radius: 2px; }
.hero-price-row { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #333; }
.hero-price-main .label { font-size: 11px; color: #888; margin-bottom: 2px; }
.hero-price-main .price { font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 800; color: var(--yellow); letter-spacing: -0.02em; line-height: 1; }
.hero-price-main .price span { font-size: 20px; }
.hero-price-main .sub { font-size: 11px; color: #666; margin-top: 3px; }
.hero-price-free { padding-left: 16px; border-left: 1px solid #333; }
.hero-price-free .label { font-size: 11px; color: #888; margin-bottom: 2px; }
.hero-price-free .free { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--green); line-height: 1; }
.hero-price-free .sub { font-size: 11px; color: #666; margin-top: 3px; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-yellow { background: var(--yellow); color: var(--black); font-weight: 700; font-size: 15px; padding: 16px 20px; text-align: center; text-decoration: none; display: block; letter-spacing: 0.05em; border: none; cursor: pointer; }
.btn-tel { background: transparent; color: var(--white); font-size: 12px; padding: 13px 20px; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid #444; letter-spacing: 0.03em; flex-wrap: wrap; }
.btn-tel .num { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; color: var(--yellow); letter-spacing: 0.05em; }

/* ===== Sections Common ===== */
section { padding: 48px 20px; }
.sec-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.25em; color: var(--gray); text-transform: uppercase; margin-bottom: 6px; }
h2 { font-size: 23px; font-weight: 900; line-height: 1.4; margin-bottom: 26px; }
h2 em { font-style: normal; background: var(--black); color: var(--yellow); padding: 0 5px; }

/* ===== Use Cases ===== */
.usecases { background: var(--black); }
.usecases h2 { color: var(--white); }
.usecases h2 em { background: var(--yellow); color: var(--black); }
.usecases .sec-label { color: #555; }
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.usecase-card { background: #1a1a1a; border: 1px solid var(--yellow); padding: 18px 14px; border-radius: 2px; }
.usecase-card .uc-icon { font-size: 28px; display: block; margin-bottom: 10px; line-height: 1; }
.usecase-card .uc-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.4; }
.usecase-card .uc-desc { font-size: 12px; color: #999; line-height: 1.6; }
/* highlightも同じスタイル */
.usecase-card.highlight { border-color: var(--yellow); background: #1a1a1a; }
.usecase-card.highlight .uc-title { color: var(--white); }

@media (max-width: 768px) {
  .usecase-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .usecase-card {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0 12px !important;
    padding: 16px !important;
  }
  .usecase-card .uc-icon {
    font-size: 26px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .usecase-card .uc-title {
    font-size: 15px !important;
    margin-bottom: 0 !important;
    flex: 1;
  }
  .usecase-card .uc-desc {
    width: 100% !important;
    font-size: 13px !important;
    color: #aaa !important;
    margin-top: 8px !important;
  }
}

/* ===== Problems ===== */
.problems { background: var(--light); }
.problem-list { display: flex; flex-direction: column; }
.problem-item { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.problem-item:first-child { border-top: 1px solid var(--border); }
.problem-num { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--yellow); min-width: 36px; line-height: 1; margin-top: 2px; background: var(--black); text-align: center; padding: 2px 6px; }
.problem-text { font-size: 14px; font-weight: 700; line-height: 1.6; }
.problem-text small { display: block; font-weight: 400; color: var(--gray); font-size: 12px; margin-top: 2px; }

/* ===== How It Works ===== */
.howitworks { background: var(--white); }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px dashed var(--border); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--yellow); line-height: 1; min-width: 44px; }
.step-body { flex: 1; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== Ticket Demo ===== */
.ticket-demo-section { background: var(--black); }
.ticket-demo-section h2 { color: var(--white); }
.ticket-demo-section h2 em { background: var(--yellow); color: var(--black); }
.ticket-demo-section .sec-label { color: #555; }
.ticket-samples { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.ticket-sample { flex-shrink: 0; width: 200px; background: #fff; border: 1px solid #ddd; padding: 16px 14px; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; }
.ts-type { font-size: 10px; color: #999; letter-spacing: 0.1em; margin-bottom: 4px; font-family: 'Noto Sans JP', sans-serif; }
.ts-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 2px; line-height: 1.3; }
.ts-time { font-size: 44px; font-weight: 800; color: #111; line-height: 1; margin: 8px 0; letter-spacing: -0.02em; }
.ts-msg { font-size: 12px; color: #444; font-family: 'Noto Sans JP', sans-serif; line-height: 1.5; }
.ts-note { font-size: 10px; color: #999; margin-top: 8px; padding-top: 8px; border-top: 1px dashed #ddd; font-family: 'Noto Sans JP', sans-serif; }
.ts-lang { font-size: 10px; color: #888; margin-top: 4px; font-family: 'Noto Sans JP', sans-serif; }
.ticket-sample.en .ts-time { font-size: 38px; }

/* ===== Features ===== */
.features { background: var(--white); }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { border-left: 3px solid var(--yellow); padding: 14px 16px; background: var(--light); }
.feature-item .f-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.feature-item .f-title .badge { background: var(--yellow); color: var(--black); font-size: 10px; font-weight: 700; padding: 2px 7px; letter-spacing: 0.05em; }
.feature-item .f-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== Multilingual ===== */
.multilingual { background: #0f1f0f; }
.multilingual h2 { color: var(--white); }
.multilingual h2 em { background: var(--green); color: var(--black); }
.multilingual .sec-label { color: #4a7a4a; }
.lang-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.lang-badge { background: #1a2e1a; border: 1px solid #2a4a2a; color: var(--green); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 2px; letter-spacing: 0.05em; }
.multilingual .desc { font-size: 14px !important; color: #e0e0e0 !important; line-height: 1.8 !important; }
.multilingual p { color: #e0e0e0 !important; }
.multilingual p strong { color: var(--green) !important; }
.multilingual .desc strong { color: var(--green); }

/* ===== Specs ===== */
.specs { background: var(--light); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 14px; text-align: left; vertical-align: top; }
.spec-table th { font-weight: 700; width: 38%; color: var(--black); background: #e8e7e3; }
.spec-table td { color: var(--gray); }

/* ===== Pricing ===== */
.pricing { background: var(--black); }
.pricing h2 { color: var(--white); }
.pricing h2 em { background: var(--yellow); color: var(--black); }
.pricing .sec-label { color: #555; }
.price-card { background: #1a1a1a; border: 2px solid var(--yellow); padding: 28px 20px; margin-bottom: 16px; }
.price-card .pc-title { font-size: 13px; font-weight: 700; color: #888; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.price-card .pc-price { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: var(--yellow); line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px; }
.price-card .pc-price span { font-size: 22px; }
.price-card .pc-note { font-size: 12px; color: #888; margin-bottom: 16px; }
.price-card .pc-includes { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid #333; }
.price-card .pc-includes li { list-style: none; font-size: 13px; color: #ccc; display: flex; align-items: flex-start; gap: 8px; }
.price-card .pc-includes li::before { content: '✓'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
.price-monthly { background: #0a1a0a; border: 1px solid #2a4a2a; padding: 20px; }
.price-monthly .pm-label { font-size: 12px; color: #888; margin-bottom: 4px; }
.price-monthly .pm-price { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--green); line-height: 1; }
.price-monthly .pm-note { font-size: 12px; color: #666; margin-top: 4px; }

/* ===== Support ===== */
.support { background: var(--white); }
.support-list { display: flex; flex-direction: column; gap: 16px; }
.support-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--light); }
.support-icon { font-size: 24px; flex-shrink: 0; }
.support-body .s-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.support-body .s-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== Flow ===== */
.flow { background: var(--light); }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.flow-step:last-child { border-bottom: none; }
.flow-num { background: var(--black); color: var(--yellow); font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-body .f-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.flow-body .f-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== Form Section ===== */
.form-section { background: #ffffff; padding: 48px 0 64px; text-align: center; }
.form-section .sec-label,
.form-section h2 { padding: 0 20px; max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; display: block; }
.form-tel-block { background: var(--black); padding: 36px 20px; margin: 24px 0 36px; text-align: center; width: 100%; }
.form-tel-block .ft-label { font-size: 12px; color: #aaa; margin-bottom: 8px; display: block; }
.form-tel-block a { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: var(--yellow); text-decoration: none; letter-spacing: 0.05em; display: block; }
.form-tel-block .ft-hours { font-size: 11px; color: #888; margin-top: 4px; display: block; }

/* フォームラッパー */
.form-wrap { color: var(--black); max-width: 600px; margin: 0 auto; padding: 0 20px; text-align: left; }
.form-wrap .wpcf7-form p {
  margin: 0 0 20px 0;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  text-align: left;
}
.form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 8px;
}

/* テキスト入力・メール・電話 */
.form-wrap .wpcf7-form input[type="text"],
.form-wrap .wpcf7-form input[type="email"],
.form-wrap .wpcf7-form input[type="tel"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  background: #ffffff;
  color: var(--black);
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-wrap .wpcf7-form input[type="text"]:focus,
.form-wrap .wpcf7-form input[type="email"]:focus,
.form-wrap .wpcf7-form input[type="tel"]:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
}
.form-wrap .wpcf7-form input::placeholder {
  color: #bbb;
  font-size: 14px;
}

/* プルダウン（select） */
.form-wrap .wpcf7-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  padding: 0 40px 0 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  background: #ffffff 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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--black);
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-wrap .wpcf7-form select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
}

/* テキストエリア */
.form-wrap .wpcf7-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 130px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  background: #ffffff;
  color: var(--black);
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  line-height: 1.6;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-wrap .wpcf7-form textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
}
.form-wrap .wpcf7-form textarea::placeholder {
  color: #bbb;
  font-size: 14px;
}

/* 送信ボタン */
.form-wrap .wpcf7-form input[type="submit"],
.form-wrap .wpcf7-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.form-wrap .wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* バリデーションエラー */
.form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  display: block;
  font-weight: 400;
}
.form-wrap .wpcf7-not-valid {
  border-color: #dc2626 !important;
}

/* ===== Related ===== */
.related { background: var(--light); padding: 48px 20px; }
.related .sec-label { color: var(--gray); }
.related-intro { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.related-card { display: flex; justify-content: space-between; align-items: center; background: var(--black); padding: 20px 20px; text-decoration: none; color: var(--white); border: none; border-left: 4px solid var(--yellow); transition: opacity 0.2s; }
.related-card:hover { opacity: 0.85; }
.rc-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: var(--yellow); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
.rc-title { font-size: 15px; font-weight: 700; line-height: 1.5; color: var(--white); }
.rc-arrow { font-size: 24px; color: var(--yellow); font-weight: 700; }

/* ===== Footer ===== */
footer { background: #0a0a0a; padding: 32px 20px; text-align: center; border-top: 1px solid #333; }
.footer-logo { font-size: 13px; font-weight: 700; color: #cccccc; margin-bottom: 8px; }
.footer-info { font-size: 12px; color: #aaaaaa; line-height: 1.8; margin-bottom: 16px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #aaaaaa; text-decoration: none; }
.footer-links a:hover { color: #ffffff; }

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .form-wrap .wpcf7-form p { margin-bottom: 16px; }
  .btn-tel {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2px 6px !important;
    padding: 14px 20px !important;
  }
  /* 📞と電話番号は横並び、営業時間は下に */
  .btn-tel .num {
    font-size: 24px !important;
  }
  .btn-tel > span:last-child {
    width: 100% !important;
    text-align: center !important;
    font-size: 11px !important;
    color: #888 !important;
    margin-top: 2px;
  }
}
