@charset "UTF-8";

.dropdown_gnav_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  /*background-color: #b7b0ac;*/
  background-color: #f2f2f2;
  transform: translateX(100%);
  transition: all 0.4s;
  filter: saturate(1.5);
  overflow-y: auto;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*kore*/
@media screen and (max-width: 899px) {
  .dropdown_gnav_menu {
    width: 100%;
    background-color: #f2f2f2;
  }
}

.humNavMenuIsOpen {
  transform: translateX(0);
}

@media screen and (min-width: 900px) {
  .pc_contents_gnav_center_position {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.gnav_nav_menu_title {
  display: block;
  width: 100%;
  height: 91px;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.header-scroll {
  overflow-y: auto;
}

.gnav_menu_list {
  width: 100%;
  /*overflow-y: auto;*/
  /*height: calc(100svh - 91px);*/
  height: calc(100svh - 91px - 105px);
}

.gnav_menu_item {
  /*border-bottom: 1px solid #5b8974;*/
  border-top: 1px solid #000;
  color: #000;
}

.gnav_menu_item_block {
  /*border-bottom: 1px solid #5b8974;*/
  border-top: 1px solid #000;
  color: #000;
}

.gnav_menu_item_label,
.gnav_menu_item_direct {
  font-size: 16px;
  display: flex;
  position: relative;
}

.gnav_menu_item_label {
  padding: 20px 30px;
}

.gnav_direct_menu_link {
  display: block;
  width: 100%;
  padding: 20px 30px;
  transition: opacity .4s;
}

.gnav_direct_menu_link:hover {
  text-decoration: underline;
  opacity: .7;
}

.gnav_menu_item_label::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 7%;
  width: 12px;
  /* 矢印のサイズ調整 */
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.gnav_menu_item_label::after {
  content: none;
  /* `::after` は不要なので削除 */
}


@media screen and (max-width: 899px) {
  .sns-item-img {
    display: inline-block;
  }
}

@media screen and (min-width: 899px) {
  .sns-item-img {
    display: inline-block;
    margin-right: 15px;
  }
}

.gnav_menu_item_label.is-open::before {
  transform: translateY(-50%) rotate(-135deg);
}

.gnav_child_menu {
  transition: all 0.3s;
  overflow: hidden;
  max-height: 0;
}

.gnav_child_menu.is-open {
  max-height: var(--max-height);
  margin-bottom: 20px;
}

.gnav_child_menu_link {
  display: block;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 10px;
  padding-left: 60px;
  font-size: 13px;
  transition: all .4s;
}

.gnav_child_menu_link:hover {
  text-decoration: underline;
  opacity: .7;
}

/* ハンバーガーメニューボタンパーツ */
.hum_btn {
  position: relative;
  top: 0;
  right: 0;
  z-index: 30;
  height: 37px;
  width: 37px;
  display: block;
  margin-left: 15px;

  /*追加*/
  position: relative;
  top: 10px;
  right: 0;
}

@media (max-width:899px) {
  .hum_btn {
    top: 0;
  }
}

.hum_btn::after {
  content: "menu";
  display: flex;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--base-color);
  letter-spacing: .7px;
  font-weight: 500;
}

.hum_btn.buttonIsOpen::after {
  content: "";
  left: 1px;
  bottom: -3px;
  color: #fff;
}

.hum_btn_line_top {
  position: absolute;
  top: 5px;
  left: 0;
  width: 34px;
  height: 2px;
  background-color: var(--base-color);
  transition: all 0.3s;
}

/*kore*/
.buttonIsOpen .hum_btn_line_top {
  transform: translateY(13.5px) rotate(45deg);
  top: -1px;
  background-color: #000;
}

.hum_btn_line_bottom {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 34px;
  height: 2px;
  background-color: var(--base-color);
  transition: all 0.3s;
}

/*kore*/
.buttonIsOpen .hum_btn_line_bottom {
  transform: translateY(-13.5px) rotate(-45deg);
  bottom: 8px;
  background-color: #000;
}

.hum_btn_000::after {
  /*color:#000!important;*/
  color: #1a1a1a;
}

.hum_btn_000_green_topBottom {
  background-color: var(--primary);
}

.hum_btn_000_green::after {
  color: var(--primary);
}

/*kore*/
.hum_btn_000_green.buttonIsOpen .hum_btn_line_top {
  background-color: #000;
}

/* メニュー展開時、背景オーバーレイ */
.overlay_component {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.3s;
}

.overlayIsOpen {
  visibility: visible;
  opacity: 1;
}

/* メニュー展開時、背景固定 */
.isScrollAllowed {
  overflow: clip
}

/*kore*/
.pc_contents_gnav_wrap {
  margin: 0 auto;
  padding: 0 1%;
  display: flex;
  justify-content: space-between;

  max-width: 1140px;
}

.sp_contents_gnav_wrap {
  display: none;
}

@media screen and (max-width: 899px) {
  .sp_contents_gnav_wrap {
    display: block;
  }

  .pc_contents_gnav_wrap {
    display: none;
  }
}

/* PC版　グローバルナビゲーション */
.logo_img.hum_menu_logo_img {
  width: 205px;
  margin-left: 20px;
}

.gnav_nav_menu img {
  filter: invert(100%);
}

@media screen and (max-width: 1024px) {
  .logo_img.hum_menu_logo_img {
    /*width: 160px;*/
    width: 200px;
    margin-left: 0;
    filter: invert(0);
  }
}

.header_gnav_pc_container {
  display: flex;
  margin-top: 20px;
  color: #000;
}

.header_gnav_contents {
  position: relative;
  /*padding: 20px 20px;*/
  padding: 20px 20px 0;
  flex-grow: 1;
}

.header_nav_link {
  font-size: 12px;
  position: relative;
  /*color: #000;*/
  color: #3e3a39;
}

/*kore*/
.header_nav_item {
  /*margin-bottom: 28px;*/
  /*margin-bottom:20px;*/
  width: fit-content;
}

.header_nav_item:last-child {
  margin-bottom: 0;
}

.header_nav_item>a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  ;
}

.header_nav_item>a>img {
  height: 14px;
  width: auto;
  padding-left: 20px;
  margin: auto 0;
  /*filter: invert(23%) sepia(20%) saturate(91%) hue-rotate(325deg) brightness(91%) contrast(94%);*/
}

.header_nav_item>a:hover {
  text-decoration: underline;
}

.header_nav_list {
  margin-bottom: 23px;
}

.header_nav_list li {
  line-height: 1.5rem;
}

.header_nav_list li:not(:first-child) a::before {
  content: "―\00a0\00a0";
  padding-left: 40px;
}

.header-sns {
  padding: 0 1% 0 calc(1% + 20px);
  font-weight: 300;
  width: 100%;
  margin-top: 50px;
  max-width: calc(1219.171px + calc(2% + 20px));
  max-width: 990px;
}

.header-sns .sns-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
  border-top: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  padding: 30px 0;
}

.header-sns .sns-block .sns-item {
  display: flex;
  align-items: center;
}

.header-sns .sns-block .sns-item:hover {
  text-decoration: underline;
}

.header-sns .sns-block .sns-item .sns-item-text {
  font-size: 13px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.header-sns .sns-block .sns-item .sns-item-text>img {
  height: 14px;
  width: auto;
  padding-left: 10px;
  margin: auto 0;
}

@media (max-width:899px) {
  .header .header-sns {
    display: none;
  }
}

.pc_contents_gnav_wrap .logo_and_gnav-container {
  flex: 2;
}

/*kore*/
.pc_contents_gnav_wrap .company_info_contents {
  color: #fff;
  /*padding: 40px;*/
  padding: 40px 25px;
  margin: 0 0 0 0px;
  /*flex: 1;*/

  /*display:grid; 追加*/
  font-size: 12px;
}

.company_info_title {
  /*color:#251714;*/
  color: #3e3a39;
  display: block;
  text-align: center;
  letter-spacing: 2px;
}

.company_info_title.en {
  font-size: 23px;
  margin-bottom: 5px;
}

.company_info_title.ja {
  font-size: 14px;
  letter-spacing: 1px;
}

.company_info_title_group {
  margin-bottom: 30px;
}

/*kore*/
.pc_contents_gnav_wrap .company_info_lead {
  letter-spacing: .2px;
  line-height: 1.7;
  /*color:#251714;*/
  color: #3e3a39;
  /*margin-bottom: 40px;*/
  margin-bottom: 15px;
  text-align: justify;
}

/*kore*/
.pc_contents_gnav_wrap .company_info_tel {
  /*font-size: clamp(1.875rem, 1.544rem + 0.59vw, 2.25rem);
  font-size:clamp(31px, 1.544rem + 0.59vw, 34px);*/
  /*font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'sans-serif';*/
  /*color:#251714;*/
  color: #3e3a39;
  padding: 0 5px;
  font-weight: 350;
}

.pc_contents_gnav_wrap .business_hours {
  /*font-size: 16px;*/
  font-size: 12px;
  margin-top: 0;
  /*letter-spacing: .4px;*/
  letter-spacing: 0;
  /*font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'sans-serif';*/
  /*color:#251714;*/
  color: #3e3a39;
  padding: 0 5px;
  font-weight: 350;
}

.ham_menu_contact_btn_set-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

/*kore*/
.ham_menu_contact_btn {
  display: block;
  border: 2px solid #3e3a39;
  background-color: #fff;
  padding: 20px;
  font-size: 14px;
  font-weight: 350;
  text-align: center;
  letter-spacing: 2px;
  transition: all .2s;
}

.header_nav_list.primary .header_nav_item {
  /*margin-bottom: 1.7rem;*/
  margin-bottom: 15px;
  /*font-size: 15px;*/
  font-size: 12px;
  border: 1px solid #000;
  padding-left: 0;
  background-color: #fff;
  max-width: 250px;
  color: #000;
}

.header_nav_list.primary .header_nav_item:last-child {
  margin-bottom: 0;
}

.header_nav_list .header_nav_item a {
  display: flex;
  align-items: center;
  font-weight: 400;
}

.header_nav_list .header_nav_item a>img {
  height: 14px;
  width: auto;
  padding-left: 10px;
  margin: auto 0;
}

.header_nav_list.primary .header_nav_item a {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: clamp(0.625rem, -1.81rem + 5.75vw, 1.8rem);
  padding-right: 10px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

.header_nav_list.primary .header_nav_item a:hover {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: clamp(0.625rem, -1.81rem + 5.75vw, 1.8rem);
  padding-right: 10px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  color: #fff;

}

/* 画像も反転させる */
.header_nav_list.primary .header_nav_item a:hover img {
  filter: invert(1);
  transition: filter 0.3s;
}

.ham_menu_contact_btn:hover {
  border: 2px solid #3e3a39;
  background: transparent;
  color: #3e3a39;
}

/*.ham_menu_contact_btn_wrap:first-child {
  margin-bottom: 20px;
}*/

.header_nav_link::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  /*background: #000;*/
  background: #3e3a39;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  margin-top: 4px;
}

.header_nav_link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/* フローティングメニュー */
@media screen and (min-width: 600px) {
  .floating_menu {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .floating_menu {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 8;
    width: 100%;
    opacity: 0;
    transition: all 0.4s ease-in;
    visibility: hidden;
  }

  .floating_menu.fadein {
    opacity: 1;
    visibility: visible;
  }

  .floating_menu_gnav_list {
    display: flex;
  }

  .floating_menu_gnav_item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #595757;
    color: #fff;
    text-align: center;
    border-right: 1px solid #fff;
  }

  .floating_menu_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px;
    font-size: 10px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 1px;
  }

  .floating_menu_gnav_item:last-child {
    border: none;
  }

  .floatin_menu_ico_img {
    margin: 0;
    width: 20px;
    height: auto;
  }
}