* {
    box-sizing: border-box;
}

html {
    height: auto;
    width: auto;
    background-color: #EDF9FF;
}

a {
    text-decoration: none;
}

body{
    margin: 0px auto;
    overflow-x: hidden;
    max-width: 500px;
    background-color: #FFF;
}
section {
    height: fit-content;
    position: relative;
}

.img01, .img02, .img03, .img04, .img05 {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0; /* 行の高さを0に設定 */
    vertical-align: top;
}

img{
    width: 100%;
}

.btn {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0px 16px;
    position: absolute;
    bottom: 5%;
    left: 16px;
    border: 2px solid #E95513;
    width: 320px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    color: #E95513;
}

.btn02 {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0px 16px;
    position: absolute;
    bottom: 7%;
    left: 16px;
    border: 2px solid #E95513;
    width: calc(100% - 32px);
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    color: #E95513;
}

.btn::before, .btn02::after {
    content: url(./img/btn-deco.svg);
    display: block;
    position: absolute;
    bottom: 0%;
    right: 0%;
    aspect-ratio: 1/1;
    height: 40%;
}

.btn:hover, .btn02:hover {
    background-color: #fef4e5;
}

.cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.cta-text {
    color: var(---, #FFF);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cta-caption {
    color: var(---, #FFF);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form {
    padding: 0px;
}

.form-container {
    padding: 24px 16px;
}

.footer {
    background-color: #1A326E;
    color: #FFF;
    font-size: 12px;
    text-align: center;
    padding: 8px 0px;
}

@media (max-width: 500px) {
    .btn, .btn02 {
        bottom: 3%;
        border: 1px solid #E95513;
    }
    .btn {
        width: 280px;
    }
}

/* survey */

header {
    height: 64px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding: 0px 16px;
}

header img {
    height: 32px;
    width: fit-content;
}

.survey-form-container {
    padding: 0px 16px;
    text-align: center;
    margin-bottom: 32px;
}
.survey-form-container-text-caution {
    color: #E95513;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.survey-form-container-text {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}



.survey-form {
    padding: 0px 16px;
}

/* survey thanks */

.survey-thanks-btn {
    background-color: #E95513;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    padding: 8px 16px;
    border-radius: 4px;
    text-align: center;
    margin: 0px auto;
}