@charset "utf-8";

/* ヘッダースタイル
----------------------------------------------------------- */
header {
	position: relative;
	height: 142px;
	padding: 40px 0 0;
	box-sizing: border-box;
}


/*----- #header_logo -----*/

#header_logo {
	float: left;
	height: 60px;
	padding: 18px 0 0 10px;
	box-sizing: border-box;
}

#header_logo a {
	display: block;
	float: left;
}

#header_logo a:first-child {
	width: 94px;
	height: 25px;
	margin: 0 14px 0 0;
	background: url(/shared/svg/logo.svg) 0 0 no-repeat;
	background-size: 94px 25px;
}

#header_logo a:first-child img {
	display: none;
}

#header_logo .btn_home {
	position: relative;
	display: inline-block;
	width: 65px;
	height: 25px;
	padding: 0 0 0 12px;
	font-size: 1.1rem;
	text-align: center;
	line-height: 25px;
}

#header_logo .btn_home::before {
	position: absolute;
	top: 50%;
	left: 8px;
	display: block;
	content: "";
	width: 12px;
	height: 10px;
	margin: -5px 0 0;
	border: none;
	background: url(/shared/svg/icon_home.svg) 0 0 no-repeat;
	background-size: 12px 10px;
}


/*----- #header_nav01 -----*/

#header_nav01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #c8ccd0;
}

#header_nav01 ul {
	display: table;
	width: 100%;
	border-bottom: 2px solid #326eb4;
}

#header_nav01 ul li {
	display: table-cell;
	font-size: 1.1rem;
	line-height: 38px;
}

#header_nav01 ul li:nth-child(n+2) {
	border-left: 1px solid #c8ccd0;
}

#header_nav01 ul li a {
	display: block;
	text-align:center;
}

#header_nav01 ul li a::before {
	position: relative;
	top: -1px;
	display: inline-block;
	content: "";
	margin: 0 4px 0 0;
	border: 3px solid transparent;
	border-left: 4px solid #666;
}

#header_nav01 ul li a.anchor::before {
	top: -2px;
	border: 3px solid transparent;
	border-top: 4px solid #666;
}


/*----- #btn_menu / #.btn_search -----*/

#btn_menu,
#btn_search {
	position: relative;
	top: 0;
	float: right;
	width: 60px;
	height: 62px;
	padding: 38px 0 0;
	border-left: 1px solid #c8ccd0;
	border-top: 1px solid #c8ccd0;
	box-sizing: border-box;
	font-size: 1.0rem;
	text-align: center;
	z-index: 2;
}

#btn_menu {
	background: url(/shared/img/icon_menu_sp.png) center 17px no-repeat;
	background-size: 20px 15px;
}

#btn_search {
	background: url(/shared/img/icon_search_sp.png) center 15px no-repeat;
	background-size: 18px 18px;
}

#btn_menu.open,
#btn_search.open {
	background: url(/shared/img/icon_close_02_sp.png) center 17px no-repeat #326eb4;
	background-size: 15px 15px;
	border-top: 1px solid #326eb4;
	color: #fff;
}


/*----- #search_box -----*/

#search_box {
	display: none;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	padding: 20px 10px;
	background: #326eb4;
	box-sizing: border-box;
	z-index: 5;
}

#search_box.open {
	display: block;
}

#search_box input[type="text"] {
	float: left;
	width: 78%;
	height: 40px;
	padding: 0 0 0 15px;
	border: 1px solid #d8dce0;
	border-right: none;
	border-radius: 20px 0 0 20px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

#search_box .btn {
	float: left;
	width: 22%;
	height: 40px;
	padding: 0;
	border-radius: 0 20px 20px 0;
}

#search_box .btn::before {
	display: none;
}

#search_box .btn i {
	margin: 0 4px 0 0;
	color: #326eb4;
	font-size: 1.5rem;
}


/*----- #header_nav02 -----*/

#header_nav02 {
	clear: both;
	width: 100%;
	height: 42px;
	border-top: 1px solid #c8ccd0;
	box-sizing: border-box;
	line-height: 42px;
}

#header_nav02 ul {
	display: table;
	width: 100%;
}

#header_nav02 ul li {
	display: table-cell;
	text-align:center;
}

#header_nav02 ul li a {
	display: block;
}

#header_nav02 ul li a span {
	position: relative;
	padding: 0 0 0 18px;
}

#header_nav02 ul li a span::before,
#header_nav02 ul li a span::after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: "";
}

#header_nav02 ul li a span::before {
	width: 14px;
	height: 14px;
	margin: -7px 0 0;
	background: #326eb4;
	border-radius: 7px;
}

#header_nav02 ul li a span::after {
	left: 6px;
	margin: -3px 0 0;
	border: 3px solid transparent;
	border-left: 4px solid #fff;
}


/* フォーム用ヘッダースタイル
----------------------------------------------------------- */
.form header {
	height: auto;
	padding: 0;
	border-top: 2px solid #326eb4;
	border-bottom: 1px solid #c8ccd0;
}

.form #header_logo {
	float: none;
	height: 60px;
	padding: 18px 0 0 10px;
	border-top: 1px solid #c8ccd0;
}



/* noscript
----------------------------------------------------------- */
.noscript {
	padding: 15px 10px;
	background: #326eb4;
}

.noscript p {
	color: #fff;
	font-weight: bold;
	line-height: 1.6;
}

.noscript p:first-child {
	margin: 0 0 10px;
	font-size: 1.6rem;
}



/* /en/index.html
----------------------------------------------------------- */
#en_index header {
	height: 103px;
	border-bottom: 1px solid #c8ccd0;
}

#en_index #header_nav01 ul li {
	padding: 0 10px;
}

#en_index #header_nav01 ul li a {
	text-align: left;
}