@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333333; /* RGB */
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝","Yu Mincho","YuMincho",  serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 2.4rem;
}
.wrapper{
  overflow: hidden;
}
section h2 {
  font-size: 2.0rem;
  font-weight: 300;
}
a:hover {
  opacity: 0.5;
} 
ul{
  list-style: none;
}
ol{
  list-style: none;
}
a{
  text-decoration: none;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}
a.btn_black {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50px;
    position: relative;
    background: #ffff;
    border: 1px solid #333333;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #333333;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin: 0 auto;
}
a.btn_black:before {
  content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(45deg);
    position: absolute;
    top: 54%;
    right: 25px;
    margin-top: -6px;
}
a.btn_black:hover {
 opacity: 1;
  color: #fff;
  background-color: #333333;
}
a.btn_black:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

a.btn_white {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50px;
    position: relative;
    border: 1px solid #ffff;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #ffff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin: 0 auto;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
a.btn_white:before {
  content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: 1px solid #ffff;
    border-right: 1px solid #ffff;
    transform: rotate(45deg);
    position: absolute;
    top: 54%;
    right: 25px;
    margin-top: -6px;
}
a.btn_white:hover {
  opacity: 1;
  background: #333;
  border: 1px solid #333;
  color: #ffff;
}
a.btn_white:hover:before {
  border-top: 1px solid #ffff;
  border-right: 1px solid #ffff;
}

/* header_sp  */
.header{
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 100;
  background-color: #fff;
}
.header_inner{
position: relative;
}
.header-logo{
margin: 26px 0 0 10px;
}
.company_logo{
width: 50%;
}
.company_name{
margin-left: 10px;
font-size: 1.4rem;
}
#toggle {
position: fixed;
top: 24px;
right: 25px;
}
#toggle-box {
position: relative;
width: 38px;
height: 22px;
cursor: pointer;
}
#toggle-box > span {
width: 100%;
height: 1px;
left: 0;
display: block;
background: #000;
position: absolute;
transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}
#toggle-box > span:nth-child(1) {
top: 0;
}
#toggle-box > span:nth-child(2) {
top: 50%;
transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
bottom: 0;
}
#toggle {
z-index: 1000;
}
#main {
position: relative;  
z-index: 990;
}
#nav-content {
z-index: 900;
overflow: auto;
width: 100%;
height: 100%;
background: #F7F7F7;
color: #333333;
position: fixed;
top: 0;
right: 0;
text-align: center;
transform: translateX(100%);
transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-content ul {
list-style: none;
margin-top: 60px;
}
#nav-content li{
background-color: #fff;
}
#nav-content li a {
display: block;
align-items: center;
color: #333333;
text-decoration: none;
padding: 15px 0;
transition: opacity .6s ease;
margin: 30px 0 30px 70px;
position: relative;
text-align: left;
}
#nav-content li  a:before{
content: "";
background: url(../images/common/business.png) no-repeat center/contain;
width: 30px;
height: 30px;
position: absolute;
top: 50%;
left: -50px;
transform: translate(0,-50%);
}
#nav-content li:nth-of-type(2) a:before{
background: url(../images/common/works_icon.png) no-repeat center/contain;
}
#nav-content li:nth-of-type(3) a:before{
background: url(../images/common/company_icon.png) no-repeat center/contain;
}
#nav-content li:nth-of-type(4) a:before{
background: url(../images/common/recruit_icon.png) no-repeat center/contain;
}
#nav-content li:nth-of-type(5) a:before{
background: url(../images/common/partner\ .png) no-repeat center/contain;
}
#nav-content li a::after{
content: '';
width: 8px;
height: 8px;
border-top: solid 1px #555; 
border-right: solid 1px #555;  
transform: translateY(-50%) rotate(45deg);
position: absolute;
top: 50%;
right: 60px;
}
#nav-content a:hover {
opacity: 0.6;
}
.is-open {
overflow: hidden;
}
.is-open #toggle-box > span {
background: #333333;
}
.is-open #toggle-box > span:nth-child(1) {
top: 50%;
transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
top: 50%;
transform: rotate(-45deg) translatey(-50%);
}
.is-open #nav-content {
z-index: 999;
transform: translateX(0);
font-size: 1.4rem;
}
.is-open #toggle-box{
width: 28px;
height: 12px;
}
.is-open #toggle{
top: 32px;
right: 15px;
}
.header_company_tell{
font-size: 2.0rem;
margin-bottom: 15px;
}
.header_company_tell a{
color: #333333;
}
.header_company_time{
font-size: 1.4rem;
margin-bottom: 15px;
}
.header_company_mail a{
color: #333333;
}/* header_sp */

/* header_tablet */
@media(min-width:600px){
  .company_logo{
    width: 30%;
  }
  .header{
    height: 70px;
  }
  #toggle{
    top: 27px;
  }
}

/* header_pc */
@media(min-width:1025px){
.header{
height: 120px;
}
.header_inner{
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo{
  margin: 30px 0 0 0;
  position:absolute;
  top:20px;
}
.header_company_reception{
  display: none;
}
.company_logo{
width: 50%;
}
.company_name{
margin-left: 0;
}
/* .header.minimum  */
.header.minimum{
height: 80px;
background-color: rgba(255,255,255,1);
padding: 0 3%;
align-items: center;
}
.header.minimum h1{ 
 padding:10px 0 10px 0;
 top:0;
}
.header.minimum .company_name{
display: none;
}
.header.minimum .company_logo {
width: 30%;
}
.header.minimum #nav-content li a:before{
content: none;
}
.header.minimum #nav-content li a{
display: block;
  align-items: center;
  color: #333333;
  text-decoration: none;
  padding: 0;
  transition: opacity .6s ease;
  margin: 25px 0 30px 70px;
  position: relative;
  text-align: left;
}/* .header.minimum  */

.header.minimum #nav-content .contact_btn a{
 text-align: center;
 background-color:transparent;
 color: #333333;
  width: 100%;
  height: 0;
  border-radius: 0;
  text-align: center;
  margin: 25px 0 30px 40px;
  padding-top: 0;
}

#nav-content{
  z-index: 900;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  color: #333333;
  position: static;
  transform: none; 
  transition:none;
}
#nav-content ul{
  display: flex;
  position: absolute;
  right: 0;
  top: 10px;
  margin-top: 0;
}
#nav-content li{
background-color: transparent;
}
#nav-content li a{
  display: block;
  align-items: center;
  color: #333333;
  text-decoration: none;
  padding: 30px 0 15px;
  transition: opacity .6s ease;
  margin: 30px 0 30px 70px;
  position: relative;
  text-align: left;
}
#nav-content li a:before {
content: "";
background: url(../images/common/business.png) no-repeat top/contain;
width: 4em;
height: 30px;
position: absolute;
top: 0;
left: 0;
}
#nav-content li a::after{
content: none;
}
.header_company_tel{
display: none;
}
#toggle{
display: none;
}
#nav-content .contact_btn a {
background-color: #333333;
  color: #fff;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  text-align: center;
  margin: 0 0 30px 40px;
  padding-top: 40px;
}
#nav-content .contact_btn a::before{
content: none;
}
}/* header_pc */



/* .contact-sec_sp */
.contact-sec{
  padding: 80px 20px;
  background-color:#F7F7F7 ;
}
.contact-sec-ttl{
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 10px;
    text-align: center;
}
.contact-sec-ttl .jpn{
  display: block;
  margin-bottom: 3px;
  font-size: 2.0rem;
  font-weight: normal;
}
.contact-sec-ttl .eng{
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
.contact-sec-ttl::after{
  content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 1px;
    margin-left: -20px;
    background-color: #333333;
}
.contact-ttl-side{
  margin-bottom: 2px;
  padding: 40px 15px 35px;
  background-color: #fff;
}
.contact-sec-ttl-lead{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
}
.contact-address-side{
  padding: 35px 35px 35px;
  background-color: #fff;
}
.contact-sec-tel{
  margin-bottom: 25px;
  text-align: center;
}
.contact-sec-tel-area-num{
  font-size: 2.0rem;
  margin-bottom: 20px;
}
.contact-sec-tel-area-num a{
  color: #333333;
}
.contact-sec-tel-area-text{
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.contact-sec-tel-area-mail{
  font-size: 1.4rem;
}
.contact-sec-tel-area-mail a{
  color: #333333;
}
.contact-sec-form-btn{
  display: block;
  padding: 20px 10px;
  border-radius: 5px;
  background-color: #333333;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}/* .contact-sec_sp */

/* .contact-sec_tablet */
@media(min-width:760px){
  .contact-sec-inner{
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
  }
  .contact-ttl-side{
    box-sizing: border-box;
    width: 418px;
    max-width: 418px;
    margin: 0 2px 0 0;
    padding: 80px 15px 70px;
  }
  .contact-address-side{
    box-sizing: border-box;
    width: 580px;
    max-width: 580px;
    padding: 80px 35px 75px;
  }
  .contact-sec-ttl .jpn{
    margin-bottom: 15px;
  }
  .contact-sec-ttl{
    margin-bottom:60px;
    padding-bottom:20px;
  }
}/* .contact-sec_tablet */

/* .contact-sec_pc */
@media(min-width:1025px){
  .contact-sec{
    padding: 120px 20px;
  }
  .contact-sec-ttl .jpn{
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  .contact-sec-ttl{
    margin-bottom: 30px;
  }
  .contact-sec-ttl::after{
    width: 60px;
    margin-left:-30px;
  }
  .contact-sec-ttl .eng{
    font-size: 2.0rem;
  }
  .contact-sec-ttl-lead{
    font-size: 1.8rem;
    line-height:2.0;
  }
  .contact-sec-tel-area-num {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  .contact-sec-tel-area-text{
    font-size: 1.8rem;
  }
}

/* footer_sp */
.pc{
  display: none;
}
.sp{
  display: block;
}
footer{
  background-color: #fff;
  color: #333333;
  padding: 40px 20px;
}
.footer_company_name_area{
  display: flex;
  flex-wrap: wrap;
}
.company_footer_icon{
  width:40%
}
.company_footer_logo{
width: 70%;
}
.footer_company_name{
  font-size: 1.8rem;
  margin-top: 10px;
  line-height: 2.4;
  width: 100%;
}
.company_info{
margin-top: 40px;
font-size: 1.4rem;
}
.addres{
margin-bottom: 20px;
}
.company_tel {
  margin-bottom: 10px;
}
.company_tel a{
color: #333333;
}
.company_fax{
  margin-bottom: 10px;
  color: #333;
}
.company_mail a{
  color: #333333;
}
.site_map{
  display: flex;
    width: 70%;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    margin-bottom: 50px;
}
.site_map li{
width: 33.333%;
margin-bottom: 25px;
font-size: 1.4rem;
}
.site_map li a{
  color: #333333;
}
.footer_icon{
  display: flex;
  position: absolute;
  top: calc(100% + -50px);
  right: -40px;
  width: 50%;
}
.tokurasu_icon{
  width: 50%;
  margin-right: 20px;
}
.toto_icon{
  width: 50%;
}
.footer_copyright{
  font-size: 1.2rem;
}/* footer_sp */

/* footer_tablet */
@media(min-width:760px){
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }
  .footer{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 80px 20px 40px 20px;
    margin: 0 auto;
  }
  .company_footer_icon{
    width: 31%;
  }
  .company_footer_logo{
    width: 70%;
  }
  .footer_company_name{
    font-size: 2.0rem;
    margin-top: 0;
  }
  .footer_pc_wrpper{
    margin-left: -10px;
  }
  .footer_company_name_area{
    width: 100%;
    display: flex;
  }
  .company_info{
    margin-top: 5px;
  }
  .addres{
    margin-bottom: 10px;
  }
  .footer_pc_tell{
    display: flex;
  }
  .company_tel{
    margin-bottom: 5px;
  }
  .company_fax{
    margin-bottom: 5px;
    margin-left: 10px;
  }
  .site_map{
    width: 100%;
    margin-top:80px;
    flex-wrap: nowrap;
    margin-bottom: 0px;
  }
  .site_map li{
   margin-bottom: 40px;
  }
  .footer_icon{
    bottom: auto;
    top: calc(100% + -10px);
    /* right: auto; */
    /* left: 0; */
    width: 30%;
  }
  .footer_copyright{
    margin:120px auto 0;
  }
}

/* footer_pc */
@media(min-width:1025px){
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }
  .footer{
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    padding: 80px 40px 40px 40px;
    margin: 0 auto;
  }
  .company_footer_icon{
    width: 31%;
  }
  .company_footer_logo{
    width: 100%;
  }
  .footer_company_name{
    font-size: 2.0rem;
    margin-top: 0;
  }
  .footer_pc_wrpper{
    margin-left: 40px;
  }
  .footer_company_name_area{
    width: 50%;
  }
  .company_info{
    margin-top: 5px;
  }
  .addres{
    margin-bottom: 10px;
  }
  .footer_pc_tell{
    display: flex;
  }
  .company_tel{
    margin-bottom: 5px;
  }
  .company_fax{
    margin-bottom: 5px;
    margin-left: 10px;
  }
  .site_map{
    width: 50%;
    margin-top:13px;
    flex-wrap: nowrap;
    margin-bottom: 15px;
  }
  .site_map li{
    font-size: 1.6rem;
  }
  .footer_icon{
    bottom: 0;
    top: auto;
    /* left: auto; */
    /* right: 60px; */
    width: 30%;
  }
  .footer_copyright{
    margin:100px auto 0;
  }
}