@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  background-color: whitesmoke;
  background-image: none;
}

body.fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a, a:visited {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #cc6633;
  text-decoration: none;
}

/* for bg image */
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.hum {
  width: 80px;
  height: 80px;
  background-color: #111;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9999;
  display: block;
  transition: all 0.25s ease-in 0s;
  cursor: pointer;
}
.hum span {
  width: 40px;
  height: 3px;
  background-color: whitesmoke;
  border-radius: 2px;
  position: absolute;
  left: 20px;
  transition: all 0.25s ease-in 0s;
}
.hum span:nth-child(1) {
  top: 25px;
}
.hum span:nth-child(2) {
  top: 39px;
}
.hum span:nth-child(3) {
  bottom: 25px;
}
.hum:hover {
  background-color: #FFF;
}
.hum:hover span {
  background-color: #111;
}
.hum.active {
  background-color: #FFF;
}
.hum.active span {
  background-color: #111;
}
.hum.active span:nth-child(1) {
  transform: rotate(135deg);
  top: 38px;
}
.hum.active span:nth-child(2) {
  opacity: 0;
}
.hum.active span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 38px;
}

nav {
  width: 25vw;
  height: 100vh;
  background-color: #111;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: inset(0% 0% 0% 100%);
  clip-path: inset(0% 0% 0% 100%);
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.active {
  -webkit-clip-path: inset(0% 0% 0% 0%);
  clip-path: inset(0% 0% 0% 0%);
  right: 0px;
  opacity: 1;
  pointer-events: auto;
}
nav .inner ul.menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
nav .inner ul.menu > li a {
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
  transition: all 0.25s ease-in 0s;
}
nav .inner ul.menu > li a:hover {
  color: #f9f2dc;
}
nav .inner ul.menu > li span {
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
nav .inner ul.menu > li > ul {
  padding: 10px 0 0 0;
}
nav .inner ul.menu > li > ul > li {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
nav .inner ul.menu > li > ul > li a {
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
}
nav .inner ul.menu > li > ul > li::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #FFF;
  margin: 0 10px 0 0;
  display: block;
}
nav .inner ul.menu > li > ul > li:not(:last-child) {
  margin-bottom: 5px;
}
nav .inner ul.menu > li:not(:last-child) {
  margin-bottom: 20px;
}
nav .inner ul.sns {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
nav .inner ul.sns li {
  width: 40px;
}
nav .inner ul.sns li a {
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  transition: all 0.25s ease-in 0s;
}
nav .inner ul.sns li a:hover {
  opacity: 0.7;
}
nav .inner ul.sns li:nth-child(1) a {
  background-image: url(../../common/images/icon_insta.svg);
}
nav .inner ul.sns li:nth-child(2) {
  margin: 0 0 0 20px;
}
nav .inner ul.sns li:nth-child(2) a {
  background-image: url(../../common/images/icon_fb.svg);
}

main {
  width: 100%;
  min-width: 1200px;
  position: relative;
}
main h1 {
  width: 150px;
  position: fixed;
  left: 40px;
  top: 20px;
  z-index: 99;
}
main h1 a {
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  height: 73px;
}

/* -----footer----- */
footer {
  width: 100%;
  padding: 40px 80px;
  position: relative;
  box-sizing: border-box;
}
footer p {
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
}

/* pagetop */
#btn_pagetop {
  width: 82px;
  background-image: url(../images/icon_pgtop2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  background-color: whitesmoke;
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 999;
  display: none;
}
#btn_pagetop a {
  background-image: url(../images/icon_pgtop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-color: #111;
  height: 82px;
  display: block;
  transition: all 0.25s ease-in 0s;
}
#btn_pagetop a:hover {
  opacity: 0;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.nm {
  margin: 0px !important;
}

.btn {
  margin: 0px;
  padding: 0px;
  border: none;
  border-radius: 0px;
  background-color: transparent;
}

.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  background-color: transparent;
}

.btn a:hover {
  text-decoration: none;
}

/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media only screen and (max-width: 736px) {
  html {
    font-size: 2.6666666667vw;
  }

  a {
    color: #111;
    text-decoration: none;
    cursor: pointer;
  }

  a:hover, a:active, a.active {
    color: #111;
  }

  br.brsp {
    display: block;
  }

  .hum {
    width: 40px;
    height: 40px;
  }
  .hum span {
    width: 20px;
    height: 1px;
    left: 10px;
    transition: all 0.25s ease-in 0s;
  }
  .hum span:nth-child(1) {
    top: 13px;
  }
  .hum span:nth-child(2) {
    top: 20px;
  }
  .hum span:nth-child(3) {
    bottom: 13px;
  }
  .hum.active span:nth-child(1) {
    top: 20px;
  }
  .hum.active span:nth-child(2) {
    opacity: 0;
  }
  .hum.active span:nth-child(3) {
    bottom: 19px;
  }

  nav {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-clip-path: inset(0% 0% 0% 100%);
    clip-path: inset(0% 0% 0% 100%);
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  nav.active {
    -webkit-clip-path: inset(0% 0% 0% 0%);
    clip-path: inset(0% 0% 0% 0%);
    right: 0px;
  }

  main {
    min-width: 100%;
  }
  main h1 {
    width: 100px;
    left: calc(50% - 50px);
    top: 10px;
  }
  main h1 a {
    height: 49px;
  }

  /* -----footer----- */
  footer {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  footer p {
    color: #111;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
    text-align: left;
  }

  /* pagetop */
  #btn_pagetop {
    width: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
  }
  #btn_pagetop a {
    background-image: url(../images/icon_pgtop.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    background-color: #111;
    height: 40px;
    display: block;
    transition: all 0.25s ease-in 0s;
  }
  #btn_pagetop a:hover {
    opacity: 0;
  }
}

/*# sourceMappingURL=style_common.css.map */
