@charset "utf-8";
.tmCt {
    padding-top: calc(var(--header-height) + 90px);
    position: relative;
}

.tmCtHero,
.tmCtForm,
.tmCtCompany,
.tmCtCtas {
    position: relative;
    z-index: 1;
}

.tmCtHero {
    padding-bottom: 120px;
}

.tmCtHero__title {
    text-align: center;
    margin: 0;
    font-size: var(--en-font-large);
    line-height: 1.2;
}

.tmCtHero__lead {
    text-align: center;
    margin: 28px auto 0;
    line-height: 1.8;
}

.tmCtForm {
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 850px;
    background-color: #fff;
}

.tmCtForm-inner {
    margin: 0 auto;
    padding: 80px 130px;
}

.tmCtForm::before,
.tmCtForm::after,
.tmCtForm-inner::before,
.tmCtForm-inner::after {
    z-index: 2;
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.tmCtForm::before {
    top: 10px;
    left: 10px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.tmCtForm::after {
    top: 10px;
    right: 10px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}

.tmCtForm-inner::before {
    bottom: 10px;
    left: 10px;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
}

.tmCtForm-inner::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
}

.tmCtForm__body {
    position: relative;
    z-index: 5;
}

.tmCtForm__group,
.tmCtForm__field {
    margin: 0;
}

.tmCtForm__field+.tmCtForm__field {
    margin-top: 24px;
}

.tmCtForm__group {
    border: 0;
    padding: 0;
    margin-bottom: 30px;
}

.tmCtForm__label {
    margin: 0 0 12px;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #1f1f1f;
}

.tmCtForm__required {
    color: #fe3a3a;
    margin-left: 2px;
}

.tmCtForm__check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.8;
    color: #1f1f1f;
    margin-top: 8px;
}

.tmCtForm__check input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.tmCtForm__input,
.tmCtForm__textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    background: #fff;
    padding: 10px 16px;
    font-size: 16px;
    color: #1f1f1f;
}

.tmCtForm__input {
    height: 52px;
}

.tmCtForm__textarea {
    min-height: 175px;
    resize: vertical;
}

.tmCtForm__input::placeholder,
.tmCtForm__textarea::placeholder {
    color: #bdbdbd;
}

.tmCtForm__policy {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #1f1f1f;
    padding-bottom: 2px;
}

.tmCtForm__policy input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.tmCtForm__submit {
    margin: 44px auto 0;
    width: 425px;
    height: 59px;
    border: 0;
    background: #007448;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: block;
}

.tmCtCompany {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #f1f0f1;
}

.tmCtCompany__inner {
    max-width: 850px;
    margin: 0 auto;
}

.tmCtCompany__photo {
    width: 824px;
    height: 100%;
    aspect-ratio: 824 / 365;
    object-fit: cover;
    display: block;
}

.tmCtCompany__meta {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.tmCtCompany__title {
    font-size: var(--ja-font-large);
    line-height: 1;
}

.tmCtCompany__list {
    margin: 0;
    display: grid;
    grid-template-columns: 86px 1fr;
    row-gap: 18px;
    column-gap: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #212121;
}

.tmCtCompany__list dt,
.tmCtCompany__list dd {
    margin: 0;
}

.tmCtCompany__list a {
    color: #212121;
    text-decoration: underline;
}

.tmCtCtas {
    max-width: 1728px;
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: 746px 746px;
    justify-content: center;
    column-gap: 22px;
}

@media screen and (max-width: 900px) {
    .tmCt {
        padding-top: calc(var(--header-height) + 60px);
        position: relative;
    }
    .tmCtHero {
        padding-bottom: 60px;
    }
    .tmCtHero__lead {
        text-align: left;
        font-size: 16px;
        br {
            display: none;
        }
    }
    .tmCtForm {
        margin-top: 30px;
    }
    .tmCtForm-inner {
        padding: 30px 20px;
    }
    .tmCtForm__field+.tmCtForm__field {
        margin-top: 24px;
    }
    .tmCtForm__group {
        margin-bottom: 30px;
    }
    .wpcf7-list-item {
        display: block;
        margin: 0;
        label {
            display: flex;
            align-items: center;
            gap: 8px;
        }
    }
    .tmCtForm__policy {
        margin-top: 21px;
    }
    .tmCtForm__submit {
        margin: 30px auto 0;
        width: 100%;
    }
    .tmCtCompany {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .tmCtCompany__photo {
        width: 100%;
        height: auto;
    }
    .tmCtCompany__meta {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }
    .tmCtCompany__list {
        row-gap: 16px;
        column-gap: 15px;
        font-size: 16px;
    }
}