@charset "UTF-8";
/* ================================================================

    Component, Utility

================================================================ */

/* ================================
	body.fixed
================================ */
body.fixed{
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ================================
	color
================================ */
.bg-blue{ background-color: #0070ab; }
.bg-lightblue{ background-color: #f0f5f9; }
.bg-darkblue{ background-color: #004e88;}


/* ================================
	btn
================================ */
.btn-basic{
    display: inline-block;
    padding: .8em 2em;
    color: #333;
    border: 1px solid #333;
/*    border-radius: 3px;*/
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
    position: relative;
}
.btn-basic.without-outline{
    border-width: 0;
    padding: 0;
}
.btn-basic.is-white{
    color: #fff;
    border-color: #fff;
}

.btn-basic.sizeS{
    font-size: 12px;
    font-size: 1.2rem;
}
.btn-basic.sizeL{
    font-size: 20px;
    font-size: 2.0rem;
}

/* ================================
	icnVertical
================================ */
.icnVertical{
    display: table;
    table-layout: fixed;
}
.icnVertical > i,
.icnVertical > span {
    display: table-cell;
    vertical-align: middle;
}
.icnVertical > i{
    margin-right: .4em;
}
.icnVertical > i img{
    vertical-align: sub;
}

/* ================================
	txt vertical
================================ */
.tV{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

/* ================================
	.bg-naname
================================ */
[class*="bg-naname"]{
    overflow: hidden;
    position: relative;
    z-index: 100;
}
[class*="bg-naname"]::before{
    display: block;
    content: "";
    width: 220%;
    height: 110%;
    background: #004e88;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    position: absolute;
    bottom: -40%;
    left: 0;
    z-index: -1;
}
.bg-naname_lightblue::before{ background: #f0f5f9; }
.bg-naname_blue::before{ background: #0070ab; }

/* ================================
	card
================================ */
.card{}
.card__figure{
    margin-bottom: .5em;
    position: relative;
}
.card__txt > * + *{
    display: block;
    margin-top: .2em;
}
.card__category{
    font-size: 0;    
}
.card__title{
    font-size: 16px;
    font-size: 1.6rem;
}
.card__date{
    color: #666;
}

.card__figure.icn-play::before{
    width: 40px;
    height: 40px;
}
.card__figure.icn-play:after {
    border-width: 8px 12px;
    margin-left: 8px;
}
/* tablet-pc */
@media (min-width:768px){

    .card__figure.icn-play::before{
        width: 60px;
        height: 60px;
    }
    .card__figure.icn-play:after {
        border-width: 12px 19px;
        margin-left: 12px;
    }   
}
/* ================================
	verticalCard test
================================ */
/* tablet-pc */
@media (max-width:767px){
    .verticalCard{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .verticalCard__figure{
        width: 25%;
    }
    .verticalCard__txt{
        width: 75%;
    }
}


/* ================================
	Icon
================================ */
[class^="icn-"]{
    display: inline-block;
    padding: .6em 1em .6em;
    font-size: 10px;
    font-size: 1.0rem;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    font-style: normal;
}
.icn-corporate{ background-color: #0070ab; }
.icn-trivia{ background-color: #59bbd2;}
.icn-howto{ background-color: #89a74a;}
.icn-pr{ background-color: #c5cc0a;}
.icn-other{ background-color: #ccc;}
.icn-new{ background-color: #fa436d; font-family: "Oswald", sans-serif;}
.icn-important{ background-color: #ac0c0c;}


/* icn-play
---------------------- */
.icn-play{ padding: 0; }
.icn-play:before,
.icn-play:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 1000;
}
.icn-play:before{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
}
.icn-play:after{
    width: 0;
    height: 0;
    border: solid transparent;
    border-left-color: #333;
    border-width: 8px 12px;
    margin-left: 8px;
}
.icn-play:hover{ cursor: pointer;}
.icn-play:hover:before{
    background: rgba(255,255,255,1);
}
.icn-play:hover:after{    border-left-color: #000;}

@media ( min-width : 481px ) {
    .icn-play:before{
        width: 80px;
        height: 80px;
    }
    .icn-play:after{
        border-width: 16px 24px;
        margin-left: 16px;
    }
}

/* icn-arrw
---------------------- */
.icn-arrw{
    width: .6em;
    height: .6em;
    padding: 0;
    margin-left: .6em;
    border: solid #333;
    border-width: 1px 1px 0 0;
    vertical-align: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icn-arrw.prev{
    margin-left: auto;
    margin-right: .6em;
    border-width: 0 0 1px 1px;
}
.is-white .icn-arrw{
    border-color: #fff;
}


/* ================================
	link?
================================ */
a.link-text{
    color: #004e88;
    text-decoration: underline;
    position: relative;
}


/* ================================
	セクションタイトル
    .sectionTitle
================================ */
.sectionTitle{
    margin-bottom: 2em;
    font-size: 24px;
    font-size: 2.rem;
    line-height: 1.3;    
}
.sectionTitle > small{
    display: block;
    margin-top: 1.2em;
    padding-top: 1em;
    font-family: 'Oswald', sans-serif;
    font-size: 70%;
    line-height: 1;
    position: relative;
}
.sectionTitle > small::before{
    display: block;
    content: "";
    width: 60px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.sectionTitle.is-white > small::before{
    background: #fff;
}


/* ================================
	セクションタイトル サブ
    .sectionTitle-sub
================================ */
.sectionTitle-sub{
    margin-bottom: 2em;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.3;    
}
.sectionTitle-sub > small{
    display: block;
    margin-top: .4em;
    font-family: 'Oswald', sans-serif;
    font-size: 70%;
    font-weight: normal;
    line-height: 1;
    position: relative;
}
/* tablet-pc */
@media (min-width:768px){
    .sectionTitle-sub{
        font-size: 22px;
        font-size: 2.2rem;
    } 
}

/* ================================
    セクションタイトル ライン
    .sectionTitle-line
================================ */
.sectionTitle-line{
    margin-bottom: 1em;
    padding: 1em 1em 1.2em;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.3;
    background: #f0f5f9;
    border-left: 4px solid #0070ab;
}

/* ================================
	セクション リード
    .sectionLead
================================ */
.sectionLead{
    margin-bottom: 1em;
    font-size: 16px;
    font-size: 1.6rem;
}
.sectionLead.sizeM{
    font-size: 18px;
    font-size: 1.8rem;
}
.sectionLead.sizeL{
    font-size: 22px;
    font-size: 2.2rem;
}

/* ================================
    ページネーション
    .pagenation
================================ */
.pagenation {
    margin:5% 0 0;
    text-align:center;
}
.pagenation ul{
    font-size:13px;
    font-size:1.3rem;
    color:#333;
    text-align:center;
    vertical-align:middle;
    letter-spacing:-0.5em;
}
.pagenation li{
    display:inline-block;
    vertical-align: middle;
    letter-spacing:normal;
    width:40px;
    height: 40px;
    line-height: 40px;
}
.pagenation li.is_current{
    background:#0070ab;
    color: #fff;
}
.pagenation span{
    display: block;
    width:40px;
    height: 40px;
}
.pagenation a{
    display: block;
    color:#333;
    width:40px;
    height: 40px;
    position: relative;
}
.pagenation a:hover{
    background: #f0f5f9;
}
.pagenation .prev a,
.pagenation .next a{
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;    
}
.pagenation .prev a::after,
.pagenation .next a::after{
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border: solid #333;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 14px;
    left: 12px;
}
.pagenation .prev a::after{
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg); 
    top: 15px;
    left: 18px;  
}
.pagenation .prev a:hover::after,
.pagenation .next a:hover::after{
/*    border-color: #fff;*/
}

/* ================================
    ニュース
    .newsList__item
================================ */
.newsList__item{
    display: table;
    table-layout: fixed;
    width: 100%;
}
.newsList__item + .newsList__item{
    margin-top: 1.4em;
}
.swiper-wrapper .newsList__item + .newsList__item{
    margin-top: 0;
}
.newsList__item > *{
    display: table-cell;
    vertical-align: top;
}
.newsList__date{
    width: 6em;
}
.newsList__category{
    width: 10em;
}
.sec-newFront .newsList__category{
    display: none;
}
.newsList__category [class^="icn-"]{
    width: 10em;
    text-align: center;    
}
.newsList__title{
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
}
.newsList__title a{
    color: inherit;
    text-decoration: underline;
}
/* tablet-pc */
@media (min-width:768px){

    .newsList__txt{
        display: table;
        width: 100%;
        table-layout: fixed;
    }   
    .newsList__txt > *{
        display: table-cell;
        vertical-align: top;
    }
    .newsList__category{
        text-align: center;
    }
}

/* ================================
    テーブル
    table
================================ */
.table{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.table > *{
    padding: 1em .5em;
    border: solid #ccc;
    border-width: 0 0 1px;
}
.table > dt{
    width: 30%;
    font-weight: bold;
}
.table > dd{
    width: 70%;
}

.table.without-border > *{
    padding: .4em;
    border-width: 0;
}

/* tablet-pc */
@media (min-width:768px){
    .table > *{
        padding: 1em;
    }
    .table > dt{
        width: 25%;
    }
    .table > dd{
        width: 75%;
    }  
}



/* ================================================================
    
	Module
	
================================================================ */
/* ================================
ヘッダ
.globalHeader
================================ */
/*
.globalHeader{
    padding: 0 20px;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 1000;
}
.globalHeader >.inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 0 30px;
    max-width: 100%;
    border-radius: 3px;
    position: relative;
}
*/
.globalHeader{
    padding: 0;
    position: fixed;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 1000;
}
.globalHeader >.inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 0 10px;
    max-width: 100%;
    border-radius: 3px;
    position: relative;
}
.globalHeader{
    padding: 0 10px;
    top: 1em;
}
.globalHeader.is-open{
    padding: 0;
    top: 0;
}
.page-front .globalHeader > .inner{
    max-width: 1200px;
}

@media (max-width:767px){
    .globalHeader.is-hidden{
        -webkit-transform: translateY(-140%);
        transform: translateY(-140%);
    }
}
/* tablet-pc */
@media (min-width:768px){
/*
    .globalHeader{
        padding: 0;
        top: 0;
    }
*/
    .globalHeader{
        padding: 0 20px;
    }
    body:not(.page-front) .globalHeader{
        top: 0;
    }

    .globalHeader >.inner{
        padding: 0 30px;
    }   
}

/* logo-svg
---------------------- */
.logo-svg{
    display: block;
    width: 64%;
    line-height: 0;
}
.logo-svg img{
    vertical-align: unset;
}
/* tablet-pc */
@media (min-width:768px){
    .logo-svg{
        width: 100%;
    }
}
/* tmp */
.globalHeader__logo{
    padding: 16px 0;
}
.globalHeader__logo a{
    color: #333;
}

/* ================================
    .globalNav
================================ */
.globalNav{
    display: none;
}
.is-open .globalNav {
    display: block;
    width: 100%;
    height: 100vh;
    padding-top: 20%;
    padding-bottom: 20%;
    background: #fff;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
}
.globalNav a{
    display: block;
    text-align: center;
    font-size: 20px;
    font-size: 2.0rem;
    padding: 1em;
}
.globalNav a:hover{
    background: #f0f5f9;
}

.globalNav a.bg-darkblue{
    color: #fff;
}
.globalNav a.bg-darkblue:hover{
    background: #002846;
}

/* tablet-pc */
@media (min-width:960px){
    .globalNav{
        display: block;
    }   
    .globalNav li{
        display: inline-block;
    }
    .globalNav a{
        display: block;
        padding: 26px 1em;
        text-align: left;
        font-size: 13px;
        font-size: 1.3rem;
        color: #333;
    }
    .globalNav a:hover::after{
    }

}

/* ================================
    .trgMenu
================================ */
.trg-menu{
    width: 50px;
}
.trg-menu_btn{
    display: block;
    width: 46px;
    height: 40px;
    text-align: center;
    line-height: 88px;
    color: #000;
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: 2%;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.trg-menu_btn::before,
.trg-menu_btn::after{
    display: block;
    content: "";
    width: 36px;
    height: 11px;
    border: solid #000;
    border-width: 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -18px;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.trg-menu_btn::after{
    margin-top: -10px;
}
.trg-menu_btn:hover{
    text-decoration: none;
    background: rgba(0, 113, 168, .2);
}
.trg-menu_btn:focus{
    text-decoration: none;    
}

/* open */
.is-open .trg-menu_btn{
    margin-top: 1%;
    background: #f0f5f9;
    text-indent: 200%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.is-open .trg-menu_btn::before,
.is-open .trg-menu_btn::after{
    height: 0;
    border-width: 1px 0;
    margin-top: -2px;
}
.is-open .trg-menu_btn::before{;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.is-open .trg-menu_btn::after{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.is-open .trg-menu_btn:hover{
    background: #f0f5f9;
}

@media (min-width:960px){
    .trg-menu_btn{
        display: none;
    }   
}

/* ================================
    フッタ
    .globalFooter
================================ */

/* ================================
    .sec-address
================================ */
.sec-address{
    margin-bottom: 1em;
    font-style: normal;
}
.sec-address dt{
    margin-bottom: .5em;
}
/* tablet-pc */
@media (min-width:768px){
    .sec-address{
        margin-bottom: 0;
    }
}

/* ================================
    .sec-sitemap
================================ */
.sitemapList a{
    color: #333;
}
.sitemapList .col{
    margin-bottom: 2%;
}
.sitemapList{
    font-size: 13px;
    font-size: 1.3rem;
}

/* ================================
    .copyright
================================ */
.copyright{
    padding: 1em;
    color: #fff;
    line-height: 1;
}



/* ================================

フッター　配管ジャーナルへのリンク
.sec-pickupBnr

================================ */
.sec-pickupBnr{
    background: url("../images/footer/bg-photo_soko.jpg") center top;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
    
}
.sec-pickupBnr::before{
    display: block;
    content: "";
    background: inherit;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
}
.sec-pickupBnr::after{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,47,82,.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.sec-pickupBnr > .inner{
    padding: 40px 20px;    
}
.pickupBnr__txt{ color: #fff; }
.pickupBnr__txt .sectionTitle{
    margin-bottom: 1.4em;
    font-size: 20px;
    font-size: 2.0rem;
}
.pickupBnr__txt p{ margin-bottom: 1em; }


/* ================================

フッター お問い合わせ
.sec-contact
================================ */
.sec-footContact{
    background-color: #15447a;
    color: #fff;
}
.footContact-inner{
    padding: 40px 20px;
}
.footContact-links{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.footContact-item{
    width: 100%;
}
.footContact-itemText{
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}
.footContact-btn{
    padding: 18px 15px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 30px;
    width: 100%;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}
.footContact-btn_fill{
    background-color: #fff;
    color: #15447a;
}
@media (min-width:768px){
    .footContact-inner{
        max-width: 920px;
        margin: 0 auto;
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .footContact-links{
        justify-content: center;
    }
    .footContact-item{
        width: auto;
        text-align: center;
    }
    .footContact-itemText{
        font-size: 1.8rem;
    }
    .footContact-btn{
        padding: 12px 10px;
        max-width: 312px;
        font-size: 2rem;
        border-width: 4px;
        margin: 0 auto;
    }

}

/* ================================

フッター 関連ジャーナル
.sec-journal
================================ */
.journal-inner{
    padding: 40px 20px 0;
}
.journal-container{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.journal-content{
    flex: 1;
}
.journal-title{
    font-size: 1.1rem;
}
.journal-text{
    display: none;
}
.journal-img{
    width: 100%;
    display: block;
}
.journal-img img{
    aspect-ratio: 528/272;
    object-fit: cover;
}
.journal-lead{
    color: #0070ab;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}
.journal-btn{
    width: 100%;
    text-align: center;
    max-width: 360px;
}
.journal-btn-wrap{
    margin-top: 20px;
    text-align: center;
}
@media (min-width:768px){
    .journal-inner{
        padding-top: 100px;
        max-width: 1202px;
        margin: 0 auto;
    }
    .journal-container{
        gap: 40px;
        flex-direction: initial;
    }
    .journal-title{
        font-size: 2.2rem;
        font-weight: bold;
    }
    .journal-text{
        display: block;
        font-size: 1.6rem;
        margin-top: 24px;
    }
    .journal-img{
        max-width: 530px;
        width: 50%;
    }
    .journal-lead{
        font-size: 2rem;
    }
    .journal-btn-wrap{
        margin-top: 32px;
    }
}
/* ================================

パンくず

================================ */

.breadcrumb{
    position:relative;
    margin-bottom: 3em;
}
.breadcrumb ul{
    font-size:13px;
    font-size:1.3rem;
    padding-top:3px;
    letter-spacing:-0.5em;
}
.breadcrumb li{
    display:inline-block;
    letter-spacing:normal;
    vertical-align:middle;
}
.breadcrumb a{
    display: inline-block;
    color:#333;
    text-decoration: underline;
    position: relative;
}
.breadcrumb a:hover{
    opacity: .7;
}
.breadcrumb li + li{
    position: relative;
}
.breadcrumb li + li::before{
    display: inline-block;
    content:"/";
    padding-right: .8em;
    margin-left: .8em;
    vertical-align: 1px;
}

/* ================================

    main

================================ */
@media (min-width:768px){
    body:not(.page-front) main{ padding-bottom: 5em; }
}



/* ================================================================
    
	フロントページ
	
================================================================ */
/* ================================
	メインビジュアル
    .mainVisual
================================ */
.mainVisual{
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background: #000;
    position: relative;
    overflow: hidden;
}
/* tablet-pc */
@media (min-width:768px){
    .mainVisual{
        height: 80vh;
        min-height: 680px;
    }
}

/* ================================
    .sec-heroImage
================================ */
.sec-heroImage{
    width: 100%;
    height: 100%;
}

/* .heroImage__move
---------------------- */
.heroImage__move{
    width: 100%;
    height: 100%;
    opacity: .7;
    position: relative;    
}
.heroImage__move video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
/* .heroImage__txt
---------------------- */
.heroImage__txt{
    width: 100%;
    padding: 0 10%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.heroImage__txt span{
    display: block;
    max-width: 400px;
    margin-bottom: .5em;
}
.heroImage__txt b{
    display: block;
    font-size: 140px;
    font-size: 14.0rem; 
}
.heroImage__txt p{
    margin-top: 1em;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}
.heroImage__txtContent:not(:first-child){
    display: none;
}
/* tablet-pc */
@media (min-width:768px){
    .heroImage__txt{
        padding: 0;
        color: #fff;
        left: 10%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .heroImage__txt span{
        max-width: 100%;
    }
    .heroImage__txt p{
        font-size: 20px;
        font-size: 2.0rem;
    }
}

/* ================================
    .sec-newFront
================================ */
.sec-newFront{
    width: 100%;
    padding: 1em 0;
    background: rgba(0,0,0,.5);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;    
    align-items: center;
}
.swiper-container{
    max-height: 22px;    
    overflow: hidden;
}
.newFront__title{
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: .08em;
}

.newFront__title::before{
    display: block;
    content: "";
    width: 100%;
    height: 800%;
    background: #0070ab;
    position: absolute;
    top: -320%;
    z-index: -1;
}
.newFront__content{
    padding: 0 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.newFront__btn{
    text-align: center;
}
/* tablet-pc */
@media (min-width:768px){
    .newFront__btn{
        text-align: right;
    } 
}

/* ================================
    .sec-journalFront
================================ */
.journalFront__btn{
    margin: 2em 0;
}

/* ================================
.sec-visionFront
================================ */
.sec-visionFront{
    background: url("../images/page-front/photo-vison.jpg") no-repeat right top;
    background-size: 180%;
}
.sec-visionFront > .inner{
    position: relative;
    padding: 30vh 0 0;
}
.visionFront__title{
    padding: 1em;
    background: #fff;
    font-size: 26px;
    font-size: 2.6rem;
    white-space: nowrap;
    position: absolute;
    top: -30px;
    right: 10%;
    z-index: 200;
/*    border: 1px solid #333;*/
    -webkit-box-shadow: 8px 8px 0 rgba(0,0,0,.2);
    box-shadow: 8px 8px 0 rgba(0,0,0,.2);
}
.visionFront__txt{
    display: inline-block;
    width: 100%;
    padding: 30px;
    white-space: nowrap;
    font-size: 20px;
    font-size: 2.0rem;
    color: #fff;
    vertical-align: bottom;
}

.visionFront__txt p{
    margin-bottom: 1em;
    line-height: 1.7;
    font-weight: bold;
}

/* tablet-pc */
@media (min-width:768px){
    .sec-visionFront{
        background-size: cover;
    }
    .sec-visionFront > .inner{
        padding: 5%;
    }
    .visionFront__txt{
        width: auto;
        font-size: 26px;
        font-size: 2.6rem;
    }
}

/* ================================
.sec-businessFront
================================ */
.sec-businessFront{
}
.businnesList > .col{
    margin-bottom: 0;
}
.businnesList__title{
    display: block;
    position: relative;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}
.businnesList__title > span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 36%;
    height: 60%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.2;
    background: rgba(255,255,255,.8);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: .4s;
    transition: .4s;
}
.businnesList__title:hover > span{
    -webkit-transform: translate(-10px,-10px);
    transform: translate(-10px,-10px);
}

/* sp */
@media (min-width:481px){
    .businnesList__title > span{
        width: 200px;
        height: 200px;
    }
}
/* tablet-pc */
@media (min-width:768px){
    .businnesList__title{
        font-size: 26px;
        font-size: 2.6rem;
    }
}

/* ================================
.sec-recruitFront
================================ */
.sec-recruitFront{
    background: url("../images/page-front/photo-recruit.jpg") no-repeat center center;
    background-size: cover;
}
.sec-recruitFront > .inner{
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5%;
}
.recruitFront__txt{
    padding: 5%;
    color: #fff;
    background: rgba(0,0,0,.8);
    position: relative;
    -webkit-transition: .4s;
    transition: .4s;
}
.recruitFront__txt p{
    margin-bottom: 1em;
}
.recruitFront__txt a{
    position: static;
}
.recruitFront__txt a::after{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.recruitFront__txt:hover{
    background: rgba(0,0,0,.4);
}

/* tablet-pc */
@media (min-width:768px){
    .sec-recruitFront > .inner{
        text-align: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .recruitFront__txt{
        background: #000;
    }
}

/* ================================
.sec-mapFront
================================ */
.sec-mapFront{
}
.sec-mapFront > .inner{
    padding: 0;
}
.mapFront__main{
    height: 30vh;
    min-height: 320px;
    background: #efefef;
}
.mapFront__nav{
    margin: 0 -2px;
    overflow: hidden;
}
.mapFront__nav a{
    display: block;
    padding: 2em;
    color: #333;
    border: solid #f0f5f9;
    border-width: 0 2px;
}
.mapFront__nav a > div{
    margin: 0 auto;
}

/* tablet-pc */
@media (min-width:768px){
    .mapFront__main{
        height: 400px;
    }
}



/* ================================================================
    
	下層ページ共通
	
================================================================ */

/* ================================
    下層ページタイトル
    .pagesTitle
================================ */
.pagesHeader{
    margin-top: 19%;
}
.pagesHeader > .inner{
    padding: 1.4em 20px 1.7em;
    max-width: 100%;
}
.pagesTitle{
    font-size: 20px;
    font-size: 2.0rem;
    color: #fff;
}
.pagesTitle > small{
    display: block;
    font-size: 60%;    
    font-family:'Oswald', sans-serif;
}
/* sp */
@media (min-width:481px){
    .pagesHeader{
        margin-top: 86px;
    }
}
/* tablet-pc */
@media (min-width:768px){
    .pagesHeader{
        margin-top: 72px;
        padding: 0 20px;
    }

    .pagesHeader > .inner{
        padding: 2.4em 30px 3.2em;
    }
    .pagesTitle{
        font-size: 30px;
        font-size: 3.0rem;
    }
}
/* ================================
    下層ページビジュアル
    .pagesVisual
================================ */
.pagesVisual{
    width: 100%;
    margin-bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}
.pagesVisual img{
    width: 100%;
    vertical-align: top;
}

/* tablet-pc */
@media (min-width:768px){
/*
    .pagesVisual{
        margin-bottom: -100px;
        min-height: 100px;
    }
*/
}

/* ================================
    メインコンテンツ
    .sec-pagesContent
================================ */
.sec-pagesContent{
    position: relative;
    z-index: 500;
}
.sec-pagesContent > .inner{
    background: #fff;
    padding: 20px 20px;
    position: relative;
    z-index: 0;
}
.pagesContent__body > section + section{
    margin-top: 8em;
}

/* tablet-pc */
@media (min-width:768px){
    .sec-pagesContent{
        margin-top: 3%;
    }
    .pagesVisual + .sec-pagesContent{
        margin-top: -100px;
    }

    .sec-pagesContent > .inner{
        padding: 30px 50px 50px;
    }
    .sec-pagesContent > .inner::before{
        display: block;
        content: "";
        width: 1600%;
        height: 100%;
        max-width: 1320px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1;
    }
}



/* ================================================================
    
    下層：三興バルブ継手の役割
	
================================================================ */

/* ================================
    .vision
================================ */
.vision__txt{
    margin-bottom: 3em;
}
.vision__txt h3{
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 1em;
}
.vision__txt h3 > span{
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    font-size: 4.0rem;
    font-style: italic;
}
/* tablet-pc */
@media (min-width:768px){
    .vision__txt h3{
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 2em;
    }
    .vision__txt h3 > span{
        margin: 0 auto .5em;
        font-size: 40px;
        font-size: 4.0rem;
    }
}


/* ================================================================
    
    下層：事業紹介
	
================================================================ */

/* ================================
    .businessIndex
================================ */
.businessIndex{
    position: relative;
}
.businessIndex__figure > img{
    vertical-align: middle;
}
.businessIndex__txt{
    padding: 2em 0 2.6em;
}
.businessIndex__txt h3{
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 1em;
}
.businessIndex__txt h3 > span{
    display: block;
    font-family: "Oswald", san-serif;
    font-size: 50%;
}
.bg-blue .businessIndex__txt{
    color: #fff;
}

.businessIndex__txt a{
    position: static;
    width: 60%;
}
.businessIndex__txt a::before{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}
/* tablet-pc */
@media (min-width:768px){
    .businessIndex__txt h3{
        font-size: 26px;
        font-size: 2.6rem;
        margin-bottom: 1em;
    }
}


/* ================================================================
    
    下層：企業情報
	
================================================================ */

/* ================================
.sec-message
================================ */
.message__title{
    margin-bottom: 2em;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.6;
}
.message__txt > p{
    line-height: 1.7;
    text-align: justify;
}
.message__txt > p + p{
    margin-top: 1em;
}
.message__signature{
    margin-top: 2em;
}
.message__signature > small{
    display: block;
    line-height: 1.4;
    margin-bottom: .5em;
}

/* ================================
.sec-outline
================================ */
.sec-outline .companyList > li{
    display: inline-block;
    padding-right: 1em;
}
.sec-outline .companyList > li:last-child::after{
    display: inherit;
    content: "（順不同）";
}
.sec-outline .officeList > dt:nth-of-type(1),
.sec-outline .officeList > dd:nth-of-type(1){
    padding-top: 0;
}
@media (max-width:767px){
    .sec-outline .officeList.table{
        display: block;
    }
    .sec-outline .officeList dt{
        padding-bottom: 0;
    }
    .sec-outline .officeList dd{
        padding-top: 0;
    }
    .sec-outline .officeList dt,
    .sec-outline .officeList dd{
        width: 100%;
    }
}

/* ================================
	.sec-history
================================ */
.sec-history .table dt{
/*    width: 26%;*/
    text-align: center;
}
.sec-history .table dd{
/*    width: 74%;*/
}
/* tablet-pc */
@media (min-width:768px){
    .sec-history .table dt{
        text-align: left;
    }   
}

/* ================================
.sec-map
================================ */
.sec-map .map-canvas{
    width: 100%;
    height: 360px;
    background: #efefef;
}
.sec-map .officeMapList{
    -ms-flex-line-pack: start;
    align-content: flex-start;
    text-align: center;
}
.sec-map .officeMapList a{
    display: block;
    padding: 1.4em 1em;
    background: #f0f5f9;
}
.sec-map .officeMapList a:hover,
.sec-map .officeMapList a.is-active{
    background: #0070ab;
    color: #fff;
}

/* ================================================================
    
	下層：個人情報保護方針
	
================================================================ */
/* ================================
    .privacyPolicyList	
================================ */
.privacyPolicyList dt{
    margin-top: 2em;
    margin-bottom: 1em;
    padding-bottom: .6em;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    border-bottom: 1px solid #333;
}
.privacyPolicyList ul{
    margin-top: 1em;
    list-style-type: disc;
}
.privacyPolicyList ul > li{
    margin-left: 2em;
}
.privacyPolicyList address{
    margin-top: 1em;
    font-style: normal;
}


/* ================================

    下層：配管ジャーナル index
    .sec-journalContent

================================ */
.wrap-journalContent__item{
    margin-left: -6px;
    margin-right: -6px;
    position: relative;
}
.journalContent__item.col{
    margin-bottom: 2%;
    border: 6px solid transparent;
}
/*
.journalContent__item a::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
}
*/

/* ================================
	
    下層：事業内容

================================ */
/* ================================
    .sec-businessSummary
================================ */
.businessSummary__figure .col{
/*    margin-bottom: 2%;*/
}
.businessSummary__figure figcaption{
    margin: .6em 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: justify;
}


/* ================================
    .sec-businessFlow
================================ */
.businessFlowList__item{ width: 100%; }
.businessFlowList__item .verticalCard__figure{ width: 12%; }
.businessFlowList__item .verticalCard__txt{ width: 88%; padding-left: 1em; }

.businessFlowList__item dt{
    margin: 0 0 .4em;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}
.businessFlowList__item dt span{
    display: inline-block;
    font-size: 22px;
    font-size: 2.2rem;
    font-style: italic;
}
.businessFlowList__item dd > a{
    display: block;
    margin-top: 1em;
    color: #0070ab;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: underline;
}
.businessFlowList__item dd > a > i.icn-arrw{
    border-color: #0070ab;
    vertical-align: 1px;
}
/* tablet-pc */
@media (min-width:768px){
    .wrap-businessFlowList{
        width: 100%;
        margin: 0 auto;
    }
    .businessFlowList > .businessFlowList__item{
        position: relative;
    }
    .businessFlowList > .businessFlowList__item:not(:last-child)::after{
        display: block;
        content: "";
        width: 30px;
        height: 30px;
        border: solid #999;
        border-width: 1px 1px 0 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 16%;
        right: -16%;
    }
    .businessFlowList__item .verticalCard__figure{
        width: auto;
    }
    .businessFlowList__item .verticalCard__txt{
        width: 100%;
        padding-left: 0;
    }
    .businessFlowList__item dt{
        margin: .4em 0 .8em;
        font-size: 16px;
        font-size: 1.6rem;
        text-align: center;
    }
    .businessFlowList__item dd > a{
        display: block;
        margin-top: 2em;
        color: #0070ab;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1;
        text-decoration: underline;
    }
    .businessFlowList__item dd > a > i.icn-arrw{
        border-color: #0070ab;
        vertical-align: 1px;
    }
}
/* pc */
@media (min-width:922px){
    .wrap-businessFlowList{ width: 86%; }
    .wrap-businessFlowList.clm4{ width: 70%; }
}

/* ================================
    .sec-businessOthers
================================ */
.sec-businessOthers .grid{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.sec-businessOthers .grid > .card{
    border: 10px solid #fff;
}
.sec-businessOthers .grid > .card:not(.is-current):hover{
    cursor: pointer;
}
.sec-businessOthers .grid > .card.is-current{
    display: none;
    border-color: #f0f5f9;
    background-color: #f0f5f9;
}
.sec-businessOthers .card__title{
    font-size: 14px;
    font-size: 1.4rem;
}


/* ================================
    .sec-businessPhotoGallaery
================================ */
.businessPhotoGallaeryList{}
.businessPhotoGallaeryList__item{
    border: 10px solid #fff;
    cursor: pointer;
}
.businessPhotoGallaeryList__item > span{
    display: block;
    padding-top: 100%;
    position: relative;
}
.businessPhotoGallaeryList__item > span::after{
    display: block;
    content: "+";
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
    font-size: 20px;
    color: #fff;
    background: rgba(255,255,255,.3);
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.businessPhotoGallaeryList__item:hover > span::after{
    background: rgba(255,255,255,.8);
    color: #000;
}
.businessPhotoGallaeryList__item img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


/* ================================
    .sec-businessKengaku
================================ */
.businessKengaku{
    margin: 0 auto;
}
.businessKengaku__txt{
    padding: 3em;
    color: #fff;
}
.businessKengaku__txt h3{
    font-size: 2.2rem;
    margin-bottom: 1em;
    padding: 1em;
    line-height: 1;
    border: 1px solid #fff;
}
.businessKengaku__txt p{
    text-align: left;
}


/* ================================================================
    
	single
	
================================================================ */

/* ================================
    
    下層ページ：記事コンテンツ

================================ */
.articleContent{
}

/* articleContent__header
---------------------- */
.articleContent__header{
    margin-bottom: 2em;
    border-bottom: 1px solid #ccc;
}
.articleContent__title{
    margin: .2em 0 .3em;
    font-size: 22px;
    font-size: 2.2rem;
}
.articleContent__time{
    display: block;
    margin: 0 0 1.4em;
    font-size: 14px;
    font-size: 1.4rem;
}

/* articleContent__mainVisual
---------------------- */
.articleContent__mainVisual{
    margin-bottom: 2em;
}
.articleContent__mainVisual .youtube img{
    width: 100%;
    max-width: 800px;
}


/* .articleContent__nav
---------------------- */
.articleContent__nav{
    margin: 4em 0 1em;
}
.btn-articlePrev a,
.btn-articleNext a{
    display: block;
    padding: 1.4em;
    border: 2px solid #fff;
    background: #f0f5f9;
}
.btn-articlePrev a:hover,
.btn-articleNext a:hover{
    background-color: #0070ab;
    color: #fff;
}
.btn-articlePrev a:hover .icn-arrw,
.btn-articleNext a:hover .icn-arrw{
    border-color: #fff;
}

/* articleContent__relation
---------------------- */
.articleContent__relation{
    margin-top: 5em;
}


/* ================================
    .articleContent__body
================================ */
.articleContent__body{
/*    max-width: 800px;*/
    margin: 0 auto;
}
.articleContent__txt > * + *{
    margin-top: 2em;
}

/* h
---------------------- */
.articleContent__txt h4{
    margin: 2em 0 1em;
    padding: .4em 1em .5em;
    border-left: 8px solid #0070ab;
    font-size: 18px;
    font-size: 1.8rem;
}

/* txt
---------------------- */
.articleContent__txt{
    line-height: 1.7
}

/* strong
---------------------- */
.articleContent__txt strong{
    color: #fa436d;
}


/* list
---------------------- */
.articleContent__txt ol{
    padding-left: 1.4em;
    list-style-type:decimal;
}
.articleContent__txt ol > li{
    margin-bottom: .5em;
}

/* table
---------------------- */
.articleContent__txt table{
    width: 100%;
    max-width: 800px;
    margin: 2em auto 1em;
}
.articleContent__txt table caption{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1em;
}
.articleContent__txt table th{
    background: #0070ab;
    color: #fff;
    padding: .7em;
    white-space: nowrap;
}
.articleContent__txt table td{
    background: #f7f7f7;
    padding: .7em;
}

/* ================================
single WP関連調整
================================ */

/* link
---------------------- */
.articleContent__txt a{
    text-decoration: underline;
}

/* img
---------------------- */
.articleContent__txt img.alignright{
    float: right;
    margin: 0 0 1em 1em;
}
.articleContent__txt img.alignleft{
    float: left;
    margin: 0 1em 1em 0;
}
.articleContent__txt img.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/* ================================================================
    
	ライブラリ
	
================================================================ */

/* ================================
	ef-hover
================================ */
.ef-hover{
    position: relative;
    top: 0;
    left: 0;
    -webkit-transition: .4s;
    transition: .4s;    
}
.ef-hover:hover{
    background: #fff;
/*    transform: translate3d(-2%,-2%,0);*/
    top: -10px;
    left: -10px;
    -webkit-box-shadow: 10px 10px 40px rgba(0,0,0,.3);
    box-shadow: 10px 10px 40px rgba(0,0,0,.3);
    z-index: 100;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* ================================
    ef-swipeIn
================================ */
.ef-swipeIn{
    display: inline-block;
    position: relative;   
    overflow: hidden;
}
.ef-swipeIn::before,
.ef-swipeIn::after{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.465, 0.385, 0.750, 0.270);
    animation-timing-function: cubic-bezier(0.465, 0.385, 0.750, 0.270);
}
.ef-swipeIn::before{
    background: #f0f5f9;
    -webkit-animation-name: swipeIn-secondary;
    animation-name: swipeIn-secondary;
    z-index: 100; 
}
.ef-swipeIn::after{
    background: #004e88;
    -webkit-animation-name: swipeIn;
    animation-name: swipeIn;
    z-index: 110;
}
_:-ms-lang(x), .ef-swipeIn::after {
    display: none;
}
@-webkit-keyframes swipeIn{
    0%{ -webkit-transform: translate(-100%,0); transform: translate(-100%,0); }
    50%{ -webkit-transform: translate(0,0); transform: translate(0,0); }
    100%{ -webkit-transform: translate(100%,0); transform: translate(100%,0); }
}
@keyframes swipeIn{
    0%{ -webkit-transform: translate(-100%,0); transform: translate(-100%,0); }
    50%{ -webkit-transform: translate(0,0); transform: translate(0,0); }
    100%{ -webkit-transform: translate(100%,0); transform: translate(100%,0); }
}
@-webkit-keyframes swipeIn-secondary{
    0%{ -webkit-transform: translate(0,0); transform: translate(0,0); }
    100%{ -webkit-transform: translate(100%,0); transform: translate(100%,0); }
}
@keyframes swipeIn-secondary{
    0%{ -webkit-transform: translate(0,0); transform: translate(0,0); }
    100%{ -webkit-transform: translate(100%,0); transform: translate(100%,0); }
}

/* ================================
    ef-swipeIn
================================ */



/* ================================================================

youtube

================================================================ */
/*	overlay
---------------------- */
.overlay{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
}
.modal-contents{
    width: 90%;
    max-width: 1000px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.wrap-iframe{
    position:relative;
    width:100%;
    padding-top: 56.25%;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.wrap-iframe iframe{
    width:100% !important;
    height:100% !important;
    position:absolute;
    top:0;
    left:0;
}

a.youtube{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
/*
a.btn-close{
    display: inline-block;
    margin: 0 auto 0;
    padding: .4em 1.3em .4em;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    font: 1.2rem;
    line-height: 1;
    text-align: center;
    position: absolute;
    bottom: 3%;
    left: 50%;
    -webkit-transform: translate(-50%,10%);
    transform: translate(-50%,10%);
}
*/


a.btn-close{
    color: #fff;
}
.btn-close{
    display: block;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    position: fixed;
    top: 7em;
    right: 2em;
    -webkit-transition: .4s;
    transition: .4s;
}
.btn-close > span{
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /*
    top: 9em;
    right: 9em;
    */
}
.btn-close i{
    display: block;
    width: 2em;
    height: 1em;
    margin: 0 auto;
    background: url("https://icongr.am/material/close.svg?size=24&color=ffffff") no-repeat center center;
    background-size: 50%;
}
/* tablet-pc */
@media (min-width:768px){
    .btn-close{
    }
    .btn-close > span{
        font-size: 14px;
        font-size: 1.4rem;
    }
    .btn-close i{
    }
}


/* ================================================================
    
	form
	
================================================================ */
.form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.form dt{
    width: 100%;
    margin-bottom: .5em;
}
.form dt > i{
    margin-left: 1em;
}
.form dd{
    width: 100%;
    margin-bottom: 1.6em;
}
.sec-submit{margin-top: 2em;}
.sec-submit > p{
    margin-bottom: 2em;
}

/* tablet-pc */
@media (min-width:768px){
    .form dt{
        width: 25%;
        margin-bottom: 1em;
    }
    .form dd{
        width: 75%;
        margin-bottom: 1em;
    }
}

/* input
---------------------- */
input[type="text"],
input[type="email"],
textarea{
    max-width: 100%;
    padding: .5em .8em;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f0f5f9;
    outline: none;
    -webkit-transition: .2s;
    transition: .2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus{
    background: #ffffe8;
}
input[type="submit"]{
    padding: 1em 3em;
    background: #004e88;
    color: #fff;
}
input[type="radio"]{
    position: absolute;
    opacity: 0;
}
input[type="radio"] + span{
    position: relative;
}
input[type="radio"] + span::before{
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 3px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    vertical-align: -5px;
    -webkit-transition: .2s;
    transition: .2s;
}
input[type="radio"]:checked + span::before{
    background: #0070ab;
    border: 2px solid #fff;
}
input[type="checkbox"]{
    position: absolute;
    opacity: 0;
}
input[type="checkbox"] + span{
    position: relative;
}
input[type="checkbox"] + span::before{
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 6px;
    background: #fff;
    border: 1px solid #ccc;
    vertical-align: -5px;
}
input[type="checkbox"]:checked + span::before{
    background: #0070ab;
    border-color: #fff;
}
input[type="checkbox"] + span::after{
    display: block;
    content: "";
    width: 14px;
    height: 8px;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #fff;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    position: absolute;
    top: 4px;
    left: 3px;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
}
input[type="checkbox"]:checked + span::after{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
}

/* icn
---------------------- */
.icn-required{ background: #004e88; }
.icn-any{ background: #fff; border:1px solid #004e88; color: #004e88;}

/* pp link
---------------------- */
a.link-contact{
    text-decoration: underline;
    color: #004e88;
}

/* ================================================================
    
	form confirm
	
================================================================ */
.mw_wp_form.mw_wp_form_confirm .contact_pp{
    display: none;    
}

/* ================================================================
    
	form complete
	
================================================================ */
.mw_wp_form.mw_wp_form_complete p{
    margin-bottom: 1em;
}

/* ================================================================
    
	sns side
	
================================================================ */
.sns{
    display: block;
    padding: 20px;
    max-width: 350px;
    width: 85%;
    background: #004e88;
    position: fixed;
    bottom: 19%;
    right: 0;
    z-index: 5000;
    cursor: pointer;
    
    -webkit-transform: translate(100%,70%);
    
    transform: translate(100%,70%);
    -webkit-transition: .4s;
    -webkit-transition: .6s;
    transition: .6s;
}
.sns::before{
    display: block;
    content: "";
    width: 60px;
    height: 60px;
    background: url("https://icongr.am/entypo/facebook.svg?color=ffffff") no-repeat center center #004e88;
    position: absolute;
    top: 0;
    left: -60px;
}
.sns.is-open{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);   
}


/* ================================================================

modal

================================================================ */

/* ================================
overlay photogallery
================================ */
.overlay.photogallery{
    overflow-y: scroll;
}
.overlay.photogallery > .inner{
    max-width: 780px;
    height: 100%;
    min-height: 720px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.photogalleryList{
    width: 100%;
    -webkit-backface-visibility: red;
    backface-visibility: red;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);

}
.photogalleryList ul{
}
.photogalleryList li{
    position: relative;
}
.photogalleryList li img{
    border: 4px solid #fff;
}
.photogalleryList figure{
/*    width: 700px;*/
}
.photogalleryList figcaption{
    display: block;
    width: 100%;
    padding: 1em;
    font-size: 12px;
    font-size: 1.2rem;
/*    background: rgba(0,0,0,.6);*/
    color: #fff;
    opacity: 0;
    position: relative;
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
/*
    position: absolute;
    bottom: 0;
    left: 0;
*/
    -webkit-transition: .4s;
    transition: .4s;
}
.slick-current figcaption{
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* video
---------------------- */
.photogalleryList video{
    width: 100%;
    height: auto;    
}
/* slick control
---------------------- */
.photogalleryList .slick-prev,
.photogalleryList .slick-next{
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: none;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: -60px;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    z-index: 10000;
    outline: none;
}
.photogalleryList .slick-prev:hover,
.photogalleryList .slick-next:hover{
    background: #fff;
}
.photogalleryList .slick-next{
    left: auto;
    right: -60px;
}

.photogalleryList .slick-prev::after,
.photogalleryList .slick-next::after{
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-width: 0 0 1px 1px;
    position: absolute;
    top: 50%;
    left: 36%;
    -webkit-transform: rotate(45deg) translate(-27%,-44%);
    transform: rotate(45deg) translate(-27%,-44%);
}
.photogalleryList .slick-next::after{
    border-width: 1px 1px 0 0;
    left: auto;
    right: 44%;
}

.photogalleryList .slick-prev:hover::after,
.photogalleryList .slick-next:hover::after{
    border-color: #333;
}

/* slick-dots
---------------------- */
.photogalleryList .slick-dots {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.photogalleryList .slick-dots button{
    display: none;
}
.photogalleryList .slick-dots li{
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 1em .4em 0;
    border: none;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
    background: #ccc;
    cursor: pointer;
}
.photogalleryList .slick-dots li.slick-active{
    background: #004e88;
}

/* ================================================================

pump setting

================================================================ */
#page_pump .text-bold{
    font-weight:bold
}
#page_pump .mb-5{
    margin-bottom:5px !important;
}
#page_pump .sectionTitle-sub.mb-10{
    margin-bottom:1em !important;
}

#page_pump .sectionTitle-sub.mb-10 + p{
    margin-bottom:1em;
    text-align:center;
}

#page_pump .pumpGallaery .businessPhotoGallaeryList__item > span{
    border: 1px solid #999;
}

#page_pump .pumpGallaery .businessPhotoGallaeryList__item > span::after {
    background: rgba(153,153,153,.3);
}

#page_pump .pumpGallaery .businessPhotoGallaeryList__item:hover > span::after {
    background: rgba(238,238,238,.3);
}

#page_pump .sec-businessInCharge .grid{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
}

#page_pump .sec-businessInCharge .text-bold{
    display:block;
    font-size:2.2rem;
}

#page_pump .sec-businessInCharge .grid > p{
    margin-left:1em;
}

#page_pump .sec-businessContactUs{
    background:#eee;
    padding: 3em 0;
}

#page_pump .sec-businessContactUs .telNum,
#page_pump .sec-businessContactUs .faxNum{
    font-size:2.8rem;
    margin:0 auto 1rem;
}

#page_pump .sec-businessContactUs .mailAdd{
    font-size:2.5rem;
    margin:0 auto;
}

#page_pump .sec-businessContactUs .telNum:before{
    content: "";
    display: inline-block;
    width: 32px;
    height: 29px;
    background: url(https://icongr.am/entypo/old-phone.svg);
    margin-right: 10px;
}

#page_pump .sec-businessContactUs .mailAdd:before{
    content:"";
    display:inline-block;
    width:32px;
    height:26px;
    background:url(https://icongr.am/entypo/mail.svg);
    margin-right:10px;    
}

#page_pump .sec-businessContactUs .faxNum:before{
    content:"";
    display:inline-block;
    width:32px;
    height:32px;
    background:url(https://icongr.am/fontawesome/fax.svg);
    margin-right:10px;    
}

#page_pump .businessFlowList__item {
    margin-bottom: 1em;
}

@media (max-width:767px){
    #page_pump .sec-businessContactUs .mailAdd {
        font-size: 5vw;
    }   
}

.sec-businessMovie .movieArea{
    width:100%;
    max-width:800px;
    margin:0 auto;
}
@media (max-width:768px){
    .sec-businessMovie .movieArea iframe{
        width: 100% !important;
        height: 50.7vw !important;
    }
}

/* ================================================================

foot cta setting

================================================================ */
#foot_cta{
    width: 100%;
    background: #004f85;
    position: fixed;
    left: 0;
    z-index: 600;
/*
    -webkit-transition: all .5s;
    transition: all .5s;
*/
}

#foot_cta .foot_cta__ttl{
    width: 100%;
    background: #232a3b;
    padding: .2em 0;
    font-size: 1.5em;
    font-weight: bold;
    text-align:center;
    color: #fff;
}

#foot_cta .foot_cta__inner{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: .4em 0;
}

#foot_cta .foot_cta__inner ul{
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#foot_cta .foot_cta__inner ul li{
    width: 40%;
}

#foot_cta .foot_cta__inner ul li .foot_cta__contact-ttl{
    width: 100%;
    padding: .3em 0;
    /*margin-bottom: .5em;*/
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
}

#foot_cta .foot_cta__inner ul li a.foot_cta__contact-btn{
    display: block;
    width: 90%;
    border-radius: 10px;
    background: #ffef41;
    padding: .5em 0;
    margin: 0 auto;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}

#foot_cta .foot_cta__inner ul li a.foot_cta__contact-btn:hover{
    background: #fce707;
}

#foot_cta .foot_cta__inner ul li .foot_cta__contact-telNum{
    font-size: 1em;
    text-align: center;
    color: #fff;
    line-height: 1.3;
}

#foot_cta .foot_cta__inner ul li .foot_cta__contact-telNum span{
    font-size: 1.4em;
    font-weight: bold;
    /*vertical-align: sub;*/
}

#foot_cta .br-pc{
    display:inline !important;
}
#foot_cta .br-sp{
    display:none !important;
}
@media (max-width:768px){
    #foot_cta .br-pc{
        display:none !important;
    }
    #foot_cta .br-sp{
        display:inline !important;
    }
    #foot_cta .foot_cta__ttl {
        font-size: 1.5em;
    }
    #foot_cta .foot_cta__inner ul li .foot_cta__contact-telNum span {
        display: block;
    }
}
@media (max-width:767px){
    #foot_cta .foot_cta__inner ul {
        width: 100%;
    }
    #foot_cta .foot_cta__ttl {
        background: #232a3b;
        padding: .5em 0;
        font-size: 3vw;
    }
    #foot_cta .foot_cta__inner ul li .foot_cta__contact-ttl {
        font-size: 2.5vw;
    }
    
    #foot_cta .foot_cta__inner ul li a.foot_cta__contact-btn {
        width: 100%;
        font-size: 3vw;
        margin: 0 auto .5em;
        padding: .5em 0;
    }
    
    #foot_cta .foot_cta__inner ul li .foot_cta__contact-telNum {
        font-size: 3vw;
    }
    
    #foot_cta .foot_cta__inner ul li .foot_cta__contact-telNum span {
        font-size: 5vw;
        display: block;
    }
    
    #foot_cta .foot_cta__inner {
        padding: .5em 0;
    }
}
/* ================================================================

down load page setting

================================================================ */
.dl_btn{
	width : 400px;
	text-align:center;
	margin : 1em auto;
	background : #fa436d;
}

.dl_btn a{
	display : block;
	width : 100%;
	height : 100%;
	color : #fff;
	font-size : 1.3em;
	font-weight:bold;
	padding : 1em;
	text-decoration: none;
}

.form_txt{
	display : none;
}

.mw_wp_form_input .form_main{
	display : block;
}

.mw_wp_form_confirm .form_cfm{
	display : block;
}

/* ================================================================

submenu setting

================================================================ */
@media (min-width:768px){
.globalNav li {
    position: relative;
}

ul.submenu {
    width: 250px;
    position: absolute;
    top: 72px;
    right: 0;
    display:none;
}

ul.submenu a {
    padding: 0;
}
}

@media (max-width:767px){
.globalNav li {
    position: relative;
}

ul.submenu {
    width: 100%;
    position: static;
    display:block;
}

ul.submenu a {
    padding: 0;
}
ul.submenu li:first-child{
    display:none;
}
}

.link_btn{
	width:100%;
	max-width:250px;
	background:#004e88;
	border-radius:5px;
	margin:0 auto;
}

.link_btn a {
    width: 100%;
    height: 100%;
    padding: 15px 0;
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: block;
    text-decoration: none;
}