@charset "UTF-8";

@import url("reset.css"); 
@import url("base.css");  
@import url("layout.css"); 



.pdflist {
	padding-top: 30px;
	clear: both;
	font-size: 1.2em;
	
}

.pdflist li {
	background: url(../img/pdficon.gif) no-repeat left center;
	padding: 10px 0px 10px 25px;
}

/* YouTube動画をレスポンシブ（スマホ対応）にする設定 */
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9の比率を維持 */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px; /* 動画の下に少し余白 */
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- スマホ用 固定電話ボタンのスタイル --- */
.sp-fixed-call-btn {
    display: none; /* デフォルト（PC）では非表示 */
}

/* スマホサイズ（画面幅767px以下）の時だけ表示 */
@media screen and (max-width: 767px) {
    .sp-fixed-call-btn {
        display: block; /* 表示する */
        position: fixed; /* 画面に固定 */
        bottom: 0;       /* 一番下に配置 */
        left: 0;
        width: 100%;     /* 横幅いっぱい */
        z-index: 9999;   /* 他の要素より手前に表示 */
        background-color: #00b900; /* LINEのような目立つ緑色（お好みで変更可） */
        box-shadow: 0px -2px 5px rgba(0,0,0,0.2); /* 影をつけて立体的に */
    }

    .sp-fixed-call-btn a {
        display: block;
        width: 100%;
        padding: 30px 0; /* ボタンの高さ（タップしやすい広さ） */
        text-align: center;
        text-decoration: none;
        color: #ffffff; /* 文字色：白 */
    }

    .sp-fixed-call-btn .call-text {
        display: block;
        font-size: 12px;
        margin-bottom: 2px;
        font-weight: normal;
    }

    .sp-fixed-call-btn .call-number {
        display: block;
        font-size: 20px; /* 数字を大きく強調 */
        font-weight: bold;
        letter-spacing: 1px;
    }
    
    /* ボタンとかぶらないように、コンテンツの最後に余白を作る */
    body {
        padding-bottom: 70px; 
    }
}

<style>
    /* ウィジェットのデザイン */
    .compare-widget {
        background: #f9f9f9;
        border: 1px solid #ddd;
        padding: 20px;
        margin: 30px 0;
        border-radius: 8px;
    }
    .boat-selector label {
        display: inline-block;
        margin-right: 30px;
        margin-bottom: 20px;
        font-size: 20px;
        cursor: pointer;
    }
    .boat-selector input {
        transform: scale(1.2);
        margin-right: 10px;
    }
    .btn-compare-start {
        background: #0044cc;
        color: white;
        border: none;
        padding: 10px 25px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
    }
    .btn-compare-start:hover {
        opacity: 0.8;
    }

    /* ポップアップ（モーダル）のデザイン */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.6); /* 背景を暗くする */
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background: white;
        width: 90%;
        max-width: 1000px; /* 最大幅 */
        height: 80%;       /* 画面の80%の高さ */
        position: relative;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        padding: 10px;
    }
    .modal-content iframe {
        border: none;
        width: 100%;
        height: 100%;
    }
    .close-btn {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 24px;
        cursor: pointer;
        font-weight: bold;
        background: #333;
        padding: 5px 15px;
        border-radius: 4px;
    }



