.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.container .group {
    padding-bottom: 80px;
    max-width: 76em;
    width: 100%;
}

.container .group .title {
    font-size: 2em;
    font-weight: bolder;
    color: var(--colora);
    margin: 0 1rem;
    padding-bottom: 1rem;
    border-bottom: solid 2px;
    border-image: linear-gradient(90deg, #cecece 50%, var(--colora)) 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .group .title .b {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 0.5em;
    font-size: 1rem;
}

.container .group .title label {
    max-width: 25em;
    flex: 1 1 0;
}

.container .group .title input {
    font-size: 2rem;
    font-weight: bolder;
    color: var(--colora);
    width: calc(100% - 18px);
}

.container .group .desc {
    margin: 1em;
}

.container .group .set {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
    margin: 1em;
    grid-gap: 1em;
}

.container .group .set:after {
    display: block;
    content: "";
    grid-column: 3/4;
}

.container .plate {
    max-width: 24em;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #0005;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 2em;
}

@media screen and (max-width: 56em) {
    .container .plate {
        max-width: initial;
    }

    .container .group .set:after {
        display: none;
    }
}

.container .plate .cover {
    width: 100%;
    position: relative;
}

.container .plate .cover img,
.container .plate .cover label,
.container .plate .cover iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: initial;
}

.container .plate .cover img {
    object-fit: cover;
    background: #888;
}

.container .plate .cover label {
    background: #0009;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.container .plate .cover label:hover {
    opacity: 1;
}

.container .plate .cover input {
    display: none;
}

.container .plate .dollar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 1rem;
}

.container .plate .dollar label {
    width: 60%;
}

.container .plate .dollar input {
    font-size: 2em;
    width: 90%;
}

.container .plate .dollar span {
    font-size: 0.5em;
}

.container .plate .name {
    display: flex;
    justify-content: center;
    font-size: 1.17em;
    color: #444;
    margin-top: 1rem;
}

.container .plate .name input {
    font-size: 1.17em;
    color: #444;
    width: calc(100% - 6rem - 8px);
}

.container .plate .detail {
    margin: 1em 3em 0 3em;
}

.container .plate .a-center {
    margin: 2em 0 0;
    flex-grow: 1;
    align-items: flex-end;
}