.header-head {
  border-bottom: 1px solid #e6e6e6;
}
.header-head-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 40px;
}
.header-logo a {
  display: flex;
}
.header-search-box {
  margin: auto;
}
.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  cursor: pointer;
  transition: 0.3s;
}
.header-select-box {
  position: relative;
  padding: 0 0 0 16px;
}
.header-select-box::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 16px;
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #d9d9d9;
  border-bottom: 2px solid #d9d9d9;
  transform: translateY(-50%) rotate(45deg);
}
.header-select-box::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  display: block;
  width: 1px;
  background: #d9d9d9;
}
.header-select-box select {
  height: 38px;
  font-size: 14px;
  color: #848484;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  /* padding-right: 44px; */
  padding: 0 44px 0 15px;
  cursor: pointer;
}
.header-search-input {
  width: 220px;
  font-size: 14px;
  border: none;
  outline: none;
  background: transparent;
  margin: 0 40px 0 16px;
}
.header-search-input::placeholder {
  color: #a8adac;
}
.header-search-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #e6e6e6;
  transform: translateY(-50%);
  transition: 0.3s;
}
.header-search-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/upload/static/search.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
.header-operation {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 150;
}
.header-log {
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 20px 0 0;
}
.header-log::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1px;
  height: 20px;
  background: #d9d9d9;
  transform: translateY(-50%);
}
.header-log a {
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}
.header-log a::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/upload/static/account_circle.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 0 0 0 16px;
}
.header-log a span {
  background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
  transition: background 0.3s;
}
.header-hbg-btn {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.header-hbg-btn-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  background: #1c1b1f;
  margin: auto;
  transition: 0.3s;
}
.header-hbg-btn-line::before {
  content: "";
  position: absolute;
  top: -5px;
  display: block;
  width: 100%;
  height: 100%;
  background: #1c1b1f;
  transition: 0.3s;
}
.header-hbg-btn-line::after {
  content: "";
  position: absolute;
  top: 5px;
  display: block;
  width: 100%;
  height: 100%;
  background: #1c1b1f;
  transition: 0.3s;
}
.header-hbg-btn.is-open .header-hbg-btn-line {
  background: transparent;
}
.header-hbg-btn.is-open .header-hbg-btn-line::before {
  top: 0;
  transform: rotate(-45deg);
  background: #1c1b1f;
}
.header-hbg-btn.is-open .header-hbg-btn-line::after {
  top: 0;
  transform: rotate(45deg);
  background: #1c1b1f;
}

.header-main {
  position: absolute;
  top: 61px;
  right: 0;
  left: 0;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  z-index: 100;
}
.header-main.is-fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 40px;
}
.header-nav-li {
  display: flex;
  align-items: center;
}
.header-nav-item + .header-nav-item {
  margin: 0 0 0 20px;
}
.header-nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 70px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 8px;
}
.header-nav-item > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #282828;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s;
}
.header-nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7ac7ff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s;
}
.header-nav-txt {
  transition: 0.3s;
}
.header-nav-post-number {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.header-nav-post-number span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  border-radius: 2px;
  background: #282828;
  padding: 4px;
}
.header-corp-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #282828;
  border-radius: 4px;
  background: #fff;
  padding: 12px;
}
.hbg-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #fafafa;
  padding-right: 258px;
  z-index: 110;
}
.hbg-menu-wrap {
  background: #fff;
  padding: 0 40px;
}
.hbg-menu-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 864px;
  height: 100vh;
  margin: auto;
}
.hbg-menu-box {
  width: 100%;
}
.hbg-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 62px;
}
.hbg-logo {
  display: flex;
}
.hbg-close-btn {
  font-size: 14px;
  font-weight: 700;
  border: none;
  outline: none;
  background: transparent;
  text-decoration: underline;
}
.hbg-menu-account {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  margin: 0 0 24px;
}
.hbg-menu-log a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #282828;
  border-radius: 6px;
  padding: 12px;
}
.hbg-menu-member a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #282828;
  border-radius: 6px;
  padding: 12px;
}
.hbg-menu-main {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 32px;
  margin: 0 0 80px;
}
.hbg-menu-main-ttl {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
}
.hbg-menu-main-block {
  display: flex;
}
.hbg-menu-main-nav {
  border-right: 1px solid #e6e6e6;
  padding: 0 32px 0 0;
  margin: 0 32px;
}
.hbg-menu-main-nav-li {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.hbg-menu-main-nav-item {
  width: 170px;
}
.hbg-menu-main-nav-item a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.hbg-menu-main-nav-item a span {
  background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
  transition: background 0.3s;
}
.hbg-corp-btn {
  flex-shrink: 0;
  margin-top: auto;
}
.hbg-corp-btn a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  border: 1px solid #282828;
  border-radius: 4px;
  padding: 12px;
}
.hbg-menu-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.hbg-sns-li {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0;
}
.hbg-sns-li li::before {
  display: none;
  position: absolute;
  margin-top: -27px;
  font-size: 10px;
  color: #999;
  line-height: 1.8;
  word-break: keep-all;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 0 4px;
  transform: translateX(-50%);
  transition: .3s;
  white-space: nowrap;
}
.hbg-sns-li li:nth-of-type(1)::before {
  content: "X（Twitter）";
}
.hbg-sns-li li:nth-of-type(2)::before {
  content: "Facebook";
}
.hbg-sns-li li:nth-of-type(3)::before {
  content: "Instagram";
}
.hbg-sns-li li:nth-of-type(4)::before {
  content: "Youtube";
}
.hbg-sns-li li:nth-of-type(5)::before {
  content: "Line";
}
.hbg-sns-li li.mouse-in::before {
  display: inline-block;
  margin-left: 15px;
}
.hbg-sns-item a {
  display: inline-block;
}
.hbg-copyright small {
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .header-search-form:hover {
    background: #f0f0f0;
  }
  .header-search-form:hover .header-search-btn {
    background: #fff;
  }
  .header-log a:hover span {
    background-size: 100% 1px;
  }
  .header-hbg-btn:hover {
    background: #f0f0f0;
  }
  .header-nav-item > a.is-current::before {
    transform: scale(1, 1);
  }
  .header-nav-item > a:not(.is-current):hover::after {
    transform: scale(1, 1);
  }
  .header-nav-item > a:hover .header-nav-txt {
    transform: translateY(14px);
  }
  .header-nav-item > a:hover .header-nav-post-number {
    opacity: 1;
  }
  .header-corp-btn a:hover {
    background: #f0f0f0;
  }
  .hbg-menu-log a:hover {
    background: #f0f0f0;
  }
  .hbg-menu-member a:hover {
    background: #f0f0f0;
  }
  .hbg-menu-main-nav-item a:hover span {
    background-size: 100% 1px;
  }
  .hbg-corp-btn a:hover {
    background: #f0f0f0;
  }
  .hbg-sns-item a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1200px) {
  .header-head-inner {
    padding: 0 24px;
  }
  .hbg-menu {
    padding-right: 238px;
  }
  .hbg-menu-main {
    display: block;
  }
  .hbg-menu-main-ttl {
    margin: 0 0 24px;
  }
  .hbg-menu-main-nav {
    margin-left: 0;
  }
  .hbg-menu-main-nav-li {
    justify-content: flex-start;
    gap: 16px 24px;
  }
}

@media screen and (max-width: 767px) {
  .header-head {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 200;
  }
  .header-search-form {
    display: none;
  }
  .header-log {
    display: none;
  }
  .header-main {
    display: none;
  }
  .hbg-menu {
    top: 61px;
    height: calc(100vh - 61px);
    height: calc(100svh - 61px);
    background: #fff;
    padding: 0 0 40px;
    overflow-y: auto;
  }
  .hbg-menu-wrap {
    padding: 0 24px;
  }
  .hbg-menu-inner {
    display: block;
    max-width: inherit;
    height: auto;
  }
  .hbg-menu-head {
    display: none;
  }
  .hbg-menu-account {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: #fafafa;
    padding: 32px 24px;
    margin: 0 -24px 56px;
  }
  .hbg-menu-main {
    border: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .hbg-menu-main-ttl {
    margin: 0 0 40px;
  }
  .hbg-menu-main-block {
    display: block;
  }
  .hbg-menu-main-nav {
    border-right: none;
    padding: 0;
    margin: 0 0 56px;
  }
  .hbg-menu-main-nav-li {
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px 0;
  }
  .hbg-menu-main-nav-item {
    width: auto;
  }
  .hbg-menu-main-nav-item a {
    display: block;
    border-radius: 4px;
    background: #fafafa;
    padding: 16px;
  }
  .hbg-corp-btn a {
    display: inline-block;
  }
  .hbg-menu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


.search-result {
  position: absolute;
  z-index: 200;
  padding: 6px 0;
  margin-top: 35px;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  /*top: 90px;*/
  width: 420px;
  left: 50%;
  max-height: 240px;
  overflow-y: scroll;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, 65%);
    -ms-transform: translate(-50%, -50%);
}
.search-result__list {
  display: flex;
  flex-wrap: wrap;
  padding: 6px;
  background-color: #fff;
}
.search-result__list:hover {
  background-color: #f1f3f4;
  cursor: pointer;
}
.header-refined-search {
  margin-top: -5px;
  padding: 0 12px 0 6px;
}
.header-refined-search img {
  vertical-align: bottom;  
}
.main-wrap .search-block .search-result{
  display: none;
}
.main-wrap .search-block.focus .search-result{
  display: block;
}

.header-slider .slick-prev {
  left: -16px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.header-slider .slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #282828;
  border-left: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
}
.header-slider .slick-next {
  right: 4px;
  width: 32px;
  height: 32px;
  border: 1px solid #282828;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.header-slider .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
}
.header-slider .slick-disabled {
  display: none !important;
}
.header-slider .slick-list {
  overflow: hidden;
}

.header-slider .header-nav-item a > span:first-child {
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 770px; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-slider .header-nav-item > a {
  max-width: 180px;
  width: fit-content;
}
.header-slider .header-nav-li .slick-slide {
  margin: 0 20px 0 0;
}
.header-slider {
  max-width: calc(100% - 150px);
}
.header-slider .slick-slide .header-nav-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.header-slider .header-nav-item {
  width: fit-content;
}

.header-none-slider .header-nav-item a > span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}