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

html { font-size: 62.5%; }   /*   rem    */
body{
	font-family: "メイリオ", sans-serif, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 游ゴシック体, 'Yu Gothic', YuGothic;
	font-size: 1.4rem;
	line-height: 1.5;
	}

*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* =======================================
    font
======================================= */
a{
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	line-height: 1.2;
	}
input{
	font-family: "メイリオ", sans-serif, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 游ゴシック体, 'Yu Gothic', YuGothic;
	}
	
h2.bg-line{
	text-align: center;
	background-image: url(../img/bg-line.jpg);
	background-position: left center;
	background-repeat: repeat-x;
	}
h2.bg-line > span{
	padding: 0 2rem;
	}
h2.bg-line{
	font-size: 3.2rem;
	margin-bottom: 4rem;
	}
h2.bg-line span img,
h2.bg-line span span{
	display: inline-block;
	vertical-align: middle;
	}
h2.bg-line span img{
	margin-right: 1rem;
	}
p.mb10{
	margin-bottom: 1rem;
	}
p.mb15{
	margin-bottom: 1.5rem;
	}
p.mb30{
	margin-bottom: 3rem;
	}
p.mb60{
	margin-bottom: 6rem;
	}
.fs16{
	font-size: 1.6rem;
	}
.fs20{
	font-size: 2rem;
	}
p.lh120{
	line-height: 1.2;
	}
.red{
	color: #900;
	}
.info-detail p{
	margin-bottom: 1rem;
}
/* =======================================
    layout
======================================= */
.container{
	display: block;
	width: 100%;
	max-width: 1047px;
	margin: 0 auto;
	padding: 0 10px;
	}
table{
	border-collapse: collapse;
	}

/* =======================================
    header
======================================= */
.header{
	background-color: #ffbf00;
	}
.header .container{
	position: relative;
	}
.header h1{
	position: absolute;
	top: 5px;
	right: 0;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: right;
	}
.header-inner{
	display: -webkit-flex;
    display: flex;
	-webkit-align-items: center;
    align-items: center;
	margin-bottom: 1rem;
	}
.logo img{
		display: block;
		padding: 1rem 0;
	}
.logo span{
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	color: #fff;
	}
a.btn-contact{
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: center;
    justify-content: center;
	-webkit-align-items: center;
    align-items: center;
	width: 150px;
	height: 50px;
	color: #fff;
	background-color: #096BB7;
	border-radius: 6px;
	margin-top: 30px;
	margin-left: auto;
	}
.btn-contact span{
	font-size: 1.8rem;
	font-weight: 600;
	padding-left: 10px;
	}
.header button{
	display: none;
	}
.drawer-nav > span{
	display: none;
	}
.drawer-menu{
	display: -webkit-flex;
    	display: flex;
	-webkit-justify-content: space-between;
    	justify-content: space-between;
	list-style-type: none;
	padding-bottom: 1rem;
	}
.drawer-menu li.sp{
	display: none;
	}
.drawer-menu li a{
	display: block;
	font-size: 1.6rem;
	color: #000;
	padding: 0.5rem 0;
	position:relative;
	}
.drawer-menu li a::after{
	position: absolute; /*親要素であるaタグを基準に位置を指定*/
	left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
	content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
	width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
	height: 1px;        /*アンダーラインの高さ（太さ）*/
	background: #000000;/*アンダーラインの色*/
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
}

.drawer-menu li a:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.drawer-menu li a img{
	display: none;
	}
	
/* =======================================
    footer
======================================= */
.footer{
	background-color: #FFBF00;
	padding: 3rem 0 0 0;
	}
.footer .container{
	display: -webkit-flex;
    display: flex;
	}
.footer ul{
	-webkit-flex-grow: 1;
    flex-grow: 1;
	display: -webkit-flex;
    display: flex;
	flex-wrap: -webkit-wrap;
	flex-wrap: wrap;
	list-style-type: none;
	}
.footer li{
	margin: 0 2rem 3rem 2rem;
	}
.footer li a{
	color: #000;
	}
.logo-footer{
	display: block;
	width: 50px;
	}
.footer small{
	display: block;
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	background-color: #FF7F00;
	padding: 0.4rem 0;
	}

/* =======================================
    私の町のごみカレンダー　区名リスト
======================================= */
.lst-area ul{
	list-style-type: none;
	}
.lst-area li{
	border-bottom: solid 2px #ccc;
	}
.lst-area li a{
	display: block;
	font-size: 1.6rem;
	line-height: 4rem;
	color: #000;
	background-image: url(../img/icon-arrow.png);
	background-position: left 1.6rem center;
	background-repeat: no-repeat;
	padding: 0 1rem 0 3.5rem;
	}
.lst-area li a:hover{
	background-color: #f3f3f3;
}