@charset "Shift_JIS";

/* ============================================================================

  グローバルヘッダー

============================================================================== */

.ContentWidth {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  min-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  align-items: center;
}
.CorporateHeader {
  display: block;
  background-color: #F8F8F8;
  height: 45px;
  position: relative;
  z-index: 100;
}
.CorporateHeaderContent {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.CorporateLogo {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  min-width: 160px;
  width: 160px
}
.CorporateLogo img {
  width: 100%;
}
.CorporateNav {
  height: 45px;
}
.CorporateNavList {
  display: flex;
  height: 100%
}
.CorporateNavListItem:not(:last-child) {
  margin-right: 26px
}
.CorporateNavListItem__btn {
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 40px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.CorporateNavListItem__btn::after {
  background-color: #d64141;
  bottom: 0;
  content: '';
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transition: height .4s;
  width: 100%
}
.CorporateNavListItem__btn:hover::after {
  height: 3px;
  transition: height .2s
}
.CorporateNavListItem.-current .CorporateNavListItem__btn::after {
  height: 3px
}

/* ============================================================================
養生薬湯
============================================================================== */

body.yojoyakuto .CorporateLogo {
  height: 35px;
  min-width: 150px;
  width: 150px;
}
body.yojoyakuto .CorporateHeader {
  background-color: #f0f0e1;
  height: 35px;
}
body.yojoyakuto .CorporateNav {
  height: 35px;
}
body.yojoyakuto .CorporateNavListItem__btn {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 2px;
}
body.yojoyakuto .CorporateNavListItem__btn::after {
  background-color: #C4C701;
}
body.yojoyakuto .CorporateNavListItem__btn:hover {
  text-decoration: none;
}
body.yojoyakuto .CorporateNavListItem__btn:hover::after {
  height: 4px;
  transition: height .2s
}
body.yojoyakuto .CorporateNavListItem.-current .CorporateNavListItem__btn::after {
  height: 4px
}

@media screen and (max-width: 959px) {
  body.yojoyakuto .CorporateHeader {
    display: none;
  }
}