@charset "utf-8";
/* CSS Document */
html {
   scroll-behavior: smooth;
  font-size: 62.5%;
  width: 100%;
}
body {
  color: #333;
  font-family: "遊ゴシック", "遊ゴシック体", Helvetica, Arial, YuGothic, "メイリオ", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h1 {
  font-size: 3.0rem;
}
section h2 {
  font-size: 2.4rem;
}
.section-product h3 {
  font-weight: 600;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*画像コピー禁止*/
img {
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
/*ヘッダー*/
header {
  /*box-shadow: 3px 3px 7px #bababa;*/
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 80;
}
.nav_title {
  margin: 20px 0 15px 20px;
  font-size: 2.4rem;
  border-bottom: double 5px #2f2f2f;
  width: 70px;
}
.nav_menu li {
  display: grid;
}
.nav_menu a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #333;
  font-weight: 300;
  text-align: left;
  margin-top: 11px;
  margin-left: 20px;
  padding-bottom: 15px;
}
.nav_menu a:hover {
  color: #bbb;
  transition: 0.5s;
}
.none {
  display: none;
}
#nav-drawr {
  padding: 12px 10px 0 0;
  text-align: right;
  position: relative;
}
#nav-open {
  position: fixed;
  top: -2px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border-radius: 3px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  border-radius: 3px;
  position: absolute;
  height: 3px;
  width: 28px;
  background-color: #333;
  display: block;
  content: " ";
  transition: all 0.3s ease-in-out 0s;
}
#nav-open span:before {
  bottom: 8px;
}
#nav-open span:after {
  top: 8px;
}
#nav-input:checked ~ #nav-open span {
  background-color: rgba(255, 255, 255, 0);
}
#nav-input:checked ~ #nav-open span::before {
  bottom: 0;
  transform: rotate(-45deg);
  right: -1px;
  top: 0px;
}
#nav-input:checked ~ #nav-open span::after {
  bottom: 0;
  transform: rotate(45deg);
  right: -1px;
  top: 0px;
}
#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
}
#nav-content {
  width: 60%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
  box-shadow: 3px 5px 7px #999;
  transform: translateX(-105%);
  transition: 0.3s ease-in-out;
}
.nav_hr {
  margin: 10px auto 20px;
  width: 87%;
  border: dashed 1px #333;
}
/*ウェルカムイメージ*/
.welcome_img {
  margin: 20px auto;
  max-width: 69%;
}
/*SNS*/
.sns-icon {
  display: block;
}
.pixiv_size {
  margin-right: 13px;
  width: 33px;
  height: 33px;
}
.booth_size {
  margin-right: 13px;
  width: 33px;
  height: 33px;
}
.X_size {
  margin-right: 13px;
  width: 32px;
  height: 32px;
}
/*footer*/
.footer {
  background: #333;
  width: 100%;
  height: 42px;
  margin-top: 60px;
  padding: 9px 0 0 0;
}
.nav_menu-footer li {
  display: block;
}
.nav_menu-footer a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  margin-left: 19px;
}
.nav_menu-footer a:first-child {
  margin-left: 0px;
}
/*トップ*/
#page-top a {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  /*border-radius: 100px;*/
  text-orientation: upright;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  border: solid 3px #fff;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.7rem;
  padding: 9px;
  letter-spacing: 1px;
  line-height: 1.9rem;
  transition: all 0.3s;
  margin-bottom: 15px;
}
#page-top a:hover {
  background: rgba(255, 255, 255, 0.9);
  border: solid 3px #333;
  color: #333;
  font-weight: 600;
}
#page-top {
  position: fixed;
  right: 0px;
  bottom: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove {
  animation: UpAnime 0.1s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.1s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media screen and (min-width: 637px) {
  #nav-content {
    width: 20%;
  }
  .welcome_img {
    max-width: 50%;
  }
}