@charset "UTF-8";
.global-header {
  background: #c80000;
}
.global-header__sitename {
  max-width: 250px;
  height: 100px;
  margin-right: 50px;
}
.global-header__nav {
  width: 100%;
}
.global-header__nav ul {
  justify-content: space-between;
}
.global-header__nav ul li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .container {
    padding-top: 60px;
  }
  .global-header__inner {
    display: block;
    padding: 0 20px;
  }
  .global-header__sitename {
    max-width: 200px;
    height: 60px;
    margin: 0;
  }
  .global-header__nav {
    width: 0;
  }
  .active .global-header__nav {
    width: 100%;
  }
  .header-search {
    width: 0;
    display: block;
    position: fixed;
    top: 100px;
    z-index: 50;
    right: 0;
    transition: .3s;
    padding: 0 20px;
  }
  .active .header-search {
    width: 100%;
  }
  .header-search::before {
    width: 0;
    content: "検索";
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
    position: absolute;
    top: 0px;
    overflow: hidden;
    transition: .3s;
  }
  .active .header-search::before {
    width: 100%;
  }
  .header-search::after {
    width: 0;
    content: "";
    position: absolute;
    top: 15px;
    right: 20px;
    height: 1px;
    background: #fff;
    transition: .3s;
  }
  .active .header-search::after {
    width: calc(100% - 90px);
  }
  .header-search input { 
    width: 0;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    transition: .3s;
    margin-top: 30px;
  }
  .active .header-search input {
    width: 100%;
    padding-left: 10px;
  }
  .header-search__btn {
    width: 0;
    transition: .3s;
  }
  .active .header-search__btn {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #c80000 url(../img/common/icn_search_02.png) center/contain no-repeat;
    background-size: 30px;
    border-radius: 0 10px 10px 0;
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
  }
  .global-header__nav ul::before {
    content: "特集";
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
    position: absolute;
    top: 140px;
  }
  .global-header__nav ul::after {
    width: calc(100% - 90px);
    content: "";
    position: absolute;
    top: 155px;
    right: 20px;
    height: 1px;
    background: #fff;
  }
  .global-header__nav ul {
    display: flex;
    background: #000;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    position: relative;
    padding: 150px 20px 0;
    margin-top: 60px;
  }
  .global-header__nav ul li {
    background: #fff;
    border-radius: 10px;
    margin: 20px 0;
    white-space: nowrap;
  }
  .global-header__nav ul li:nth-of-type(-n+3) {
    width: calc((100% - 20px) / 3);
  }
  .global-header__nav ul li:nth-of-type(n+4) {
    width: calc((100% - 10px) / 2);
  }
  .global-header__nav ul li:nth-of-type(2) {
    margin: 20px 10px;
  }
  .global-header__nav ul li:nth-of-type(4) {
    margin-right: 10px;
  }
  .global-header__nav ul li a {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c80000;
    font-size: 2.0rem;
    overflow: hidden;
  }
  .global-header__btn,
  .active .global-header__btn {
    top: 0;
    right: 0;
    background: inherit;
  }
  .active .global-header__btn {
    background: inherit;
  }
  .global-header__btn span,
  .global-header__btn span::before,
  .global-header__btn span::after {
    background: #fff;
  }
  .active .global-header__btn span::before,
  .active .global-header__btn span::after {
    background: #fff;
  }
}
/* .global-header {
  background: #c80000;
}
.global-header__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.global-header__sitename {
  width: 40%;
  margin: 0;
}
.global-header__sitename a {
  width: 100%;
  max-width: 250px;
  height: 100px;
  margin: 0 auto;
}
.global-header__nav {
  width: 100%;
  margin-left: 0;
}
.global-header__nav ul {
  height: 100%;
  max-width: 1000px;
  justify-content: space-around;
  margin: 0 auto;
}
.global-header__nav ul li {
  width: 100%;
  display: flex;
  align-items: center;
}
.global-header__nav ul li:nth-of-type(7) {
  display: none;
}
.global-header__nav ul li a {
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0;
}
.global-header__sp__menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .global-header__sitename a {
    max-width: 250px;
    height: 40px;
    margin: 0;
  }
  .global-header__nav {
    display: none;
  }
  .global-header__sp {
    top: 5px;
    font-size: 1rem;
    border-top: 5px solid #fff;
    padding-top: 20px;
    margin: 10px 15px;
  }
  .global-header__sp::before,
  .global-header__sp::after {
    border-top: 5px solid #fff;
  }
  .global-header__sp .menu {
    padding-top: 2px;
  }
  .global-header__sp .close,
  .active .global-header__sp .menu {
    display: none;
  }
  .global-header__sp .menu,
  .active .global-header__sp .close {
    display: block;
  }
  .active .global-header__sp {
    border: none;
    padding: 28px;
    margin: 0;
  }
  .active .global-header__sp .close {
    color: #fff;
    text-indent: -17px;
    line-height: 38px;
  }
  .active .global-header__sp::before,
  .active .global-header__sp::after {
    top: 17px;
    left: 2px;
    transform: rotate(45deg);
    border-top: 5px solid #fff;
  }
  .active .global-header__sp::after {
    transform: rotate(-45deg);
    top: 17px;
    left: 19px;
    border-bottom: none;
  }
  .global-header__sp__menu {
    display: none;
    color: #fff;
    background: #000;
    padding: 0 30px 75px;
  }
  .global-header__sp__menu ul {
    display: flex;
    justify-content: space-between;
  }
  .global-header__sp__menu ul:first-of-type li { 
    width: calc((100% - 30px) / 3);
  }
  .global-header__sp__menu ul:last-of-type li { 
    width: calc((100% - 15px) / 2);
  }
  .global-header__sp__menu ul li a {
    width: 100%;
    display: block;
    text-align: center;
    color: #c80000;
    font-weight: bold;
    line-height: 90px;
    background: #fff;
    border-radius: 10px;
  }
  .active .global-header__sp__menu {
    display: block;
  }
  .active .global-header__sptext {
    position: relative;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 40px 20px 10px 0;
  }
  .active .global-header__sptext::after {
    content: "";
    width: calc(100% - 6rem);
    position: absolute;
    top: 56px;
    right: 0;
    border-top: 1px solid #fff;
  }
  .active .global-header__sptext__rank::after {
    width: calc(100% - 12rem);
  }
  .header-search {
    display: block;
  }
  .header-search input {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background: #fff;
    padding-left: 10px;
  }
  .header-search__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #c80000 url(../img/bdrg2021/search.png) center center no-repeat;
    background-size: 30px;
    border-radius: 0 10px 10px 0;
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
  }
  .header-search__form {
    position: relative;
  }
} */