@charset "utf-8";



/* ------------------------------------------------------- sub共通 */
#sub main{
    padding-top: 80px;
}

.subTitWrapper{
    height: 160px;
    background: url(../images/pages/sub_tit_bg.png);
}

.subTitWrapper .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.subTitWrapper .subTit{
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.breadcrumbs{
    font-size: 1.3rem;
    line-height: 1.5;
    padding-top: 1em;
    background-color: #fff;
}

.breadcrumbs .inner > span{
    display: inline-block;
}

.breadcrumbs span a{
    transition: all .1s;
}

.breadcrumbs span a:hover{
    color: #238AA6;
}

.mainWrapper{
    padding-top: 100px;
}

.mainWrapper section{
    margin-bottom: 100px;
}

.mainWrapper section:last-child{
    margin-bottom: 120px;
}

.mainWrapper section .bandH{
    font-size: 2.4rem;
    line-height: 1.5;
    padding: .5em .75em;
    background: url(../images/pages/ttl_bg.png);
    border-left: 8px solid #238AA6;
    margin-bottom: 1em;
}

.mainWrapper section .borderH{
    font-size: 2.2rem;
    line-height: 1.5;
    padding-bottom: .25em;
    border-bottom: 2px dotted #238AA6;
    margin: 2em 0 .5em;
}

.mainWrapper section .discH{
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 1.5em;
    margin: 2em 0 1em;
    position: relative;
}

.mainWrapper section .discH::before{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: #238AA6;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .195em;
}

.mainWrapper section .basicTac{
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: .75em;
    position: relative;
    margin-bottom: 1.5em;
}

.mainWrapper section .basicTac::after{
    content: '';
    width: 1.5em;
    height: 3px;
    background-color: #238AA6;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.mainWrapper section .inner > p{
    margin-bottom: 1.5em;
}

.mainWrapper section .hColor{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin: 3em 0 .5em;
}

.mainWrapper section .secImg{
    margin: 30px 0;
}

.pt{
    padding-top: 100px;
}

.pb{
    padding-bottom: 100px;
}

.w1100{
    max-width: 1100px;
}

.w1000{
    max-width: 1000px;
}

.w900{
    max-width: 900px;
}

.w800{
    max-width: 800px;
}

figure.w_auto img{
    width: auto;
    max-width: 100%;
}

.secTopTxt{
    text-align: center;
    margin-bottom: 2em;
}

.noteBx{
    padding: 30px;
    background-color: #eee;
}

.noteBx > span{
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .5em;
}

/* 以下投稿用 */

.postCat span{
    display: inline-block;
    width: 6em;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    color: #333;
    padding: .5em;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
}

.postCat span.info{
    color: #fff;
    background-color: #238AA6;
    border-color: #238AA6;
}

.postCat span.blog{
    color: #fff;
    background-color: #1BA676;
    border-color: #1BA676;
}

.postTit{
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .025em;
    margin: .25em 0 .5em;
}

.postDate{
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.postBody{
    margin-top: 50px;
}

.postBody .postThumbImg{
    text-align: center;
    margin-bottom: 40px;
}

.postBody p{
    min-height: 1em;
    margin-bottom: 1.25em;
}

.postBody h2{
    font-size: 2.6rem;
    line-height: 1.5;
    padding: .5em .75em;
    background: url(../images/pages/ttl_bg.png);
    border-left: 8px solid #238AA6;
    margin: 3em 0 1em;
}

.postBody h2:first-child{
    margin-top: 0;
}

.postBody h3{
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: .25em;
    border-bottom: 2px dotted #238AA6;
    margin: 2em 0 .5em;
}

.postBody h4{
    font-size: 2rem;
    line-height: 1.5;
    margin: 1.5em 0 .5em;
}

.postBody ul,
.postBody ol{
    margin: 30px 0;
}

.postBody ul li,
.postBody ol li{
    padding-left: 1.25em;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: .75em;
    position: relative;
}

.postBody ol li{
    counter-increment: number 1;
}

.postBody ul li::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #238AA6;
    position: absolute;
    left: .45em;
    top: .55em;
}

.postBody ol li::before{
    content: counter(number)'.';
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.postBody ul li span,
.postBody ol li span{
    display: block;
    font-weight: 700;
}

.postBody img{
    width: auto;
    max-width: 100%;
    height: auto;
}

.checkList ul li{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1em;
}

.checkList ul li::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../images/icon_check.png)no-repeat center;
    background-size: 100%;
    margin-right: 8px;
    margin-top: -3px;
}

.single .moreBtn{
    margin-top: 80px;
}

#sub .pagination{
    text-align: center;
}

#sub .pagination .page_num{
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1em;
}

#sub .pagination .pager{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    padding: .75em;
    border: 1px solid #f2f2f8;
    border-radius: 2px;
    margin: 0 .15em .5em;
}

#sub .pagination a.pager{
    transition: all .3s;
}

#sub .pagination a.pager:hover{
    background-color: #f2f2f8;
}

#sub .pagination .current{
    background-color: #f2f2f8;
}

#sub .pagination .prev,
#sub .pagination .next,
#sub .pagination .first,
#sub .pagination .last{
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    padding: .75em;
    border: 1px solid #f2f2f8;
    border-radius: 2px;
    margin: 0 .15em .5em;
    transition: all .3s;
}

#sub .pagination .prev:hover,
#sub .pagination .next:hover,
#sub .pagination .first:hover,
#sub .pagination .last:hover{
    background-color: #f2f2f8;
}



@media(max-width: 950px){
    #sub main{
        padding-top: 70px;
    }
}



/* ------------------------------------------------------- 初めての方へ */
.aboutFlowContents ul li{
    display: flex;
    align-items: center;
    padding: 30px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.aboutFlowContents ul li .headTxt{
    width: 225px;
    padding-right: 30px;
}

.aboutFlowContents ul li .headTxt > span{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
}

.aboutFlowContents ul li .bodyTxt{
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid #ccc;
}

.about .featureList ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about .featureList ul li figure{
    width: 200px;
    margin-right: 30px;
}

.about .featureList ul li .txtContents{
    flex: 1;
}

.about .featureList ul li .txtContents > span{
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin-bottom: .5em;
}

.about .reasonList ul{
    display: flex;
    justify-content: space-between;
}

.about .reasonList ul li{
    width: 32%;
    padding: 30px;
    border: 2px solid #238AA6;
    border-radius: 10px;
}

.about .reasonList ul li > span{
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin-bottom: .75em;
}

.about .meritList dl{
    display: flex;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: .75em;
}

.about .meritList dl:last-child{
    margin-bottom: 1.25em;
}

.about .meritList dl dt{
    width: 13em;
    font-weight: 700;
    color: #238AA6;
}

.about .meritList dl dd{
    flex: 1;
}



/* ------------------------------------------------------- お客様の声 */
.voiceBx{
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    border-radius: 10px;
    margin-bottom: 20px;
}

.voiceBx h2{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .5em;
}

.voiceBx .starList{
    display: flex;
    margin-bottom: 20px;
}

.voiceBx .starList span{
    font-size: 1.6rem;
    line-height: 1;
    color: #f9c956;
}

.voiceBx .voiceBody span.name{
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
    color: #238AA6;
    padding-left: 2em;
    margin-top: .5em;
    position: relative;
}

.voiceBx .voiceBody span.name::before{
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1px;
    background-color: #238AA6;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.voiceBx .comment{
    margin-top: 30px;
    padding: 15px 20px;
    background-color: #eee;
    border-radius: 5px;
}



/* ------------------------------------------------------- 印刷用資材販売のご案内 */
.materialList ul li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.materialList ul li:last-child{
    margin: 0;
}

.materialList ul li figure{
    width: 300px;
    border: 1px solid #eee;
}

.materialList ul li .txtContents{
    flex: 1;
    padding-left: 30px;
}

.materialList ul li .txtContents h3{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: .5em 0;
}






/* ------------------------------------------------------- 取り扱い商品 */
.product2Col{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product2Col .imgContents{
    width: 50%;
}

.product2Col .txtContents{
    width: 46%;
}

.product2Col .imgContents .mainImg{
    border: 1px solid #ddd;
    margin-bottom: 2%;
}

.product2Col .imgContents .imgList{
    display: flex;
}

.product2Col .imgContents .imgList li{
    width: 23.5%;
    margin-right: 2%;
    border: 1px solid #ddd;
    cursor: pointer;
}

.product2Col .imgContents .imgList li:last-child{
    margin-right: 0;
}

.product2Col .imgContents .imgList li img{
    aspect-ratio: 640 / 480;
    object-fit: cover;
}

.product2Col .txtContents h1{
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin: .25em 0 .75em;
}

.product2Col .txtContents .productTags{
    padding-bottom: 15px;
    border-bottom: 2px dotted #238AA6;
}

.product2Col .txtContents .productTags ul{
    display: flex;
    flex-wrap: wrap;
}

.product2Col .txtContents .productTags ul li{
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.5;
    /* background: url(../images/pages/ttl_bg.png); */
    margin: 0 .25em .25em 0;
}

.product2Col .txtContents .productTags ul li a{
    display: inline-block;
    padding: .25em .75em;
    border: 1px solid #ddd;
    border-radius: 50px;
}

.product2Col .txtContents .productTags ul li a:hover{
    background-color: #ddd;
}

.product2Col .txtContents .productTags ul li a::before{
    content: '#';
    color: #238AA6;
}

.product2Col .txtContents .productCatch{
    margin-top: 30px;
}

.product2Col .txtContents .productCatch h2{
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: .5em;
}

.product2Col .txtContents .productCatch h2 span{
    background: linear-gradient(transparent 65%, #F2ECA3 65%);
}

.product2Col .txtContents .productTemp{
    margin-top: 30px;
}

.product2Col .txtContents .productTemp > span{
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .5em;
}

.product2Col .txtContents .productTemp ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product2Col .txtContents .productTemp ul li{
    width: 49.5%;
    margin: 0 1% 1% 0;
}

.product2Col .txtContents .productTemp ul li a{
    display: block;
    font-size: 1.4rem;
    color: #333;
    padding: .5em 3em .5em 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    transition: all .2s;
}

.product2Col .txtContents .productTemp ul li a:hover{
    background-color: #ddd;
}

.product2Col .txtContents .productTemp ul li a::after{
    content: '';
    display: inline-block;
    width: 18px;
    height: 16px;
    background: url('../images/icon_dl.png')no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.productBody h2{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #238AA6;
    padding: .25em 0 .5em .75em;
    border-left: 1px solid #238AA6;
    border-bottom: 1px solid #238AA6;
    margin: 3em 0 .75em;
}

.productBody p{
    margin-bottom: 1em;
}

.productBody p strong{
    color: #F13F79;
    /* padding: 0 .15em; */
    /* background: linear-gradient(transparent 65%, #F2ECA3 65%); */
    margin: 0 .15em;
}

.mainWrapper section .inner .sortTit{
    text-align: center;
    margin-bottom: 2.5em;
}

.mainWrapper section .inner .sortTit span{
    font-size: 2.2rem;
}



/* ------------------------------------------------------- よくある質問 */
.faqContents dl{
    padding: 25px 0 25px 20px;
    border-bottom: 1px dotted #ccc;
}

.faqContents dl:last-child{
    border: none;
}

.faqContents dl dt{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    padding-left: 2.25em;
    margin-bottom: .75em;
    position: relative;
}

.faqContents dl dt span{
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2em;
    color: #238AA6;
    background-color: #eee;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -.05em;
}

.faqContents dl dd{
    font-size: 1.5rem;
    line-height: 1.8;
    padding-left: 2.5em;
    position: relative;
}

.faqContents dl dd span{
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2em;
    color: #fff;
    background-color: #238AA6;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}










/* ------------------------------------------------------- OEMの特徴 */
.featureContents .featureTopImg{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.featureContents h2{
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin: 1.5em 0 3em;
}

.featureContents p{
    margin: 1.5em 0;
}

.featureContents .featureList{
    margin-top: 40px;
}

.featureContents .featureList ul{
    display: flex;
    justify-content: space-between;
}

.featureContents .featureList ul li{
    width: 28%;
}

.featureContents .featureList ul li span{
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin-top: 1em;
}



/* ------------------------------------------------------- ご注文の流れ */
.flowContents{
    margin-top: 70px;
}

.flowContents > ul > li{
    padding: 0 0 70px 50px;
    border-left: 2px dotted #238AA6;
    margin-left: 25px;
    position: relative;
}

.flowContents > ul > li:last-child{
    padding-bottom: 0;
    border-left: none;
}

.flowContents > ul > li span.flowNum{
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 2.4rem;
    line-height: 50px;
    color: #fff;
    background-color: #238AA6;
    border-radius: 50%;
    position: absolute;
    left: -25px;
    top: 0;
}

.flowContents > ul > li .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flowContents > ul > li .container .txtContents{
    width: 50%;
}

.flowContents > ul > li .container figure{
    width: 46%;
}

.flowContents > ul > li .container .txtContents h4{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #238AA6;
    margin: .5em 0;
}

.flowContents > ul > li .container .txtContents p{
    margin-bottom: 1.25em;
}



/* ------------------------------------------------------- 実績紹介 */
.worksHead{
    padding-bottom: 20px;
    border-bottom: 2px dotted #238AA6;
}

.worksHead h1{
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: .5em;
}

.worksHead h1 span::before{
    content: ' | ';
}

.worksHeadList ul{
    display: flex;
    flex-wrap: wrap;
}

.worksHeadList ul li{
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.worksHeadList ul li:last-child{
    margin: 0;
}

.worksHeadList ul li span{
    width: 4em;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1;
    color: #fff;
    padding: .35em;
    background-color: #238AA6;
    margin-right: .5em;
}

.single-works .mainImg{
    margin: 40px 0;
}

.single-works .mainImg a:hover{
    opacity: .8;
}

.worksdetail{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.worksdetail > a{
    width: 35%;
}

.worksdetail > a:hover{
    opacity: .8;
}

.worksdetail .txtContents{
    width: 60%;
}

.worksdetail .txtContents h3,
.otherWorks h3{
    font-size: 2rem;
    line-height: 1.5;
    padding: .75em .75em .75em 1em;
    background: url(../images/pages/ttl_bg.png);
    border-left: 6px solid #238AA6;
    margin-bottom: .75em;
}

.single-works .otherWorksList ul{
    display: flex;
    flex-wrap: wrap;
}

.single-works .otherWorksList ul li{
    width: 22%;
    margin: 4% 4% 0 0;
}

.single-works .otherWorksList ul li:nth-child(4n){
    margin-right: 0;
}

.single-works .otherWorksList ul li a{
    display: block;
}

.single-works .otherWorksList ul li a figure{
    transition: all .2s;
}

.single-works .otherWorksList ul li a:hover figure{
    opacity: .8;
}

.single-works .otherWorksList ul li a span{
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: .5em;
    transition: all .2s;
}

.single-works .otherWorksList ul li a:hover span{
    color: #238AA6;
}

.single-works .details dl{
    display: flex;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: .75em;
}

.single-works .details dl dd{
    flex: 1;
}

.worksList ul{
    display: flex;
    flex-wrap: wrap;
}

.worksList ul li{
    width: 22%;
    margin: 4% 4% 0 0;
}

.worksList ul li:nth-child(4n){
    margin-right: 0;
}

.worksList ul li a{
    display: block;
}

.worksList ul li a figure{
    transition: all .2s;
}

.worksList ul li a:hover figure{
    opacity: .8;
}

.worksList ul li a span{
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: .5em;
    transition: all .2s;
}

.worksList ul li a:hover span{
    color: #238AA6;
}









/* ------------------------------------------------------- 運営会社 */
.companyTable table{
    width: 100%;
    margin-bottom: 40px;
}

.companyTable table tr{
    border-bottom: 1px solid #eee;
}

.companyTable table tr:last-child{
    border: none;
}

.companyTable table tr th,
.companyTable table tr td{
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 1.5em;
}

.companyTable table tr th{
    font-weight: 700;
}



/* ------------------------------------------------------- お見積もり / お問い合わせ */
form#mailformpro{
    padding: 0;
}

.formTable table{
    width: 100%;
    /* background-color: #fff; */
}

.formTable table tr th,
.formTable table tr td{
    font-size: 1.5rem;
    padding: 1.5em;
    border-bottom: 1px solid #e0e0ee;
}

.formTable table tr:last-child th,
.formTable table tr:last-child td{
    border-bottom: none;
}

.formTable table tr th{
    width: 32%;
    font-weight: 700;
    border-right: 1px dotted #e0e0ee;
}

.formTable table tr td .formBlock{
    padding-bottom: 10px;
    border-bottom: 1px dotted #e0e0ee;
    margin-bottom: 10px;
}

.formTable table tr td .formBlock:last-child{
    padding: 0;
    border: none;
    margin: 0;
}

.formTable table tr td span.tdTit{
    display: block;
}

.formTable table p{
    font-size: 100%;
}

.formTable table h5{
    font-size: 107.143%;
}

.formTable table tr td .layputRow{
    display: inline-block;
}

.formItem2div div{
    float: left;
    margin-right: 5px;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password,
.mfp_element_url{
    display: block;
    box-shadow: none;
    background-color: #f2f2f8;
    border: 1px solid #e0e0ee;
    /* width: 100%; */
    max-width: 100%;
    margin: 0;
}

.must{
    border: none;
    text-shadow: none;
    font-size: 1rem;
    margin: 0 5px 0 0;
    box-shadow: none;
    background-image: none;
}

div.mfp_err{
    font-size: 1.2rem;
    background-position: 0 .5em;
}

form#mailformpro label.mfp_not_checked{
    padding: 3px 8px;
    background-color: #f2f2f8;
    border: solid 1px #e0e0ee;
    border-radius: 3px;
}

.formNote{
    text-indent: -1em;
    padding-left: 1em;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: .5em;
}

a.inlineLink,
#form a{
    color: #0c7780;
    text-decoration: underline;
    transition: 0s;
}

a.inlineLink:hover,
#form a:hover{
    opacity: 1;
    text-decoration: none;
	color: #D4552A;
}

form#mailformpro label{
    margin: 3px 0 0;
    white-space: normal;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev{
    font-size: 1.8rem;
    line-height: 1;
    padding: 1em 2em;
    margin-top: 20px;
    transition: all .3s;
}

.mfp_element_submit{
    width: 300px;
    color: #fff;
    background: #C00;
    text-shadow: none;
    border: 1px solid #AC0000;
    border-radius: 10px;
}

.mfp_element_submit:hover,
#mfp_button_send:hover{
    background: #AC0000;
}

#mfp_button_cancel{
    min-width: 200px;
    background: #ccc;
    text-shadow: none;
    border: 1px solid #aaa;
    border-radius: 10px;
}

#mfp_button_cancel:hover{
    background-color: #aaa;
}

#mfp_overlay_inner h4{
    text-align: center;
    font-size: 160%;
    margin: 1em 0;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td{
    font-size: 140%;
    padding: 1em;
}

#mfp_button_send{
    min-width: 200px;
    color: #fff;
    background: #C00;
    text-shadow: none;
    border: 1px solid #AC0000;
    border-radius: 10px;
}

.formPrivacyBx{
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}














/* ------------------------------------------------------- tab / sp */
@media(max-width: 810px){
    .subTitWrapper{
        height: 140px;
    }

    .subTitWrapper .subTit{
        font-size: 2.6rem;
    }

    .mainWrapper section .basicTac{
        font-size: 2.2rem;
    }

    .mainWrapper section .bandH{
        font-size: 2.2rem;
    }

    .mainWrapper section .borderH{
        font-size: 2rem;
    }

    .featureContents h2{
        font-size: 2.2rem;
    }

    .product2Col{
        justify-content: center;
    }

    .product2Col .imgContents{
        width: 70%;
    }

    .product2Col .txtContents{
        width: 100%;
    }

    .product2Col .txtContents h1{
        margin-top: 1em;
    }

    .voiceBx h2{
        font-size: 2rem;
    }

    .materialList ul li .txtContents h3{
        font-size: 1.8rem;
    }









}



@media(max-width: 670px){
    .spNone{
        display: none;
    }

    .subTitWrapper{
        height: 120px;
    }

    .subTitWrapper .subTit{
        font-size: 2.2rem;
    }

    .breadcrumbs{
        font-size: 1.2rem;
    }

    .mainWrapper{
        padding-top: 50px;
    }

    .mainWrapper section{
        margin-bottom: 50px;
    }

    .mainWrapper section:last-child{
        margin-bottom: 80px;
    }

    .mainWrapper section .basicTac{
        font-size: 1.8rem;
    }

    .mainWrapper section .borderH{
        font-size: 1.8rem;
    }

    .mainWrapper section .bandH{
        font-size: 1.8rem;
        border-left-width: 5px;
    }

    .checkList ul li{
        font-size: 1.5rem;
    }

    .featureContents h2{
        font-size: 1.8rem;
        margin: 1.5em 0 2.5em;
    }

    .featureContents h2 br{
        display: none;
    }

    .featureContents .featureList ul{
        flex-wrap: wrap;
    }

    .featureContents .featureList ul li{
        width: 100%;
        margin-bottom: 30px;
    }

    .featureContents .featureList ul li:last-child{
        margin: 0;
    }

    .featureContents .featureList ul li figure{
        width: 40%;
        margin: 0 auto 10px;
    }

    .flowContents{
        margin-top: 40px;
    }

    .flowContents > ul > li{
        padding: 0 0 40px 25px;
        border-left-width: 1px;
        margin-left: 15px;
    }

    .flowContents > ul > li span.flowNum{
        width: 30px;
        height: 30px;
        font-size: 1.6rem;
        line-height: 30px;
        left: -15px;
    }

    .flowContents > ul > li .container .txtContents{
        width: 100%;
    }

    .flowContents > ul > li .container .txtContents h4{
        font-size: 1.8rem;
        margin-top: .1em;
    }

    .flowContents > ul > li .container figure{
        width: 100%;
        margin-top: 15px;
    }

    .companyTable table tr th{
        display: block;
        padding: 1em .5em .5em .5em;
    }

    .companyTable table tr td{
        display: block;
        padding: 0 .5em 1em 1.5em;
    }

    .formTable table tr th{
        display: block;
        width: 100%;
        padding: 1.5em .5em .5em;
        border: none;
    }

    .formTable table tr td{
        display: block;
        width: 100%;
        padding: 0 .5em 1.5em ;
    }

    .mfp_element_text,
    .mfp_element_number,
    .mfp_element_select-one,
    .mfp_element_email,
    .mfp_element_tel,
    .mfp_element_textarea,
    .mfp_element_date,
    .mfp_element_password{
        width: 100% !important;
    }

    .formTable table tr td .layputRow{
        margin-top: 3px;
    }

    div.mfp_buttons button{
        font-size: 1.8rem;
    }

    table#mfp_confirm_table tr th,
    table#mfp_confirm_table tr td{
        display: block;
        width: 100%;
        font-size: 1.3rem;
        padding: .5em;
    }

    table#mfp_confirm_table tr th{
        font-weight: 700;
    }

    table#mfp_confirm_table tr td{
        border-top: none;
        padding: 0 .5em .5em 1.5em;
    }

    .postTit{
        font-size: 2.8rem;
    }

    .postBody h2{
        font-size: 2rem;
    }

    .postBody h3{
        font-size: 1.8rem;
    }

    .postBody h4{
        font-size: 1.6rem;
    }

    .single .moreBtn{
        margin-top: 60px;
    }

    .worksHead{
        padding-bottom: 15px;
    }

    .worksHead h1{
        font-size: 2rem;
    }

    .worksHeadList ul li{
        margin: 0 0 5px;
    }

    .worksHeadList ul li span{
        font-size: 1.2rem;
    }

    .worksHeadList ul li p{
        font-size: 1.4rem;
    }

    .single-works .mainImg{
        margin: 20px 0;
    }

    .worksdetail > a{
        width: 100%;
        margin-bottom: 20px;
    }

    .worksdetail .txtContents{
        width: 100%;
    }

    .worksdetail .txtContents h3,
    .otherWorks h3{
        font-size: 1.8rem;
    }

    .worksList ul li,
    .single-works .otherWorksList ul li{
        width: 47.5%;
        margin: 5% 5% 0 0;
    }

    .worksList ul li:nth-child(2n),
    .single-works .otherWorksList ul li:nth-child(2n){
        margin-right: 0%;
    }

    .worksList ul li a span,
    .single-works .otherWorksList ul li a span{
        font-size: 1.5rem;
    }

    .product2Col .imgContents{
        width: 100%;
    }

    .product2Col .txtContents h1{
        font-size: 2.2rem;
    }

    .product2Col .txtContents .productTags ul li{
        font-size: 1.2rem;
    }

    .product2Col .txtContents .productTemp ul li{
        width: 100%;
        margin-right: 0;
    }

    .productBody h2{
        font-size: 2rem;
        margin-top: 2.5em;
    }

    .mainWrapper section .inner .sortTit{
        margin-bottom: 1.75em;
    }

    .mainWrapper section .inner .sortTit span{
        font-size: 1.8rem;
    }

    .about .featureList ul li{
        justify-content: center;
    }

    .about .featureList ul li figure{
        margin: 0 0 20px;
    }

    .about .featureList ul li .txtContents{
        flex: auto;
    }

    .about .featureList ul li .txtContents > span{
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 1em;
    }

    .aboutFlowContents ul li{
        flex-wrap: wrap;
        padding: 0;
        border: none;
    }

    .aboutFlowContents ul li .headTxt{
        width: 100%;
        margin: 0;
    }

    .aboutFlowContents ul li .headTxt > span{
        font-size: 1.6rem;
    }

    .aboutFlowContents ul li .bodyTxt{
        flex: auto;
        padding: .5em 0 1.25em 1.25em;
        margin-left: .5em;
    }

    .about .reasonList ul{
        flex-wrap: wrap;
    }

    .about .reasonList ul li{
        width: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }

    .about .reasonList ul li:last-child{
        margin-bottom: 0;
    }

    .about .reasonList ul li > span{
        font-size: 1.6rem;
    }

    .about .meritList dl{
        flex-wrap: wrap;
    }

    .about .meritList dl dd{
        flex: auto;
        padding-left: 1em;
    }

    .voiceBx{
        padding: 25px;
    }

    .voiceBx h2{
        font-size: 1.8rem;
    }

    .materialList ul li{
        margin-bottom: 40px;
    }

    .materialList ul li figure{
        width: 100%;
    }

    .materialList ul li .txtContents{
        padding: 0;
    }

    .materialList ul li .txtContents h3{
        margin: .75em 0 .5em;
    }

    .faqContents dl{
        padding-left: 0;
    }















}










