body{
    background-color: transparent;
    z-index: 0;
}
.container{
    border: none;
    background-color: transparent;
	max-width: calc(1100px + 2px);
	width: calc(100% - 24px);
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	border-left: 1px solid #DCDFDF;
	border-right: 1px solid #DCDFDF;
    padding: 50px 100px;
}
fieldset{
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
}
.form-column {
    position: relative;
    margin-bottom: 32px;
}
.label{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 2;
    padding: 0 !important;
    margin: 0;
}
.input-group{
    display: flex;
    gap: 40px;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
    align-items: center;
    flex-wrap: wrap;
}
.input-group label{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
}
.option-text{
    flex: 1;
}
.form-column input[type="radio"]{
    border: none;
    background-color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 100vw;
    appearance: none;
    position: relative;
    cursor: pointer;
}
/* 中の緑丸 */
.form-column input[type="radio"]::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    background-color: #8ED141;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

/* チェック時に表示 */
.form-column input[type="radio"]:checked::before{
    transform: translate(-50%, -50%) scale(1);
}
.form-column input[type="text"]{
    display: block;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;

    padding: 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    max-width: 100%;
}
.form-column input[type="email"]{
    display: block;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;

    padding: 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    max-width: 100%;
}
.form-column input[type="tel"]{
    display: block;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;

    padding: 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    max-width: 100%;
}
.form-column textarea{
    display: block;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;

    padding: 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    max-width: 100%;
}
.form-column-textarea{
    margin-bottom: 64px;
}
.form-column input[type="checkbox"]{
    border: none;
    background-color: #8ED141;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    appearance: none;
    position: relative;
    cursor: pointer;
}
/* 中の緑丸 */
.form-column input[type="checkbox"]::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 10px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translate(-50%, -75%) scale(0) rotate(-45deg);
}

/* チェック時に表示 */
.form-column input[type="checkbox"]:checked::before{
    transform: translate(-50%, -75%) scale(1) rotate(-45deg);
}
.description-block{
    display: block;
    width: calc(100% - 300px);
    margin: 32px 0 0 auto;

    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .1em;
    font-weight: 700;
    color: #333;
}
legend .badge-required {
    width: auto;
    display: inline-block;
    margin-left: 18px;
    padding: 0 12px;
    line-height: 2;
    font-size: 1.2rem;
    color: #fff;
    background-color: #8ED141;
    border-radius: 2px;
    font-weight: 700;
}
.badge-required {
    width: auto;
    display: inline-block;
    margin-left: 18px;
    padding: 0 12px;
    line-height: 2;
    font-size: 1.2rem;
    color: #fff;
    background-color: #8ED141;
    border-radius: 2px;
    font-weight: 700;
}

.preview-block{
    display: block;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    border: none;
    max-width: 100%;
    padding: 0;
}
#message-container{
    display: block;
    text-align: center;
}

.message-block{
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 700;
    text-align: left;
}
.button-group{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.button-group button{
    display: inline-block;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 12px 48px 12px 16px;
	box-sizing: border-box;
	position: relative;
	line-height: 1.4;
	color: #fff !important;
	border-radius: 3px;
	overflow: hidden;
    z-index: 0;
    border: none;
    border-radius: 100vw;
    margin: 0;
    background: linear-gradient(94deg, #61CE00 1.15%, #94E100 98.42%);
}
.button-group button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s;
}
.button-group button::before {
    background: linear-gradient(94deg, #94E100 1.15%, #61CE00 98.42%);
    z-index: -1;
    opacity: 0;
}
.button-group button:hover::before {
    opacity: 1;
    background: linear-gradient(94deg, #94E100 1.15%, #61CE00 98.42%);
}
.button-group button::after {
    transition: right 0.3s;
}
.button-group button:hover::after {
    right: 14px;
}
.button-group button::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 18px;
    left: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 3;
    transition: right 0.3s;
}
/* 戻る */
.button-group .button-back{
    padding: 12px 16px 12px 48px;
}
.button-group .button-back::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    right: auto;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    z-index: 3;
    transition: right 0.3s;
}
.button-group .button-back::after {
    transition: left 0.3s;
}
.button-group .button-back:hover::after {
    left: 14px;
}
.help-block{
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: .1em;
    font-weight: 700;
    color: #333;
    margin: 0;
    margin-top: 8px;
    text-align: center;
    display: block;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .container{
        padding: 50px 12px;
    }
    .label{
        position: relative;
        top: auto;
        left: auto;
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    .input-group{
        flex-direction: column;
        gap: 14px;
        width: 100%;
        align-items: flex-start;
    }
    .input-group label{
        gap: 14px;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    .form-column input[type="radio"]{
        width: 30px;
        height: 30px;
    }
    .form-column input[type="radio"]::before{
        width: 20px;
        height: 20px;
    }
    .form-column input[type="text"]{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    .form-column input[type="email"]{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    .form-column input[type="tel"]{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    .form-column textarea{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    .form-column-textarea{
        margin-bottom: 64px;
    }
    .form-column input[type="checkbox"]{
        width: 30px;
        height: 30px;
    }
    /* 中の緑丸 */
    .form-column input[type="checkbox"]::before{
        width: 18px;
        height: 9px;
    }
    .description-block{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
        margin-top: 16px;
    }
    legend .badge-required {
        margin-left: 16px;
        padding: 0 5px;
        font-size: 1rem;
    }
    .badge-required {
        margin-left: 16px;
        padding: 0 5px;
        font-size: 1rem;
    }
    .preview-block{
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.9;
    }
    #message-container{
        display: block;
        text-align: center;
    }
    .message-block{
        display: inline-block;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 2;
        font-weight: 700;
        text-align: left;
    }
    .button-group button{
        font-size: 1.3rem;
        padding: 16px 40px 16px 16px;
    }
}
