/* -----------------------------------------
    common
----------------------------------------- */

.oni-ver2 {
  font-family: 'NotoSerifMJP', 'NotoSerifRJP', 'NotoSerifBJP', serif;
}

/*==Noto Serif JP==*/
@font-face {
    font-family: 'NotoSerifRJP';
    src: url('/font/NotoSerifJP-Regular.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'NotoSerifMJP';
    src: url('/font/NotoSerifJP-Medium.otf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'NotoSerifBJP';
    src: url('/font/NotoSerifJP-SemiBold.otf') format('opentype');
    font-weight: 600;
}

/* ----- link text ----- */
.a-under{
  text-decoration: underline;
  word-break: break-word;
  color: #8C342B;
  font-size: 0.8em;
}


/* -----------------------------------------
    header
----------------------------------------- */

.l-header {
  display: block;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #000;
  height: 55px;
}

.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #fff;
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}

.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

.p-header__logo {
  display: block;
  max-width: 80px;
}
.p-header__logo img {
  width: 100%;
}

.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 20px;
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}
.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.p-nav__inner {
    width: 85%;
  }
.p-nav__list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}
.p-nav__item {
  position: relative;
  width: 100%;
  margin: 20px;
}
.p-nav__link {
  color: #fff;
  display: block;
  width: 100%;
  font-size: 0.9em;
}

/* hover red line */
.p-nav__link {
	position: relative;
	text-decoration: none;
}
.p-nav__link::after {
	background: #8C342B;
	bottom: -3px;
	content: '';
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	transition: all .4s ease-in-out;
	width: 0;
	z-index: 0;
}
.p-nav__link:hover::after {
	width: 100%;
}

@media screen and (min-width: 1150px) {
  .p-header__hamburger {
    display: none;
  }
  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p-header__nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: calc(100% - 180px);
  }
  .p-nav__list {
    padding-right: 0;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
  }
  .p-nav__item {
    width: fit-content;
    width: -moz-fit-content;
  }
}

/* -----------------------------------------
    footer
----------------------------------------- */
.footer-copyright {
  width: 100%;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 0.8em;
  z-index: 100;
}