@charset "utf-8";
header {
  width: 100%;
  position: relative;
}

/* body.fixed {
  height: 100%;
  overflow: hidden;
} */

.header__wrapper {
  width: 100%;
  padding-left: 70px;
  padding-right: 23px;
  position: fixed;
  z-index: 6;
  background: #444444;
  background: linear-gradient(180deg, rgba(68, 68, 68, 1) 0%, rgba(68, 68, 68, 0) 100%);
}
body.scroll .header__wrapper{
  padding-left: 40px;
}
.low-header .header__wrapper {
  background: transparent;
  background: transparent;
}
.header__wrapper.open {
  background: transparent;
  background: transparent;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 35px;
}


.header__left {
  /* width: 10%;
  max-width: 137px; */
  width: 21%;
  max-width: 268px;
  min-width: 96px;
  padding-top: 14px;
  position: relative;
  z-index: 6;
  transition: 0.8s;
}

.header__logoLink a {
  display: block;
  position: relative;
}

.header__logoLink a img.fv-logo {
  max-width: 137px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease;
}

.header__logoLink a img.scroll-logo {
  opacity: 0;
  position: absolute;
  /* top:-100%; */
  
  left: 0;
  transition: all 0.7s ease;
}

body.scroll .header__logoLink a img.fv-logo {
  opacity: 0;
  /* top:-100%; */
}
body.scroll .header__logoLink a{
  height: 35px;
  overflow: hidden;
}
body.scroll .header__logoLink a img.scroll-logo {
  opacity: 1;
  top: 0;
}

body.scroll .header__left{
  /* width: 21%;
  max-width: 268px; */
  height: 35px;
}

.header__navWrap {
  /* width: calc(100% - 157px); */
  width: 100%;
  max-width: 995px;
  margin: 0 0 0 auto;
}
.header__nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2.6%;
}

.header__nav {
  width: calc(100% - 260px);
  max-width: 680px;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6.5%;
}

.header__nav-listItem {
  position: relative;
}
.header__nav-listItem.pt{
  padding-top: 20px;
}
/* .header__nav-listItem:not(:last-child) {
  padding-right: 6%;
} */

.header__nav-listItem a {
  color: #fff;
  display: block;
}
.low-header .header__nav-listItem a {
  color: #a58b51;
}

.header__nav-listItem a span {
  display: block;
}

.header__nav-listItem a span.ja {
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: inline;
  line-height: 1.75;
  position: relative;
}
.header__nav-listItem a span.ja::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.low-header .header__nav-listItem a span.ja::after {
  background-color: #a58b51;
}

.header__nav-listItem a:hover span.ja::after {
  opacity: 1;
}

.header__nav-listItem.current a {
  cursor: default;
  pointer-events: none;
}
.header__nav-listItem.current a span.ja::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.low-header .header__nav-listItem.current a span.ja::after {
  background-color: #a58b51;
}

.lang__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 105px;
  flex-shrink: 0;
}
.lang__list-item {
  display: flex;
  align-items: center;
}
.lang__list-item a {
  color: #fff;
  font-family: "aviano", serif;
  font-size: 13px;
  line-height: 1.75;
  transition: opacity 0.3s;
}
.low-header .lang__list-item a {
  color: #a58b51;
}
.lang__list-item a:hover {
  opacity: 0.5;
}
.lang__list-item.current a {
  opacity: 0.5;
  cursor: initial;
  pointer-events: none;
}
.lang__list-item.current a:hover {
  opacity: 1;
}

.slash {
  display: block;
  padding: 0 6px;
}
.slash img {
  display: block;
  width: 9px;
  height: 9.5px;
}

.header__search {
  width: 155px;
  flex-shrink: 0;
  border: 1px solid #fff;
  border-radius: 5.5px;
}
.low-header .header__search {
  border: 1px solid #a58b51;
}
.header__search a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 9px;
  padding-left: 26px;
  padding-right: 35px;
}
.header__search img {
  width: 24px;
  height: 19px;
}
.header__search span {
  color: #fff;
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.75;
}
.low-header .header__search span {
  color: #a58b51;
}

.ham {
  width: 36px;
  height: 25px;
  position: absolute;
  top: 33px;
  right: 0;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.ham__lineWrapper {
  width: 36px;
  height: 25px;
}

.ham__lineWrapper span {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.low-header .ham__lineWrapper span {
  background-color: #a58b51;
}

.ham__lineWrapper span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.ham__lineWrapper span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ham__lineWrapper span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.ham.open {
  width: 36px;
  height: 30px;
}

.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}

.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}
@media screen and (max-width: 1440px) {
  
  .header__wrapper {
    padding-left: 4.9%;
  }
  .header__nav-list{
    justify-content: flex-end;
    gap: 0 5%;
  }
  body.scroll .header__wrapper{
    padding-left: 2%;
  }
  body.scroll .header__left {
    width: 16%;
  }
}

@media screen and (min-width: 1201px) {
  .header__wrapper.open {
    background: linear-gradient(180deg, rgba(68, 68, 68, 1) 0%, rgba(68, 68, 68, 0) 100%);
  }
  .header__navWrap {
    display: block !important;
  }
}

@media screen and (max-width: 1200px) {
  header {
    position: relative;
  }
  .header__inner {
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 19px;
  }
  .header__nav-listItem a span.ja::after,
  .header__nav-listItem.current a span.ja::after {
    background-color: #fff;
  }


  body.scroll .header__left {
      width:45%;
      padding-top: 30px;
      padding-bottom: 40px;
  }

  .ham {
    display: block;
  }
  .header__navWrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(165, 139, 81, 0.9);
    width: 100%;
    max-width: 100%;
    height: 100vh;
    left: 0;
    z-index: 5;
    padding-top: 100px;
    overflow: auto;
  }
  .low-header .header__navWrap {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header__nav-inner {
    display: block;
    margin: 0 auto;
  }
  .header__nav {
    width: calc(100% - 40px);
    padding-top: 0;
    margin: 0 auto;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 25px 0;
  }
  .header__nav-listItem a {
    color: #fff;
    display: inline-block;
    padding: 3px;
  }
  .header__nav-listItem a::after {
    background-color: #fff;
  }
  .header__nav-listItem.current a::after {
    background-color: #fff;
  }

  .lang__list {
    margin: 40px auto 0 auto;
  }

  .header__search {
    margin: 20px auto 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .header__wrapper {
    padding-left: 25px;
    padding-right: 20px;
  }
  body.scroll .header__wrapper {
      padding-left: 20px;
  }
  body.scroll .header__left{
    width: 190px;
    padding-bottom: 40px;
  }
  
}

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

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



@media screen and (max-height: 750px) {
 

  .header__nav-listItem.pt{
    padding-top: 10px;
  }
 
}

@media screen and (max-width: 800px) and (max-height: 750px) {
   .header__navWrap{
    padding-top: 17vh;
  }
  .header__nav-list{
    gap: 15px;
  }
   .lang__list{
    margin-top: 20px;
  }
}