/* header */
.header_title{
   margin-top: 10px;
   margin-left: 10px;
   font-size: 10px;
}

.header_main_b{
     display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 1100px;
    height: 90px;
    padding: 0;
    margin: 0;
}

/* log */
.log_b{
	margin-left: 14px;
}
.log_b img{
	 width: 200px;
}

.log_b img:hover{
	opacity: 0.8;
}


/* ヘッダーのボタン */
.header_function_b{
	display: flex;
}
.header_search_b{
	display: flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}
.header_search_b a{
	display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 15px;
	color: #333;
	width: 190px;
    height: 50px;
    font-weight: 400;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 18px;
    border: solid 2px #454545;
	margin-right: -25px;
}
.header_search_b a:hover {
	color: #E53742;
}

.header_search_b p{
	font-size: 16px;
	margin: 0;
}

.header_buttons_b{
	display: flex;
    gap: 28px;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
	margin-right: 35px;
}
.import_contacts_b{
	display: block;
}
.header_buttons_b li a{
	text-decoration: none;
	color: #333;
}
.header_buttons_b li a:hover {
	color: #E53742;
}

.header_buttons_b li p{
	font-size: 12px;
	margin: 0;
}


/* ログインと会員登録 */
.container_b{
	display: flex;
}

.container_a_b{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    text-align: center;
    gap: 10px;
    margin-right: 10px;
}

.login_b a,.member_b a{
	text-decoration: none;
	padding: 0 20px;
}
.login_b a{
    color: #E53742;
    border: solid 2px #E53742;
    height: 54px;
    width: 160px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 100vh;
}

.member_b a{
      background-color: #E53742;
    color: #FFF;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: solid 2px #E53742;
    height: 54px;
    width: 160px;
    border-radius: 100vh;
}
.login_b a:hover ,.member_b a:hover {
    opacity: 0.7;
}

