@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

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

body {
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  overflow: hidden;
}

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

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: calc(var(--vh) * 100);
  min-height: 100%;
  background-color: #FFF;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
  transition: opacity 0.5s ease-in-out 0.25s;
}
#loader h3 {
  width: 208px;
  height: 198px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 99px);
  left: calc(50% - 104px);
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: #000;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  display: block;
}

.loaded main {
  opacity: 1;
}

nav {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: calc(-100% + 40px);
  z-index: 10;
  transition: all 0.5s ease-out 0s;
}
nav::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
nav.on {
  left: 0px;
}
nav.on::before {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
}
nav.on .inner {
  width: 50%;
}
nav .inner {
  width: 100%;
  height: 100%;
  border-right: solid 1px #000;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: all 0.5s ease-out 0s;
}
nav .inner .hum {
  width: 12px;
  height: 34px;
  position: absolute;
  top: 20px;
  right: 10px;
}
nav .inner .hum div {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
nav .inner .hum div span {
  width: 2px;
  height: 100%;
  background-color: #000;
  display: block;
}
nav .inner .text {
  height: calc(100% - 10px);
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0px;
  right: 10px;
}
nav .inner .text h2 {
  background-color: #000;
  padding: 4px 2px;
  border-radius: 4px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  order: 2;
}
nav .inner .text h2 span {
  color: #FFF;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
}
nav .inner .text p {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
  margin-bottom: 20px;
  order: 1;
}
nav .inner .links {
  text-align: left;
}
nav .inner .links dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
nav .inner .links dl:not(:last-child) {
  margin-bottom: 50px;
}
nav .inner .links dl dt {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
nav .inner .links dl dt:not(:last-child) {
  margin-bottom: 20px;
}
nav .inner .links dl dd {
  cursor: pointer;
}
nav .inner .links dl dd:not(:last-child) {
  margin-bottom: 10px;
}
nav .inner .links dl dd.on {
  background-color: #000;
}
nav .inner .links dl dd.on span {
  color: #FFF;
}
nav .inner .links dl dd:hover {
  opacity: 0.7;
}
nav .inner .links dl dd span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
nav .inner .links ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
nav .inner .links ul li {
  width: 140px;
}
nav .inner .links ul li:not(:last-child) {
  margin-bottom: 10px;
}
nav .inner .links ul li a {
  width: 100%;
  height: 24px;
  border: solid 1px #000;
  border-radius: 12px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
}
nav .inner .links ul li a:hover {
  background-color: #000;
}
nav .inner .links ul li a:hover span {
  color: #FFF;
}
nav .inner .links ul li a span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.2s ease-in;
}

main {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}
main #contents {
  width: calc(100% - 40px);
}
main #contents header {
  width: 100%;
  padding: 35px 60px 50px 60px;
  position: relative;
  box-sizing: border-box;
}
main #contents header .inner {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents header .inner .inhead {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main #contents header .inner .inhead:not(:last-child) {
  margin-bottom: 50px;
}
main #contents header .inner .inhead h1 {
  width: 208px;
  height: 198px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  order: 2;
}
main #contents header .inner .inhead > div p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents header .inner .inhead > div p:not(:last-child) {
  margin-bottom: 20px;
}
main #contents header .inner .inhead > div p.notice {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents header .inner dl.hash {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents header .inner dl.hash dd {
  width: auto;
  height: 45px;
  padding: 0 30px;
  margin: 5px;
  border: solid 2px #000;
  border-radius: 24px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
  cursor: pointer;
}
main #contents header .inner dl.hash dd.on {
  background-color: #000;
}
main #contents header .inner dl.hash dd.on span {
  color: #FFF;
}
main #contents header .inner dl.hash dd:hover {
  opacity: 0.7;
}
main #contents header .inner dl.hash dd span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  transition: all 0.25s ease-in 0s;
}
main #contents section#products {
  width: 100%;
  min-height: 50vh;
  border-top: solid 1px #000;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
main #contents section#products::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}
main #contents section#products .thumb {
  width: 50%;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
main #contents section#products .thumb.hide {
  background-color: transparent !important;
}
main #contents section#products .thumb.hide .category,
main #contents section#products .thumb.hide .info,
main #contents section#products .thumb.hide .inthumb {
  opacity: 0;
}
main #contents section#products .thumb.type-art {
  background-color: #FFF500;
}
main #contents section#products .thumb.type-anime {
  background-color: #F886DE;
}
main #contents section#products .thumb.type-logo {
  background-color: #69FFC6;
}
main #contents section#products .thumb.type-music {
  background-color: #FD8C94;
}
main #contents section#products .thumb.type-movie {
  background-color: #64E055;
}
main #contents section#products .thumb.type-sports {
  background-color: #0BDBFF;
}
main #contents section#products .thumb.type-manga {
  background-color: #FDC406;
}
main #contents section#products .thumb .category {
  width: 24px;
  padding: 10px 0;
  border: solid 1px #000;
  border-radius: 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in 0s;
}
main #contents section#products .thumb .category span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
}
main #contents section#products .thumb .info {
  width: 30px;
  height: calc(100% - 70px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 10px;
  z-index: 1;
  transition: all 0.5s ease-in 0s;
}
main #contents section#products .thumb .info .name {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  top: -30px;
  left: 8px;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
main #contents section#products .thumb .info .name span {
  white-space: nowrap;
}
main #contents section#products .thumb .info .name span:nth-child(1) {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0em;
}
main #contents section#products .thumb .info .name span:nth-child(2) {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 10px;
}
main #contents section#products .thumb .info .data {
  margin-top: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents section#products .thumb .info .data::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  margin-bottom: 10px;
  display: block;
  order: 2;
}
main #contents section#products .thumb .info .data span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
}
main #contents section#products .thumb .info .data span:nth-child(1) {
  margin-bottom: 10px;
  order: 1;
}
main #contents section#products .thumb .info .data span:nth-child(2) {
  order: 3;
}
main #contents section#products .thumb .arrow {
  width: 26px;
  height: 34px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc((100% - 200px) * 1.05 / 2 - 25px - 17px);
  z-index: 3;
}
main #contents section#products .thumb .arrow.prev {
  left: 40px;
}
main #contents section#products .thumb .arrow.next {
  right: 40px;
  transform: rotate(180deg);
}
main #contents section#products .thumb .inthumb {
  width: calc(100% - 200px);
  height: 100%;
  padding: 50px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.5s ease-in 0s;
}
main #contents section#products .thumb .inthumb.slider {
  overflow: hidden;
  position: relative;
}
main #contents section#products .thumb .inthumb .photo {
  width: 100%;
  height: auto;
  position: relative;
}
main #contents section#products .thumb .inthumb .photo:not(:last-child) {
  margin-bottom: 40px;
}
main #contents section#products .thumb .inthumb .photo .baloon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  /*
  &.b2{
  	width: 224px;
  	height: 50px;
  	background-image: url(../images/baloon2.png);
  	transform: translate(calc(-224px - 30px), 80px) rotate(-8deg);
  	&.posi2{ transform: translate(40px, 40px) rotate(0deg); }
  }
  &.b3{
  	width: 148px;
  	height: 67px;
  	background-image: url(../images/baloon4.png);					
  	transform: translate(calc(-148px - 40px), 80px) rotate(8deg);
  	&.col2{ background-image: url(../images/baloon7.png); }
  	&.posi2{
  		transform: translate(calc(-148px - 100px), 120px) rotate(-11deg);
  		span{ line-height: 1.2; }
  	}
  }
  &.b4{
  	width: 150px;
  	height: 100px;
  	background-image: url(../images/baloon5.png);					
  	transform: translate(80px, 80px) rotate(0deg);
  }
  &.b5{
  	width: 123px;
  	height: 123px;
  	background-image: url(../images/baloon6.png);					
  	transform: translate(60%, -250px) rotate(0deg);
  	span{
  		line-height: 1.2;
  		transform: rotate(19deg);
  	}
  	&.col2{ background-image: url(../images/baloon8.png); }
  	&.posi2{
  		transform: translate(100px, -240px) rotate(0deg);
  	}
  }
  */
}
main #contents section#products .thumb .inthumb .photo .baloon.b1 {
  width: 212px;
  height: 86px;
  background-image: url(../images/baloon1.png);
  transform: translate(60px, 40px) rotate(20deg);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.col2 {
  background-image: url(../images/baloon2.png);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.col3 {
  background-image: url(../images/baloon3.png);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.col4 {
  background-image: url(../images/baloon4.png);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.col5 {
  background-image: url(../images/baloon5.png);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.col6 {
  background-image: url(../images/baloon6.png);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi2 {
  transform: translate(-262px, -200px) rotate(-10deg) scale(-1, 1);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi2 span {
  transform: scale(-1, 1) translateY(-10px);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi3 {
  transform: translate(50px, -150px) rotate(14deg);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi4 {
  transform: translate(50px, -43px) rotate(20deg);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi5 {
  transform: translate(-262px, 100px) rotate(-15deg) scale(-1, 1);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi5 span {
  transform: scale(-1, 1) translateY(-15px);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi6 {
  transform: translate(100px, -200px) rotate(10deg);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi7 {
  transform: translate(80px, -220px) rotate(5deg);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi8 {
  transform: translate(-332px, 0px) rotate(-20deg) scale(-1, 1);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1.posi8 span {
  transform: scale(-1, 1) translateY(-10px);
}
main #contents section#products .thumb .inthumb .photo .baloon.b1 span {
  transform: translateY(-10px);
}
main #contents section#products .thumb .inthumb .photo .baloon span {
  color: #FFF;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  white-space: nowrap;
  position: relative;
}
main #contents section#products .thumb .inthumb .text {
  text-align: left;
  width: 100%;
}
main #contents section#products .thumb .inthumb .text:not(:last-child) {
  margin-bottom: 40px;
}
main #contents section#products .thumb .inthumb .text p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents section#products .thumb .inthumb .text p a {
  color: #0083E3;
  text-decoration: underline;
}
main #contents section#products .thumb .inthumb .text p a:hover {
  color: #FFF;
}
main #contents section#products .thumb .inthumb .credit {
  width: 100%;
  margin-top: auto;
}
main #contents section#products .thumb .inthumb .credit > div dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
main #contents section#products .thumb .inthumb .credit > div dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
main #contents section#products .thumb .inthumb .credit > div dl dt span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
  position: relative;
  transform: translateY(-0.2rem);
}
main #contents section#products .thumb .inthumb .credit > div dl dt span:nth-child(3) {
  margin-left: 10px;
}
main #contents section#products .thumb .inthumb .credit > div dl dt strong {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
main #contents section#products .thumb .inthumb .credit > div dl dd {
  width: 65%;
  height: 50px;
}
main #contents section#products .thumb .inthumb .credit > div dl dd a {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 5px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
main #contents section#products .thumb .inthumb .credit > div dl dd a:hover {
  background-color: #FFF;
}
main #contents section#products .thumb .inthumb .credit > div dl dd a:hover span {
  color: #000;
}
main #contents section#products .thumb .inthumb .credit > div dl dd a span {
  color: #FFF;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}

footer {
  text-align: left;
  width: 100%;
  background-color: #FFF;
  padding: 60px 0 70px 0;
  position: relative;
  z-index: 0;
}
footer .infoot {
  width: 100%;
  padding: 0 30px 0 70px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
footer .infoot .link ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
}
footer .infoot .link ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .infoot .link ul li a, footer .infoot .link ul li span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .link ul li a:hover, footer .infoot .link ul li span:hover {
  color: #E6E6E6;
}
footer .infoot .link p {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
}
footer .infoot .pgtop {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
footer .infoot .pgtop span {
  color: #000;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
}
footer .infoot .pgtop span:hover {
  color: #666666;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  nav {
    width: 100%;
    height: 40px;
    left: 0px;
    transition: all 0.5s ease-out 0s;
  }
  nav::before {
    content: "";
    width: 100%;
    height: 1px;
  }
  nav.on {
    height: 100vh;
    left: 0px;
  }
  nav.on::before {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
  }
  nav.on .inner {
    width: 100%;
  }
  nav.on .inner .hum div span:nth-child(1) {
    top: 7px;
  }
  nav.on .inner .hum div span:nth-child(2) {
    top: 7px;
  }
  nav.on .inner .hum div span:nth-child(3) {
    top: 7px;
  }
  nav.on .inner .links {
    opacity: 1;
    pointer-events: auto;
  }
  nav .inner {
    width: 100%;
    height: 40px;
    border-right: none;
    border-bottom: solid 1px #000;
    background-color: #FFF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: all 0.5s ease-out 0s;
  }
  nav .inner .hum {
    width: 34px;
    height: 12px;
    position: absolute;
    top: 10px;
    right: auto;
    left: 10px;
  }
  nav .inner .hum div {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  nav .inner .hum div span {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0px;
    transition: all 0.25s ease-in 0s;
  }
  nav .inner .hum div span:nth-child(1) {
    top: 2px;
  }
  nav .inner .hum div span:nth-child(2) {
    top: 7px;
  }
  nav .inner .hum div span:nth-child(3) {
    top: 12px;
  }
  nav .inner .text {
    width: 100%;
    height: 40px;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 10px;
  }
  nav .inner .text h2 {
    margin-left: 10px;
    padding: 2px 4px;
    border-radius: 4px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    order: 2;
  }
  nav .inner .text h2 span {
    color: #FFF;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    writing-mode: horizontal-tb;
  }
  nav .inner .text p {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    writing-mode: horizontal-tb;
    margin-bottom: 0px;
    order: 1;
  }
  nav .inner .links {
    text-align: left;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
  }
  nav .inner .links > div dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav .inner .links > div dl:not(:last-child) {
    margin-bottom: 40px;
  }
  nav .inner .links > div dl dt {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  nav .inner .links > div dl dt:not(:last-child) {
    margin-bottom: 10px;
  }
  nav .inner .links > div dl dd {
    cursor: pointer;
  }
  nav .inner .links > div dl dd:not(:last-child) {
    margin-bottom: 5px;
  }
  nav .inner .links > div dl dd.on {
    background-color: #000;
  }
  nav .inner .links > div dl dd.on span {
    color: #FFF;
  }
  nav .inner .links > div dl dd:hover {
    opacity: 1;
  }
  nav .inner .links > div dl dd span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  nav .inner .links > div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav .inner .links > div ul li {
    width: 140px;
  }
  nav .inner .links > div ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  nav .inner .links > div ul li a:hover {
    background-color: #000;
  }
  nav .inner .links > div ul li a:hover span {
    color: #FFF;
  }
  nav .inner .links > div ul li a span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents {
    width: 100%;
  }
  main #contents header {
    width: calc(100% - 40px);
    padding: 60px 0px 50px 0px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
  main #contents header .inner {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents header .inner .inhead {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents header .inner .inhead:not(:last-child) {
    margin-bottom: 50px;
  }
  main #contents header .inner .inhead h1 {
    width: 180px;
    height: 171px;
    margin-bottom: 20px;
    order: 1;
  }
  main #contents header .inner .inhead > div {
    order: 2;
  }
  main #contents header .inner .inhead > div p {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
  }
  main #contents header .inner .inhead > div p:not(:last-child) {
    margin-bottom: 20px;
  }
  main #contents header .inner .inhead > div p.notice {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
  }
  main #contents header .inner .inhead > div p br {
    display: none;
  }
  main #contents header .inner dl.hash {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents header .inner dl.hash dd {
    width: auto;
    height: 32px;
    padding: 0 15px;
    margin: 5px;
    border-radius: 24px;
  }
  main #contents header .inner dl.hash dd:hover {
    opacity: 1;
  }
  main #contents header .inner dl.hash dd span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main #contents section#products {
    width: 100%;
    min-height: 50vh;
    border-top: solid 1px #000;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents section#products::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
  }
  main #contents section#products .thumb {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #000;
  }
  main #contents section#products .thumb .category {
    width: 22px;
    padding: 10px 0;
    top: 10px;
    right: 10px;
  }
  main #contents section#products .thumb .category span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main #contents section#products .thumb .info {
    width: 20px;
    height: calc(100% - 70px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 40px;
    left: 10px;
    z-index: 1;
    transition: all 0.5s ease-in 0s;
  }
  main #contents section#products .thumb .info .name {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    top: -30px;
    left: 0px;
    transform: rotate(90deg);
    transform-origin: bottom left;
  }
  main #contents section#products .thumb .info .name span {
    white-space: nowrap;
  }
  main #contents section#products .thumb .info .name span:nth-child(1) {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0em;
  }
  main #contents section#products .thumb .info .name span:nth-child(2) {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 10px;
  }
  main #contents section#products .thumb .info .name span:nth-child(2).s {
    font-size: 1.4rem;
  }
  main #contents section#products .thumb .info .data {
    margin-top: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents section#products .thumb .info .data::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #000;
    margin-bottom: 10px;
    display: block;
    order: 2;
  }
  main #contents section#products .thumb .info .data span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    writing-mode: vertical-rl;
  }
  main #contents section#products .thumb .info .data span:nth-child(1) {
    margin-bottom: 10px;
    order: 1;
  }
  main #contents section#products .thumb .info .data span:nth-child(2) {
    order: 3;
  }
  main #contents section#products .thumb .arrow {
    width: 26px;
    height: 34px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    position: absolute;
    top: calc((100% - 200px) * 1.05 / 2 - 25px - 17px);
    z-index: 3;
  }
  main #contents section#products .thumb .arrow.prev {
    left: 20px;
  }
  main #contents section#products .thumb .arrow.next {
    right: 20px;
    transform: rotate(180deg);
  }
  main #contents section#products .thumb .inthumb {
    width: calc(100% - 100px);
    height: 100%;
    padding: 25px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents section#products .thumb .inthumb .photo:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1 {
    width: 160.74px;
    height: 65.36px;
    transform: translate(0px, 40px) rotate(20deg);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.col2 {
    background-image: url(../images/baloon2.png);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.col3 {
    background-image: url(../images/baloon3.png);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.col4 {
    background-image: url(../images/baloon4.png);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.col5 {
    background-image: url(../images/baloon5.png);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.col6 {
    background-image: url(../images/baloon6.png);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi2 {
    transform: translate(-150px, -130px) rotate(-10deg) scale(-1, 1);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi2 span {
    transform: scale(-1, 1) translateY(-5px);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi3 {
    transform: translate(0px, 0px) rotate(14deg);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi4 {
    transform: translate(20px, -80px) rotate(20deg);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi5 {
    transform: translate(-150px, 20px) rotate(-15deg) scale(-1, 1);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi5 span {
    transform: scale(-1, 1) translateY(-5px);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi5.sp {
    transform: translate(-150px, -130px) rotate(-20deg) scale(-1, 1);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi6 {
    transform: translate(0px, 0px) rotate(10deg);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi7 {
    transform: translate(0px, -140px) rotate(5deg);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi8 {
    transform: translate(-160px, 40px) rotate(-20deg) scale(-1, 1);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1.posi8 span {
    transform: scale(-1, 1) translateY(-5px);
  }
  main #contents section#products .thumb .inthumb .photo .baloon.b1 span {
    transform: translateY(-5px);
  }
  main #contents section#products .thumb .inthumb .photo .baloon span {
    color: #FFF;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
  }
  main #contents section#products .thumb .inthumb .text {
    text-align: left;
    width: 100%;
  }
  main #contents section#products .thumb .inthumb .text:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents section#products .thumb .inthumb .text p {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0em;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dt span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dt span:nth-child(3) {
    margin-left: 5px;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dt strong {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dt strong:nth-child(2) {
    margin-left: 2px;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dd {
    width: 55%;
    height: 50px;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dd a {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dd a:hover {
    background-color: #FFF;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dd a:hover span {
    color: #000;
  }
  main #contents section#products .thumb .inthumb .credit > div dl dd a span {
    color: #FFF;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  footer {
    padding: 40px 0 60px 0;
  }
  footer .infoot {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  footer .infoot .link ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  footer .infoot .link ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .infoot .link ul li a, footer .infoot .link ul li span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot .link ul li a:hover, footer .infoot .link ul li span:hover {
    color: #E6E6E6;
  }
  footer .infoot .link p {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
  }
  footer .infoot .pgtop {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  footer .infoot .pgtop span {
    color: #000;
    font-family: "aktiv-grotesk-condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
  }
  footer .infoot .pgtop span:hover {
    color: #666666;
  }
}/*# sourceMappingURL=style.css.map */