article {
    padding-top: 40px;
    width: min(calc(100% - 2rem), 1200px);
    margin-inline: auto;
}

.main {
    padding-top: 40px;
}

.main .ttl_label {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-left: 1rem;
    padding-block: .25rem;
    border-left: 7px solid #3AA3CD;
}

.details{
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.place {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.place.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon.rotate {
    transform: rotate(180deg);
}

.place {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((1200px - 68px) / 2), 1fr));
    gap: 68px;
    padding-bottom: 30px;
    display: none;
}

.place .b .thumb {
    height: 180px;
    aspect-ratio: 1 / 1;
    border-right: 1px dashed #D8D8D8;
}

.place .b .thumb img {
    border-radius: 10px 10px 00;
}

.place .b {
    display: flex;
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    text-decoration: none;
}

.place .b .left {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    padding-right: 0;
}

.place .b .text {
    flex: 1;
}

.place .b .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.place .b p {
    color: #333;
}

.place .b p:first-child {
    font-weight: bold;
    padding-bottom: 1rem;
}

@media (max-width:768px) {
    .main .place.active{
        display: block;
    }
    .main .place .b:not(:last-child){
        margin-bottom: 2rem;
    }
    .place .b .icon{
        display: none;
    }
    .place .b{
        display: block;
        border: 1px solid #D8D8D8;
    }
    .place .b .thumb{
        border: none;
        margin-inline: auto;
    }
    .place .b .left{
        border-top: 1px dashed #D8D8D8;
        padding: 1rem;
    }
}