@charset "utf-8";
/* CSS Document */

/* =====================================
    pc-header
======================================= */
/* header */
#header {
    background-color: #fff;
    min-height: 146px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
    margin-bottom: 8px;
}
#header h1 {
  width: 960px;
  margin: 0 auto;
  padding: 18px 12px 10px;
  display: flex;
  justify-content: center;
}
#header h1 a {
  max-width: 343px;
  width: 100%;
  display: block;
  padding: 18px 12px 10px;
}
#header .gnavi__wrap {
  width: 960px;
  margin: 0 auto;
}
#header .gnavi__lists {
    display: flex;
}
#header .gnavi__list {
  width: 20%;
  height: 47px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all .3s;
}
#header .gnavi__list:hover {
  border-bottom: 3px solid #C30D23;
}
#header .gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #C30D23;
  font-size: 14px;
}
/* dropdown_menu
------------------------ */
#header .gnavi__list .dropdown__lists {
  display: none;/*デフォルトでは非表示の状態*/
  width: 100%;
  min-width: 240px;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1000;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}
#header .gnavi__list:hover .dropdown__lists {
  display: block;
}
.dropdown__list {
  background-color: #fff;
  transition: all .3s;
  position: relative;
}
#header .dropdown__list:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
}
#header .gnavi__list .dropdown__list a {
  color: #333;
  padding: 12px 16px 12px 35px;
  box-sizing: border-box;
  justify-content: flex-start;
  position: relative;
}
#header .gnavi__list .dropdown__list a:hover {
  color: #C30D23;
}
#header .gnavi__list .dropdown__list a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #A0A0A0;
  border-right: 1px solid #A0A0A0;
  transform: translateY(-50%) rotate(45deg);
}