@charset "utf-8";

body {
    color: 3C3C3C;
}

/* css */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    word-break: normal;
    word-wrap: break-word;
}

/* aタグのリセット */
a {
    all: unset;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}


/* ヘッダー */
.header {
    text-decoration: none;
    color: #333333;
    /*position: absolute;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 130px;
    height: auto;
    z-index: 3;
    margin-left: 80px;
    margin-top: 10px;
}

.nav-container {
    display: flex;
    align-items: center;
    color: #333333;
    margin-right: 80px;
    margin-top: 10px;
}

.nav-container ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ボタンのデザイン */
.nav-container ul {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00943E;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* ホバー時の色変更 */
.nav-container ul:hover {
    background-color: #ffffff;
    border: #00943E solid 2px;
    color: #00943E;
}






/* メインビジュアル */

.main-visual {
    background-color: #fffef5;
    background-image: repeating-linear-gradient(90deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px);
    aspect-ratio: 16 / 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-family: 'Noto Sans', sans-serif;
    color: #333333;
    border-bottom: 1.8vw solid #FF6F23;
    width: 100%;
    z-index: -3;
    position: relative;
}

.title {
    font-size: 3rem;
    color: #00943E;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    margin-left: 15vw;
}

.subtitle {
    font-size: 2.5rem;
    color: #E95B10;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    margin-left: 15vw;
}

.main-visual p {
    z-index: 2;
    font-size: 1.5rem;
}

.main-visual-mv-yagi {
    position: absolute;
    width: 40%;
    height: auto;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-right: 10vw;
}

.mv-left-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 1;
}

.mv-right-pc {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 1;
}


.mv-left {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 1;
    display: none;
}

.mv-right {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 1;
    display: none;
}

.p-icon-contents {
    margin-top: 8px;
    margin-left: 15vw;
    position: relative;
    z-index: 2;
}

.p-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-icon {
    max-width: 24px;
    height: auto;
}


/* 画面幅が800px以下の場合 */
@media (max-width: 800px) {
    .header-logo img {
        width: 100px;
        height: auto;
        z-index: 3;
        margin-left: 50px;
        margin-top: 10px;
    }


    .main-visual {
        aspect-ratio: 16 / 9;
        padding: 20px;
    }

    .main-visual-mv-yagi {
        position: absolute;
        width: 48%;
        height: auto;
        right: 0;
        bottom: 0;
        z-index: 1;
        margin-right: 6vw;
    }

    .title {
        font-size: 2.7rem;
        margin-left: 10vw;
    }

    .subtitle {
        font-size: 2.3rem;
        margin-left: 10vw;
    }

    .main-visual p {
        font-size: 1.2rem;
        z-index: 2;
    }

    .mv-left-pc {
        position: absolute;
        top: 0;
        left: 0;
        width: 10%;
        height: 100%;
        z-index: 0;
    }

    .mv-right-pc {
        position: absolute;
        right: 0;
        width: 10%;
        height: 100%;
        z-index: 0;
    }

    .p-icon-contents {
        margin-left: 10vw;
    }

}


/* 画面幅が600px以下の場合 */
@media (max-width: 600px) {
    .header-logo img {
        width: 110px;
        height: auto;
        z-index: 3;
        margin-left: 25px;
        margin-top: 10px;
    }

    .nav-container {
        display: none;
    }

    .nav-container ul li:nth-child(1),
    /* 자주있는 질문 */
    .nav-container ul li:nth-child(2) {
        /* 문의하기 */
        display: none;
    }


    .main-visual {
        aspect-ratio: 16 / 7;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        border-bottom: 3.5vw solid #FF6F23;
        width: 100%;
    }

    .mv-left {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
        z-index: 0;
        display: block;

    }

    .mv-right {
        position: absolute;
        right: 0px;
        width: auto;
        height: 100%;
        z-index: 0;
        display: block;
    }

    .mv-left-pc {
        display: none;
    }

    .mv-right-pc {
        display: none;
    }

    .main-visual-mv-yagi {
        position: relative;
        width: 75%;
        max-width: 450px;
        min-width: 320px;
        height: auto;
        z-index: 1;
        margin: 0;
    }

    .title {
        font-size: 2.5rem;
        margin-left: 0;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 2rem;
        margin-top: 70px;
        margin-left: 0;
        margin-bottom: 4px;
    }

    .main-visual p {
        font-size: 1.5rem;
        margin-left: 0;
    }

    .p-icon-contents {
        margin-top: 8px;
        margin-left: 0vw;
        position: relative;
        z-index: 2;
    }

    .p-icon-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .p-icon {
        max-width: 20px;
        height: auto;
    }

}






/*履歴書テンプレート*/
.resume-container {
    margin-top: 80px;
}


.resume-container h2 {
    font-size: 2.3rem;
    color: #3c3c3c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.card {
    /* 3列 */
    flex: 1 1 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #e5f3e8;
    list-style: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 8px;
    text-align: left;
}

.card-content p {
    margin: 0px 0px 8px 0px;
}

.card-content .sub {
    font-size: 1.0rem;
    color: #3c3c3c;
}

.card-content .title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #003F1A;
}

.card-content .desc {
    font-size: 1.0rem;
    color: #3c3c3c;
}

.card-footer {
    background-color: #00A651;
    color: white;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
}


/* 800pxの場合 */
@media (max-width: 800px) {

    .card-content {
        display: flex;
        flex-direction: column;
        max-width: 750px;
        padding: 0 24px;
    }

    .card {
        flex: 1 1 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        min-width: 160px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-content .sub {
        font-size: 0.9rem;
        color: #3c3c3c;
    }

    .card-content .title {
        font-size: 1.3rem;
        font-weight: bold;
        color: #003F1A;
    }

    .card-content .desc {
        font-size: 0.9rem;
        color: #3c3c3c;
    }

}

/* 600pxの場合 */
@media (max-width: 600px) {
    .card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 750px;
        margin: 0 auto;
        padding: 0 24px;
        /*justify-content: center;*/
    }

    .card {
        flex: 1 1 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-content {
        padding: 8px;
    }

    .card-content .sub {
        font-size: 0.9rem;
        color: #3c3c3c;
    }

    .card-content .title {
        font-size: 1.3rem;
        font-weight: bold;
        color: #003F1A;
    }

    .card-content .desc {
        font-size: 0.9rem;
        color: #3c3c3c;
    }
}

@media (max-width: 400px) {

    .card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 750px;
        margin: 0 auto;
        padding: 0 24px;
        justify-content: center;
        /* これで真ん中に配置されます */
    }

    .card {
        flex: 1 1 calc((100% - 12px) / 1);
        max-width: calc((100% - 12px) / 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}




/*特徴*/
.yagish-feature {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: url("./asset/svg/feature_pc.svg") no-repeat center / cover; */
    background-image: repeating-linear-gradient(90deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px);
    background-color: #fffef5;
    position: relative;
}

.yagish-feature h2 {
    font-size: 2.3rem;
    color: #3c3c3c;
    font-weight: 700;
    text-align: center;
}

.feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 40%;
}

.feature-list li {
    list-style: none;
    margin: 0 20px;
}

.feature-list h3{
    margin-bottom: 8px;
}

.feature-list p{
    line-height: 1.5;
}

.green {
    color: #57B871;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 32px;
}

.orange {
    color: #FFB26F;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 32px;
}

.feature-background {
    margin-top: 120px;
}


.feature-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    /* 親の高さに合わせます */
    z-index: 0;
}

.feature-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    /* 親の高さに合わせます */
    z-index: 0;
}


/* 画面サイズが800px以下の場合 */
@media (max-width: 800px) {

    .feature-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
        width: 55%;
    }
}

/* 画面サイズが600px以下の場合 */
@media (max-width: 600px) {
    .feature-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
        width: 80%;
    }

    .yagish-feature h2 {
        font-size: 2.0rem;
    }

    .feature-left {
        display: none;
    }

    .feature-right {
        display: none;
    }

}




/* ご利用の流れ */
.how-to-use {
    text-align: center;
    margin-top: 80px;
}

.sp-flow{
    display: none;
}

.how-to-use h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 60px;
}

.section-title span {
    font-weight: normal;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.step {
    width: 180px;
}

.icon {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 70%;
    height: auto;
}

.step-title {
    font-size: 18px;
    color: #f29656;
    font-weight: bold;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 20px;
    font-weight: bold;
}

/* 画面サイズが800px以下の場合 */
@media (max-width: 800px) {
    .sp-flow{
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
        max-width: 250px;
        padding: 0 10px;
    }

    .steps{
        display: none;
    }

}





/* お役立ち情報 */

.article-section {
    background-color: #FFFEF4;
    background-image: repeating-linear-gradient(90deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px);
    padding: 80px 80px;
    text-align: center;
    margin-top: 80px;
}

.article-section h2 {
    color: #3c3c3c;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.articles {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.article-card {
    background-color: #ffffff;
    max-width: 250px;
    min-width: 230px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
    padding: 8px 8px;
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dfdfdf;
    margin-bottom: 5px;
}

.article-card:hover {
    box-shadow: 0 4px 12px #f5a57ea1;
}

.article-card-content {
    text-align: left;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 8px;
}

.article-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3c3c3c;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-card-content p {
    font-size: 14px;
    color: #3c3c3c;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.link-button-wrapper {
    text-align: center;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #E95B10;
    background-color: #fff;
    border-radius: 9999px;
    color: #E95B10;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.link-button:hover {
    background-color: #E95B10;
    color: #fff;
}


/* 画面サイズ800pxの場合 */
@media (max-width: 800px) {
    .article-section {
        padding: 80px 30px;
        text-align: center;
    }


    .articles {
        justify-content: center;
        gap: 8px;
    }

    .article-card {
        width: 100%;
        padding: 16px 16px;
    }

    .article-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }




}


@media (max-width: 600px) {
    .article-section {
        padding: 80px 30px;
        text-align: center;
    }

    .article-section h2 {
        color: #3c3c3c;
        font-size: 2.0rem;
        font-weight: 700;
        margin-bottom: 60px;
    }


    .articles {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-bottom: 60px;
    }

    .article-card {
        width: 85%;
        padding: 16px 16px;
    }

    .article-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }


}




/* よくある質問 */
.faq {
    background-color: #F4FFFA;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq h2 {
    font-size: 2.3rem;
    font-weight: bold;
}

.faq-container {
    width: auto;
    max-width: 50%;
}



.faq-item {
    margin-bottom: 72px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.question {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    margin-bottom: 16px;
}

.question p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333333;
    text-align: start;
}

.answer {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    margin-bottom: 48px;
}

.answer p {
    font-size: 1.0rem;
    color: #333333;
    text-align: start
}


.button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.faq-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #16c784;
    background-color: #ffffff;
    border: 2px solid #16c784;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-button:hover {
    background-color: #16c784;
    color: white;
    font-weight: bold;
}

@media (max-width: 600px) {
    .faq-container {
        width: auto;
        max-width: 80%;
    }

    .faq {
        text-align: left;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq h2 {
        font-size: 2.0rem;
        font-weight: bold;
    }
}






/* フッター */
.footer-content {
    padding: 80px 0;
    text-align: left;
    position: relative;
    display: flex;
    align-items: start;
    gap: 72px;
    justify-content: center;
}

.footer img {
    width: auto;
    height: auto;
    max-width: 180px;
    margin-bottom: 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li a {
    text-decoration: none;
    color: #3c3c3c;
    font-size: 14px;
    line-height: 2.0;
}



@media (max-width: 600px) {

    .footer-content {
        margin-top: 40px;
        padding: 40px 0;
        text-align: left;
        position: relative;
        display: flex;
        align-items: start;
        gap: 32px;
        justify-content: center;
    }

    .footer img {
        width: auto;
        height: auto;
        max-width: 130px;
        margin-bottom: 0;
    }

    .footer-content ul li a {
        text-decoration: none;
        color: #3c3c3c;
        font-size: 14px;
        line-height: 2.5;
    }
}



/* 言語切り替え */
.footer hr {
    margin-top: 24px;
    margin-bottom: 24px;
}

.footer-language {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.footer-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #3c3c3c;
    background-color: #ffffff;
    border: 2px solid #3c3c3c;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-button:hover {
    background-color: #3c3c3c;
    color: white;
    font-weight: bold;
}





/* コピーライト */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #3c3c3c;
    margin-top: 16px;
    margin-bottom: 16px;
}




/* ここから下は記事一覧ページ */

.article-page-mv {
    background-color: #E7FAF4;
    /*background-image: repeating-linear-gradient(90deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px);*/
    min-height: 200px;
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article-page-mv-text {
    color: #1EAE80;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-item {
    gap: 12px;
    align-items: flex-start;
    /*border-bottom: 1px solid #ddd;*/
    padding-bottom: 12px;
    text-decoration: none;
    color: inherit;
    display: block;
    width: calc(100% / 3 - 20px);
}

.article-item:hover {
    opacity: 0.8;
    /* ホバー効果 */
}

.article-image {
    max-width: 275px;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.article-text {
    flex: 1;
}

.article-date {
    font-size: 14px;
    color: #555;
    margin: 0 0 4px 0;
}

.article-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.pagination .page-numbers {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 10px;
}

.pagination .page-numbers.current {
    background-color: #1EAE80;
    color: white;
}

.nav-links {
    text-align: center;
    padding: 50px 20px;
}


/* スマホ (640px以下) では縦並び */
@media (max-width: 640px) {
    .article-list {
        grid-template-columns: 1fr;
    }

    /*.article-item {
        display: flex;
        flex-direction: row;
    }*/

    .article-image {
        max-width: 180px;
        aspect-ratio: 16 / 9;
        flex-shrink: 0;
    }
}





/* ここから下は記事詳細ページ */
.article-back {
    background: #E7FAF4;
}

.article-detail {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 50px;
}

.date {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.single-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.articles-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    margin-bottom: 20px;
}

.article-latestitem .articles-image {
    height: 150px;
    overflow: hidden;
    object-fit: cover;
}

.wp-block-image img {
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    margin-bottom: 20px;
}

.article-block p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-block h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 32px 0 16px;
}

.article-block h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 32px 0 16px;
}

.article-block h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 32px 0 10px;
}

.article-latestlist {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 50px;
}

.latest-h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.article-latestitem {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* スマホ (640px以下)  */
@media (max-width: 640px) {
    .article-detail {
        padding: 30px;
    }

    .article-item {
        width: 100%;
    }
}



/*Contact & Comments*/
.contact .page-mv {
    background-color: #fffef5;
    min-height: 200px;
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .page-mv-text {
    color: #E95B10;
}

.contact-wrapper {
    width: 560px;
    margin: 50px auto 100px;
    padding: 0 10px;
}

.wpcf7 p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.contact-lead {
    margin-bottom: 30px;
}

.required {
    color: #E60040;
}

.contact-wrapper input {
    width: 100%;
    padding: 10px;
    border: 1px solid #DDDFE6;
    border-radius: 4px;
}

.contact-wrapper select {
    position: relative;
    width: 100%;
    padding: 10px;
    border: 1px solid #DDDFE6;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('../img/contact/contact-arrow.svg') no-repeat right 10px center/16px 16px;
    padding-right: 30px;
    padding-right: 30px;
}

.contact-wrapper textarea {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #DDDFE6;
    border-radius: 4px;
    resize: none;
}

.contact-wrapper .wpcf7-submit {
    display: block;
    margin: 0 auto;
    background: #005B90;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    width: 160px;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 640px) {
    .contact-wrapper {
        width: 100%;
        margin: 50px 0;
    }
}