@charset "UTF-8";

html {
  font-size: 16px;
}

body {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 1px;
  word-break: break-all;
  color: #fff;
  background-color: #000;
}

a {
  text-decoration: none;
  color: #fff;
}

li {
  list-style: none;
}
header {
  background-color: #000;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  padding: 1%;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000; /* 黒で40%の透明度 */
  color: white;
  z-index: 1002;
  backdrop-filter: blur(6px);
}
.header-wrap__nav__list {
  display: flex;
  align-items: center;
  justify-content: right;
width:80%;
}
.header-wrap__nav {
margin-right:1%;

}
.header-wrap__nav__list__item {
  text-align: center;
  padding: 0 2% 0 2%;
  border-right: solid 1px #fff;
  font-size: clamp(1rem, -2.75rem + 5vw, 1.125rem);
  font-weight: bold;
}
.header-wrap__nav__list__item a {
  color: #fff;
  position: relative;
}
.header-wrap__nav__list__item a:hover {
  color: #c1c1c1;
}
.header-wrap__nav__list__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -20px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.header-wrap__nav__list__item a:hover::after {
  visibility: visible;
  bottom: -10px;
  opacity: 1;
}
.header-wrap__nav__list__item:last-child {
  border-right: none;
}
.header-wrap__logo {
  width: 20%;
  padding-left: 2%;
}
.header-wrap__logo__img img {
  width:clamp(9.375rem, 6.1141rem + 16.3043vw, 18.75rem);;
}
.footer-wrap {
  width: 100%;
  margin: 0 auto 20px auto;
}
.footer-wrap__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
  font-weight: bold;
  gap: 20px;
}
.footer-wrap__copyright {
  font-size: 14px;
  color: #fff;
}
body.page-transition {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
body.page-transition.loaded {
  opacity: 1;
}
/* ハンバーガー基礎形状 */
/* ハンバーガー基礎形状 */
.hamburger {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* バツに変形 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/* 開いたときに下に滑らかに表示 */
.header-wrap__nav.active {
  top: 60px;
}

.header-wrap__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.header-wrap__nav.active {
  top: 70px;
}

@media (max-width: 1200px) {
  .header-wrap__nav {
    width: 100%;

  }
  .footer {
    font-size: 14px;
  }
@media screen and (max-width: 1000px) {
  .hamburger {
    display: flex;
  }

  .header-wrap__nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
background-color:#000;
height:100vh;
  }

  .header-wrap__nav.active {
    display: block;
  }

  .header-wrap__nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃え */
    gap: 20px;
margin-left:1%;
  }

  .header-wrap__nav__list__item {
    margin: 10px 0;
    font-size: 20px;

  }
  .header-wrap__nav__list__item {

  border: none;
}
@media screen and (max-width: 450px) {
  .hamburger {
  top: 19px;
}
.footer-wrap__list {
  gap: 12px;
  padding-bottom: 20px;
}
.footer-wrap__copyright {
  font-size: 12px;
}
.breadcrumb-wrapper__list__item  {
  display:none;
}
.header-wrap__nav.active {
  top: 50px;
}
}
}
}