@font-face {
  font-family: "OPTIOnyx";
  src: url("../font/OPTIOnyx.otf") format("opentype");
}
/* @font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../font/NotoSansJP.woff") format("woff");
} */
@font-face {
  font-family: "HinaMincho Regular";
  src: url("../font/HinaMincho-Regular.ttf") format("truetype");
}
.hd {
  background: #111111;
	
}
.hd__flex--pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1%;
  width:min(1800px,100%);
  margin:auto;
}
@media screen and (max-width: 1024px) {
  .hd__flex--pc {
    display: none;
  }
}
.hd__left, .hd__right {
  flex-basis: 40%;
}
.hd__center {
  flex-basis: 15%;
}
.hd__logo {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hd__logo {
    margin: auto;
    padding: 0.5rem 0;
    max-width: 120px;
  }
}
.hd__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.hd nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3.5rem 4.5rem 0;
  padding: 3.5rem 1% 0;
}
.hd nav > a {
  text-align: center;
  color: #fff;
  transition: 0.5s;
}
.hd nav > a:hover {
  color: #a50606;
}
.hd nav strong {
  display: block;
  font-family: "OPTIOnyx", sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 1.5625vw, 3.75rem);
  font-size: 2.5rem;
  font-feature-settings: "liga" on, "kern" on;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.hd nav small {
  display: block;
  font-family: "HinaMincho Regular", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.5729166667vw, 1.375rem);
  font-size: 1rem;
}

.hd__menu {
  margin: 0 0 0 auto;
  position: relative;
  z-index: 9999;
  width: 40px;
  height: 30px;
  transition: 0.5s;
  font-size: 1rem;
}
.hd__hamburger {
  width: 40px;
  height: 30px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
.hd__hamburger span {
  position: absolute;
  background: #ffffff;
  height: 2px;
  width: 100%;
  left: 0;
  border-radius: 10px;
}
.hd__hamburger span.hd__hamburger--bottom {
  width: 80%;
  left: auto;
  right: 0;
}
.hd__hamburger--top {
  top: 0;
  transition: 0.5s;
}
.hd__hamburger--middle {
  top: 42.5%;
  transition: 0.5s;
}
.hd__hamburger--bottom {
  bottom: 0;
  transition: 0.5s;
}

.hd__hamburger.active .hd__hamburger--top {
  transform: translateY(14px) rotate(45deg);
}
.hd__hamburger.active .hd__hamburger--middle {
  display: none;
}
.hd__hamburger.active .hd__hamburger--bottom {
  width: 100%;
  right: auto;
  transform: translateY(-14px) rotate(-45deg);
}

.hd__flex--spbox {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hd__flex--spbox {
    display: block;
    height:var(--spheaderHieght);
  }
}

.hd__flex--sp {
  position: fixed;
  top: 25px;
  right: 2%;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .hd__flex--sp {
    top: 2.8%;
  }
}

.g-nav__bg {
  position: fixed;
  top: 0;
  right: -150vw;
  height: 100vh;
  width: 50%;
  transition: all 0.5s;
  overflow: auto;
  background-color: #111111;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 90px 10% 60px;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .g-nav__bg {
    width: 100%;
  }
}
.g-nav__bg--inner {
  margin: 0 auto;
}
.g-nav__bg.active {
  right: 0;
}
.g-nav__sp {
  margin-bottom: 30px;
}
.g-nav__sp ul {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .g-nav__sp li {
    margin-bottom: 1rem;
  }
}
.g-nav__sp li a {
  color: #ffffff;
}

.ft {
  background-color: #404040;
}
.ft__flex {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 1rem 0;
}
.ft__flex > a {
  font-family: "HinaMincho Regular", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ffffff;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .ft__flex > a {
    font-size: 0.75rem;
    padding: 0 1rem;
  }
}
.ft__flex > a:not(:last-child) {
  border-right: 1px solid #ffffff;
}
.ft__copy {
  font-family: "HinaMincho Regular", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #ffffff;
}

.page-top {
  opacity: 0;
  position: fixed;
  bottom: 5%;
  right: 2%;
  max-width: 100px;
  transition: 0.5s;
  overflow: hidden;
  cursor: pointer; /* カーソルをポインターに変更 */
}
.page-top.active {
  z-index: 99;
  opacity: 1;
}