/* ============================================
   沖縄オーシャンゲートレンタカー — 全スタイル
   自作テーマ版
   ============================================ */

/* --- ベース --- */
body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #1a2744;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  position: relative;
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
svg {
  display: inline-block;
  vertical-align: middle;
}

/* --- カラー変数 --- */
:root {
  --navy: #1a2d4a;
  --navy-light: #1a2e50;
  --ocean: #2a6fa8;
  --cyan: #40c8d8;
  --orange: #f08030;
  --orange-light: #f5a060;
  --sand: #f8f5f0;
  --sand-dark: #f0ebe2;
  --white-10: rgba(255,255,255,0.1);
  --white-15: rgba(255,255,255,0.15);
  --white-20: rgba(255,255,255,0.2);
  --white-30: rgba(255,255,255,0.3);
  --white-40: rgba(255,255,255,0.4);
  --white-50: rgba(255,255,255,0.5);
  --white-60: rgba(255,255,255,0.6);
  --white-70: rgba(255,255,255,0.7);
  --white-80: rgba(255,255,255,0.8);
  --white-90: rgba(255,255,255,0.9);
}

/* --- フォント --- */
.og-font-display {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
}

/* --- コンテナ --- */
.og-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: block;
}
@media (min-width: 640px) {
  .og-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .og-container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; }
}

/* --- アニメーション --- */
@keyframes og-fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes og-fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes og-fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes og-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.og-animate { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.og-animate.og-visible { opacity: 1; transform: translate(0, 0); }
.og-animate-up { transform: translateY(40px); }
.og-animate-left { transform: translateX(-40px); }
.og-animate-right { transform: translateX(40px); }
.og-animate-delay-1 { transition-delay: 0.12s; }
.og-animate-delay-2 { transition-delay: 0.24s; }
.og-animate-delay-3 { transition-delay: 0.36s; }
.og-animate-delay-4 { transition-delay: 0.45s; }

/* ============================================
   HEADER
   ============================================ */
.og-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  transition: all 0.3s ease;
  background: transparent;
  display: block;
}
.og-header.og-scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.og-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .og-header-inner { height: 80px; }
}
.og-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.og-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .og-logo-img { height: 48px; }
}
.og-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.og-logo-text-main {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .og-logo-text-main { font-size: 16px; }
}
.og-logo-text-sub {
  color: var(--white-70);
  font-size: 13px;
}
@media (min-width: 1024px) {
  .og-logo-text-sub { font-size: 16px; }
}

/* Desktop Nav */
.og-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .og-nav-desktop { display: flex; }
}
.og-nav-link {
  color: var(--white-80);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.og-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.og-nav-link:hover { color: var(--orange); }
.og-nav-link:hover::after { width: 100%; }
.og-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.og-nav-phone:hover {
  background: var(--orange-light);
  box-shadow: 0 8px 20px rgba(232,120,48,0.3);
}

/* Mobile Menu */
.og-mobile-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .og-mobile-btn { display: none; }
}
.og-mobile-btn svg { width: 24px; height: 24px; }
.og-mobile-menu {
  display: none;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--white-10);
}
.og-mobile-menu.og-open { display: block; }
@media (min-width: 1024px) {
  .og-mobile-menu { display: none; }
}
.og-mobile-nav {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.og-mobile-nav-link {
  color: var(--white-80);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
}
.og-mobile-nav-link:hover { color: var(--orange); }
.og-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.og-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.og-hero-bg {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
}
.og-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.og-hero-overlay {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.85) 45%, rgba(10,22,40,0.4) 70%, rgba(10,22,40,0.2) 100%);
}
.og-hero-accent {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(255,140,66,0.08) 55%, rgba(255,140,66,0.04) 100%);
  display: none;
}
@media (min-width: 1024px) {
  .og-hero-accent { display: block; }
}
.og-hero-content {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  max-width: 720px;
}
@media (min-width: 1024px) {
  .og-hero-content { padding-top: 9rem; padding-bottom: 7rem; }
}
.og-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-10);
  backdrop-filter: blur(4px);
  border: 1px solid var(--white-20);
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 1.5rem;
}
.og-hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: og-pulse 2s infinite;
  display: inline-block;
}
.og-hero-badge-text {
  color: var(--white-90);
  font-size: 16px;
  font-weight: 500;
}
.og-hero h1 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .og-hero h1 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .og-hero h1 { font-size: 3rem; }
}
@media (min-width: 1280px) {
  .og-hero h1 { font-size: 3.75rem; }
}
.og-text-orange { color: var(--orange); }
.og-text-cyan { color: var(--cyan); }
.og-hero-sub {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 640px;
}

/* --- 最安値表示 --- */
.og-hero-price {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.og-hero-price-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 20px;
  transition: all 0.3s ease;
}
.og-hero-price-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.og-hero-price-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.og-hero-price-icon.og-orange-bg {
  background: rgba(240,128,48,0.25);
}
.og-hero-price-icon.og-cyan-bg {
  background: rgba(64,200,216,0.25);
}
.og-hero-price-label {
  color: var(--white-60);
  font-size: 13px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.05em;
}
.og-hero-price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.og-hero-price-number {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.1;
}
.og-hero-price-number.og-text-orange { color: var(--orange); }
.og-hero-price-number.og-text-cyan { color: var(--cyan); }
.og-hero-price-unit {
  color: var(--white-70);
  font-size: 13px;
  font-weight: 500;
}
.og-hero-price-note {
  color: var(--white-50);
  font-size: 13px;
  margin-top: 2px;
  display: block;
}
@media (min-width: 640px) {
  .og-hero-price-number { font-size: 2rem; }
}
@media (min-width: 1024px) {
  .og-hero-price-number { font-size: 2.25rem; }
}
@media (min-width: 640px) {
  .og-hero-sub { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .og-hero-sub { font-size: 1.25rem; }
}
.og-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .og-hero-cta { flex-direction: row; }
}
.og-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(240,128,48,0.25);
}
.og-btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 12px 30px rgba(240,128,48,0.35);
  transform: translateY(-2px);
}
.og-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white-10);
  backdrop-filter: blur(4px);
  border: 1px solid var(--white-30);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.og-btn-secondary:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}
.og-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .og-scroll-indicator { display: flex; }
}
.og-scroll-indicator span {
  color: var(--white-40);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
}
.og-scroll-indicator-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--white-40), transparent);
}

/* ============================================
   REASONS SECTION
   ============================================ */
.og-reasons {
  padding: 5rem 0;
  background: var(--sand);
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .og-reasons { padding: 7rem 0; }
}
.og-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.og-section-label {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
.og-section-title {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .og-section-title { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .og-section-title { font-size: 2.25rem; }
}
.og-section-desc {
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}
.og-reasons-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .og-reasons-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.og-reasons-business,
.og-reasons-leisure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.og-reasons-business-bg,
.og-reasons-leisure-bg {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
}
.og-reasons-business-bg img,
.og-reasons-leisure-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.og-reasons-business-overlay {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(10,22,40,0.95), rgba(10,22,40,0.90), rgba(10,22,40,0.80));
}
.og-reasons-leisure-overlay {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(58,26,0,0.95), rgba(58,26,0,0.88), rgba(58,26,0,0.75));
}
.og-reasons-inner {
  position: relative;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .og-reasons-inner { padding: 2.5rem; }
}
.og-reasons-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.og-reasons-icon-box {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.og-reasons-column-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.og-reasons-column-sub {
  color: var(--white-50);
  font-size: 16px;
}
.og-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.og-reasons-item {
  display: flex;
  gap: 1rem;
}
.og-reasons-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.og-reasons-item-icon.og-cyan-bg { background: rgba(60,192,208,0.2); }
.og-reasons-item-icon.og-orange-bg { background: rgba(232,120,48,0.2); }
.og-reasons-item-icon.og-cyan-bg:hover { background: rgba(60,192,208,0.3); }
.og-reasons-item-icon.og-orange-bg:hover { background: rgba(232,120,48,0.3); }
.og-reasons-item h4 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.og-reasons-item p {
  color: var(--white-60);
  font-size: 16px;
  line-height: 1.6;
}
.og-reasons-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 2rem;
  transition: color 0.2s ease;
}
.og-reasons-cta.og-cyan { color: var(--cyan); }
.og-reasons-cta.og-cyan:hover { color: #fff; }
.og-reasons-cta.og-orange { color: var(--orange); }
.og-reasons-cta.og-orange:hover { color: #fff; }

/* ============================================
   PLANS SECTION
   ============================================ */
.og-plans {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .og-plans { padding: 8rem 0; }
}
.og-plans-bg {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}
.og-plans-pattern {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.og-plans-content {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.og-plans-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .og-plans-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.og-plan-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid var(--white-10);
  color: #fff;
}
.og-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: var(--white-10);
}
.og-plan-card.og-accent {
  background: linear-gradient(to bottom right, var(--orange), #e06520);
  border: none;
  box-shadow: 0 12px 30px rgba(232,120,48,0.2);
}
.og-plan-card.og-accent:hover {
  background: linear-gradient(to bottom right, var(--orange), #e06520);
}
.og-plan-badge {
  position: absolute;
  top: -12px;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.og-plan-badge.og-badge-corp {
  right: 24px;
  background: var(--cyan);
  color: var(--navy);
}
.og-plan-badge.og-badge-popular {
  left: 24px;
  background: #fff;
  color: var(--orange);
}
.og-plan-icon-box {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.og-plan-icon-box.og-dark { background: rgba(42,111,168,0.2); }
.og-plan-icon-box.og-light { background: var(--white-20); }
.og-plan-name {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: #fff;
}
.og-plan-period {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 1rem;
}
.og-plan-period.og-orange { color: var(--orange); }
.og-plan-period.og-white { color: var(--white-80); }
.og-plan-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.og-plan-tagline.og-muted { color: var(--white-60); }
.og-plan-tagline.og-bright { color: var(--white-80); }
.og-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.og-plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.og-plan-features li span { color: var(--white-70); }
.og-plan-card.og-accent .og-plan-features li span { color: var(--white-90); }
.og-plan-cta {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 2rem;
  transition: all 0.2s ease;
}
.og-plan-cta.og-outline {
  background: rgba(232,120,48,0.1);
  color: var(--orange);
  border: 1px solid rgba(232,120,48,0.3);
}
.og-plan-cta.og-outline:hover { background: rgba(232,120,48,0.2); }
.og-plan-cta.og-solid {
  background: #fff;
  color: var(--orange);
}
.og-plan-cta.og-solid:hover { background: var(--white-90); }
.og-plans-note {
  text-align: center;
  color: var(--white-40);
  font-size: 16px;
  margin-top: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   PROMISES SECTION
   ============================================ */
.og-promises {
  padding: 5rem 0;
  background: var(--sand);
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .og-promises { padding: 7rem 0; }
}
.og-promises-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .og-promises-grid { grid-template-columns: 2fr 3fr; gap: 3rem; align-items: center; }
}
.og-promises-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10,22,40,0.1);
}
.og-promises-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .og-promises-image img { height: 420px; }
}
.og-promises-image-overlay {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.4), transparent);
}
.og-promises-image-label {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 12px 16px;
}
.og-promises-image-label strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
}
.og-promises-image-label span {
  color: rgba(10,22,40,0.6);
  font-size: 16px;
}
.og-promises-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.og-promise-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .og-promise-card { padding: 2rem; }
}
.og-promise-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: rgba(232,120,48,0.2);
}
.og-promise-card-inner {
  display: flex;
  gap: 1.25rem;
}
.og-promise-icon-box {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.og-promise-card:hover .og-promise-icon-box { transform: scale(1.1); }
.og-promise-icon-box.og-bg-cyan { background: rgba(60,192,208,0.1); }
.og-promise-icon-box.og-bg-ocean { background: rgba(42,111,168,0.1); }
.og-promise-icon-box.og-bg-orange { background: rgba(232,120,48,0.1); }
.og-promise-number {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: rgba(10,22,40,0.1);
}
.og-promise-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.og-promise-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.og-promise-desc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   ACCESS SECTION
   ============================================ */
.og-access-airport-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,128,48,0.15);
  border: 1px solid rgba(240,128,48,0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  margin-top: 1rem;
}
.og-access-airport-badge span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.og-access-airport-badge strong {
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
}
.og-access {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .og-access { padding: 8rem 0; }
}
.og-access-bg {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
}
.og-access-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.og-access-bg-overlay {
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.8);
}
.og-access-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .og-access-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.og-access-info {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid var(--white-10);
  border-radius: 1rem;
  padding: 2rem;
}
.og-access-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.og-access-item:last-child { margin-bottom: 0; }
.og-access-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(42,111,168,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.og-access-item-label {
  color: var(--white-50);
  font-size: 16px;
  margin-bottom: 2px;
}
.og-access-item-value {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.og-access-item-value a {
  color: #fff;
  transition: color 0.2s ease;
}
.og-access-item-value a:hover { color: var(--orange); }
.og-access-highlights {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-10);
}
.og-access-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.og-access-highlight:last-child { margin-bottom: 0; }
.og-access-highlight p {
  color: var(--white-70);
  font-size: 16px;
}
.og-access-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  min-height: 360px;
}
.og-access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
@media (min-width: 1024px) {
  .og-access-map iframe { min-height: 400px; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.og-contact {
  padding: 5rem 0;
  background: var(--sand);
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .og-contact { padding: 7rem 0; }
}
.og-contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 896px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .og-contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.og-contact-personal {
  background: linear-gradient(to bottom right, var(--orange), #e06520);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(232,120,48,0.15);
}
@media (min-width: 1024px) {
  .og-contact-personal { padding: 2.5rem; }
}
.og-contact-business {
  background: var(--navy);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(10,22,40,0.15);
}
@media (min-width: 1024px) {
  .og-contact-business { padding: 2.5rem; }
}
.og-contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.og-contact-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.og-contact-icon-box.og-white-bg { background: var(--white-20); }
.og-contact-icon-box.og-dark-bg { background: var(--white-10); }
.og-contact-column-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.og-contact-column-sub {
  font-size: 16px;
  opacity: 0.7;
  color: var(--white-70);
}
.og-contact-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: var(--white-80);
}
.og-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.og-contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.og-contact-btn-primary-white {
  background: #fff;
  color: var(--orange);
}
.og-contact-btn-primary-white:hover {
  background: var(--white-90);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.og-contact-btn-ghost-white {
  background: var(--white-15);
  color: #fff;
  border: 1px solid var(--white-20);
}
.og-contact-btn-ghost-white:hover { background: rgba(255,255,255,0.25); }
.og-contact-btn-primary-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.og-contact-btn-primary-cyan:hover {
  background: rgba(60,192,208,0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.og-contact-btn-ghost-dark {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid var(--white-10);
}
.og-contact-btn-ghost-dark:hover { background: var(--white-10); }
.og-contact-btn-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.og-footer {
  background: var(--navy);
  padding: 3rem 0;
  display: block;
}
@media (min-width: 1024px) {
  .og-footer { padding: 4rem 0; }
}
.og-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .og-footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.og-footer-brand {
  text-align: center;
}
@media (min-width: 1024px) {
  .og-footer-brand { text-align: left; }
}
.og-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .og-footer-logo { justify-content: flex-start; }
}
.og-footer-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.og-footer-logo-text-main {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.og-footer-logo-text-sub {
  color: var(--white-50);
  font-size: 16px;
}
.og-footer-desc {
  color: var(--white-40);
  font-size: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.og-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.og-footer-links a {
  color: var(--white-50);
  font-size: 16px;
  transition: color 0.2s ease;
}
.og-footer-links a:hover { color: var(--orange); }
.og-footer-company {
  text-align: center;
}
@media (min-width: 1024px) {
  .og-footer-company { text-align: right; }
}
.og-footer-company p {
  color: var(--white-40);
  font-size: 16px;
  margin-bottom: 4px;
}
.og-footer-divider {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-10);
  text-align: center;
}
.og-footer-copyright {
  color: rgba(255,255,255,0.3);
  font-size: 16px;
}

/* --- SVG Icons --- */
.og-icon {
  display: inline-block;
  width: 20px; height: 20px;
  vertical-align: middle;
}
.og-icon-sm { width: 16px; height: 16px; }
.og-icon-lg { width: 24px; height: 24px; }
.og-icon-xl { width: 28px; height: 28px; }
.og-check-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* --- br制御 --- */
.og-br-sm { display: none; }
@media (min-width: 640px) {
  .og-br-sm { display: inline; }
}

/* ============================================
   サブページ共通スタイル
   ============================================ */

/* --- ページヘッダー（タイトルバナー） --- */
.og-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.og-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(64,200,216,0.1), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(240,128,48,0.08), transparent 50%);
}
.og-page-header h1 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .og-page-header h1 { font-size: 2.25rem; }
}
.og-page-header .og-page-header-label {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}

/* --- パンくずリスト --- */
.og-breadcrumb {
  background: var(--sand);
  padding: 0.75rem 0;
  font-size: 13px;
  color: #666;
}
.og-breadcrumb a {
  color: var(--ocean);
}
.og-breadcrumb a:hover {
  color: var(--orange);
}
.og-breadcrumb .og-breadcrumb-sep {
  margin: 0 0.5rem;
  color: #ccc;
}

/* --- メインコンテンツ --- */
.og-page-content {
  padding: 3rem 0 4rem;
  background: #fff;
}
.og-page-content .og-container {
  max-width: 800px;
}

/* --- 記事本文 --- */
.og-entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.og-entry-content h2 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cyan);
}
.og-entry-content h3 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.og-entry-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-light);
  margin: 1.5rem 0 0.5rem;
}
.og-entry-content p {
  margin-bottom: 1.25rem;
}
.og-entry-content ul,
.og-entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.og-entry-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.og-entry-content ol li {
  list-style: decimal;
}
.og-entry-content blockquote {
  border-left: 4px solid var(--cyan);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--sand);
  border-radius: 0 8px 8px 0;
  color: #555;
  font-style: italic;
}
.og-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.og-entry-content th,
.og-entry-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.og-entry-content th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.og-entry-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
}
.og-entry-content a {
  color: var(--ocean);
  text-decoration: underline;
}
.og-entry-content a:hover {
  color: var(--orange);
}

/* --- お知らせ一覧 --- */
.og-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.og-news-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.og-news-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
@media (min-width: 640px) {
  .og-news-item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.og-news-date {
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  white-space: nowrap;
}
.og-news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.og-news-title a {
  color: var(--navy);
}
.og-news-title a:hover {
  color: var(--orange);
}
.og-news-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* --- ページネーション --- */
.og-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.og-pagination a,
.og-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.og-pagination a {
  background: #fff;
  color: var(--navy);
  border: 1px solid #e0e0e0;
}
.og-pagination a:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}
.og-pagination .current {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}

/* --- 404ページ --- */
.og-404 {
  text-align: center;
  padding: 5rem 0;
}
.og-404-number {
  font-family: 'Poppins', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(10,22,40,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}
.og-404 h2 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.og-404 p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.og-404 .og-btn-primary {
  display: inline-flex;
}

/* --- Contact Form 7 スタイル調整 --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: #fff;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(64,200,216,0.15);
}
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(240,128,48,0.25);
  transition: all 0.3s ease;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--orange-light);
  box-shadow: 0 12px 30px rgba(240,128,48,0.35);
  transform: translateY(-2px);
}
.wpcf7 label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.wpcf7-form p {
  margin-bottom: 1.5rem;
}

/* --- WordPress ブロックエディタ対応 --- */
.wp-block-image img {
  border-radius: 12px;
}
.wp-block-separator {
  border-color: var(--sand-dark);
}
.wp-block-button__link {
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}
.wp-block-button__link:hover {
  background: var(--orange-light);
}
/* ============================================================
   TICKER BAR — アンダーライン・アクセント
   ============================================================ */
.og-ticker-bar {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.og-ticker-bar-text {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.og-ticker-bar-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #40c8d8, transparent);
}

@media (max-width: 768px) {
  .og-ticker-bar {
    padding: 12px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

/* ============================================================
   FLOATING CTA — ラベル付き丸ボタン
   ============================================================ */
.og-float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 9999;
}

.og-float-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.og-float-label {
  background: #fff;
  color: #1a2d4a;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0.95;
}

.og-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.og-float-item:hover .og-float-btn {
  transform: scale(1.1);
}

.og-float-phone .og-float-btn {
  background: #f08030;
}

.og-float-line .og-float-btn {
  background: #06C755;
}

@media (max-width: 768px) {
  .og-float-cta {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .og-float-btn {
    width: 48px;
    height: 48px;
  }
  .og-float-label {
    font-size: 11px;
    padding: 6px 12px;
  }
}
