/* ---------------------- */

.hd-p {
    padding-top: 30px;
}

.hd-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-rows: 300px 300px auto; */
    /* 1行目と2行目は300px、3行目は自動調整 */
    gap: 10px;
    margin-bottom: 10px;

}

@media only screen and (max-width: 1080px) {
    .hd-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.hd-listitem.li1 {
    grid-row: span 1;
    color: #FFE200;
    font-weight: bold;
}

.hd-listitem.li2 {
    grid-column: span 2;
    grid-row: span 1;
    
}

.hd-listitem.li2 a {
    background: #08C900;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.hd-listitem.li2 a:hover {
    opacity: 1;
}

.hd-listitem.li3 {
    grid-column-start: 4;
    height: auto;
    display: flex;
}

@media only screen and (max-width: 1080px) {
    .hd-listitem.li1 {
        width: 56%;
        /* width: 100%; */
        order: 1;
    }

    .hd-listitem.li2 {
        width: 100%;
        order: 3;
    }
    .hd-listitem.li3 {
        width: 40%;
        /* width: 100%; */
        order: 2;
    }
}


.hd-listitem-year {
    font-size: min(8vw, 35px);
}

.hd-listitem-date {
    font-size: min(12vw, 50px);
    line-height: 1.4;
    margin-right: 5px;
}

.hd-listitem-day {
    font-size: min(5vw, 28px);
}

.hd-listitem-flex {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.hd-listitem.-border {
    border: solid #000 1px;
    border-radius: 25px;
}

/* .hd-listitem.feed-p {
    padding: 1em;
} */

.hd-listitem-ttl {
    font-size: 23px;
    color: #FFE200;
    margin: 0;
}


.hd-listitem-ttl.-main {
    font-size: min(11vw, 49px);
}



@media (max-width: 768px) {}






/* tenki
----------------------------------------- */

.tenki .ww_name {
    display: none;
}
#ww_db93722295960 .ww_name {
    display: none;
}

.tenki  {
    border-radius: 25px;
}













.sp-nav {
    display: none;
}

/*============
  nav
  =============*/

@media only screen and (max-width: 768px) {

    .sp-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 100%;
        height: 100vh;
        padding-top: 70px;
        padding-bottom: 220px;
        padding-left: 30px;
        background: #fff;
        overflow-x: hidden;
        overflow-y: auto;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 9;
        opacity: 0;
    }

    .open .sp-nav {
        left: 0;
        opacity: 1;
    }

    .sp-nav .inner {
        padding: 16px;
    }

    .sp-nav .inner .mainnav {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sp-nav .inner .mainnav li {
        position: relative;
        margin: 0;
        border-bottom: 1px solid #009A3B;
    }

    .sp-nav .inner .sub-nav li {
        border-bottom: none;
    }

    .sp-nav .inner .sub-nav li:last-child {
        border-bottom: 1px solid #009A3B;
    }

    .sp-nav .inner .mainnav li a {
        display: block;
        color: #333;
        font-size: 16px;
        font-weight: bold;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }

    .sp-nav .inner .mainnav li a:hover {
        background: #ccc;
    }




    /*============
  .toggle_btn
  =============*/
    .toggle_btn {
        display: block;
        position: fixed;
        top: 20px;
        left: 10vw;
        width: 30px;
        height: 30px;
        transition: all .5s;
        cursor: pointer;
        z-index: 99;
    }

    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: #333;
        border-radius: 4px;
        transition: all .5s;
    }

    .toggle_btn span:nth-child(1) {
        top: 4px;
    }

    .toggle_btn span:nth-child(2) {
        top: 14px;
    }

    .toggle_btn span:nth-child(3) {
        bottom: 4px;
    }

    .open .toggle_btn span {
        background-color: #333;
    }

    .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-315deg);
        transform: translateY(10px) rotate(-315deg);
    }

    .open .toggle_btn span:nth-child(2) {
        opacity: 0;
    }

    .open .toggle_btn span:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(315deg);
        transform: translateY(-10px) rotate(315deg);
    }

    /*============
  #mask
  =============*/
    #mask {
        display: none;
        transition: all .5s;
    }

    /* .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ccc;
        opacity: .8;
        z-index: 2;
        cursor: pointer;
    } */

}



/* fixed bottom-bar ---------------------- */

.hd0001-m {
    margin-bottom: 100px;
}

.hd0001-fixedbar-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F4F4F4;
    color: #333;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    text-align: center;
}

.hd0001-fixedbar-bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.2em;
    font-size: 24px;
    /* height: 64px; */
}

.hd0001-fixedbar-bottom .desc {
    font-weight: bold;

}

.hd0001-fixedbar-bottom .tel-btn {
    color: #251E1C;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 100%;
    padding: .4em 0;
    height: 50px;
    line-height: 1.2;
}

.hd0001-fixedbar-bottom .mail-btn {
    color: #fff;
    background: #009A3B;
    border-radius: 10px;
    padding: 1em 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    text-align: center;
    position: relative;
    font-size: 16px;
}

.hd0001-fixedbar-bottom .mail-btn::before {
    position: absolute;
    content: "";
    right: 30px;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hd0001-fixedbar-bottom .mail-btn:hover {
    background: #ccc;
    opacity: 1;
}


.hd0001-fixedbar-bottom i {
    font-size: 14px;
    margin-left: 1em;
}

.hd0001-fixedbar-bottom .fa-envelope {
    font-size: 20px;
}

.hd0001-fixedbar-bottom .icon-freetel {
    width: 24px;
    margin-right: .5em;
    color: #251E1C;
}


@media (max-width: 1000px) {

    .hd0001-fixedbar-bottom .desc {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {

    .hd0001-fixedbar-bottom ul {
        flex-wrap: wrap;
    }

    .hd0001-fixedbar-bottom li {
        width: 50%;
        font-size: 16px;
        padding: 0 5px;
    }

    .hd0001-fixedbar-bottom .desc {
        width: 100%;
        font-size: 14px;
        margin-bottom: .5em;
    }

    .hd0001-fixedbar-bottom .tel-btn {
        border: solid 2px #009A3B;
        color: #009A3B;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        width: 100%;
        padding: .4em 0;
        height: 50px;
        line-height: 1.2;
    }

    .hd0001-fixedbar-bottom .mail-btn {
        color: #fff;
        background: #009A3B;
        border-radius: 8px;
        width: 100%;
        padding: .4em 0;
        height: 50px;
        font-size: 16px;
    }

    .hd0001-fixedbar-bottom .mail-btn::before {
        right: 14px;
    }
}