@charset "UTF-8";


body {
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;

}

a {
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

a:visited {
    color: inherit;
}

a:hover {
    cursor: pointer;
    opacity: 0.8;
}

figure {
    margin: 0;
    padding: 0;
}


.notosans {
    font-family: 'Noto Sans JP', sans-serif;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

.YuGothic {
    /*    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic";*/
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;

}

.italic {
    font-style: italic !important;
}

.mb100px {
    margin-bottom: 100px !important;
}

.mb370px {
    margin-bottom: 370px !important;
}

.fontsize13px {
    font-size: 13px !important;
}








input[type="submit"] {
    -webkit-appearance: none;
}


/* トップへ戻るボタン */
#topBtn {
    /*-----必須-----*/
    position: fixed;
    bottom: 10px;
    right: 10px;
    right: 10vw;

    width: 80px;
    height: 80px;
    background-color: inherit;
    background-image: url(../images/btn_totop@3x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

}





@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

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

.anim-fadeleft {
    animation-name: fadeleft;
    animation-duration: 2s;
    /*    animation-iteration-count: infinite;*/
    animation-iteration-count: 1;
}


@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

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


.anim-faderight {
    animation-name: faderight;
    animation-duration: 2s;
    /*    animation-iteration-count: infinite;*/
    animation-iteration-count: 1;
}


.anim-faderight2 {
    animation-name: faderight;
    animation-duration: 3s;
    /*    animation-iteration-count: infinite;*/
    animation-iteration-count: 1;
}








.container {
    width: 1000px;
    margin: 0 auto;
}


.flex {
    display: flex;
}

.txtC {
    text-align: center;
}

.txtL {
    text-align: left;
}

.txtR {
    text-align: right;
}




/* ヘッダ */
header {
    /*    z-index: 100;*/
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
}

header .logo {
    font-size: 23px;
    font-weight: bold;
    width: 350px;
    color: #595757;
    background-image: url(../images/wasun_logo@3x.png);
    background-repeat: no-repeat;
    background-position: left center;
    margin: 0;
    padding: 68px 0 68px 70px;
}

header .logo a {
    display: block;
    text-decoration: none;
    color: inherit;
}



header .drawer {
    display: none;
}

header #drawer-sub-check {
    display: none;
}

header #open-subnav {
    display: none;
}


#open-subnav:after {
    content: "";
    position: absolute;
    right: 40px;
    /*    top: 25px;*/
    top: 192px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    /*
    border-top: solid 2px #0082DC;
    border-right: solid 2px #0082DC;
*/
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


#open-subnav.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /*    top: 45%;*/
}










/* グローバルナビ */
.gnav {
    margin: 0 auto;
    margin: 0;
    padding: 68px 0 0 0;
    width: 480px;
    /*    display: block!important;*/
}


.gnav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;

}

.gnav ul li {
    list-style: none;
    font-weight: bold;
    text-align: center;

    position: relative;
    display: inline-block;
    text-decoration: none;

    padding: 0 0 42px;
    /*    height: 102px;*/
}

.gnav ul li a {
    display: block;
    height: 60px;
}

/*
.gnav ul li.havsub01 a {
    display: inline;
    height: 60px;
}
*/

.gnav ul li a:after {
    position: absolute;
    bottom: 34px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #0064B4;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.gnav ul li a:hover:after {
    transform: scale(1, 1);
}


.gnav ul li.havsub01 {
    transition: all .5s;
    position: static;
}


.gnav .menu .submenu {
    /*    display: block;*/
    display: flex;
    /*    display: none;*/
    position: absolute;
    background-color: #32A064;
    /*    width: 100vw;*/
    width: 100%;
    /*    left: -50vw;*/
    left: 0px;
    /*
    width: 105vw;
    left: -55vw;
*/
    /*    top: 102px;*/
    top: 170px;
    padding: 45px 0;


    transition: opacity .6s, visibility 0s ease-in 0.6s;
    opacity: 0;
    visibility: hidden;

}

.gnav .menu .submenu.open {
    display: flex;

    transition-delay: 0s;
    opacity: 1;
    visibility: visible;

}










.gnav .menu .submenu .container {
    display: flex;
    justify-content: space-between;
    width: 860px;
    margin: 0 auto;

}



.gnav .menu .submenu li {
    display: block;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
}

.gnav .menu .submenu li a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    height: auto;
}


.gnav .menu .submenu li a:after {
    display: none;
}

.gnav .menu .submenu li a:hover {
    color: #FFFF00;
    opacity: 1;
}

.gnav .menu .submenu li:before {
    content: "";
    display: none;
}







.gnav ul li a {
    color: #0064B4;
    text-decoration: none;
}

.gnav ul li a:hover {
    color: #0064B4;
}

.gnav ul li a span {
    display: block;
    color: #3E3A39;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 10px 0 16px 0;
}




.container-small .hnav {
    display: none;
}






/* メインビジュアル */
.mainvisual {
    width: 100%;
    height: 500px;
    /*    background-image: url(../images/mainvisual_68668257.jpg);*/
    background-image: url(../images/pixta_68668257_L.jpg);
    background-repeat: no-repeat;
    background-position: top -120px center;
    background-size: cover;
    padding: 1px 0 0;
}

.mainvisual .message_box {
    line-height: 2.0;
    /*    width: 350px;*/
    float: right;
    margin: 170px 110px 0;
}

.mainvisual p {
    font-size: 25px;
    color: #fff;
    background-color: #0082DC;
    padding: 0 20px;
    margin: 0 0 10px 0;
}


.mainvisual p.anim-faderight {
    width: 230px;
}


.mainvisual p.anim-faderight2 {
    width: 280px;
}


/*
.mainvisual span {
    font-size: 25px;
    color: #fff;
    background-color: #0082DC;
    padding : 8px 20px;
    margin: 0;
    width: 265px;
}

*/

/* メッセージ */
.message {
    color: #0082DC;
    text-align: center;
    padding: 140px 0;
}

.message h2 {
    font-size: 30px;
    margin: 0 0 52px 0;
}

.message p {
    font-size: 20px;
    line-height: 2;
}




/* バスク工法 */
.bask {
    margin: 0 0 218px;
}

.bask .eyecatch {
    background-color: #E60012;
    color: #fff;
    font-size: 14px;
    width: 140px;
    padding: 5px 0;
    text-align: center;
    border-radius: 10px;
}

.bask h2 {
    color: #0082DC;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 15px 0 5px;
}

.bask .sub {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    margin-bottom: 45px;
}

.bask .flex {
    justify-content: space-between;
}

.bask .left {
    width: 48%;
}

.bask .right {
    width: 48%;
}

.bask .left h3 {
    margin: 0 0 30px;
    font-size: 25px;
    line-height: 1.7;
}

.bask .left p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 2.26;
}

.bask button {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    border: 0px;
    background-color: inherit;

    margin: 112px auto 0;
}

.bask button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0;
    text-decoration: none;
    color: #fff;

    background-color: #0082DC;
    border-radius: 8px;
    text-align: center;
}

.bask button a:hover {
    cursor: pointer;
    opacity: 0.6;
}

.bask button a:visited {
    color: #fff;
}






/* METHODS */
.methods {
    margin: 0 0 218px;
}

.methods h2 {
    color: #0082DC;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 15px 0 5px;
}

.methods .sub {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 45px;
    font-weight: bold;
}

.methods .flex {
    justify-content: space-between;
    margin: 0 0 90px;
}

.methods .flex .block {}

.methods .flex .block a img {
    width: 235px;
}



.methods .flex .block a {
    color: #000;
    text-decoration: none;
    display: block;
}

.methods .flex .block a:hover {
    opacity: 0.8;
}

.methods .flex .block a:visited {
    color: inherit;
}

.methods .flex .block h3 {
    font-size: 15px;
    border-left: 5px solid #0064B4;
    padding: 10px;
    margin: 0;

}


.methods button {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    border: 0px;
    background-color: inherit;


    margin: 112px auto 0;
}

.methods button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0;
    text-decoration: none;
    color: #fff;
    background-color: #0082DC;
    border-radius: 8px;
    text-align: center;
}

.methods button a:hover {
    cursor: pointer;
    opacity: 0.6;
}

.methods button a:visited {
    color: #fff;
}




/* バナー　エリア */
.banners {
    margin: 0 0 132px;
}

.banners .flex {
    justify-content: space-between;
    margin: 0 0 90px;
}

.banners .flex .block {
    background-color: #0082DC;
    color: #fff;
    width: 48%;
    text-align: center;
}

.banners .flex .block a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    padding: 60px 0;
}



.banners .flex .block a:hover {
    cursor: pointer;
    opacity: 0.6;
}

.banners .flex .block a:visited {
    color: #fff;
}

.banners .flex .block a h2 {
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 0 0 3px;
}

.banners .flex .block a p {
    font-size: 20px;
    margin: 0;
}

.banners .bn_full a {
    display: block;
}

.banners .bn_full a:hover {
    opacity: 0.8;
}





/* contact */
.contact {
    margin: 0 0 170px;
}


.contact .title {
    background-image: url(../images/bg_contact_title@3x.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 320px;
    text-align: center;
    padding: 60px 0 0;
    margin: 0 0 90px;

}

.contact .title h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 15px 0 5px;
}

.contact .title .sub {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    margin-bottom: 45px;
    font-weight: bold;
}

.contact .title .tel {
    font-size: 40px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: bold;
}

.contact .title .tel a {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
}


.contact .container {
    padding: 0 100px;
    margin: 0 auto 160px;
}

.contact .pp {
    margin: 160px 0 0;
}

.contact .pp h2 {
    color: #0082DC;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin: 15px 0 5px;
}

.contact .pp .sub {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 45px;
    font-weight: bold;
}







.contact .container label {
    display: block;
    font-size: 18px;
    margin: 0 0 22px;
}

.contact .container label span {
    display: inline-block;
    font-size: 14px;
    background-color: #036EB8;
    color: #fff;
    padding: 2px 10px;
    margin-left: 1em;
}

.contact .container label input {
    background-color: #EFEFEF;
    border: 1px solid #727171;
    width: calc(100% - 22px);
    margin: 5px 0 0;
    padding: 10px;
    font-size: 36px;
}

.contact .container label textarea {
    background-color: #EFEFEF;
    border: 1px solid #727171;
    width: calc(100% - 22px);
    height: 250px;
    margin: 5px 0 0;
    padding: 10px;
    font-size: 36px;
}


.contact .container .pp_text {
    border: 1px solid #000;
    height: 300px;
    padding: 20px;
    font-size: 14px;
    line-height: 2;
    overflow-y: scroll;
    margin: 30px 0;
}

.contact .container label.accepted input {
    background-color: #EFEFEF;
    border: 1px solid #727171;
    width: inherit;
    margin: 5px 0 0;
    padding: 10px;
    font-size: 36px;
}

.contact .container label.accepted {
    text-align: center;
}

.contact .container .btn_submit input {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #0082DC;
    border-radius: 8px;
    border: 0px;
    text-align: center;
    padding: 18px 0;
    margin: 40px auto;

    transition: all 0.8s;
}

.contact .container .btn_submit input:hover {
    cursor: pointer;
    opacity: 0.6;
}



/*

.methods button {
    margin: 112px auto 0;
}
*/







/* フッタ */
footer {
    background-color: #EFEFEF;
    width: 100%;
    display: block;
    text-align: center;
    padding: 70px 0;
}

footer .logo h3 {
    font-size: 23px;
    margin: 15px 0 30px;
}

footer .footer_contact {
    margin: 0 0 50px;
}

footer .footer_contact p {
    font-size: 15px;
    margin: 0 0 15px;
}

footer .footer_contact p span {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: 20px;
    margin: 0 0 15px;
}

footer .footer_contact p span a {
    color: #000;
    text-decoration: none;
}




footer .footer_contact p.map {
    font-size: 15px;
    margin: 0 0 15px;
}

footer .footer_contact p.map a,
footer .footer_contact p.map a:visited {
    text-decoration: none;
    color: #0082DC;
}

footer .container nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 52px;
    padding: 0;
    width: 500px;
}

footer .container nav ul li {
    list-style-type: none;
    text-align: center;
}

footer .container nav ul li:last-child a {
    border-right: none;
}

footer .container nav ul li a {
    text-decoration: none;
    display: block;
    border-right: 1px solid #000;
    padding: 5px 30px;
    color: #0082DC;
}

footer .container nav ul li a:visited {
    color: #0082DC;
}


footer button {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #0082DC;
    border-radius: 8px;
    border: 0px;
    text-align: center;
    margin: 0 auto 18px;
}

footer button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0;
    text-decoration: none;
    color: #fff;
}

footer button a:hover {
    cursor: pointer;
    opacity: 0.6;
}

footer button a:visited {
    color: #fff;
}


footer p.pp {
    margin: 0 0 24px;
    font-size: 13px;
}

footer p.pp a,
footer p.pp a:visited {
    text-decoration: none;
    color: #0082DC;
}

footer .copyright {
    font-size: 12px;
}





.effect-fade {
    opacity: 0;
    transform: translate(0, 45px);
    transition: all 2000ms;
}

.effect-fade.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}




/* 電話リンク SPのみ */
/*
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
*/






.forPC {
    display: block;
}

.forSP {
    display: none !important;
}






/****************************************
下層ページ　共通
****************************************/
.page_title {
    background-color: #0082DC;
    color: #fff;
    text-align: center;
    font-size: 40px;
    margin: 0;
    padding: 60px 0;
}

.page_title h1 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.page_title span {
    display: block;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    margin: 15px 0 0;
}

.contents {
    padding: 100px 0;
}

.contents:after {
    content: "";
    display: block;
    clear: both;
}


.sidemenu {
    float: left;
    position: sticky;
    top: 5px;
    width: 300px;
    margin: 0 60px 0 0;
}

.sidemenu h2 {
    font-size: 16px;
    color: #0082DC;
    margin: 0 0 10px 0;
    padding: 15px 0 15px 20px;
    border-top: 1px solid #0082DC;
    border-bottom: 1px solid #0082DC;
}

.sidemenu ul {
    margin: 0;
    padding: 0;
}

.sidemenu ul li {
    list-style-type: none;
    display: block;
    margin: 0;

}

.sidemenu ul li a {
    display: block;
    margin: 0;
    padding: 20px;
    color: inherit;
    text-decoration: none;
}

.sidemenu ul li a:hover {
    color: #fff;
    background-color: #74BBEC;
}






#method .maincontents {
    float: right;
    display: block;
    width: 640px;
}



#method .maincontents h2 {
    color: #0082DC;
    margin: 0 0 32px;
    padding: 15px 0;
    font-size: 28px;
    border-top: 1px solid #0082DC;
    border-bottom: 1px solid #0082DC;
}

/*
method .maincontents h2:before {
    content: "■";
    margin: 0 15px 0 0;
}
*/

#method .maincontents p {
    font-size: 15px;
    line-height: 2.5;
    margin: 0 0 30px 0;
}

#method .maincontents h3 {
    color: #0082DC;
    margin: 0 0 20px;
    padding: 0;
    font-size: 17px;
}

#method .maincontents table {
    border-collapse: collapse;
    margin: 0 0 35px 0;
}

#method .maincontents table th,
#method .maincontents table td {
    border: 1px solid #000;
    padding: 10px;
    font-size: 13px;
    line-height: 1.7;
}

#method .maincontents table th {
    font-weight: bold;
}







/********************
METHOD工法紹介　ページ
********************/

#method {}




#method .maincontents .flex {
    justify-content: space-between;
}

#method .maincontents .flex .worksbox {
    width: 300px;
}

#method .maincontents .flex .worksbox h3 {
    margin: 0 0 23px 0;
}

#method .maincontents .flex .worksbox img {
    margin: 0 0 15px 0;
    width: 100%;
}

#method .maincontents .flex .worksbox figcaption {
    font-size: 15px;
    line-height: 1.5;
}

#method .maincontents ul.lst_feature li {
    line-height: 2.4;
}


#open-sidenav {
    display: none;
}

#open-sidenav:after {
    content: "";
    position: absolute;
    right: 40px;
    top: 23px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #0082DC;
    border-right: solid 2px #0082DC;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


#open-sidenav.open:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    /*    top: 45%;*/
}






#method button.bask {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    border: 0px;
    background-color: inherit;
    margin: 112px auto 100px;
}

button.bask a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0;
    text-decoration: none;
    color: #fff;
    background-color: #0082DC;
    border-radius: 8px;
    text-align: center;
}







/********************
COMPANY会社について　ページ
********************/

#company {}


#company h2 {
    color: #0082DC;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}

#company h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #0082DC;
    border-radius: 2px;
}



#company #tbl_company {
    border-collapse: collapse;
    width: 840px;
    margin: 80px auto 200px;
    border-bottom: 1px solid #000;
}


#company #tbl_company th,
#company #tbl_company td {
    border-top: 1px solid #000;
    padding: 10px;
    font-size: 15px;
    line-height: 1.7;
}


#company #tbl_company th {
    color: #0082DC;
    text-align: left;
    vertical-align: top;
}


#company #tbl_history {
    border-collapse: collapse;
    width: 840px;
    margin: 80px auto 200px;
    border-bottom: 1px solid #000;
}


#company #tbl_history th,
#company #tbl_history td {
    border-top: 1px solid #000;
    padding: 10px;
    font-size: 15px;
    line-height: 1.7;
}


#company #tbl_history th {
    font-weight: normal;
    text-align: left;
    width: 10em;
}



#company #tbl_company td button,
#company #tbl_history td button {
    border: 1px solid #0082DC;
    color: #0082DC;
    border-radius: 10px;
    background-color: #fff;
    margin-left: 2em;
}

#company #tbl_company td button:hover,
#company #tbl_history td button:hover {
    cursor: pointer;
}






#company .access {
    margin: 0 0 220px 0;
}


#company .map {
    margin: 50px 0 40px;
}







/********************
RECRUIT採用情報　ページ
********************/

#recruit {}


#recruit h2 {
    color: #0082DC;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}

#recruit h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #0082DC;
    border-radius: 2px;
}

#recruit #tbl_recruit {
    border-collapse: collapse;
    width: 840px;
    margin: 80px auto 100px;
    border-bottom: 1px solid #000;
}


#recruit #tbl_recruit th,
#recruit #tbl_recruit td {
    border-top: 1px solid #000;
    padding: 10px;
    font-size: 15px;
    line-height: 1.7;
}

#recruit #tbl_recruit th {
    color: #0082DC;
    text-align: left;
    vertical-align: top;
    width: 15em;
}







#recruit button {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    border: 0px;
    background-color: inherit;

    margin: 112px auto 0;
}

#recruit button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0;
    text-decoration: none;
    color: #fff;

    background-color: #0082DC;
    border-radius: 8px;
    text-align: center;
}

#recruit button a:hover {
    cursor: pointer;
    opacity: 0.6;
}

#recruit button a:visited {
    color: #fff;
}


#recruit .tel {
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    color: #0082DC;
}

#recruit .tel a {
    color: #0082DC;
    text-decoration: none;
}

#recruit .tel a:visited {
    color: #0082DC;
}





/*
.maincontents .flex {
    justify-content: space-between;
}

*/


















/****************************************
メディアクエリ
****************************************/
@media screen and (max-width : 768px) {


    .container {
        width: calc(100vw - 60px);
    }


    /* ヘッダ */
    header {
        display: block;
    }

    header .drawer {
        display: block;
    }

    header #drawer-sub-check {
        display: none;
    }

    header #open-subnav {
        display: inline-block;
    }




    header.container {
        width: 100%;
    }

    header .logo {
        width: 240px;
        margin: 0 auto;
        font-size: 16px;
        text-align: center;
        padding: 40px 0;
        padding-left: 20px;
        background-position: left center;
        background-size: 40px auto;

    }


    /*
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}
*/



    /* グローバルナビ */
    .gnav {
        /*        display: none;*/
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: none;
    }

    .gnav ul {
        display: block;
        width: 100%;
    }

    .gnav ul li {
        display: block;
        /*        width: 100%;*/
        background-color: #32A064;
        padding: 40px 0 40px 100px;
        padding: 20px 0 20px 100px;
        border-top: 1px solid #fff;
        text-align: left;
    }

    .gnav ul li a {
        color: #fff;
        height: inherit;
    }

    .gnav ul li.havsub01 a {
        display: inline;
    }

    .gnav ul li a:visited {
        color: #fff;
    }

    .gnav ul li a span {
        display: none;
    }

    .gnav ul li span.icon {
        display: inline-block;
        color: #fff;
        font-size: 20px;
        margin: 0 0 0 10px;
    }

    .gnav .menu .submenu.onen {
        display: block;
    }


    .gnav .menu .submenu {
        /*        display: block;*/
        display: none;
        position: relative;
        width: 100%;
        margin: 0;
        margin: 20px 0 0 0;
        padding: 0;
        opacity: 1;
        left: inherit;
        top: inherit;
        visibility: inherit;
    }

    .gnav .menu .submenu li {
        display: block;
        border-top: 1px solid #fff;
        margin: 0;
        padding: 40px 0 40px 2em;
        padding: 20px 0 20px 2em;
        font-weight: bold;
    }

    .gnav ul li a:after {
        content: "";
        height: 0;
    }

    .gnav .menu .submenu .container {
        display: block;
        width: 100%;
    }

    .gnav .menu .havsub01 {
        margin-bottom: 0;
        /*        padding-bottom: 0;*/
    }






    /* チェックボックスは非表示に */
    .drawer-hidden {
        display: none;
    }

    /* ハンバーガーアイコンの設置スペース */
    .drawer-open {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 100;
        /* 重なり順を一番上に */
        cursor: pointer;
    }

    /* ハンバーガーメニューのアイコン */
    .drawer-open span,
    .drawer-open span:before,
    .drawer-open span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        /*      background: #333;*/
        background: #0082DC;
        transition: 0.5s;
        position: absolute;
    }

    /* 三本線のうち一番上の棒の位置調整 */
    .drawer-open span:before {
        bottom: 8px;
    }

    /* 三本線のうち一番下の棒の位置調整 */
    .drawer-open span:after {
        top: 8px;
    }

    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer-check:checked ~ .drawer-open span {
        background: rgba(255, 255, 255, 0);
    }

    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer-check:checked ~ .drawer-open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer-check:checked ~ .drawer-open span::after {
        top: 0;
        transform: rotate(-45deg);
    }








    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .container-small .hnav {
        display: block;
        margin-right: 10px;
        padding: 0;
        border: none;
        outline: none;
        background: none;
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
        color: #0082DC;
    }

    header .container-small .hnav:hover {
        opacity: 0.3;
    }













    /* メインビジュアル */
    .mainvisual {
        width: 100%;
        height: 500px;
        background-position: top center;
        margin: 0 auto 50px;
    }

    .mainvisual .message_box {
        float: none;
        margin: 170px auto 0;
    }


    /* message */
    .message {
        margin: 0 auto 100px;
        padding: 0;
        text-align: left;
    }

    .message h2 {
        font-size: 28px;
        margin: 0 0 40px;
    }

    .message p {
        font-size: 13px;
    }



    /* バスク工法 */
    .bask {
        margin: 0 0 90px 0;
    }

    .bask .eyecatch {
        margin: 0 auto;
    }

    .bask h2 {
        font-size: 30px;
        text-align: center;
    }

    .bask .sub {
        text-align: center;
        margin-bottom: 25px;
    }


    .bask .flex {
        display: block;
    }

    .bask .flex .left {
        width: 100%;
        margin-bottom: 26px;
    }

    .bask .flex .left h3 {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .bask .flex .right {
        width: 100%;
        margin-bottom: 40px;
    }

    .bask .flex .right img {
        width: 100%;
    }


    .bask button {
        margin: 0 auto;
    }






    /* 工法紹介 METHODS */
    .methods {
        margin: 0 0 60px;
    }

    .methods h2 {
        text-align: center;
        font-size: 30px;
        margin: 0 0 25px;
    }

    .methods .sub {
        text-align: center;
        font-size: 20px;
        margin: 0 0 30px;
    }

    .methods .flex {
        flex-wrap: wrap;
        margin: 0 0 60px;
    }

    .methods .flex .block {
        width: 48%;
        margin: 0 0 20px;
    }

    .methods .flex .block a img {
        width: 100%;
    }

    .methods .flex .block h3 {
        font-size: 15px;
        padding: 5px;
    }

    .methods button {
        margin: 0 auto;
    }





    /* バナーエリア */
    .banners {
        margin: 0 0 80px;
    }

    .banners .bn_full img {
        width: 100%;
    }

    .banners .flex {
        display: block;
        margin: 0 0 40px;
    }

    .banners .flex .block {
        width: 100%;
        /*        height: 140px;*/
        margin: 0 auto 28px;
    }

    .banners .flex .block a {
        margin: 0;
        padding: 30px 0;
    }

    .banners .flex .block a h2 {
        font-size: 28px;
        margin: 0 0 10px;
    }

    .banners .flex .block a p {
        font-size: 14px;
    }




    /* contact */
    .contact {
        margin: 0 0 180px;
    }

    .contact .title {
        margin: 0 0 40px;
        padding: 40px 0 0;
        height: 210px;
    }

    .contact .title h2 {
        font-size: 30px;
        margin: 0 0 20px;
    }

    .contact .title .sub {
        font-size: 14px;
        margin: 0 0 40px;
    }

    .contact .title .tel {
        font-size: 34px;
        margin: 0;
    }

    .contact .container {
        width: inherit;
        margin: 0;
        padding: 0;
    }


    .contact .container label {
        font-size: 14px;
        width: 90%;
        margin: 0 auto 20px;
    }

    .contact .container label input {
        font-size: 20px;
    }

    .contact .container label textarea {
        font-size: 20px;
        height: 150px;
    }

    .contact .pp {
        margin: 120px 0 0;
    }

    .contact .pp h2 {
        text-align: center;
        font-size: 28px;
    }

    .contact .pp .sub {
        text-align: center;
        font-size: 16px;
        margin: 0 0 60px;
    }

    .contact .container .pp_text {
        width: calc(100% - 60px);
        margin: 0 auto 0;
    }

    .contact .container label.accepted {
        text-align: center;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact .container label.accepted input {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }


    .contact .container .btn_submit input {
        width: calc(100% - 60px);
        margin: 0 auto;
    }






    /* フッタ */
    footer {}

    footer .footer_contact p span a {
        color: #000;
        text-decoration: none;
    }

    footer .container nav ul {
        width: 100%;
        font-size: 12px;
    }

    footer .container nav ul li {
        margin: 0;
    }

    footer .container nav ul li a {
        color: #231815;
        text-decoration: none;
        padding: 0 17px 0 0;
    }

    footer .container nav ul li a:visited {
        color: #231815;
    }










    .forPC {
        display: none !important;
    }

    .forSP {
        display: block !important;
    }




    /* トップへ戻るボタン */
    #topBtn {
        /*-----必須-----*/
        position: fixed;
        bottom: 50px;
        /*        top:calc(50% - 50px/2);*/
        right: calc(50% - 50px/2);
        margin: 0 auto;
        width: 48px;
        height: 48px;

    }





    /* 下層ページ 共通 */

    .page_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .page_title span {
        margin: 10px 0 0 0;
        font-size: 13px;
    }

    .contents {
        margin: 0 auto;
    }



    .fontsize13px {
        font-size: 10px !important;
    }

    .mb100px {
        margin-bottom: 65px !important;
    }

    .mb370px {
        margin-bottom: 120px !important;
    }


    /********************
    METHOD工法紹介　ページ
    ********************/

    .contents.container {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .sidemenu {
        width: 100%;
        float: none;
        position: relative;
        top: auto;
        margin: 0 0 50px 0;
    }

    #method .maincontents {
        float: none;
        width: calc(100vw - 60px);
        margin: 0 auto;
    }

    #method .maincontents h2 {
        font-size: 20px;
    }

    #method .maincontents figure.flex img {
        width: 48%;
        height: auto;
        height: 48%;
    }

    #method maincontents p {
        font-size: 13px;
        margin: 0 0 20px 0;
    }

    #method .maincontents figure img {
        width: 100%;
    }

    #method .maincontents .flex .worksbox {
        width: 48%;
    }



    #open-sidenav {
        display: inline-block;
    }







    /********************
    COMPANY会社について　ページ
    ********************/

    #company .contents.container {
        margin: 50px 0 0;
        padding: 0 5vw;
        /*        width: 100%;*/
        width: inherit;
    }

    #company {}


    #company #tbl_company {
        width: 100%;
    }



    #company #tbl_history {
        width: 100%;
    }

    #company #tbl_history th {
        width: 4em;
    }






    /********************
    RECRUIT採用情報　ページ
    ********************/

    #recruit .contents.container {
        margin: 50px 0 0;
        padding: 0 5vw;
        /*        width: 100%;*/
        width: inherit;
    }

    #recruit {}


    #recruit #tbl_recruit {
        width: 100%;
    }


    #recruit #tbl_recruit th {
        width: 4em;
    }



}
