@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo, Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;	/*フォント指定*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #ffffff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{margin:0px;padding:0px;}
ul{list-style-type:none;}
img{border:none;max-width:100%;height:auto;}
table{border-collapse:collapse;font-size:100%;border-spacing:0;}
iframe{width:100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #1b1b8d;/*紺色*/	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #ff8c00;/*オレンジ*/	/*マウスオン時の文字色（全体）色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*BOOKOFFサービスバナー装飾
---------------------------------------------------------------------------*/
button{
position: fixed; /* 追従させる為にfixedの値を記述します */
width: 15%;
border: none;
background-color: #fff;
padding: 0.1%;
box-shadow: 0 0 10px rgba(0,0,0,.5);
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
top: 40%; /* 上から150pxのところにバナーを配置します */
right: 0; /* 右から40pxのところにバナーを配置します */
}

.fixed_banner_pc {
	width:100%; /* バナーの横幅を指定してあげます */
	}
	button.fixed_banner img.fixed_banner_pc{
		margin-top: -15px;/*画像位置調整*/
	}

button:hover {
	opacity: 0.9; /* マウスが重なった時に少し透過させます */
	}

button.fixed_banner_s img.fixed_banner_sp {
	display: none; /* PCではスマホ用のバナーは非表示にします */
		}
		.fixed_banner_s{
		display: none; /* PCではスマホ用のバナーは非表示にします */
			}


/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	padding-bottom: 8px ;
	
	/*background: #fff;	背景色（古いブラウザ用）*/
	/*background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f8fa));	グラデーション*/
	/*background: -webkit-linear-gradient(#fff, #f5f8fa);	同上*/
	/*background: linear-gradient(#fff, #f5f8fa);			同上*/
/*background-color: #1e90ff;水色*/
overflow: hidden;
border-top: 5px solid #1b1b8d;/*紺色*/
}
/*header内のブロック ロゴ、メニュー、アイコンの囲み*/
header #inner {
width: 99%;
margin: 10px auto 0 auto;
overflow: hidden;
/*border: 1px solid red;*/	
}
/*ロゴ領域の幅*/
header h1#logo {
width: 31%;	/*幅*/
	margin: 0 0 0 10px;
	float: left;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	overflow: hidden;
	/*background-color: #ccc;*/
	}
header h1#logo img{/*ロゴ画像位置*/
width: 245px;
float: left;
position: relative;
z-index: 0;
/*border: 1px solid red;*/
}
	
/*ロゴ横リード*/
header h1#logo span{
position: absolute;
z-index: 2;
left:265px;
top:23px;
display: block;
width: 150px;
font-size: 0.35em;
padding: 0;
color: #888;/*グレー*/
vertical-align: middle;
/*background-color: pink;
text-shadow: 1px 1px 1px #777;文字影設定*/
}

/*しつこい勧誘お断り*/
header p#smp_nokanyu{/*PC非表示*/
display: none;
}
/*新料金プラン登場*/
header p#smptop-newplan{/*PC非表示*/
	display: none;
	}


/*メインメニュー
---------------------------------------------------------------------------*/
nav#menubar {/*メニュー、アイコンの囲み*/
	width: 67%;/*横幅*/
	float: right;
	overflow: hidden; 
	/*background-color: #FA7ABA;ピンク*/

}
ul#menu01 {/*メニューの囲み*/
	width: 73%;/*menubar領域の中での横幅*/
	float: left;
	overflow: hidden; 
	font-weight: bold;
	/*background-color: #FA7ABA;ピンク*/
	}
/*メニュー１個あたりの設定*/
ul#menu01 li {
width: 19%;	/*メニュー幅*/
padding: 0 2px;
display: table-cell;/*横並び高さも指定する*/
height: 80px;
text-align: center;
vertical-align: middle;
font-size: 15px;	/*文字サイズ*/
border-left: 1px solid #1b1b8d;/*左側のアクセント用ラインの幅、線種、紺色*/
}
ul#menu01 li:last-child{
border-right: 1px solid #1b1b8d;/*左側のアクセント用ラインの幅、線種、紺色*/
}

#menubar ul#menu01 li a {
	display: block;
	height: 60px;
	text-decoration: none;
	/*background: #1e90ff;	水色　背景色（古いブラウザ用）*/
	/*background: #fff;	水色　背景色（古いブラウザ用）*/
	/*background: rgba(255, 255, 255,0.6);	背景色。rgbaでの設定で左３つの数字が色指定。最後の小数点が透明度。*/
	/*color: #fff;*/
	
	/*background-color: #FA7ABA;ピンク*/
}

/*マウスオン時、現在表示中のメニュー設定*/
#menubar ul#menu01 a:hover{

/*text-shadow: -1px -1px 1px #fff, 1px 1px #333;*/

}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}


/*お問合せ、フリーダイヤル、LINEアイコンの位置設定
---------------------------------------------------------------------------*/
ul#menu02{
width: 25%;/*アイコン領域の横幅*/
padding-top:15px ;
padding-left: 10px;
overflow: hidden;
/*border: 1px solid orange;*/
}
ul#menu02 li{/*各アイコンの横幅*/
width:29%;
margin-right: 6px;
float: left;
/*border: 1px solid green;*/
}
ul#menu02 li img{
width:90%;
}

ul#menu02 li a:hover{
opacity: 0.6;	/*マウスオーバー時に画像を透過する設定 */
}


/*メイン画像　文字位置調整
---------------------------------------------------------------------------*/
#mainimg{
	width: 100%;
	margin: 0 auto;
	padding: 0px;
	position: relative;
	z-index: 0;
	top:0;
	/*border: 2px solid green;	
    background-color: black;*/
}

/*しつこい勧誘お断りアイコンの位置調整*/
div#no-kanyu img{
width: 18%;
position: absolute;
top: 10%;
left:18%;
/*border: 1px solid red;*/
}

/*新プラン登場*/
#mainimg p#top-newplan{
font-size: 1.5em;
position: absolute;	
top:2%;
left:27% ;
color: #fefe3d;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
text-shadow:1px 1px 2px #3a3a3a;
}
#mainimg p#top-newplan a{
color: #fefe3d;
text-decoration: none;
}

#mainimg dl{
position: absolute;
top:13%;
left:30% ;
z-index: 2;
}
#mainimg dl dt{
font-size: 2.9em;
font-weight: bold;
text-align: center;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
line-height: 1.3;/*行間*/
letter-spacing:-0.1em;/*文字間*/
text-shadow: 2px 2px 3px #fff;/*文字影設定*/
margin-bottom: 5%;
}
#mainimg dl dt span#kome{
font-size: 0.3em;
color: 	#000;/*黒*/
}
#mainimg dl dt span{
font-size: 2.0em;
color: 	#FF003F;/*赤*/
letter-spacing:normal;/*文字間*/

}
#mainimg dl dt span#tax{
font-size: 0.5em;
color: 	#FF003F;/*赤*/
}

#mainimg dl dd{
color: #fff;
font-size: 1.8em;
font-weight: bold;
text-shadow: 1px 1px 2px #000;/*文字影設定*/
}
/*※注意事項*/
#mainimg p{
width: auto;
margin: 0 auto;
position: absolute;
z-index: 3;
top:93%;
left: 75%;
font-weight: bold;
text-shadow: 1px 1px 1px #fff;/*文字影設定*/
/*border: 1px solid red;*/
}


/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: 980px;
	margin: 0 auto;
	overflow: hidden;
	/*background-color: pink;*/
	/*position: absolute;
	z-index: 4;*/
	}

.contents2 {/*予約・お問い合わせの領域*/
	width: 100%;
	margin: 0 auto;
	/*background-color: orange;
border: 2px solid orange;*/
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	width: auto;/*幅*/
	/*margin: 0 auto;*/	
	/*border: 1px solid green;*/
}


/*mainコンテンツのh3タグの設定*/
.main h3 {
width: 98%;
margin: 50px auto 30px auto;
font-size: 1.7em;
background: linear-gradient(transparent 70%, #a3d5fc 70%);
}


.main p + p {
	/*padding-top: 0px;*/
}
.main h2 + p,
.main h3 + p {
	/*padding-top: 0px;
	margin-top: -5px;*/
}


/*下層ページ共通
---------------------------------------------------------------------------*/
h2.h2-ttl{
width: 100%;
margin: 10px 0 20px 0;
 padding: 0.5em;/*文字周りの余白*/
color: #1b1b8d;
  background: #ebf8ff;/*背景色 水色*/
  border-left: solid 5px #1b1b8d;/*左線（実線 太さ 色）紺色*/
  text-align: left;
  box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.1);
  }
h2.h2-ttl:before {
  content:none;

}


/*パンくずリスト
---------------------------------------------------------------------------*/
ul#blist{
width: 970px;
margin: 8px auto 15px auto;
overflow: hidden;
font-size: 0.8em;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', YuGothic, 'Yu Gothic Medium', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
/*background-color: pink;*/
}
ul#blist li{
float: left;
margin-right: 5px;
}
ul#blist li.topicpath{
float: left;
font-weight: bold;
}
ul#blist li a{
text-decoration: none;
}

/*地域密着型！あなたの街のヨコハマ引越しセンター
---------------------------------------------------------------------------*/
section#kkm01{
width: 100%;
margin: -10px auto 0 auto;
padding:50px 0;
background-color: #ebf8ff;/*薄いみずいろ*/
}
h2 {
width: 98%;
text-align: center;
  position: relative;
  color: #ff8c00;/*オレンジ*/
  padding: 4px 0;
  text-align: center;
  margin: 0 auto;
}
h2:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #ff8c00;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

div#abo-kkm{
width: 98%;
margin: 30px auto 0 auto;
}
div#abo-kkm p{
margin: 15px 0;
}

/*文字大小の設定*/
div#abo-kkm p span.fs12{
font-size: 1.2em;
font-weight: bold;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
border-bottom: 2px solid orange;
}
/*文字大小の設定 法人*/
div#abo-kkm p span.fsh12{
	font-size: 1.2em;
	font-weight: bold;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	border-bottom: 2px solid rgb(71, 114, 213);
	}


/*ヨコハマ引越しセンターのサービス
---------------------------------------------------------------------------*/
p.whats_p{
font-size: 2.2em;
color: #ff8c00;/*オレンジ*/
width: 45%;
margin: 0 auto;
}
ul#whats{/*なぜ安いの？*/
width:98%;
margin: 10px auto 30px auto;
padding: 0;
overflow: hidden;
/*border: 1px solid red;*/
}

ul#whats li{
width: 30%;
float: left;
height: 330px;
margin:0 1%;
padding: 0 8px;
vertical-align: top;
background-color: #ebf8ff;/**/
}
ul#whats li:last-child{
margin-right: 0;
}

li span.icon-sv{
display: block;
width: 70px;/*画像の幅*/
height: 70px;/*画像の高さ*/
margin:  0 auto;
}
li span.point{
display: block;
width: 70px;/*テキストの幅*/
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
margin:2px auto 30px auto;
text-align: center;
background-color: #1b1b8d;/*紺色*/
color: #fff;
}


/*引越しのご予約から当日までの流れ 
---------------------------------------------------------------------------*/
table#flow{
width: 88%;
margin: 80px auto 50px auto;
/*border: 1px solid #333;*/
}
table#flow caption{
width: 68%;
margin: 0 auto 25px auto;
font-size: 2.2em;
  /*color: #ff8c00;オレンジ*/
  padding: 0.2em 0;/*上下の余白*/
  border-top: solid 3px #ff8c00;/*上線*/
  border-bottom: solid 3px #ff8c00;/*下線*/
}
table#flow th{
width: 15%;
height: 100px;
background-color: #ff8c00;/*オレンジ*/
color: #fff;
border-radius: 6px 0 0 6px;	/*角丸のサイズ。左上、右上、右下、左下。*/
border-top-style: hidden;/*firefox下線消す*/
border-bottom-style: hidden;/*firefox下線消す*/

}
table#flow td{
width: 85%;
padding:0 20px;
border-bottom:1px solid #ff8c00 ;
border-top:1px solid #ff8c00 ;
border-right:1px solid #ff8c00 ;
}
/*矢印位置設定*/
table#flow td.icon_arrow{
width: 100%;
height: 50px;
border-right-style: hidden;
background: url(../images/icon_arrow.png) no-repeat 50%;/*矢印画像　位置調整*/
background-size: contain;/*縦横比を保持して、表示領域に収まるように背景画像を表示する*/
/*background-color: pink;*/
}


/*引越し時の無料サービス-------------------------------------*/
section#free{
width: 98%;
margin: 80px auto 10px auto;
overflow: hidden;
/*border: 1px solid green;*/
}

section#free h4{
width: 68%;
margin: 0 auto 25px auto;
font-size: 2.2em;
padding: 0.2em 0;/*上下の余白*/
border-top: solid 3px #1b1b8d;/*上線*/
border-bottom: solid 3px #1b1b8d;/*下線*/
text-align: center;
}
section#free ul{
width: 58%;
float: left;
padding: 0 0 0 50px;
/*border: 1px solid red;*/
}
section#free ul li{
list-style: disc;
}
section#free p{
width: 35%;
float: right;
/*border: 1px solid red;*/
}
p#cardboard{/*段ボール手配*/
width: 83%;
margin: 0 auto;
/*background-color: red;*/
background: linear-gradient(transparent 70%, #ffdfd3 70%);
}
p#piano{/*いらなくなったピアノ*/
	width: 83%;
margin: 0 auto ;
/*background-color: red;*/
background: linear-gradient(transparent 70%, #ffdfd3 70%);
}
p#security{/*セキュリティの相談*/
	width: 83%;
margin: 0 auto;
/*background-color: red;*/
background: linear-gradient(transparent 70%, #ffdfd3 70%);
}

/*ヨコハマ引越しセンターからお願い事
---------------------------------------------------------------------------*/
dl#precautions{
width:91%;
margin: 40px auto 0 auto;
padding: 15px 30px;
border: 4px solid #ff5757;/*赤*/
border-radius: 6px;	/*角丸のサイズ。左上、右上、右下、左下。*/
background-color: #ffeced;/*薄い赤*/
}
dl#precautions dt{
color: #ff5757;/*赤*/
font-size: 2.2em;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
letter-spacing:-0.1em;/*文字間*/
}


/*料金のご案内
---------------------------------------------------------------------------*/
dl#cost{
width: 95%;
margin: 0 auto;
}
dl#cost dt{
text-align: center;
color: #ff8c00;/*オレンジ*/
border-bottom: 4px solid #ff8c00;/*オレンジ*/

}
dl#cost dt span{
padding-left: 10px;
font-weight: bold;

}
dl#cost dd{
margin-top: 20px;
}

/*新プラン登場
---------------------------------------------------------------------------*/
dl#newplan{
	width:91%;
	margin: 40px auto 30px auto;
	padding: 15px 30px 20px 30px;
		background-color: #f89e4f6c;
		border: 3px solid #eb0303;
	position: relative;
	}
/* ラベル部分 左上に表示 */
dl#newplan::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 5em solid transparent;
    border-left: 5em solid #eb0303; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 100;
}
dl#newplan::after {
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	    content: "NEW";
    display: block;
    top: 8px;
	transform: rotate(-45deg);
    color: #fff; /* 文字色はここで変更 */
    left: 5px;
    position: absolute;
    z-index: 101;
}


	dl#newplan dt{
	color: #fff;
	font-size: 2.2em;
	font-weight: bold;
	padding-left: 20px;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	letter-spacing:-0.1em;/*文字間*/
	
margin-bottom: 20px;	
text-shadow:3px 4px 3px #343333;
	}
	dl#newplan dt span{
font-size: 0.5em;
padding-left: 20px;
text-shadow: none;
letter-spacing: normal;
text-shadow:1px 1px 1px #343333;
	}

	dl#newplan dd span{
	display: block;
    font-weight: bold;
	font-size: 1.5em;
	padding: 0.3rem 0;
    margin-bottom: -20px;
    background-image: linear-gradient(90deg, #ffff00 0 20%, #fff 20%);
    background-repeat: no-repeat;
    background-size: 100% 10%;
    background-position: bottom;
    color: #323232;
    font-weight: bold;
	}

	dl#newplan dd a{
font-weight: bold;

	}




/*引越しサービスエリア
---------------------------------------------------------------------------*/
section#area{
width: 95%;
margin: 0 auto;
}
section#area dl{
margin: 0 auto 20px auto;
padding:30px;
background-color: #F3F3F4;/*グレー*/
border-radius: 4px;	/*角丸のサイズ。左上、右上、右下、左下。*/
position: relative;
}
section#area dl dt{
margin: 15px auto 10px auto;
font-weight: bold;
border-bottom: 1px solid #000;
}

/*車両情報について
---------------------------------------------------------------------------*/
section#Vehicle_info{
width: 97%;
margin: 0 auto;
overflow: hidden;
/*border: 1px solid green;*/
}
section#Vehicle_info p{
width: 40%;
float: left;
/*border: 1px solid red;*/
}
section#Vehicle_info dl{
width: 58%;

float: right;
padding: 0;
/*border: 1px solid red;*/
}
section#Vehicle_info dl dt{
font-weight: bold;
}



/*お客様の声
---------------------------------------------------------------------------*/
ul.voice{
width:100% ;
overflow: hidden;
margin: 15px auto 0 auto;
}

ul.voice li{
width:48%;
height: 135px;
float: left;
margin-bottom: 15px;
background-color: #ebf8ff;
}
ul.voice li:nth-child(odd){
margin-right: 10px;
}
ul.voice li dl{
width: 96%;
margin: 5px auto 0 auto;
}
ul.voice li dl dt{
font-weight: bold;
}
ul.voice li dl dd{
line-height: 1.6em;
}


/*埼玉お掃除便のご案内 
---------------------------------------------------------------------------*/
section#saitama-osoujibin{
width:100% ;
overflow: hidden;
margin: 15px auto 0 auto;
}
section#saitama-osoujibin div{
width: 25%;
float: left;
margin-right: 2%;
}


/*運営会社の紹介
---------------------------------------------------------------------------*/
/*ta1設定*/
table.ta1 {
	width: 99%;
	margin: 15px auto 40px auto;
	background: #fff;	/*背景色*/
}
table.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
table.ta1 th {
	width: 20%;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #e3eefe;	/*背景色*/
}
table.ta1 td{
	width: 80%;	/*幅*/
}

/*---------------------------------------------------------------------------
ページ最下部メッセージ*/
/*---------------------------------------------------------------------------*/
p#message{
width: 97%;
border: 5px solid green;
 border-radius: 6px; 
 padding: 10px;
 margin-bottom:30px;
 }

/*---------------------------------------------------------------------------
ページ内３カ所　お問い合わせ メール、フリーダイヤル、LINE*/
/*---------------------------------------------------------------------------*/
section.cnt-kkm{
width: 100%;
padding: 30px 0;
box-shadow: 5px 5px 6px 7px rgba(0,0,0,0.2);
/*
background-color: #2ac9cd;/*エメラルドグリーン*//*斜線の設定
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #30d2d7), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #30d2d7),color-stop(.75, #30d2d7), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 30px 30px;*/
background: url(../images/bk_cnt.png) round;/*背景画像	領域に合わせて表示。画像のサイズを調整。*/

}
dl.cnt-icon{
width: 78%;
margin: 0 auto;
overflow: hidden;
/*border: 1px solid red;*/
}
dl.cnt-icon dt{
text-align: center;
font-size: 2.0em;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
font-weight: bold;
color:#fff;
margin-bottom: 25px;
text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
}

/*アイコンの並び設定*/
dl.cnt-icon dd{
/*width: 30%;*/
width: 45%;/*フリーダイヤル削除のため幅修正*/
float: left;
margin-right: 38px;
font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
background-color: #fff;
padding: 2px 0;
border-radius: 4px;	/*角丸のサイズ*/
font-weight: bold;
border: 2px solid #fc8c4f;
}

dl.cnt-icon dd a{
color: #565656;
/*font-size: 1.3em;フリーダイヤル削除のため文字サイズ修正*/
font-size: 1.6em;
text-decoration: none;
display: inline-block;
background-color: #fff;
margin-left: 6px;
vertical-align: middle;
}
dl.cnt-icon dd a:hover{
color: #ff8c00;/*オレンジ*/
}
dl.cnt-icon dd:hover{
box-shadow: 0 0 8px gray;
}
/*メールフォーム*/
dl.cnt-icon dd.btn-mail:before{
margin-right:2px;
/*margin-left:10px;フリーダイヤル削除のためアイコン位置修正*/
margin-left:40px;
content: '';/*何も入れない*/
display: inline-block;/*忘れずに！*/
width: 50px;/*画像の幅*/
height: 50px;/*画像の高さ*/
background: url(../images/icon_mail.png) no-repeat;	/**/
background-size: contain;/*縦横比を保持して、表示領域に収まるように背景画像を表示する*/
vertical-align: middle;
}
dl.cnt-icon dd.btn-mail{
margin-left: 8px;
}
/*フリーダイヤル*/
dl.cnt-icon dd.btn-tel:before{
margin-right:2px;
margin-left:10px;
content: '';/*何も入れない*/
display: inline-block;/*忘れずに！*/
width: 50px;/*画像の幅*/
height: 50px;/*画像の高さ*/
background: url(../images/icon_tel.png) no-repeat;	/**/
background-size: contain;/*縦横比を保持して、表示領域に収まるように背景画像を表示する*/
vertical-align: middle;
}
/*LINE*/
dl.cnt-icon dd.btn-line:before{
margin-right:2px;
/*margin-left:10px;フリーダイヤル削除のためアイコン位置修正*/
margin-left:110px;
content: '';/*何も入れない*/
display: inline-block;/*忘れずに！*/
width: 50px;/*画像の幅*/
height: 50px;/*画像の高さ*/
background: url(../images/icon_line.png) no-repeat;	/**/
background-size: contain;/*縦横比を保持して、表示領域に収まるように背景画像を表示する*/
vertical-align: middle;
}
dl.cnt-icon dd.btn-line{/*LINEアイコンmarginなし*/
margin-right: 0px;
}

section.cnt-kkm p{/*アイコン下テキスト位置調整*/
clear: both;
width: 100%;
margin: 15px auto 0 auto;
color: #fff;
text-align: center;
font-size: 1.1em;
font-weight: bold;
/*border: 1px solid red;*/
}


/*フッターナビ設定
---------------------------------------------------------------------------*/
#footer-menu{
width: 1060px;	/*幅*/
margin: 50px auto 5px auto;
/*border: 1px solid green;*/
overflow: hidden;
}

#footer-menu ul{
width: 100%;
margin-left: 0px;
/*background-color: pink;*/
overflow: hidden;
}
/*横並びのメニューの間に罫線（縦線）を引く*/
#footer-menu ul li{
position:relative;
float: left;
width: auto;
padding: 0 12px;
}
#footer-menu ul li a{
text-decoration: none;
}
#footer-menu li:before {/*疑似要素の設定*/
position:absolute;
display:block;
content:"";
top:50%;
right:0;
height:14px;
margin-top:-6px;
border-right:1px solid #024B7E;
}
#footer-menu li:last-child:before {
border-right:none;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
width:100%;	/*幅*/
clear: both;
background: #fff;	/*背景色*/	/*上部の線の幅、線種、紺色*/
color: #000;	/*文字色*/
font-size: 85%;	/*文字サイズ*/
padding: 10px 0 0 0;
border-top:4px solid #1b1b8d ;
}
/*フッター領域 コピーライト*/
table#cmp-kkm{
width: 100%;	/*幅*/
margin: 0 auto;
text-align: center;
	/*border: 1px solid green;*/
}
table#cmp-kkm img{/*ロゴサイズ調整*/
width: 15%;
}
table#cmp-kkm small a{
padding-bottom: 5px;
color:#000 ;/*黄色*/
text-decoration: none;
display: block;
line-height:1.6em;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	padding-top: 40px;
	overflow: hidden;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 15px;	/*文字サイズ*/
	padding: 0px 20px;	/*上下、左右へのボックス内余白*/
	margin: 10px 0;
	background: #ff8c00;	/*背景色 オレンジ*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #ccc;	/*背景色*/
	color: #FFF;			/*文字色*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}/*グレー*/
.mb15,.mb1em {margin-bottom: 15px;}
.mb40 {margin-bottom: 40px;}
.tp40 {margin-top: 40px;}
.tp30 {margin-top: 30px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #a2000d;}/*濃赤*/
.color2 {color: #ff8c00;}/*オレンジ*/
.color3 {color: #cf0718;}/*濃赤*/
.pr {font-size: 10px;}
.wl {width: 95%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fs09{font-size: 0.9em;}
.fs08{font-size: 0.8em;}
.fs15{font-size: 1.5em;}
.fs22{font-size: 2.2em;}
.fs25{font-size: 3.0em;}


/*■■■■■■■■■■■■■■画面幅1100px以下の設定■■■■■■■■■■■■■■
---------------------------------------------------------------------------*/
@media screen and (max-width:1100px){
/**/header h1#logo img{
width: 165px;
top:6px;
}
/*ロゴ横リード*/
header h1#logo span{
width: 120px;
left: 180px;
top:16px;
font-size: 0.30em;
/*border:1px solid pink;*/
}


/*mainコンテンツのh3タグの設定*/
.main h3 {
width: 90%;
margin: 50px 1% 30px 1%;
}


/*メインメニュー　フリーダイヤル削除のため修正
---------------------------------------------------------------------------*/

ul#menu01 {/*メニューの囲み*/
	width: 80%;/*menubar領域の中での横幅*/
	/*background-color: #FA7ABA;ピンク*/
	}
/*メニュー１個あたりの設定*/
ul#menu01 li {
width: 20%;	/*メニュー幅*/
font-size: 12px;	/*文字サイズ*/
}

/*お問合せ、LINEアイコンの位置設定
---------------------------------------------------------------------------*/
ul#menu02{
width: 18%;/*フリーダイヤル削除のため、アイコン領域の横幅修正*/
padding-top:15px ;
/*border: 1px solid orange;*/
}
ul#menu02 li{/*各アイコンの横幅*/
width:40%;
/*border: 1px solid green;*/
}
ul#menu02 li img{
width:100%;
}

/*メイン画像文字サイズ調整*/
#mainimg dl{
/*border: 1px solid pink;*/
left:26% ;
font-size: 0.7em;/*全テキストの文字サイズ調整*/
}

/*新プラン登場*/
#mainimg p#top-newplan{
	font-size: 1.2em;/*文字サイズ調整*/
	left:20% ;
	}

/*※注意事項*/
#mainimg p{
font-size: 0.6em;
top:91%;
left: 68%;
}
/*---------------------------------------------------------------------------
ページ内３カ所　お問い合わせ メール、フリーダイヤル、LINE*/
/*---------------------------------------------------------------------------*/
section.cnt-kkm{
width: auto;
margin-right: 0;
}
/*---------------------------------------------------------------------------*/
dl.cnt-icon{
width: 96%;
/*border: 1px solid green;*/
}
/*問い合わせアイコンの並び設定　フリーダイヤル削除のため修正*/
dl.cnt-icon dd{
width: 47%;/**/
margin-right: 30px;
}
/*メールフォーム*/
dl.cnt-icon dd.btn-mail:before{
/*margin-left:10px;フリーダイヤル削除のためアイコン位置修正*/
margin-left:30px;

}

/*LINE*/
dl.cnt-icon dd.btn-line:before{
margin-right:2px;
/*margin-left:10px;フリーダイヤル削除のためアイコン位置修正*/
margin-left:90px;
}


/*ヨコハマ引越しセンターのサービス
---------------------------------------------------------------------------*/
p.whats_p{/*なぜ安いの？それは。。。*/
width: auto;
}
ul#whats{/*ポイント1～3*/
width: auto;
}
ul#whats li{
width:27%;
height: 375px;
margin: 0 0.5% 0 1%;
}

/*引越しのご予約から当日までの流れ
---------------------------------------------------------------------------*/
table#flow{
width:86%;
margin-left:2%;
}
/*引越し時の無料サービス-------------------------------------*/
section#free{
width: 88%;
margin-left: 1%;
/*border: 1px solid green;*/
}
p#cardboard{/*段ボール手配*/
	margin-left: 5%;
	}
	p#piano{/*いらなくなったピアノ*/
		margin-left: 5%;
	}
	p#security{/*セキュリティの相談*/
		margin-left: 5%;
	}


/*ヨコハマ引越しセンターからお願い事
---------------------------------------------------------------------------*/
dl#precautions{
width: 81%;
margin: 40px 0 0 1%;
}

/*料金のご案内
---------------------------------------------------------------------------*/
dl#cost{
width: 89%;
margin: 0 1%;
}
/*新プラン登場
---------------------------------------------------------------------------*/
dl#newplan{
	width: 81%;
	margin: 40px 0 0 1%;
	}
/*引越しサービスエリア
---------------------------------------------------------------------------*/
section#area{
width: 90%;
margin: 0 1%;
}

/*車両情報について
---------------------------------------------------------------------------*/
section#Vehicle_info{
width: 90%;
margin: 0 1%;
}
section#Vehicle_info h3{
width: 100%;
}

/*お客様の声
---------------------------------------------------------------------------*/
ul.voice{
width:92% ;
margin: 15px 0 0 1%;
/*border: 1px solid red;*/
}

ul.voice li{
width:48%;
height: 160px;
}


/*埼玉お掃除便のご案内 
---------------------------------------------------------------------------*/
section#saitama-osoujibin{
width:92% ;
margin: 15px 0 0 1%;
}
section#saitama-osoujibin h3{
width: 100%;
}

/*運営会社の紹介
---------------------------------------------------------------------------*/
/*ta1設定*/
table.ta1 {
width: 88%;
margin: 15px 0 40px 1%;
}

/*
ページ最下部メッセージ*/
/*---------------------------------------------------------------------------*/
p#message{
width: 86%;
 margin:0 1% 30px 1%;
}

/*フッターナビ設定
---------------------------------------------------------------------------*/
#footer-menu{
width: auto;	/*幅*/
	margin: 50px auto 5px auto;
	/*border: 1px solid green;*/
	overflow: hidden;
}

#footer-menu ul{
width: auto;
/*background-color: pink;*/
overflow: hidden;
}




}


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

/*サイト幅にしたheader内のブロック*/
header #inner {
width: auto;
margin: 0 auto;
/*border: 1px solid green;*/	

}
/*ロゴ領域の幅*/
header h1#logo {
width: 98%;/*幅*/
clear: both;
margin: 0 auto;
text-align: center;
/*background-color: #ccc;*/

}
header h1#logo img{/*ロゴ画像位置*/
width: 160px;
top:5px;
left: 40%;
/*border: 1px solid orange;*/
}
	/*ロゴ下リード*/
header h1#logo span{
width: 100%;
clear: both;
position: static;/*ポジションのクリア*/
left:0;
top:0;
margin: 60px auto 0 auto;
text-align: center;
/*border: 1px solid red;*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
width: 100%;
/*background-color: pink;*/
}
ul#menu01 {
width: 100%;
margin: 0 auto;
/*border: 1px solid red;*/
}
/*メニュー１個あたりの設定*/
ul#menu01 li {
width: 10%;
margin: 0;
border: 1px solid #1b1b8d;
background-color: #ebf8ff;/*水色*/
}
ul#menu01 li:hover{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2) inset;
}
/*お問合せ、フリーダイヤル、LINEアイコン*/
ul#menu02{
clear: both;
width: 30%;
margin: 0 auto;
/*border: 1px solid red;*/
}
ul#menu02 li{
border:none;
}


/*BOOKOFF・新プランバナーサイズ調整*/
button.fixed_banner{
	width: 16%
}




/*しつこい勧誘お断りアイコンの位置調整*/
div#no-kanyu img{
width: 14%;
top: 13%;
left:17%;

}




/*メイン画像文字サイズ調整*/
#mainimg dl{
/*border: 1px solid pink;*/
left:26% ;
font-size: 0.6em;/*全テキストの文字サイズ調整*/
}

/*mainコンテンツのh3タグの設定*/
.main h3 {
width: 98%;
margin: 50px 1% 30px 1%;
}



/*地域密着型！あなたの街のヨコハマ引越しセンター
---------------------------------------------------------------------------*/
div#abo-kkm{
width: auto;
margin: 0 2%;/*囲みに余白*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
width: auto;
margin: 0 2%;/*囲みに余白*/
}



/*引越し時の無料サービス-------------------------------------*/
section#free{
width: 87%;
}
section#free h4{
width: 73%;
}
section#free p{/*画像サイズ*/
width: 33%;
/*border: 1px solid red;*/
}

p#cardboard{/*段ボール手配*/
	background: linear-gradient(transparent 10%, #ffdfd3 10%);
	}
	p#piano{/*いらなくなったピアノ*/
		background: linear-gradient(transparent 10%, #ffdfd3 10%);
	}
	p#security{/*セキュリティの相談*/
	background: linear-gradient(transparent 10%, #ffdfd3 10%);
	}


/*ヨコハマ引越しセンターからお願い事
---------------------------------------------------------------------------*/
dl#precautions{
width: auto;
padding-left: 2%;
padding-right: 2%;
}

/*料金のご案内
---------------------------------------------------------------------------*/
dl#cost{
width: auto;
}
/*新プラン登場
---------------------------------------------------------------------------*/
dl#newplan{
	width: auto;

	}

/*引越しサービスエリア
---------------------------------------------------------------------------*/
section#area{
width: auto;

}

/*車両情報について
---------------------------------------------------------------------------*/
section#Vehicle_info{
width: auto;
}
section#Vehicle_info p{
width: auto;
}
section#Vehicle_info dl{
width: auto;
}


/*お客様の声
---------------------------------------------------------------------------*/
ul.voice{
width: auto;
margin: 15px auto 0 auto;
}
ul.voice li{
clear: both;
width:100%;
}
ul.voice li:nth-child(odd){
margin-right: 0;
}


/*運営会社の紹介
---------------------------------------------------------------------------*/
/*ta1設定*/
table.ta1 {
width: auto;
}

/*ページ内３カ所　お問い合わせ メール、フリーダイヤル、LINE
---------------------------------------------------------------------------*/
dl.cnt-icon{
width: auto;
/*background-color: pink;*/
}
dl.cnt-icon dd{/*アイコンの並び設定*/
/*width: 31%;*/
width: 48%;
margin-right: 10px;
}
/*メールフォーム*/
dl.cnt-icon dd.btn-mail:before{
margin-left:20px;/*フリーダイヤル削除のためアイコン位置修正*/
}


}


/*■■■■■■■■■■■■■■画面幅800px以下の設定■■■■■■■■■■■■■■
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
/*メイン
---------------------------------------------------------------------------*/
/*メイン画像文字サイズ調整*/
#mainimg dl{
/*border: 1px solid pink;*/
top:6%;
left:24%;
}
/*※注意事項*/
#mainimg p{
left: 65%;
}

/*新プラン登場*/
#mainimg p#top-newplan{/*PC用文章非表示*/
display: none;
}
header p#smptop-newplan{/*Smp用再表示*/
display: block;	
}
p#smptop-newplan{
font-size: 0.8em;
width: 96%;
margin: 0 auto;
text-align: center;
font-weight: bold;
text-shadow: 1px 1px 1px #565656;
letter-spacing: -0.1em;
}
p#smptop-newplan a{
color: #ffff00;
text-decoration: none;
}

/*ヨコハマ引越しセンターのサービス
---------------------------------------------------------------------------*/

ul#whats{/*なぜ安いの？*/
width: auto;
}
ul#whats li{
width: 29%;
padding: 0 6px;
height: 400px;
}
/*引越し時の無料サービス
---------------------------------------------------------------------------*/
section#free p{/*画像サイズ調整*/
width: 30%;
}


/*ページ内３カ所　お問い合わせ メール、フリーダイヤル、LINE
---------------------------------------------------------------------------*/
dl.cnt-icon{
width: auto;
/*background-color: pink;*/
}
dl.cnt-icon dd{/*アイコンの並び設定*/
margin-right: 5px;
font-size: 0.7em;
}
/*LINE*/
dl.cnt-icon dd.btn-line:before{
margin-left:80px;/*フリーダイヤル削除のためアイコン位置修正*/
}




/*フッターナビ設定 ボーダーで囲い装飾
---------------------------------------------------------------------------*/
#footer-menu{
width: 100%;	/*幅*/
margin-top: 50px;
margin-bottom:0;
padding: 0;
}
#footer-menu ul{
width: 100%;	/*幅*/
background-color: #ebf8ff;/*水色*/
margin-left: 0;
overflow: hidden;
/*border: 1px solid red;*/
}



/*横並びのメニューの間に罫線（縦線）を引く*/
#footer-menu ul li {
/*position:static;解除*/
text-align: center;
float: left;
width: 50%;
height: 60px;
margin: 0;
padding: 14px 0;
border: 1px solid #1b1b8d;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
/*box-shadow: 0px 3px 15px rgba(0,0,0,0.2);*/
}

/*ご予約・お問い合わせボタン横幅調整*/
#footer-menu ul li.smp-ftm{
width: 100%;
}

#footer-menu ul li:hover{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2) inset;
}
#footer-menu li:before{
content: none;
}

/*BOOKOFFバナー設置のため高さ調整
footer{
margin-bottom: 20%;
}*/

}



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



/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*メイン画像文字サイズ調整*/
#mainimg dl{
/*border: 1px solid pink;*/
left:26% ;
top:7%;
font-size: 0.5em;/*全テキストの文字サイズ調整*/
}
/*※注意事項*/
#mainimg p{
font-size: 0.6em;
top:91%;
left:58% ;
}
/*ヨコハマ引越しセンターのサービス
---------------------------------------------------------------------------*/
/*なぜ安いの？それは。。。*/
ul#whats{/*ポイント1～3*/
width: 100％;
}
ul#whats li{
clear: both;
width: 100%;
height: auto;
padding-bottom: 5%;
margin-bottom: 10px;
}
li span.point{
margin-bottom: 15px;
}
/*新プラン登場 プランを使ってかしこくお引越し！
---------------------------------------------------------------------------*/
dl#newplan dt span{
display: block;
margin-left: -16px;

	}



/*引越し時の無料サービス-------------------------------------*/
section#free p{/*画像のフロート解除*/
clear: both;
width: auto;
margin: 0 auto;
/*border: 1px solid red;*/
}

/*ページ内３カ所　お問い合わせ メール、フリーダイヤル、LINE
---------------------------------------------------------------------------*/
dl.cnt-icon{
width: auto;
margin: 0;
/*background-color: pink;*/
}
dl.cnt-icon dt{
margin-bottom: 10px;
line-height: 1.3em;

}
dl.cnt-icon dd{/*アイコンの並び設定*/
clear: both;
width: 89%;
margin: 5px auto 10px 5%;
font-size: 0.9em;
}
dl.cnt-icon dd.btn-mail{
margin-left: 5%;
}

/*LINE*/
dl.cnt-icon dd.btn-line:before{
margin-left:10px;/*フリーダイヤル削除のためアイコン位置修正*/
}
/*mail*/
dl.cnt-icon dd.btn-mail:before{
margin-left:10px;/*フリーダイヤル削除のためアイコン位置修正*/
}



}



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



/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #inner {
width: auto;
margin: 0 auto;
/*border: 1px solid green;*/	

}
/*ロゴ領域の幅*/
header h1#logo {
width: 98%;/*幅*/
clear: both;
margin: 0 auto;
text-align: center;
/*background-color: #ccc;*/

}
header h1#logo img{/*ロゴ画像位置*/
width: 120px;
top:10px;
left: 35%;
/*border: 1px solid orange;*/
}
	/*ロゴ下リード*/
header h1#logo span{
width: 68%;
clear: both;
position: static;/*ポジションのクリア*/
left:0;
top:0;
margin: 60px auto 0 auto;
text-align: center;
/*border: 1px solid red;*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
#menubar-s {
	border-radius: 8px;/*角丸コーナー*/
	border: 1px solid #1b1b8d;/*紺色*/
	margin:10px 10px 10px 10px;
	background-color: 	#fafdef;/*薄黄緑色*/
	font-weight: bold;
		}
#menubar-s li {
	border-top: 1px solid #1b1b8d;/*紺色*/
	background: url(../images/arrow1.png) no-repeat 95% center/19px;
}
#menubar-s li:first-child {
	border-top: none;
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 8px;
}

#menubar-s li.bkicon-mail{
background: url(../images/icon_mail.png) no-repeat 95% center/25px;	/*メールフォーム*/
}
#menubar-s li.bkicon-tel{
background: url(../images/icon_tel.png) no-repeat 95% center/25px;	/*フリーダイヤル*/
}
#menubar-s li.bkicon-line{
background: url(../images/icon_line.png) no-repeat 95% center/25px;	/*LINE*/
}

/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 0px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #1b1b8d;	/*枠線の幅、線種、紺色*/
	border-top: none;
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #1b1b8d;	/*背景色　紺*/
	z-index: 200;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #fff;	/*枠線の幅、線種、白*/
	border-radius: 2px;	/*角丸のサイズ*/
	margin-bottom: 7px;	/*バー同士の余白*/
}
/*メイン画像
---------------------------------------------------------------------------*/
#mainimg {
	width: 100%;
	margin: -10px auto 0 auto;
	padding-bottom: 100px;
	background-color: #2ed2d3;/*エメラルドグリーン*/
}

/*しつこい勧誘お断り*/
header p#smp_nokanyu{
display: block;/*再表示*/
width: 96%;
font-size: 0.7em;
color: #1b1b8d;
margin: 0 auto;
text-align: center;
font-weight: bold;
/*border: 1px solid pink;*/
}
/*しつこい勧誘お断りアイコンの位置調整*/
div#no-kanyu img{
display: none;
}
/*メイン画像文字サイズ調整*/
#mainimg dl{
/*border: 1px solid pink;*/
width: 96%;
margin: 0 2%;
top:10%;
left:0;
font-size: 0.6em;/*全テキストの文字サイズ調整*/
}
#mainimg dl dd{
width: auto;
color: #fff;
font-size: 1.6em;
padding-left: 6%;
/*background-color: pink;*/

}
/*※注意事項*/
#mainimg p{
width: 100%;
font-size: 0.5em;
top:94%;
left: 0;

/*background-color: pink;*/
}

/*地域密着型！あなたの街のヨコハマ引越センター
---------------------------------------------------------------------------*/
h2:before {
  content:none;

}
/*ヨコハマ引越しセンターのサービス
---------------------------------------------------------------------------*/
p.whats_p{/*なぜ安いの？*/
font-size: 1.5em;
}
ul#whats li{
width: 96%;
/*border: 1px solid red;*/
}
/*引越しのご予約から当日までの流れ 
---------------------------------------------------------------------------*/
table#flow{
margin-top: 50px;
}
/*引越し時の無料サービス
---------------------------------------------------------------------------*/
section#free{
margin-top: 50px;
}
section#free ul{
width: 79%;
/*border: 1px solid red;*/
}


/*BookOFF・新プランバナー
---------------------------------------------------------------------------*/
button.fixed_banner {
	display: none;  /*PCではスマホ用のバナーは非表示にします */
	}

	button.fixed_banner_s img.fixed_banner_sp {
	width: 100%;
	display: inline-block; /* 消していたスマホ用のバナーを表示させます */
	/*position: absolute;←絶対位置*/
	left:0;
	margin-top: 22px;
	}
	.fixed_banner_s {
		display: inline-block;
		position: static;
		width: 98%;
		text-align: center;
		margin: 7% 1% 0 1%;
		font-weight: bold;
		font-size: 1.2em;
		color: #ff8c00;
		box-shadow: none;
	}
	.fixed_banner_s span{
		position: relative;
		padding: 0.6em;
		background: #FFE401;
		color: #05379A;
		box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);

			}
	.fixed_banner_s span:after {
		position: absolute;
		content: '';
		top: 100%;
		left: 30px;
		border: 15px solid transparent;
		border-top: 15px solid #FFE401;
		width: 0;
		height: 0;
	  }


	/*.fixed_banner_s {
		width: 100vw;
		text-align: center;
		margin: 0 auto;
		padding-bottom: 15%;←footerの高さ
		border: 8px solid #BF1A20;
		border-right: 16px solid #BF1A20;
		border-left: 16px solid #BF1A20;
		position: fixed;  追従させる為にfixedの値を記述します 
		z-index: 99999;  他の要素の下に隠れないように全面配置させます 
		bottom: 0; 下に固定
		
	}*/







/*料金のご案内
---------------------------------------------------------------------------*/
dl#cost dt{
line-height: 2.5em;
margin-top: 40px;
}
/*導入企業の声
---------------------------------------------------------------------------*/
ul.voice li{
height: auto;
}
/*埼玉お掃除便のご案内 
---------------------------------------------------------------------------*/
section#saitama-osoujibin div{
width:auto;
float: none;
margin-right: 0;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footer-menu ul li.smp-kkm{/*ヨコハマ引越センターとはの文字サイズ調整*/
font-size: 0.9em;
}


}






/*google map*/
.ggmap {
	width: auto;
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-bottom: 50px;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
