@charset "UTF-8";
/* CSS Document */

/*
ピンク：#e4007e
紫：#38235e
*/
/* ------------------------------------------------ カラー系 */
/* WEBアイコン */
i.fa {
	color: #38235e;
}
i.wht {
	color: #fff;
}

.bgcBK {
	background-color: rgba(0,0,0,0.1);
}

/* background */
.nav1 {
	background-color: rgba(16,41,142,1);/*25a4b7*/
}
.nav2 {
	background-color: rgba(16,41,142,.9);/*ad438e*/
}
.nav3 {
	background-color: rgba(16,41,142,.8);/*1d4293*/
}
.nav4 {
	background-color: rgba(16,41,142,.7);/*b0bf30*/
}
.nav5 {
	background-color: rgba(16,41,142,.6);/*e4aa01*/
}
.nav6 {
	background-color: rgba(16,41,142,.5);/*6276b5*/
}
.nav7 {
	background-color: rgba(16,41,142,.4);/*6276b5*/
}

/* ------------------------------------------------ ページフェードイン */
body {
	margin: 0;
	padding: 0;
    animation: fadeIn 7s ease 0s 1 normal;
    -webkit-animation: fadeIn 7s ease 0s 1 normal;
}

	@keyframes fadeIn {
		0% {opacity: 0}
		100% {opacity: 1}
	}

	@-webkit-keyframes fadeIn {
		0% {opacity: 0}
		100% {opacity: 1}
	}

*::after,* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* ------------------------------------------------ コンテンツフェードイン */
.fuwatAnime {
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1.5s;
	-ms-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-name: fuwatAnime;
	-ms-animation-name: fuwatAnime;
	animation-name: fuwatAnime;
	visibility: visible !important;
}
	@-webkit-keyframes fuwatAnime {
		0% {
			opacity: 0;
			-webkit-transform: translateY(50px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
		}
	}
	@keyframes fuwatAnime {
		0% {
			opacity: 0;
			-webkit-transform: translateY(50px);
			-ms-transform: translateY(50px);
			transform: translateY(50px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}

/* ------------------------------------------------ 共通 */
* {
    margin: 0;
	padding: 0;
  	list-style: none;
  	box-sizing: border-box;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: "Sawarabi Gothic";
	letter-spacing: 2.5px;
	line-height: 180%;
}

a {
	color: #333;
	text-decoration: none;
	letter-spacing: 2.5px;
	line-height: 180%;
}
a:hover {
	transition: 0.5s ;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}

p {
	/*text-align: justify;
	text-justify: distribute-all-lines;*/
	letter-spacing: 2.5px;
	line-height: 180%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*---------------------------------------- マージン・パディング系 */
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb100_50 {
	margin-bottom: 100px;
}
.mb100 {
	margin-bottom: 100px;
}
.mb150 {
	margin-bottom: 150px;
}

.mr5 {
	margin-right: 5px;
}
.ml5 {
	margin-right: 5px;
}

.mtb10 {
	margin: 10px 0;
}

/*---------------------------------------- フォント系 */
h1,h2,h3,h4,h5,h6{
    font-size: 100%;
	font-weight: normal;
}

.font10 {
	font-size: 10px;
}
.font12 {
	font-size: 12px;
}
.font16 {
	font-size: 16px;
}
.font18 {
	font-size: 18px;
}
.font20 {
	font-size: 20px;
}
.font25 {
	font-size: 25px;
}
.font30 {
	font-size: 30px;
}
.font35 {
	font-size: 35px;
}

/*---------------------------------------- 配置系 */
.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

/*---------------------------------------- ヘッダ */
.inner {
	width: 100%;
	margin: 0 auto;
}

header {
	position: fixed;
	width: 100%;
	height: 120px;
	background-color: rgba(255,255,255,.9);
	padding: 0;
	z-index: 2;
}
header .inner {
	/*
	display: flex;
	justify-content: flex-end;
	align-items: center;
	*/
}

/* ロゴマーク */
h1.logo {
	float: left;
	width: 250px;
	height: 44px;
	z-index: 2;
	margin: 41px 0 0 10px;
}
h1.logo a {
	float: left;
	width: 250px;
	height: 44px;
	background-image: url(../images/logo.png);
	font-size: 0.1em;
	text-indent: -9999em;
}
	@media all and (-webkit-min-device-pixel-ratio: 1.5) {
		h1.logo a {
			background-image: url(../images/logo@2x.png);
			background-size: 250px 44px;		}
	}

header nav {
	/*margin-right: -16px;*/
}
header nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header nav ul li a {
	display: block;
	width: 145px;
	height: 120px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding: 30px 0 0 0;
	line-height: 130%;
}

/*
#main_img{
	max-width: 960px;
	margin: 0 auto;
}
*/

#nav_toggle{
	display: none;
}
.change_btn{
	color: #333;
	display: block;
	width: 100%;
	text-decoration: none;
	border: 1px solid #333;
	text-align: center;
	padding: 25px 0;
	font-size:20px;
	margin-top: 40px;
}

/* ------------------------------------------------ エリア */
.wrapper {
	width: 1080px;
	height: auto;
	margin: 100px auto 0;
}

.wrapper_layer {
	width: 1080px;
	height: auto;
	margin: 50px auto 0;
}

section {
	margin-top: 170px;
}
#evaluation,
#management,
#control,
#large,
#midium,
#small,
#head,
#tokyo,
#recruit,
#entry,
#call,
#mail,
#safety,
#infection {
	margin-top: -170px;
	padding-top: 170px;
}

.wrap80 {
	width: 80%;
	height: auto;
	margin: 50px auto 0;
}

/* ------------------------------------------------ スライドショー・ページイメージ */
ul.bxslider {
	margin: 120px 0 0 0;
	padding: 0;
}
ul.bxslider img {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.pageimg img {
	width: 100%;
	margin: 120px 0 0 0;
}

/* ------------------------------------------------ パンくず */
.pageguide {
	width: 1080px;
	margin: 0 auto 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
	/*padding: 10px 20px;
	border: 1px solid #ddd;
    box-shadow: 0 0 5px #fff,0 0 5px #ddd,0 0 1px#aaa;
    -webkit-box-shadow: 0 0 5px #fff,0 0 5px #ddd,0 0 1px#aaa;
    -moz-box-shadow: 0 0 5px #fff,0 0 5px #ddd,0 0 1px#aaa;*/
}
.pageguide p {
	font-size: 12px;
	text-align: right;
}
.pageguide i.fa {
	padding: 0 15px;
}

/* ------------------------------------------------ アンカーリンク */
ul.pageanchor {
	clear: both;
	display: inline-block;
	margin-bottom: 50px;
}
ul.pageanchor li {
	float: left;
	padding: 0 5px;
}

ul.pageanchor li a {
	color: #666;
	border: 1px solid #ccc;
	padding: 5px 10px;
}

/* ------------------------------------------------ 見出し */
h2.ttl {
	text-align: center;
	font-size: 25px;
	margin-bottom: 5px;
}
h3.ttl {
	font-family: 'Kreon', serif;
	text-align: center;
	font-size: 18px;
	color: #38235e;
	margin-bottom: 8px;
}
.down_arrow{
    width: 320px;
    margin: 0 auto 50px;
    padding: 0;
    border-bottom: 2px solid #38235e;
    text-align: center;
    position: relative;
}
.down_arrow:before{
    content: "";
    border: 12px solid transparent;
    border-top: 12px solid #fff;
    position: absolute;
    right: 46.5%;
    bottom: -22px;
    z-index: 1;
}
.down_arrow:after{
    content: "";
    border: 12px solid transparent;
    border-top: 12px solid #38235e;
    position: absolute;
    right: 46.5%;
    bottom: -24px;
}

/* -------------------------------------------- Information */
.flexbox_info_blog {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.f_item_info {
	width: 48%;
}
.f_item_blog {
	width: 48%;
}
	@media (max-width: 767px){
		.f_item_info {
			width: 100%;
			margin-bottom: 60px;
		}
		.f_item_blog {
			width: 100%;
		}
	}

.update {
	width: 100%;
	margin-bottom: 15px;
}
p.date {
	display: block;
	width: 100%;
	font-size: 12px;
	color: #999;

}
span.new_icon {
	text-align: center;
	font-size: 10px;
	color: #fff;
	background-color: #f00;
	margin-right: 5px;
	padding: 3px 5px 3px 7px;
	border-radius: 2px;
}
p.news {
	display: block;
	width: 100%;
}
/* ボタン */
.link_btn_box {
	text-align: center;
	width: 300px;
	height: 60px;
	margin: 60px auto 0;
	background: #10298e;
	border: 2px solid #10298e;
	border-radius: 100vh;
	transition: 0.5s;
}
a.link_btn {
	line-height: 55px;
	text-align: center;
	color: #fff;
}
.link_btn_box:hover,
a.link_btn:hover {
	color: #10298e;
	background: #fff;
}

/* -------------------------------------------- 一覧：Information */
.info_box {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
dl.info dt {
    float: left;
    font-size: 12px;
    color: #999;
    width: 15%;
    clear: both;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
dl.info dt:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
dl.info dd {
    float: right;
    width: 85%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
dl.info dd:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
	@media (max-width: 767px){
		dl.info dt {
			clear: left;
		    width: 100%;
		    margin-bottom: 15px;
		    padding-bottom: 0;
		}
		dl.info dd {
			clear: right;
		    width: 100%;
		}
	}

/* 一覧ページング */
.wp-pagenavi {
    width: 100%;
    text-align: center;
    margin: 30px auto 120px;
}
.wp-pagenavi span.pages,.first,.extend,.last {
    display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
    font-size: 12px;
    margin: 10px;
    padding: 5px 10px;
}
.wp-pagenavi a {
    text-decoration: none;
    background-color: #333;
    color: #fff;
}
/* -------------------------------------------- 個別：Information */
.info_box_single {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
}
.info_single_day {
    font-size: 12px;
    color: #999;
}
.info_single_ttl {
    font-size: 24px;
    line-height: 200%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.info_single_txt {
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 200%;
}

/* 個別ページング */
.paging_single {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
}
.previous_post {
    float: left;
    text-align: left;
    width: 50%;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.previous_post a {
    font-size: 12px;
}
.next_post {
    float: right;
    text-align: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.next_post a {
    font-size: 12px;
}

/* -------------------------------------------- トップ：当社の取り組み */
.column1 {
	position: relative;
}

.columnpic {
	text-align: left;
}
.columnpic img {
	width: 50%;
}
.columntext {
	position: absolute;
	top: 100px;
	right: 0;
	width: 65%;
}

.columnpic_right {
	text-align: right;
}
.columnpic_right img {
	width: 50%;
}
.columntext_right {
	position: absolute;
	top: 75px;
	left: 0;
	width: 65%;
}

.layer {
	padding: 20px 30px;
	border-top: 2px solid rgba(56,35,94,.4);/*rgba(228,0,126,.4)*/
	border-bottom: 2px solid rgba(56,35,94,.4);/*rgba(228,0,126,.4)*/
	background-color: rgba(255,255,255,.8);
}
.layer h4.ttl {
	font-size: 25px;
	margin-bottom: 15px;
}

/* ------------------------------------------------ バスカタログ */
/* VIP・プレミアム  */
.flexbox_vip_prmium {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
}
.f_item_vip_prmium:nth-child(1) {
    width: 67%;
}
.f_item_vip_prmium:nth-child(2) {
    width: 30%;
}
.f_item_vip_prmium img {
    width: 100%;
}
.vip_prmium_ttl {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.vip_prmium_txt {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 25px;
}
    @media (max-width: 767px) {
        .sponly {
            display: none;
        }

        .flexbox_vip_prmium {
            margin-bottom: 50px;
        }
        .f_item_vip_prmium:nth-child(1) {
            width: 100%;
            margin-bottom: 25px;
        }
        .f_item_vip_prmium:nth-child(2) {
            width: 100%;
        }
        .vip_prmium_ttl {
            font-size: 20px;
            margin-bottom: 10px;
            padding-bottom: 10px;
        }
        .vip_prmium_txt {
            font-size: 15px;
            margin-bottom: 15px;
        }
    }
    @media (min-width: 768px) and (max-width: 980px) {
        .sponly {
            display: none;
        }

        .flexbox_vip_prmium {
            margin-bottom: 50px;
        }
        .f_item_vip_prmium:nth-child(1) {
            width: 100%;
            margin-bottom: 25px;
        }
        .f_item_vip_prmium:nth-child(2) {
            width: 100%;
        }
        .vip_prmium_ttl {
            font-size: 20px;
            margin-bottom: 10px;
            padding-bottom: 10px;
        }
        .vip_prmium_txt {
            font-size: 15px;
            margin-bottom: 15px;
        }
    }
/* スライダー */
.slider-container {
    width: 100%;
}
.slider-container img {
    width: 100%;
}
.slick-prev,
.slick-next {
    z-index: 2;
}

#thumbs div {
    cursor: pointer;
    outline: none;
    background: #333;
    list-style: none;
}
#thumbs div img {
    opacity: 0.4;
}
#thumbs div.slick-current img {
    opacity: 1;
}
.table_box table.bus {
    font-size: 13px;
}
.table_box table.bus th {
    display: block;
    width: 100%;
    padding: 5px 10px;
}
.table_box table.bus td {
    display: block;
    width: 100%;
    padding: 5px 10px;
}
.table_box table.bus th::after {
    display: none;

}
    @media (max-width: 767px) {
        .table_box table.bus {
            font-size: 15px;
        }
        .table_box table.bus th {
            padding: 10px;
        }
        .table_box table.bus td {
            padding: 10px;
        }
    }
    @media (min-width: 768px) and (max-width: 980px) {
        .table_box table.bus {
            font-size: 15px;
        }
        .table_box table.bus th {
            padding: 10px;
        }
        .table_box table.bus td {
            padding: 10px;
        }
    }

.columnpic40 {
	float: left;
	display: inline-block;
	width: 37%;
	margin-right: 3%;
}
.columntext60 {
	display: inline-block;
	width: 60%;
}

table.bus {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 5px;
}

table.bus th,table.bus td {
	padding: 10px 30px;
}

table.bus th {
	background: #38235e;
	vertical-align: middle;
	text-align: left;
	width: 20%;
	overflow: visible;
	position: relative;
	color: #fff;
	font-weight: normal;
}

table.bus th:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #38235e;
	border-width: 10px;
	margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
	table.bus th:: after {
		float: right;
		padding: 0;
		left: 30px;
		top: 10px;
		content: " ";
		height: 0;
		width: 0;
		position: relative;
		pointer-events: none;
		border: 10px solid transparent;
		border-left: #38235e 10px solid;
		margin-top: -10px;
	}
}

table.bus td {
	background: #f5f5f5;
	width: 80%;
}

.bus_name {
	font-size: 20px;
	margin-bottom: 15px;
}

/* ------------------------------------------------ 会社概要 */
table.table_design {
	border-collapse: collapse;
	width: 100%;
}
table.table_design th {
	width: 25%;
	border-top: #ccc 1px dotted;
	border-bottom: #ccc 1px dotted;
	border-left: #38235e 4px solid;
	padding: 10px 20px;
	font-weight: normal;
	background-color: #f5f5f5;
}
table.table_design td {
	width: 75%;
	border-top: #ccc 1px dotted;
	border-bottom: #ccc 1px dotted;
	padding: 10px;
}
table.table_design th img {
	text-align: center;
	width: 100px;
	padding: 10px 0;
}

/* ------------------------------------------------ 当社の取り組み */
/* 安全と安心の取組み */
ul.safety li {
    list-style-type: square;
}
ul.safety li ul li {
    font-size: 14px;
    list-style-type: circle;
    margin-left: 23px;
}

/* 感染症対策の取組み */
.flexbox_infection {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
}
.f_item_infection:nth-child(1) {
    width: 60%;
}
.f_item_infection:nth-child(2) {
    width: 35%;
}

/* 安全性評価認定 */
.column100 {
	display: inline-block;
	width: 100%;
}
.columnpic30 {
	float: left;
	display: inline-block;
	width: 28%;
	margin-right: 2%;
}
.columntext70 {
	display: inline-block;
	width: 70%;
}

/* 運輸安全マネージメント */
.inner_box {
	display: block;
	clear: both;
	width: 100%;
}

h4.ttl {
	font-size: 20px;
	margin-bottom: 15px;
	/*padding-bottom: 15px;
	border-bottom: 1px solid #ccc;*/
}

table.management {
	width: 50%;
	margin: 0 0 30px 0;
	border: 1px solid #ccc;
}
table.management th {
	text-align: center;
	font-weight: normal;
	padding: 5px 0;
	border: 1px solid #ccc;
}

table.management td {
	width: 50%;
	text-align: center;
	padding: 5px 0;
	border: 1px solid #ccc;
}

/* 安全管理規程 */
.inner_box ol li {
	list-style-type: decimal;
	margin-left: 55px;
}

.ml7 {
	margin-left:7px;
}

/* -------------------------------------------- お問い合わせ */
/* TEL */
.flexbox_221_tel {
	width: 100%;
    display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.f_item_221_tel {
	width: 49%;
	text-align: center;
	padding: 20px 0;
	border: 1px solid #ccc;
}

.office_tel {
	font-size: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.tel_tel {
	font-family: 'Kreon', serif;
	font-size: 35px;
}
.add_tel {
	font-size: 14px;
}

/* FORM */
table.contact {
	border-collapse: collapse;
	width: 100%;
}
table.contact th {
	width: 25%;
	border-top: #ccc 1px dotted;
	border-bottom: #ccc 1px dotted;
	border-left: #38235e 4px solid;
	padding: 10px 20px;
	font-weight: normal;
	vertical-align: middle;
	background-color: #f5f5f5;
}
table.contact td {
	width: 75%;
	border-top: #ccc 1px dotted;
	border-bottom: #ccc 1px dotted;
	padding: 10px;
}
table.contact td input[type="text"],
table.contact td input[type="tel"],
table.contact td input[type="email"],
table.contact td select {
	width: 100%;
	height: 3em;
	padding: 0 15px;
}

table.contact td textarea {
	width: 100%;
	padding: 15px;
}

/* テキスト入力欄の有効・無効 */
.bar {
    display: none;
}
input:checked + label + div {
    display: block;
}

/* ボタン */
.submit_btn {
	text-align: center;
	margin: 0 0 0 35px;
	padding: 0;
	width: 100%;
}

input[type="submit"] {
	color: #fff;
	background-color: #1d2088;
	border: none;
	border-radius: 5px;
	margin: 0;
	padding: 10px 50px;
}

.must {
	/*display: block;*/
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 12px;
	color: #FFF;
	/*float: left;*/
	margin: 0px 5px;
	/*border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(_images/mfp_header.png);
	background-size: 100% 100%;*/
}

/* -------------------------------------------- フッタ上部：コンテンツ */
.flexbox_331 {
	width: 100%;
    display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.f_item_331 {
	width: 32.5%;
}

/* ------------------------------------------------ ページトップ */
.pagetop {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
}
.pagetop a {
    display: block;
    background-color: rgba(51,51,51,5);
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 25px;
}
.pagetop a:hover {
    display: block;
    background-color: rgba(51,51,51,5);
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 25px;
	filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.pagetop i.fa {
	margin: 0;
	padding: 0;
	color: #fff;
}

/* ------------------------------------------------ フッタメニュー（スマホのみ）*/
.flexbox_ftmenu {
	position: fixed;
	left: 0;
	bottom: 0;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
	justify-content: space-between;
	width: 100%;
}
.f_item_ftmenu {
	width: 20%;
	height: 75px;
	text-align: center;
	background-color: rgba(0,0,0,.7);
	padding: 15px 0 0 0;
	border-left: 1px dotted rgba(255,255,255,.5);
	border-right: 1px dotted rgba(255,255,255,.5);
}
.f_item_ftmenu a {
	display: block;
	color: #fff;
	font-size: 10px;
	letter-spacing: normal;
	line-height: normal;
}

/* ------------------------------------------------ フッタ */
footer {
	width: 100%;
	background: url('../images/footer.jpg') no-repeat center center;
	background-size: cover;
	background-color: #333;
}
.liquid_bgc_blk {
	padding: 30px 0;
	background-color: rgba(0,0,0,.8);
}

footer .wrap {
	width: 1080px;
	height: auto;
	margin: 0 auto;
}

.footer_ttl {
	font-family: 'Kreon', serif;
	font-size: 25px;
	color: #ccc;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #ccc;
}

.flexbox_221 {
	width: 100%;
    display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.f_item_221 {
	width: 50%;
}
.office,.tel,.tel a,.add,.f_item_221 i.fa,a.button,.flexbox_331_ft a,.f_item_331_ft i.fa,.copy {
	color: #ccc;
}
.tel {
	font-family: 'Kreon', serif;
	font-size: 25px;
}
.add {
	font-size: 14px;
	margin-bottom: 15px;
}

.flexbox_331_ft {
	width: 100%;
    display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.f_item_331_ft {
	width: 32.5%;
}

.copy {
	font-size: 12px;
	text-align: right;
}

/* ボタン */
.btn-shine {
  color: #ccc;
  display: inline-block;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  width: 65%;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.btn-shine:hover {
  border-color: #ccc;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: transparent;
  outline-offset: 12px;
  text-shadow: 2px 2px 3px #000;
}


@media (max-width: 767px){
	.pconly {
		display: none;
	}

	/* ------------------------------------------------ カラー系 */
	/* background */
	.nav1 {
		background-color: inherit;
	}
	.nav2 {
		background-color: inherit;
	}
	.nav3 {
		background-color: inherit;
	}
	.nav4 {
		background-color: inherit;
	}
	.nav5 {
		background-color: inherit;
	}
	.nav6 {
		background-color: inherit;
	}
	.nav7 {
		background-color: inherit;
	}

	/*---------------------------------------- マージン・パディング系 */
	.mb100_50 {
		margin-bottom: 50px;
	}

	/*---------------------------------------- ヘッダ */
	header {
		position: fixed;
		width: 100%;
		height: 60px;
		background-color: rgba(255,255,255,.9);
		padding: 0;
	}

	.inner{
		width: 100%;
	}

	/* ロゴマーク */
	h1.logo {
		margin: 10px 0 0 16px;
	}

	/*#main_img {
		width: 100%;
	}
	*/
	.change_btn {
		width: 90%;
		margin: 32px auto;
	}


	/*メニュー部分*/
	nav {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,.7);
	}
	header nav ul {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		top: 25px;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	header nav ul li {
		margin: 0 auto;
		text-align: center;
	}
	header nav ul li:last-child {
		border: none;
	}
	header nav ul li a {
		width: inherit;
		height: inherit;
		display: block;
		color: #fff;
		text-align: center;
		padding: 15px 0;
	}


	/*開閉ボタン*/
	#nav_toggle {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 16px;
		right: 16px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		height: 3px;
		background: #333;
		position: absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top:0px;
	}
	#nav_toggle span:nth-child(2) {
		top:12px;
	}
	#nav_toggle span:nth-child(3) {
		top:24px;
	}

	/*開閉ボタンopen時*/
	.open #nav_toggle span {
		background: #fff;
	}
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	/* ------------------------------------------------ エリア */
	.wrapper {
		width: 85%;
		height: auto;
		margin: 50px auto 0;
	}

	.wrapper_layer {
		width: 85%;
		margin: 30px auto 0;
	}

	section {
		margin-top: 60px;
	}
	#evaluation,
	#management,
	#control,
	#large,
	#midium,
	#small,
	#head,
	#tokyo,
	#recruit,
	#entry,
	#call,
	#mail {
		margin-top: -60px;
		padding-top: 60px;
	}

	.wrap80 {
		width: 85%;
		height: auto;
		margin: 50px auto 0;
	}

	/* ------------------------------------------------ スライドショー */
	ul.bxslider {
		padding: 0;
		margin: 60px 0 0 0;
	}

	.pageimg img {
		margin: 60px 0 0 0;
	}

	/* ------------------------------------------------ パンくず */
	.pageguide {
		width: 100%;
	}

	/* ------------------------------------------------ アンカーリンク */
	ul.pageanchor li {
		float: left;
		padding: 0 5px 20px;
	}

	/* ------------------------------------------------ 見出し */
	.down_arrow{
	    width: 100%;
	}

	/* -------------------------------------------- Information */
	p.date {
		clear: left;
		width: 100%;
		margin-bottom: 5px;
	}
	p.news {
		margin: 0 0 20px 0;
	}

	/* -------------------------------------------- トップ：当社の取り組み */
	/* 安全と安心の取組み */
	ul.safety li ul li {
	    margin-left: 0;
	}

	/* 感染症対策の取組み */
	.f_item_infection:nth-child(1) {
	    width: 100%;
	}
	.f_item_infection:nth-child(2) {
	    width: 100%;
	    margin-bottom: 50px;
	}


	.column1 {
		position: relative;
	}

	.columnpic {
		text-align: center;
	}
	.columnpic img {
		width: 100%;
	}
	.columntext {
		position: inherit;
		top: inherit;
		right: inherit;
		width: 100%;
	}

	.columnpic_right {
		text-align: center;
	}
	.columnpic_right img {
		width: 100%;
	}
	.columntext_right {
		position: inherit;
		top: inherit;
		left: inherit;
		width: 100%;
	}

	.layer {
		padding: 20px 0;
		border-top: none;
		border-bottom: none;
		background-color: rgba(255,255,255,.6);
	}
	.layer h4.ttl {
		font-size: 20px;
		margin-bottom: 10px;
	}

	/* ------------------------------------------------ バスカタログ */
	.columnpic40 {
		clear: left;
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.columntext60 {
		display: inline-block;
		width: 100%;
	}

	table.bus {
		border-spacing: 0 10px;
	}

	table.bus th,table.bus td {
		display: block;
		padding: 10px;
	}

	table.bus th {
		display: block;
		width: 100%;
		overflow: inherit;
		position: inherit;
	}

	table.bus th:after {
		display: none;
	}

	table.bus td {
		background: none;
		width: 100%;
	}

	/* ------------------------------------------------ 会社概要 */
	table.table_design th {
		border-spacing: 0 10px;
	}
	table.table_design th {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
		padding: 5px 10px;
		background: none;
	}
	table.table_design td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
		padding: 10px 0 15px;
	}


	/* ------------------------------------------------ 当社の取り組み */
	/* 安全性評価認定 */
	.columnpic30 {
		clear: left;
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.columntext70 {
		width: 100%;
		margin-bottom: 50px;
	}

	/* 運輸安全マネージメント */
	table.management {
		width: 100%;
	}

	/* 安全管理規程 */
	.inner_box ol li {
		margin-left: 27.5px;
	}

	.ml7 {
		margin-left: 0;
	}

	/* -------------------------------------------- お問い合わせ */
	/* TEL */
	.f_item_221_tel {
		width: 100%;
		margin-bottom: 30px;
	}

	/* FORM */
	table.contact {
		display: inline-block;
		width: 100%;
	}

	table.contact th {
		display: inline-block;
		width: 100%;
		padding: 10px 20px;
	}
	table.contact td {
		display: inline-block;
		width: 100%;
		border: #ccc 1px dotted;
		padding: 10px;
		margin-bottom: 20px;
	}

	table.contact td input[type="text"],
	table.contact td input[type="tel"],
	table.contact td input[type="email"],
	table.contact td select {
		width: 100%;
	}

	/* -------------------------------------------- フッタ上部：コンテンツ */
	.f_item_331 {
		width: 100%;
		margin-bottom: 30px;
	}

	/* ------------------------------------------------ ページトップ */
	.pagetop {
		display: none;
	}

	/* ------------------------------------------------ フッタ */
	footer .wrap {
		width: 85%;
	}

	.liquid_bgc_blk {
		padding: 30px 0 100px;
	}

	.flexbox_221 {
		justify-content: center;
	}
	.f_item_221 {
		width: 100%;
	}

	.f_item_331_ft {
		width: 100%;
	}

	.copy {
		text-align: center;
	}

	/* ボタン */
	.btn-shine {
	  width: 100%;
	  margin-bottom: 30px;
	}

}

@media (min-width: 768px) and (max-width: 980px) {
	.pconly {
		display: none;
	}

	/* ------------------------------------------------ カラー系 */
	/* background */
	.nav1 {
		background-color: inherit;
	}
	.nav2 {
		background-color: inherit;
	}
	.nav3 {
		background-color: inherit;
	}
	.nav4 {
		background-color: inherit;
	}
	.nav5 {
		background-color: inherit;
	}
	.nav6 {
		background-color: inherit;
	}
	.nav7 {
		background-color: inherit;
	}

	/*---------------------------------------- マージン・パディング系 */
	.mb100_50 {
		margin-bottom: 50px;
	}

	/*---------------------------------------- ヘッダ */
	header {
		position: fixed;
		width: 100%;
		height: 60px;
		background-color: rgba(255,255,255,.9);
		padding: 0;
	}

	.inner{
		width: 100%;
	}

	/* ロゴマーク */
	h1.logo {
		margin: 10px 0 0 16px;
	}

	/*#main_img {
		width: 100%;
	}
	*/
	.change_btn {
		width: 90%;
		margin: 32px auto;
	}

	/*メニュー部分*/
	nav {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,.7);
	}
	header nav ul {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		top: 25px;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	header nav ul li {
		margin: 0 auto;
		text-align: center;
	}
	header nav ul li:last-child {
		border: none;
	}
	header nav ul li a {
		width: inherit;
		height: inherit;
		display: block;
		color: #fff;
		text-align: center;
		padding: 15px 0;
	}


	/*開閉ボタン*/
	#nav_toggle {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 16px;
		right: 16px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		height: 3px;
		background: #333;
		position: absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top:0px;
	}
	#nav_toggle span:nth-child(2) {
		top:12px;
	}
	#nav_toggle span:nth-child(3) {
		top:24px;
	}

	/*開閉ボタンopen時*/
	.open #nav_toggle span {
		background: #fff;
	}
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	/* ------------------------------------------------ エリア */
	.wrapper {
		width: 85%;
		height: auto;
		margin: 50px auto 0;
	}

	.wrapper_layer {
		width: 85%;
		margin: 30px auto 0;
	}

	section {
		margin-top: 75px;
	}
	#evaluation,
	#management,
	#control,
	#large,
	#midium,
	#small,
	#head,
	#tokyo,
	#recruit,
	#entry,
	#call,
	#mail {
		margin-top: -75px;
		padding-top: 75px;
	}

	.wrap80 {
		width: 95%;
		height: auto;
		margin: 50px auto 0;
	}


	/* ------------------------------------------------ スライドショー */
	ul.bxslider {
		margin: 60px 0 0 0;
	}

	.pageimg img {
		margin: 60px 0 0 0;
	}

	/* ------------------------------------------------ パンくず */
	.pageguide {
		width: 100%;
	}

	/* ------------------------------------------------ アンカーリンク */
	ul.pageanchor li {
		float: left;
		padding: 0 5px 20px;
	}

	/* -------------------------------------------- Information */
	p.date {
		clear: left;
		width: 100%;
		margin-bottom: 5px;
	}
	p.news {
		margin: 0 0 20px 0;
	}

	/* ------------------------------------------------ バスカタログ */
	table.bus {
		border-spacing: 0 10px;
	}

	table.bus th,table.bus td {
		display: block;
		padding: 10px;
	}

	table.bus th {
		display: block;
		width: 100%;
		overflow: inherit;
		position: inherit;
	}

	table.bus th:after {
		display: none;
	}

	table.bus td {
		background: none;
		width: 100%;
	}

	/* -------------------------------------------- お問い合わせ */
	/* FORM */
	table.contact th {
		display: inline-block;
		width: 100%;
		padding: 10px 20px;
	}
	table.contact td {
		display: inline-block;
		width: 100%;
		border: #ccc 1px dotted;
		padding: 10px;
		margin-bottom: 20px;
	}

	table.contact td input[type="text"],
	table.contact td input[type="tel"],
	table.contact td input[type="email"],
	table.contact td select {
		width: 100%;
	}

	/* ------------------------------------------------ ページトップ */
	.pagetop {
		display: none;
	}

	/* ------------------------------------------------ フッタ */
	.liquid_bgc_blk {
		padding: 30px 0 100px;
	}
	footer .wrap {
		width: 85%;
	}

}

@media (min-width: 981px) {
	.sponly {
		display: none;
	}

	#nav_toggle {
		display: none;
	}

	/* ------------------------------------------------ フッタメニュー */
	.flexbox_ftmenu {
		display: none;
	}

}