@charset "UTF-8";

/* =================================================================
   リセット & 基本スタイル
   サイト全体の呼吸を整える
   ================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* スムーズなスクロールを実現 */
    scroll-behavior: smooth;
}

body {
    /* 和紙を思わせる、温かみのあるオフホワイト */
    background-color: #F8F6F2;
    /* 目に優しく落ち着いたダークグレー */
    color: #333333;
    /* 森の澄んだ空気のように読みやすいゴシック体を基本に */
    font-family: 'Noto Sans JP', sans-serif; 
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* ページが読み込まれた際に、要素が下からふわりと浮かび上がる効果 */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 大地の上に立つ、メインコンテンツとフッターにのみ、浮き上がる魔法をかける */
main,
footer {
    animation: fadeIn 1.5s ease-out forwards;
}

a {
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

/* セクション間の「間」を定義 */
section {
    padding: 80px 40px;
}


/* =================================================================
   ヘッダー
   空間に溶け込む、静かな佇まい
   ================================================================= */
header {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* 画面にヘッダーを固定する */
    top: 0;
    left: 0;
    z-index: 1000; /* 他のどの要素よりも手前に表示する */
    
    background-color: rgba(248, 246, 242, 0.85); /* 半透明の和紙の色 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header .logo span {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

/* ロゴのリンク要素をFlexboxで整える */
header .logo a {
	display: flex; /* 画像とテキストを横並びにする */
	align-items: center; /* 上下中央に揃える */
	gap: 12px; /* 画像とテキストの間の「間」 */
}

/* ロゴ画像のサイズを調整 */
header .logo img {
	height: 40px; /* 高さを指定（幅は自動調整） */
}

header nav ul {
    display: flex;
    gap: 30px; /* メニュー項目の間隔 */
}

header nav a {
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav a:hover {
    /* マウスを乗せた時に、そっと色が変わる */
    color: #556B2F; /* 苔の色 */
}


/* =================================================================
   メインコンテンツ
   ================================================================= */

/* -----------------------------------------------------------------
   ヒーローセクション: 世界観への入り口
   ----------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    position: relative; /* 子要素を配置する基準点 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px;
    overflow: hidden; /* はみ出した要素を隠す */
}

/* スライドショー全体の器 */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* テキストより後ろ */
}

/* 各スライド画像 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* 最初は透明 */
    animation: fadeEffect 9s infinite; /* 9秒間のフェード効果を永遠に繰り返す */
}

/* アニメーションの開始タイミングをずらす */
.slide:nth-child(1) {
    animation-delay: 0s;
}
.slide:nth-child(2) {
    animation-delay: 3s; /* 3秒遅れで開始 */
}
.slide:nth-child(3) {
    animation-delay: 6s; /* 6秒遅れで開始 */
}

/* フェードイン・フェードアウトのアニメーション定義 */
@keyframes fadeEffect {
    0% { opacity: 0; }
    11% { opacity: 1; } /* 1秒かけてフェードイン */
    33% { opacity: 1; } /* 2秒間表示 */
    44% { opacity: 0; } /* 1秒かけてフェードアウト */
    100% { opacity: 0; }
}

/* テキストと黒いフィルターの器 */
.hero-content {
    position: relative; /* スライドショーの上に配置 */
    z-index: 2; /* スライドショーより手前 */
    color: #F8F6F2;
}

/* 画像の上に半透明の黒いフィルターを重ねる */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vw; /* 画面よりずっと大きく */
    height: 200vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1; /* テキストより後ろ */
}


.hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1rem;
}

/* -----------------------------------------------------------------
   コンセプトセクション: サイトの哲学を語る場所
   ----------------------------------------------------------------- */
.concept {
    /* 文章が読みやすいように、横幅を適度に制限 */
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept h2,
.service-link h2,
.creations-link h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

.concept p {
    margin-bottom: 20px;
}
.concept p:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------
   導線セクション: 次のステップへといざなう
   ----------------------------------------------------------------- */
.link-section {
    max-width: 1000px; /* 少し幅を広げる */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* 偶数番目のセクション（制作実績）で、左右を入れ替える */
.link-section:nth-of-type(even) {
    flex-direction: row-reverse;
}

.link-image {
    flex: 1; /* 比率 1 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.link-image img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.link-content {
    flex: 1; /* 比率 1 */
    text-align: left; /* テキストは左揃えに */
}

.link-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left; /* 見出しも左揃えに */
}

.link-content p {
    margin-bottom: 30px;
}

/* -----------------------------------------------------------------
   導線セクション：スマートフォン対応
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
    .link-section,
    .link-section:nth-of-type(even) {
        flex-direction: column; /* 縦並びにする */
        gap: 30px;
    }

    .link-content {
        text-align: center;
    }

    .link-content h2 {
        text-align: center;
    }
}

.button {
    /* インライン要素からブロック要素のように振る舞わせる */
    display: inline-block;
    min-width: 220px;
    padding: 15px 30px;
    text-align: center;
    /* 清らかな湧き水の周りに育つ苔の色 */
    background-color: #556B2F;
    /* 温かみのある白 */
    color: #F8F6F2;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    /* 角を少し丸める */
    border-radius: 5px;
    /* 丁寧にやすりを掛けられた木材のイメージ */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* アニメーションを滑らかに */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    /* 少し浮き上がるような動き */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* =================================================================
   フッター
   静かに、余韻を残す
   ================================================================= */
footer {
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: #888;
}


/* =================================================================
   レスポンシブ対応 (画面幅768px以下)
   小さな画面でも「調和」を保つ
   ================================================================= */
@media (max-width: 768px) {

    body {
        /* 文字の可読性を上げる */
        line-height: 1.7;
    }

    section {
        padding: 60px 20px;
    }

    /* -------------------------------------------------------------
       ヒーローセクション (SP)
       ------------------------------------------------------------- */
    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    /* -------------------------------------------------------------
       見出し (SP)
       ------------------------------------------------------------- */
    .concept h2,
    .service-link h2,
    .creations-link h2 {
        font-size: 1.8rem;
    }


}

/* =================================================================
   サービス内容ページ (service.html)
   物語を読み進めるような、心地よい体験をデザイン
   ================================================================= */

/* -----------------------------------------------------------------
   ページ全体のレイアウト調整
   ----------------------------------------------------------------- */
.page-title,
.intro,
.process,
.offering,
.cta {
    max-width: 885px;
    margin-left: auto;
    margin-right: auto;
}

.page-title h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
}

.intro {
    text-align: left;
    line-height: 2;
}

/* -----------------------------------------------------------------
   旅の道のり (.process)
   物語の章立てを表現するデザイン
   ----------------------------------------------------------------- */
.process h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.process ol {
    list-style: none;
    padding: 0;
    counter-reset: journey-counter;
}

.process li {
    display: flex;
    align-items: center;
    gap: 2.5em;
    margin-bottom: 4em;
}

.process li:nth-child(even) {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1;
    max-width: 20%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px; /* 章番号のスペース */
}

/* 章番号を、見出しの左側に配置する */
.step-content h3::before {
    counter-increment: journey-counter;
    content: "0" counter(journey-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #A9966F;
}

/* -----------------------------------------------------------------
   旅の対価 (.offering) & お問い合わせ導線 (.cta)
   ----------------------------------------------------------------- */
.offering {
    background-color: #F5F3EF;
    border: 1px solid #EAE8E2;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
}

.offering h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.cta {
    text-align: center;
}

.cta h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* -----------------------------------------------------------------
   サービスページ：スマートフォン対応
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
  .process li,
  .process li:nth-child(even) {
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 3em;
  }

  .step-image {
    max-width: 100%;
  }

  .step-content h3 {
    padding-left: 0; /* 章番号はタイトルの上に表示 */
    padding-top: 40px;
  }

  .step-content h3::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =================================================================
   お問い合わせページ (contact.html)
   清らかな泉が湧く、対話の場をデザイン
   ================================================================= */

/* -----------------------------------------------------------------
   フォーム全体のレイアウト
   ----------------------------------------------------------------- */
.contact-form form {
    max-width: 600px; /* 入力しやすいように、横幅を適度に制限 */
    margin: 0 auto; /* フォーム全体をページの中央に配置 */
}

.form-group {
    /* 各入力項目の間に、ゆったりとした余白を設ける */
    margin-bottom: 30px;
}


/* -----------------------------------------------------------------
   ラベルと入力欄のスタイル
   ----------------------------------------------------------------- */
.contact-form label {
    display: block; /* ラベルを入力欄の上に配置 */
    margin-bottom: 10px; /* ラベルと入力欄の間の小さな「間」 */
    font-size: 0.9rem;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px; /* 内側の余白を十分に取り、文字が窮屈に見えないように */
    /* ベース背景色よりごく僅かに濃い色 */
    background-color: #F5F3EF; 
    /* 主調色である「苔の色」を、細く、控えめに使用 */
    border: 1px solid #ccc;
    /* 角を少し丸め、優しい印象に */
    border-radius: 5px;
    font-family: inherit; /* bodyのフォントを継承 */
    font-size: 1rem;
    color: #333;
    /* フォーカス時のアニメーションを滑らかに */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 入力欄のデフォルトの枠線をリセット */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

/* 入力のためにクリックした際の、優しいフィードバック */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #556B2F; /* 枠線の色が苔の色に変わる */
    /* 微かな影がつき、入力欄がそっと浮かび上がる */
    box-shadow: 0 0 10px rgba(85, 107, 47, 0.1);
}

/* textareaはリサイズ可能に */
.contact-form textarea {
    resize: vertical;
}


/* -----------------------------------------------------------------
   送信ボタン
   ----------------------------------------------------------------- */
.form-submit {
    text-align: center; /* ボタンを中央に配置 */
    margin-top: 40px; /* メッセージ欄との間に十分な間を設ける */
}

/* 
  送信ボタンには既存の .button クラスを適用するため、
  デザインはサイト全体で統一されます。
  ホバーエフェクトも既存のスタイルが適用されます。
*/

/* =================================================================
   制作実績ページ (creations.html)
   共創の物語を語るギャラリー
   ================================================================= */

/* -----------------------------------------------------------------
   実績ギャラリー全体 (.gallery)
   心地よい「間」を保ったグリッドレイアウト
   ----------------------------------------------------------------- */
.gallery {
    display: grid;
    /* PC画面では、アイテムを横に2列並べます */
    grid-template-columns: repeat(2, 1fr);
    /* アイテムとアイテムの間に、十分な余白（間）を設けます */
    gap: 50px 40px; /* 縦方向の余白, 横方向の余白 */
    padding-top: 20px;
}

/* -----------------------------------------------------------------
   各実績アイテム (.gallery-item)
   一枚のカードとして、静かな存在感を放つデザイン
   ----------------------------------------------------------------- */
.gallery-item {
    /* 温かみのあるオフホワイトの背景 */
    background-color: #fff;
    /* 角を少し丸め、優しい印象を与えます */
    border-radius: 8px;
    /* 控えめな影をつけ、カードがふわりと浮いているように見せます */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* ホバー時のアニメーションを滑らかにします */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    /* マウスを乗せた時に、カードが少しだけ浮き上がる繊細な効果 */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* -----------------------------------------------------------------
   アイテム内の画像とテキストのスタイル
   ----------------------------------------------------------------- */
.gallery-item img {
    width: 100%;
    height: auto;
    /* 画像の下にできる余分な隙間をなくします */
    vertical-align: top;
}

.gallery-content {
    /* 画像の下のテキスト部分に、十分な余白を設けます */
    padding: 30px;
}

.gallery-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 500;
    /* プロジェクト名と物語の間に適切な余白を設けます */
    margin-bottom: 15px;
}

.gallery-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    /* 物語とボタンの間に適切な余白を設けます */
    margin-bottom: 30px;
}

/* ボタンは既存の.buttonスタイルが適用されるため、デザインは統一されます */


/* =================================================================
   レスポンシブ対応 (画面幅768px以下)
   ================================================================= */
@media (max-width: 768px) {
    /* -------------------------------------------------------------
       ギャラリー (SP)
       ------------------------------------------------------------- */
    .gallery {
        /* スマートフォンでは、実績アイテムを縦に1列で表示します */
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   ページ共通：象徴ビジュアル (contact.htmlなど)
   ================================================================= */
.page-visual {
    max-width: 800px; /* 他のコンテンツと幅を合わせる */
    margin: 0 auto; /* 中央揃え */
    padding-top: 0; /* 上のセクションとの間隔を詰める */
    padding-bottom: 40px; /* 下のセクションとの間隔を調整 */
}

.page-visual img {
    border-radius: 8px; /* 角を少し丸める */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 控えめな影 */
}

/* =================================================================
   コンセプトセクション：巻物（詳細な哲学）
   ================================================================= */
.read-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.button-subtle {
    background-color: transparent;
    border: 1px solid #A9966F; /* 落ち着いたゴールドの枠線 */
    color: #A9966F;
    font-family: 'Noto Serif JP', serif;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-subtle:hover {
    background-color: #A9966F;
    color: #F8F6F2;
}

.philosophy-details {
    /* 初期状態では、巻物は閉じられている */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out, margin-top 0.8s ease-in-out;
    text-align: left; /* 詳細文は左揃えに */
    margin-top: 0;
}

/* 巻物が開いた時のスタイル */
.philosophy-details.is-open {
    max-height: 2000px; /* 十分な高さを確保 */
    opacity: 1;
    margin-top: 60px; /* ボタンとの間に美しい「間」を設ける */
}

.philosophy-details h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EAE8E2;
}

.philosophy-details p {
    margin-bottom: 25px;
}

/* =================================================================
   サービス内容ページ：追加セクション
   ================================================================= */
.philosophy-core {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #EAE8E2;
}

.philosophy-core h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.special-services {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.special-services h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.service-item {
    margin-bottom: 50px;
}
.service-item:last-child {
    margin-bottom: 0;
}

.service-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #A9966F; /* 木漏れ日の色のライン */
}

/* =================================================================
   サービス内容ページ：旅への投資セクション
   ================================================================= */
.plan-overview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap; /* カードが折り返すように */
}

.plan-card {
    background-color: #fff;
    border: 1px solid #EAE8E2;
    border-radius: 8px;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex; /* Flexboxで中身を制御 */
    flex-direction: column; /* 縦方向に並べる */
    align-self: flex-start;
}

.plan-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.plan-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; /* この要素が伸びて高さを揃える */
}

.plan-features {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.plan-features li {
    margin-bottom: 5px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 500;
    color: #556B2F;
    letter-spacing: 0;
}

.plan-price .price-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #A9966F;
}

.plan-price .tax-note {
    font-size: 0.9rem;
    font-weight: 400;
}

.regular-price {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
    text-decoration: line-through;
}

.offering .note {
    margin-top: 40px;
    font-size: 0.9rem;
}

/* SP表示 */
@media (max-width: 1080px) { /* 3つ並びが厳しくなる幅で調整 */
    .plan-overview {
        flex-direction: column;
        align-items: center;
    }
    .plan-card {
        align-self: center; /* スマホの時は、自分自身も「中央」に合わせる */
        width: 100%; /* ついでに、画面幅いっぱいに広がらないよう制御 */
        max-width: 340px; /* カードの最大幅を守る */
    }
}

/* =================================================================
   サービス内容ページ：プラン詳細の巻物
   ================================================================= */
.details-button-wrapper {
    margin-top: 20px;
}

.plan-details {
    /* 初期状態では、巻物は閉じられている */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out, margin-top 0.7s ease-in-out;
    text-align: left; /* 詳細文は左揃えに */
    margin-top: 0;
    border-top: 1px solid #EAE8E2;
}

/* 巻物が開いた時のスタイル */
.plan-details.is-open {
    max-height: 500px; /* 十分な高さを確保 */
    opacity: 1;
    margin-top: 25px; /* ボタンとの間に美しい「間」を設ける */
    padding-top: 25px;
}

.plan-details h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.plan-details ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
}

.plan-details ul li {
    margin-bottom: 8px;
    padding-left: 1.2em;
    position: relative;
}

/* 箇条書きのリストに、小さな光の点を添える */
.plan-details ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #A9966F; /* 木漏れ日の色 */
}

/* ヘッダーがfixedになった分の、空間を確保する */
.header-spacer {
    height: 100px; /* ヘッダーの高さに合わせて調整 */
}

/* =================================================================
   レスポンシブ対応：ハンバーガーメニュー
   ================================================================= */

/* 「三」ボタンは、普段は隠しておく */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* メニュー本体より手前 */
}
.hamburger-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.4s ease;
}

/* スマホの時だけ、「三」ボタンを表示し、PCメニューを隠す */
@media (max-width: 768px) {
    .main-nav {
        /* メニュー本体のスタイル */
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態では、画面の右外に隠す */
        width: 80%;
        height: 100vh;
        background-color: rgba(248, 246, 242, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 120px;
        transition: right 0.5s ease;
    }
    .main-nav.is-open {
        right: 0; /* is-openクラスがついたら、右から現れる */
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .main-nav a {
        font-size: 1.2rem;
    }
    .hamburger-button {
        display: block; /* 「三」ボタンを表示 */
    }
}

/* =================================================================
   お問い合わせページ：LINEセクション
   ================================================================= */
.line-contact {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px; /* 下のフォームとの間隔 */
    text-align: center;
}

.line-box {
    background-color: #fff; /* 白い箱に入れることで、特別な場所感を出す */
    border: 1px solid #EAE8E2;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.line-box h2 {
    font-size: 1.5rem; /* 少し控えめな見出しサイズ */
    margin-bottom: 20px;
}

.line-box p {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* LINE専用のボタンデザイン */
.line-button {
    display: inline-block;
    min-width: 260px;
    padding: 15px 30px;
    text-align: center;
    
    /* LINEの公式カラー(#06C755)を使いますが、彩度を少し落として森に馴染ませるか、
       あるいは「苔の色(#556B2F)」を使って統一感を出すか選べます。
       ここでは、視認性を優先しつつ、少し落ち着いたLINE色を提案します */
    background-color: #00B900; 
    
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px; /* 親しみやすいように、丸くする */
    box-shadow: 0 4px 10px rgba(0, 185, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.line-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 185, 0, 0.3);
    background-color: #009900; /* ホバー時は少し濃く */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .line-box {
        padding: 30px 20px;
    }
}