/*======================================
header
======================================*/
/*  */
.l-header {
  width: 250px;
  padding-top: 30px;
  background: #fff;
  border-right: 1px solid #eee;
}
.l-header h1 {
  width: 90%;
  margin: 0 auto 30px;
  text-align: center;
}
.l-header h1 .logo p {
  font-size: 100%;
  color: #555555;
  margin: 13px 0 0;
}
.l-header h1 .logo img {
  width: 93px;
}

.header {
  width: 100%;
}

.header-link {
  display: block;
  padding-right: 20px;
  transition: 0.3s;
}

.header-link.no-link {
  background: #eee;
  pointer-events: none;
}

.header-link.no-link .header-link_menu {
  color: #757575;
}

.header-link.no-link .header-link_menu::after {
  border-top: solid 2px #757575;
  border-right: solid 2px #757575;
}

.header-link.no-link:hover {
  background: #eee;
}

.header-link.no-link:hover .header-link_menu {
  color: #757575;
}

.header-link.no-link:hover .header-link_menu::after {
  border-top: solid 2px #757575;
  border-right: solid 2px #757575;
}

.header-link:hover, .header-link.active {
  background: #eeb2cc;
}

.header-link:hover .header-link_menu, .header-link.active .header-link_menu {
  color: #fff;
}

.header-link:hover .header-link_menu::after, .header-link.active .header-link_menu::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.header-link_menu {
  display: block;
  line-height: 1.375;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px dotted #aaa;
}

.header-link_menu::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #b95a83;
  border-right: solid 2px #b95a83;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  transition: 0.3s;
}

/*======================================
footer
======================================*/
.footer-main {
  background: #fbeaf2;
  padding: 40px 0;
}

.footer-flexbox {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.footer-flexbox .flex-item {
  width: 48%;
}
.footer-flexbox .footer-tit {
  background: #eeb2cc;
  color: #fff;
  padding: 6px 20px;
  margin: 0 0 15px;
  text-align: center;
  border-radius: 10px 0 10px 0;
}
.footer-flexbox address {
  font-style: normal;
}
.footer-flexbox address .name {
  font-size: 18px;
  line-height: 1;
  margin: 0 0 8px;
}
.footer-flexbox address .name img {
  width: 20px;
  vertical-align: top;
}
.footer-flexbox address .add {
  font-size: 14px;
}

.footer-btnbox {
  margin: 15px 0 0;
}

small {
  background: #b95a83;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  padding: 10px 0;
  color: #fff;
}