@charset "UTF-8";

/* ===== 納期確認ページ ===== */

body{
    background-color:#fff
}

.delivery-container {
    padding: 0 0 40px;
    background: var(--W);
}
h2{
        font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    padding: 1.2em 1em .8em;
}

/* プルダウン */
.delivery-select-wrap {
    margin: 0 1rem .8rem;
    position: relative;
}

.delivery-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--deepBL);
    border-bottom: 2px solid var(--deepBL);
    pointer-events: none;
}

.delivery-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--lightBL);
    border: 1.5px solid var(--vividBL);
    border-radius: var(--b-r);
    padding: .7em 2.5em .7em 1em;
    font-size: 1em;
    color: var(--BK);
    cursor: pointer;
    outline: none;
}

/* カレンダー見出し */
.delivery-calendar-heading {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: .6em 0 .8em;
}

/* ===== テーブル外枠 ===== */
.delivery-table-outer {
    margin: 0 1rem;
    border: 1.5px solid var(--vividBL);
    border-radius: var(--b-r);
    overflow: hidden;
}

/* theadエリア（固定） */
.delivery-table-head {
    background: var(--lightBL);
}

/* tbodyエリア（スクロール） */
.delivery-table-body {
    max-height: 275px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* スクロールバー装飾（webkit） */
.delivery-table-body::-webkit-scrollbar {
    width: 4px;
}
.delivery-table-body::-webkit-scrollbar-thumb {
    background: var(--vividBL);
    border-radius: 2px;
}

/* テーブル共通 */
.delivery-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* 列幅 */
.col-order    { width: 36%; vertical-align: middle; }
.col-home     { width: 32%; }
.col-store    { width: 32%; }

/* th */
.delivery-table thead th {
    padding: .6em .3em;
    font-size: .82em;
    font-weight: bold;
    text-align: center;
    color: var(--BK);
    background: var(--lightBL);
    border-bottom: 1.5px solid var(--vividBL);
}

.col-order,.col-home{
        border-right: 1px solid var(--vividBL);
}

.delivery-table thead tr:first-child th {

    border-bottom: 1px solid var(--vividBL);
}

.delivery-table thead tr:last-child th {
    border-bottom: 1.5px solid var(--vividBL);
}

/* th内アイコン */
.th-icon {
    display: block;
    margin-bottom: 3px;
}

.th-icon img {
    display: inline-block;
    width: auto;
    height: 1.5em;
    vertical-align: middle;
    margin: 0;
}

/* td */
.delivery-table tbody td {
    padding: .55em .3em;
    font-size: .88em;
    text-align: center;
    color:var(--BK);
    border-bottom: 1px solid #d9f3f8;
}

.delivery-table tbody tr:last-child td {
    border-bottom: none;
}

/* 土曜・日曜の色分け */
.delivery-table tbody tr.row-saturday td:first-child {
    color: #1a6bbf;
}

.delivery-table tbody tr.row-sunday td:first-child {
    color: #c0392b;
}

/* ===== 注意事項 ===== */
.delivery-notes {
    margin: 1.6rem 1rem 0;
}

.delivery-notes h3 {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}

.delivery-notes p {
    font-size: .88em;
    line-height: 1.7;
    margin-bottom: 1em;
    color: var(--BK);
}

.delivery-notes p.note-blue {
    color: var(--deepBL);
}

.delivery-notes a {
    color: var(--deepBL);
    text-decoration: underline;
}
