:root {
    --primary-color: #FF8A65;
    /* Salmon Pink - Warmth, Kindness */
    --primary-light: #FFCCBC;
    --accent-color: #D4AF37;
    /* Gold - Premium, Quality */
    --text-color: #5D4037;
    /* Dark Brown - Softer than black */
    --light-text: #8D6E63;
    /* Medium Brown */
    --bg-color: #FFFCF9;
    /* Very warm cream/pale salmon for main bg */
    --bg-light: #FFF0E8;
    /* Noticeable pale salmon for alternating sections */
    --bg-dark: #5D4037;
    /* Dark Brown for Footer */
    --white: #FFFFFF;
    --border-color: #FFCCBC;
    --shadow: 0 5px 20px rgba(183, 28, 28, 0.05);
    /* Reddish shadow */
    --transition: all 0.3s ease;
    --font-sans: 'Noto Sans JP', sans-serif;
    --line-green: #06C755;
    /* LINE Official Color */
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.05em;
    ;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 100px 0;
}
.text-center {
    text-align: center;
}
.text-white {
    color: var(--white);
}
.bg-light {
    background-color: var(--bg-light);
}
.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}
.mt-5 {
    margin-top: 3rem;
}
.pc-only {
    display: block;
}
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
}
/* Buttons */
.btn-primary,
.btn-line,
.btn-line-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.btn-primary-nav {
    background-color: var(--line-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: none;
}
.btn-primary-nav:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.btn-line {
    background-color: var(--line-green);
    color: var(--white);
    border: 2px solid var(--line-green);
}
.btn-line:hover {
    background-color: var(--white);
    color: var(--line-green);
}
.btn-lg {
    padding: 18px 60px;
    font-size: 1.1rem;
}
.btn-xl {
    padding: 20px 80px;
    font-size: 1.2rem;
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(215, 180, 150, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}
.nav-links a:hover {
    color: var(--primary-color);
}
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: var(--transition);
}
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('okinawa_minpaku_hero.png');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(93, 64, 55, 0.2), rgba(93, 64, 55, 0.4));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: var(--white);
}
/* Section Titles */
.section-title {
    margin-bottom: 60px;
}
.en-title {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
.section-title h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 3px;
}
/* Reasons */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.reason-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 138, 101, 0.05);
}
.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 138, 101, 0.15);
    border-color: var(--primary-color);
}
.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    border: 2px solid var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}
.reason-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    text-align: left;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}
.card-header {
    background: linear-gradient(135deg, var(--primary-color), #FF7043);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}
.card-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--white);
}
.card-header .price {
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--white);
}
.card-header .price small {
    font-size: 0.7rem;
    font-weight: 400;
    margin-left: 3px;
}
.card-body {
    padding: 25px;
}
.card-body .desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    color: var(--text-color);
}
.points li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.points li i {
    color: var(--accent-color);
}
.note {
    font-size: 0.9rem;
    color: var(--light-text);
}
/* About */
.about-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}
.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-color);
}
/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}
.faq-question span {
    color: var(--primary-color);
    margin-right: 15px;
    font-weight: 700;
}
.toggle-icon {
    margin-left: auto;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-light);
}
.faq-answer p {
    padding: 20px 0;
    color: var(--text-color);
    display: flex;
    gap: 15px;
}
.faq-answer p span {
    color: var(--accent-color);
    font-weight: 700;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}
/* CTA */
.cta {
    background: var(--bg-light);
    /* Cream */
}
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.cta p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-color);
}
/* Contact */
#contact {
    background-color: var(--bg-light) !important;
    /* Force cream background */
    color: var(--text-color) !important;
}
#contact .section-title h2,
#contact .section-title .en-title {
    color: var(--text-color) !important;
}
/* Override utility if needed or just use ID selector above */
.contact-actions {
    margin: 40px 0;
}
.sub-contact {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--light-text);
}
/* Footer */
footer {
    background: var(--primary-color);
    /* Salmon Pink */
    padding: 60px 0 20px;
    color: var(--white);
    border-top: none;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    color: var(--white);
    /* White in dark footer */
}
.footer-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}
.footer-links a:hover {
    color: var(--primary-color);
}
.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.4s;
}
/* Responsive */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero h1 {
        font-size: 2rem;
    }
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* JSがなくてもコンテンツが見えるようにする */
.fade-in,
.reason-item,
.service-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ========= ここからスマホ用レイアウト ========= */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  section {
    padding: 48px 16px;
  }

  .container {
    padding: 0 8px;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 16px 40px;
    text-align: left;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  /* 理由・サービスのカードを1列に */
  .reasons-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* FAQの文字ちょっと大きめ */
  .faq-item {
    font-size: 14px;
  }
}
/* =========================
   FAQ（よくある質問）
   ========================= */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

/* デフォルトの三角マークを消す */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* 右側の＋／−アイコン */
.faq-item summary::after {
  content: "＋";
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-item p {
  margin: 12px 0 4px;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 14px;
}

/* スマホ用ちょい調整 */
@media (max-width: 768px) {
  .faq-item {
    padding: 14px 16px;
  }
  .faq-item p {
    font-size: 13px;
  }
}