#site_header {
  width: 100%;
  padding: 10px 24px;
  background: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#site_id {
  margin: 0;
}

#site_id a.site-logo {
  display: inline-block;
  width: 200px;
  height: 88px;
  background-image: url('../images/site_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  text-decoration: none;
}

.site-logo .sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

#site_id a {
  color: inherit;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-tel img {
  width: 240px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.header-line-btn,
.header-mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
}

.header-line-btn {
  background: #06c755;
  color: #fff;
}

.header-mail-btn {
  background: #111;
  color: #fff;
}

#site_navi {
	border-top: 0.5px #ccc solid;
    padding-top: 10px;}


#site_navi ol {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

#site_navi a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  display: block;
  padding: 5px 0;
  text-align: center;
  flex: 1;
  border-bottom: 2px solid transparent;
}

#site_navi a:hover {
  border-bottom-color: #111;
}

@media screen and (max-width:700px){
	#site_id {width:100%;text-align: center;}
	#site_id a.site-logo {
	  display: block;
	  width: 150px;
	  height: 50px;
	  margin: 0 auto;
	 }
	.header-links {display:none;}	
	#site_navi {display:none;}
	#site_navi ol {display: block;}
}