@charset "UTF-8";

@font-face {
    font-family: 'singo';
    src: url('../font/A-OTF-UDShinGoPro-Heavy.woff') format('woff'),
        url('../font/A-OTF-UDShinGoPro-Heavy.woff2') format('woff2');
}
.title_font {
        font-family: 'singo';
}


/* --------------------------------------
ヘッダー
---------------------------------------*/
header {
    width: 100%;
    min-width: 1100px;
    height: 100px;
    background: url(../img/home/head_bk_red.png);
    overflow: hidden;
}
.head_inner {
    width: 96%;
    height: 100%;
    margin: auto;
}
@media screen and (max-width: 768px) {
    header {
        width: 100%;
        min-width: initial;
        height: 100px;
        background: url(../img/home/head_bk_red.png);
    }
}
.top_header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1.head_main_logo {
    width: 300px;
    z-index: 999;
}

nav.head_main_menu {
    height: 65px;
    display: flex;
}
.head_sns_wrap {
    width: auto;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}
.head_sns_wrap a {
    width: 40px;
    margin-right: 10px;
}
.head_sns_wrap a:last-child {
    margin-right: 0;
}
.head_tel_wrap {
    width: auto;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.head_cnt_wrap {
    width: auto;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}
a.head_cnt_btn {
    display: flex;
    font-size: 1.25rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    box-sizing: border-box;
    background-color: #FFEE00;
    color: #962B3F;
    text-align: center;
    border-radius: 30px;
    transition: 0.5s;
}
a.head_cnt_btn:hover {
    background-color: #fff;
    transition: 0.5s;
    color: #962B3F;
}
a.head_cnt_btn i {
    font-size: 1.75rem;
    margin-right: 1rem;
}
a.head_cnt_tel {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
a.head_cnt_tel span {
    font-size: 1rem;
}
@media screen and (max-width: 768px) {
    .head_tel_wrap,
    .head_cnt_wrap {
        display: none;
    }
}

/* --------------------------------------
ヘッダー固定
---------------------------------------*/

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header {
    /*fixedで上部固定*/
    position: fixed;
    z-index: 999;
    /*最前面へ*/
    top: 0;
}

/*　上に上がる動き　*/

#header.UpMove {
    animation: HeaderUpAnime 0.5s forwards;
}

@keyframes HeaderUpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/

#header.DownMove {
    animation: HeaderDownAnime 0.5s forwards;
}

@keyframes HeaderDownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------
背景固定
---------------------------------------*/
.scroll-prevent {
    /*動き固定*/
    position: fixed;
    /*奥行きを管理*/
    z-index: -1;
    /*下2つで背景を元のサイズのまま表示することができる*/
    width: 100%;
    height: 100%;
}


/* --------------------------------------
メインタイトル
---------------------------------------*/
h2.center_title {
    font-size: 3rem;
    text-align: center;
    font-feature-settings: "palt";
    margin-bottom: 5rem;
}
.head-border {
    display: flex;
    align-items: center;
    margin-left: -100%;
    margin-right: -100%;
}

.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}

.head-border:before {
    margin-right: 1rem;
}

.head-border:after {
    margin-left: 1rem;
}
@media only screen and (max-width: 768px) {
    h2.center_title {
        font-size: 2.75rem;
        margin-bottom: 3rem;
        line-height: 130%;
    }
    .head-border {
        display: block;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .head-border:before,
    .head-border:after {
        display: none;
    }
}


/* --------------------------------------
決意　動
---------------------------------------*/
.ugoku {
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 70%;
    opacity: 0.2;
}
@media only screen and (max-width: 768px) {
    .ugoku {
        right: 0;
    }
}

/* --------------------------------------
TOP youtube
---------------------------------------*/
.youtube {
    width: 100%;
    /* max-width: 800px; */
    margin: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

/* --------------------------------------
TOP お知らせ
---------------------------------------*/
ul.news_list_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
ul.news_list_wrap  li {
    width: calc(100%/3);
    border-left: 1px solid #962B3F;
    padding: 0 1.5rem;
    box-sizing: border-box;
}
ul.news_list_wrap li:nth-of-type(3n){
    border-right: 1px solid #962B3F;
}

ul.news_list_wrap.blog li {
    margin-bottom: 5rem;
}


p.date {
    font-size: 12px;
}
.news_img {
    width: 100%;
    height: 300px;
}
.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
p.news_list_title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 100%;
    margin: 1rem 0 0.5rem;
}
p.news_list_tx {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    ul.news_list_wrap li {
        width: 100%;
        border-left: none;
        padding: 0;
        box-sizing: border-box;
        margin-bottom: 3rem;
    }
    ul.news_list_wrap li:nth-of-type(3n) {
        border-right: none;
        margin-bottom: 0;
    }
}


/* --------------------------------------
TOP スライダー
---------------------------------------*/
.top_slider_img_wrap {
    width: 100%;
    min-width: 1100px;
}

.top_slider_img_wrap img {
    vertical-align: top;
    height: 100%;
    min-height: 900px;
}


/* slick設定 */
.slider-4 .slick-slide {
    height: auto;
    overflow: hidden;
}

.slider-4 .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1100px) {
    .top_slider_img_wrap img {
        min-height: 750px;
        min-width: initial;
    }
    .top_slider_img_wrap img.pc {
        display: block !important;
    }
    .top_slider_img_wrap img.sp {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .top_slider_img_wrap {
        width: 100%;
        min-width: initial;
    }
    .top_slider_img_wrap img.pc {
        display: none !important;
    }
    .top_slider_img_wrap img.sp {
        display: block !important;
    }
}
@media screen and (max-width: 500px) {
    .top_slider_img_wrap img {
        height: 100%;
        min-height: initial;
    }
}


/* --------------------------------------
TOP 2カラム記事
---------------------------------------*/
ul.article_two li {
    width: 45%;
}
ul.article_two li.partition_bar {
    width: 100%;
    margin: 70px 0;
}
ul.article_two li h3 {
    padding: 5px 0;
    margin-bottom: 2rem;
}
ul.article_two li p {
    color: #fff;
}
ul.article_two li .list_inner {
    margin-bottom: 1rem;
}
ul.article_two li .list_inner:last-child {
    margin-bottom: 0;
}
ul.list_inner_pic {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.list_inner_pic li {
    width: calc(50% - 0.25rem);
    height: 180px;
    margin-bottom: 0.5rem;
}
ul.list_inner_pic li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    ul.article_two li {
        width: 100%;
    }
    ul.list_inner_pic li {
        width: calc(50% - 0.25rem);
        height: auto;
        background-color: #999;
        margin-bottom: 0.5rem;
    }
}

/* --------------------------------------
TOP 1カラム記事
---------------------------------------*/
ul.article_one li {
    width: 100%;
    margin-bottom: 3rem;
}
ul.article_one li:last-child {
    margin-bottom: 0;
}
ul.article_one li h3 {
    padding: 5px 1rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
    padding-left: 2em;
    text-indent: -1.5em;
    text-align: center;
}
ul.article_one li h3 span{
    font-size: 1.5rem;
}
ul.article_one li p {
    color: #fff;
    margin-bottom: 1rem;
}
.katto_img {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 400px;
}
@media screen and (max-width: 768px) {
    ul.article_one li h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    ul.article_one li h3 span {
        font-size: 1.2rem;
    }
    .katto_img_space {
        height: 420px;
        width: 100%;
    }
    .katto_img {
        position: absolute;
        bottom: -50px;
        right: 0;
        left: 0;
        margin:auto;
        width: auto;
        height: 450px;
    }
}

/* --------------------------------------
TOP 若者が活躍できる土壌整備を！
---------------------------------------*/
h3.wakamono_title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 230%;
    margin-bottom: 3rem;
}
h3.wakamono_title span {
    font-size: 2.5rem;
    color: #FFEE00;
}
.two_column.wakamono_pic_wrap {
    width: 100%;
    justify-content: center;
}
.wakamono_pic {
    width: 350px;
    height: 210px;
    margin-right: 1rem;
}
.wakamono_pic:last-child {
    margin-right: 0;
}
.wakamono_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile_wrap {
    color: #fff;
}
.prof_img {
    width: 33%;
    height: auto;
    background-color: #555;
}
.prof_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof_tx {
    width: 60%;
}
.prof_tx h4 {
    font-size: 1.5rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}
table.prof_list tbody tr {
    margin-bottom: 20px;
}
table.prof_list tbody tr th {
    text-align-last: justify;
    display: inline-block;
    width: 150px;
    margin-right: 1rem;
}
table.prof_list tbody tr th,
table.prof_list tbody tr td {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
}
@media screen and (max-width: 768px) {
    h3.wakamono_title {
        line-height: 200%;
    }
    h3.wakamono_title span {
        font-size: 2.5rem;
        color: #FFEE00;
        line-height: 150%;
    }
    .two_column.wakamono_pic_wrap {
        display: flex;
        justify-content: space-between;
    }
    .wakamono_pic {
        width: 49%;
        height: auto;
        background-color: #505050;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .prof_img {
        width: 100%;
        max-width: 350px;
        height: auto;
        background-color: #555;
        margin: auto;
        margin-bottom: 3rem;
    }
    .prof_tx {
        width: 100%;
    }
    table.prof_list tbody tr th,
    table.prof_list tbody tr td {
        display: block;
    }
    table.prof_list tbody tr td {
        margin-bottom: 1rem;
    }
    
}
/* --------------------------------------
footer
---------------------------------------*/
footer {
    height: auto;
    width: 100%;
    overflow: hidden;
}
.foot_content {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.foot_content_left {
    width: 300px;
}
h1.foot_main_logo {
    margin-bottom: 2rem;
}
.foot_tel_wrap {
    width: auto;
    margin-bottom: 1rem;
}
.foot_tel_wrap img {
    margin-bottom: 1rem;
}
.foot_tel_wrap p {
    line-height: 150%;
    color: #fff;
}
.foot_cnt_wrap {
    width: 100%;
    text-align: center;
}

a.foot_cnt_btn {
    display: block;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    background-color: #FFEE00;
    color: #962B3F;
    border-radius: 30px;
    transition: 0.5s;
}
a.foot_cnt_btn:hover {
    background-color: #fff;
    transition: 0.5s;
    color: #962B3F;
}
.foot_sns_wrap {
    width: auto;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 5px;
    right: -200px;
}
.foot_sns_wrap a {
    width: 40px;
    margin-right: 10px;
}
.foot_sns_wrap a:last-child {
    margin-right: 0;
}
.foot_map_right {
    width: 500px;
    height: auto;
}
.foot_map_right img {
    width: 100%;
    height: 352px;
    object-fit: contain;
    object-position: right;
}
.foot_map_right a {
    display: block;
    width: 100%;
    height: 100%;
}
.credit {
    background-color: #962B3F;
    font-size: 12px;
    padding: 0.5rem 0;
    color: #fff;
    text-align: center;
}


@media screen and (max-width: 768px) {
    footer {
        height: auto;
        width: 100%;
        min-width: initial;
        overflow: hidden;
    }
    .foot_content_left {
        width: 100%;
    }
    .foot_map_right {
        width: 100%;
        margin: 3rem auto;
    }
    .foot_map_right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .foot_sns_wrap  {
        display: none;
    }
}



/* --------------------------------------
モバイルボタン
---------------------------------------*/
.foot_sp_btn {
    display: none;
}
@media screen and (max-width: 768px) {
    .foot_sp_btn {
        display: flex;
        width: 100%;
        position: fixed;
        bottom: 0;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
        z-index: 100;
    }
    /*　上に上がる動き　*/
    .foot_sp_btn.UpMove {
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /*　下に下がる動き　*/
    .foot_sp_btn.DownMove {
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }
    .foot_sp_btn_tel,
    .foot_sp_btn_contact {
        width: 50%;
        text-align: center;
    }
    .foot_sp_btn_tel a,
    .foot_sp_btn_contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem 0;
        font-size: 1.25rem;
        font-weight: 600;
    }
    .foot_sp_btn_tel a {
        background-color: #fff;
        color: #780c20;
    }
    .foot_sp_btn_contact a {
        background-color: #FFEE00;
        color: #780c20;
    }
    .foot_sp_btn_tel a:hover,
    .foot_sp_btn_contact a:hover {
        background-color: #de5c1b;
        color: #fff;
    }
    .foot_sp_btn_tel a i,
    .foot_sp_btn_contact a i {
        font-size: 1.5rem;
        margin-right: 5px;
    }
}


/* --------------------------------------
下層ページ 
---------------------------------------*/
.page_head_wrap {
    width: 100%;
    height: 200px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_head_wrap h2 {
    color: #962B3F;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 5px;
}


/* --------------------------------------
下層 NEWS
---------------------------------------*/
.news_article_text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 170%;
}
.news_page_wrap p,
.news_page_wrap img {
    margin-bottom: 1rem;
}

/* .news_page_wrap p:last-child,
.news_page_wrap img:last-child {
    margin-bottom: 0;
} */

.news_article_title {
    margin-bottom: 2rem;
}

p.news_article_date {
    margin-bottom: 0.5rem;
}



/* --------------------------------------
ページネーション
---------------------------------------*/
.wp-pagenavi {
    margin: auto;
    display: flex;
    justify-content: center;
}

span.pages {
    padding: 10px 13px;
    background-color: #fff;
    margin: 0 5px;
    border: #962B3F 1px solid;
    color: #962B3F;
    font-weight: 600;
}

span.current {
    padding: 10px 13px;
    background-color: #962B3F;
    margin: 0 1px;
    border: #962B3F 1px solid;
    color: #fff;
    font-weight: 600;
}

a.page,
a.nextpostslink,
a.previouspostslink,
a.last {
    padding: 10px 13px;
    background-color: #fff;
    margin: 0 1px;
    border: #962B3F 1px solid;
    color: #962B3F;
    font-weight: 600;
    display: inline-block;
}

a.page:hover,
a.nextpostslink:hover,
a.previouspostslink:hover,
a.last:hover {
    padding: 10px 13px;
    background-color: #962B3F;
    margin: 0 1px;
    border: #962B3F 1px solid;
    color: #fff;
    font-weight: 600;
    display: inline-block;
}

span.extend {
    padding: 10px 13px;
    color: #962B3F;
    font-weight: 600;
}


/* --------------------------------------
投稿の移動
---------------------------------------*/
.post_links {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.post_link {
    display: inline;
    padding: 0;
    display: inline-block;
    width: 20%;
    height: 30px;
    text-align: center;
    position: relative;
}

.post_link a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #962B3F;
    border: #962B3F 1px solid;
    border-radius: 20px;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post_link a span {
    display: table-cell;
    vertical-align: middle;
}

.post_link a:hover,
.post_link a.active {
    color: #000;
    background: #fff;
    border: #962B3F 1px solid;
}

.post_menu {
    color: #505050;
    line-height: 30px;
}

@media only screen and (max-width: 768px) {
    .post_link {
        display: inline-block;
        width: 30%;
        text-align: center;
        margin-bottom: 100px;
    }
}

/* --------------------------------------
お問い合わせ
---------------------------------------*/
.cform_wrap {
    width: 800px;
    margin: auto;
}

.contact_title {
    font-size: 1.5rem;
    font-weight: 600;
}

.cform tr {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.cform th {
    font-size: 16px;
    height: 40px;
    width: 30%;
    /*変なところで改行される場合はここの数字を変更します。*/
    font-weight: 500;
    text-align: left;
    line-height: 40px;
}

/* th必須項目 */
span.req_item::before {
    content: "必須";
    display: inline;
    font-size: 0.8rem;
    padding: 3px;
    background-color: #e78054;
    color: #fff;
    margin-left: 0.5rem;
}


.cform td {
    width: 70%;
    font-size: 16px;
    line-height: 40px;
}

.cform td p {
    font-size: 12px;
    line-height: 40px;
}

.cform {
    width: 100%;
    margin: 50px auto;
}

.cform [type=submit] {
    display: inline-block;
    font-size: 20px !important;
    padding: 10px 30px;
    text-decoration: none;
    background: #ff8f00;
    color: #FFF;
    border-bottom: solid 4px #B17C00;
    border-radius: 3px;
}

.cform option,
.cform input[type=text],
.cform input[type=email] {
    width: calc(100% - 20px);
    height: 40px;
    border: none;
    background-color: #F5F5F5;
    /* border: #999 1px solid; */
    padding: 0 10px;
    font-size: 16px;
}

input.post_tel {
    width: 100px !important;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}

input.zip {
    width: 200px !important;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}

.cform textarea {
    width: calc(100% - 20px);
    border: none;
    background-color: #F5F5F5;
    /* border: #999 1px solid; */
    font-size: 16px;
    padding: 10px;
}

.post_select {
    width: 100%;
    padding: 1px 2px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    border: none;
    background-color: #fff;
    border: #999 1px solid;
}

.post_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1697571/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    color: #505050;
}

.required-srt {
    font-size: 12pt;
    padding: 5px;
    background: #ce0000;
    color: #fff;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}


.submit-btn input,
.send-btn {
    font-size: 16px;
    font-weight: 500;
    background: #962B3F;
    width: 300px;
    height: 40px;
    line-height: 40px;
    margin: 30px auto;
    display: block;
    border: 1px #962B3F solid;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
}

.submit-btn input:hover,
.send-btn:hover {
    background: #fff;
    color: #505050;
}

.submit-btn-bk input {
    font-size: 16px;
    font-weight: 500;
    background: #555;
    width: 300px;
    height: 40px;
    margin: 30px auto;
    display: block;
    border: 1px #555 solid;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
}

.submit-btn-bk input:hover {
    background: #fff;
    color: #4d3623;
}

.mw_wp_form_input .confirm {
    display: none;
}

.mw_wp_form_confirm .input_show {
    display: none;
}

@media only screen and (max-width:767px) {
    .cform_wrap {
        width: 100%;
    }

    .cform tr {
        display: block;
        justify-content: space-between;
        margin: 30px 0;
    }

    .cform th {
        line-height: 2rem;
    }

    .cform th,
    .cform td {
        width: 100%;
        height: auto;
        display: block;
        border-top: none;
        text-align: left;
    }

    .cform th.sp_hidden {
        display: none;
    }

    input.post_tel {
        width: 20% !important;
    }

    .submit-btn input,
    .send-btn {
        width: 100%;
    }

    .submit-btn-bk input {
        width: 100%;
    }
}


/* チェックボタン位置調整 */
input.question {
    vertical-align: initial !important;
}


/* ラジオボタン調整 */
.mwform-radio-field input {
    height: auto;
    vertical-align: initial !important;
}

/* ラジオボタン横並び調整 */
.mw_wp_form .vertical-item {
    display: initial !important;
}

/* ラジオボタン横並び調整 */
span.mwform-checkbox-field-text {
    vertical-align: middle;
}

/* プレースホルダー色 */
::placeholder {
    color: #B3B3B3;
}

/* ホームに戻るボタン位置調整 */
.send-top-btn {
    margin-top: 100px;
}

.contact_mes {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    background-color: #fcffcb;
    border-radius: 10px;
}

@media only screen and (max-width:520px) {
    .contact_mes {
        padding: 1rem;
    }
}

a.link_prv {
    color: #505050;
    text-decoration: underline;
}


/* 送信確認 */
td.policy_mes {
    width: 100%;
    line-height: 150%;
    font-size: 1rem;
}

td.policy_mes a {
    color: #2760BE;
    text-decoration: underline;
}

p.riyokiyaku_ok {
    font-size: 1rem;
}

/* 入力欄横並び設定 */
td.form_flex {
    display: flex;
    flex-wrap: wrap;
}

/* 入力欄横並び設定 ラジオボタン位置調整 */
.mw_wp_form .vertical-item+.vertical-item {
    margin-top: 0 !important;
}

@media only screen and (max-width:520px) {
    td.form_flex {
        display: block;
        flex-wrap: wrap;
    }
}


/* 入力欄横幅調整 */
.width180 {
    width: 180px !important;
    margin-right: 1rem;
}

@media only screen and (max-width:520px) {
    .width180 {
        width: 100% !important;
        margin-right: 0;
    }
}

/* --------------------------------------
プライバシーポリシー
---------------------------------------*/
ul.privacy_list_wrap {
    width: 100%;
}
ul.privacy_list_wrap li {
    width: 100%;
    margin-bottom: 3rem;
}
ul.privacy_list_wrap li:last-child {
    margin-bottom: 0;
}
ul.privacy_list_wrap li span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}