/* add */
#mainContent>section {
    overflow: hidden;
}



/* ヘッダー共通 */
#descriptionArea {
    position: relative;
    overflow: hidden;
}

#header .inner {
    position: relative;
    height: 110px;
}

#header {
    height: 190px;
}

@media only screen and (max-width: 767px) {
    #header {
        height: 60px;
    }
}

#header .inner .logo {
    width: 25%;
}

#header .inner nav>ul li {
	position: relative;
	height: auto;
	text-align: center;
	box-sizing: border-box;
	margin: 10px 26px;
}

#header .inner nav>ul li a {
	position: relative;
	display: block;
	height: 100%;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: medium;
	line-height: 1;
	padding: 0 1.2em 0 1em;
}

#header .inner nav>ul li a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

#header .inner nav>ul li a:before {
	position: absolute;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	top: 1px;
	right: 0px;
	background-color: #E52A01;
	border-radius: 50%;
}

#header .inner nav>ul li a:after {
	position: absolute;
	display: block;
	content: '';
	width: 0;
	height: 0;
	top: 3px;
	right: 2.5px;
	border: 4px solid transparent;
	border-left: 5px solid #fff;
	border-right: none;
}

/* 右上フォントサイズボタン */
#header .inner .fontSizeArea {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 3%;
    top: 24px;
    z-index: 10;
}

#header .inner .fontSizeArea span,
#header .inner .fontSizeArea li {
    font-size: medium;
}

/* スマホでは文字サイズアイコン変更なし */
@media only screen and (max-width: 767px) {
    #header .inner .fontSizeArea {
        display: none;
    }

    #header .inner .logo {
        width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #header h1 img,
    #header div.logo img {
        min-width: 200px;
    }

    #header:after {
        height: 60px;
    }

    #header .inner {
        height: 0px;
    }
}


/* パンくず文字サイズ */
#breadcrumb p {
    font-size: 15px;
}

/* スマホではパンくずを隠す */
@media only screen and (max-width: 767px) {
    #breadcrumb {
        display: none;
        position: absolute;
        top: -9999px;
    }

}



/* フッターエリア */
footer#cf #ftNav>ul li a {
    font-size: medium;
}

footer#cf p {
    font-size: medium;
}

footer#cf #copyright p {
    font-size: medium;
}

.current_size {
    color: red;
}