
@charset "UTF-8";

/* =====================
   背景
===================== */
body{
    margin: 0;
    background: #efeeea;
    font-family: 'Noto Sans JP', sans-serif;
}

/* =====================
   中央コンテンツ
===================== */
.article{
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #544418; /* 追加 */
}

.section img{
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

/* =====================
   PCナビ（右固定）
===================== */
.nav_wrapper{
    position: fixed;
    top: 40%;
    left: 50%;
    margin-left: 280px;
    z-index: 1000;
    width: 400px;
}


.cta_head{
    color:#3e3a39;
    text-align:center;
    padding:18px 12px 6px;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.1em; /* ←追加 */
}

.cta_note{
    background:#443c2d;
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:12px;
    line-height:1.5;
}

.nav_list{
    display:flex;
    flex-direction:column;
    gap:0;
}

.nav_btn{
    display:grid;
    grid-template-columns: 40px auto;
    justify-content:center;
    align-items:center;
    column-gap:12px;

    padding:18px;
    color:#3e3a39;
    text-decoration:none;
    font-weight:700;
    border:none;
    border-radius:0;
    transition: all .3s ease;
}


.nav_btn img{
    width:32px;
    height:32px;
    object-fit:contain;
    flex-shrink:0;
}



.pc_logo{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    margin-left: -700px; /* 画像の左側 */
    z-index: 1000;
}

.pc_logo img{
    width: 400px;
    height: auto;
    display: block;
}

.icon{
    width:32px;
    height:32px;
    display:block;
    background-size:contain;
    background-repeat:no-repeat;
}

.label{
    width:120px;
    text-align:left;
}

/* =====================
   フッター
===================== */
.footer{
    text-align:center;
    padding:40px 20px;
    background:#efeeea;
}

.footer_link{
    display:inline-block;
    padding:10px 24px;
    margin-bottom:20px;

    color:#544418;
    text-decoration:none;
    border:1px solid #544418;

    transition:.3s;
}

.footer_link:hover{
    background:#544418;
    color:#fff;
}

.footer_copy{
    margin:0;
    font-size:12px;
    color:#666;
    line-height:1.6;
}


/* =====================
   PC非表示
===================== */
@media screen and (min-width: 1201px){
	
    .nav_wrapper{
        display:block;
    }

    /* 見出しとボタンの間 */
    .nav_list{
        margin-top:12px;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    /* ボタン */
    .nav_btn{
        background:#fff;
        border:1px solid #544418;
        color:#3e3a39;
    }

    .nav_btn.line,
    .nav_btn.mail{
        background:#fff;
    }

    /* ホバー */
    .nav_btn:hover{
        background:#544418;
        color:#fff;
    }
}


/* =====================
   スマホCTA（下固定）
===================== */
@media screen and (max-width: 768px){

	    body{
        padding-bottom: 130px;
    }
	
    .article{
        border: none;
    }
	
    .nav_wrapper{
        position: fixed;
        bottom: 0;
        left: 0;
        top: auto;              /* 追加 */
        transform: none;        /* 追加 */
        margin-left: 0;         /* 追加 */

        width: 100%;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.12);
    }

.cta_head{
    background:#ffffff;
    color:#3e3a39;
    text-align:center;
    padding:5px;
    font-size:13px;
    font-weight:700;
}

.cta_note{
    background:#443c2d;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:11px;
    line-height:1.4;
}

    .nav_list{
        display:flex;
        flex-direction:row;
        width:100%;
    　　border:1px solid #544418;
    }

    .nav_btn{
        flex:1;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:6px;
		padding: 10px;
		 border:none;
    }

.nav_btn + .nav_btn{
    border-left:2px solid #fff;
}

    .icon{
        width:20px;
        flex-shrink:0;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .nav_btn img{
        width:35px;
        height:18px;
    }

    .label{
        width:auto;
    }
	
.nav_btn.line{
    background:#e5e2df;
}

.nav_btn.mail{
    background:#e5e2df;
}


}