/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ マップ（トップ/地域）
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
/*====================================================================================
マップスイッチ
====================================================================================*/
.mapSwitch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mapSwitch__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
}

.mapSwitch__item.sat {
    color: var(--color-sat);
}

.mapSwitch__item.sun {
    color: var(--color-sun);
}

.mapSwitch__item.act {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    background-color: #3b434b;
    color: #fff;
}

.mapSwitch__item.act.sat {
    color: var(--color-sat--dark);
}

.mapSwitch__item.act.sun {
    color: var(--color-sun--dark);
}

.mapSwitch .week {
    margin-left: 3px;
    font-size: 75%;
}

@media screen and (max-width: 374px) {
    .mapSwitch__item {
        font-size: 12px;
    }

    .mapSwitch .week {
        margin-left: 1px;
        font-size: 60%;
    }
}

/*====================================================================================
mapとコメント
====================================================================================*/
.mapSwitch+.mapArea {
    margin-top: -20px;
}

.mapArea .map {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.mapArea .map:before {
    display: block;
    padding-top: 100%;
    content: "";
    /* 高さの比率 ÷ 幅の比率 × 100 【1:1=100%】【4:3=75%】【16:9=56.25%】 */
}

.mapArea .map>* {
    -o-object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1070px) {
    .mapArea>*:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 830px) {
    .mapArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mapArea .commentArea {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 250px;
        border-radius: 0;
    }
}

/*====================================================================================
週間天気
====================================================================================*/
.wTableWeek02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-base);
    background-color: var(--color-bg--gray01);
}

.wTableWeek02__thead,
.wTableWeek02__tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.wTableWeek02__thead {
    -webkit-box-shadow: 2px 0px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: absolute;
    top: 0;
    width: 70px;
    background: #F0F3F6;
    box-shadow: 2px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.wTableWeek02__thead * {
    font-weight: bold;
}

.wTableWeek02__thead .small {
    font-size: 13px;
}

.wTableWeek02__tbody {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 70px;
    overflow-x: scroll;
}

.wTableWeek02__tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.wTableWeek02__tr:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.wTableWeek02__td {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wTableWeek02__td:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.wTableWeek02__td .small {
    display: block;
}

.wTableWeek02__td>* {
    line-height: 1em;
    text-align: center;
}

.wTableWeek02__td.date {
    padding-block: 8px;
}

.wTableWeek02__td.date * {
    font-weight: bold;
}

.wTableWeek02__td.sat>* {
    color: var(--color-sat);
}

.wTableWeek02__td.sun>* {
    color: var(--color-sun);
}

.wTableWeek02 .wIcon {
    width: 100%;
    max-width: 50px;
}

@media screen and (max-width: 830px) {
    .wTableWeek02:after {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 8px;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.14)));
        background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.14));
        content: "";
    }

    .wTableWeek02__tbody .wTableWeek02__td {
        width: 67px;
    }
}

/*====================================================================================
コメント
====================================================================================*/
.commentArea {
    padding: 10px;
    border-radius: var(--radius-base);
    background-color: #F0F3F9;
    min-height: 150px;
}

.commentArea>*:not(:last-child) {
    margin-bottom: 10px;
}

.map {
    margin-left: 0;
    margin-right: 0;
    position: relative
}

.map .map-box {
    position: relative
}

.map-box figure {
    position: relative
}

.tit-02 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.wTable {
    position: relative
}

.wTable__inner {
    position: relative;
    padding-left: 40px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.wTableSwitch {
    width: 12px;
    height: 12px;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.wTableSwitch.next {
    right: -30px;
    transform: translateY(-50%) rotate(-45deg)
}

.wTableSwitch.prev {
    left: -30px;
    transform: translateY(-50%) rotate(135deg)
}

.wTable__head {
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f6f9fd;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25)
}

@media screen and (max-width: 770px) {
    .wTable {
        padding-left: 0
    }

    .wTable.day2,
    .wTable.week {
        padding-right: 0
    }

    .wTableSwitch.prev {
        display: none
    }

    .wTableSwitch.next {
        background-color: #f6f9fd;
        width: 20px;
        height: 100%;
        transform: none;
        border: 1px solid #ececec;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        right: 0;
        top: 0;
        z-index: 1
    }

    .wTableSwitch.next:after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #4470aa;
        border-right: 2px solid #4470aa;
        position: relative;
        top: 50%;
        right: -3px;
        transform: translateY(-50%) rotate(-45deg)
    }
}

.title02 {
    font-size: 16px;
    font-weight: bold;
}