/*
Theme Name: Salon Naru
Theme URI: https://salon-naru.com
Author: はやちゃん
Author URI: https://salon-naru.com
Description: 女性専用リラクゼーションサロン向けWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: salon-naru
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Noto+Sans+JP:wght@300;400;500;700&family=Italiana&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FAF7F2;
    color: #6B5344;
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 16px;
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
}

.italiana {
    font-family: 'Italiana', serif;
}

.cormorant {
    font-family: 'Cormorant Garamond', serif;
}

/* ナビゲーション */
nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    background: transparent;
    padding: 1.5rem 0;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #8B7355;
    text-decoration: none;
}

.nav-menu {
    display: none;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #A68968;
}

.nav-cta {
    background: #06C755;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #05B34D;
    color: white !important;
}

/* ボタン */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.btn-line {
    background: #06C755;
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05B34D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8B7355;
    border: 2px solid #8B7355;
}

.btn-secondary:hover {
    background: #8B7355;
    color: #fff;
}

/* 固定LINEボタン */
.floating-line {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-line .btn {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ヒーロー */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 247, 242, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 1.5rem;
    text-align: center;
}

.hero h1 {
	/*
    font-size: 3rem;
	*/
	font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #6B5344;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    background: rgba(250, 247, 242, 0.85);
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero p {
    font-size: 1.1rem;
    color: #8B7355;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    background: rgba(250, 247, 242, 0.85);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.3rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* セクション */
section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    section {
        padding: 8rem 1.5rem;
    }
}

.container {
    max-width: 1300px !important;
    margin: 0 auto;
}

.section-title {
	/*)
    font-size: 2.5rem;
	*/
	font-size:1.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #6B5344;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #8B7355;
    font-size: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* 写真プレースホルダー */
.photo-box {
    background: repeating-linear-gradient(45deg,
            #E8DCC8,
            #E8DCC8 20px,
            #D4C4B0 20px,
            #D4C4B0 40px);
    border: 4px dashed #B8A898;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.photo-content {
    text-align: center;
    background: rgba(250, 247, 242, 0.95);
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 90%;
}

/* 実際の画像が入る場合 */
.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* グリッド */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* カード */
.card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .card {
        padding: 2.5rem;
    }
}

.card p {
    font-size: 1rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .card p {
        font-size: 1.05rem;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-warm {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
}

.card-green {
    background: linear-gradient(135deg, #D4E4D7 0%, #B8CDB8 100%);
}

.card-brown {
    background: #8B7355;
    color: #fff;
}

.card-dark {
    background: #6B5344;
    color: #fff;
}

/* FAQ */
.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #6B5344;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #FAF7F2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.chevron {
    transition: transform 0.3s;
    color: #8B7355;
}

.chevron.active {
    transform: rotate(180deg);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 900px;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem 3rem;
    }
}

/* フッター */
footer {
    background: #6B5344;
    color: #fff;
    padding: 3rem 1.5rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ブログ用スタイル */
.blog-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .blog-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.blog-post {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6B5344;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-title a {
    color: #6B5344;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-title a:hover {
    color: #8B7355;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #8B7355;
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    color: #6B5344;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #A68968;
}

/* 個別記事 */
.single-post {
    background: #fff;
    border-radius: 1rem;
	/*
    padding: 3rem 2rem;
	*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
	/*
    .single-post {
        padding: 4rem 3rem;
    }
	*/
}

.single-post-title {
    font-size: 2rem;
    font-weight: 600;
    color: #6B5344;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .single-post-title {
        font-size: 2.5rem;
    }
}

.single-post-content {
    color: #6B5344;
    line-height: 1.9;
}

.single-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #6B5344;
}

.single-post-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #8B7355;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.single-post-content ul,
.single-post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

/* サイドバー */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6B5344;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E8D4C0;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 0.75rem;
}

.sidebar-widget ul li a {
    color: #8B7355;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
    color: #A68968;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: #8B7355;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination a:hover {
    background: #8B7355;
    color: #fff;
}

.pagination .current {
    background: #8B7355;
    color: #fff;
}
/* ===================================
   ブログ記事スタイル
   =================================== */

/* 記事本文コンテナ */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6B5344;
}

/* 見出しスタイル */
.article-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #6B5344;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #E8D4C0;
}

@media (max-width: 768px) {
  .article-content h1 {
    font-size: 1.8rem;
  }
}

.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #6B5344;
  line-height: 1.4;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #8B7355;
}

@media (max-width: 768px) {
  .article-content h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6B5344;
  line-height: 1.4;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F5E6D3;
}

@media (max-width: 768px) {
  .article-content h3 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
  }
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6B5344;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* 段落 */
.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* リストスタイル */
.article-content ul,
.article-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.article-content ul li {
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content ul li::before {
  content: "●";
  color: #8B7355;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.article-content ol {
  counter-reset: list-counter;
}

.article-content ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.article-content ol li::before {
  content: counter(list-counter) ".";
  color: #8B7355;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* リンクスタイル */
.article-content a {
  /*color: #8B7355; */
  color: #fff;
  /* text-decoration: underline; */
  transition: color 0.3s;
}

.article-content a:hover {
  color: #6B5344;
}

/* CTAボタン */
.article-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #00B900;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
  margin: 1rem 0;
}

.article-cta-button:hover {
  background: #009900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
  color: #fff;
}

/* ボックススタイル */
.article-box {
  background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(107, 83, 68, 0.1);
}

.article-box-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6B5344;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #D4C4B0;
}

/* 強調ボックス */
.article-highlight {
  background: #fff;
  border-left: 4px solid #8B7355;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* テーブルスタイル(料金表など) */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-content table th {
  background: linear-gradient(135deg, #8B7355 0%, #A68968 100%);
  color: #fff;
  font-weight: 600;
  padding: 1.25rem;
  text-align: left;
}

.article-content table td {
  padding: 1.25rem;
  border-bottom: 1px solid #F5E6D3;
  color: #6B5344;
}

.article-content table tr:last-child td {
  border-bottom: none;
}

.article-content table tr:hover {
  background: #FAF7F2;
}

@media (max-width: 768px) {
  .article-content table {
    font-size: 0.9rem;
  }
  
  .article-content table th,
  .article-content table td {
    padding: 1rem;
  }
}

/* 引用・お客様の声 */
.article-content blockquote,
.customer-voice {
  background: #fff;
  border-left: 4px solid #8B7355;
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6B5344;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.customer-voice::before {
  content: """;
  font-size: 3rem;
  color: #E8D4C0;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.customer-voice-name {
  text-align: right;
  font-style: normal;
  font-size: 0.9rem;
  color: #8B7355;
  margin-top: 1rem;
  font-weight: 600;
}

/* メニュー・料金カード */
.menu-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(107, 83, 68, 0.15);
}

.menu-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6B5344;
  margin-bottom: 0.5rem;
}

.menu-card-duration {
  font-size: 1rem;
  color: #8B7355;
  margin-bottom: 1rem;
}

.menu-card-description {
  color: #6B5344;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.menu-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #8B7355;
  text-align: right;
}

/* FAQ スタイル */
.faq-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: #6B5344;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.faq-question::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #8B7355;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.faq-answer {
  color: #6B5344;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
}

.faq-answer::before {
  content: "A.";
  position: absolute;
  left: 0;
  color: #8B7355;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

/* 強調テキスト */
.article-content strong,
.article-content b {
  font-weight: 600;
  color: #6B5344;
  background: linear-gradient(transparent 70%, #F5E6D3 70%);
  padding: 0 0.2rem;
}

/* 画像スタイル */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

/* セパレーター */
.article-separator {
  border: none;
  border-top: 2px solid #E8D4C0;
  margin: 3rem 0;
}

/* アクセス情報ボックス */
.access-box {
  background: linear-gradient(135deg, #D4E4D7 0%, #B8CDB8 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(107, 83, 68, 0.1);
}

.access-box h3 {
  color: #6B5344;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #B8CDB8;
}

/* 記事内CTA セクション */
.article-cta-section {
  background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(107, 83, 68, 0.15);
}

.article-cta-section h2,
.article-cta-section h3 {
  margin-top: 0;
  border: none;
  padding: 0;
}

.article-cta-section h4 {
  margin-top: 0.5rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .article-content {
    font-size: 1rem;
  }
  
  .article-box,
  .article-highlight,
  .menu-card,
  .faq-item,
  .access-box {
    padding: 1.5rem;
  }
  
  .article-cta-section {
    padding: 2rem 1.5rem;
  }
  
  .menu-card-price {
    font-size: 2rem;
  }
}

/* ========================================
   モバイル用 ナビゲーション
   ======================================== */

/* ハンバーガーメニューボタン */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #6B5344;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: #8B7355;
}

/* 既存のデスクトップナビゲーション */
.desktop-nav {
    display: block;
}

/* モバイルナビゲーション */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
}

.mobile-nav.active {
    visibility: visible;
}

/* オーバーレイ(背景の暗い部分) */
.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.mobile-nav.active .mobile-nav-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* メニュー本体 */
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease;
    padding: 60px 0 20px 0;
}

.mobile-nav.active .mobile-nav-content {
    right: 0;
}

/* 閉じるボタン */
.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6B5344;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(107, 83, 68, 0.1);
    color: #8B7355;
}

/* モバイルメニューのリスト */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(107, 83, 68, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #6B5344;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.mobile-menu a:hover {
    background-color: rgba(107, 83, 68, 0.05);
    padding-left: 2.5rem;
    color: #8B7355;
}

.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
    background-color: rgba(139, 115, 85, 0.1);
    color: #8B7355;
    font-weight: 600;
}

/* サブメニュー */
.mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(107, 83, 68, 0.03);
}

.mobile-menu .sub-menu a {
    padding-left: 3rem;
    font-size: 0.9rem;
}

.mobile-menu .sub-menu .current-menu-item > a,
.mobile-menu .sub-menu .current_page_item > a {
    background-color: rgba(139, 115, 85, 0.15);
}

/* レスポンシブ設定 */
@media (max-width: 768px) {
    /* nav-containerをフレックスボックスに */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* ハンバーガーメニューボタンを表示 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* デスクトップナビゲーションを非表示 */
    .desktop-nav {
        display: none;
    }
    
    /* モバイルナビゲーションを有効化 */
    .mobile-nav {
        display: block;
    }
}

/* メニューが開いているときにボディのスクロールを禁止 */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ナビゲーションのz-indexを調整 */
#navbar {
    position: relative;
    z-index: 100;
}

/* ========================================
   アクセス・営業時間セクション - スマホ対応修正
   ======================================== */

/* 全体の横スクロール防止のみ */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* すべての要素にbox-sizing適用 */
* {
    box-sizing: border-box;
}

/* テキストの折り返し設定 */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 予約セクションの幅制限 */
#cta,
.cta-section {
    max-width: 100%;
    overflow-x: hidden;
}

.cta-box {
    max-width: 100%;
}

/* スマホのみ左右に少し余白 */
@media (max-width: 768px) {
    #cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    #cta {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ========================================
   ナビゲーション固定
   ======================================== */

#navbar {
    position: fixed !important;  /* sticky ではなく fixed */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 101 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    margin: 0 !important;
}

/* ========================================
   2. コンテンツが隠れないように調整
   ======================================== */

/* ナビゲーションの高さ分だけ下にずらす */
body {
    padding-top: 80px !important; /* ナビゲーションの高さに合わせて調整 */
}

/* スマホの場合は少し小さく */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
}

/* ========================================
   3. スクロール時の背景変更
   ======================================== */

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

/* ========================================
   4. ナビゲーションコンテナ
   ======================================== */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}