html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  background-color: #fff;
}
#wrap {
  height: 100%;
}
.inner {
    width: 92%;
    max-width: 980px;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
a {
text-decoration: none;
color: #000;
}

/* ------ メニュー ------- */
.menu-text1{
  font-size: 17px;
  margin-bottom: 5px;
}
.menu-text2{
  font-size: 9px;
  font-weight:10;
  margin: auto;
}
#top-head {
    top: -10px;
    position: absolute;
    width: 100%;
    margin: 70px auto 0;
    padding: 0px 0 0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    font-size: 36px;
    margin-top: 0px;
}
#global-nav{
  width: 100%;
  margin: auto;
  text-align: center;
}
#global-nav ul {
    list-style: none;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    margin: auto;
}
#global-nav ul li {
}
#global-nav li {
  width: 150px;
}
#global-nav ul li a {
    padding: 0 0px;
}
#global-nav li {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-align: center;
}
#global-nav li::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #FBAA31;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#global-nav li:hover::after {
  width: 80%;
}
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 35px;
    height: 30px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 0 0 0px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    /* right: 12px; */
    margin-left: 0.5rem;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
#about {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 640px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 13px;
        color: #333;
        font-size: 26px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -520px;
        background: #333;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
        text-align: left;
        display:  -webkit-box;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 15px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}
/* ------ メニューここまで ------- */
/* ------ TOPimg ------- */
#index_top{
  background: url(../img/topimg.jpg) no-repeat center top;
  min-height: 100%;
  height: 700px;
  background-size: cover;
  background-attachment: fixed;
}
#topimg_box{
  -webkit-appearance: none;
  width: 960px;
  height: 300px;
  padding-top: 100px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
  
}
h1{
  font-size: 80px;
}
#h1_text{
  font-size: 40px;
  line-height: 140%;
}
/* ------ TOPimgここまで ------- */
h2{
  font-family: 'ヒラギノ角ゴシック','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W1', sans-serif;
  font-weight:100;
  font-size: 45px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 5px;
}
h3{
  font-family: 'ヒラギノ角ゴシック','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W1', sans-serif;
  font-weight:100;
  font-size: 15px;
  text-align: center;
  margin: auto;
  padding-bottom: 5px;
  width: 870px;
  border-bottom: solid #000;
  border-width: 0.3px;
}
/* ------ INFORMATION ------- */
#information{
  width: 100%;
  height: auto;
}
#info_box{
  width: 860px;
  margin: auto;
  margin-top: 20px;
}
#info_box a{
  text-decoration: underline;
  color: #1e90ff;
}
.info_date{
  color: #a9a9a9;
  margin-top: 0px;
  margin-bottom: 0px;
}
.info_oshirase{
  background-color: #FBAA31;
  color: #fff;
  padding: 3px;
  margin-right: 5px;
  font-size: 12px;
}
.info{
  margin-bottom: 10px;
  line-height: 150%;
}
.info:before{
content: "　　";
/* background-color: #; */
color: #fff;
padding: 3px;
margin-right: 5px;
font-size: 12px;
}
.info_new{
  margin-bottom: 10px;
  line-height: 150%;
}
.info_new:before{
content: "NEW";
background-color: #FF0000;
color: #fff;
padding: 3px;
margin-right: 5px;
font-size: 12px;
}
/* ------ INFORMATIONここまで ------- */
/* ------ 紹介 ------- */
#welcom{
  width: 100%;
  height: 320px;
  background: linear-gradient(#FBAA31,#FFD349 );
  color: #fff;
  text-align: center;
  padding-top: 50px;
}
#welcom_text1{
  width: 80%;
  margin: auto;
  font-size: 38px;
  font-weight:700;
  line-height: 150%;
  margin-bottom: 20px;
}
#welcom_text2{
  width: 780px;
  margin: auto;
  font-size: 20px;
  line-height: 170%;
}
/* ------ 紹介ここまで ------- */
/* ------ SNS ------- */
#snssection{
  text-align: center;
}
#sns{
  width: 860px;
  /* height: 600px; */
  margin-top: 30px;
  display: -webkit-inline-box;
}
#sns #sns_box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sns #sns_box #sns-group-instagram{
  min-width: 100%;
  margin-bottom: 50px;
}
.sns_box a{
  margin-bottom: 50px;
}
.sns_box img:hover{
  opacity: 0.5;
}
#twitter{
  color: #1DA1F2;
  font-size: 23px;
}
#instagram{
  color: #D11C9C;
  font-size: 23px;
}
/* ------ SNSここまで ------- */
#recimg{
  text-align: center;
  margin: auto;
}
#recimg img:hover{
  opacity: 0.7;
}
/* ------ ボタン------- */
.button {
  display: inline-block;
  width: 250px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button {
  background-color: #FBAA31;
  border: 2px solid #FBAA31;
  color: #fff;
  line-height: 50px;
}
.button:hover {
  background-color: #fff;
  border-color: #FBAA31;
  color: #FBAA31;
}

.buttonb {
 background-color: #FBAA31;
  border: 2px solid #FBAA31;
position: fixed;
    bottom: 16px;
    right: 16px;
  display: inline-block;
  width: 250px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
#buttonb::before,
#buttonb::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
#buttonb,
#buttonb::before,
#buttonb::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#buttonb{
position: fixed;
    bottom: 16px;
    right: 16px;
  background-color: #FBAA31;
  border: 2px solid #FBAA31;
  color: #fff;
  line-height: 50px;
}
#buttonb:hover {
  background-color: #fff;
  border-color: #FBAA31;
  color: #FBAA31;
}
/* ------ ボタンここまで------- */
/* ------ footer------- */
footer{
  text-align: center;
}
.bn-box{
  max-width: 100%;
  text-align: center;
  margin-bottom: 50px;
  margin-top:55px;
}
.bn{
  text-align: center;
  margin: 3rem 0;
}
.bn-wrapper{
  max-width: 960px;
  padding: 6px 0; /* --- isolation --- */
}
.bn-wrapper div{
  width: 100%;
}
.bn-box-top{
  max-width: 100%;
  text-align: center;
}
.bn-box-top img{
  max-width: 100%;
}
.bn-box-top:hover{
  opacity: 0.7;
}
.bn-box img{
  max-width: 100%;
}
.bn-box:hover{
  opacity: 0.7;
}
#tel_box{
  width: 500px;
  margin: auto;
  text-align: center;
  /* display: -webkit-inline-box; */
  margin-bottom: 50px;
  margin-top: 50px;
}

#iine_box{
  width: 100%;
  height: 90px;
  margin: auto;
  text-align: center;
}
#gotop{
  width: 100%;
  height: 67px;
  background-color: #F2F2F2;
  margin-bottom: 50px;
}
#gotop img:hover{
  opacity: 0.6;
}
#footer_text2{
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 0px;
  margin-right: 30px;
}
#footer_text3{
  font-size: 30px;
  font-weight:700;
}
#footer_text4{
  width: 100%;
  padding-bottom: 5px;
  border-bottom: solid #000;
  border-width: 0.3px;
  font-size: 13px;
}
#footer_text5{
  font-size: 12px;
}
#footer_text5:hover{
  opacity: 0.5;
}
#footer_text6{
  width: 100%;
  height: 25px;
  background-color: #FBAA31;
  color: #fff;
  font-size: 12px;
  padding-top: 10px;
  margin-bottom: 0px;
}
/* ------ footerここまで ------- */
/* ------ 他ページ ------- */
/* ------ テーブル ------- */
table.type06 {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
  font-size: 16px;
  margin: auto;
  margin-top: 30px;
}
table.type06 th {
	width: 150px;
	padding: 10px;
	font-weight: 500;
	vertical-align: top;
}
table.type06 td {
	width: 650px;
	padding: 10px;
  font-weight: 200;
	vertical-align: top;
}
table.type06 .even {
	background: #efefef;
}
table.type06 a{
  text-decoration: underline;
  color: #1e90ff;
}
/* ------ テーブルここまで ------- */
/* ------ MAP ------- */
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
margin-top: 50px;
margin-bottom: 50px;
height: 0;
overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* ------ MAPここまで ------- */
/* ------ 見出し ------- */
h4{
  font-size: 50px;
  margin-bottom: 5px;
  margin-top: 100px;
}
#h4_text{
  font-size: 30px;
  margin-top: 5px;
}
h5{
  font-size:30px;
  margin-bottom: 5px;
  border-left: 4px solid #FBAA31;
	padding: 5px;
}
h5::before{
  content:"";
  margin-bottom: 5px;
  border-left: 4px solid #888;
	padding: 3px;
}
#h5_text{
  font-size: 15px;
  margin-top: 5px;
  margin-left: 30px;
}
/* ------ 見出しここまで ------- */
/* ------ 企業理念 ------- */
#corporateIdentity_top{
  background: url(../img/corporateldentity.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #corporateIdentity_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
  font-size: 16px;
} */
#corporateIdentity_img{
  width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 100px;
}
#corporateIdentity_text{
  margin-top: 50px;
  text-align: left;
  line-height: 190%;
  padding-right: 20px;
}
.corporateIdentity_textbox{
   display: -webkit-box;
   display: flex;
   margin-top: 50px;
   width: 860px;
}
/* ------ 企業理念ここまで ------- */
/* ------ 会社概要 ------- */
#company_top{
  background: url(../img/company.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  min-height: 250px;
}
/* #company_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
#photo{
  text-align: center;
}
#box{
  width: 860px;
  margin: auto;
}
/* ------ 会社概要ここまで ------- */
/* ------ 事業案内 ------- */
#business_top{
  background: url(../img/business.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #business_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
#business_box_x{
  text-align: center;
}
#business_box_x img:hover{
  opacity: 0.6;
}
#business_text1{
  margin-top: 50px;
  font-size: 25px;
  font-weight: 600;
}
#business_text2{
  margin-top: 0px;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
}
/* ------ 事業案内ここまで ------- */
/* ------ 採用情報 ------- */
#recruitment_top{
  background: url(../img/recruitment.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #recruitment_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
#recruitment_text{
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 160%;
}
#recruitment_text2{
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 200;
}
#photo{
  width: 860px;
  margin-top: 20px;
}
.recruitment_img{
  width: 400px;
  padding: 5px;
  margin:auto;
}
/* ------ 採用情報ここまで ------- */
/* ------ お問い合わせ ------- */
#contact_top{
  background: url(../img/contact.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: cover;
  background-attachment: fixed;
}
/* #contact_box{
  width: 100%;
  height: 200px;
  padding-top: 4.5rem;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
#contact_box_r{
}
.select-box01 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
.select-box01 select {
	width: 100%;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: url(../img/arrow01.png) 95% 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#efebe1 100%);
	background: url(../img/arrow01.png) 95% 50% no-repeat, linear-gradient(to bottom, #fff 0%,#efebe1 100%);
	background-size: 15px, 100%;
}
form{
  text-align: center;
}
table#sample-table{
  width: 870px;
  text-align: center;
  margin-left: 10px;
  margin-top: 30px;
  border-spacing: 2px 10px;
}
table#sample-table tr{
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  border-top:  1px solid #ccc;
}
table#sample-table th{
  padding-right: 10px;
  text-align: left;
  font-size: 15px;
  width: 300px;
  padding: 20px;
  font-weight: 100;
  border-bottom: 1px solid #ccc;
}
table#sample-table th:after{
  content: "必須";
  font-size: 10px;
  padding: 3px;
  color: #fff;
  background-color: #ff0000;
  margin-left: 3px;
}
table#sample-table td{
  width: 500px;
  text-align: left;
  padding: 10px;
}
input{
  border-style: none;
  height: 30px;
  font-size: 13px;
  width: 95%;
  margin: auto;
  margin-left: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
}
textarea{
  border-style: none;
  font-size: 13px;
  width: 95%;
  margin-left: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.button2 {
  width: 200px;
  margin: auto;
  margin-top: 40px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button2 {
  background-color: #FBAA31;
  border: 2px solid #FBAA31;
  color: #fff;
  line-height: 50px;
}
.button2:hover {
  background-color: #fff;
  border-color: #FBAA31;
  color: #FBAA31;
}
/* ------ お問い合わせここまで ------- */
/* ------ 個人情報保護方針 ------- */
#privacypolicy_top{
  background: url(../img/privacypolicy.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
#privacypolicy_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
}
#privacypolicy_text{
  line-height: 170%;
  margin-top: 50px;
}
/* ------ 個人情報保護方針ここまで ------- */
/* ------ Solution共通 ------- */
#solution_box{
  line-height: 170%;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 200;
}
#solution_box2{
  width: 100%;
  padding-bottom: 5px;
  border-bottom: solid #000;
  border-width: 0.3px;
  margin-bottom: 30px;
}
#solution_img{
  width: 400px;
}
/* ------ Solution共通ここまで ------- */
/* ------ Enterprise Solution ------- */
#enterprisesolution_top{
  background: url(../img/enterprisesolution.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #enterprisesolution_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
/* ------ Enterprise Solutionここまで ------- */
/* ------ Mobile Solution ------- */
#mobilesolution_top{
  background: url(../img/mobilesolution.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #mobilesolution_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
/* ------ Mobile Solutionここまで ------- */
/* ------ Embedded Solution ------- */
#embeddedsolution_top{
  background: url(../img/embeddedsolution.jpg) no-repeat center top;
  height: 300px;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}
/* #embeddedsolution_box{
  width: 100%;
  height: 200px;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
} */
/* ------ Embedded Solutionここまで ------- */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.contact_img img{
  text-align: left;
}
#rec_img{
  margin: auto;
}
.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
    .pc {
      display: none !important;
    }
    .sp {
      display: block !important;
      margin: auto;
    }
}
@media only screen and (max-width: 480px) {
  /* ------ TOPimg ------- */
#index_top{
    background: url(../img/topimg_s.jpg) no-repeat center top;
    height: 700px;
  }
  #topimg_box{
    width: 100%;
    height: 300px;
    padding-top: 20px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:30%;
  }
  h1{
    font-size: 50px;
  }
  #h1_text{
    font-size: 30px;
  }
  /* ------ TOPimgここまで ------- */
  h2{
    font-family: 'ヒラギノ角ゴシック','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W1', sans-serif;
    font-weight:100;
    font-size: 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 5px;
  }
  h3{
    font-family: 'ヒラギノ角ゴシック','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W1', sans-serif;
    font-weight:100;
    font-size: 15px;
    text-align: center;
    margin: auto;
    padding-bottom: 5px;
    width: 100%;
    border-bottom: solid #000;
    border-width: 0.3px;
  }
  /* ------ INFORMATION ------- */
  #information{
    width: 100%;
    height: auto;
  }
  #info_box{
    width: 90%;
    margin: auto;
    margin-top: 20px;
  }
  .info{
    margin-bottom: 10px;
    line-height: 150%;
  }
  .info:before{
  content: "　　";
  /* background-color: #FBAA31; */
  color: #fff;
  padding: 2px;
  margin-right: 5px;
  font-size: 12px;
  }
  /* ------ INFORMATIONここまで ------- */
  /* ------ 紹介 ------- */
  #welcom{
    width: 100%;
    height: 350px;
    background: linear-gradient(#FBAA31,#FFD349 );
    color: #fff;
    text-align: center;
    padding-top: 20px;
  }
  #welcom_text1{
    width: 85%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight:700;
    line-height: 150%;
  }
  #welcom_text2{
    width: 85%;
    margin: auto;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 18px;
    line-height: 150%;
  }
  /* ------ 紹介ここまで ------- */
  /* ------ SNS ------- */
  #sns{
      width: 100%;
      height: auto;
      text-align: center;
      margin-top: 30px;
      margin-bottom: 50px;
      display: block;
    }
    #snsr_box{
      width: 100%;
    }
    #snsl_box{
      width: 100%;
      text-align: center;
    }
    .sns_box a{
      margin-bottom: 50px;
    }
    .sns_box img:hover{
      opacity: 0.5;
    }
  #snsr_box{
    width: 100%;
  }
  #snsl_box{
    width: 100%;
    text-align: center;
  }
  .sns_box a{
    margin-bottom: 50px;
  }
  .sns_box img:hover{
    opacity: 0.5;
  }
  /* ------ SNSここまで ------- */
  #tel_box{
    width: 100%;
    margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  #footer_text2{
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0px;
  }
  #footer_text4{
    width: 100%;
    padding-bottom: 5px;
    border-bottom: solid #000;
    border-width: 0.3px;
    font-size: 13px;
    line-height: 140%;
  }
  #footer_text6{
    width: 100%;
    height: 25px;
    background-color: #FBAA31;
    color: #fff;
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: 0px;
  }
  /* ------ 見出し ------- */
  h4{
    font-size: 35px;
    margin-bottom: 5px;
    font-weight: 300;
    margin-top: 60px;
  }
  #h4_text{
    font-size: 20px;
    margin-top: 5px;
    font-weight: 200;
  }
  h5{
    font-size:25px;
    margin-bottom: 5px;
    border-left: 4px solid #FBAA31;
  	padding: 5px;
  }
  h5::before{
    content:"";
    margin-bottom: 5px;
    border-left: 4px solid #888;
  	padding: 3px;
  }
  #h5_text{
    font-size: 15px;
    margin-top: 5px;
    margin-left: 30px;
  }
  /* ------ 見出しここまで ------- */
  /* ------ テーブル ------- */
  table.type06 {
  	border-collapse: collapse;
  	text-align: left;
  	line-height: 1.5;
    font-size: 15px;
    margin: auto;
    margin-top: 10px;
  }
  table.type06 th {
  	width: 30%;
  	padding: 10px;
  	font-weight: bold;
  	vertical-align: top;
  }
  table.type06 td {
  	width: 70%;
  	padding: 10px;
  	vertical-align: top;
  }
  table.type06 .even {
  	background: #efefef;
  }
  /* ------ テーブルここまで ------- */
  /* ------ 会社概要 ------- */
  #company_top{
    background: url(../img/company_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #company_box, #offshore_box, #education_box{
    width: 100%;
    height: 100px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  #box{
    width:90%;
  }
  /* ------ 会社概要ここまで ------- */
  /* ------ 企業理念 ------- */
  #corporateIdentity_top{
    background: url(../img/corporateldentity_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #corporateIdentity_box{
    width: 100%;
    height: 100px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  #corporateIdentity_img{
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 100px;
  }
  #corporateIdentity_text{
    width: 280px;
    text-align: center;
    line-height: 190%;
    margin: auto;
    margin-top: 30px;
    padding-left: 0px;
  }
  .corporateIdentity_textbox{
    display: block;
     margin-top: 50px;
     width: 300px;
     margin: auto;
  }
  #corporateIdentity_textimg{
    width: 300px;
    margin: auto;
  }
  /* ------ 企業理念ここまで ------- */
  /* ------ 事業案内 ------- */
  #business_top{
    background: url(../img/business_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #business_box{
    width: 100%;
    height: 100px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  #business_box_x img:hover{
    opacity: 0.6;
  }
  #business_text1{
    margin-top: 50px;
    font-size: 17px;
    font-weight: 600;
    line-height: 150%;
  }
  #business_text2{
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 14px;
    font-weight: 200;
    line-height: 160%;
  }
  /* ------ 事業案内ここまで ------- */
  /* ------ 採用情報 ------- */
  #recruitment_top{
    background: url(../img/recruitment_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #recruitment_box{
    width: 100%;
    height: 100px;
    /* padding-top: 100px; */
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:30%;
  }
  #photo{
    width: 100%;
  }
  .recruitment_img{
    width: 95%;
    margin: auto;
  }
  /* ------ 採用情報ここまで ------- */
  /* ------ 個人情報保護方針 ------- */
  #privacypolicy_top{
    background: url(../img/privacypolicy_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #privacypolicy_box{
    width: 100%;
    height: 200px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  #privacypolicy_text{
    line-height: 170%;
    margin-top: 50px;
    font-size: 12px;
  }
  /* ------ 個人情報保護方針ここまで ------- */
  /* ------ Solution共通 ------- */
  #solution_box{
    line-height: 170%;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 200;
  }
  #solution_box2{
    width: 100%;
    padding-bottom: 5px;
    border-bottom: solid #000;
    border-width: 0.3px;
    margin-bottom: 30px;
    line-height: 140%;
  }
  #solution_img{
    width: 90%;
    text-align: center;
  }
  /* ------ Solution共通ここまで ------- */
  /* ------ Enterprise Solution ------- */
  #enterprisesolution_top{
    background: url(../img/enterprisesolution_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #enterprisesolution_box{
    width: 100%;
    height: 200px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  /* ------ Enterprise Solutionここまで ------- */
  /* ------ Mobile Solution ------- */
  #mobilesolution_top{
    background: url(../img/mobilesolution_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #mobilesolution_box{
    width: 100%;
    height: 100px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  /* ------ Mobile Solutionここまで ------- */
  /* ------ Embedded Solution ------- */
  #embeddedsolution_top{
    background: url(../img/embeddedsolution_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #embeddedsolution_box{
    width: 100%;
    height: 100px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  /* ------ Embedded Solutionここまで ------- */
  /* ------ お問い合わせ ------- */
  #contact_top{
    background: url(../img/contact_s.jpg) no-repeat center top;
    height: 200px;
    min-height: 200px;
  }
  #contact_box{
    width: 100%;
    height: 200px;
    padding-top: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    z-index: 1;
    position: relative;
    top:20%;
  }
  img#tel_img{
    width: 300px;
  }
  #contact_box{
    width: 90%;
    margin: auto;
    margin-top: 20px;
  }
  #contact_box_text{
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }
  #contact_box_r{
    width: 100%;
    margin: auto;
    margin-bottom: 100px;
  }
  table#sample-table{
    width: 90%;
    margin: auto;
    margin-top: 30px;
  }
  table#sample-table tr{
    width: 100%;
  }
  table#sample-table th{
    width: 100%;
    display: block;
    text-align: left;
    border-right:none;
    margin-top: 10px;
    padding: 0px;
    padding-bottom: 10px;
  }
  table#sample-table td{
    width: 100%;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0px;
  }
  input{
    border-style: none;
    height: 30px;
    font-size: 13px;
    width: 95%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin: auto;
    margin-left:0px;
    background-color: #eee;
  }
  textarea{
    border-style: none;
    font-size: 13px;
    width: 95%;
    margin-left: 5px;
    background-color: #eee;
  }
  /* ------ お問い合わせここまで ------- */
}

/* #offdisc{ */
/* width:600px; */
/* } */


/* #offglo{ */
/* width:430px; */
/* padding-bottom:125px; */
/* } */

/* #offglo > img{
width:50%; */
/* float:left; */
/* clear:both; */
/* } */

.g-recaptcha{
  margin-top: 1rem;
  text-align: -webkit-center;
}

#contact_box, 
#business_box, 
#enterprisesolution_box, 
#mobilesolution_box, 
#embeddedsolution_box, 
#company_box, 
#offshore_box, 
#education_box,
#corporateIdentity_box,
#recruitment_box,
#nocode_box
{
  -webkit-appearance: none;
  width: 100%;
  height: 200px;
  padding-top:0.1rem;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 1;
  position: relative;
  top:20%;
}

_::-webkit-full-page-media, _:future,
:root #recruitment_box h4,
:root #nocode_box h4,
:root #contact_box h4, 
:root #business_box h4, 
:root #enterprisesolution_box h4, 
:root #mobilesolution_box h4, 
:root #embeddedsolution_box h4, 
:root #company_box h4, 
:root #offshore_box h4, 
:root #education_box h4, 
:root #corporateIdentity_box h4,
:root #topimg_box h4
{
  padding-top:2rem;
}

_::-webkit-full-page-media, _:future, :root .top_title
{
  padding-top: 8rem;
}


.d-inline-flex{
  display: inline-flex;
  justify-content: center;
  align-items:center;
}

/* 教育：タイトル */
.education-title{
  font-weight:120;
  font-size: 2rem;
  margin: auto;
}

/* 教育：サブタイトル */
.education-subtitle{
  font-weight:120;
  font-size: 1.5rem;
}

/* 各リンク用*/
.a-link{
 color: #1e90ff;
 text-decoration-line:underline !important;
 text-decoration-color:#1e90ff !important;
}

.span-fb{
  padding-left: 2rem;
}

.span-indent{
  display: block;
  padding-left: 1rem;
  /* text-indent: -3rem; */
}

/* ------ スマートフォンでは右下固定のお問い合わせボタンを非表示 ------- */
@media screen and (max-width: 640px) {
  #tel_box2,
  .buttonb {
    display: none !important;
  }
}

/* ------ タブレット帯(641〜999px)で固定幅要素のはみ出しを防ぐ ------- */
@media screen and (min-width: 641px) and (max-width: 999px) {
  #topimg_box,
  h3,
  #info_box,
  #welcom_text2,
  #sns,
  .corporateIdentity_textbox,
  #box,
  #photo,
  table#sample-table {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ------ 採用バナー画像が親幅からはみ出さないようにする ------- */
#rec_img {
  max-width: 100%;
  height: auto;
}

/* ------ スマホ対応: ヘッダー社名表示・iOSズーム防止・ヒーロー高さ・見出し縮小 ------- */
/* PCではヒーローに大タイトルが出るためヘッダーバーのロゴは非表示 */
.logo {
  display: none;
}
/* iOSは16px未満の入力欄でフォーカス時に自動ズームするのを防ぐ */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-size: 16px;
}
#footer_text2 a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .logo {
    display: block;
  }
  #top-head.fixed .logo,
  #top-head .logo {
    left: 52px;
    top: 15px;
    font-size: 22px;
  }
  #top-head .logo a,
  #top-head.fixed .logo a {
    color: #333;
    text-decoration: none;
  }
  #index_top {
    height: auto;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 60px;
    box-sizing: border-box;
  }
  #topimg_box {
    position: static;
    height: auto;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  h2 {
    font-size: 28px;
    margin-top: 60px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select {
    min-height: 44px;
    box-sizing: border-box;
  }
  textarea {
    min-height: 120px;
    box-sizing: border-box;
  }
}
