@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700italic,700,900);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800);
/* アイコンフォント　Google Material,Font Awesome */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #FFF url(../images/common/bg_intro.gif);
  z-index: 0;
  color: #333333;
  font-size: 1.4rem;
  font-family: 'Noto Sans Japanese','Noto Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif , serif;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

.inner {
  width: 94%;
  margin: 0 3%;
  position: relative;
}

h1 {
  font-size: 1.2em;
}

main {
  margin-top: 60px;
}

/*****************************************************

 Common - Parts
 
*****************************************************/
/*　リンク
----------------------------------------------------*/
/*　テーブル
----------------------------------------------------*/
table {
  border-collapse: separate;
  border-spacing: 0 5px;
}
table th {
  width: 100%;
  display: block;
  height: 32px;
  padding: 3% 0 0;
  background: #ccc;
  font-weight: bold;
  margin-bottom: 1%;
  text-align: center;
}
table td {
  width: 100%;
  display: block;
  font-size: 100%;
  text-align: center;
  margin-bottom: 1%;
}
table.company {
  width: 100%;
  float: none;
}

/*　リスト
----------------------------------------------------*/
/* ページトップ
----------------------------------------------------*/
/* トピックパス
----------------------------------------------------*/
/*****************************************************

 Template - Header
 
*****************************************************/
/* global_header
----------------------------------*/
.global_header {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  z-index: 99999;
}
.global_header .header_contents {
  width: 100%;
}
.global_header .title_logo {
  width: 80%;
  float: left;
  text-align: left;
}
.global_header .title_logo img {
  width: 60%;
  max-width: 180px;
  margin: 15px 0 0 20px;
  display: block;
}
.global_header h1 {
  padding: 0;
  margin: 0;
  text-indent: -9999px;
  display: none;
}

/* global_nav
----------------------------------*/
.global_nav {
  width: 32px;
  float: right;
  margin: 20px 20px 0 0;
}

/*----------ハンバーガーアイコン----------*/
.hamburger {
  position: absolute;
  display: block;
  width: 32px;
  height: 22px;
  z-index: 99999;
  box-sizing: border-box;
}

.hamburger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #171c61;
  margin: 0 auto;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 9px;
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

/*----------ナビゲーション----------*/
#navigation {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 99998;
}

#navigation .navigation_inner {
  display: table;
  width: 100%;
  height: 100%;
}

#navigation .navigation_inner .navigation_menu {
  display: table-cell;
  vertical-align: middle;
}

#navigation .navigation_inner .navigation_menu .navigation_item {
  width: 300px;
  height: 5%;
  margin: 5% auto 0 auto;
}

#navigation .navigation_inner .navigation_menu .navigation_logo {
  width: 150px;
  height: auto;
  margin: 16px auto 0 auto;
}

#navigation .navigation_inner .navigation_menu .navigation_item:first-child {
  margin-top: 0;
}

#navigation .navigation_inner .navigation_menu .navigation_item a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 130%;
  color: #333;
  line-height: 140%;
  text-align: center;
}

#navigation .navigation_inner .navigation_menu .navigation_logo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* button
----------------------------------*/
.button {
  display: inline-block;
  width: 280px;
  height: 48px;
  text-align: center;
  text-decoration: none;
  line-height: 3em;
  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: #fff;
  border: 2px solid #333;
  color: #333;
}

.button:hover {
  background-color: #171c61;
  border-color: #171c61;
  color: #fff;
}

/* button02
----------------------------------*/
.button02 {
  display: inline-block;
  width: 280px;
  height: 48px;
  text-align: center;
  text-decoration: none;
  line-height: 3em;
  outline: none;
}

.button02::before,
.button02::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button02,
.button02::before,
.button02::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button02 {
  background-color: #465c9b;
  border: 2px solid #465c9b;
  color: #fff;
}

.button02:hover {
  background-color: #fff;
  border-color: #171c61;
  color: #171c61;
}

/*****************************************************

 Template - Footer
 
*****************************************************/
footer {
  background: #171c61;
  padding-bottom: 15px;
}
footer p {
  color: #fff;
  text-align: center;
  font-size: 95%;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: none;
}
footer .pagetop {
  border-bottom: solid 1px #ffffff;
}
footer .pagetop img {
  width: 38px;
  height: 38px;
}
footer .pagetop p {
  text-align: right;
  margin: 0 auto;
  height: 38px;
}
footer .pagetop .inner {
  width: 100%;
  margin: 0;
}
footer .pagetop .pankuzu {
  margin-left: 3%;
  text-align: left;
  color: #fff;
}
footer .pagetop .pankuzu li {
  font-size: 1.2rem;
  float: left;
  margin-left: 10px;
  padding-top: 8px;
}
footer .pagetop .pankuzu li::before {
  content: '>';
  margin-right: 5px;
}
footer .pagetop .pankuzu li:nth-child(1) {
  margin-left: 0;
}
footer .pagetop .pankuzu li:nth-child(1)::before {
  content: none;
  margin-right: 0;
}
footer .pagetop .pankuzu a {
  color: #fff;
  text-decoration: none;
}
footer .pagetop .pankuzu a:hover {
  text-decoration: underline;
}
footer .footer_logo img {
  width: 65%;
  height: auto;
}

/*****************************************************

 Page - Home
 
*****************************************************/
/* index_cover
----------------------------------------------------*/
.index_cover {
  width: 100%;
  height: auto;
}
.index_cover img {
  width: 100%;
}

h2 {
  font-size: 130%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #171c61;
  padding: 10px 0;
}

h3 {
  padding-left: 2%;
  border-left: solid 5px #171c61;
  font-size: 120%;
  font-weight: bold;
}

/* introduction
----------------------------------------------------*/
.introduction {
  margin-top: 5%;
  padding-bottom: 10%;
}
.introduction h2 {
  font-size: 120%;
  font-weight: bold;
  color: #58acda;
  text-align: center;
  background: transparent;
  line-height: 1.4;
}
.introduction h2 span {
  font-size: 80%;
  /*font-size:14px;*/
}
.introduction p {
  margin-top: 1%;
  font-size: 95%;
  text-align: left;
}
.introduction p.center {
  text-align: center;
}
.introduction p.recruit_btn {
  text-align: center;
}
.introduction .contact_bnr {
  padding: 40px 0 0;
  margin: 0 auto;
}
.introduction .contact_bnr p {
  margin: 3% auto 0;
  text-align: center;
}
.introduction .contact_bnr img {
  width: 80%;
  height: auto;
}

.colum_intro {
  width: 90%;
  margin: 0 auto;
}
.colum_intro img {
  width: 100%;
}
.colum_intro dl {
  margin-top: 10%;
}
.colum_intro dl dt {
  color: #58abd9;
  font-size: 105%;
  font-weight: bold;
  text-align: center;
  margin-top: 1%;
}
.colum_intro dl dd {
  margin-top: 1%;
  letter-spacing: 0.02em;
  font-size: 90%;
}

/* index_products
----------------------------------------------------*/
.index_products {
  /* リンクの画像エフェクト
  ----------------------------------------------------*/
}
.index_products .products_button {
  width: 100%;
}
.index_products .products_button img {
  width: 100%;
}
.index_products .products_button p {
  width: 100%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 105%;
  padding: 2% 0;
}
.index_products .products_button a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
.index_products .products_button i {
  color: #c30d23;
}
.index_products .content01, .index_products .content02, .index_products .content03, .index_products .content04 {
  width: 100%;
  height: fit-content;
  max-height: 110px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.index_products .content01 p, .index_products .content02 p, .index_products .content03 p, .index_products .content04 p {
  position: absolute;
  bottom: 0;
}
.index_products .content01 {
  background: url(../images/home/bg_index_product01.jpg) no-repeat;
}
.index_products .content02 {
  background: url(../images/home/bg_index_product02.jpg) no-repeat;
}
.index_products .content03 {
  background: url(../images/home/bg_index_product03.jpg) no-repeat;
}
.index_products .content04 {
  background: url(../images/home/bg_index_product04.jpg) no-repeat;
}
.index_products .scale {
  overflow: hidden;
}
.index_products .scale img {
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
}
.index_products .scale img:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* recruit
----------------------------------------------------*/
.index_recruit {
  background: url(../images/home/bg_index_requruit.jpg) no-repeat #fff;
  background-position: left bottom;
  padding-bottom: 40px;
}
.index_recruit .inner h3 {
  font-size: 1.72em;
  font-size: 24px;
  font-weight: bold;
  color: #58acda;
  text-align: center;
  background: transparent;
  text-shadow: 0 0 5px #fff;
  border: none;
}
.index_recruit .inner p {
  text-align: center;
  text-shadow: 0 0 10px #fff;
}
.index_recruit .button {
  display: inline-block;
  width: 280px;
  height: 48px;
  text-align: center;
  text-decoration: none;
  line-height: 3em;
  outline: none;
}
.index_recruit .button::before,
.index_recruit .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.index_recruit .button,
.index_recruit .button::before,
.index_recruit .button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.index_recruit .button {
  background-color: #fff;
  border: 2px solid #333;
  color: #333;
}
.index_recruit .button:hover {
  background-color: #171c61;
  border-color: #171c61;
  color: #fff;
}

/*****************************************************

 Page - Products
 
*****************************************************/
/* products
----------------------------------------------------*/
.products .products_cont {
  background: #ffffff;
  padding-bottom: 5%;
}
.products .products_cont#product01 .left {
  background: url(../images/products/img_product01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.products .products_cont#product02 .left {
  background: url(../images/products/img_product02.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.products .products_cont#product03 .left {
  background: url(../images/products/img_product03.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.products .products_cont#product04 .left {
  background: url(../images/products/img_product04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.products .products_cont .left {
  width: 100%;
  overflow: hidden;
  display: block;
  height: 150px;
  float: none;
}
.products .products_cont .left img {
  width: 100%;
  height: auto;
}
.products .products_cont .right {
  padding-top: 5%;
  float: none;
}
.products .products_cont ul {
  margin-top: 2%;
}
.products .products_cont ul li {
  float: left;
  list-style: none;
  margin-right: 3%;
}
.products .products_cont ul li:before {
  font-family: FontAwesome;
  content: "\f0c8";
  padding-right: 1px;
  /*文字との隙間*/
}
.products .products_cont .txt {
  margin-top: 20px;
}
.products .products_cont .lineup {
  margin: 2% 0;
}
.products .products_cont .lineup img {
  width: auto;
  height: auto;
  max-height: 80px;
}
.products .products_cont .flow_img {
  width: 90%;
  margin: 10% auto;
  text-align: center;
  line-height: 0;
}

/*****************************************************

 Page - Company
 
*****************************************************/
/* company
----------------------------------------------------*/
.company .company_cont {
  background: #ffffff;
}
.company .company_cont .inner {
  padding: 10% 0;
}
.company .company_cont .inner .left {
  float: none;
}
.company .company_cont .inner .right {
  float: none;
}
.company .company_cont .inner .right .inner {
  padding: 5% 0 0;
}
.company .company_cont h3.quality {
  font-size: 120%;
  font-weight: bold;
  color: #58acda;
  text-align: center;
  background: transparent;
  line-height: 1.5;
  border: none;
  padding: 0;
}
.company .company_cont p.txt {
  margin-top: 5%;
  text-align: center;
}
.company #company01 img {
  width: 80%;
  margin: 0 auto;
}
.company #company01 .img_cqd {
  text-align: center;
}
.company #company02 img {
  width: 35%;
  margin: 0 auto;
}
.company #company02 p {
  margin-top: 1%;
  text-align: center;
}
.company #company02 p span {
  font-size: 110%;
  font-weight: bold;
  color: #c30d23;
}

/* アクセスマップ
---------------------------------*/
.accessmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 10% auto;
}

.accessmap iframe,
.accessmap object,
.accessmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 沿革テーブル
---------------------------------*/
table.history {
  border-collapse: separate;
  border-spacing: 0px 8px;
  width: 100%;
  float: none;
  font-size: 90%;
}
table.history th {
  display: block;
  width: 95px;
  height: auto;
  background: transparent;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
  color: #4d536b;
  vertical-align: top;
  padding: 0;
}
table.history td {
  display: block;
  vertical-align: top;
  line-height: 1.3;
  text-align: left;
}
table.history.last {
  border-left: 1px dotted #ccc;
  padding-left: 15px;
}

/*****************************************************

 Page - Contact
 
*****************************************************/
/* contact
----------------------------------------------------*/
.contact .contact_cont {
  background: #fff;
}
.contact .contact_cont .txt {
  text-align: center;
}
.contact .required::before {
  content: url(../images/contact/icon_required.png);
  padding-right: 5px;
  vertical-align: middle;
}
.contact .mailform {
  width: 95%;
  margin: 5% auto;
}
.contact .mailform dt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4d536b;
}
.contact .mailform .clearfix {
  padding-top: 10%;
}
.contact .mailform .privacy {
  border: 1px solid #ccc;
  margin: 10% auto 1%;
  padding: 20px;
  border-radius: 10px;
}
.contact .mailform .privacy h4 {
  font-size: 1.8rem;
  text-align: center;
}
.contact .mailform .privacy p {
  font-size: 1.1rem;
  text-align: left;
  margin: 20px auto 10px;
}
.contact .mailform .confirm {
  margin: 0 auto;
}
.contact .mailform .confirm dt {
  font-size: 1.1rem;
  text-align: center;
  margin: 0 auto 5%;
}
.contact .mailform .confirm input {
  width: 90% !important;
  margin: 0 5% 5%;
}

.thanks .txt {
  text-align: center;
}
.thanks .flow_img {
  width: 90%;
  margin: 10% auto;
  text-align: center;
  line-height: 0;
}

/*****************************************************

 Page - Recruit
 
*****************************************************/
/* recruit
----------------------------------------------------*/
ul.menu_recruit {
  margin: 10% auto 5%;
  /*width:580px;*/
}
ul.menu_recruit li {
  float: none;
  margin-bottom: 5%;
  text-align: center;
}

.recruit {
  background: #fff;
}
.recruit .inner {
  margin: 0 auto 5%;
  padding: 5% 0;
}
.recruit .recruit_btn {
  text-align: center;
}
.recruit .question {
  /*width: 980px;*/
  margin: 10% auto 0;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
.recruit .question .left {
  /*width:320px;*/
  float: none;
  text-align: center;
}
.recruit .question .left img {
  width: 80%;
}
.recruit .question .right {
  /*width:596px;*/
  float: none;
}
.recruit .question .right h3 {
  border-left: none;
  padding-left: 0;
  font-size: 120%;
  line-height: 1.2;
  margin: 0% 10% 5%;
  text-align: center;
}
.recruit .question .right h3 span {
  color: #58acda;
  font-size: 70%;
}
.recruit .question .right dt {
  background: #171c61;
  color: #fff;
  font-size: 100%;
  padding: 1% 2%;
}
.recruit .question .right dd {
  font-size: 90%;
  padding: 10px 10px 20px;
}
