/* ==== 検索ボックス(start) ==== */
.top .mf_finder_container {
  padding: 0;
  margin: 0 auto;
  z-index: 100;
}

.top .mf_finder_container input,
button {
  margin: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  outline: none;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.top .search_component .mf_finder_searchBox {
  margin-bottom: 0;
  background-color: inherit;
}

.top .search_component .mf_finder_searchBox .mf_finder_searchBox_query_input {
  background-image: none !important;
  background-color: transparent;
  font-size: 15px;
  border: none;
  padding: 0.5rem 0 0.5rem 0.5rem;
}

@media screen and (max-width: 1281px) {
  .top .search_component .mf_finder_searchBox_items {
    display: none;
  }
}

@media screen and (min-width: 1281px) {
  .top .search_component .mf_finder_searchBox_items {
    border-bottom: 1px solid var(--vivid-orange);
  }
}

.top .search_component .mf_finder_searchBox_query_wrap {
  display: inline-block;
  width: 125px;
}

@media screen and (max-width: 1280px) {
  .top .search_component .mf_finder_searchBox_query_wrap {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .top .search_component .mf_finder_searchBox_query_wrap {
    width: 60px;
  }
}

.top .search_component .mf_finder_searchBox_items {
  display: block;
  padding: 0;
}

.top .search_component .mf_finder_searchBox_submit {
  padding: 0 0 0 6px;
  background-color: transparent;
}

.top .search_component .mf_finder_searchBox_submit span {
  display: none;
}

.top .search_component .mf_finder_searchBox_submit:before {
  content: "";
  display: block;
  width: 22px;
  height: 19px;
  margin-left: 0;
  font-size: 0;
  background: url(/common/img/layout/Union.png) left 0 no-repeat;
  background-size: 19px 19px;
}
/* ==== 検索ボックス(finish) ==== */

.breadcrumbs {
  padding-top: 120px !important;
}

@media screen and (min-width: 1325px) {
  .header {
    padding: 32px 72px;
  }
}

@media screen and (max-width: 1324px) {
  .header {
    padding: 32px 20px;
  }
}

@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header {
    padding: 20px 20px;
  }

  .breadcrumbs {
    padding-top: 90px !important;
  }
}

.header {
  position: fixed;
  height: auto;
  width: calc(100% - 0px);
  /* padding: 32px 72px; */
  z-index: 100;
  display: flex;
  flex-direction: column;
  /* 変更 */
  /* gap: 80px; */
  background-color: var(--graybackground);
  box-shadow: none;
}

.header.active .header-nav {
  display: none;
}

@media screen and (max-width: 600px) {
  .header {
    padding: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .header.active {
    height: 100%;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-wrapper {
  visibility: hidden;
  overflow: hidden;
}

.header-menu {
  padding-bottom: 0;
  margin-top: 0;
  height: 0;
  visibility: hidden;
}

.header-menu.active {
  margin-top: 50px;
  height: 400px;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .header-menu.active {
    margin-top: 40px;
    height: auto;
  }
}

@media screen and (min-width: 601px) {
  .header-menu.active {
    padding: 0px 50px;
  }
}

@media screen and (max-width: 600px) {
  .header-menu.active {
    margin-top: 40px;
  }

  .menu-wrapper::-webkit-scrollbar {
    width: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header.active .menu-wrapper {
    visibility: visible;
    overflow: scroll;
  }
}

/*スクロールバー非表示（Chrome・Safari）*/
.header.active .menu-wrapper::-webkit-scrollbar {
  display: none;
}
.header.active .menu-wrapper {
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

.header-content-lists {
  display: flex;
  gap: 1.8vw;
}

@media screen and (max-width: 1101px) {
  .header-content-lists {
    gap: 15px;
  }
}

.header-content {
  position: relative;
}

.header-content.active {
  border-bottom: 2px solid var(--vivid-orange);
}

.header-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.list-header {
  font-size: 15px;
  padding: 4px 0;
  display: block;
  color: var(--graybody) !important;
}

.list-header:hover {
  color: var(--vivid-orange) !important;
}

.header-button:hover {
  border-bottom: 2px solid var(--vivid-orange) !important;
  padding-bottom: 2px;
}

/* ↓ドロップダウンリスト↓ */

.dropdown-container {
  position: absolute;
  top: 34px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.04);
  gap: 16px;
  padding: 20px 28px;
}

.show {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
}

.menu-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grayline);
  color: var(--graybody) !important;
}

/* 変更（追加） */
.menu-list p {
  font-size: 15px;
}

.menu-list:hover p {
  color: var(--vivid-orange) !important;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

@media screen and (max-width: 1100px) {
  .header-right {
    gap: 24px;
  }
}

.icon-search {
  cursor: pointer;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hamburger {
  display: flex;
  width: 48px;
  height: 48px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 90px;
  background: var(--vivid-orange);
}

@media screen and (min-width: 1025px) {
  #hamburger-back {
    position: fixed;
    top: 562px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 灰色の背景色と透明度 */
    display: none;
    z-index: -1;
  }
}

.button {
  display: block;
}

.button.active {
  display: none;
}

/* 変更 */
@media screen and (max-width: 600px) {
  .header-nav,
  .icon-search {
    display: none;
  }
}

.header-content-lists a:hover {
  color: var(--vivid-orange);
  text-decoration-line: none;
}

.header-menu .list-container a {
  color: var(--graybody) !important;
}

.header-menu .list-container a:hover {
  color: var(--vivid-orange) !important;
}

.header-bottom {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 1025px) {
  .header-bottom {
    margin: auto;
    width: 915px;
  }
}

.header-bottom-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.header-bottom-items a {
  text-decoration: none;
  color: var(--graybody);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}

.header-bottom-items a:hover {
  color: var(--vivid-orange) !important;
  text-decoration: none;
}

/* 変更 */
@media screen and (max-width: 1024px) {
  .header-bottom {
    flex-direction: column-reverse;
  }
  .header-bottom-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
