@charset "utf-8";

/* =======================================================================
   Privacy Policy ページ専用スタイル
   ======================================================================= */

/* Profile/Workページと統一した見出しデザイン */
.f_page {
    font-size: 22px;            /* 28px -> 22px */
    font-weight: bold;
    color: #888;                /* #333 -> #888 */
    border-bottom: 3px solid #ccc; /* 1px -> 3px */
    padding-bottom: 10px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-align: center;         /* left -> center */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* メインコンテナ */
.monde-privacy-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 60px;
    color: #333;
    line-height: 1.8;
}

/* ポリシー本文のボックス */
.monde-privacy-content {
    background-color: #fff;
    padding: 10px 0;
}

/* 中見出し */
.monde-policy-header {
    font-size: 20px;
    font-weight: bold;
    border-left: 5px solid #006400; /* ブランドカラーの緑 */
    padding-left: 15px;
    margin: 60px 0 25px 0;
    letter-spacing: 0.05em;
}

.monde-policy-header:first-child {
    margin-top: 0;
}

/* 小見出し */
.monde-privacy-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 10px 0;
    color: #000;
}

/* 本文テキスト */
.monde-privacy-content p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: justify; /* スマホで見やすいよう両端揃え */
}

/* リストスタイル */
.monde-privacy-content ul {
    list-style-type: disc;
    margin: 0 0 20px 20px;
    padding-left: 1em;
}

.monde-privacy-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* セクション間の区切り線 */
.monde-policy-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 60px 0;
}

/* =========================================
   共通パーツ（電話ボタン・CTA・ポップアップ）
   ========================================= */

/* お問い合わせ誘導エリア（CTA）TOPページ共通デザイン */
.common-cta-area {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    border-top: 5px solid #006400; /* ブランドカラーの緑 */
    width: 100%;
    margin-top: 60px;
}
.common-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.common-cta-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.common-cta-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}
.common-cta-btn {
    display: inline-block;
    background-color: #cc0000;
    color: #fff !important;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.common-cta-btn:hover {
    background-color: #aa0000;
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 1;
}
.common-cta-note {
    font-size: 13px;
    margin-top: 15px;
    color: #666;
}

/* パンくずと電話ボタンを横並びにするラッパー */
.breadcrumb-tel-wrap {
    display: flex;
    justify-content: space-between; /* 左右に配置 */
    align-items: center;            /* 上下中央揃え */
    flex-wrap: wrap;                /* スマホで狭くなったら折り返す */
    margin-bottom: 20px;            /* 下の要素との間隔 */
    margin-top: 5px;
    border-bottom: none;  /* ボーダーライン非表示 */
    padding-bottom: 10px;
}

/* 既存のパンくずリスト（微調整） */
#pankuzu {
    margin: 0 !important; /* 親要素で制御するためリセット */
    padding: 0;
}

/* ページ上部の電話ボタン（黄緑色・2段組み・浮き上がる・揺れる） */
.head-tel-btn a {
    display: inline-flex;       
    align-items: center;
    background-color: #8fc31f;  /* 明るい黄緑色 */
    color: #fff !important;
    text-decoration: none;
    padding: 5px 22px 5px 18px; 
    border-radius: 30px;        
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    line-height: 1.2;
}

/* マウスオーバー時の動き：浮き上がる＋影が濃くなる */
.head-tel-btn a:hover {
    background-color: #7aad13;  /* 少し濃い黄緑 */
    transform: translateY(-3px) scale(1.02); /* 上に浮き上がる */
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);  /* 影を濃く */
}

/* マウスオーバー時のアイコンの動き：揺れるアニメーション */
@keyframes phone-ring {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}
/* 上部ボタンのアイコン揺れ */
.head-tel-btn a:hover .tel-icon-svg {
    animation: phone-ring 0.4s ease-in-out;
}

/* 上部ボタン内の文字BOX（縦並び） */
.tel-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}
.tel-label {
    font-size: 10px;
    font-weight: normal;
    opacity: 0.95;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1); /* 文字を見やすく */
}
.tel-number {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: "Helvetica Neue", Arial, sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* 共通：受話器アイコン（SVG） */
.tel-icon-svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s;
}
/* 上部ボタンのアイコン色（白） */
.head-tel-btn .tel-icon-svg {
    fill: #fff;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* ページ下部の電話リンク（文字のみ・スマートなアイコン） */
.tel-popup-trigger {
    margin-bottom: 30px;
}
.tel-popup-trigger a {
    display: inline-flex;       
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
/* 下部リンクのアイコン設定（黄緑色で大きく） */
.tel-popup-trigger .tel-icon-svg {
    fill: #8fc31f; /* 明るい黄緑色 */
    width: 28px;   
    height: 28px;
    margin-right: 12px;
}

/* 下部リンクのホバー時：拡大 ＋ アイコン揺れ */
.tel-popup-trigger a:hover {
    opacity: 0.7;
    transform: scale(1.05);
}
.tel-popup-trigger a:hover .tel-icon-svg {
    animation: phone-ring 0.4s ease-in-out;
}

/* ポップアップウィンドウ本体のデザイン */
.zoom-anim-dialog {
    background: white;
    padding: 30px;
    text-align: center;
    max-width: 300px;
    margin: 40px auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.zoom-anim-dialog h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #006400;
}
.zoom-anim-dialog img {
    margin: 15px 0;
    border: 1px solid #ccc;
}
.zoom-anim-dialog .tel-number-pop {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

/* スマホ用発信ボタン（PCでは非表示） */
.sp-call-btn {
    display: none; 
}

/* ▼▼▼ スマホ表示時の調整 ▼▼▼ */
@media (max-width: 768px) {
    /* フォントサイズ・マージンの調整 */
    .f_page {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .common-cta-btn { 
        padding: 15px 30px; 
        width: 90%; 
        box-sizing: border-box; 
    }
    .common-cta-text {
        font-size: 15px;
    }

    /* ヘッダーエリアの調整 */
    .breadcrumb-tel-wrap {
        padding: 0 5px 10px;
    }
    .head-tel-btn {
        margin-top: 10px;     
        margin-left: auto;    
    }
    
    /* 下部の電話番号文字サイズ調整 */
    .tel-popup-trigger a {
        font-size: 22px;
    }
    .tel-popup-trigger .tel-icon-svg {
        width: 22px;
        height: 22px;
    }

    /* ポップアップ内に「タップで発信」ボタンを表示 */
    .sp-call-btn {
        display: block;
        margin-top: 20px;
        background: #cc0000;  /* 目立つ赤色 */
        color: white !important;
        padding: 12px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
    }
}