header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 26px 50px 34px 47px;
  align-items: flex-end;
  position: fixed;
  z-index: 11;
  background-color: #fff;
}
.head-title {
  width: 325px;
  height: 40px;
  display: inline-block;
  position: relative;
}

.top_logo1st,
.top_logo2nd {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}

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

.scrolled .top_logo1st {
  opacity: 0;
  visibility: hidden;
}

.scrolled .top_logo2nd {
  opacity: 1;
  visibility: visible;
}

.global-nav {
  width: fit-content;
}

.global-nav nav ul {
  display: flex;
  justify-content: flex-end;
}

.global-nav nav ul li {
    border-right: solid 1px;
    width: auto;
    padding: 0 34px;
    text-align: center;
}
@media screen and (max-width:1370px) {
	.global-nav nav ul li {
		padding: 0 24px;
	}
}
@media screen and (max-width:1240px) {
	.global-nav nav ul li {
		padding: 0 14px;
	}
}
.global-nav nav ul li:first-child {
  border-left: solid 1px;
}

.global-nav nav ul a {
  color: #fff;
  font-weight: var(--font-w-medium);
  color: #000;
}

/* ハンバーガーメニュー */

.head-nav_toggle {
  display: none;
}

.effect-accordion-menu {
  margin: 120px auto 0;
  max-width: 300px;
  width: 100%;
}

.effect-accordion-menu__contents {
	padding: 0 25px;
  display: none;
}


#toggle-box {
  position: relative;
  width: 92%;
  height: 100%;
  cursor: pointer;
  margin: 0px auto 0;
  border-radius: 9px;
}


#toggle-box>span {
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: #000;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box>span:nth-child(1) {
  top: 0px;
}

#toggle-box>span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
  bottom: 0px;
}

#toggle {
  position: fixed;
  right: 20px;
  top: 25px;
  width: 50px;
  margin: 0 auto 0px;
  height: 17px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


#nav-content {
  z-index: 900;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: cover;
  background-repeat: no-repeat;
}

#nav-content ul {
  list-style: none;
}

#nav-content a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: opacity .6s ease;
}

.js-accordion-move {
  padding: 16px 0;
}

#nav-content a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box {
  z-index: 1000;
}

.is-open #toggle-box>span {
  background: #fff;
  /* width: 100%; */
  z-index: 3000;
}

.is-open #toggle-box>span:nth-child(1) {
  top: 50%;
  transform: rotate(30deg) translatey(-50%);
  width: 100%;
}

.is-open #toggle-box>span:nth-child(3) {
  width: 0;
}

.is-open #toggle-box>span:nth-child(2) {
  top: 50%;
  transform: rotate(-30deg) translatey(-50%);
  width: 100%;
}

#nav-content {
	 padding: 20px;
	z-index: 900;
	overflow: auto;
	width: 100%;
	height: 100%;
	color: #000;
	position: fixed;
	top: 0;
	right: 0;
	text-align: center;
	transform: translateX(100%);
	transition: transform 1s 
	cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #000;
}
.is-open #nav-content {
	z-index: 999;
	transform: translateX(0);
}
.spnav-logo__link{
	width: 247px;
}
.spnav-logo__img{
	width: 100%;
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.sp-nav-li{
	border-bottom: solid 1px #F39A00;
}
.sp-nav-li:first-of-type{
	border-top: solid 1px #F39A00;
}
.sp-nav-a{
  padding: 20px 30px;
  font-weight: 400;
}
.sp-nav-a__child{
	padding: 10px 30px;
  font-weight: 400;
}
#nav-content nav {
  padding: 60px 30px 30px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}


.effect-accordion-menu {
  margin: 70px auto 0px;
  max-width: 300px;
  width: 100%;
}

.effect-accordion-menu__title {
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
}

.effect-accordion-menu__title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 1px;
  width: 15px;
  background: #000;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

.effect-accordion-menu__title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 1px;
  width: 15px;
  background: #000;
  transition: all .3s ease-in-out;
}

.effect-accordion-menu__title.open:before {
  transform: rotate(180deg);
}

.effect-accordion-menu__title.open:after {
  opacity: 0;
}


.effect-accordion-menu__contents {
  display: none;
  margin-bottom: 22px;
}

.effect-accordion-menu__list {
  border-bottom: solid 1px #000;
  font-weight: 500;
}





/* プルダウンメニュー */
.dropdown {
  /* position: relative; */
  display: inline-block;
  cursor: pointer;
  /*padding-bottom: 24px;*/
}


.dropdown-content {
  /*padding: 35px 0 0;*/
  padding: 15px 0 0;
  position: absolute;
  left: 50%;
  top: 155px;
  /*min-width: 81%;*/
  width: 1224px;
  z-index: 111;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease, pointer-events 0s 0.8s;
  transform: translate(-50%, 0);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown:hover::after {
  content: '';
  /* width: 100%; */
  height: 4px;
  display: inline-block;
  background-color: #82452A;
  position: absolute;
  bottom: -12px;
  /* left: calc(50% - 34px); */
  left: 0;
  pointer-events: none;
}

.dropdown-link {
  color: black;
  text-decoration: none;
  display: block;
  width: 22.6%;
}


.dropdown-link:hover {
  opacity: 0.7;
  transition: all .2s;
}

.hed-right__nav .dropdown-text {
  margin-bottom: 10px;
  text-align: left;
  font-size: .14rem;
}

.dropdown-imgwrap {
  padding-bottom: 65%;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}

.dropdown-img {
  object-fit: cover;
  object-position: center;
  position: absolute;
}

.body.bg_active::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 56, 0.5);
  position: fixed;
  z-index: 1;
  pointer-events: none;
  bottom: 0;
}

.dropmenu {
  position: absolute;
  margin-left: 0;
  width: 160px;
  display: none;
  background: #998675;
  left: 0;
  margin: auto;
  top: 30px;
  z-index: 11;
}

.header_nav_kitchen .dropmenu {
  width: 245px;
}

.header_nav_bath .dropmenu {
  width: 230px;
}

.header_nav_flow .dropmenu {
  width: 230px;
}

.dropmenu li {
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.dropmenu li:not(:first-child) {
  border-top: 1px solid #fff;
}

.dropmenu li a {
  padding: 10px 18px;
  display: block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

.dropmenu li a:hover {
  opacity: 0.7;
}

.fixed_header {
  display: none;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}

.home-nav-btn {
  text-align: center;
  font-size: 0.3rem;
  line-height: 1;
}

#nav-content a,
.effect-accordion-menu__title {
  color: #fff;
  /* -webkit-text-stroke: 1px #828282; 
  text-stroke: 1px 828282; */
}

.effect-accordion-menu__title:before,
.effect-accordion-menu__title:after {
  background: #F39A00;
}

.effect-accordion-menu__list {
  border-bottom: solid 1px #F39A00;
}

.blank_icon{
	margin-left: 10px;
	width: 18px;
	vertical-align: top;
}

#toggle {
  display: none;
}


@media screen and (max-width:1120px) {
	.head-title{
		width: 247px;
		height: 30px;
	}
	 #toggle {
		display: block;
	 }
	 .global-nav{
	 	display: none;	
	 }
}
@media screen and (max-width:800px) {
	header{
		padding: 20px;
		background-color: #fff;
	}
}