html {
    padding: 0;
    margin: 0;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","Roboto","Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans",Meiryo,sans-serif!important;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333!important;
    background: transparent!important;
}

body {
    padding: 0;
    margin: 0;
    font-size: 4.5vw;
    line-height: 150%;
    background-color: transparent;
}
body > div.container {
    padding: 0.6vw 3vw;
    margin: 0;
    background-color: transparent;
}
.form-column {
    display: block;
    margin: 0 0 4vw 0;
}
.form-column-heading {
    height: auto;
    margin: 0 0 0.5em;
}
.form-column-heading > h2 {
    font-size: 4.5vw!important;
    font-weight: 500!important;
    line-height: 1.75!important;
    padding: 0 0 0.6em!important;
}
.form-column-textarea {
    margin-bottom: 1.6em!important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"] {
    max-width: 100%;
    transition: var(--transition-set);
    font-size: 4.5vw;
    width: 100%;
    min-width: auto;
    height: 7.2vw;
    padding: 0 2.4vw;
    border: none;
    border-radius: 2vw;
    background-color: #ececec;
}
textarea {
    width: 100%;
    font-size: 4.5vw;
    min-width: auto;
    min-height: initial;
    height: 30vw;
    line-height: 175%;
    margin: 0;
    padding: 1.6vw 2.4vw;
    border: none;
    border-radius: 2vw;
    background-color: #ececec;
    text-align: justify;
}
.form-column-note .description-block {
    width: 100%;
    font-size: 4.5vw;
    min-width: auto;
    min-height: initial;
    height: 30vw;
    line-height: 175%;
    margin: 0;
    padding: 1.6vw 2.4vw;
    color: #333;
    border: none;
    border-radius: 2vw;
    background-color: #ececec;
    overflow-y: scroll;
    text-align: justify;
}
select {
    border: none;
    border-radius: 2vw;
    display: block;
    -webkit-appearance:none;
    appearance:none;
    min-width: 67vw;
    width: auto;
    height: 7.2vw;
    font-size: 4.5vw;
    line-height: 1.0em;
    padding: 0 9.5vw 0 0.6em;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ececec;
    background-image: linear-gradient(to bottom, #08A2E4, #08A2E4)!important;
    background-position: 100% 0;
    background-size: 7vw 2.3em;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
}
div.form-column-select {
    position: relative;
    width: max-content;
}
div.form-column-select::after {
    position: absolute;
    content: '';
    display: block;
    bottom: 2.1vw;
    right: 2.7vw;
    width: 3vw;
    height: 3vw;
    background: transparent!important;
    border-bottom: white 2px solid;
    border-right: white 2px solid;
    transform: rotate(45deg) translateY(-30%);
    cursor: pointer;
    pointer-events: none;
    z-index: 1;
}
@supports (-ms-ime-align:auto) {
    select {
        line-height: 1.4em;
        padding: 0.4em 1.7em 0em 0.5em;
            background-position: calc(100% - 2vw) calc(0.5em + 0.6vw), calc(100% - 1vw) calc(0.5em + 0.6vw), 100% 0;
            background-size: 1.1vw 2.4vw, 1.1vw 2.4vw, 1.3em 2.0em;
    }
}
@media screen\0 { /* ie */
    select::-ms-expand {
        display: none;
    }
}
select > option {
  font-size: 4.5vw;
}
.badge-required {
    color: white!important;
    background-color: #E85A7A!important;
    font-size: 3.6vw!important;
    padding: 0.6vw 1vw 0.6vw 1vw!important;
    margin: 0.75vw 0 0 2vw!important;
}
label {
    font-size: 4.5vw!important;
    font-weight: 700;
}
.form-column-checkbox legend {
    position: relative;
    height: 0;
    font-size: 0;
}
.form-column-checkbox legend .badge-required {
    position: absolute;
    top: 0.2rem;
    right: 0;
}
label > .option-text {
    font-size: 4.5vw!important;
    font-weight: 500!important;
}
.button-group {
    display: block;
    width: max-content;
    white-space: nowrap;
    margin: 8vw auto 0 auto;
}
.button {
    display: inline-block;
    min-width: initial;
    width: max-content;
    height: 9.2vw;
    margin: 0 2vw!important;
    padding: 0.6vw 4vw;
    font-size: 4.2vw;
    line-height: 190%;
    font-weight: 600;
    text-align: center;
    color: white;
    background-color: #08A2E4;
    border: solid 1px #08A2E4;
    border-radius: 1.6vw;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
button.button-submit {
    background-color: #08A2E4;
    color: white;
    margin-top: 0;
}
.button:hover {
    background-color: white;
    color: #08A2E4;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.preview-block {
    font-size: 4.5vw!important;
    font-weight: 500!important;
}

.content-confirmation .form-column-b0cb7c27-9a72-4c1f-a91f-8448ee443f2d,
.content-confirmation .form-column-d39a11df-47e0-4ac4-967f-c0ae58db45e9,
.content-confirmation .form-column-a2a095b9-6d83-4ea2-a0cb-4736ad8dbf68  {
    display: none;
}

.message-block-complete {
    border: none;
    padding: 4vw;
    text-align: center;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    width: 0;
    border: none;
}
[type="checkbox"]:not(:checked) + span,
[type="checkbox"]:checked + span {
    position: relative;
    display: block;
    padding-left: 1.5em;
    padding-right: 5vw;
    cursor: pointer;
    font-weight: normal;
    margin-left: -0.5em;
}
[type="checkbox"]:not(:checked) + span:before,
[type="checkbox"]:checked + span:before {
    content: '';
    position: absolute;
    left: 0; top: 0.8vw;
    width: 1.1em; height: 1.1em;
    border: thin solid #999;
    background: #fff!important;
    border-radius: 0.8vw;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1)!important;
}
[type="checkbox"]:not(:checked) + span:after,
[type="checkbox"]:checked + span:after {
    content: '\2713\0020';
    position: absolute;
    left: .12em; top: 0.8vw; 
    font-size: 1.3em;
    line-height: 0.8;
    color: #08A2E4!important;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial!important;
    font-weight: bold;
}
[type="checkbox"]:not(:checked) + span:after {
    opacity: 0;
    transform: scale(0);
}
[type="checkbox"]:checked + span:after {
    opacity: 1;
    transform: scale(1);
}
[type="checkbox"]:disabled:not(:checked) + span:before,
[type="checkbox"]:disabled:checked + span:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd!important;
}
[type="checkbox"]:disabled:checked + span:after {
    color: #999!important;
}
[type="checkbox"]:disabled + span {
    color: #aaa!important;
}
[type="checkbox"]:checked:focus + span:before,
[type="checkbox"]:not(:checked):focus + span:before {
    /*border: 2px dotted blue;*/
}


@media only screen and (max-width: 750px)  and (min-width: 750px)  {
    
    body {
        padding: 0;
        margin: 0;
        font-size: 18px;
        line-height: 150%;
        background-color: transparent;
    }
    body > div.container {
        width: 495px;
        padding: 3px;
        margin: 0 auto 0 0;
        background-color: transparent;
    }
    .form-column {
        margin-bottom: 20px;
    }
    .form-column-heading {
        height: auto;
        margin: 0 0 0.5em;
    }
    .form-column-heading > h2 {
        font-size: 18px!important;
        font-weight: 500!important;
        line-height: 1.75!important;
        padding: 0 0 0.6em!important;
    }
    .form-column-textarea {
        margin-bottom: 1.6em!important;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"] {
        max-width: 100%;
        transition: var(--transition-set);
        font-size: 18px;
        width: 100%;
        min-width: auto;
        height: 36px;
        padding: 0px 12px;
        border: none;
        border-radius: 10px;
        background-color: #ececec;
    }
    textarea {
        width: 100%;
        font-size: 18px;
        min-width: auto;
        min-height: initial;
        height: 150px;
        line-height: 175%;
        margin: 0;
        padding: 8px 12px;
        border: none;
        border-radius: 10px;
        background-color: #ececec;
        text-align: justify;
    }
    .form-column-note .description-block {
        width: 100%;
        font-size: 18px;
        min-width: auto;
        min-height: initial;
        height: 150px;
        line-height: 175%;
        margin: 0;
        padding: 8px 12px;
        color: #333;
        border: none;
        border-radius: 10px;
        background-color: #ececec;
        overflow-y: scroll;
        text-align: justify;
    }
    select {
        border: none;
        border-radius: 10px;
        display: block;
        -webkit-appearance:none;
        appearance:none;
        min-width: 335px;
        width: auto;
        height: 36px;
        font-size: 18px;
        line-height: 1.0em;
        padding: 0 2.5em 0 0.6em;
        margin: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #ececec;
        background-image: linear-gradient(to bottom, #08A2E4, #08A2E4)!important;
        background-position: 100% 0;
        background-size: 1.9em 2.3em;
        background-repeat: no-repeat;
        cursor: pointer;
        position: relative;
    }
    div.form-column-select {
        position: relative;
        width: max-content;
    }
    div.form-column-select::after {
        position: absolute;
        content: '';
        display: block;
        bottom: 1.2rem;
        right: 0.7em;
        width: 0.8em;
        height: 0.8em;
        background: transparent!important;
        border-bottom: white 2px solid;
        border-right: white 2px solid;
        transform: rotate(45deg) translateY(-30%);
        cursor: pointer;
        pointer-events: none;
        z-index: 1;
    }
    @supports (-ms-ime-align:auto) {
        select {
            line-height: 1.4em;
            padding: 0.4em 1.7em 0em 0.5em;
                background-position: calc(100% - 10px) calc(0.5em + 3px), calc(100% - 5px) calc(0.5em + 3px), 100% 0;
                background-size: 5.5px 12px, 5.5px 12px, 1.3em 2.0em;
        }
    }
    @media screen\0 { /* ie */
        select::-ms-expand {
            display: none;
        }
    }
    select > option {
      font-size: 18px;
    }
    .badge-required {
        color: white!important;
        background-color: #E85A7A!important;
        font-size: 16px!important;
        padding: 5px 5px 3px 5px!important;
        margin: 0 0 0 10px!important;
    }
    label {
        font-size: 18px!important;
        font-weight: 700;
    }
    .form-column-checkbox legend {
        position: relative;
        height: 0;
        font-size: 0;
    }
    .form-column-checkbox legend .badge-required {
        position: absolute;
        top: 0.2rem;
        right: 0;
    }
    label > .option-text {
        font-size: 18px!important;
        font-weight: 500!important;
    }
    .button-group {
        display: block;
        width: max-content;
        white-space: nowrap;
        margin: 40px 0 0 0;
    }
    .button {
        display: inline-block;
        min-width: initial;
        width: max-content;
        height: 46px;
        margin: 0 20px 0 0!important;
        padding: 3px 20px;
        font-size: 20px;
        line-height: 190%;
        font-weight: 500;
        text-align: center;
        color: white;
        background-color: #08A2E4;
        border: solid 1px #08A2E4;
        border-radius: 8px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
        transition: 0.3s;
    }
    button.button-submit {
        background-color: #08A2E4;
        color: white;
        margin-top: 0;
    }
    .button:hover {
        background-color: white;
        color: #08A2E4;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -o-transition: 0.5s;
        -ms-transition: 0.5s;
        transition: 0.5s;
    }
    .preview-block {
        font-size: 18px!important;
        font-weight: 500!important;
    }

    .content-confirmation .form-column-b0cb7c27-9a72-4c1f-a91f-8448ee443f2d,
    .content-confirmation .form-column-d39a11df-47e0-4ac4-967f-c0ae58db45e9,
    .content-confirmation .form-column-a2a095b9-6d83-4ea2-a0cb-4736ad8dbf68  {
        display: none;
    }

    .message-block-complete {
        border: none;
        padding: 20px;
        text-align: center;
    }

    [type="checkbox"]:not(:checked),
    [type="checkbox"]:checked {
        width: 0;
        border: none;
    }
    [type="checkbox"]:not(:checked) + span,
    [type="checkbox"]:checked + span {
        position: relative;
        display: block;
        padding-left: 1.5em;
        cursor: pointer;
        font-weight: normal;
        margin-left: -0.5em;
    }
    [type="checkbox"]:not(:checked) + span:before,
    [type="checkbox"]:checked + span:before {
        content: '';
        position: absolute;
        left: 0; top: 0.4rem;
        width: 1.1em; height: 1.1em;
        border: thin solid #999;
        background: #fff!important;
        border-radius: 4px;
        box-shadow: inset 0 1px 3px rgba(0,0,0,.1)!important;
    }
    [type="checkbox"]:not(:checked) + span:after,
    [type="checkbox"]:checked + span:after {
        content: '\2713\0020';
        position: absolute;
        left: .12em; top: 0.2em; 
        font-size: 1.3em;
        line-height: 0.8;
        color: #08A2E4!important;
        transition: all .2s;
        font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial!important;
        font-weight: bold;
    }
    [type="checkbox"]:not(:checked) + span:after {
        opacity: 0;
        transform: scale(0);
    }
    [type="checkbox"]:checked + span:after {
        opacity: 1;
        transform: scale(1);
    }
    [type="checkbox"]:disabled:not(:checked) + span:before,
    [type="checkbox"]:disabled:checked + span:before {
        box-shadow: none;
        border-color: #bbb;
        background-color: #ddd!important;
    }
    [type="checkbox"]:disabled:checked + span:after {
        color: #999!important;
    }
    [type="checkbox"]:disabled + span {
        color: #aaa!important;
    }
    [type="checkbox"]:checked:focus + span:before,
    [type="checkbox"]:not(:checked):focus + span:before {
        /*border: 2px dotted blue;*/
    }
}
