@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");

/*ーーーーーーー
  body・フォントについて 
ーーーーーーーー*/

body {
  background-color: #000;
  color: #fff;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "HG明朝E",
    "MS PMincho", "MS Mincho", serif;
}
body.disable-scroll {
  height: 100%;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #fff;
}

ul {
  padding-left: 0;
}
li {
  list-style: none;
}

nav {
  display: block;
}
.ttl {
  font-size: 38px;
  color: #ffebbe;
  font-style: italic;
}
main {
  overflow: hidden;
}
/*ーーーーーーー

    header

ーーーーーーーー*/
header {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
header .primary_header {
  box-sizing: border-box;
  width: 100%;
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

header .primary_header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

header .row {
  display: flex;
  justify-content: space-between;
}
/*ーーーーーーー
    タイトル
ーーーーーーーー*/
header .row .title {
  padding: 10px 0;
  display: block;
  font-size: 1.3em;
  font-style: italic;
}
header .row .title a {
  display: flex;
  height: 40px;
}
header .row .title a img {
  height: 100%;
}
header .row .nav_wrraper {
  padding: 10px 0;
  margin: auto 0;
}
header .row .title a p {
  margin: auto;
  font-size: 22px;
}
/*ーーーーーーー
    headeナビ
ーーーーーーーー*/
header .global_nav .menu_box {
  width: 100%;
  height: 100%;
}

header .global_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #c78d0f; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  opacity: 1;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  box-sizing: border-box;
  align-items: center;
  transform: translateX(100%);
}

header .nav_wrraper .icon_wrraper {
  display: flex;
  flex-direction: row-reverse;
}

header .global_nav ul {
  padding: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .global_nav ul li {
  display: block;
}
header .global_nav ul li a {
  display: block;
  padding: 25px 0;
}

header .global_nav ul li a span {
  display: inline-block;
  padding: 5px 0;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}
header .global_nav ul li a:hover span {
  border-bottom: 2px solid #fff;
}
.pc_menu {
  display: none;
}
/*ーーーーーーー
　menuアイコン
ーーーーーーーー*/

.menu_icon {
  margin-left: 3px;
}
/* ハンバーガーメニューの大枠 */
header .global_nav .menu_icon {
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
  top: 50%;
  right: 5%;
}
/* ハンバーガーメニューの線 */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 27px;
  height: 23px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  display: block;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c78d0f;
  border-radius: 3px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* ーーーーーーーーーーー
  クリックした時のイベント
ーーーーーーーーーーーー*/
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
/* ーーーーーーーーーーー

    contactボタン

ーーーーーーーーーーーー*/
.contact_btn {
  display: flex;
}
.contact_btn p {
  display: block;
  background: #c78d0f;
  padding: 3px 6px;
  margin: 0 5px;
}
.contact_btn .line {
  background: #01B902;
}
/* ーーーーーーーーーーー

    ナビメニューopen

ーーーーーーーーーーーー*/
header.open .global_nav {
  transform: translateX(0);
}
/* ーーーーーーーーーーー

        footer

ーーーーーーーーーーーー*/
footer {
  border-bottom: 10px solid #c78d0f;
}
footer .container {
  padding: 0 10px;
  margin: 0 auto;
}
footer .row {
  padding-bottom: 0;
}
footer .footer_wrraper {
  text-align: center;
  margin: 0 auto;
}
.footer_wrraper p {
  font-size: 12px;
  padding: 22px 0 30px;
}
footer .row::after,
.container::after,
.footer_wrraper {
  content: "";
  display: table;
  clear: both;
}
