body {
    background: var(--color-back);
    }
    .first-container {
        position: relative;
        overflow: hidden;
      }
      .first-container::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 100%;
        height: 100%;
        /* border-radius: 0 0 50% 50%; */
        z-index: -1;
        pointer-events: none;
        background-image: linear-gradient(to bottom, rgb(255 255 255 / 84%), rgb(255 255 255 / 84%)), url(../img/common/first-bg.jpg);
        background-position: center top, center top;
        }
      .first-container h1 {
        text-align: center;
        padding: 40px 0 60px;
        font-size: 32px;
        font-weight: 700;
        }
      .first-container h1 span {
    color: var(--color-surface);
        }
        h2 {
          font-size: clamp(1.25rem, 1.031rem + 0.9vw, 1.75rem);
          margin: 20px 0 20px;
          font-weight: 700;
        }
        .about-table {
            display: grid;
                justify-content: center;
                margin-top: 60px;
            }
        .about-table table tr {
            display: grid;
            padding: 10px;
            width: 100%;
            grid-template-columns: 140px 1fr;
            }
            .about-table table tr:not(:last-child) {
            border-bottom: 1px solid var(--color-brand);
            }
            .about-table table tr th {
            text-align: center;
            font-weight: 700;
            }
            .about-table table tr td iframe {
                width: 100%;
                height: 350px;
                margin-top: 12px;
            }
            dl {
                margin-top: 20px;
            }
            dl dt {
                font-weight: 700;
                margin-bottom: 10px;
            }
                        .prevacy-page,.contact-page {
                margin-top: 60px;
            }
            .prevacy-page ul {
                list-style-type: disc;
                margin-left: 20px;
            }            
            .prevacy-page ul li {
margin-bottom: 4px;
            }
            .contact-form,.wpcf7-response-output {
                width: 50%;
                margin: auto;
                }
                .contact-form label > span:first-child {
                padding-bottom: 8px;
                display: flex;
                font-weight: bold;
                align-items: flex-end;
                gap: 5px;
                font-size: 14px;
                }
                
                .contact-form label:not(:first-child) > span:first-child {
                padding: 24px 0 8px;
                }
                .contact-form label > span:first-child span {
                color: var(--color-accent);
                font-size: 12px;
                }
                .contact-form label input,.contact-form label select,form label textarea {
                background: #fff;
                padding: 8px 10px;
                border-radius: 5px;
                width: 100%;
                }
                .contact-form label .select {
                position: relative;
                }
                .contact-form label .select::after {
                content: '';
                width: 12px;
                height: 12px;
                border: 0;
                border-top: solid 1px #3C3C3C;
                border-right: solid 1px #3C3C3C;
                position: absolute;
                top: 50%;
                right: 1rem;
                pointer-events: none;
                margin-top: -10px;
                transform: translateX(-50%) rotate(135deg);
                }
                .wpcf7 form .wpcf7-response-output {
                margin: auto;
                }
                .contact-form > div {
                    margin: 4px 0 8px;
                    text-align: center;
                }
                .contact-form > div a {
text-decoration: underline;
                }
                .agree .wpcf7-list-item {
                    margin: 0;
                    display: flex;
                    justify-content: center;
                    padding-bottom: 28px;
                }
                .agree .wpcf7-list-item label {
                    display: flex;
                        gap: 5px;
                        align-items: center; 
                }
                .agree .wpcf7-list-item input {
                    appearance: auto;
                    width: 20px;
                    height: 20px;
                    padding-top: 16px;
                }
                .wpcf7-submit {
                    text-align: center;
                    padding: 12px 60px;
                    font-size: clamp(0.875rem, 0.746rem + 0.53vw, 1rem);
                    border-radius: 40px;
                    display: block;
                    background: var(--color-surface);
                    margin: auto;
                    color: var(--color-white);
                }
                .nf-lead {
                    text-align: center;
                    margin: 40px 0 0;
                }
    @media screen and (max-width: 768px) {
        .about-table table tr {
            grid-template-columns: 1fr;
            }
            .about-table table tr:not(:last-child) {
            border-bottom: 1px solid var(--color-brand);
            }
            .about-table table tr th {
                text-align: left;
                padding: 10px 0;
            }
            .contact-form,.wpcf7-response-output {
                width: 100%;
                }
    }