@charset "UTF-8";
body {
  font-family: 'Crimson Text', 'Noto Serif JP', serif;
  color: #343230;
  font-size: 62.5%;
  line-height: 1;
  letter-spacing: 0.1em;
  min-height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 1.6rem;
  min-width: 1200px;
}

a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

.site_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 1200px;
}

.btn {
  background: #e6ac27;
  padding: 20px;
  min-width: 420px;
  max-width: 520px;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #343230;
  position: relative;
}

.btn.arrow::before, .btn.arrow::after {
  content: "";
  background: #343230;
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 8px;
  bottom: 0;
  margin: auto;
  right: 30px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.btn.arrow::before {
  width: 40px;
}

.btn.arrow::after {
  width: 18px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  position: absolute;
  top: 0px;
  right: 30px;
}

.btn.arrow:hover::before {
  -webkit-transform: translate(20px);
          transform: translate(20px);
}

.btn.arrow:hover::after {
  -webkit-transform: translate(20px) rotate(25deg);
          transform: translate(20px) rotate(25deg);
}

.img {
  width: 100%;
}

#pp {
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}

#pp ::-webkit-scrollbar {
  width: 4px;
}

#pp ::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #1f1e1e;
}

#pp ::-webkit-scrollbar-thumb {
  background-color: #ebe7e3;
  border-radius: 10px;
}

/*============================
	header
=============================*/
header {
  min-width: 1200px;
  padding-top: 40px;
  position: relative;
}

header nav {
  font-size: 2.0rem;
  color: #fff;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav li + li {
  margin-left: 100px;
}

header .logo {
  width: 140px;
  margin: 0 auto 50px;
}

header .cv {
  position: absolute;
  right: 40px;
  top: 40px;
}

header .cv p {
  margin-top: 20px;
  color: #fff;
}

header .cv p span:first-child {
  font-size: 1.6rem;
  margin-right: 15px;
}

header .cv p span:last-child {
  font-size: 1.4rem;
}

header.is-fixed {
  -webkit-animation: .3s head ease;
          animation: .3s head ease;
  position: fixed;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 120px;
  min-width: 1200px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #292116;
}

header.is-fixed::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

@media print, screen and (max-width: 1200px) {
  header.is-fixed {
    max-width: 1200px;
  }
}

header.is-fixed .logo {
  width: 80px;
  margin-bottom: 0;
  margin-right: 10px;
}

header.is-fixed .logo img {
  display: none;
}

header.is-fixed .logo a::before {
  content: "";
  width: 30px;
  height: 80px;
  display: inline-block;
  background: url(../images/logo-mark.png) no-repeat top/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

header.is-fixed nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}

@media print, screen and (max-width: 1452px) {
  header.is-fixed nav {
    width: 45%;
  }
}

header.is-fixed nav li + li {
  margin-left: 20px;
}

header.is-fixed .cv {
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.is-fixed .cv p {
  margin: 5px 0 0 10px;
}

header.is-fixed .cv p span {
  display: block;
  text-align: left;
}

header.is-fixed .cv .btn {
  min-width: 400px;
}

@media print, screen and (max-width: 1452px) {
  header.is-fixed .cv .btn {
    min-width: 250px;
    -webkit-transition: .1s;
    transition: .1s;
  }
}

@-webkit-keyframes head {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

@keyframes head {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

/* ==================================================
	footer
================================================== */
footer {
  width: 88px;
  height: 100%;
  background: url(../images/footer_bg.png) repeat top/88px 172px;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
}

footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  font-size: 2.2rem;
  color: #fff;
  padding-top: 90px;
  position: relative;
}

footer p::before {
  content: "";
  background: url(../images/logo-mark.png) no-repeat center/contain;
  width: 38px;
  height: 80px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

footer .sns li {
  width: 40px;
  height: 40px;
  background: #fff;
  text-align: center;
}

footer .sns li a {
  display: block;
  height: 100%;
}

footer .sns li:not(:last-child) {
  margin-bottom: 10px;
}

footer .sns img {
  width: 24px;
  margin-top: 7px;
}
footer .sns img.min {
  width: 29px;
}
footer .sns img.w20 {
  width: 20px;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer nav ul a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #292116;
  border-radius: 10px;
}

footer nav ul li {
  position: relative;
}

footer nav ul li span {
  background: #000;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9px 10px;
  font-size: 1.2rem;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 30px;
  opacity: 0;
  -webkit-transform: translate(-200px, 0);
          transform: translate(-200px, 0);
  -webkit-transition: 0.3s cubic-bezier(1, 0.02, 0.19, 1.18);
  transition: 0.3s cubic-bezier(1, 0.02, 0.19, 1.18);
}

footer nav ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

footer nav .now a::before {
  background: #e6ac27;
}

footer nav .now span {
  opacity: 1;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mb50 {
	margin-bottom: 50px !important;
}