/*============================
	header
============================*/

.header {
  width: 100%;
  background-color: #fff; 
}
/* スクロール後の背景色を設定 */
/* .scrolled-header {
  background-color: #fff; 
} */

.hd__inner {
  max-width: 1680px;
  width: 96%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd__logo {
  width: 159px;
}

.hd__right {
  width: auto;
  align-items: center;
  flex-wrap: nowrap;
}
.hd__btn{
  margin-left: 50px
}
.hd__recruit,
.hd__contact{
  width: 210px;
  height: 60px;
}
.hd__recruit a,
.hd__contact a{
  display: block;
  font-size: 20px;
  letter-spacing: .075em;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-style: italic;
  background: #9c4a21;
  border: 1px solid #9c4a21;
  transition: ease-in-out .3s;
}
.hd__recruit a:hover{
  color: #9c4a21;
  background: #fff;
}
.hd__contact a{
  background:#5e311a ;
  border: 1px solid #5e311a;
}
.hd__contact a:hover{
  color: #5e311a;
  background: #fff;
}
@media screen and (max-width:1280px) {
    .hd__logo{
    width: 140px;
  }
}
@media screen and (max-width:1024px) {
  .hd__right {
    display: none!important;
  }
  .hd__inner{
    padding: 15px 0;
  }
}
@media screen and (max-width:768px) {
  .hd__logo {
    width: 100px;
  }
}



/***** g-nav PC ▼*****/

.hd__nav {
  justify-content: center;
}
.hd__nav__item:not(:first-child) {
  margin-left:30px;
}
.hd__nav__item {
  position: relative;
}
.hd__nav__item a {
  font-size: 14px;
  letter-spacing:.075em;
  font-weight: normal;
  position: relative;
  display: block;
  transition: .3s ease-out;
  text-align: center;
  white-space: nowrap;
  line-height: 2;
}
.hd__nav__item .font-en{
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}
.hd__nav__item a:hover {
  opacity: 1;
  color: #9c4a21;
}

@media screen and (max-width:1280px) {

  .hd__btn {
    margin-left: 30px;
  }
  .hd__recruit, .hd__contact {
    width: 150px;
    height: 50px;
  }
  .hd__recruit a, .hd__contact a{
    font-size: 18px;
    line-height: 50px;
  }
}
@media screen and (max-width:1280px) {
  .hd__nav__item a{
    font-size: 13px;
    letter-spacing: .05em;
  }
  .hd__nav__item .font-en{
    font-size: 18px;
  }
  .hd__nav__item:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (max-width:1024px) {
  .hd__right {
    display: none;
  }
}


/***** g-nav ▲*****/



/***** ハンバーガー ▼*****/

.hd__hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  margin: auto;
  width: 50px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
}

.hd__hamburger .span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #9c4a21; 
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.hd__hamburger .span:nth-child(1) {
  top: 0;
}
.hd__hamburger .span:nth-child(2) {
  top: 15px;
}
.hd__hamburger .span:nth-child(3) {
  top: 30px;
}


/* open */
.hd__nav--sp.open .hd__hamburger .span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  background: #9c4a21;
}
.hd__nav--sp.open .hd__hamburger .span:nth-child(2) {
  width: 0;
  left: 50%;
}
.hd__nav--sp.open .hd__hamburger .span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
  background: #9c4a21;
}


/* hamburger menu */
.hamburger__inner {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 8% 5%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}


.nav__items--sp {
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  width: 100%;
}
.nav__item--sp {
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 1;
  font-weight: bold;
}
.nav__item--sp{
  margin-bottom: 20px;
}
.nav__item--sp a {
  font-size: 14px;
  font-weight: 500;
}
.nav__item--sp .font-en{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.hd__nav--sp.open .hamburger__inner {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}
.hd__web__btn {
  display:none;
}
@media screen and (max-width:1024px) {
  .hd__hamburger {
    display: block;
    width: 40px;
    height: 30px;
    top: 20px;
    right: 20px;
  }
  .hd__web__btn {
   display: block;
   position: absolute;
   top: 13px;
   right: 80px;
 }
}
@media screen and (max-width:768px) {
  .hd__hamburger {
    width: 33px;
    height: 45px;
    top: 20px;
    right: 20px;
  }
  .hd__hamburger .span:nth-child(2) {
    top: 10px;
  }
  .hd__hamburger .span:nth-child(3) {
    top: 20px;
  }

  .hamburger__inner{
    width: 100%;
    padding:15% 8% 3%;
    text-align: center;
  }
  .nav__item--sp a {
    font-size: 14px;
  }
  .nav__item--sp .font-en{
    font-size: 18px;
  }
   .hd__web__btn {
     top:10px;
     right:75px;
     width:110px;
     height:45px;
 }
   .hd__web__btn a {
     line-height:45px;
 }
   .hd__web__btn a p {
     font-size:16px;
 }
}


/* contact area */
.hamburger__txt .hd__btn{
  margin-left: 0;
}
.hamburger__txt .hd__recruit{
  margin-bottom: 15px;
}
