/* 背景画像の設定 */
.DiagBody {
    position: relative;
}
.DiagBody::before {
    content: "";
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    
    height: 70%;
    aspect-ratio: 1 / 1;
    
    background-image: url('/img/DiagImg001.png');
    background-size: cover;       /* 画像をコンテナに合わせる */
    background-position: center;  /* 画像内の中心を表示 */
    filter: opacity(0.07);
    z-index: -1;
}

.FormPage {
    .TitleBlock {
        display: grid;
        justify-content: center;
        justify-items: center;
        padding: 30px 0px;

        .SubTitle {
            color: var(--PrimaryColor);
            font-size: 25px;
            font-weight: bold;
        }
        .Title {
            color: #000;
            font-size: 50px;
            font-weight: bold;
        }
    }
}

.DiagForm {
    margin: 0 auto;

    display: grid;
    gap: 10px;

    .FormTitle {
        font-size: 1.2em;
        font-weight: bold;
        color: var(--MainText1);
        margin-bottom: 10px;
    }

    .ButtonBox {
        display: grid;
        justify-content: center;
        padding: 20px 0px;
    }
}

@media ( max-width: 768px ) {
    .FormPage {
        .TitleBlock {
            .SubTitle {
                font-size: 20px;
            }
            .Title {
                font-size: 40px;
            }
        }
    }
}