@charset "utf-8";
.only-hotel-list { display: none;}
.hotel-list {
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px 15px;
}

.hotel-list > li {
    /* display: contents; */
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    position: relative;
}


.hotel-list > li section {
    /* display: contents; */
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
}

.hotel-list > li section .hotellist__item {
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
    gap:5px;
    /* margin-bottom: 20px; */
    box-shadow: 0 0 5px -3px;
    position: relative;
}

.hotel-list > li section .hotellist__item[data-type]::before {
    content: attr(data-type);
    position: absolute;
    display: inline-block;
    color: #ffff00;
    background-color: #006600;
    padding: 0 4px;
    height: 17px;
    line-height: 17px;
    font-size: 11px;
    text-align: center;
    font-weight: bold;
    top: 0;
    left: 0;
}


.hotellist__image {grid-column: span 1}
.hotellist__image figure {margin: auto;}
.hotellist__image figure img {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
dl.hotellist__info {
    grid-column: span 1/ -1;
    margin: 0 10px;
    line-height: 1.6;
}


.hotellist__info dt h4 {
    position: relative;
    font-weight:bold;
}
.hotellist__info dt h4::before {
    position: absolute;
    top: -2.5em;
    content: attr(data-title);
    background-color: #ff6600;
    border: solid 1px #FFFFFF99;
    /* border-radius: 4px; */
    padding: 2px 4px;
    margin-right: 2px;
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    line-height:1;
    letter-spacing: 0.1em;
}

.hotellist__info .access { display: none;}

.hotel-list > li:last-child {
    margin-bottom: 0;
}

.hotellist__item .htl_link {
    display: flex;
    align-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    grid-column: span 1/ -1;
    margin: 10px;
}
.hotellist__item .htl_link li {
    display: inline-block;
    flex-basis: calc(50% - (10px / 2));
    line-height:1;
}
.hotellist__item .htl_link li a {
    background: #1c2187;
    color: #FFF;
    padding: .5em 0;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
}


.hotellist_l h5 {
    float: left;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3em;
    margin: 8px 0;
}

.list-btn {
    border-radius: 100px;
    border-style: solid;
    border-width: 1px;
    display: block;
    display: inline-block;
    padding: 0.5em 4em;
    position: relative;
    text-align: center;
}
.list-btn:after {
    border-right: 1px solid;
    border-top: 1px solid;
    content: "";
    display: block;
    height: 0.4em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.4em;
}
.htl_link li a {
    transition: 0.2s linear;
}
a.list-btn:hover {
    color: #fff;
    opacity: 0.7;
    text-decoration: initial;
}

.list-resort > h3 {
    border-left-style: solid;
    border-left-width: 3px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.2em 0 0.2em 0.5em;
}
