@charset "UTF-8";
/* header
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

header .hdr_inner {
  display: flex;
  /*justify-content: space-between;*/
  border-bottom: solid 1px #ccc;
  background: #fff;
}

h1 {
	margin: 10px 20px;
	line-height: 1;
}

.drawer-list {
	list-style: none;
	padding: 0;
}

.drawer-list li {
	padding-top: 5px;
	display: inline-block;
}

.hdr_tel,
.drawer-hidden,
.drawer-list li:last-child {
	display: none;
}

.drawer-list img {
	width: 20px;
	height: 20px;
	margin-top: 3px;
	margin-right: 3px;
	vertical-align: top;
	width: 18px;
	height: 18px;
	vertical-align: sub;
}

.drawer-list span {
	position: relative;
	z-index: 100;
}

.drawer-list li a {
	box-sizing: border-box;
	color: #333;
	font-size: 80%;
	text-decoration: none;
	position: relative;
	padding: 28px 20px;
	letter-spacing: 1px;
}

.drawer-list li a::before {
	background: #f5f5f5;
	position: absolute;
	left: 50%;
	bottom: 0;
	content:"";
	width: 0;
	height: 100%;
	transition: 0.4s;
}

.drawer-list li a::after {
	background: #f5f5f5;
	position: absolute;
	right: 50%;
	bottom: 0;
	content:"";
	width: 0;
	height: 100%;
	transition: 0.4s;
}

.drawer-list li a:hover::before,
.drawer-list li a:hover::after { width: 50%;}

.drawer-list a.active { background: #f5f5f5;}

.hdr_telpc {
	margin: 15px 20px 0 0;
	line-height: 1;
	margin-left: auto;
}

.hdr_telpc img { width: 260px;}

.drawer-list li {	margin-left: -5px;}
.drawer-list li:last-child a { border-right: none;}
.drawer-list li a:hover { opacity: 0.8;}


@media screen and (max-width: 1280px) {
header {
  width: 100%;
  height: 68px;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 100;
  height: 65px;
}

header .hdr_inner {
	justify-content: space-between;
}

h1 {
	margin: 10px 0 0 15px;
	-webkit-margin-before: 15px;
}

.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 200;
  cursor: pointer;
  margin: 5px 5px 0 0;
}

.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background: #666;
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before { bottom: 10px;}
.drawer-open span:after { top: 10px;}

#drawer-check:checked ~ .drawer-open {
	box-shadow: none;
	transition: 0.3s;
	/*background: #ddd;*/
}

#drawer-check:checked ~ .drawer-open span {
  background: none;
  transform: rotate(-360deg);
}

#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 99;
  background: #fff;
  transition: .5s;
  opacity: 0;
}

#drawer-check:checked ~ .drawer-content {
  right: 0;
  background: rgba(255,255,255,0.9);
  opacity: 1;
  height: 100%;
  overflow: scroll;
}

.drawer-list {
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 70px 0 0;
}

.drawer-list li { padding-top: 0;}

.drawer-list li,
.drawer-list li:last-child { display: block;}

.drawer-list li a {
	box-sizing: border-box;
	display: block;
	color: #333;
	font-size: 100%;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	border-top: solid 1px #eee;
	background: #fff;
}

.drawer-list li:nth-last-child(2) a {
	border-bottom: solid 1px #eee;
}

.drawer-list li a:hover {
	background: #eee;
	transition: 0.5s;
}

.hdr_telpc { display: none;}

.hdr_tel {
	display: block;
	width: 70%;
	background: #fff;
	box-sizing: border-box;
	border: solid 1px #f00;
	margin: 20px auto;
	padding: 10px;
	text-align: center;
}

.hdr_tel p {
	font-size: 90%;
	margin: auto;
}

.hdr_tel img {
	display: block;
	margin: auto;
	width: 80%;
	height: auto;
}

.active { overflow: hidden;}
}

@media screen and (max-width: 1024px) {

.hdr_title { width: 50vw !important;}
}