﻿/* ウェブフォントの読み込み */
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(notosansjapanese.css);

/* ウェブアイコンの読み込み */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

/* material-iconsの設定 */
.material-icons {
    font-size: 22px;
    display: inline-block;
    vertical-align: bottom ;
    /* ieでウェブアイコンを利用するのに必要な定義 */
    font-feature-settings: 'liga';
    /* WebKitブラウザサポート */
    -webkit-font-smoothing: antialiased;
    /* Chrome、Safariサポート */
    text-rendering: optimizeLegibility;
    /* Firefoxサポート */
    -moz-osx-font-smoothing: grayscale;

}

/*****************************************************************
 * 共通仕様
 *****************************************************************/
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Roboto', 'Noto Sans Japanese', sans-serif;
	font-size: 16px;
	font-weight: 200; /* 標準フォントウェイト　*/
	color: #333333; /* 通常フォントカラー */
	-webkit-text-size-adjust: 100%; /* 横向き表示の時に文字サイズを自動で調整させないようにする設定 */
	min-width: 320px;
}

button, input, select, textarea {
	font-family: 'Roboto', 'Noto Sans Japanese', sans-serif;
	font-size: 16px;
	font-weight: 200; /* 標準フォントウェイト　*/
	color: #333333; /* 通常フォントカラー */

}

#main{
    overflow: hidden;
	position: relative;
}

#main .imgTrm #mainImgWrapper {
	line-height: 0;
	border-bottom: 1px solid rgb(232,232,232);
}

#main .imgTrm .mainImgWrapper {
	line-height: 0;
	border-bottom: 1px solid rgb(232,232,232);
}

.contentMaxWidth{
    max-width: 1300px;
    margin: 0 auto;
}

/* 見出し  */
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}
h2 {
	font-weight: 300;
}

a {
	text-decoration: none;
}

p {
    margin: 0 ;
}

/* リスト */
ul {
    padding: 0 ;
    margin: 0 ;
}

ul li {
    list-style-type: none ;
}
button:hover {
	cursor: pointer;
}
#contentTop {
	position: relative;
}
#contentTop div.entry {
	position: absolute;
	top: 50px;
	right: 3%;
}
#contentTop div.entry img {
	width: 170px;
}


/* ヘッダー、フッターのリンク設定 */
header a,footer a {
	color: #333333 ; /*　通常フォントカラー　*/
}

/* 横に余白を持つコンテンツの幅を定義 */
.contentMargin{
    margin-left: 2%;
    margin-right: 2%;
}

/* ブラウザ幅Maxで表示する画像　*/
img.fullWidthImg {
	width: 100%;
	height: auto;
}

img.contentWidth{
	width: 100%;
	height: auto;
	padding-bottom:40px;
}

img.topBottomBorder{
    border-top:  1px solid #e6e6e6 ;
    border-bottom: 1px solid #e6e6e6 ;
}

.backgroundColorSet{
    background-color: #f5f5f5 /*グレー背景*/
}

.floatClear::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* 分割線 */
div.splitLine{
    margin: auto;
    width: 90%;
    height: 1px;
    background-color: #CCCCCC;
}

/* コンテンツ説明文 */
div.contentTitle {
	font-weight:100;
	font-size:20px;
	margin: 40px 8%;
}

/* コンテンツのメイン部分 */
div.contentMain{
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
}

/* コンテンツのタイトル部分 */
div.contentMain .title{
    font-size: 20px;
    font-weight: 400;
}

div.contentMain a.link{
    color: #0070c0 ; /* 通常アンカーカラー */
}
div.contentMain i {
	font-size: 22px;
	vertical-align: top;
}

/* 企業情報系：本文中の見出し　(8/5 追加)*/
.companiesCaption {
	color: #9b8337; /*rgb(155,131,55)*/
	font-size: 18px;
	font-weight: 400;
}

/*
ul要素に対してTwoBlockCcontentクラスを指定すると、
２カラムレイアウト、項目同士の間隔10px
タブレットサイズ２カラム、スマホサイズ１カラム
に自動でレイアウト調整を行うCSS
*/
ul.TwoBlockCcontent{
    padding: 0;
}

ul.TwoBlockCcontent li {
    float: left;
    text-align: center;
    list-style-type:none;
    /* ボックスごとの余白 */
    margin-right: 10px;
}
ul.TwoBlockCcontent::after{
    /* フロートを終了させないと親のボックスに全体の高さが伝わらない
    　　議事要素を利用してfloatの解除をする*/
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
@media screen and (min-width:601px){
    /*　幅100%からボックス同士の間隔分を除きたいのでその分をpaddingで削る　*/
    ul.TwoBlockCcontent{
        padding-right: 10px;
    }
    ul.TwoBlockCcontent li {
        width: 50%;
    }
    /*　一番右に来るボックスは間隔が不要
　　　　親ボックスがpaddingで折り返されてしまうのでネガティブマージンでpadingに重なるように配置する　*/
    ul.TwoBlockCcontent li:nth-child(2n){
        margin-right: -10px;
    }
}
@media screen and (max-width:600px){
    ul.TwoBlockCcontent li {
        margin-right: 0;
        width: 100%;
    }
}

/*
ul要素に対してThreeBlockCcontentクラスを指定すると、
３カラムレイアウト、項目同士の間隔10px
タブレットサイズ２カラム、スマホサイズ１カラム
に自動でレイアウト調整を行うCSS
*/

ul.ThreeBlockCcontent{
    padding: 0;
}

ul.ThreeBlockCcontent li {
    float: left;
    text-align: center;
    list-style-type:none;
    /* ボックスごとの余白 */
    margin-right: 10px;
}
ul.ThreeBlockCcontent::after{
    /* フロートを終了させないと親のボックスに全体の高さが伝わらない
    　　議事要素を利用してfloatの解除をする*/
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.bnr {
	width: 240px;
}

.img2x {
	zoom: 0.5;
	display: inline;
}

img {
	vertical-align: bottom;
}

.whiteShadow {
/*	text-shadow: -1px -1px 2px #FFF,
	              1px -1px 2px #FFF,
	              1px  1px 2px #FFF,
                 -1px  1px 2px #FFF;*/
 	text-shadow:  0px  0px 2px #FFF,
	              0px  0px 2px #FFF,
	              0px  0px 2px #FFF;
}


@media screen and (min-width:1001px){
    /*　幅100%からボックス同士の間隔分を除きたいのでその分をpaddingで削る　*/
    ul.ThreeBlockCcontent{
        padding-right: 20px;
    }
    ul.ThreeBlockCcontent li {
        width: 33.33333%;
    }
    /*　一番右に来るボックスは間隔が不要
　　　　親ボックスがpaddingで折り返されてしまうのでネガティブマージンでpadingに重なるように配置する　*/
    ul.ThreeBlockCcontent li:nth-child(3n){
        margin-right: -20px;
    }
}

@media screen and (min-width:601px) and (max-width:1000px){
    /*　幅100%からボックス同士の間隔分を除きたいのでその分をpaddingで削る　*/
    ul.ThreeBlockCcontent{
        padding-right: 10px;
    }
    ul.ThreeBlockCcontent li {
        width: 50%;
    }
    /*　一番右に来るボックスは間隔が不要
　　　　親ボックスがpaddingで折り返されてしまうのでネガティブマージンでpadingに重なるように配置する　*/
    ul.ThreeBlockCcontent li:nth-child(2n){
        margin-right: -10px;
    }
}

@media screen and (max-width:600px){
    ul.ThreeBlockCcontent li {
        margin-right: 0;
        width: 100%;
    }
}

/* 共通画像　サイズ設定（本サイズのハーフサイズ） */
/* マイナビ　 */
.ImgMynavi {
	max-width: 240px;
}

/*************************************************************
 * お問い合わせ
*************************************************************/
/* お問い合わせ（横 長）　*/
.imgOtoiawase {
	max-width: 500px;
}
/* お問い合わせ（縦長）　*/
.imgOtoiawaseV {
	max-width: 260px;
}
#otoiawase {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

#otoiawase .imgOtoiawaseV {
	display: none;
}
.otoiawaseBackgroundColor {
    background-color: #f5f5f5 /*グレー背景*/
}

/*************************************************************
 * パンくずリスト
*************************************************************/
.pankuzuList {
	width: 100%;
	height: 35px;
	background-color: #F5F5F5;
	margin: 0 auto;
}

.pankuzuList ul {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 15px;
	line-height: 35px;
}

.pankuzuList ul li {
	font-size: 0.9em;
	display: inline;
	list-style:　none !important;
}

.pankuzuList ul li:after {
	font-size: 0.7em;
	content: " ＞ ";
	padding: 0 5px;
}

.pankuzuList ul li:last-child:after {
	content: none;
}

.pankuzuList ul li a {
	color: #333333;
}


/*************************************************************
 * フッター部
*************************************************************/
footer {
    font-weight: 200 ;
    text-align: center ;
    width: 100%;
}

footer .footertop{
    margin: 0 auto;
    max-width: 1200px;
    display: table;
    width: 100%;
}

.footertop>div{
    display:table-row;
}

.footertop>div>div{
    display: table-cell;
}

footer .footerDecoration{
    height: 160px;
    width: auto;
    background-image: url(../images/town.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}

footer .btnArea{
    width: 60px;
    padding-right : 3%;
    padding-left: 80px;
    vertical-align: bottom;
}

#topBtn{
	box-sizing: content-box;
    width: 60px;
    height: 30px;
    padding-top: 10px;
    background-color: rgb(233, 233, 233);
}
footer .backGround{
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(233, 233, 233);
    padding-bottom: 20px;
}

footer nav{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 3%;
    vertical-align: top;
    box-sizing: border-box;
}


footer .linkGroup{
    display: inline-block;
    vertical-align: top;
    text-align: left;
    /*
    width: 22%;
    */
   	width: 46%;
    margin-top: 40px;
}

footer .linkGroup:not(:last-child){
    margin-right: 2%;
}

footer .linkGroup .category{
    font-weight: 400;
}

footer .linkGroup .subLink{
    border-top: 1px solid #CCCCCC ;
    margin-top: 5px;
    padding-top: 10px;
}

footer .linkGroup .subLink li{
    margin : 5px 0;
}

footer .borderSpace{
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    border-bottom: 1px solid #CCCCCC ;
}

footer p {
    margin-top: 20px ;
    text-align: center ;
}

footer .cpy {
    font-size: 0.9em;
    font-color: #555555;
}

/* ヘッダーとメインコンテンツの境界を表す要素 */
div#headerSpliter{
    width: 100%;
    height: 0;
    border-top: 2px solid rgb(0,176,240);
}

/* 横スクロールするCSS */

.scrollImageTrim{
    overflow: hidden;
    position: relative;
    width: 100%;
}

.scrollImageBox>div{
    display: inline-block;
    position: relative;
    top:0;
    width:100%;
    transition: left 0.5s linear;
    visibility: hidden;
}
.scrollImageBox.disp1 .scrollImage1{
    left: 0%;
    visibility: visible;
}

.scrollImageBox.disp1 .scrollImage2{
    left: 100%;
    position: absolute;
}

.scrollImageBox.disp1 .scrollImage3{
    left: -100%;
    position: absolute;
}
.scrollImageBox.disp2 .scrollImage1{
    left: -100%;
    position: absolute;
}

.scrollImageBox.disp2 .scrollImage2{
    left: 0%;
    visibility: visible;
}
.scrollImageBox.disp2 .scrollImage3{
    left: 100%;
    position: absolute;
}

.scrollImageBox.disp3 .scrollImage1{
    left: 100%;
    position: absolute;
}

.scrollImageBox.disp3 .scrollImage2{
    left: -100%;
    position: absolute;
}

.scrollImageBox.disp3 .scrollImage3{
    left: 0%;
    visibility: visible;
}


.scrollImageBox.out1 .scrollImage1{
    visibility: visible;
}
.scrollImageBox.out2 .scrollImage2{
    visibility: visible;
}
.scrollImageBox.out3 .scrollImage3{
    visibility: visible;
}

/*************************************************************
 *　　スマホ画面下部ナビゲーション　　
 **************************************************************/
#smartBtmNav {
	display: none;
}
