/*===== CSS RESET =====*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,img,ins,kbd,q,s,samp,strike,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,textarea,select{outline:none;border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}.clear{clear:both}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;line-height:0;font-size:0}* html .clearfix{height:1%}.clearfix{display:block}p,li,td{background:url('')}
ul, ol {list-style: none;}

/*===== COMMON =====*/
*,
*:before,
*:after{
    margin: 0;
    padding: 0
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
}
body {
    font-size: 14px;
    font-family: Noto Sans Japanese, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    color: #333;
    text-size-adjust: none;
    line-height: 1;
    font-weight: 200;
}
a {
    color: #333;
    text-decoration: none;
}
a.anchor {
    display: block;
    position: relative;
    top: -101px;
    visibility: hidden;
}
img {
    vertical-align: bottom;
}
/* h1 */
h1.pattern01 {
    padding: 0.5em;/*文字周りの余白*/
    color: #494949;/*文字色*/
    background: #fffaf4;/*背景色*/
    border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
}
h1.pattern02 {
    border-bottom: solid 3px skyblue;
    position: relative;
}
h1.pattern02:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #ffc778;
    bottom: -3px;
    width: 30%;
}
h1.pattern03 {
    padding: 0.5em;/*文字周りの余白*/
    color: #494949;/*文字色*/
    background: #fffaf4;/*背景色*/
    border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
}
.trans {
    opacity: 1;
    /* transition: opacity .2s ease-out; */
}
.trans:hover,
.trans:hover img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    filter: alpha(opacity=85);
    -moz-opacity: 0.85;
    -khtml-opacity: 0.85;
    opacity: .85;
}
.container{
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* btn */
.sec_btn {
    text-align: center;
}
.sec_btn a,
.sec_btn input,
.sec_btn button {
    display: inline-block;
    font-size: 24px;
    border-radius: 3px;
    padding: 25px 38px;
    transition: background-color .2s ease-out;
    position: relative;
    font-family: Noto Sans Japanese, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    line-height: 1;
    font-weight: 200;
    cursor: pointer;
}
.sec_btn a,
.sec_btn input {
    background: #00bffe;
    border: 1px solid #00bffe;
    color: #FFF;
    width: 360px;
}
.sec_btn button {
    background: #CCC;
    border: 1px solid #CCC;
    color: #787878;
    width: 200px;
    margin-right: 100px;
}
.sec_btn a:hover,
.sec_btn input:hover {
    background: #FFF;
    color: #00bffe;
}
.sec_btn button:hover {
    background: #FFF;
}
.sec_btn input.wpcf7c-btn-back{
    background: #fff;
    border: 1px solid #00bffe;
    color: #00bffe;
    margin-right: 10px;
}
.sec_btn input.wpcf7c-btn-back:hover{
    background: #00bffe;
    border: 1px solid #00bffe;
    color: #FFF;
}
.sec_btn a i {
    font-size: 28px;
    position: absolute;
    top: 50%;
    margin-top: -14px;
}
.sec_btn a .fa-angle-right {
    right: 30px;
}
.sec_btn a .fa-angle-left {
    left: 30px;
}

/* sec_ttl */
.sec_ttl {
    width: 100%;
    height: 400px;
    margin-top: 101px;
    text-align: center;
    font-weight: 100;
    color: #FFF;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
.sec_ttl .ttl {
    font-size: 16px;
    position: relative;
    padding-top: 80px;
}
.sec_ttl .ttl span {
    font-size: 45px;
    display: block;
    padding-bottom: 30px;
}
.sec_ttl .ttl span:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #00bffe;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 30px;
}

/* sec_box */
.sec_box {
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
    position: relative;
    top: -150px;
    padding: 80px;
}

/* sec_bg */
.sec_bg {
    background: #f3f3f3;
}

/* breadcrumb */
.breadcrumb > ul {
    /* display: table; */
    margin-top: -130px;
    padding-bottom: 70px;
}
.breadcrumb > ul > li {
    display: table-cell;
}
.breadcrumb > ul > li:after {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    padding: 0 0.5em;
    color: #999;
}
.breadcrumb > ul > li:last-child:after {
    display: none;
}
.breadcrumb > ul > li a {
    color: #999;
}

/*===== HEADER =====*/
header {
    background-color: rgba(255,255,255,.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid #e6e6e6;
}
header .nav {
    display: table;
    position: static;
}
header .nav > li {
    display: table-cell;
    width: 13%;
    text-align: center;
    vertical-align: middle;
}
header .nav > .logo {
    width: 22%;
}
header .nav > li > a {
    font-size: 16px;
    letter-spacing: 0.025em;
    font-weight: 200;
    display: block;
    padding: 29px 0;
    transition: color .2s ease-out;
}
header .nav > li a:hover {
    color: #00bffe;
}
header .nav > li .sub {
    display: none;
    position: absolute;
    width: 100%;
    background-color: rgba(0,0,0,.75);
    top: 100px;
    left: 0;
    padding: 20px 0 0;
}
header .nav > li .sub > .container > * {
    display: table-cell;
    vertical-align: middle;
}
header .nav > li .sub > .container > .ttl {
    color: #FFF;
    font-size: 16px;
    font-weight: 100;
    width: 420px;
}
header .nav > li .sub > .container > .ttl span {
    display: block;
    font-size: 45px;
    position: relative;
    margin-bottom: 30px;
}
header .nav > li .sub > .container > .ttl span:before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #00bffe;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -25px;

}
header .nav > li .sub > .container > .menu {
    text-align: left;
}
header .nav > li .sub > .container > .menu li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
}
header .nav > li .sub > .container > .menu.service li:nth-child(2n) {
    margin-right: 0;
}
header .nav > li .sub > .container > .menu li:nth-child(4n) {
    margin-right: 0;
}
header .nav > li .sub > .container > .menu li a {
    color: #FFF;
    font-weight: 100;
}
header .nav > li .sub > .container > .menu li .txt {
    text-align: center;
    margin-top: 10px;
}
header .nav > li .sub > .container > .menu li .txt.ls {
    letter-spacing: -0.1em;
}
header .nav > li .sub > .container > .menu > .ttl {
    margin-bottom: 15px;
}
header .nav > li .sub > .container > .menu > .ttl > * {
    display: inline-block;
    vertical-align: middle;
}
header .nav > li .sub > .container > .menu > .ttl i {
    font-size: 30px;
    color: #CCC;
    margin-right: 0.25em;
}
header .nav > li .sub > .container > .menu > .ttl span {
    font-size: 18px;
    color: #00bffe;
}

/*===== FOOTER =====*/
footer {
    background: url(../img/common/footer_bg.jpg) no-repeat;
    background-size: cover;
    padding: 50px 0;
    display: table;
    width: 100%;
    position: relative;
    border-bottom: 5px solid #111;
}
footer .container > * {
    display: table-cell;
}
footer .container > .box {
    position: absolute;
    left: 50px;
    bottom: 0;
    color: #d2d2d2;
    font-size: 12px;
    font-weight: 100;
}
footer .container > .box li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
}
footer .container > .box li a {
    color: #d2d2d2;
    display: block;
    padding: 2px 0;
}
footer .container > .box li:first-child {
    border-right: 1px solid #d2d2d2;
    padding-right: 15px;
    padding-left: 0;
}
footer .container > .box .copy {
    letter-spacing: 0.07em;
    margin-top: 20px;
}
footer .container .ttl {
    color: #FFF;
    padding-left: 50px;
    font-weight: 100;
	width:150px;
}
footer .container > .ttl span {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}
footer .container .menu {
    margin-left: 350px;
}
footer .container .menu > li {
    display: table-cell;
    padding-right: 50px;
}
footer .container .menu > li:first-child {
    width: 160px;
}
footer .container .menu > li > a {
    color: #FFF;
    font-weight: 400;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 20px;
}
footer .container .menu > li > ul li {
    margin-bottom: 12px;
}
footer .container .menu > li > ul a {
    color: #d2d2d2;
    font-size: 12px;
}
footer .container .menu > li:last-child > a {
    margin-bottom: 35px;
}
#gototop{
    position: absolute;
    right: 30px;
    bottom: 10px;
    color: #00bffe;
    font-size: 48px;
    cursor: pointer;
    display: none;
}

/*===== TOP =====*/
/* top_slider */
.top_slider {
    margin-top: 99px;
    width: 100%;
    overflow: hidden;
    height: 501px;
}
.top_slider .slide , .top_slider .slideMv {
    display: table;
}
.top_slider .slide > *,
.top_slider .slide .box_s {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    text-align: center;
    /* border-spacing: 1px; */
}
.top_slider .slideMv > *,
.top_slider .slideMv .box_s {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    text-align: center;
    /* border-spacing: 1px; */
}
.top_slider .slide .box_s:first-child ,
.top_slider .slideMv .box_s:first-child {
    padding-right: 1px;
}
.top_slider .slide .box_s:last-child ,
.top_slider .slideMv .box_s:last-child {
    vertical-align: middle;
    color: #FFF;
}
.top_slider .slide .box_s > .ttl ,
.top_slider .slideMv .box_s > .ttl {
    font-size: 16px;
    position: relative;
    padding-bottom: 20px;
}
.top_slider .slide .box_s > .ttl:after ,
.top_slider .slideMv .box_s > .ttl:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: rgba(255,255,255,.4);
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -25px;
}
.top_slider .slide .box_s > .ttl span ,
.top_slider .slideMv .box_s > .ttl span {
    display: block;
    font-weight: 100;
    font-size: 50px;
    margin-bottom: 20px;
}
.top_slider .slide .box_s > .txt ,
.top_slider .slideMv .box_s > .txt {
    font-weight: 300;
    margin-top: 35px;
    font-size: 28px;
    line-height: 1.3;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1),0px 0px 2px rgba(0, 0, 0, 0.1);
}

.top_slider .slide .box_s > a,
.top_slider .slideMv .box_s > a {
    background: #FF6C00;
    display: inline-block;
    border-radius: 3px;
    border: #FF6C00 1px solid;
    color: #FFF;
    box-shadow: 0 0 2px 1px rgba(255,108,0,0.25);
    font-size: 18px;
    min-width: 340px;
    padding: 17px;
    margin-top: 50px;
    transition: background .2s ease-out;
}
.top_slider .slide .box_s > a:hover,
.top_slider .slideMv .box_s > a:hover {
    background: #EFEFEF;
    color: #FF6C00;
    border: #FFF 1px solid;
}
.top_slider .slide .box_s > a i ,
.top_slider .slideMv .box_s > a i {
    color: #FFF;
    margin-left: 7px;
}
.top_slider .slide .box_s > a:hover i ,
.top_slider .slideMv .box_s > a:hover i {
    color: #FF6C00;
}

.top_slider .slideMv .box_s > a.mv-btn {
    background: none;
    display: inline-block;
    border-radius: none;
    border: none;
    color: #FFF;
    box-shadow: none;
    min-width: auto;
    padding: 0;
    margin: 0;
    transition: default;
}

.top_slider .slide .bg01 ,
.top_slider .slideMv .bg01 {
    background: url(../img/top/sl01_bg.jpg)no-repeat;
}
.top_slider .slide .bg02 {
    background: url(../img/top/sl02_bg.jpg)no-repeat;
}
.top_slider .slide .bg03 {
    background: url(../img/top/sl03_bg.jpg)no-repeat;
}
.top_slider .slide .bg04 {
    background: url(../img/top/sl04_bg.jpg)no-repeat;
}
.top_slider .bx-wrapper {
  margin: 0 auto;
  padding: 0;
}
.top_slider .bx-viewport {
    overflow: inherit !important;
}
.top_slider .bx-viewport:before,
.top_slider .bx-viewport:after {
    content: "";
    display: block;
    position: absolute;
    width: 1280px;
    height: 500px;
    background-color: rgba(0,0,0,.5);
    top: 0;
    z-index: 1;
}
.top_slider .bx-viewport:before {
    left: -1280px;
}
.top_slider .bx-viewport:after {
    right: -1280px;
}

/* top_slider pager */
.top_slider_pager {
    overflow: hidden;
    width: 100%; height: auto;
    margin: 0; padding: 10px 0;
}
.top_slider_pager .pagerBox {
    margin: 0 auto; padding: 0;
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    color: #CCC;
    padding-top: 20px;
}
.top_slider_pager .pagerBox a {
    display: inline-block;
    background: #CCC;
    width: 10px; height: 10px;
    margin: 0 5px;
    text-indent: -9999px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.top_slider_pager .pagerBox a:hover,
.top_slider_pager .pagerBox a.active,
.top_slider_pager .pagerBox a:focus {
  background: #00BFFE;
}

/* top_news */
.top_news {
    border-bottom: 1px solid #e6e6e6;
    overflow: hidden;
    padding: 16px 0;
}
.top_news .container {
    display: table;
}
.top_news .container > * {
    display: table-cell;
    vertical-align: middle;
}
.top_news .container > .ttl {
    width: 140px;
    text-align: center;
    color: #00bffe;
    font-size: 16px;
}
.top_news .container > #newsticker {
    position: relative;
}
.top_news .container > #newsticker li {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
    overflow: hidden;
}
.top_news .container > a {
    text-align: right;
    color: #00bffe;
}
.top_news .container > a i {
    margin-left: 0.5em;
}

/* top_sol */
.top_sol {
    position: relative;
    padding: 80px 0;
}
.top_sol .pg-canvas {
    position: absolute;
    top: 0;
}
.top_sol .container > .ttl {
    font-size: 55px;
    color: #00bffe;
    text-align: center;
    font-weight: 100;
    padding: 0 0 70px;
    line-height: 1.1;
}
.top_sol .list {
    margin-bottom: 42px;
}
.top_sol .list li {
    display: inline-block;
    width: 626px;
    margin-right: 28px;
    margin-bottom: 28px;
}
.top_sol .list li:nth-child(2n) {
    margin-right: 0;
}
.top_sol .list li a {
    border: 1px solid #FFF;
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,.1);
    display: table;
    background: #FFF;
    width: 100%;
    border-spacing: 4px;
}
.top_sol .list li a:hover {
    border: 1px solid #00bffe;
    transition: border .2s ease-out;
}
.top_sol .list li a > * {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: center;
}
.top_sol .list li a > .box i {
    font-size: 50px;
    color: #FFF;
    border-radius: 50%;
    background: #00bffe;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.top_sol .list li a > .box .ttl {
    margin: 20px 0 25px;
}
.top_sol .list li a > .box .ttl span {
    font-size: 20px;
    color: #00bffe;
    margin-top: 10px;
    display: block;
}
.top_sol .list li a > .box .txt {
    padding: 0 10px;
    line-height: 1.7;
}

/* top_about */
.top_about {
    background: #f3f3f3;
    padding: 70px 0;
}
.top_about .container > .ttl {
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
}
.top_about .container > .ttl span {
    font-size: 55px;
    color: #00bffe;
    display: block;
    font-weight: 100;
    margin-bottom: 15px;
}
.top_about .container ul {
    display: table;
    width: 100%;
    border-spacing: 30px 0;
    margin-left: -30px;
}
.top_about .container ul li {
    display: table-cell;
    width: 33.33%;
    text-align: center;
}
.top_about .container ul li a {
    display: block;
}
.top_about .container ul li .ttl {
    font-size: 20px;
    color: #00bffe;
    margin: 20px 0 15px;
}
.top_about .container ul li .txt {
    line-height: 1.7;
}

/* top_newsbnr */
.top_newsbnr {
    padding: 20px 0 70px;
    border-bottom: 1px solid #f3f3f3;
}
.top_newsbnr .container {
    display: table;
}
.top_newsbnr .container > * {
    display: table-cell;
    padding: 0 50px;
    vertical-align: top;
}
.top_newsbnr .container > .news {
    border-right: 1px solid #e4e4e4;
}
.top_newsbnr .container > .news > .ttl {
    display: table;
    width: 100%;
}
.top_newsbnr .container > .news > .ttl > * {
    display: table-cell;
    vertical-align: middle;
}
.top_newsbnr .container > .news > .ttl > span {
    font-size: 40px;
    font-weight: 100;
    color: #00bffe;
}
.top_newsbnr .container > .news > .ttl > a {
    text-align: right;
    color: #00bffe;
}
.top_newsbnr .container > .news > .ttl > a i {
    margin-left: 0.5em;
}
.top_newsbnr .container > .news > .list > li {
    float: left;
    width: 255px;
    margin-right: 28px;
    margin-top: 28px;
    position: relative;
}
.top_newsbnr .container > .news > .list > li:nth-child(3n) {
    margin-right: 0;
}
.top_newsbnr .container > .news > .list > li a {
    padding: 4px;
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,.1);
    display: block;
    border: 1px solid #FFF;
}
.top_newsbnr .container > .news > .list > li a:hover {
    border: 1px solid #00bffe;
    transition: border .2s ease-out;
}
.top_newsbnr .container > .news > .list > li .box {
    padding: 10px 4px 4px;
}
.top_newsbnr .container > .news > .list > li .txt {
    position: relative;
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    margin-top: 7px;
}
.top_newsbnr .container > .news > .list > li .txt:after {
    content: "…";
    display: block;
    position: absolute;
    bottom: 0;
    right: 1px;
    background: #FFF;
}
.top_newsbnr .container > .news > .list > li .tag {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 12px;
    color: #FFF;
    background: #00bffe;
    border-radius: 3px;
    padding: 10px;
}
.top_newsbnr .container > .news > .list > li .img {
    width: 245px;
    height: 140px;
    padding: 0;
    margin: 0;
    border: none;
    background: #fff;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.top_newsbnr .container > .bnr li {
    margin-top: 30px;
}
.top_newsbnr .container > .bnr a {
    display: block;
    width: 255px;
    height: 235px;
    text-align: center;
    line-height: 235px;
    color: #FFF;
    font-size: 30px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
}
.top_newsbnr .container > .bnr .bnr01 {
    background: url(../img/top/bnr01.jpg) no-repeat;
}
.top_newsbnr .container > .bnr .bnr02 {
    background: url(../img/top/bnr02.jpg) no-repeat;
}

/*===== SOLUTION =====*/
/* sec_ttl */
.sec_ttl.service {
    background: url(../img/solution/bg.jpg) no-repeat;
    background-size: cover;
}
.ser_main > ul > li {
    margin-bottom: 50px;
}
.ser_main > ul > li:last-child {
    margin-bottom: 0;
}
.ser_main > ul > li > a {
    display: table;
    width: 100%;
    background: #00bffe;
    color: #FFF;
}
.ser_main > ul > li:nth-child(2n) > a {
    background: #333;
}
.ser_main > ul > li > a > * {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}
.ser_main > ul > li > a > .box {
    padding: 0 50px;
}
.ser_main > ul > li > a > .box > .ttl {
    font-size: 45px;
    font-weight: 100;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.ser_main > ul > li > a > .box > .ttl:after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background-color: rgba(255,255,255,.5);
    position: absolute;
    left: 0;
    bottom: 0;
}
.ser_main > ul > li > a > .box > .ttl span {
    font-size: 18px;
    display: block;
    font-weight: 200;
    margin-top: 20px;
}
.ser_main > ul > li > a > .box > .txt {
    line-height: 1.7;
}
.ser_main > ul > li > a > .box > .more {
    width: 105px;
    margin: 30px auto 0;
    text-align: center;
    padding: 6px 0;
    border: 1px solid #4dd2fe;
    float: right;
}
.ser_main > ul > li:nth-child(2n) > a > .box > .more {
    border: 1px solid #717171;
}
.ser_main > ul > li > a > .box > .more i {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 0.5em;
}

/*===== CORPORATE =====*/
/* sec_ttl */
.sec_ttl.corporate {
    background: url(../img/corporate/bg.jpg) no-repeat;
    background-size: cover;
}

/* cor_main */
.cor_main > ul {
    display: table;
    width: 1120px;
    border-spacing: 50px 0;
    margin-bottom: 50px;
    margin-left: -50px;
}
.cor_main > ul:last-child {
    margin-bottom: 0;
}
.cor_main > ul > li {
    display: table-cell;
    width: 33.33%;
}
.cor_main > ul > li.none {
    background: none;
}
.cor_main > .list01 > li,
.cor_main > .list02 > li:nth-child(2n) {
    background: #00bffe;
}
.cor_main > .list01 > li:nth-child(2n),
.cor_main > .list02 > li {
    background: #333;
}
.cor_main > ul > li > a {
    color: #FFF;
}
.cor_main > ul > li > a > .box {
    padding: 30px 25px;
}
.cor_main > ul > li > a > .box > .ttl {
    text-align: center;
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
    font-weight: 100;
}
.cor_main > ul > li > a > .box > .ttl.ls {
    letter-spacing: -0.08em;
}
.cor_main > ul > li > a > .box > .ttl:after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background-color: rgba(255,255,255,.5);
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -22.5px;
}
.cor_main > ul > li > a > .box > .txt {
    line-height: 1.7;
}
.cor_main > ul > li > a > .box > .more {
    width: 105px;
    margin: 20px auto 0;
    text-align: center;
    padding: 6px 0;
}
.cor_main > .list01 > li > a > .box > .more,
.cor_main > .list02 > li:nth-child(2n) > a > .box > .more {
    border: 1px solid #4dd2fe;
}
.cor_main > .list01 > li:nth-child(2n) > a > .box > .more,
.cor_main > .list02 > li > a > .box > .more {
    border: 1px solid #717171;
}
.cor_main > ul > li > a > .box > .more i {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 0.5em;
}

/* cor_sec01 */
.cor_sec01 {
    display: table;
}
.cor_sec01 > * {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}
.cor_sec01 > .box {
    padding-right: 30px;
}
.cor_sec01 > .box > .ttl {
    font-size: 45px;
    color: #00bffe;
    font-weight: 100;
    text-indent: -0.5em;
    position: relative;
    margin-bottom: 60px;
    line-height: 1.2;
}
.cor_sec01 > .box > .ttl.mes {
    text-indent: inherit;
    letter-spacing: -0.02em;
}
.cor_sec01 > .box > .ttl:after {
    content: "";
    display: block;
    position: absolute;
    width: 45px;
    height: 1px;
    background: #bfbfbf;
    left: 0;
    bottom: -30px;
}
.cor_sec01 > .box > .txt {
    margin-top: 1.5em;
    line-height: 1.7;
}
.cor_sec01 > .img {
    padding-left: 30px;
}
.cor_sec01 > .box > .name {
    float: right;
    margin-top: 40px;
}
.cor_sec01 > .box > .name > .txt {
    margin-bottom: 10px;
}

/* cor_sec02 */
.cor_sec02 {
    margin-top: 80px;
}
.cor_sec02 > .ttl {
    color: #00bffe;
    font-size: 18px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.cor_sec02 > .ttl > span {
    font-size: 45px;
    display: block;
    font-weight: 100;
    margin-bottom: 15px;
}
.cor_sec02 > .ttl:after {
    content: "";
    position: absolute;
    display: block;
    width: 45px;
    height: 1px;
    background: #bfbfbf;
    left: 50%;
    bottom: 0;
    margin-left: -22.5px;
}
.cor_sec02 > .txt {
    text-align: center;
    line-height: 1.7;
}
.cor_sec02 > .list {
    display: table;
    width: 1220px;
    margin-top: 45px;
    margin-left: -50px;
    border-spacing: 50px 0;
}
.cor_sec02 > .list > li {
    display: table-cell;
    width: 33.33%;
    border: 1px solid #00bffe;
    border-radius: 3px;
    padding: 30px 20px;
}
.cor_sec02 > .list > li .ttl {
    text-align: center;
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.cor_sec02 > .list > li .ttl > span {
    font-size: 30px;
    color: #00bffe;
    display: block;
    font-weight: 200;
    margin-top: 15px;
}
.cor_sec02 > .list > li .ttl > span.mincari {
    font-size: 25px;
}

.cor_sec02 > .list > li .ttl > .fs {
    font-size: 0.8em;
}
.cor_sec02 > .list > li .ttl:after {
    content: "";
    position: absolute;
    display: block;
    width: 45px;
    height: 1px;
    background: #bfbfbf;
    left: 50%;
    bottom: 0;
    margin-left: -22.5px;
}
.cor_sec02 > .list > li .txt {
    line-height: 1.7;
}
.cor_sec02 + .cor_sec02 {
    margin-bottom: 70px;
}
.cor_sec02 > .link {
    margin: 50px 0 70px;
    text-align: center;
}
.cor_sec02 > .link > li {
    display: inline-block;
    vertical-align: top;
    /* text-align: center; */
    width: 535px;
    margin-right: 50px;
}
.cor_sec02 > .link > li:last-child {
    margin-right: 0;
}
.cor_sec02 > .link > li > a {
    display: block;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 4px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 30px 30px 0;
}
.cor_sec02 > .link > li > a:hover {
    border: 1px solid #00bffe;
    margin-top: 3px;
    background: #f9f9f9;
}
.cor_sec02 > .link > li > a:hover > i {
    background: #00bffe;
}
.cor_sec02 > .link > li > a > i {
    font-size: 60px;
    color: #FFF;
    background: #CCC;
    display: inline-block;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 50%;
}
.cor_sec02 > .link > li > a > .ttl {
    color: #00bffe;
    font-weight: 300;
    font-size: 24px;
    margin: 20px 0 30px;
}

/* cor_pro */
.cor_pro > .ttl {
    color: #00bffe;
    font-size: 45px;
    text-align: center;
    font-weight: 100;
    margin-top: -30px;
}
.cor_pro > .ttl rt {
    font-size: 16px;
    font-weight: 200;
}
.cor_pro > .img {
    text-align: center;
}
.cor_pro > table {
    width: 800px;
    margin: 30px auto 65px;
}
.cor_pro > table th,
.cor_pro > table td {
    border-bottom: 1px solid #d9d9d9;
    padding: 15px 0 15px 60px;
    vertical-align: middle;
    line-height: 1.7;
    position: relative;
}
.cor_pro > table th {
    width: 180px;
    text-align: left;
}
.cor_pro > table td a {
    position: absolute;
    right: 60px;
    bottom: 15px;
    font-weight: 500;
    color: #00bffe;
}
.cor_pro > table td a i {
    margin-left: 0.5em;
}

/* cor_his */
.cor_his > .line {
    width: 800px;
    background: url(../img/corporate/his_line.png) repeat-y;
    margin: 0 auto;
}
.cor_his > .dash {
    width: 800px;
    background: url(../img/corporate/his_dash.png) repeat-y bottom;
    margin: 0 auto;
    padding-bottom: 45px;
}
.cor_his .box {
    margin-bottom: 30px;
}
.cor_his .box:last-child {
    margin-bottom: 0;
    padding-bottom: 30px;
}
.cor_his .box > .year,
.cor_his .box > .list {
    display: inline-block;
    vertical-align: top;
}
.cor_his .box > .list > li {
    margin-bottom: 30px;
}
.cor_his .box > .list > li > * {
    display: inline-block;
    vertical-align: middle;
}
.cor_his .year {
    color: #00bffe;
    font-size: 30px;
    font-weight: 100;
    margin: 18px 60px 0 28px;
}
.cor_his .box > .list > li > .month {
    background: #00bffe;
    color: #FFF;
    font-size: 24px;
    font-weight: 100;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    margin-right: 60px;
}
.cor_his .box > .list > li > .txt {
    font-size: 16px;
}
.cor_his > .ttl {
    font-size: 45px;
    color: #00bffe;
    font-weight: 100;
    text-align: center;
    margin: 50px auto 70px;
}

/* cor_map */
.cor_map > .ttl {
    text-align: center;
    font-size: 36px;
    color: #00bffe;
    font-weight: 100;
    margin-bottom: 60px;
}
.cor_map > .map {
    width: 100%;
    height: 400px;
}
.cor_map > .box {
    margin: 50px 0 160px 100px;
    position: relative;
    display: table;
    border-spacing: 50px 0;
}
.cor_map > .box > * {
    display: table-cell;
    vertical-align: top;
    line-height: 1.7;
}
.cor_map > .box > .img {
    position: absolute;
    left: 0;
    top: -100px;
}
.cor_map > .box > .add {
    padding-left: 145px;
    width: 345px;
}
.cor_map > .box > .add a {
    display: block;
    color: #00bffe;
    font-weight: 500;
    margin-top: 0.8em;
}
.cor_map > .box > .add a i {
    margin-left: 0.5em;
    font-size: 16px;
}
.cor_map > .box > .acc > * {
    display: inline-block;
    margin-right: 15px;
    width: 230px;
    vertical-align: top;
    letter-spacing: -0.07em;
}
.cor_map > .box > .acc > p+p {
    margin-right: 0;
}

/* .cor_pri */
.cor_pri {
    width: 800px;
    margin: 0 auto 70px;
}
.cor_pri p {
    line-height: 1.7;
    margin-bottom: 1.5em;
}
.cor_pri .txt.right {
    text-align: right;
    margin-bottom: 2em;
}
.cor_pri .txt.center {
    text-align: center;
}
.cor_pri > .ttl {
    text-align: center;
    margin: 40px 0;
    color: #00bffe;
    font-weight: 100;
    font-size: 36px;
}
.cor_pri > .list {
    margin-bottom: 70px;
}
.cor_pri > .list > li {
    border-bottom: 1px solid #d9d9d9;
    padding: 0 20px;
    margin-bottom: 1.5em;
}
.cor_pri > .list > li > .txt {
    text-indent: -1em;
    padding-left: 1em;
}
.cor_pri > .list > li > .txt a {
    text-decoration: underline;
}
.cor_pri > .list > li > ul {
    margin: 0 3em 1.5em;
    line-height: 1.7;
}
.cor_pri > .list > li > .att {
    margin: 0 0 1.5em;
}
.cor_pri > .list > li > ul > li {
    text-indent: -1em;
    padding-left: 1em;
}
.cor_pri table {
    width: 100%;
    border: 1px solid #d9d9d9;
    margin-bottom: 30px;
}
.cor_pri table th,
.cor_pri table td {
    padding: 12px;
    border-bottom: 1px solid #d9d9d9;
}
.cor_pri table th {
    background: #f4f4f4;
    width: 150px;
    text-align: left;
}
.cor_pri > .list + .right {
    margin-top: -50px;
}
.cor_pri > .list + .right + .right {
    margin-bottom: 50px;
}

/*===== NEWS =====*/
/* sec_ttl */
.sec_ttl.news {
    background: url(../img/news/bg.jpg) no-repeat;
    background-size: cover;
}

/* news_list */
.news_list {
    display: inline-block;
    vertical-align: top;
    width: 850px;
    border-right: 1px solid #CCC;
    padding-right: 50px;
}
.news_list > .cate_ttl {
    font-size: 30px;
    color: #00bffe;
    font-weight: 300;
}
.news_list > .list > li {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ececec;
}
.news_list > .list > li > .head {
    display: table;
    width: 100%;
}
.news_list > .list > li > .head > * {
    display: table-cell;
    vertical-align: middle;
}
.news_list > .list > li > .head > .tag {
    text-align: right;
}
.news_list > .list > li > .head > .tag > span {
    background: #00bffe;
    color: #FFF;
    font-size: 12px;
    padding: 6px 9px;
    border-radius: 3px;
}
.news_list > .list > li > .ttl {
    color: #00bffe;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
    display: block;
    line-height: 1.3;
}
.news_list > .list > li > .txt {
    line-height: 1.7;
}

/* News PC,スマートフォン画像切り替え */
.news_list > .list > li > .txt img.pcImg { display: block !important; }
.news_list > .list > li > .txt img.spImg { display: none !important; }

@media only screen and (max-width: 750px) {
.news_list > .list > li > .txt img.pcImg { display: none !important; }
.news_list > .list > li > .txt img.spImg { display: block !important; }
}

.news_list > .list > li > .txt > p {
    margin-top: 1em;
}
.news_list > .list > li > .txt > .more {
    float: right;
    color: #00bffe;
}
.news_list > .list > li > .txt > .more i {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 0.3em;
    margin-bottom: 0.1em;
}
.news_list > .pager {
    text-align: center;
    margin-top: 50px;
}
.news_list > .pager > li {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #00bffe;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 34px;
    margin-right: 7px;
}
.news_list > .pager > li:last-child {
    margin-right: 0;
}
.news_list > .pager > li.active {
    background: #00bffe;
    color: #FFF;
}
.news_list > .pager > li.arw {
    border: none;
    font-size: 24px;
}
.news_list > .pager > li > a {
    color: #00bffe;
    display: block;
    width: 100%;
    height: 100%;
}
.news_list > .link {
    margin-top: 50px;
    text-align: center;
}
.news_list > .link a {
    color: #00bffe;
}
.news_list > .link > .nextprev {
    display: table;
    width: 100%;
    margin-bottom: -1.3em;
}
.news_list > .link > .nextprev > li {
    display: table-cell;
    width: 50%;
    text-align: left;
}
.news_list > .link > .nextprev > li:last-child {
    text-align: right;
}
.news_list > .link > .nextprev > li a i {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 0.3em;
    margin-bottom: 0.1em;
}
.news_list > .link > .nextprev > li:last-child a i {
    margin-left: 0.3em;
}
.news_list > .link > .back i {
    font-size: 16px;
    margin-left: 0.3em;
}

/* news_cat */
.news_cate {
    display: inline-block;
    vertical-align: top;
    width: 270px;
    padding-left: 50px;
}
.news_cate > .ttl {
    font-size: 24px;
    text-align: right;
    color: #00bffe;
    font-weight: 300;
    margin: 20px 0;
}
.news_cate > .list {
    margin-bottom: 50px;
}
.news_cate > .list > li {
    margin-bottom: 20px;
}
.news_cate > .list > li > a {
    display: block;
}
.news_cate > .list > li > a > i {
    color: #00bffe;
    font-size: 10px;
    vertical-align: middle;
    margin-right: 0.7em;
}

/*===== CONTACT =====*/
/* sec_ttl */
.sec_ttl.contact {
    background: url(../img/contact/bg.jpg) no-repeat;
    background-size: cover;
}

/* contact_main */
.contact_main > .ttl {
    font-size: 36px;
    color: #00bffe;
    text-align: center;
    font-weight: 100;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}
.contact_main > .ttl:after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #bfbfbf;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -35px;
}
.contact_main > .txt {
    text-align: center;
    line-height: 1.5;
}
.contact_main > ul.txt {
    width: 520px;
    margin: 1em auto 0;
}
.contact_main > ul.txt > li {
    text-align: left;
}
.contact_main > .link {
    margin: 50px 0 70px;
}
.contact_main > .link > li {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 535px;
    margin-right: 50px;
}
.contact_main > .link > li:last-child {
    margin-right: 0;
}
.contact_main > .link > li > a {
    display: block;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 4px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 30px;
}
.contact_main > .link > li > a:hover {
    border: 1px solid #00bffe;
    margin-top: 3px;
    background: #f9f9f9;
}
.contact_main > .link > li > a:hover > i {
    background: #00bffe;
}
.contact_main > .link > li > a > i {
    font-size: 60px;
    color: #FFF;
    background: #CCC;
    display: inline-block;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 50%;
}
.contact_main > .link > li > a > .ttl {
    color: #00bffe;
    font-weight: 300;
    font-size: 24px;
    margin: 20px 0;
}
.contact_main > .link > li > a > .txt {
    line-height: 1.5;
}
.contact_main > .tel {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 30px;
}
.contact_main > .tel > * {
    display: inline-block;
    color: #00bffe;
    font-size: 48px;
}
.contact_main > .tel > i {
    margin-right: 0.25em;
}
.contact_main > .tel > .txt {
    font-weight: 500;
}

/* form */
.contact_main > .form > .ttl {
    color: #00bffe;
    font-size: 20px;
    border: 1px solid #ececec;
    border-radius: 3px;
    font-weight: 300;
    padding: 14px;
    margin-top: 50px;
}
.contact_main > .form > ul > li {
    border-bottom: 1px solid #ececec;
    padding: 23px 10px;
}
.contact_main > .form > ul > li:last-child {
    border-bottom: none;
    padding: 23px 10px 0;
}
.contact_main > .form .box01 {
    display: table;
    width: 100%;
}
.contact_main > .form .box01 > * {
    display: table-cell;
    vertical-align: middle;
}
.contact_main > .form .box01 > .ttl {
    width: 240px;
}
.contact_main > .form .box01 > .ttl > * {
    display: table-cell;
    vertical-align: middle;
}
.contact_main > .form .box01 > .ttl > .txt {
    line-height: 1.5;
    width: 190px;
}
.contact_main > .form .box01 > .ttl > .txt span {
    font-size: 12px;
    display: block;
}
.contact_main > .form .box01 > .ttl > .tag {
    text-align: right;
}
.contact_main > .form .box01 > .ttl > .tag span {
    background: #00bffe;
    color: #FFF;
    font-size: 12px;
    letter-spacing: 0.25em;
    padding: 1px 10px 2px;
}
.contact_main > .form .box01 > .input {
    padding-left: 70px;
}
.contact_main > .form .box01 > .input > .text,
.contact_main > .form .box01 > .input > .zip {
    padding: 7px 0;
}
.contact_main > .form .box01 > .input > .text input,
.contact_main > .form .box01 > .input > .zip input{
    border:1px solid #CCC;
    border-radius: 3px;
    padding: 6px 10px;
}
.contact_main > .form .box01 > .input > .text input {
    width: 100%;
}
.contact_main > .form .box01 > .input > .zip input {
    width: 4em;
    margin: 0 5px;
}
.contact_main > .form .box01 > .input > .check > li {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    padding: 7px 0 0 0;
}
.contact_main > .form .box01 > .input > .check.enquete > li {
    width: 32%;
}
.contact_main > .form .box01 > .input input[type=checkbox],
.contact_main > .form .box01 > .input input[type=radio],
.contact_main > .form .privacy > .checkbox input[type=checkbox] {
    display: none;
}
.contact_main > .form .box01 > .input .checkbox:before,
.contact_main > .form .box01 > .input .radio:before,
.contact_main > .form .privacy > .checkbox .checkbox:before {
    content: "\f10c";
    font-family: FontAwesome;
    color: #CCC;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 0.25em;
    /* margin-left: -1em; */
}
.contact_main > .form .box01 > .input .checkbox.active:before,
.contact_main > .form .privacy > .checkbox .checkbox.active:before {
    content: "\f05d";
    font-family: FontAwesome;
    color: #00bffe;
    font-size: 20px;
}
.contact_main > .form .box01 > .input .radio.active:before {
    content: "\f192";
    font-family: FontAwesome;
    color: #00bffe;
    font-size: 20px;
}
.contact_main > .form .box01 > .input label {
    cursor: pointer;
}
.contact_main > .form .box02 > .ttl {
    margin: 7px 0 15px;
}
.contact_main > .form .box02 > .textarea {
    line-height: 1.5;
}
.contact_main > .form .box02 > .textarea textarea {
    width: 100%;
    border:1px solid #CCC;
    border-radius: 3px;
    height: 14em;
    padding: 10px;
}
.contact_main > .form .privacy {
    padding: 15px 10px 0;
}
.contact_main > .form .privacy > .frame {
    border:1px solid #CCC;
    border-radius: 3px;
    padding: 0 20px;
    margin: 15px 0;
    height: 200px;
    overflow-y: scroll;
}
.contact_main > .form .privacy > .frame > .box {
    margin-top: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
    border-bottom: 1px solid #ececec;
}
.contact_main > .form .privacy > .frame > .box > ul {
    margin: 15px 3em;
}
.contact_main > .form .privacy > .frame > .box > .ttl,
.contact_main > .form .privacy > .frame > .box > ul > li {
    text-indent: -1em;
    padding-left: 1em;
}
.contact_main > .form .privacy > .checkbox label {
    background: #ececec;
    border-radius: 3px;
    text-align: center;
    padding: 14px 0;
    cursor: pointer;
    display: block;
}
.contact_main > .form .sec_btn {
    margin-top: 50px;
}
.contact_main > .flow {
    position: absolute;
    right: 30px;
    top: 30px;
    display: table;
}
.contact_main > .flow > li {
    display: table-cell;
    font-size: 14px;
    padding: 0 0 0 10px;
    color: #CCC;
}
.contact_main > .flow > li:after {
    content: "\f105";
    font-family: FontAwesome;
    color: #CCC;
    font-size: 24px;
    vertical-align: middle;
    margin-bottom: 0.3em;
    margin-left: 10px;
    display: inline-block;
}
.contact_main > .flow > li:last-child:after {
    display: none;
}
.contact_main > .flow > li > span {
    background: #CCC;
    color: #FFF;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
}
.contact_main > .flow > li.active {
    color: #00bffe;
}
.contact_main > .flow > li.active > span {
    background: #00bffe;
}
.contact_main .sec_btn.home {
    margin-top: 50px;
}

/*===== CSR =====*/
/* sec_ttl */
.sec_ttl.csr {
    background: url(../img/csr/bg.jpg) no-repeat;
    background-size: cover;
}

/* csr_labo */
.csr_labo {
    border: 1px solid #00bffe;
    border-radius: 3px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}
.csr_labo > .ttl {
    color: #00bffe;
    font-size: 30px;
    margin-bottom: 30px;
}
.csr_labo > .txt {
    line-height: 1.7;
    margin-bottom: 1em;
}
.csr_labo > .att {
    font-size: 12px;
    margin-bottom: 30px;
}

/* csr_list */
.csr_list {
    margin-bottom: 50px;
}
.csr_list > li {
    float: left;
    width: 255px;
    margin-right: 33px;
    position: relative;
}
.csr_list > li:last-child {
    margin-right: 0;
}
.csr_list > li a {
    padding: 4px;
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,.1);
    display: block;
    border: 1px solid #FFF;
}
.csr_list > li a:hover {
    border: 1px solid #00bffe;
    transition: border .2s ease-out;
}
.csr_list > li .box {
    padding: 10px 4px 4px;
}
.csr_list > li .txt {
    position: relative;
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    margin-top: 7px;
}
.csr_list > li .txt:after {
    content: "â€¦";
    display: block;
    position: absolute;
    bottom: 0;
    right: 1px;
    background: #FFF;
}
.csr_list > li .tag {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 12px;
    color: #FFF;
    background: #00bffe;
    border-radius: 3px;
    padding: 10px;
}

/*===== NOT FOUND =====*/
/* sec_ttl */
.sec_ttl.notfound {
    background: url(../img/404/bg.jpg) no-repeat;
    background-size: cover;
}

/* contact_main */
.not_main > .ttl {
    font-size: 45px;
    color: #00bffe;
    text-align: center;
    font-weight: 100;
}
.not_main > .txt {
    line-height: 1.7;
    margin: 70px 0;
    text-align: center;
}

/*===== STAFF =====*/
/* sec_ttl */
.sec_ttl.staff {
    background: url(../img/staff/bg.jpg) no-repeat;
    background-size: cover;
}

/* staff_main */
.staff_main > .ttl {
    font-size: 40px;
    color: #00bffe;
    text-align: center;
    font-weight: 100;
    margin-bottom: 50px;
}
.staff_main > .list > li {
    float: left;
    width: 265px;
    margin-right: 20px;
    margin-top: 20px;
}
.staff_main > .list > li:nth-child(4n) {
    margin-right: 0;
}
.staff_main > .list > li > a {
    display: block;
    background: #000;
}
.staff_main > .list > li > a img {
    width: 100%;
    opacity: .5;
    transition: opacity .2s ease-out;
}
.staff_main > .list > li > a:hover img {
    opacity: 1;
}

/* staff_modal */
.staff_modal {
    padding: 50px;
    display: table;
    display: none;
}
.staff_modal > * {
    display: table-cell;
    vertical-align: middle;
}
.staff_modal > .box {
    padding-left: 50px;
}
.staff_modal > .box .ttl {
    margin: 40px 0 15px;
    color: #00bffe;
    font-size: 20px;
}
.staff_modal > .box .ttl i {
    color: #bcbcbc;
    margin-right: 0.3em;
}
.staff_modal > .box .txt,
.staff_modal > .box table{
    line-height: 1.7;
}
.staff_modal > .box > .head > * {
    display: table-cell;
    vertical-align: middle;
}
.staff_modal > .box > .head > .name {
    font-size: 50px;
    color: #00bffe;
    font-weight: 100;
    width: 322px;
}
.staff_modal > .box > .head > .category {
    width: 310px;
}
.staff_modal > .box > .head > .category > li {
    float: left;
    width: 100px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    text-align: center;
    color: #bcbcbc;
    background: #EEE;
    padding: 8px 0;
    border-radius: 3px;
}
.staff_modal > .box > .head > .category > li.active {
    color: #FFF;
    background: #00bffe;
}
.staff_modal > .box > .head > .category > li:nth-child(3n) {
    margin-right: 0;
}
.staff_modal > .box > .box > * {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}
.staff_modal > .box > .box > .result th {
    text-align: left;
    width: 4em;
}
.staff_modal > .box > .box > .result td {
    padding-right: 2em;
}
.fancybox-type-inline {
    margin-left: -8px !important;
}
.fancybox-type-inline .fancybox-skin {
    -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
            box-shadow: none !important;
}
.fancybox-type-inline .fancybox-skin {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}
.fancybox-type-inline .fancybox-close {
    background-image: url(../img/common/close.png);
    background-size: contain;
    width: 30px;
    height: 30px;
    left: 50%;
    top: inherit;
    bottom: -60px;
    margin-left: -15px;
}
.fancybox-type-inline .fancybox-close:after {
    content: "CLOSE";
    font-size: 12px;
    color: #00bffe;
    position: absolute;
    left: -4px;
    bottom: -17px;
    font-weight: 300;
}

.solution_modal {
    background: #FFF;
    color: #333;
    padding: 50px 0;
    display: none;
}
.fancybox-overlay .cor_sec02 > .list{
        margin: 0 auto;
}


.fancybox-outer .btn{
    background: #5c5c5c;
    display: block;
    border-radius: 3px;
    color: #FFF;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.25);
    font-size: 18px;
    max-width: 320px;
    padding: 17px;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
    transition: background .2s ease-out;
}
.fancybox-outer .btn:hover {
    background: #00bffe;
}
.fancybox-outer .btn i {
    color: #00bffe;
    margin-left: 7px;
}
.fancybox-outer .btn:hover i {
    color: #FFF;
}

.validation-error li:not(:first-child) span.wpcf7-not-valid-tip{
        display: none;
}

.cor_sec02.sol {
    margin-top: 0;
}
.cor_sec02.sol > .list {
    margin-left: 0;
    width: 100%;
}
.cor_sec02.sol > .list > li > .txt {
    text-align: center;
}
.cor_sec02.sta > .list > li > .ttl {
    margin-bottom: 0;
    padding-bottom: 0;
}
.cor_sec02.sta > .list > li > .ttl:after {
    display: none;
}

/* 170613 */
.cor_sec02.performance > .list > li {
    padding: 30px 20px;
}
.cor_sec02.performance > .list > li .ttl{
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.cor_sec02.performance > .list > li .img img{
    margin: 0 auto;
    display: block;
}
.cor_sec02.performance > .list > li .ttl:after{
    background: none;
}

/*
	Press Release
*/
table.pr-2col { width: 100%;}
table.pr-position-2col { width: 80%;}
table.pr-2col, table.pr-position-2col { margin: 1.5em 0;}
table.pr-2col th, table.pr-position-2col th { background: #f4f4f4;}
table.pr-2col th, table.pr-2col td,
table.pr-position-2col th, table.pr-position-2col td { padding: 10px; border: 1px solid #ddd;}

table.pr-2col th, table.pr-position-2col th { text-align: center;}
table.pr-2col td.name { width: 20%; text-align: center;}
table.pr-position-2col td.name { width: 50%; text-align: center;}

@media only screen and (max-width:499px){
	.table-wrapper{
		width: 100%;
		overflow-x: auto;
	}
	.table-wrapper::-webkit-scrollbar{
		background: #fff;
		border-radius: 5px;
		height: 4px;
		border: 1px solid #EEE;
	}
	.table-wrapper::-webkit-scrollbar-thumb{
		background: #EEE;
		border-radius: 5px;
	}
	table.pr-2col { width: 750px;  -webkit-text-size-adjust: 100%;}
	table.pr-2col td.name { width: 25%; text-align: center;}
	table.pr-position-2col { width: 500px;  -webkit-text-size-adjust: 100%;}
}