body{
    max-width: 640px;
    margin: auto;
}

h1 {
	text-align: center;
}

img {
	width: 100%;
	max-width: 640px;
}

.all {
    margin-inline-start: 5px;
    margin-inline-end: 5px;
}

.choice {
    border: none;
}

.choice label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 640px;
    margin-bottom: .4em;
    padding: .5em .7em;
    border: 1px solid #a36700;
    border-radius: 3px;
    background-color: #a3670026;
    cursor: pointer;
}

.choice label:has(:checked) {
    background-color: #a36700;
    color: #fff;
}

.choice label::before,
.choice label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.choice label::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.choice label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: calc(7px + .7em);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: #a36700;
}

.choice input {
    display: none;
}

.button-001 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #a35f00;
    border-radius: 5px;
    
    background-color: #fff;
    color: #a35f00;
    font-size: 1em;
}

.button-prev , .button-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #a35f00;
    border-radius: 5px;
    
    background-color: #fff;
    color: #a35f00;
    font-size: 1em;
}

.button-list{
  display: flex;
  ustify-content: space-between;
  
}