@charset 'UTF-8';

/* **********************************************************************
 *
 *       Title:   Site-Shokunin CMS master.css
 *       Notes:   Hand-crafted by WebLab Corporation in Tokyo.
 *
 ********************************************************************** */

/* IE用印刷設定CSS
======================================================= */

@media print {
    body {
        _zoom: 67%; /*WinIE only */
    }
    #top_a {
        _zoom: 95%; /*WinIE only */
    }

    header.is-fixed {
        position: relative!important;
    }

    .pagetop {
        display: none!important;
    }
}

/* 基本設定
======================================================= */

* {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.8;
    position: relative;
    min-width: 980px;      /* [1. 基本レイアウト設定]　全体の幅 */
    text-align: left;
    color: #000;       /* [4. 基本文字設定]　文字色 */
    background: #fff ;      /* [2. サイト全体の背景設定]　背景色 */
    padding-top: 134px; /*ヘッダ固定分*/
}

a:link,
a:visited {
    text-decoration: underline;
    color: #3971F1;       /* [4. 基本文字設定]　リンク文字色 */
}
a:hover,
a:active {
    text-decoration: none;
    color: #3971F1;       /* [4. 基本文字設定]　リンク文字色 */
}

address,caption,cite,code,dfn,em,th,var {
    font-weight: normal;
    font-style: normal;
}

p {
    font-size: 16px;    
    font-size: 1.6rem;     
}

ul {
    font-size: 16px;    
    font-size: 1.6rem;     
    margin: 5px 0 5px 10px;
    padding: 0 0 0 10px;
}

ol {
    font-size: 16px;
    font-size: 1.6rem;     
    margin: 5px 0 5px 26px;
    padding: 0 0 0 5px;
}


/* レイアウト設定
======================================================= */

.wrapper {
    width: 980px;      /* [1. 基本レイアウト設定]　全体の幅 */
    margin: 0 auto 40px;
    text-align: left;
}

.wrappertop {
    margin: 0 auto;
    text-align: left;
}

.wrapper .side {
    float: right;
    width: 212px;
    padding: 0;
}

.wrappertop .main {
    padding: 0;
    overflow: hidden;
}

.wrapper .main {
    float: left;
    width: 730px;      /* [1. 基本レイアウト設定]　メインカラムの幅 */
    padding: 0;
    overflow: hidden;
    min-height: 500px;
}

.contact .wrapper .main {
    float: none;
    margin: 0 auto;
    width: 780px;
}

/* header設定
======================================================= */

header {
    padding: 0;
    background: #fff;   /* [3. ヘッダー設定]　背景色 */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}

header ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header .inner {
    width: 980px;   /* [1. 基本レイアウト設定]　全体の幅 */
    margin: 0 auto;
    padding: 0 0 24px;   
}

header .head_top {
    padding: 24px 0 2px;
}

header .head_top,
header .head_bottom {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

header .head_top .catch {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: normal;
}

header .head_top_r {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    line-height: 1;
}

header .head_top_r a {
    font-size: 12px;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
}

header .head_top_r a:hover {
    text-decoration: underline;
}

header .head_top_r p + p {
    border-left: 1px solid #E0E0E0;
}

header .head_top_r .map {
    background: url(../img/ico_arw_blue.png) left center no-repeat;
    padding-left: 12px;
    margin-right: 15px;
}

header .head_top_r .recruit {
    background: url(../img/ico_blank_blue.png) left center no-repeat;
    padding-left: 16px;
    margin-left: 15px;
}

header .head_bottom_l {
    width: 320px;
    padding: 0;
    color: #000;    /* [3. ヘッダー設定]　h1、キャッチ文字色 */
}

header .head_bottom_l .logo {
    max-width: 119px;
    padding: 16px 0 0;
}
header .head_bottom_l .logo img {
    max-width: 119px;
    height: auto;
}

header .head_bottom_l .logo a {
    text-decoration: none;
    color: #000;   /* [3. ヘッダー設定]　h1、キャッチ文字色 */
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
}

header .head_bottom_r {
    line-height: 1;
}

header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: solid 1px #E0E0E0;
}

header.is-fixed .inner {
    padding: 0 0 16px;
}

header.is-fixed .head_top {
    display: none;
}

.sp_trigger,
.overlay { display: none;}

/* nav
======================================================= */

nav {
    display: block !important;
    margin: 0;
}

nav ul {
    width: 620px;
    margin: 16px auto 0;
    padding: 0;   
    list-style-type: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

nav ul li a {
    display: block;
    padding: 18px 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}

nav ul li a:link,
nav ul li a:visited {
    text-decoration: none;
    color: #000;       /* [5. ナビゲーション（第一階層メニュー）設定]　文字色 */
}

nav ul li a:hover,
nav ul li a.selected {
    text-decoration: none;
    color: #0A345A;       /* [5. ナビゲーション（第一階層メニュー）設定]　文字色（ハイライト時） */
    border-bottom: 2px solid #0A345A;
}

nav ul li.contact a {
    background: #0A345A url(../img/ico_mail_white.png) 32px center no-repeat;
    color: #fff;
    display: block;
    padding: 19px 32px 19px 52px;
    margin: 0;
    line-height: 1;
    font-weight: bold;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

nav ul li.contact a:hover {
    border-bottom: none;
    opacity: 0.7;
}

nav ul li.contact a.selected {
    border-bottom: none;
}



/* パンくず
======================================================= */

ol.breadcrumb {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 25px 0 64px;
    padding: 0;
    list-style-type: none;
}

ol.breadcrumb li {
    float: left;
}


/* 下層ナビゲーション
======================================================= */

/* cate_top */

.cate_top a {
    border-top: 4px solid #0A345A;
    padding: 23px 10px;
    text-align: center;
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    background: #fff;       /* [9. 下層メニュー設定]　カテゴリ背景色 */
}

.cate_top a:link,
.cate_top a:visited,
.cate_top a:hover {
    color: #0A345A;       /* [9. 下層メニュー設定]　カテゴリ文字色 */
    text-decoration: none;
}


/* subnav */
.side ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.side ul.subnav {
    margin: 0 0 0px;
    border-top: 1px solid #D8E2E2;
}

.side ul.subnav > li {
    border-bottom: 1px solid #D8E2E2;       /* [10. 下層メニュー（第二階層）設定]　枠線色 */
}

.side ul.subnav li li {
    border-top: 1px solid #D8E2E2;       /* [11. 下層メニュー（第三階層）設定]　枠線色 */
}

.side ul.subnav li a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 14px 36px 14px 14px;
    background: #fff url(../img/ico_arw_grey_l.png) 188px center no-repeat;     /* [10. 下層メニュー（第二階層）設定]　背景色 */
}

.side ul.subnav li a[target="_blank"] {
    background: #fff url(../img/ico_blank_grey.png) 188px center no-repeat;
}

.side ul.subnav li li a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 14px 36px 14px 14px;
    background: #F5F7F8 url(../img/ico_arw_grey_l.png) 188px center no-repeat;　   
}

.side ul.subnav li li a[target="_blank"] {
    background: #F5F7F8 url(../img/ico_blank_grey.png) 188px center no-repeat;
}

.side ul.subnav li a:link,
.side ul.subnav li a:visited {
    color: #000;        /* [10. 下層メニュー（第二階層）設定]　文字色 */
    text-decoration: none;
}

.side ul.subnav li a:hover {
    background: #D9E3EE url(../img/ico_arw_blue_l.png) 188px center no-repeat;     /* [10. 下層メニュー（第二階層）設定]　背景色（ハイライト時） */     
    color: #0A345A;        /* [10. 下層メニュー（第二階層）設定]　文字色（ハイライト時） */
    text-decoration: none;
}

.side ul.subnav li a[target="_blank"]:hover {
    background: #D9E3EE url(../img/ico_blank_blue02_l.png) 188px center no-repeat;
}

.side ul.subnav li li a:link,
.side ul.subnav li li a:visited {
    background: #F5F7F8  url(../img/ico_arw_grey_l.png) 188px center no-repeat;      /* [11. 下層メニュー（第三階層）設定]　背景色 */ 
    color: #000;        /* [11. 下層メニュー（第三階層）設定]　文字色 */
    text-decoration: none;
}

.side ul.subnav li li a[target="_blank"]:link,
.side ul.subnav li li a[target="_blank"]:visited {
    background: #F5F7F8 url(../img/ico_blank_grey.png) 188px center no-repeat;
}

.side ul.subnav li li a:hover {
    background: #0A345A url(../img/ico_arw_white_l.png) 188px center no-repeat;    /* [11. 下層メニュー（第三階層）設定]　背景色（ハイライト時） */
    color: #fff;        /* [11. 下層メニュー（第三階層）設定]　文字色（ハイライト時） */
    text-decoration: none;
}

.side ul.subnav li li a[target="_blank"]:hover {
    background: #0A345A url(../img/ico_blank_white.png) 188px center no-repeat;
}

.side ul.subnav li.subselected > a {
    background: #D9E3EE url(../img/ico_arw_blue_l.png) 188px center no-repeat; 
    color: #0A345A;
    text-decoration: none;
    font-weight: bold;
}

.side ul.subnav li.subselected > a[target="_blank"] {
    background: #D9E3EE url(../img/ico_blank_blue02_l.png) 188px center no-repeat;
}

.side ul.subnav li li.localselected a {
    background: #0A345A url(../img/ico_arw_white_l.png) 188px center no-repeat;    /* [11. 下層メニュー（第三階層）設定]　背景色（ハイライト時） */ 
    font-weight: bold;
    color: #fff;     /* [11. 下層メニュー（第三階層）設定]　文字色（ハイライト時） */
    text-decoration: none;
}

.side ul.subnav li li.localselected a[target="_blank"] {
    background: #0A345A url(../img/ico_blank_white.png) 188px center no-repeat;
}

.side ul.subnav + p {
    margin-top: 48px;
}

.side ul.subnav .subnolink {
    background: #fff;
    color: #0A345A;
    font-weight: bold;
}

.side ul.subnav .subnolink:hover {
    background: #fff;
    color: #0A345A;
    font-weight: bold;
}

.side .side_contact_btn a {
    background: #0A345A;
    color: #fff;
    display: block;
    width: 100%;
    padding: 27px 0;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.side .side_contact_btn a span {
    background: url(../img/ico_mail_white.png) left center no-repeat;
    padding-left: 20px;
}

.side .side_contact_btn a:hover {
    opacity: 0.8;
}

.side_recruit_btn {
    margin-top: 48px;
}

.side_recruit_btn a {
    display: block;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.side_recruit_btn a:hover {
    opacity: 0.8;
}

.side_recruit_btn .txt {
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    background: #2443A7;
    padding: 20px 0;
}

.side_recruit_btn .txt span {
    background: url(../img/ico_blank_white.png) left center no-repeat;
    padding-left: 19px;
}


/* トップページ設定
======================================================= */

.wrappertop .block {
    clear: both;
    width: 100%;
    margin: 0 0 40px;
}

/*メインビジュアル*/
.mv {
    position: relative;
    height: 500px;
    margin-bottom: 96px;
}

.mv:before {
    position: absolute;
    content: '';
    display: block;
    width: 73%;
    height: 116px;
    margin: 0 auto;
    left: 0;
    right: auto;
    bottom: 36px;
    background-color:rgba(10,52,90,0.87);
}

@media (min-width: 1620px) {
    .mv:before {
        width: 63%;
    }
}

.mv_img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mv_txt {
    position: absolute;
    width: 980px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 36px;
    text-align: left;
    color: #fff;
    padding: 18px 0;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 2;
}

/*ビジネスモデル*/
.wrap_about_ikp {
    margin-bottom: 96px;
}

.about_ikp {
    position: relative;
    height: 288px;
}

.about_ikp {
    margin-bottom: 64px;
}

.about_ikp .about_img {
    position: absolute;
    width: 53%;
    height: 240px;
    margin: 0 auto;
    bottom: 36px;
}

.about_ikp.about_synergy .about_img {
    top: 0;
    left: auto;
    right: 47%;
}

.about_ikp.about_venture .about_img {
    top: 48px;
    left: 47%;
    right: auto;
}

.about_ikp .about_img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.about_ikp .about_txt {
    position: relative;
    width: 980px;
    margin: 0 auto;
}

.about_ikp .about_txt p {
    position: absolute;
    background-color: rgba(10,52,90,0.87);
    color: #fff;
    text-decoration: none;
    display: block;
    width: 430px;
    padding: 30px;
}

.about_ikp.about_synergy .about_txt p {
    top: 46px;
    right: 0;
}

.about_ikp.about_venture .about_txt p {
    top: 0;
    left: 0;
}

.about_ikp .about_txt span {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.about_ikp .about_txt .sub_tit {
    font-weight: bold;
}

.about_ikp .about_txt .tit {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    border-bottom: solid 1px rgba(255,255,255,0.12);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.about_ikp .about_txt .txt {
    letter-spacing :-0.02em;
}


/*サービス*/
.wrap_service {
    margin-bottom: 96px;
}

.wrap_service.kaikei {
    background:linear-gradient(0deg,#fff 0%,#fff 30%,#F5F7F8 30%,#F5F7F8 97%,#fff 97%,#fff 100%);
}

.wrap_service.zeimu {
    padding-top: 64px;
    background:linear-gradient(0deg,#fff 0%,#fff 33%,#F5F7F8 33%,#F5F7F8 100%);
}

.wrap_inner_service {
    display: -webkit-box;
    display: flex;
    width: 980px;
    margin: 0 auto 64px;
}

.wrap_inner_service.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.wrap_inner_service > p {
    margin: 0 0 0 48px;
}

.wrap_inner_service.reverse > p {
    margin: 0 48px 0 0 ;
}

.service_tit {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 26px;
    margin-bottom: 18px;
    line-height: 1;
}

.service_tit:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 32px;    
    border-bottom: solid 2px #0A345A;
}

.wrap_service_contents {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 980px;
    margin: 0 auto;
}

.wrap_service_contents:after{
  content:"";
  display: block;
  width: 316px;
}

.service_contents:nth-child(n+4) {
    margin-top: 17px;
}

.service_contents a {
    display: block;
    color: #fff;
    position: relative;
    width: 316px;
    height: 140px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.service_contents a:before {
    content:"";
    display: block;
    position: absolute;
    width: 316px;
    height: 140px;
    background-color: rgba(10,52,90,0.87);
}

.service_contents a:hover {
    opacity: 0.7;
}

.service_contents .service_title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background: url(../img/ico_arw_white_l.png) no-repeat 292px center;
}

/*会社案内*/
.wrap_company {
    position: relative;
    height: 490px;
    background: #F5F7F8;
}

.wrap_company .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.wrap_company .bg_img:before {
    content:"";
    display: block;
    position: absolute;
    width: 100%;
    height: 333px;
    background-color: rgba(10,52,90,0.87);
}

.wrap_company .bg_img img {
    width: 100%;
    height: 333px;
    object-fit: cover;
}

.wrap_company .wrap_inner_company {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 980px;
    margin: auto;
    color: #fff;
}

.wrap_conpany_tit {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.wrap_company h2 {
    color: #fff!important;
    margin: 0!important;
}

.wrap_company h2 span {
    margin-left: 16px;
    color: #fff!important;
    display: inline!important;
    vertical-align: middle;
}

.wrap_conpany_tit p {
    font-size: 18px;
    font-size: 1.8rem;
}

.wrap_company_contents {
    margin-top: 48px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.wrap_company_contents a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: block;
    -webkit-transition: 0.2s;
            transition: 0.2s;
}

.wrap_company_contents a:hover {
    opacity: 0.8;
}

.wrap_company_contents span {
    display: block;
    padding: 13px 16px;
    background: #fff url(../img/ico_arw_blue_l.png) no-repeat 209px center;
}

/*採用情報*/
.wrap_recruit {
    background:linear-gradient(0deg,#fff 0%,#fff 50%,#F5F7F8 50%,#F5F7F8 100%);
    margin-bottom: 96px;
}

.wrap_recruit .recruit_box {
    width: 980px;
    margin: 0 auto;
}

.wrap_recruit .recruit_box {
    display: -webkit-box;
    display: flex;
    background: #2443A7;
    color: #fff;
}

.wrap_recruit .recruit_box > div {
    padding: 32px 30px;
}

.wrap_recruit .recruit_box .tit {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.wrap_recruit .recruit_box a {
    display: inline-block;
    width: 295px;
    background: #fff url(../img/ico_blank_blue_l.png) no-repeat 303px center;
    border: solid 1px #fff;
    color: #2443A7;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 11px 19px;
    margin-top: 24px;
    -webkit-transition: 0.2s;
            transition: 0.2s;
}

.wrap_recruit .recruit_box a:hover {
    background: #2443a7 url(../img/ico_blank_white_l.png) no-repeat 303px center;
    border: solid 1px #fff;
    color: #fff;
}


/* 事例スライド
======================================================= */

.wrap_works {
   background:linear-gradient(0deg,#F5F7F8 0%,#F5F7F8 95%,#fff 95%,#fff 100%);
   padding-bottom: 60px;
}

.wrap_works h2 {
    margin-bottom: 10px!important;
}

.wrap_works_card {
    position: relative;
    margin: 0 -384px 0;
}

.works_card {
    display: -webkit-box;
    display: flex;
    min-width: 648px;
    background: #fff;
    margin: 32px 0 120px;
    position: relative;
    box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: 0.2s;
            transition: 0.2s;
}

.works_card:hover {
    cursor: pointer;
    opacity: 0.5;
}

.works_card .works_l img {
    width: 240px;
    height: 100%;
    object-fit: cover;
}

.works_card .works_l .object_fit_img {
    height: 100%;
}

.works_card .works_num {
    font-size: 56px;
    font-size: 5.6rem;
    position: absolute;
    top: 0;
    left: -33px;
    color: #0A345A;
}

.works_card .works_r {
    width: calc(100% - 64px);
    padding: 38px 60px 38px 32px;
    background: url(../img/ico_arw_blue_l.png) no-repeat 95% 50%;
}

.works_card .works_r .works_tit {
    font-weight: bold;
    font-size: 24px;
    font-size: 2.4rem;
    position: relative;
    padding-bottom: 16px;
}

.works_card .works_r .works_tit:before {
    position: absolute;
    content: '';
    display: inline-block;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 32px;
    background: #0A345A;
}

.works_card .works_r .works_txt {
    margin-top: 16px;
}

.works_card .works_r .works_txt a {
    font-size: 16px;
    font-size: 1.6rem;
    text-decoration: none;
    color: #000;
}


/*bxslider*/
/*スライド全体*/
.slider .inner_slider > div {
    visibility: hidden;
}

.slider .bx-viewport .inner_slider > div {
    visibility: visible!important;
}

.slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 60px;   /*ページャーありの場合のpadding*/
}

.slider .bx-wrapper {
    position: relative;
    height: 426px;
    overflow: hidden;
    padding: 0 0 0 40%; /*※1枚目より前のクローンスライドを出すため*/
    width: 60%;         /*※1枚目より前のクローンスライドを出すため*/
}

@media (max-width: 1500px) {
    .slider .bx-wrapper {
        padding: 0 0 0 35%;
        width: 65%;
    }
}

@media (max-width: 1100px) {
    .slider .bx-wrapper {
        padding: 0 0 0 32%;
        width: 68%;
    }
}

.slider .bx-viewport {
    overflow: visible !important;
}

/*ナビゲーションボタン*/
.slider .bx-controls .bx-pager {
    position: absolute;
    z-index: 100;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 12px;
    margin: auto;
    padding: 0;
    text-align: center;
}

.slider .bx-controls .bx-pager-item {
    display: inline;
}

.slider .bx-controls .bx-pager-item a {
    display: inline-block;
    overflow: hidden;
    width: 32px;
    height: 0!important;
    margin: 0 8px;
    padding-top: 2px;
    background: #D7D9DA;
}

.slider .bx-controls .bx-pager-item a:hover,
.slider .bx-controls .bx-pager-item a.active {
    background: #0A345A;
    border-top: solid 1px #0A345A;
    border-bottom: solid 1px #0A345A;
}


/* 下層共通設定
======================================================= */

.under_h1 {
    background: url(../img/bg_title.jpg) no-repeat 50% 50% / cover;
    height: 192px;
    position: relative;
}

.under_h1 h1 {
    width: 980px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: normal;
    margin: auto;
    color: #fff;   /* [12. 下層ページ大見出し（タイトル）設定]　文字色 */
    z-index: 1;
    text-align: center;
}

.under_h1:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:rgba(10,52,90,0.87);
    z-index: 0;
}

.wrapper .block {
    clear: both;
    width: 100%;
    margin: 0 0 64px;
    overflow: hidden;
}

.main .block h2 {
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.6;
    font-weight: normal;
    margin: 0 0 16px;
    padding: 0 0 9px;
    background: #fff;   /* [13. 下層ページ中見出し設定]　背景色 */
    color: #000;   /* [13. 下層ページ中見出し設定]　文字色 */
    border-bottom: 1px solid #E0E0E0;   /* [13. 下層ページ中見出し設定]　枠線（左線）色 */
}

.main .block h3 {
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.6;
    margin: 0 0 13px;
    font-weight: normal;
    padding: 0 0 0 10px;
    color: #000;   /* [14. 下層ページ小見出し]　文字色 */
    border-left: 4px solid #0A345A;   /* [14. 下層ページ小見出し]　枠線（左線）色 */
}

.main .block h4 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 13px;
    padding: 7px 12px;
    font-weight: normal;
    color: #000;   /* [14. 下層ページ小見出し]　文字色 */
    background: #F5F7F8;
}

/* 下層ブロック管理画面にCSS効かせたくないスタイル
======================================================= */

/* alink */

ul.alink li {
    float: left;
    margin: 0 20px 10px 0;
}

ul.alink li a {
    display: block;
    margin: 0;
    padding: 8px 32px;
    border: 1px solid #0A345A;
}

ul.alink li a:link,
ul.alink li a:visited {
    text-decoration: underline;
}

ul.alink li a:hover {
    text-decoration: none;
}


/* pagetop
======================================================= */

.pagetop {
    position: fixed;
    z-index: 10;
    right: 50px;
    bottom: 0;
}

.pagetop a {
    float: left;
    padding-top: 48px;
    height: 0 !important;
    margin: 0;
    overflow: hidden;
    outline: none;
    background: #212121 url(../img/ico_pagetop.png) no-repeat 50% 50%;    /* [16. フッター（メニュー部）設定]　背景色（＋PAGETOP） */
    width: 48px;
}


/* footer
======================================================= */

footer {
    background: #212121;    /* [17. フッター（住所、Copyright部）設定]　背景色 */
}

footer .foot_in {
    width: 980px;      /* [1. 基本レイアウト設定]　全体の幅 */
    margin: 0 auto;
}


/* foot_info */
.foot_info {
    background: #0A345A;
    color: #fff;    /* [17. フッター（住所、Copyright部）設定]　文字色 */
}

.foot_info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.foot_info .foot_in {
    padding: 96px 0;
    display: -webkit-box;
    display: flex;
}

.foot_info .info_address {
    margin: 0 50px 0 0;
}

.foot_info .info_address p {
    font-size: 14px;
    font-size: 1.4rem;
}

.foot_info .info_address .company_name {
    font-weight: bold;
    margin-top: 24px;
}

.foot_info .footer_sitemap {
    display: -webkit-box;
    display: flex;
}

.foot_info .footer_sitemap > li + li {
    margin-left: 48px;
}

.foot_info .footer_sitemap a {
    color: #fff;
    text-decoration: none;
}

.foot_info .footer_sitemap a:hover {
    text-decoration: underline;
}

.foot_info .main_menu_ul > li + li {
    margin-top: 24px;
}

.foot_info .main_menu_name {
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    background: url(../img/ico_arw_white.png) left center no-repeat;
}

.foot_info .main_menu_name.notlink {
    background: none;
}

.foot_info .main_menu_name a {
    margin-left: 12px;
}

.foot_info .main_menu_name_blank {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    background: url(../img/ico_blank_white.png) left center no-repeat;
}

.foot_info .main_menu_name_blank a {
        margin-left: 22px;
}

.foot_info .wrap_sub_menu {
    display: -webkit-box;
    display: flex;    
    margin: 10px 0 0;
}

.foot_info .wrap_sub_menu > div {
    width: 180px;
}

.foot_info .wrap_sub_menu > div + div {
    margin-left: 48px;
}

.foot_info .sub_menu_name {
    font-weight: bold;
    font-size: 12px;
    font-size: 1.2rem;
}

.foot_info .sub_menu_ul {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    margin-left: 10px;
}

.foot_info .sub_menu_ul li {
    padding-left: 0.8em;
    text-indent: -0.8em;
}

.foot_info .sub_menu_ul li:before {
    font-weight: normal;
    content: '-';
    color: #fff;
    padding-right: 4px;
}


/* foot_nav */
footer .foot_nav {
    background: #212121;   /* [16. フッター（メニュー部）設定]　背景色 */
}

.foot_nav .foot_in {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;    
}

.foot_nav ul {
    margin: 0;
    padding: 18px 0;
    list-style-type: none;
    display: -webkit-box;
    display: flex;
}

.foot_nav ul li {
    margin-right: 20px;
}

.foot_nav a {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

.foot_nav a:link,
.foot_nav a:visited {
    color: #fff;   /* [16. フッター（メニュー部）設定]　文字色 */
    text-decoration: none;
}

.foot_nav a:hover {
    color: #fff;   /* [16. フッター（メニュー部）設定]　文字色 */
    text-decoration: underline;
}

.foot_nav .copy {
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
}



/* お知らせ設定
======================================================= */

.mceTopics {
    margin: 0 auto 96px;
    padding: 0;
    width: 980px;
}
.mceTopics ul,
.mceTopics ol {
    font-size: 16px;
    font-size: 1.6rem;   
    line-height: 1.8;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wrappertop .mceTopics ul,
.wrappertop .mceTopics ol {
    padding: 0 28px 0 0;
    max-height: 268px;
    overflow-y: auto;
}

.mceTopics li {
    margin: 20px 0 0;
    padding: 0 0 20px;
    border-bottom: 2px dotted #E0E0E0;
    overflow: hidden;
}

.mceTopics li:first-child {
    margin-top: 0;
}

.mceTopics li span {
    display: block;
}
.mceTopics li span.day {
    float: left;
    width: 120px;
    color: #000;
}
.mceTopics li span.title {
    float: left;
    width: 800px;
}
.topicsblock {
    padding: 0 0 16px;
    margin: 0 0 24px;
    border-bottom: 1px solid #757575;
}
.topicsblock_un {
    margin: 0 0 30px;
    padding: 0;
    border-bottom: 1px solid #d9d9d9;   /* [12. 下層ページ大見出し（タイトル）設定]　枠線（下線）色 */
}

.main .topicsblock_un h1 {
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: normal;
    margin: 0;
    padding: 0 0 18px;
    float: left;
    width: 620px;
    border: 0;
}

#top .topicsblock h2 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    float: left;
    width: 200px;
    margin: 0;
    padding: 0 5px 0 0;
    color: #000;    /* [8. トップページお知らせ見出し設定]　文字色 */
    border: none;
}

.topicsblock .linkset {
    float: right;
}
#top_b .topicsblock .linkset {
    padding: 5px 0 0;
}
.topicsblock .infolist {
    font-size: 12px;
    font-size: 1.2rem;
    float: left;
    padding: 1px 0 0;
}
.topicsblock .infolist a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px 36px 4px 16px;
    background: #0A345A url(../img/ico_arw_white.png) 98px 50% no-repeat;
    -webkit-transition: 0.2s;
            transition: 0.2s;    
}
.topicsblock .infolist a,
.topicsblock .infolist a:visited {
    color: #fff;
}
.topicsblock .infolist a:hover {
    opacity: 0.7;
}

ul.pager {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    text-align: center;
}
ul.pager li {
    display: inline;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.pager li strong {
    display: inline-block;
    padding: .25em .4em;
    color: #fff;
    border: 1px #999 solid;
    background-color: #999;
}
ul.pager li a {
    display: inline-block;
    padding: .25em .4em;
    text-decoration: none;
    border: 1px #ccc solid;
}
ul.pager li a:link,
ul.pager li a:visited {
    color: #000;
    border-color: #ccc;
}
ul.pager li a:hover,
ul.pager li a:active {
    color: #fff;
    border-color: #999;
    background-color: #999;
}

/* サイトマップ設定
======================================================= */

.block_sm {
    clear: both;
    margin: 0 0 10px;
    padding: 0 0 10px;
    text-align: left;
    border-bottom: 1px dotted #ccc;
}
.block_sm h2.sitemap {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    color: #000;
    border: 0;
}
.sitemap_ul {
    margin: 3px 0 0 10px;
    list-style: none;
    border: 0;
}
.sitemap_ul li {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0;
    text-align: left;
    border: 0;
}

.sitemap_ul li a {
    margin-left: 4px;
    padding: 2px 0 2px 17px;
    background: url(../img/sitemap_arrow.gif) no-repeat 0 5px;
}

.sitemap_ul li ul {
    margin: 3px 0 0 13px;
    list-style: none;
}
.sitemap_ul li ul li {
    padding-left: 17px;
    text-align: left;
    background: url(../img/sitemap_arrow.gif) no-repeat 0 5px;
}


/* スマホPC切替スイッチ
======================================================= */

.dvc_switch {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

.dvc_switch ul {
    margin: 0 auto;
    padding: 0;
}

.dvc_switch li {
    list-style-type: none;
}

.dvc_switch li.pc {
    display: none;
}

.dvc_switch li.sp {
    text-align: center;
}

.dvc_switch li.sp a {
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    width: 600px;
    border: solid 1px #fff;
}

.dvc_switch li a {
    width: 100%;
    padding: 0;
    text-decoration: none;
    color: #fff;
}

.dvc_switch li:first-child a {
    line-height: 1.6;
}

.dvc_switch p {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}