@charset "UTF-8";

/*path to directory*/

/* ----------------------------------------------------- */

/* basic normalize */

* {
  box-sizing: border-box;
}

/*Custom ScrollBar*/

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background-color: rgba(184, 0, 6, 0.9);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: black;
}

html, body {
  background: #fff;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
}

a {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* text-label */

.pink-label {
  background: url("../../shared/images/top/pink-line.gif");
  background-position: 0;
  background-repeat: repeat-x;
  padding: 10px 4px;
}

/* webkit fonts */

.font-mincho {
  font-family: 'dnp-shuei-shogomincho-std',sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.072em;
}

/* webfont weight */

.font-w-regular {
  font-weight: 400;
}

.font-w-meduim {
  font-weight: 500;
}

.font-w-bold {
  font-weight: 700;
}

.font-w-black {
  font-weight: 900;
}

/* ----------------------------------------------------- */

/* ----------------------------------------------------- */

/* header */

.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background: #b80006;
  color: #fff;
  z-index: 1000;
}

@media (max-height: 800px) {

  .header {
    position: absolute;
  }

}

@media (max-width: 768px) {
  .header {
    display: none;
  }
}

.header .navigation {
  width: 100%;
}

.header .navigation ul {
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  -ms-writing-mode: tb-rl;
      writing-mode: tb-rl;
  /* 縦書き */
  text-orientation: upright;
  left: 50%;
  transform: translate(-50%, 0%);
  white-space: nowrap;
}

.header .navigation ul li {
  margin-bottom: 20px;
  font-size: 17px;
  cursor: pointer;
}

.header .navigation ul li:hover {
  color: #fbcc4f;
}

/* sp menu */

.sp-menu .nav-wrap {
  display: none;
  position: fixed;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 768px) {
  .sp-menu .nav-wrap {
    display: block;
  }
}

.sp-menu .gnav {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #b80006;
  color: #fff;
}

.sp-menu .gnav ul {
  list-style-type: none;
  margin: 60px 0 0;
  padding: 0;
}

.sp-menu .gnav ul li {
  display: relative;
  min-height: 40px;
  height: 100%;
  padding: 20px 30px;
  vertical-align: middle;
  text-align: center;
  font-size: 17px;
  cursor: pointer;
}

.sp-menu .icon-animation {
  height: 52px;
  width: 52px;
  display: block;
  cursor: pointer;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  background: #b80006;
}

.sp-menu .icon-animation span {
  width: 23px;
  height: 3px;
  display: block;
  background: #fff;
  position: absolute;
  left: 25%;
  top: 50%;
  transition: all 0.3s;
  transform: rotate(0deg);
}

.sp-menu .icon-animation .top {
  transform: translateY(-9px);
}

.sp-menu .icon-animation .bottom {
  transform: translateY(9px);
}

.sp-menu .is-open .middle {
  background: rgba(51, 51, 51, 0) !important;
}

.sp-menu .is-open .top {
  transform: rotate(-45deg) translateY(0px);
  background: white;
}

.sp-menu .is-open .bottom {
  transform: rotate(45deg) translateY(0px);
  background: white;
}

/* footer */

.footer {
  width: 100%;
  height: 80px;
}

@media (max-width: 768px) {
  .footer {
    height: 160px;
  }
}

.footer-container {
  width: 100%;
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.footer-container p {
  font-size: 14px;
  letter-spacing: 0.28em;
}

/* CALL PHONE BUTTON for SP */

#sp-call-button {
  position: fixed;
  bottom: 0;
  z-index: 1001;
  display: none;
  width: 100%;
}

@media (max-width: 768px) {
  #sp-call-button {
    display: block;
  }
}

#sp-call-button button {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  color: #fff;
  background: #b80006;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

#sp-call-button button span {
  margin-left: 5px;
  font-size: 18px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

#sp-call-button button i {
  margin-top: 4px;
  margin-right: 1px;
  margin-left: 18px;
  font-size: 20px;
}