/*
Theme Name:Original Theme
Description:はじめて作るオリジナルテーマです。
Version:1.0
*/
*{
    box-sizing: border-box;
}
body,html{
    margin: 0 !important;
    padding: 0;
    font-family: sans-serif;
    line-height: 1.8;
    color: #222;
    /* background: #f1f3fc; */
}

html{
    scroll-behavior: smooth;
}

a{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

/* -------ヘッダーエリア------- */
.site_header{
    height: auto;
    width: 100%;
    max-width: 100%;
    top: 60px;
    left: 0;
    display: flex;
    position: fixed;
    z-index: 100;
    align-items: center;
    background: transparent
}

.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    background: #fff;
    width: 1080px;
    margin: 0 auto;
    padding: 24px 24px;
    box-shadow: #ddd 0px 1px 3px 1px;
    border-radius: 20px;
}
.header_logo{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    flex-shrink: 0;
}

.header_logo a{
    display: block;
    flex-shrink: 0;
}

.header_logo img{
    width: 76px;
    display: block;
}

.site_title{
    margin: 0;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.2;
    color: #333;
    white-space: nowrap;
}

/* グローバルナビ */

.header_nav{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 0 16px;
}

.global_nav{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.main_menu,
.sub_menu{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.main_menu{
    gap: 17px;
    line-height: 1;
}
.main_menu a{
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    padding-bottom: 5px;
}


.main_menu a::before{
    background: #23364f;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0,1);
    transition: transform .3s;
}

.main_menu a:hover::before{
    transform-origin: left top;
    transform: scale(1,1);
}

.sub_menu{
    gap: 12px;
    line-height: 1;
    margin-top: 6px;
}

.sub_menu a{
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    color: #333;
}

.sub_menu li{
    display: flex;
    align-items: center;
    gap: 6px;
}

.sub_menu li::before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid #ccc;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.sub_menu a:hover{
    opacity: 0.8;
}
.header_btn{
    width: 116px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #23364f;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 2px #001b3d;
}

.header_btn:hover{
    transform: translateY(4px);
    box-shadow: none;
}

/*--------------- ヘッダーエリア終わり------------- */

/*----------------- FV --------------------------*/
.first_view{
    width: 100%;
    height: 700px;
    margin-top: 0px;
    padding-top: 120px;
    background: #fff;
    background-image: url(images/toreta_fv_nonetext.png);
    background-size: cover;
    background-position: center;
}

.first_view .first_view_inner{
    padding: 40px 180px 0 40px;
}

.first_view .first_view_inner h2{
    font-size: 3.5vw;
    font-family: '游明朝',serif;
}

.first_view .first_view_inner p{
    font-size: 2vw;
    font-family: '游明朝',serif;
    font-weight: bold;
}
/* .first_view_inner{
    max-width: 1080px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.first_view_inner{
    width: 100%;
    height: 400px;
    display: block;
} */
/* ----------------オープニング--------------- */
.opening_section{
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.opening_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.opening_section ul{
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.opening_section li{
    flex: 1;
    padding: 32px;
    background: #f7f7f7;
    border-radius: 20px;
}

.opening_section li img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 0 0 20px;
    border-radius: 14px;
}

.opening_section li h3{
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.5;
}
.section_inner{
    max-width: 1080px;
    width: calc(100%-40px);
    margin: 0 auto;
}

.opening_section li p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
}


.section_label{
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: bold;
    color: #777;
    letter-spacing: 0.12em;
}


.site_footer{
    padding: 24px;
    background: #222;
    color: #fff;
    text-align: center;
}

.site_footer p{
    margin: 0;
}

.site_footer small{
    font-size: 12px;
}

.body_section{
    padding: 80px 0;
    background: #f7f7f7;
}

.body_section .section_inner{
    display: flex;
    align-items: center;
    gap: 56px;
}

.body_section .section_inner > img{
    width: 50%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.body_section .section_inner > div{
    flex: 1;
}

.body_section .section_label{
    margin: 0 0 14px;
}

.body_section h2{
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 1.5;
}

.body_section .section_inner > div > p{
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 2;
}

.body_section .section_inner > div > p:last-child{
    margin-bottom: 0;
}

/* ---------------サービスセクション---------------- */
.service_section{
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.service_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.service_section .section_label{
    max-width: 780px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 2;
}

.service_section dl{
    display: grid;
    grid-template-columns: 240px 1fr;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
}

.service_section dt,
.service_section dd{
    margin: 0;
    padding: 24px 28px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.service_section dt{
    font-weight: bold;
    background: #eee;
}

.service_section dd{
    background: #f7f7f7;
    line-height: 2;
}

/* --------------ワークセクション---------------- */

.works_section{
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.works_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5
}

.works_section .section_label{
    max-width: 780px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 2;
}

.works_section ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.works_section li{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.works_section li img{
    width: 100%;
    height: auto;
    margin: 10px;
    object-fit: cover;
    display: block;
}

.works_section li h3{
    margin: 24px 24px 12px;
    font-size: 20px;
    line-height: 1.5;
}

.works_section li p{
    margin: 0 24px 28px;
    font-size: 15px;
    line-height: 1.9;
}

/* -------------フロウセクション------------------- */

.flow_section{
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.flow_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.flow_section .section_label{
    max-width: 780px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 2;
}

.flow_section ol{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: flow-number;
}

.flow_section li{
    position: relative;
    padding: 32px 24px 28px;
    background: #f7f7f7;
    border-radius: 20px;
    counter-increment: flow-number;
}

.flow_section li::before{
    content: counter(flow-number,decimal-leading-zero);
    display: block;
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: #ccc;
}

.flow_section li h3{
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.5;
}

.flow_section li p{
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

/* -----------プライスセクション-------------- */

.price_section{
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.price_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.price_section .section_label{
    max-width: 780px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 2;
}

.price_section ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.price_section li{
    padding: 36px 28px;
    background: #fff;
    border-radius: 20px;
}

.price_section li h3{
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}
.price_section .price{
    margin: 0 0 10px;
    text-align: center;
    line-height: 1.2;
}

.price_section .price strong{
    font-size: 30px;
    line-height: 1;
}

.price_section .price span{
    font-size: 14px;
    font-weight: bold;
}

.price_section li small{
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: #666;
}

.price_section li p{
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.9;
}

.price_section li p:last-child{
    margin-bottom: 0;
}

.price_section .section_inner>p:last-child{
    margin: 0;
}

.price_section .section_inner>p:last-child small{
    font-size: 12px;
    line-height: 1.8;
    color: #666;
}

/* -------------CTAセクション------------- */

.cta_section{
    padding: 80px 0;
    background: #222;
    color: #fff;
    text-align: center;
}

.cta_section .section_label{
    color: #ccc;
}

.cta_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.cta_section a{
    display: inline-block;
    min-width: 260px;
    padding: 18px 36px;
    color: #222;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    border-radius: 999px;
}

.cta_section a:hover{
    opacity: 0.8;
}

.cta_section small{
    display: block;
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 1.8;
    color: #ccc;
}

/* ＝＝＝＝トップページの仕上げ＝＝＝＝＝ */

.opening_section,
.body_section,
.service_section,
.works_section,
.flow_section,
.price_section,
.cta_section{
    padding-top: 60px;
    padding-bottom: 60px;
}

.opening_section h2,
.body_section h2,
.service_section h2,
.works_section h2,
.flow_section h2,
.price_section h2,
.cta_section h2{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.5;
}

.opening_section li,
.works_section li,
.flow_section li,
.price_section li{
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* P Cではハンバーガーボタン非表示 */
.menu_toggle{
    display: none;
}

/* PC用：ヘッダーナビエリアの中でナビとボタンを横並びに */
.header_nav{
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0;
}

.header_nav .global_nav{
    margin-right: 30px;
}

.header_nav .header_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---------------レスポンシブ------------------ */

@media (max-width: 768px){

    .section_inner{
        width: calc(100% - 32px);
        max-width: none;
        margin: 0 auto;
    }

    .opening_section,
    .service_section,
    .works_section,
    .flow_section,
    .price_section,
    .cta_section,
    .body_section{
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .opening_section h2,
    .service_section h2,
    .works_section h2,
    .flow_section h2,
    .price_section h2,
    .cta_section h2,
    .body_section h2{
        font-size: 28px;
        line-height: 1.5;
    }

    .section_label{
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.9;
    }

    .first_view{
    width: 100%;
    height: 700px;
    margin: 0px;
    padding: 0px;
    background: #fff;
    background-image: url(images/mb-fv.png);
    background-size: cover;
    background-position: center;
}

.first_view_inner{
    width: 100%;
    max-width: none;
    height: auto;
}

.first_view .first_view_inner h2{
    font-size: 40px;
}

/* ---------header---------- */



.header_inner{
    width: 90%;
    padding: 5px;
}

.site_header .section_inner{
    display: block;
}

.site_title{
    margin: 0 0 10px;
    text-align: center;
}

.site_title img{
    max-height: 36px;
}

/* ------------Opening------------- */

.opening_section ul{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.opening_section li{
    width: 100%;
    margin: 0 0 20px;
    padding: 24px;
}

.opening_section li:last-child{
    margin-bottom: 0;
}

.opening_section li img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 0 20px;
}

.opening_section li h3{
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.5;
}

.opening_section li p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
}

/* -----------BOdy-------------- */

.body_section .section_inner{
    display: block;
}

.body_section .section_inner>img{
    width: 100%;
    height: 260px;
    margin-bottom: 28px;
}

.body_section .section_inner>div>p{
    font-size: 15px;
    line-height: 1.9;
}

/* -------Service------------ */

.service_section .section_inner{
    padding-left: 0;
    padding-right: 0;
}

.service_section dl{
    display: block;
    width: 100%;
}

.service_section dt,
.service_section dd{
    width: 100%;
    margin: 0;
    padding: 18px 20px;
    border-right: 1px solid #ddd;
}

/* -------------Works--------------- */

.works_section ul{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.works_section li img{
    height: 220px;
    margin: 10px;
}

/* -----------Flow------------- */

.flow_section ol{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.flow_section li{
    padding: 28px 24px;
}

/* ------------Price-------------- */

.price_section ul{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
}

/* -------------CTA--------------- */

.cta_section a{
    width: 100%;
    min-width: 0;
    padding: 18px 24px;
}

/*-------------- mb_menu------------- */

.site_header{
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    padding: 0 16px;
    box-sizing: border-box;
}

.header_logo{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header_logo a{
    display: block;
    line-height: 1;
}

.header_logo img{
    width: 70px;
    height: auto;
    display: block;
}

.site_title{
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
}

.menu_toggle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.menu_toggle span{
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #333;
}

.header_nav{
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    padding: 0 16px 20px;
    box-sizing: border-box;
    background: #f7f7f7;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.header_nav.is-open{
    display: block;
}

.main_menu,
.sub_menu{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.main_menu li,
.sub_menu li{
    display: block;
    border-bottom: 1px solid #e3e3e3;
}

.main_menu a,
.sub_menu a{
    display: block;
    padding: 22px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.sub_menu{
    margin-top: 0;
}

.sub_menu li{
    gap: 0;
}

.sub_menu li::before{
    display: none;
}

.header_nav .header_btn{
    width: 100%;
    max-width: none;
    height: 56px;
    margin-top: 20px;
    font-size: 14px;
}
}

/* ---------------固定ページ--------------- */

.page_main{
    padding-top: 60px;
    padding-bottom: 60px;
}

.page_content{
    max-width: 800px;
    margin: 0 auto;
}

.page_title{
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
}

.page_body{
    font-size: 16px;
    line-height: 1.9;
}

.page_body h2{
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}

.page_body h3{
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.5;
}

.page_body p{
    margin-bottom: 20px;
}

.page_body ul,
.page_body ol{
    margin-bottom: 24px;
    padding-left: 1.5em;
}

.page_body li{
    margin-bottom: 8px;
}

.page_body table{
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    border-collapse: collapse;
}

.page_body th,
.page_body td{
    padding: 14px 16px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.page_body th{
    width: 30%;
    background: #f7f7f7;
    font-weight: 700;
}

@media screen and (max-width: 768px) {

    .page_main{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page_content{
        max-width: 100%;
    }

    .page_title{
        margin-bottom: 24px;
        font-size: 26px;
    }

    .page_body{
        font-size: 15px;
    }

    .page_body h2{
        margin-top: 40px;
        font-size: 22px;
    }

    .page_body h3{
        margin-top: 32px;
        font-size: 18px;
    }

    .page_body table{
        font-size: 14px;
    }

    .page_body th,
    .page_body td{
        display: block;
        width: 100;
    }
}

.blog_main,
.archive_main{
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog_heading,
.archive_heading{
    margin-bottom: 40px;
    text-align: center;
}

.blog_title,
.archive_title{
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.5;
}

.blog_lead{
    font-size: 16px;
    line-height: 1.8;
}

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

.blog_card{
    padding: 10px 25px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
}

.blog_card_link{
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog_card_image{
    aspect-ratio: 3 / 2;
    background: #f7f7f7;
}

.blog_card_image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_date{
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #777;
}

.blog_card_title{
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.5;
}

.blog_excerpt{
    font-size: 15px;
    line-height: 1.8;
}

.blog_pagination{
    margin-top: 40px;
    text-align: center;
}

.blog_pagination .page_numbers{
    display: inline-block;
    margin: 0 4px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    }

    .blog_pagination .current{
        background: #333;
        color: #fff;
    }

    /* 記事詳細 */


    single_main{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .single_content{
        max-width: 800px;
        margin: 0 auto;
    }

    .single_header{
        margin-bottom: 40px;
        text-align: center;
    }

    .single_date{
        display: block;
        margin-bottom: 12px;
        font-size: 14px;
        color: #777;
    }

    .single_title{
        font-size: 32px;
        line-height: 1.5;
    }

    .single_eyecatch{
        margin-bottom: 40px;
    }

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

    .single_body{
        font-size: 16px;
        line-height: 1.9;
    }

    .single_body h2{
        margin-top: 48px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        font-size: 24px;
        line-height: 1.5;
        border-bottom: 1px solid #ddd;
    }

    .single_body h3{
        margin-top: 36px;
        margin-bottom: 16px;
        font-size: 20px;
        hyphenate-limit-chars: 1.5;
    }

    .single_body p{
        margin-bottom: 20px;
    }

    .single_body ul,
    .single_body ol{
        margin-bottom: 24px;
        padding-left: 1.5em;
    }

    .single_body li{
        margin-bottom: 8px;
    }

    .single_nav{
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 48px;
    }

    .single_nav a,
    .back_to_blog a{
        text-decoration: underline;
    }

    .back_to_blog{
        margin-top: 32px;
        text-align: center;
    }

    @media screen and (max-width: 768px) {
        .blog_mein,
        .archive_main,
        .single_main{
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .blog_heading,
        .archive_heading{
            margin-bottom: 32px;
        }

        .blog_title,
        .archive_title,
        .single_title{
            font-size: 26px;
        }

        .blog_list{
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .blog_card_body{
            padding: 20px;
        }

        .single_header{
            margin-bottom: 32px;
        }

        .single_eyecatch{
            margin-bottom: 32px;
        }

        .single_body{
            font-size: 15px;
        }

        .single_body h2{
            margin-top: 40px;
            font-size: 22px;
        }

        .single_body h3{
            margin-top: 32px;
            font-size: 18px;
        }

        .single_nav{
            display: block;
        }

        .single_nav_prev,
        .single_nav_next{
            margin-bottom: 16px;
        }
    }

    /* -------------お問い合わせフォーム---------------- */

    .page_body .wpcf7-form{
        max-width: 640px;
        margin: 0 auto;
    }

    .page_body .wpcf7-form p{
        margin-bottom: 20px;
    }

    .page_body .wpcf7-form label{
        display: block;
        font-weight: 700;
    }

    .page_body .wpcf7-form input[type="text"],
    .page_body .wpcf7-form input[type="email"],
    .page_body .wpcf7-form input[type="tel"],
    .page_body .wpcf7-form select,
    .page_body .wpcf7-form textarea{
        width: 100%;
        margin-top: 8px;
        padding: 12px 14px;
        border: 1px solid #ccc;
        font-size: 16px;
        line-height: 1.6;
    }

    .page_body .wpcf7-form textarea{
        min-height: 180px;
    }

    .page_body .wpcf7-form input[type="submit"]{
        display: block;
        width: 100%;
        padding: 14px 20px;
        border: none;
        background: #333;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
    }

    .page_body .wpcf7-form input[type="submit"]:hover{
        opacity: 0.8;
    }

    .page_body .wpcf7-not-valid-tip{
        margin-top: 6px;
        font-size: 14px;
        color: #c00;
    }

    .page_body .wpcf7-response-output{
        margin: 24px 0 0;
        padding: 16px;
    }