@charset "utf-8";

/* android対策 */
p { background-image: url(../images/pix.gif); }

/*--------------------------------------------------------
★レスポンシブ■タブレット対応
--------------------------------------------------------*/
@media screen and (max-width: 950px) {
	/* layout */
	html{
		width: 950px;
		overflow: visible!important;
	}
	body {
		width: 950px;
		overflow: visible!important;
	}
	.wrapper {
		position: relative;
		width: 950px;
		margin: auto;
		padding: 0;
	}
	/* header */
	header{
		width: 950px;
	}
	footer{
		width: 950px;
	}
}

/*--------------------------------------------------------
★レスポンシブ■スマホ表示切替ボタン
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
	.contact_btn a{
		margin-left: 0;
	}
	li a#btnSP{
		display: none;
	}
	li a#btnPC{
		position: fixed;
	    display: block;
	    width: 30%;
	    height: auto;
	    z-index: 100;
	    font-size: 12px;
	    padding: 8px 2px;
	    border-radius: 8px;
	    box-sizing: border-box;
	    border: 2px solid #000;
	    background-color: #fff;
	    box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
	    text-align: center;
	    color: #000;
	    text-decoration: none;
	    bottom: 12px;
	    left: 12px;
	    z-index: 10!important;
	    line-height: 1.2em;
	}
}
@media screen and (min-width: 481px) {
	#switch{
		display: none;
		height: 0;
	}
	li a#btnSP{
		display: none;
	}
	li a#btnPC{
		display: none;
	}
}

@media screen and (min-width:1021px) {
	#switch{
		display: block;
		height: auto;
	}
	li a#btnPC{
		display: none;
	}
	li a#btnSP{
		position: fixed;
		display: block!important;
		width: 300px;
		height: auto;
		z-index: 100;
		font-size: 24px;
		padding: 8px;
		text-align: center;
		border-radius: 22px;
		background-color: #000;
		box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
		color: #fff;
		text-decoration: none;
		bottom: 40px;
		left: 15px;
		z-index: 99999999!important;
	}
}
@media screen and (min-width: 1023px) {
	#switch{
		display: none;
		height: 0;
	}
	li a#btnSP{
		display: none;
	}
	li a#btnPC{
		display: none;
	}
}
/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 481px) {
	.pc_none{
		display: none!important;
	}
}
@media screen and (max-width: 480px) {
	/* header */
	header{
		max-width: 480px;
    width: 100%;
    height: auto;
    border-top: none;
    padding-top: 50px;
    margin-bottom: 0!important;
	}
	.sp_none{
		display: none!important;
	}
/* ------------------------------------------------------------
	   引出しメニュー
	------------------------------------------------------------ */
	.fixed_header{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: #fff;
        z-index: 10;
    }
    .fixed_header .logo{
        height: 50px;
        width: 100%;
        background: url(../images/logo.svg) no-repeat, #fff;
        -webkit-background-size: auto 30px;
        background-size: auto 30px;
        background-position: left 10px center;
        display: block;
        box-shadow: 0 2px 2px rgba(0,0,0,.2);
    }
    .fixed_header .sp_contact_menu{
        width: 50px;
        height: 50px;
        position: fixed;
        right: 50px;
        top: 0;
        background: url(../images/mail.png) no-repeat, #2578ff;
        -webkit-background-size: 26px auto, cover;
        background-size: 26px auto, cover;
        background-position: top 10px center, center;
        font-size: 8px;
        box-sizing: border-box;
        color: #fff;
        text-align: center;
        padding-top: 28px;
        font-weight: 600;
        letter-spacing: -.06em;
    }
    .fixed_header .fixed_menu{
        width: 46px;
        height: 46px;
        position: fixed;
        right: 5px;
        top: 2px;
        background: #2578ff;
        border-radius: 50%;
    }
.nav-unshown {
  display:none;
}
#nav-open {
  display: inline-block;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 0;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #2578ff;
  display: block;
  content: '';
  cursor: pointer;
  left: 0;
  right: 0;
  margin: auto;
  transform: .25s;
}
#nav-open span{
    top: 15px;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: -2;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
#nav-content {
  overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: rgba(255,255,255,.9);
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(105%);
    padding-top: 60px;
}
#nav-content li{
    padding:10px;
}
#nav-content li a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 30px;
    height: 30px;
}
#nav-content li.appeal a::before{
    background: url(../images/h2_works.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#nav-content li.timeline a::before{
    background: url(../images/top_product_h.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#nav-content li.qanda a::before{
    background: url(../images/h2_about.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#nav-content li.recruit a::before{
    background: url(../images/h2_recruit.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#nav-content li a{
    padding-left: 40px;
    line-height: 1em;
    font-size: 16px;
    color: #2578ff;
    font-weight: 600;
    position: relative;
}
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-input:checked ~ #nav-open{
    background: #e6e6e6;
}
#nav-input:checked ~ #nav-open span{
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}
#nav-input:checked ~ #nav-open span::before{
    transform: rotate(90deg);
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}
#nav-input:checked ~ #nav-open span::after{
    opacity: 0;
}


}


/*--------------------------------------------------------
★レスポンシブ■コンテンツ部分
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
html{
	max-width: 480px;
		width: 100%;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%!important;
}
body {
	max-width: 480px;
	min-width: 320px;
	width: 100%;
	overflow-x: hidden!important;
	box-shadow: none;
    font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 0;
	-webkit-text-size-adjust: 100%!important;
	top: 0!important;
}

/* layout
------------------------------ */

.wrapper{
    max-width: 480px;
	width: 92%!important;
	margin: 0;
	padding: 0 4%;
}

/* Common
------------------------------ */
.fl_l{
	float: none;
}
.fl_r{
	float: none;
}
p{
	word-wrap: inherit;
}
.btn{
    padding: .6em 34px .5em 1em;
    color: #fff;
    line-height: 1em;
    border: 1px solid #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.btn::after{
    content: "";
    position: absolute;
    transform: rotate(45deg);
    transition: .25s;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 6px;
    height: 6px;
}
.btn:hover{
    background: #fff;
    color: #2578ff;
}
.btn:hover::after{
    border-top: 1px solid #2578ff;
    border-right: 1px solid #2578ff;
}
.logo{
    text-indent: -9999px;
    background: url(../images/logo.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
.contact_a{
    width: 187px;
    height: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    padding: .7em .5em .5em 46px;
    color: #fff;
    line-height: 1em;
    background: #2578ff;
    border: 1px solid #2578ff;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}
.contact_a:hover{
    background: #fff;
    color: #2578ff;
}
.contact_a::before{
    content: "";
    position: absolute;
    background: url(../images/mail.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 24px;
    height: 19px;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: .25s;
}
.contact_a:hover::before{
    background: url(../images/mail_h.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
.list{
    position: relative;
    z-index: 1;
}
.list::before{
    content: none;
    position: absolute;
    width: 6px;
    height: 100%;
    left: 208px;
    top: 0;
    background: #fff;
    z-index: 1;
}
.list::after{
    content: none;
    position: absolute;
    width: 208px;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(37,120,255,.2);
    z-index: -1;
}
.list dt{
    float: none;
    padding: 12px 20px;
    font-size: 16px;
    color: #2578ff;
    font-weight: 600;
    width: 100%;
    background: rgba(37,120,255,.2);
    box-sizing: border-box;
}
.list dd{
    padding: 12px 20px;
    position: relative;
    border-bottom: 6px solid #fff;
    width: 100%;
    box-sizing: border-box;
    background: #f1f1f1;
}
.list dd::after{
    z-index: -1;
    content: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 685px;
    background: #f1f1f1;
}
/* Header
------------------------------ */
header .fl_l{
    width: 100%;
    margin-bottom: 72px;
}
header .fl_l li{
    width: 100%;
    height: 143px;
    margin-top: 12px;
    padding: 26px 15px;
    box-sizing: border-box;
    position: relative;
}
header .fl_l li.top_logo{
    padding-top: 18px;
    background: #fff;
}
header .fl_l li.top_logo h2{
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -.02em;
}
header .fl_l li.top_logo .logo{
    width: 207px;
    height: 35px;
}
header .fl_l li.top_logo .logo,
header .fl_l li.top_logo p{
    display: inline-block;
    vertical-align: middle;
}
header .fl_l li.top_logo p{
    text-indent: -9999px;
    background: url(../images/top_logo_p.jpg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    margin-left: 10px;
    width: 107px;
    height: 25px;
}
header .fl_l h2{
    font-size: 24px;
    color: #fff;
    position: relative;
}
header .fl_l li.top_appeal{
    background: url(../images/top_appeal_bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
header .fl_l li.top_timeline{
    background: url(../images/top_timeline_bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
header .fl_l li.top_qanda{
    background: url(../images/top_qanda_bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
header .fl_l li.top_appeal h2,
header .fl_l li.top_timeline h2,
header .fl_l li.top_qanda h2{
    padding-left: 46px;
}
header .fl_l li.top_appeal h2::before,
header .fl_l li.top_timeline h2::before,
header .fl_l li.top_qanda h2::before{
    content: "";
    position: absolute;
    width: 37px;
    height: 37px;
    left: 0;
    top: -6px;
}
header .fl_l li.top_appeal h2::before{
    background: url(../images/top_appeal.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
header .fl_l li.top_timeline h2::before{
    background: url(../images/top_timeline.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
header .fl_l li.top_qanda h2::before{
    background: url(../images/top_qanda.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
header .btn{
    position: relative;
    right: auto!important;
    bottom: auto!important;
    margin-top: 20px!important;
    height: auto!important;
    width: 200px;
    box-sizing: border-box;
}
header .fl_r{
    width: 100%;
}
header .fl_r div{
    margin-top: 12px;
    width: 100%;
}
header .fl_r div.top_contact{
    padding-bottom: 10px;
    text-align: right;
    padding-top: 12px;
}
header .fl_r div.top_contact p{
    font-size: 12px;
    width: 244px;
    display: inline-block;
    vertical-align: middle;
    padding-top: 6px;
    line-height: 1.8em;
    height: 50px;
    box-sizing: border-box;
}
header .fl_r div.top_contact p span{
    text-align: left;
    width: 100%;
    height: 24px;
    display: block;
    background: url(../images/tel.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    text-indent: -9999px;
}
header .fl_r div.top_contact .contact_a{
    margin-left: 10px;
}
header div.top_check{
    background: url(../images/top_check_bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: auto;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    text-align: center;
}
header div.top_check h2{
    font-size: 18px;
    color: #fff;
    line-height: 1.5em;
}
header div.top_check li{
    width: 30%;
    height: auto;
    background: rgba(255,255,255,.8);
    position: relative;
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3%;
    text-align: center;
    box-sizing: border-box;
    padding: 70px 4px 20px;
    line-height: 1.2em;
    font-size: 12px;
    font-weight: 600;
}
header .fl_r div.top_check li::before{
    content: "";
    position: absolute;
    background: url(../images/top_check.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 29px;
    height: 45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 14px;
}
header .nav li{
    width: 100%;
    display: inline-block;
    margin-right: 2%;
    letter-spacing: normal;
    vertical-align: top;
    height: auto;
    text-align: center;
}
header .nav li:last-child{
    width: 100%;
}
header .nav li:last-child li{
    width: 49%;
    display: inline-block;
    margin-right: 2%;
    letter-spacing: normal;
    vertical-align: top;
}
header .header_top {
    display: none;
}
header div.top_check {
    background: url(../images/top_check_bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: auto;
    box-sizing: border-box;
    padding: 38px 30px;
    position: relative;
    margin-top: 12px;
    width: 100%;
}
header .nav li:nth-child(2n),
header .nav li:last-child li:last-child{
    margin-right: 0;
}
header .nav li:last-child{
    padding: 0;
}
header .nav li:last-child ul{
    letter-spacing: -.4em;
}
header h2 {
    font-size: 18px;
    color: #fff;
    position: relative;
    display: inline-block;
}
header .fl_r div.top_recruit_contact li{
    width: 49%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2%;
}
header .fl_r div.top_recruit_contact li:last-child{
    margin-right: 0;
}
header .nav li.top_recruit_contact li a{
    color: #000;
    font-size: 16px;
    display: block;
    padding: 50px 0 40px;
    height: auto;
    box-sizing: border-box;
    font-weight: 600;
    position: relative;
    border: 1px solid #ffb000;
    background: #ffb000;
    line-height: 1em;
    text-align: center;
}
header .nav li.top_recruit_contact li a:hover{
    background: #fff;
}
header .nav li.top_recruit_contact li a::after{
    content: "";
    position: absolute;
    transform: rotate(135deg);
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    width: 16px;
    height: 16px;
    right: 0;
    left: 0;
    bottom: 16px;
    top: auto;
    margin: 0 auto;
}
header .nav li.top_recruit_contact li.top_recruit a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/top_recruit.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    top: 10px;
    margin: 0 auto;
    left: 0;
    transition: .25s;
    right: 0;
}
header .nav li.top_recruit_contact li.top_contact2 a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/top_about.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    top: 10px;
    margin: 0 auto;
    left: 0;
    transition: .25s;
    right: 0;
}
header .nav li.top_recruit_contact li.top_recruit a:hover::before{
    background: url(../images/top_recruit_h.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
header .nav li.top_recruit_contact li.top_contact2 a:hover::before{
    background: url(../images/top_mail_h.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
header .nav li.x_timeline {
    display: block;
    max-width: 400px;
    width: 100%;
    margin: 20px auto 0;
}
header .nav li.x_timeline iframe {
    width: 100%;
}

/* Article
------------------------------ */
#works .btn {
    background: rgba(255,176,0,1);
    width: 200px;
    display: block;
    margin: 20px auto 0;
    box-sizing: border-box;
}
#works div ul {
    letter-spacing: -.4em;
    box-sizing: border-box;
    letter-spacing: normal;
    display: block;
}
.link_jump{
    padding-top: 50px;
    margin-top: -50px;
}
article{
    padding-top: 30px;
}
section{
    margin-bottom: 60px;
    background: #fff;
    padding: 40px 16px 33px;
}
section h2{
    color: #2578ff;
    font-size: 22px;
    padding: 0 0 20px 40px;
    border-bottom: 1px solid #2578ff;
    position: relative;
    margin-bottom: 30px;
    letter-spacing: -.1em;
}
section h2::before{
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    left: 0;
    top: -6px;
}
section h3.num,
.appeal4 h3.num {
    padding: 50px 0 20px 0;
    position: relative;
    font-size: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    text-align: center;
}
#works .float,
#works .float div{
    background: none;
    padding: 0;
    margin-top: 0;
}
#works .float div.fl_l,
#works .appeal4 .float div.fl_l {
    width: 100%;
}
#works .float .fl_r{
    width: 100%;
    height: auto;
    margin: 0 0 10px;
}
#works div li {
    width: 100%;
    margin-right: 0;
    background: rgba(255,176,0,.3)!important;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}
#product li h3::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../images/product_icon1.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -8px;
}
#product li {
    width: 100%;
    margin-right: 0;
    display: inline-block;
    vertical-align: top;
    background: rgba(37,120,255,.2);
    padding: 30px 10px 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
section h3.num span{
    position: absolute;
    left: 0;
    top: 36px;
    text-indent: -9999px;
    right: 0;
    margin: 0 auto;
}
section h3.num1 span{
    width: 44px;
    height: 34px;
}
section h3.num2 span{
    width: 52px;
    height: 40px;
}
section h3.num3 span{
    width: 52px;
    height: 40px;
}
section h3.num4 span{
    width: 52px;
    height: 40px;
}
#appeal h2::before{
    background: url(../images/h2_appeal.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#appeal div{
    background: rgba(255,176,0,.3);
    padding: 30px 16px 20px;
    margin-bottom: 26px;
    position: relative;
}
#appeal .appeal3{
    margin-bottom: 0;
}
#appeal div::after{
    content: none;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 47px;
    width: 185px;
    height: 185px;
}
#appeal .appeal1::after{
    background: url(../images/appeal1.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#appeal .appeal2::after{
    background: url(../images/appeal2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}
#appeal .appeal3::after{
    background: url(../images/appeal3.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}
#appeal img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
#works h3::before{
    content: "";
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    top: 0;
    background: url(../images/works_icon1.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 40px;
    height: 40px;
}
#works .appeal4 h3::before {
    content: "";
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    top: 0;
    background: url(../images/works_icon2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 27px;
    height: 35px;
}
#appeal .num1 span{
    background: url(../images/01_y.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#appeal .num2 span{
    background: url(../images/02_y.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#appeal .num3 span{
    background: url(../images/03_y.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#timeline h2::before{
    background: url(../images/h2_timeline.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
.tl_top{
    width: 100%;
    height: auto;
    position: relative;
    background: url(../images/timeline1.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    margin-bottom: 25px;
    padding: 20px;
    box-sizing: border-box;
}
.tl_top div{
    position: relative;
    width: 100%;
    height: auto;
    background: rgba(255,255,255,.8);
    border-radius: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
    text-align: center;
    padding-top: 66px;
    right: 0;
    padding-bottom: 50px;
}
.tl_top div::before{
    content: "";
    position: absolute;
    background: url(../images/timeline_icon1.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 42px;
    height: 42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 14px;
}
.tl_top div::after{
    content: "";
    position: absolute;
    background: url(../images/timeline_icon2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 40px;
    height: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 16px;
}
.tl_top div h3{
    font-size: 20px;
    width: 90%;
    border-bottom: 1px solid #000;
    margin: 0 auto 8px;
    letter-spacing: -.12em;
}
.tl_top div h3 span{
    display: block;
    font-size: 10px;
    color: #2578ff;
    font-family: Arial;
    letter-spacing: .1em;
}
.tl_top div p{
    font-size: 18px;
    font-weight: 600;
}
#timeline ul{
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
#timeline li{
    width: 440px;
    margin-right: 0;
    display: inline-block;
    vertical-align: top;
    background: rgba(37,120,255,.2);
    padding: 30px 20px 23px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
#timeline li:nth-child(2n){
    margin-right: 0;
}
#timeline li h3::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../images/timeline_icon1.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    left: 0;
    top: -14px;
    right: 0;
    margin: auto;
}
#timeline .num1 span{
    background: url(../images/01_b.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#timeline .num2 span{
    background: url(../images/02_b.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
.timeline3{
    padding: 30px 20px 23px!important;
}
.timeline3,
.timeline4{
    margin-bottom: 20px!important;
}
#timeline .num3{
    font-size: 20px;
    padding: 90px 0 20px 0;
}
.timeline3 h3::before{
    top: -14px!important;
}
#timeline .num3 span{
    background: url(../images/03_b.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    top: 36px;
}
#timeline .num4 span{
    background: url(../images/04_b.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#timeline li img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
#about div{
    padding: 0;
}
#about div div{
    padding: 0 0 40px;
    width: 100%;
}
#about div img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
#recruit{
    padding-bottom: 48px;
}
#recruit h2::before{
    background: url(../images/h2_recruit.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#recruit h3{
    font-size: 20px;
    margin-bottom: 10px;
}
.center{
    text-align: center;
    margin-top: 30px;
}
.mb_70{
    margin-bottom: 70px;
}
#recruit .btn{
    background: #2578ff;
    border: 1px solid #2578ff;
    font-size: 20px;
    color: #fff;
    padding: .7em 60px .6em 1em;
}
#recruit .btn:hover{
    background: #fff;
    color:  #2578ff;
}
#recruit .btn::after{
    width: 12px;
    height: 12px;
    right: 20px;
}
#contact h2::before{
    background: url(../images/h2_contact.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
}
#contact{
    padding-bottom: 50px;
    margin-bottom: 75px;
}
#contact dl{
    margin-top: 20px;
}
#contact dl::before{
    left: 267px;
}
#contact dl::after{
    width: 267px;
}
#contact dt{
    padding: 10px 20px 12px;
}
#contact dd{
    padding: 9px;
}
#contact dd input,
#contact dd p{
    display: inline-block;
    vertical-align: text-bottom;
}
#contact dd input,
#contact dd textarea{
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    border: none;
    vertical-align: middle;
}
#contact dd textarea{
    max-height: 145px;
    min-height: 145px;
    max-width: 100%;
    min-width: 100%;
}
#contact dd p{
    margin-left: 10px;
    line-height: 1em;
}
#contact dd:nth-of-type(1) input,
#contact dd:nth-of-type(5) input,
#contact dd:nth-of-type(6) input,
#contact dd:nth-of-type(3) input,
#contact dd:nth-of-type(2) input,
#contact dd:nth-of-type(4) input,
#contact dd:nth-of-type(7) input,
#contact dd textarea{
    width: 100%;
}
#contact dd label{
    margin-left: 4px;
    margin-right: 30px;
    display: inline-block;
    vertical-align: top;
}
#contact dd::after{
    width: 626px;
}
#contact .must{
    font-size: 12px;
    color: #102eff;
    display: inline-block;
    vertical-align: top;
}
#contact dl .must{
    margin-left: 4px;
}
#contact .privacy{
    padding: 20px;
    background: #eeeeee;
    overflow-y: scroll;
    margin-top: 22px;
    height: 164px;
    margin-bottom: 30px;
}
#contact .privacy p{
    margin-bottom: 20px;
}
#contact .btn{
    background: #2578ff;
    border: 1px solid #2578ff;
    font-size: 20px;
    color: #fff;
    padding: .7em 80px .6em 1em;
    letter-spacing: 1em;
}
#contact .btn:hover{
    background: #fff;
    color:  #2578ff;
    cursor: pointer;
}
#contact .btn::after{
    width: 12px;
    height: 12px;
    right: 20px;
}
/* Footer
------------------------------ */
footer{
    background: #fff;
    padding-top: 58px;
    padding-bottom: 80px;
    width: 100%;
}
footer .wrapper div{
    display: inline-block;
    vertical-align: top;
}
footer .footer_logo{
    width: 100%;
    text-align: center;
}
footer .footer_logo .logo{
    width: 242px;
    height: 42px;
    display: block;
    margin: 0 auto;
}
footer .footer_logo p{
    font-size: 14px;
    line-height: 1.6em;
    margin-top: 10px;
}
footer .footer_link{
    width: 250px;
}
footer .footer_link a{
    color: #2578ff;
    font-size: 14px;
}
footer .footer_contact{
    width: 250px;
    text-align: right;
}
footer .footer_contact .tel{
    font-size: 12px;
    margin-bottom: 10px;
}
footer .footer_contact .tel span{
    text-align: left;
    width: 244px;
    height: 24px;
    display: block;
    background: url(../images/tel.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    text-indent: -9999px;
}
footer .copy{
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
}
footer .copy a{
    color: #000;
}
footer .copy a:hover{
    color: #2578ff;
}
/* Page Top
------------------------------ */
.pagetop {
	position: fixed;
	bottom: 12px;
	right: 30px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	z-index: 10!important;
}
.pagetop a{
	display: block;
	width: 50px;
	height: 30px;
	text-indent: -9999px;
	background: #2578ff;
	text-align: center;
	font-weight: bold;
	color: #FFF;
	font-size: 30px;
	padding-top: 20px;
	border: 1px solid #2578ff;
}
.pagetop a::before,
.pagetop a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.pagetop a:before{
	width: 50px;
	height: 30px;
	background: #2578ff;
}
.pagetop a:after{
	left: 15px;
	top: 10px;
	width: 20px;
	height: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.pagetop.show{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.pagetop a:hover{
	text-decoration: none;
	background: #FFF;
}
.pagetop a:hover:before{
	border-color: #2578ff;
	background: #FFF;
}
.pagetop a:hover:after{
	background: none;
	border-top: 1px solid #2578ff;
	border-right: 1px solid #2578ff;
}

}