@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "Philosopher";
  src: url(../font/Philosopher-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Philosopher";
  src: url(../font/Philosopher-Bold.ttf);
  font-weight: bold;
}
img {
  vertical-align: bottom;
}

/* ==========================================
    common
========================================== */
.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
body {
  background: #e7dfd8;
  font-family: "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.05em;
  font-size: 3.7vw;
  line-height: 1.7em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 22px;
  }
}

.wrap {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 3.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .wrap {
    padding: 0 20px;
  }
}
.wrap.w1400 {
  max-width: 1440px;
}

.phil {
  font-family: "Philosopher", serif;
}

.flex {
  display: flex;
}
.flex.jcc {
  justify-content: center;
}
.flex.jcsb {
  justify-content: space-between;
}
.flex.aic {
  align-items: center;
}
.flex.half > * {
  width: 50%;
}

/* ==========================================
    header
========================================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s;
  padding: 8px 10px;
  z-index: 100;
}
header.open {
  background: rgba(20, 20, 20, 0.9);
}
@media screen and (min-width: 768px) {
  header.open {
    background: inherit;
  }
}
header.fixed, header.open {
  background: rgba(20, 20, 20, 0.9);
}
header a {
  color: #fff;
}
header .logo {
  width: auto;
  height: 44px;
}
header .logo img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header {
    padding: 15px 10px;
  }
  header .logo {
    height: 60px;
  }
  header .inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  header {
    padding: 15px 50px;
  }
  header .logo {
    height: 90px;
  }
}
@media screen and (min-width: 1600px) {
  header {
    padding: 30px 70px;
  }
  header .logo {
    height: 90px;
  }
}

.gnav,
.gnav_b span,
.gnav_line,
.gnav_line:before,
.gnav_line:after {
  transition-duration: 0.5s;
}

.gnav_btn {
  display: block;
  height: 60px;
  width: 60px;
  float: right;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
.gnav_btn .gnav_line {
  display: block;
  background: #fff;
  width: 36px;
  height: 1px;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.gnav_btn .gnav_line:before {
  content: "";
  display: block;
  background: #fff;
  width: 36px;
  height: 1px;
  position: absolute;
  top: -10px;
  cursor: pointer;
  transform-origin: 50%;
}
.gnav_btn .gnav_line:after {
  content: "";
  display: block;
  background: #fff;
  width: 36px;
  height: 1px;
  position: absolute;
  top: 10px;
  cursor: pointer;
  transform-origin: 50%;
}
.gnav_btn.open .gnav_line {
  width: 0;
}
.gnav_btn.open .gnav_line:before {
  transform: translateX(-50%) rotate(225deg);
  top: 0;
}
.gnav_btn.open .gnav_line:after {
  transform: translateX(-50%) rotate(-225deg);
  top: 0;
}

#global-nav {
  background: rgba(20, 20, 20, 0.9);
  position: fixed;
  width: 100%;
  padding: 13vw 3vw 9vw;
  top: 60px;
  left: 100%;
  transition: all 0.3s;
}
#global-nav.open {
  transform: translateX(-100%);
}
@media screen and (min-width: 768px) {
  #global-nav.open {
    transform: none;
  }
}
#global-nav ul {
  display: flex;
  flex-wrap: wrap;
}
#global-nav ul li {
  width: 50%;
  margin-top: 7vw;
}
#global-nav a {
  font-size: 5vw;
  line-height: 1em;
}
#global-nav a small {
  color: #999;
  font-size: 3.5vw;
}
#global-nav .gn-copy {
  color: #999;
  font-size: 3vw;
  text-align: center;
  padding-top: 3vw;
  margin-top: 7vw;
  border-top: 1px solid #999;
}
@media screen and (min-width: 768px) {
  #global-nav {
    width: auto;
    position: static;
    top: auto;
    left: auto;
    background: none;
    padding: 0;
  }
  #global-nav ul {
    flex-wrap: nowrap;
  }
  #global-nav ul li {
    margin-top: 0;
    width: auto;
    margin-left: 40px;
    margin-bottom: 10px;
  }
  #global-nav a {
    font-size: 18px;
  }
}

/* ==========================================
    footer
========================================== */
footer {
  background: #141414;
}
footer .wrap > .flex {
  flex-direction: column;
}
footer .wrap > .flex .foot-logo {
  text-align: center;
  padding-top: 10vw;
}
footer .wrap > .flex .foot-logo img {
  width: 25vw;
}
@media screen and (min-width: 768px) {
  footer .wrap > .flex {
    flex-direction: row;
    padding: 120px 0;
  }
  footer .wrap > .flex .foot-logo {
    width: 150px;
    padding-top: 0;
    margin-right: 30px;
  }
  footer .wrap > .flex .foot-logo img {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  footer .foot-logo {
    width: 360px;
    margin-right: 0;
  }
}
footer #foot-nav {
  padding: 8vw 3vw 9vw;
}
footer #foot-nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer #foot-nav ul li {
  width: 50%;
  margin-top: 7vw;
}
footer #foot-nav a {
  font-size: 5vw;
  line-height: 1em;
  color: #fff;
}
footer #foot-nav a small {
  color: #999;
  font-size: 3.5vw;
}
footer #foot-nav .gn-copy {
  color: #999;
  font-size: 3vw;
  text-align: center;
  padding-top: 3vw;
  margin-top: 7vw;
  border-top: 1px solid #999;
}
@media screen and (min-width: 768px) {
  footer #foot-nav {
    padding: 0;
    width: 100%;
  }
  footer #foot-nav ul {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  footer #foot-nav ul li {
    margin-top: 0;
    width: auto;
    padding-right: 10px;
  }
  footer #foot-nav a {
    font-size: 18px;
  }
  footer #foot-nav a small {
    font-size: 12px;
  }
  footer #foot-nav .gn-copy {
    text-align: right;
    padding-top: 30px;
    margin-top: 30px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  footer #foot-nav ul li {
    padding-right: 30px;
  }
  footer #foot-nav a {
    font-size: 24px;
  }
  footer #foot-nav a small {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */