@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
  font-size: 15px;
  line-height: 2;
  -webkit-text-size-adjust: none;
  border-top: 20px solid #fff;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

ul {
  list-style-type: none;
}

ol {
  padding-left: 40px;
  padding-bottom: 15px;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse:collapse;
  font-size: 100%;
  border-spacing: 0;
}

iframe {
  width: 100%;
}

.cp_h2title{
	position: relative;
	padding: .3em;
}

.cp_h2title:after {
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(to right, #FF5C03, transparent);
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#message .col_left {
  width: 18%;
}

#message .col_right {
  width: 80%;
}
@media screen and (max-width:767px) {
  #message .col_left,
  #message .col_right {
    width: 100% !important;
  }
}

.msg_ttl {
  font-size: 22px;
  text-align: center;
  margin: 2em auto 1em;
}

#message p {
  font-size: 15px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	transition: 0.5s;
  text-decoration: none;
}
a:hover {
	color: #666 ;
	text-decoration: none;
}


/*container
---------------------------------------------------------------------------*/
#container {
	max-width: auto;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 2%;
}
@media screen and (max-width:767px) {
  #container {
    width: 90%;
  }
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	height: 100px;
}
header #logo {
	width: 300px;
	float: left;
	margin-top: 30px;
	margin-left: 30px;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
#contact {
	float: right;
	margin-top: 12px;
	margin-right: 30px;
	text-align: center;
}
/*TEL*/
.tel {
	letter-spacing: 0.1em;
	font-size: 25px;
	color: #000;
  font-family: "arial black";
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: #ff3333;
	font-family:"メイリオ";
}


/*メインメニュー
---------------------------------------------------------------------------*/
#menubar {
	clear: both;
  overflow: hidden;
  margin-bottom: 10px;
}
#menubar li {
	float: left;
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	display:  block;
	text-align: center;
	color: #000;
	font-weight: bold;
	border-right: 1px solid #fff;
	line-height: 1.6;
	padding: 14px 0;
}
#menubar li:first-child a {
	border-left: 1px solid #fff;
}
#menubar li a span {
	text-shadow: none;
  display: block;
	font-size: 9px;
	font-weight: normal;
	letter-spacing: 0.2em;
	color: #fff;
}
#menubar li a:hover {
	background: #1A1A1A;
	color: #fff;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}


/*contents
---------------------------------------------------------------------------*/
#contents {
	clear: both;
  overflow: hidden;
	padding-top: 30px;
	padding-bottom: 30px;
}


/*contents-in
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 80%;
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}


/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 75%;
}
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 5px;
	color: #000;
	font-size: 16px;
	background: #fff;
	background: linear-gradient(#FFF);
	border: 1px solid #fff;
	box-shadow: 1px 2px 7px rgba(0,0,0,0.4);
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;
	padding-left: 10px;
}
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 5px;
	color: #000;
	font-size: 16px;
	background: #f1f1f1;
	background: linear-gradient(#fff, #e3e3e3 50%);
	box-shadow: 1px 2px 7px rgba(0,0,0,0.3);
	border: 1px solid #FFF;
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #FFF;
	padding-left: 10px;
}
#main p {
	padding: 0px 5px 20px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}


/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;
  overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #fff;
	background-image: linear-gradient(#fff, #fff);
	box-shadow: 0px 2px 5px #000, 0pfffx 0px 0px 1px #fff inset;
}
#main .list a {
	display:block;
  overflow: hidden;
	padding: 20px;
	margin: -20px;
}
#main .list a:hover {
	background: #fff;
}
/*リンクを貼った際に出る「→」マーク*/
#main .list a::before {
	content: "→";
	font-size: 12px;
	display:block;
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	background: #fff;
	background: rgba(0,0,0,0.2);
	color: #000;
	border-radius: 50%;
}
#main .list a:hover::before {
	background: #FFF;
}
#main .list h4 {
	padding-left: 10px;
 	border-bottom: 1px solid #CCC;
	border-left: 3px solid #FFF;
	margin-bottom: 0.5em;
	color: #FFF;
}
#main .list p {
	padding: 0px !important;
}
#main .list figure {
	float: left;
	width: 35%;
	background: #FFF;
	padding: 1%;
	border: 1px solid #fff;
	margin-right: 10px;
	margin-bottom: 50px;
}
/*マウスオン時のボックス内の写真設定。ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list.option2 a:hover figure img,
.list.option2 figure img {
	opacity: 0.3 !important;
}
/*登録日情報*/
#main .list .date {
	display:block;
	font-size: 11px;
	color: #000;
	text-align: right;
}


/*一覧ページの各ボックス内のテーブル（※CMS用）
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 12px;
	width: 63%;
	margin-bottom: 5px;
	background: #fff;
}
#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #000;
}
#main .list table td,
#main .list table th{
	padding: 1%;
}
#main .list table th{
	width: 20%;
	text-align: center;
	font-weight: normal;
	background: #edf0f5;	
}
#main .list table td {
	width: 30%;
}


/*詳細ページの画像切り替え（imgchg_pack.js）
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
.thumbnail {
	width: 80px;
	height: 80px;
	border: 1px solid #dcdcdc;
	margin-bottom: 15px;
}
.thumbnail:hover {
	border: 1px solid #999;
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;
	width: 22.5%;
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;
	width: 18%;
}
/*２カラム時*/
.c2 #side {
	display: none;
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
#sub h2,
#side h2 {
	text-align: center;
	border-top: 3px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	border-left: 1px solid #cfcfcf;
	padding: 8px 0px;
	margin-bottom: 10px;
	background: #fff;
	color: #000;
}
#sub p,
#side p {
	padding-bottom: 20px;
	line-height: 1.6;
}


/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
#sub .box1,
#side .box1 {
	background: #fff;
	border: 1px solid #dedede;
	padding: 10px;
	margin-bottom: 20px;
}
#sub .box1 p,
#side .box1 p {
	margin-bottom: 0px;
}
/*box1の中にある段落タグが続いた場合に間に空けるスペース*/
#sub .box1 p + p,
#side .box1 p + p {
	margin-bottom: 10px;
}


/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
#sub .submenu,
#side .submenu {
	border-top: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	border-left: 1px solid #cfcfcf;
	margin-bottom: 20px;
}
#sub .submenu li a,
#side .submenu li a {
	display: block;
	border-bottom: 1px solid #cfcfcf;
	padding: 0 10px;
	background: #FFF;
}
#sub .submenu li a:hover,
#side .submenu li a:hover {
	background: #FFF;
	color: #000;
}
/*h2見出しにsubmenuが続いた場合*/
#sub h2 + .submenu,
#side h2 + .submenu {
	border-top: none;
	margin-top: -10px;
}
#sub .box1 .submenu,
#side .box1 .submenu {
	margin-bottom: 0
}
/*box1内でsubmenuが続いた場合にsubmenu間にとるスペース。この指定がないとくっついてしまいます。*/
#sub .box1 .submenu + .submenu,
#side .box1 .submenu + .submenu {
	margin-top: 10px;
}


/*sub,sideコンテンツ内のおすすめ一覧ブロック
---------------------------------------------------------------------------*/
#sub .list, #side .list {
	position: relative;
  overflow: hidden;
	font-size: 11px;
	line-height: 1.2;
}
#sub .list a, #side .list a {
	display:block;
  overflow: hidden;
	padding: 10px;
	border-top: 1px solid #cfcfcf;
	background: #fff;
}
#sub .list:last-of-type a, #side .list:last-of-type a {
	border-bottom: 1px solid #cfcfcf;
	margin-bottom: 20px;
}
#sub .list h4, #side .list h4 {
	font-weight: bold;
}
#sub .list p, #side .list p {
	padding: 0 !important;
}
#sub .list figure img, #side .list figure img {
	float: left;
	width: 30%;
	margin-right: 5px;
}
/*h2見出しにlistブロックが続いた場合*/
#sub h2 + .list a,
#side h2 + .list a {
	border-top: none;
	margin-top: -10px;
}


/*フッター設定
---------------------------------------------------------------------------*/
.foot-wrap {
  background-color: #222222;
  color: #fff;
  text-align: center;
}
.foot-wrap .menu-left,
.menu-center,
.menu-right {
  display: inline-block;
  width: 20%;
  margin: 30px auto;
}
.foot-wrap ul {
  list-style: none;
  padding: 0;
  line-height:60px;
}
.foot-wrap h3 {
  border-bottom: 1.5px solid #CCC;
  padding: 10px;
}
.foot-wrap a {
  color: #CCC;
}
.foot-wrap a:hover {
  color: #ccc;
}
.foot-wrap .cmark {
  display: block;
  padding: 10px;
  border-top: 1px solid #fff;
  width: 80%;
  margin: 0 auto;
  color: #CCC;
}
@media screen and (max-width: 900px) {
  .foot-wrap .menu-left, .menu-center, .menu-right {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .foot-wrap .cpr {
    display: inline;
  }
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #fff;	/*背景色*/
}


/*トップページ　バナー
---------------------------------------------------------------------------*/
.driver-bnr:hover {
  transition: all .3s;
  opacity: 0.6;
  filter: brightness(110%); 
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
#new dt {
	float: left;
	width: 9em;
	color: #000;
	letter-spacing: 0.1em;
}
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
.faq {
	padding: 0px 5px;
}
.faq dt {
	color: #000;
	padding-top: 15px;
}
.faq dt a {
	color: #000;
}
.faq dd {
	overflow: hidden;
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 15px;
}


/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #fff;
	padding: 10px 15px;
	word-break: break-all;
}
.ta1 th,
.tamidashi {
	width: auto;
	text-align: left;
	background: #fff;
}
.ta1 th {
	width: 140px;
	text-align: center;
	font-weight: normal;
}
.ta1 th img {
	width: 100%;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 80px;
	height: 40px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 td .specialtext {
	float: left;
	width: 45%;
}


/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 15px;
	border-radius: 3px;
	background: #fff;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {
  display: none;
}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  text-align: center;
  z-index: 100;
  position: fixed;
	width: 50px;
	line-height: 50px;
	bottom: 50px;
	right: 3%;
	background: #000;
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: 1px solid #fff;
	animation-name: scroll;
	animation-duration: 1S;
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}


/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
span.option1, span.option2 {
	text-align: center;
	font-size: 10px;
	width: 120px;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotate(45deg) translate(36px,-15px);
	color: #000;
	background: #FFF;
}
/*option1への追加設定*/
span.option1 {
	color: #000;
	background: #FFF;
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	width: auto;
	display:block;
	position: static;
	transform: none;
	font-size: 15px;
	margin-left: 10px;
	padding: 0 5px;
}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #FF3333;
	color: #fff;
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0 5px;
	vertical-align: text-top;
}


/*その他
---------------------------------------------------------------------------*/
.look {
  background: #FFF;
  padding: 5px 10px;
  border-radius: 4px;
}
.mb15,.mb1em {
  margin-bottom: 15px;
}
.clear {
  clear: both;
}
ul.disc {
  padding: 0em 25px 15px;
  list-style: disc;
}
.color1, .color1 a {
  color: #57bff0;
}
.bg1 {
  background: #FFF;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.l {
  text-align: left;
}
img.fr {
  display:block;
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
img.fl {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.big1 {
  font-size: 24px;
  letter-spacing: 0.2em;
}
.mini1 {
  font-size: 11px;
  line-height: 1.5;
}
.sh {
  display: none;
}


/*画面幅800px以下の設定
-----------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header #logo {
	width: 250px;
	margin-top: 36px;
	margin-left: 0px;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
#contact {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
display:block;
}
/*スマホ用メニューブロック*/
#menubar-s {
	overflow: hidden;
	position: absolute;
	top: 100px;
	border-top: 1px solid #fff;
	width: 96%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	padding: 15px 10px 15px 20px;
	border-bottom: 1px solid #fff;
	background: rgba(0,0,0,0.8);
	color: #fff;
	display:block;
	font-size: 20px;
}
#menubar-s li a span {
	display: block;
	font-size: 12px;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	position: absolute;
	top: 42px;
	right: 2%;
	border: 1px solid #000;
}
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;
	height: 50px;
}
/*三本バーアイコン*/
/* #menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
} */
/*閉じるアイコン*/
/* #menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
} */

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 0px 15px;
}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in {
	float: none;
	width: auto;
}

/*sub,sideコンテンツ内のおすすめ一覧ブロック
---------------------------------------------------------------------------*/
#sub .list figure img, #side .list figure img {
	width: 20%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu {display: none;}
.pc {display:none;}

}


/*画面幅480px以下の設定
-------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

body {
	font-size: 12px;
	line-height: 1.5;
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
}

/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
#main .list {
	padding: 10px;
}
#main .list a {
	padding: 10px;
	margin: -10px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;
}

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

/*テーブル
---------------------------------------------------------------------------*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
.ta1 td {
	width: auto;
	padding: 5px;
}
.ta1 td .specialtext {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {
  width: 94%;
}
img.fr,img.fl {
  float: none;
  margin: 0;
  width: 100%;
}

}


/*画面幅350px以下の設定
-----------------------------------------------------------------------------------------------*/
@media screen and (max-width:350px){
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header #logo {
	width: 200px;
	margin-top: 38px;
}

}




a.cp_btn {
	width: 600px;
	height:160px;
	padding: 0.8em;
	text-align: center;
	color: #000;
	border: 2px solid #FFF;
	border-radius: 3px;
	transition: .4s;
	font-weight:bold
	font-size:30px
}
a.cp_btn:hover {
	background: #FF3333;
	color: #fff;
}

.midashi_diamond{
  padding-left: 20px;
  position: relative;
}
.midashi_diamond:before{
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  position: absolute;
  left: 130px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* フッターを幅いっぱいにする為のボックス*/
#footerbg {
  background-image: url(画像ファイルのurl);
  width:100%;
  min-width:1000px;
}

/* フッター*/
#footer {
  width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.box3 {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #ffff;
  background: #0066FF;
}
.box3 p {
  margin: 0;
  padding: 0;
}

/*serviceページ QR決済box*/
table.ta2 th,td {
  border: solid px ;
}
table.ta2 table {
  border-collapse: collapse;
}
table.ta2 tr,td {
  width:  200px;
  height: 220px;
  text-align:  center;
}

/*会社概要ページ　沿革*/
.cp_timeline04 {
  position: relative;
  margin: 3em auto;
  padding-bottom: 2em;
}
.cp_timeline04:before {
  position: absolute;
  top: 0;
  left: 45px;
  width: 2px;
  height: 100%;
  content: '';
  background:#000 ;
}
.cp_timeline04 .timeline_item {
  margin: 0 0 0 80px;
}
.cp_timeline04 .timeline_item .time_date .time {
  font-family: serif;
  font-size: 7em;
  font-weight: bold;
  position: relative;
  margin: 0;
  letter-spacing: 3px;
  color:#E6E6E6
}
.cp_timeline04 .timeline_item .time_date .time:before {
  position: absolute;
  top: 50%;
  left: -42px;
  width: 8px;
  height: 8px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 3.5px solid #000 ;
  background: #fff;
}
.cp_timeline04 .timeline_item .time_date .flag {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  margin-top: -60px;
  color: #000;
}
.cp_timeline04 .timeline_item .desc {
  font-size: 0.8em;
  line-height: 20px;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 1px solid #FF5C03 ;
}
@media only screen and (max-width: 767px) {
  .cp_timeline04:before {
    left: 15px;
  }
  .cp_timeline04 .timeline_item .time_date .time:before {
    left: -32px;
  }
  .cp_timeline04 .timeline_item {
    margin: 0 0 0 40px;
  }
  .cp_timeline04 .timeline_item .desc {
    padding-left: 0;
    border-top: 1px solid #000;
    border-left: none;
  }
}

.cp_timeline05 {
  position: relative;
  margin: 3em auto;
  padding-bottom: 2em;
}
.cp_timeline05:before {
  position: absolute;
  top: 0;
  left: 45px;
  width: 2px;
  height: 100%;
  content: '';
  background: #000;
}
.cp_timeline05 .timeline_item {
  margin: 0 0 0 80px;
}
.cp_timeline05 .timeline_item .time_date .time {
  font-family: serif;
  font-size: 7em;
  font-weight: bold;
  position: relative;
  margin: 0;
  letter-spacing: 3px;
  color:#E6E6E6;
}
.cp_timeline05 .timeline_item .time_date .time:before {
  position: absolute;
  top: 50%;
  left: -42px;
  width: 8px;
  height: 8px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 3.5px solid #000 ;
  background: #fff;
}
.cp_timeline05 .timeline_item .time_date .flag {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  margin-top: -60px;
  color: #000;
}
.cp_timeline05 .timeline_item .desc {
  font-size: 0.8em;
  line-height: 20px;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 1px solid #FF5C03;
}
@media only screen and (max-width: 767px) {
  .cp_timeline05:before {
    left: 15px;
  }
  .cp_timeline05 .timeline_item .time_date .time:before {
    left: -32px;
  }
  .cp_timeline05 .timeline_item {
    margin: 0 0 0 40px;
  }
  .cp_timeline05 .timeline_item .desc {
    padding-left: 0;
    border-top: 1px solid #FF5C03;
    border-left: none;
  }
}


/*会社概要ページ*/
div {
  margin: 0;
}
h250{
  font-size: 16px;
  font-weight: bold;
}
h250::before{
  content: '';
  display: inline-block;
  background: #ff3333;
  height: 1.5px;
  width: 10px;
  margin-right: 6px;
}
.demo_dl {
  background-color:#fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: 40px 0 20px;
}
.demo_dt {
  padding: 20px 15px 0 15px;
  border-top: 1px solid #000;
  width: 30%;
  float: left;
}
.demo_dd {
  text-align: justify;
  text-justify: inter-ideograph;
  padding: 20px 15px 0 20px;
  border-top: 1px solid #000;
  background: #fff;
  margin-left: 30%;
  padding-bottom: 15px;
  border-left: 1px solid #fff;
  text-align: left;
}
.demo_dd::after {
  content: '';
  display: block;
  clear: both;
}
.demo_dt span {
  font-size: 14px;
}







/*recruitページ　タクシードライバー*/
.demo_dl5 {
	  text-align: justify;
      text-justify: inter-ideograph;
      background-color:#fff;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      margin: 40px 0 20px;
      }
    .demo_dt {
      padding: 20px 15px 0 15px;
      border-top: 1px solid #000;
      width: 30%;
      float: left;
      color: #fff;
      }
      
    .demo_dd {
      padding: 20px 15px 0 20px;
      border-top: 1px solid #000;
      background: #fff;
      margin-left: 30%;
      padding-bottom: 15px;
      border-left: 1px solid #fff;
      font-size: 11px;
          }
      
    .demo_dd::after {
      content: '';
      display: block;
      clear: both;
    }
    .demo_dt span {
      font-size: 14px;
      }





/*recruitページ　整備士*/
.demo_dl6 {
	  text-align: justify;
      text-justify: inter-ideograph;
      background-color: #fff;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      margin: 40px 0 20px;

      }
    .demo_dt {
      padding: 20px 15px 0 15px;
      border-top: 1px solid #000;
      width: 30%;
      float: left;
      color: #fff;
      }
    .demo_dd {
      padding: 20px 15px 0 20px;
      border-top: 1px solid #000;
      background: #fff;
      margin-left: 30%;
      padding-bottom: 15px;
      border-left: 1px solid #fff;
      font-size: 11px;
          }
    .demo_dd::after {
      content: '';
      display: block;
      clear: both;
    }
    .demo_dt span {
      font-size: 14px;
      }




/*recruitページ　配車係*/
.demo_dl7 {
	  text-align: justify;
      text-justify: inter-ideograph;
      background-color: #fff;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      margin: 40px 0 20px;
      }
    .demo_dt {
      padding: 20px 15px 0 15px;
      border-top: 1px solid #000;
      width: 30%;
      float: left;
      color: #fff;
      }
    .demo_dd {
      padding: 20px 15px 0 20px;
      border-top: 1px solid #000;
      background: #fff;
      margin-left: 30%;
      padding-bottom: 15px;
      border-left: 1px solid #fff;
      font-size: 11px;
          }
    .demo_dd::after {
      content: '';
      display: block;
      clear: both;
    }
    .demo_dt span {
      font-size: 14px;
      }




/*recruitページ　介護スタッフ*/
.demo_dl8 {
	  text-align: justify;
      text-justify: inter-ideograph;
      background-color: #fff;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      margin: 40px 0 20px;
      }
    .demo_dt {
      padding: 20px 15px 0 15px;
      border-top: 1px solid #000;
      width: 30%;
      float: left;
      color: #fff;
      }
    .demo_dd {
      padding: 20px 15px 0 20px;
      border-top: 1px solid #000;
      background: #fff;
      margin-left: 30%;
      padding-bottom: 15px;
      border-left: 1px solid #fff;
      font-size: 11px;
          }
    .demo_dd::after {
      content: '';
      display: block;
      clear: both;
    }
    .demo_dt span {
      font-size: 14px;
      }



/*contactページ　お問い合わせ*/
.demo_dl9 {
	  text-align: justify;
      text-justify: inter-ideograph;
      background-color: #fff;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      margin: 40px 0 20px;
      }
    .demo_dt {
      padding: 20px 15px 0 15px;
      border-top: 1px solid #000;
      width: 30%;
      float: left;
      color: #000;
      }
    .demo_dd {
      padding: 20px 15px 0 20px;
      border-top: 1px solid #000;
      background: #fff;
      margin-left: 30%;
      padding-bottom: 15px;
      border-left: 1px solid #fff;
          }
    .demo_dd::after {
      content: '';
      display: block;
      clear: both;
    }
    .demo_dt span {
      font-size: 14px;
      }







/*topページ　お知らせ*/

.msr_newslist04 {
  text-align:left;
  border-top: 1px solid #fff;
  width: 100%;
  margin-top: -20px;
}
.msr_newslist04 li {

  border-bottom: 20px solid #fff;
  font-size: 13px;

}
.msr_newslist04 li a {

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #fff;
  display: table;
  padding: 20px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
}
.msr_newslist04 li a:hover {

  text-decoration: none;
  background: #fff;
}
.msr_newslist04 li div {

  padding-bottom: 10px;
  width: 180px;

  
}
.msr_newslist04 li p {

  vertical-align: middle;
}
/* 時間の設定 */
.msr_newslist04 li time {
  line-height:18px;
  display: table-cell;
  vertical-align: top;
  width: 125px;
  color:#000;
}
/* カテゴリの設定 */
.msr_newslist04 li .cat01, .msr_newslist04 li .cat02  {
  background-color: #fff;
  border: 1px solid #FF5C03;
  box-sizing:border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: table-cell;
  color: #FF5C03;
  font-size: 12px;
  padding: 0 2px;
  text-align: center;
  width: 200px;

}
.msr_newslist04 li .cat02 {
  background-color: #fff;
  border: 1px solid #000;
  box-sizing: width:border-box;
  color: #000;
}

.msr_newslist04 li .cat03 {     
  background-color: #CC0033;
  border: 1px solid #CC0033;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: table-cell;
  color: #FFFFFF;
height: 30px;
  font-size: 10px;
  padding: 5px;
  text-align: center;
  width: 200px;

}

/*お知らせ 見出しbox*/
div.box2{

    margin: 5px;
    text-align:center;
    color:#FF5C03;
    background-color:#fff;
    line-height: 55px;
    width:155px;
    height:15px;
    margin: 5px;
    position:absolute;
    left:   545px;　（左から～ピクセル）
}



div.box2{
	color: #FF5C03;
    display:block;
    margin: 5px;
    text-align:center;
    display:block;
    color:#FF5C03;
    background-color:#fff;
    line-height: 25px;
    width:155px;
    height:15px;
    margin: 5px;
    left:   545px;　（左から～ピクセル）


}




/*topページ 写真*/

figure.cp_caption {

	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 350px;
	max-width: 100px;
	max-height: 350px;
	margin : 10px 1px;
	text-align: center;
	color: #fff;
	background: rgba(27, 37, 56, 1);
}
figure.cp_caption * {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
figure.cp_caption img {
	width: 100%;
	-webkit-transition: opacity 0.3s;
	        transition: opacity 0.3s;
	opacity: 1;
}
figure.cp_caption figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 3em 3em;
}
figure.cp_caption figcaption::before {
	position: absolute;
	top: 50%;
	right: 30px;
	bottom: 50%;
	left: 30px;
	content: '';
	-webkit-transition: all 0.4s;
	        transition: all 0.4s;
	-webkit-transition-delay: 0.2s;
	        transition-delay: 0.2s;
	opacity: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	background-color: #fff;
}
figure.cp_caption h2,
figure.cp_caption1 p {
	margin: 0 0 5px;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	        transition: opacity 0.3s, transform 0.3s;
	opacity: 0;

}
figure.cp_caption a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #fff;
}
figure.cp_caption:hover img {
	opacity: 0.35;
}
figure.cp_caption:hover figcaption h2 {
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
	-webkit-transform: translate3d(0%, 0%, 0);
	        transform: translate3d(0%, 0%, 0);
	opacity: 1;
}
figure.cp_caption:hover figcaption p {
	-webkit-transition-delay: 0.2s;
	        transition-delay: 0.2s;
	opacity: 0.9;
}
figure.cp_caption:hover figcaption::before {
	top: 30px;
	bottom: 30px;
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
	opacity: 1;
	background: rgba(27, 37, 56, 0);}









/*topページ 採用box*/
.msr_list06{
  margin:0 -5px;
}
.msr_list06 li{
  width:25%;
  padding:0 10px;
  display:inline-block;
  float:left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom:10px;

}
.msr_list06 li a{
  width:100%;
  padding:50px 0;
  color:#333;
  font-size:16px;


  background:#fff;
  border:1px solid #888;
  margin-bottom:20px;
  text-decoration:none;
  text-align:center;
  display:block;
  position:relative;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list06 li a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;

}
.msr_list06 li a:hover{
  background:#000;
  color:#fff;
}
.msr_list06 li a:hover::after{
  border-bottom: solid 1px #fff
  border-right: solid 1px #fff;
}






/*topページ お問い合わせbox*/
.msr_list07{
  margin:0 -10px;
}
.msr_list07 li{
  width:100%;
  padding:0 10px;
  display:inline-block;
  float:left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.msr_list07 li a{
  width:100%;
  padding:28px 0;
  color:#FF0000;
  font-size:20px;
  background:#fff;
  border:2px solid #fff;
  text-decoration:none;
  text-align:center;
  display:block;
  position:relative;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list07 li a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list07 li a:hover{
  background:#fff;
  color:#fff;
}
.msr_list07 li a:hover::after{
  border-bottom: solid 2px #fff
  border-right: solid 2px #fff;
}



/*topページ relativeテキスト*/
span112{text-align:center;}





/* 変更CSS */

.row{
	width: 100%;
}
/*メニュボックスの中にメニューが３列できる*/

.menu_box{
	width:30%;
	float:left;		
}

.menu_box img{
	width: 100%;
}

.mr5{
		margin-right:5%;


}

.box_clar {
	clear:both;
}

.taxi_tel{
	font-size: 25px;
	color: black;
	font-family: "arial black";
}

@media only screen and (max-width: 750px) {
  .menu_box{
 
    display: block;
  	width: 100%;
	}
	.mr5{
    margin-right:0;
  }
	.menu_box{
		font-size: 2em;
	}

	.msr_list06 li {
    width: 50%;
    padding: 10px 10px;
	}

	figure.cp_caption {
		max-height: 350px;
	}

	.taxi_tel{
		font-size:
	}
}

figure.cp_caption {
	min-width: 100%;
	max-width: 100%;
	max-height: 100%;
}





/*よくある質問*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(27,37,56,0.1);
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #FF5C03;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 0.8em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'ANSWER';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #FF5C03;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}






/* 消費者還元事業*/
.cp_blockdesign06 {
	position: relative;
	padding: 0.5em;
	border-width: 3px;
	border-style: solid;
	border-color: #1B435D;
}
.cp_blockdesign06::before,
.cp_blockdesign06::after {
	position: absolute;
	width: 20px;
	height: 20px;
	content: '';
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #1B435D;
}
.cp_blockdesign06::before{
	top: 3px;
	left: 3px;
}
.cp_blockdesign06::after{
	right: 3px;
	bottom: 3px;
	-webkit-transform: scale(-1,-1);
	        transform: scale(-1,-1);
}
.cp_blockdesign06 .cp_authorname {
	display: flex;
	border-bottom: 3px solid #1B435D;
}
.cp_blockdesign06 .cp_authorname h2 {
	margin: 0.3em 0.3em 0.3em 0.8em;
	width: 65%;
	color: #1B435D;
}
.cp_blockdesign06 .cp_authorname ul {
	margin: 0.5em 0;
	padding: 0.3em 0 0.3em 0.8em;
	width: 35%;
	text-align: center;
	border-left: 2px solid #1B435D;
}
.cp_blockdesign06 .cp_authorname li {
	display: inline;
	padding: 0 0.5em;
}
.cp_blockdesign06 .cp_authorname li a {
	color: #1B435D;
}
.cp_blockdesign06 .cp_authorinfo {
	padding: 1em 0.5em  0.5em  0.5em;
}








/* SERVICE 車検の費用*/
.cp_pricetable1 {
	table-layout: fixed;
	text-align: center;
	color: #444444;
	font-weight:;

}
.cp_pricetable1 .block {
	position: relative;
	float: left;
    width: 33%;
	height: 100%;
	transition: all 0.2s ease-in-out;
	-webkit-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
}
.cp_pricetable1 .block ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/**** blockのhover ****/
.cp_pricetable1 .block:hover {
	position: relative;
	z-index: 100;
	transition-delay: 0s;
	-webkit-transform: translate(-2px,-2px);
	transform: translate(-2px,-2px);
	box-shadow: 0px 0 5px rgba(0,0,0,0.5);
}
.cp_pricetable1 .block:hover .header1,
.cp_pricetable1 .block:hover .header2,
.cp_pricetable1 .block:hover .style1,
.cp_pricetable1 .block:hover .style2,
.cp_pricetable1 .block:hover .footer1,
.cp_pricetable1 .block:hover .footer2 {
	padding: 0.5em;
}
/* --- メニュー名ブロック ---  */
.cp_pricetable1 .block .header1 {
	width: 100%;
	padding: 0.5em;
	height:6em;
	color: #000;
	border-bottom: 0.5px solid #000;

	
	background: #fff ;
	font weight : bold ;

}
/* --- メニュー名ブロック ---  */
.cp_pricetable1 .block .header3 {
	width: 100%;
	padding: 0.5em;
	height:6em;
	color: #000;
	border-bottom: 0.5px solid #000;


	background: #fff;
	font weight : bold ;
}
/* --- メニュー名ブロック ---  */
.cp_pricetable1 .block .header41 {
	width: 100%;
	padding: 0.5em;
	height:6em;
	color: #000;
	border-bottom: 0.5px solid #000;

	
	background: #fff;
	font weight : bold ;
}

/* --- 価格ブロック ---  */
.cp_pricetable1 .block .header2 {
	width: 100%;
	padding: 0.5em;
	height:4em;
	border-bottom: 0.5px solid #000;

	
	background: #FFFF     ;
}
/* --- 価格ブロック ---  */
.cp_pricetable1 .block .header4 {
	width: 100%;
	padding: 0.5em;
	height:4em;
	border-bottom: 0.5px solid #000;


	background: #FFFF;
}
/* --- 価格ブロック ---  */
.cp_pricetable1 .block .header5 {
	width: 100%;
	padding: 0.5em;
	height:4em;
	border-bottom: 0.5px solid #000;


	background: #FFFF ;
}
/* --- 詳細 ---  */
.cp_pricetable1 .block .style1,
.cp_pricetable1 .block .style2,
.cp_pricetable1 .block .style3,
.cp_pricetable1 .block .style4,
.cp_pricetable1 .block .footer1,
.cp_pricetable1 .block .footer2
.cp_pricetable1 .block .footer3
.cp_pricetable1 .block .footer4 {
	width: 100%;
	padding: 0.5em;
	height:8.5em;
}
.cp_pricetable1 .block .footer1,
.cp_pricetable1 .block .footer2
.cp_pricetable1 .block .footer3
.cp_pricetable1 .block .footer4 {
	padding: 0.5em;

}
.cp_pricetable1 .block .style1,
.cp_pricetable1 .block .footer1 {
	background-color: #ffff;
	color: #444444;

}
.cp_pricetable1 .block .style2,
.cp_pricetable1 .block .footer2 {
	background-color: #ffff;
}
.cp_pricetable1 .block .style3,
.cp_pricetable1 .block .footer3 {
	background-color: #ffff ;
	color: #444444;
	border-bottom: 1px solid  #000;
}
.cp_pricetable1 .block .style4,
.cp_pricetable1 .block .footer4 {
	background-color: #ffff;
	color: #444444;
	border-bottom: 1px solid  #000;

}
.cp_pricetable1 .block .style1,
.cp_pricetable1 .block .style2
.cp_pricetable1 .block .style3
.cp_pricetable1 .block .style4 {
	border-bottom: 1px solid  #000;
}






/*ボタンデザイン*/
.cp_pricetable1 a.cp_btn {
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	width: 100px;
	margin-right: auto;
	margin-left: auto;
	padding: 0.3em 1em;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	border: 1px solid #da3c41;
	border-radius: 4px;
	background: #da3c41;
}
.cp_pricetable1 .cp_btn::after {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 0;
	content: '';
	transition: 0.3s;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
	opacity: 0;
	background: #ffffff;
}
.cp_pricetable1 .cp_btn:hover {
	color: #da3c41;
}
.cp_pricetable1 .cp_btn:hover::after {
	height: 250%;
	opacity: 1;
}
.cp_pricetable1 .cp_btn:active::after {
	height: 350%;
	opacity: 1;
}





/* SERVICE 車検Q&A*/
.cp_qa55 *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa55 .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa55 .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa55 .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(27,37,56,0.1);
}
.cp_qa55 .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa55 .cp_actab label:hover {
	transition: all 0.3s;
	color: #FF5C03;
}
/* --質問の＋アイコン */
.cp_qa55 .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa55 .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa55 .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 0.8em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'ANSWER';

}
.cp_qa55 .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa55 .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa55 .cp_actab input:checked ~ label {
	color: #FF5C03;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa55 .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}







/
/*indexページ　タクシーボタンアイコン*/
.inline-block-test {
  text-align: center;
  font-weight:bold;
  }

.inline-block-test ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inline-block-test li {
  display: inline-block;
}

.inline-block-test li a {
  display: block;
  padding: 1px;
}







@media only screen and (max-width: 750px) {
  .menu_box{
    display: block;
  	width: 100%;
	}
	.mr5{
    margin-right:0;
  }
	.menu_box{
		font-size: 2em;
	}

	.msr_list06 li {
    width: 50%;
    padding: 10px 10px;
	}

	figure.cp_caption {
		max-height: 350px;
	}

	.taxi_tel{
		font-size:
	}
}

figure.cp_caption {
	min-width: 100%;
	max-width: 100%;
	max-height: 100%;
}





/* ----------追加変更-------- */

/* タイトルのライン */
hr{
	height: 0px;
	background-color: #;
	border: none;
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

/* アイコンメニュー */

#widget-menu__title {
	font-size: 1.1em;
	margin-top: 10px;
}

#widget_menu {
  list-style: none;
  overflow: hidden;
}

#widget_menu li {
  width: 33%;
  text-align: center;
  float: left;
  line-height: 50px;
  margin-right: 2px;
}

#widget_menu li a {
	font-family: "Quicksand","Helvetica","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans",YuGothic,"Yu Gothic","メイリオ",Meiryo,sans-serif;
  text-decoration: none;
  font-weight: bold;
	text-align: center;
		padding-top: 10px;
}

@media only screen and (max-width: 750px) {
	#widget_menu li {
	  width: 32%;
	}
}

/*マウスオーバーしたときに画像を白みがかる*/

a.overwhite{
    display:block;
}

a.overwhite:hover {
	background-color: #cccccc50;
}

/* グーグルマップの大きさ */

.googol_map{
	width: 100%;
	height: 600px;
}

@media only screen and (max-width: 750px) {
	.googol_map{
		height: 450px;
	}
}

/* ハンバーガーメニュー */
@media only screen and (max-width: 480px) {
	#nav-drawer {
		position: relative;
	}

	/*チェックボックス等は非表示に*/
	.nav-unshown {
		display:none;
	}

	/*アイコンのスペース*/
	#nav-open {
		position: absolute;
		display: inline-block;
		width: 30px;
		height: 22px;
		vertical-align: middle;
		right: 0;
	}

	/*ハンバーガーアイコンをCSSだけで表現*/
		#nav-open span, #nav-open span:before, #nav-open span:after {
		position: absolute;
		height: 2px;/*線の太さ*/
		width: 26px;/*長さ*/
		border-radius: 3px;
		background: #000;
		display: block;
		content: '';
		cursor: pointer;
		}
		#nav-open span:before {
		bottom: -8px;
		}
		#nav-open span:after {
		bottom: -16px;
		}

	/*閉じる用の薄黒カバー*/
	#nav-close {
		display: none;/*はじめは隠しておく*/
		position: fixed;
		z-index: 99;
		top: 0;/*全体に広がるように*/
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		transition: .3s ease-in-out;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;/*最前面に*/
		width: 90%;/*右側に隙間を作る*/
		max-width: 330px;/*最大幅*/
		height: 100%;
		background: #FFFFFF    
;/*背景色*/
		transition: .3s ease-in-out;/*滑らかに表示*/
		-webkit-transform: translateX(-105%);
		transform: translateX(-105%);/*左に隠しておく*/
	}

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
		display: block;/*カバーを表示*/
		opacity: .5;
	}

	#nav-input:checked ~ #nav-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}

/* 追加 */

.menu-hamburger-menu-container li {
  float: none;
  font-weight:1000;
  font-size: 25px;
  padding: 13px 15px 13px 15px;
  list-style: none;
  text-align: left;
  border-bottom: dashed 0.5px #fff  
 ;
}

.menu-hamburger-menu-container li:last-child {
  border: none;
}

.menu-hamburger-menu-container li a {
  text-decoration: none;
  color: #000;


}

.menu-hamburger-menu-container a:before {
  font-family: "Font Awesome 5 Free";
	font-weight:550;
	content: "\f061";
  color: #fff   
   
    
 ;/*アイコン色*/
  margin-right: 15px;
}

.category {
  background-color: #fff         ;
  padding: 15px 0;
  font-size: 40px;
  color: #000;
  font-weight: bold;
  text-align: center;

}
.category1 {
  background-color: #FFFF   

         ;
  padding: 15px 0;
  font-size: 13px;
  color: #000;
  text-align: center;


	
}
.category2 {
  background-color: #FFF      ;
  padding: 15px 0;
  font-size: 10px;
  color: #FF5C03;
  text-align: center;




	
}
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}





/*topページ（モバイル用）下部box*/

.sample25Wrap{
	width: 330px;
	height: 20px;
	background: #fff;
	position: relative;
}
.sample25{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 260px;
	height: 55px;
	border: 1px solid #FF5C03;
	background: #FF5C03;
	color:#fff;
	font-size:16px;
	line-height: 55px; 
	text-align:center;



/*角丸ボタン風*/border-radius: 100px;
    padding: 1px;
    box-sizing: border-box;
    background: #FF5C03;
    text-decoration: none;
	width:210px;

}



/*topページ（モバイル用）下部box*/

.sample35Wrap{
	width: 330px;
	height: 150px;
	background: #fff;
	position: relative;
}
.sample35{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 260px;
	height: 55px;
	border: 1px solid #000;
	background: #fff;
	color:#fff;
	font-size:16px;
	line-height: 55px; 
	text-align:center;
	
/*角丸ボタン風*/border-radius: 100px;
    padding: 1px;
    box-sizing: border-box;
    background: #000;
    text-decoration: none;
	width:210px;

}















/* service 車検の流れ */
/* 縦並び */
.yoko{

   /* ボタンのスタイル */
   margin:20px 20px 10px 10px;
   padding:0px 0px 0px 0px;
   font color:#333333;
   align:left;
}

/* PC向けの設定 */
@media screen and (min-width: 601px) {
  .yoko{
    height: 490px;
  }
  .yoko{
    width: 800px;
    height: 200px;
    left: 0px;
  }
  .yoko{
    font-size: 15px;
 }

}

/* モバイル向けの設定 */
@media screen and (max-width: 600px) {
  .yoko{
    height: 140px;
  }
  .yoko{
    width: 350px;
    height: 320px;
  }
  .yoko{
   font-size: 12px;
  }

}




/* float解除 */
.clear{display:none;}



/* 車検見出しstep */
hs1 {
  position: relative;
  padding: 1px 35px 1px 35px;
  background: #043c78;
  font-size: 12px;
  color: white;
  margin-left: 0px;
  line-height: 1.3;
  z-index:-1;
}

hs1:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2
}






/* お支払い方法見出しstep */
hs11 {
  position: relative;
  padding: 1px 45px 1px 45px;
  background: #043c78;
  font-size: 15px;
  color: white;
  margin-left: 0px;
  line-height: 1.3;
  z-index:-1;
}

hs11:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2
}





/*ta100設定*/

ta100 {
	width: 100%;
	margin: 0 auto 20px;
}

.ta100  , .ta100 td, .ta100 th {
	border: 1px solid #fff;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/

.ta100 th,.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #fff;	/*背景色*/
}
/*ta100の左側ボックス*/

.ta100 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/

.ta100 th img {
	width: 100%;
}
/*こだわりアイコンのフロート指定(CMS用)*/

.ta100 td .specialbox {
	float: left;
	width: 80px;	/*アイコンからテキストにする場合はここの幅を大きく変更して下さい。pxでなく%での指定もOKです。*/
	height: 40px;
}

 .ta100 td .specialbox img {
	vertical-align: middle;
}

.ta100 td .specialtext {
	float: left;
	width: 45%;
}
}




/*serviceページ 車検*/
.service-plan-wrapper{
    margin-bottom:
    4em;display:
    flex;flex-wrap: wrap;
}
.service-plan-wrapper .inner{
    width: calc(20% - 10px);
    margin:5px;
    box-shadow: 0 0 20px rgba(0,0,0,.14);
    background:#FFF;
    border-radius: 5px;
}
.service-plan-wrapper .head{
    padding: 2em 0.5em;
    color:#fff;
    text-align:center;
}
.service-plan-wrapper .head .title{
    font-size:20px;
    font-weight:bold;
    color:#000;
}
.service-plan-wrapper .head .year{
    margin-top: 1em;
    color:#000;
    border: 1px solid #000;

}
.service-plan-wrapper .head .price{
    font-size:30px;
    font-weight:bold;
}
.service-plan-wrapper .txt{
    padding:0.5em;
    height: 6em;
    font-size: 14px;
}
.service-plan-wrapper .function-list{
    padding:0.5em;
    font-size: 14px;
}
.service-plan-wrapper .function-list ul{
    margin-left:0;
    padding-left: 0;
    list-style:none;
}
.service-plan-wrapper .function-list ul li{
    padding: 0.5em 0 0.5em 25px;
    border-top: 1px solid #e5e5e5;
    background-image: url(); /*（）にアップロードした画像URLを記述する */
    background-repeat: no-repeat;
    background-position: 0% 15%;
}
.service-plan-wrapper .none{
    color: #ddd;
    background-image: none;
}



.service-plan-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.service-plan-wrapper .inner{
    margin:5px;
    box-shadow: 0 0 20px rgba(0,0,0,.14);
    background:#FFF;
    border-radius: 5px;
    width: 100%;
}
.service-plan-wrapper .head{
    padding: 2em 0.5em;
    color:#fff;
    text-align:center;
}
.service-plan-wrapper .head .title{
    font-size:20px;
    color:#000;
}
.service-plan-wrapper .head .year{
    margin-top: 1em;
    color:#000;

}
.service-plan-wrapper .head .price{
    font-size:30px;
    font-weight:bold;
}
.service-plan-wrapper .txt{
    padding:0.5em;
}
.service-plan-wrapper .function-list{
    padding:0.5em;
    font-size: 14px;
}
.service-plan-wrapper .function-list ul{
    margin-left:0;
    padding-left: 0;
    list-style:none;
}
.service-plan-wrapper .function-list ul li{
    padding: 0.5em 0 0.5em 25px;
    border-top: 1px solid #e5e5e5;
    background-image: url(); /*（）にアップロードした画像URLを記述する */
    background-repeat: no-repeat;
    background-position: 0% 15%;
}







/************************************
** 比較棒グラフ
************************************/
.ub-bar-graph{
  margin:0 auto 2rem !important;
  padding:2em !important;
  background:#fff;
  box-shadow: 0 0 3px 5px rgba(0,0,0,.03); 
  color: #043c78;
  font-weight:auto;
 
}
.ub-bar-graph__title{
  letter-spacing: 5px !important;
  line-height:1.8 !important;
  font-size: 1em  !important;
  margin: 0 auto 2.5em !important;
  padding: 5px 0 !important;
  border-bottom: 1px dashed #fff;
  text-align:center;
  font-weight:300 !important;
}
.ub-bar-graph dl > div{
  margin: 0 auto 2.5em !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px;
  font-size: 1rem;
  position:relative;
  box-shadow: 0 3px 5px rgba(0,0,0,.03);
}
.ub-bar-graph dl > div:last-child{
  margin: 0 !important;
}
.ub-bar-graph dl > div dt{
  background:#3399CC;
  border-right: 2px solid #fff;
}
.ub-bar-graph dl > div .ub-bar-graph__em{
  background:#3399CC;
}
.ub-bar-graph dl > div dd{
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex:1;
  margin:0 !important;
  font-size:1em;
  background:#fff;
}
.ub-bar-graph dl > div dt > span,.ub-bar-graph dl > div dd > span{
  position:absolute;
  z-index: 1;
  color:#043c78;
  font-size: 1em;
  line-height: 0;
}
.ub-bar-graph dl > div dt > .ub-bar-graph__content{
  left:0px;
  top:-20px;
}
.ub-bar-graph dl > div dd >  .ub-bar-graph__value{
  right:5px;
  top:5px;
}
@media screen and (max-width: 560px) {
  .ub-bar-graph{
    padding:2em 1em !important;
  }
  .ub-bar-graph dl > div{
    margin: 0 auto 2.5em !important;
  }
}



/*linkページ データ列*/
table.table151{
  width: 100%;
  border-collapse: collapse;
  font-size:1em;
}

table.table151 tr *:nth-child(1){
  background: #006897;
  font-size:1rem;

}

table.table151 tr *:nth-child(2){
  background: #3399CC;
  font-size:1rem;
}

table.table151 th,table.table151 td{
  color:white;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;

 
}
/*linkページ データ列2*/
table.table152{
  width: 100%;
  border-collapse: collapse;
  font-size:1em;
}

table.table152 tr *:nth-child(1){
  background: #3399CC;
  font-size:1rem;
}

table.table152 tr *:nth-child(2){
  background: #006897;
  font-size:1rem;
}

table.table152 th,table.table152 td{
  color:white;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;
}











/*女性専用recruitページ データ列*/
table.table153{
  width: 100%;
  border-collapse: collapse;
  font-size:1em;
}

table.table153 tr *:nth-child(1){
  background: #DC143C;
  font-size:1rem;

}

table.table153 tr *:nth-child(2){
  background: #E54E6C;
  font-size:1rem;
}

table.table153 th,table.table153 td{
  color:white;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;

 
}
/*女性専用recruitページ データ列2*/
table.table154{
  width: 100%;
  border-collapse: collapse;
  font-size:1em;
}

table.table154 tr *:nth-child(1){
  background: #E54E6C;
  font-size:1rem;
}

table.table154 tr *:nth-child(2){
  background: #DC143C;
  font-size:1rem;
}

table.table154 th,table.table154 td{
  color:white;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;
}

















/*recruitページ work style*/
@charset "utf-8";

.itemlist {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0;
}
.itemlist li {
	flex: 1 1 300px;
	padding: 30px;
	box-sizing: border-box;
}
.itemlist dl,
.itemlist dd {
	margin: 0;
}
.itemlist dl {
	text-align: right;
}
.itemlist dt,
.itemlist .txt {
	text-align: left;
}
.itemlist dt {
	font-size: 1.25em;
	font-weight: 700;
	border-bottom: 1px solid #CC0033;
}
.itemlist dd {
	margin-top: .2em;
	font-size: .8em;
}
.itemlist .price {
	display: inline-block;
	padding: .1em .5em;
	background: #fff;
	border:solid 1px #cca3ad;
    font-size: 2em;

}
.itemlist img {
	width: 100%;
	height: auto;
}












/*男性recruitページ work style*/
@charset "utf-8";

.itemlist2 {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0;
}
.itemlist2 li {
	flex: 1 1 300px;
	padding: 30px;
	box-sizing: border-box;
}
.itemlist2 dl,
.itemlist2 dd {
	margin: 0;
}
.itemlist2 dl {
	text-align: right;
}
.itemlist2 dt,
.itemlist2 .txt {
	text-align: left;
}
.itemlist2 dt {
	font-size: 1.25em;
	font-weight: 700;
	border-bottom: 1px solid #131874;
}
.itemlist2 dd {
	margin-top: .2em;
	font-size: .8em;
}
.itemlist2 .price {
	display: inline-block;
	padding: .1em .5em;
	background: #fff;
	border:solid 1px #a5b1cc;
	font-size: 2em;

}
.itemlist2 img {
	width: 100%;
	height: auto;
}








/*linkページ 事業内容*/
.itemlist .hggg {

	margin-bottom: -1em;
	margin-left: -4%;
	font-size: 1.15em;
	font-weight: 700;
	border-bottom: 1px solid #000;
	}





/* 背景斜め1 */
.diagonal01 {
  display: table;
  width: 100%;
  height: 120px;
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  transform: skewY(-10deg);
  margin-top: 10vw;
}

.diagonal01 p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 2.6em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15em;
}


.diagonal01 p2 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 4.8em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15em;
}



.diagonal01 > * {
  transform: skewY(deg);  /* pの傾き角度 */
}










.wrapper{
}

/*タブ切り替え全体のスタイル*/
.tabs{
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;

   
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 60px;
  background-color: #fff;
  line-height: 60px;
  font-size: px;
  text-align: center;
  color: #000;
  
  display: block;
  float: left;
  font-weight: bold;
  text-align: center;
  font-family: "Font Awesome 5 Free";

  transition: all 0.2s ease;
    box-shadow: 0 7px 34px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
}

.tab_item01 {
 border-radius: 0 0 0 0px;
}

.tab_item02 {
 border-radius: 0 0 0 0;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 2px 0;
  clear: both;
  overflow: hidden;
}

.tab_content{
    position:  relative;            /* 位置指定 */
    animation: anime1 1s ease;      /* アニメーション指定 */
}
 
@keyframes anime1 {
    0% {
        opacity:  0;                /* 透明度指定 */
        top: 50px;                  /* 位置指定 */
    }
    100% {
        opacity:  1;                /* 透明度指定 */
        top: 0;                     /* 位置指定 */
    }
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color:#000;
  
}







/*--------------------------------------
  コード表示アコーディオンBOX　色反転_5
--------------------------------------*/
.acd-check_5{
    display: none;
}
.acd-label_5{
    color: #000;
    background-color: #fff;
    border:solid 1px #000;
    font-weight: bold;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 20px 2px;
    max-width:1000px;
    text-decoration: none;
    
}

.acd-label_5:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.acd-label_5:before {
font-family: "Font Awesome 5 Free";
 
    padding-right: 8px;
}

/*ラベルホバー時*/
.acd-label_5:hover {
  color: #000;
  background-color: #fff;
  transition: .6s;
  opacity: 0.75;
}
.acd-content_5{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    text-align: left;
}
/*クリックで中身表示*/
.acd-check_5:checked + .acd-label_5 + .acd-content_5{
    height: auto;
    opacity: 1;
    padding: 0; 
    visibility: visible;
    color:#000;
}




/*--------------------------------------
  コード表示アコーディオンBOX　色反転_6
--------------------------------------*/
.acd-check_6{
    display: none;
}
.acd-label_6{
    color: #000;
    background-color: #fff;
    border:solid 1px #000;
    font-weight: bold;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 20px 2px;
    max-width:1000px;
    text-decoration: none;
    
}

.acd-label_6:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.acd-label_6:before {
font-family: "Font Awesome 5 Free";
 
    padding-right: 8px;
}

/*ラベルホバー時*/
.acd-label_6:hover {
  color: #000;
  background-color: #fff;
  transition: .6s;
  opacity: 0.75;
}
.acd-content_6{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    text-align: left;
}
/*クリックで中身表示*/
.acd-check_6:checked + .acd-label_6 + .acd-content_6{
    height: auto;
    opacity: 1;
    padding: 0;
    visibility: visible;
    color:#000;
}



/*--------------------------------------
  コード表示アコーディオンBOX　色反転_7
--------------------------------------*/
.acd-check_7{
    display: none;
}
.acd-label_7{
    color: #000;
    background-color: #fff;
    border:solid 1px #000;
    font-weight: bold;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 20px 2px;
    max-width:1000px;
    text-decoration: none;
    
}

.acd-label_7:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.acd-label_7:before {
font-family: "Font Awesome 5 Free";
 
    padding-right: 8px;
}

/*ラベルホバー時*/
.acd-label_7:hover {
  color: #000;
  background-color: #fff;
  transition: .6s;
  opacity: 0.75;
}
.acd-content_7{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    text-align: left;
}
/*クリックで中身表示*/
.acd-check_7:checked + .acd-label_7 + .acd-content_7{
    height: auto;
    opacity: 1;
    padding: 0;
    visibility: visible;
    color:#000;
}



/*--------------------------------------
  コード表示アコーディオンBOX　色反転_8
--------------------------------------*/
.acd-check_8{
    display: none;
}
.acd-label_8{
    color: #000;
    background-color: #fff;
    border:solid 1px #000;
    font-weight: bold;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 20px 2px;
    max-width:1000px;
    text-decoration: none;
    
}

.acd-label_8:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.acd-label_8:before {
font-family: "Font Awesome 5 Free";
 
    padding-right: 8px;
}

/*ラベルホバー時*/
.acd-label_8:hover {
  color: #000;
  background-color: #fff;
  transition: .6s;
  opacity: 0.75;
}
.acd-content_8{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    text-align: left;
}
/*クリックで中身表示*/
.acd-check_8:checked + .acd-label_8 + .acd-content_8{
    height: auto;
    opacity: 1;
    padding: 0;
    visibility: visible;
    color:#000;
}


/*indexページ スライドショー*/
.slider{
    width: 100%;
    margin: 2em auto;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
 
.slider__content{
    min-width: 100%;
    animation: sliderAnime 12s ease-in-out infinite;
}
  
@keyframes sliderAnime{
    0%{
    }
    16.6%{
        transform: translateX(0);
    }
    33.3%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    66.6%{
        transform: translateX(-200%);
    }
    83.2%{
        transform: translateX(-200%);
    }
    100%{
        transform: translateX(0);
    }
} 
 
.slider__img{
    max-width: 100%;
    min-width: 100%;
}


/*recruitページ リンクボタンしごまる他*/
.nhk{
	display: inline-block;
	padding: .5em 2.75em;
	background: #fff;
	border:solid 1px #ccc;
	font-size: 1em;
	color:#555;
	}


/*topページ 採用外部リンクbox　上部*/
.msr_list996{
  margin:0 -10px;
}
.msr_list996 li{
  width:50%;
  padding:0 10px;
  display:inline-block;
  float:left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.msr_list996 li a{
  width:100%;
  padding:18px 0;
  color: ;
  font-size: ;
  background: ;

  text-decoration:none;
  text-align:center;
  display:block;
  position:relative;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list996 li a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;

  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list996 li a:hover{
  background: ;
  color: ;
}
.msr_list996 li a:hover::after{
 
}


/*topページ 採用外部リンクbox　下部*/
.msr_list997{
  margin:0 -10px;
}
.msr_list997 li{
  width:50%;
  padding:0 10px;
  display:inline-block;
  float:left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.msr_list997 li a{
  width:100%;
  padding:0 0;
  margin-bottom:50px;
  color: ;
  font-size: ;
  background: ;

  text-decoration:none;
  text-align:center;
  display:block;
  position:relative;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list997 li a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;

  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.msr_list997 li a:hover{
  background: ;
  color: ;
}
.msr_list997 li a:hover::after{
 
}


#back1 { background-color: #F97893}
#back1 { background-color: #5C7EE6}


/* 女性専用ページ背景斜め2 */
.diagonal02 {
  display: table;
  width: 100%;
  height: 120px;
  background: linear-gradient(to right, #CC0033 0%,#F52549  50%,#FA6775 100%);
  transform: skewY(-10deg);
  margin-top: 10vw;
}
.diagonal02 p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 2.6em;
  font-weight: bold;
  color: #fff ;
  letter-spacing: 0.15em;
}
.diagonal02 p2 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 4.8em;
  font-weight: bold;
  color: #fff ;
  letter-spacing: 0.15em;
}
.diagonal02 p3 {
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15em;
}
.diagonal02 > * {
  transform: skewY(deg);  /* pの傾き角度 */
}


/* indexページ コロナ対策四角4つ */
/*--------------------------------------
  カード型_06
--------------------------------------*/
.l-wrapper_006 {
  width: 100%;
  margin: 0.5rem 0;
}
.l-wrapper_006:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 34px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  transition: all .5s;
}
.card_006 {
  background: #3399FF;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
}
.card-img_006 {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
  height: auto;
}
.card-content_006 {
  padding: px 20px 20px;
}
.card-title_006 {
  font-size: 0.8em;
  color: #3399FF;
  text-align:center;
  font-weight: 700;
}
.card-text_006 {
  color: #3399FF;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.card-link_006 {
  text-align: center;
  border-top: px solid #3399FF;
  padding: px;
}
.card-link_006 a {
  text-decoration: none;
  color: #fff;
  font-size: 5x;
  margin: 0 10px;
}
.card-link_006 a:hover {
  color: #fff;
}
.card-content_006 p {
  margin-bottom:0;
}


/* recruitページ 女性専用更衣室写真ボックス */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.item {
  border-radius: px;
  background: #fff;
  color:#CC0033;
  padding: 15px;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
p5601 {
  text-align: left;
}


/*募集要項モバイルファースト*/
.card-container{
    background: #fff;
    color: #000;
    display: flex;
    margin: 5em 5em 8.5em 3em;
    width: 100%;
    box-shadow:
    font-size:20px;
}

<style>
.textbox {
  position: absolute; 
  right: 50%;
  writing-mode: vertical-rl;
}
.vertical {
  text-orientation: mixed;
}
.vertical__part {
  text-orientation: upright;
}
.card-container a{
  text-decoration: none;
  color: #fff;
}
.card-text{
  width:100%;
  margin: 20px 40px 0px 65px;
}
.card-text p{
  font-size: 1em;
}
.card-img{
  width: 35%;
  background: #fff;
  color: #000;
  font-weight:bold;
}
/*
img{
  width:100%;
  height:100%;
  vertical-align:bottom;
}
*/


/*縦書き*/
.box {
  text-align: center;
}

.exp {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  -ms-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 1;
  -moz-column-gap: 1;
  -ms-column-gap:1;
  column-gap: 1;
  display: inline-block;
  height: 数値;
  text-align: left;
}


/*PCサイズ*/
@media screen and (min-width:650px) {
  .card-container{
    max-width: 750px;
    height: 200px;
  }
  .card-text h2{
    font-size: 1.3em;
  }
  .card-text p{
    font-size: 1em;
  }
}


/* indexページ 運休・時間変更 */
.cautionbox{
  margin: 0.5em 0;
  background-color: #fff;
  color: #ff0033;
  border: 1px solid #fff;
  padding: 1.1em;
}
.cautionbox-title{
   text-align:left;
  color: #000;
  font-size: 13.5px;
  line-height: 25px
}
.cautionbox p{
  margin: 0;
  padding: 0;
}


/*indexページ 重要なお知らせ*/
.box38952 {
  padding: 0.5em 1em ;
  margin: 2em 10;
  color: #fff;
	border: 1px solid #999;
  background: #999;
}
.box38952 p {
  margin: 0; 
  padding: 0;
  text-align:left;
  font-size:0.8em;
}


/*indexページ 新型コロナ関連運休について*/
.box38954 {
  padding: 0.5em 1em ;
  margin: 2em 10;
  color: #999;
	background: #999;
}
.box38954 p {
  text-align:left;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 11.5px;
  line-height: 25px
}







/*companyページ 親切ていねいまごころサービス下の文字*/
.ppmox02 {

  font-family: "游明朝" ;

}



/*indexページ 横棒見出し 人材募集 他*/


  h2009{

 position: relative;
  width: 250px;
  margin: 20px auto;
  padding: 10px;
  color: #000;
  font-size: 30px;
  font-weight: bold;


	  
position: relative;
    padding: 0.5rem 10 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 30px;
    background: linear-gradient(60deg, #FF5C03 0% 50%, #000 50%);
    background-repeat: no-repeat;
    background-size: 4rem 0.4rem;
    background-position: bottom;
    color: #000;


}


/*indexページ 横棒見出し 下部(有限会社大和タクシー)*/


  h20091{

 position: relative;
  width: 250px;
  margin: 20px auto;
  padding: 10px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  font-family:


	  
position: relative;
    padding: 0.5rem 10 1rem;
    margin-bottom: 0.5rem;
    font-weight:bold ;
    font-size: 15px;
    background: linear-gradient(60deg, #FF5C03 0% 50%, #000 50%);
    background-repeat: no-repeat;
    background-size: 10rem 0.15rem;
    background-position: bottom;
    color: #fff;Verdana;


}






/*indexページ 横棒見出し スマホメニュー*/


  h200910{

 position: relative;
  width: 250px;
  margin: 20px auto;
  padding: 5px;
  color: #000;
  font-size: 3px;
  font-weight: bold;


	  
position: relative;
    padding: 0.5rem 10 1rem;
    margin-bottom: 0.5rem;
    font-weight:bold ;
    font-size: 3px;
    background: linear-gradient(60deg, #FF5C03 0% 50%, #000 50%);
    background-repeat: no-repeat;
    background-size: 10rem 0.15rem;
    background-position: bottom;
    color: #000;


}
