﻿@charset "UTF-8";
*, ::after, ::before {
  box-sizing: border-box;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul, ol {
  padding-left: 1.5rem;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

audio, canvas, embed, iframe, img, object, svg, video {
  display: block;
  max-width: 100%;
}

canvas, img, svg, video {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
  max-width: 100%;
  vertical-align: top;
}

svg {
  overflow: hidden;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

a {
  text-decoration: none;
}

p {
  font-size: 0.9em;
  margin: 10px 0 0;
}

.large {
  font-size: 1.1em;
}

.bold {
  font-weight: bold;
}

.pconly {
  display: none;
}

.vertical {
  writing-mode: vertical-rl;
}

.youtube {
  width: 100%;
  height: auto;
  margin: auto;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.copyright {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 0.8em;
  letter-spacing: 0em;
}

.shareBox {
  width: 230px;
  margin: 50px auto 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: flex-start;
}

.shareButtons {
  flex: 0 0 auto;
}
.shareButtons a {
  display: block;
  width: 50px;
  height: 0px;
  margin: 0;
  padding: 50px 0 0;
  background-size: 50px;
  overflow: hidden;
}

.fbBtn {
  background: url("/Content/images/sns_ico_01_fb.svg") no-repeat;
}

.tweetBtn {
  background: url("/Content/images/sns_ico_02_tw.svg") no-repeat;
}

.lineBtn {
  background: url("/Content/images/sns_ico_03_line.svg") no-repeat;
}

@media screen and (min-width: 960px) {
  .sponly {
    display: none;
  }
  .pconly {
    display: block;
  }
}
:root {
  --white: #FFF;
  --black: #000;
  --bg-body: #fffdf7;
  --bg-primary: #70C240//プライマリー;
  --bg-secondary: #5EB336// セカンダリー;
  --bg-tertiary: #000046// ターシャリ;
  --bg-quaternary: #FFA800// クォータナリ;
  --c-body: #222;
  --c-primary: #222;
  --c-secondary: #750000;
  --c-tertiary: #FFA800;
  --c-quaternary: #FFA800;
  --c-error: #ff2525 // エラー用;
  --c-gray: #ccc //グレー;
  --c-gray-dark: #888 // 濃いめのグレー;
  --c-gray-light: #EEE // 明るめのグレー;
  --animate-duration: 1s;
  --animate-delay: .5s !important;
  --animate-repeat: 1;
}

@font-face {
  font-family: "PixelMplus12-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/PixelMplus12-Bold_web.woff2") format("woff2"), url("../fonts/PixelMplus12-Bold_web.woff") format("woff"), url("../fonts/PixelMplus12-Bold_web.ttf") format("truetype");
}
body {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--black);
  color: var(--c-primary);
  position: relative;
  letter-spacing: 0.2em;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url("/Content/images/nb/houseofq_bg.webp");
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  z-index: -1;
  opacity: 0.2;
}

header {
  width: 100%;
  height: 100vh;
  background: url("/Content/images/nb/houseofq_bg_heroarea_02.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  position: relative;
  padding-top: 10px;
}
header h1 {
  width: calc(100% - 40px);
  max-width: 640px;
  margin: auto;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}
header h1 img {
  width: 100%;
}
header .vertical {
  margin: 30px auto 0;
  color: var(--white);
  text-shadow: 0px 0px 10px #000, 0px 0px 5px #000, 0px 0px 5px #000;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  font-size: clamp(10px, 4.5vw, 80px);
}
header .vertical span {
  display: block;
}
header .vertical span:not(:first-of-type) {
  margin-top: 35vw;
  position: relative;
}
header .vertical span:not(:first-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: auto;
  background: #FFF;
  box-shadow: 0px 0px 15px #000, 0px 0px 10px #000, 0px 0px 5px #000, 0px 0px 3px #000;
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
}
header .vertical .ruby {
  display: inline-block;
  font-size: 1.6em;
  letter-spacing: 0.2em;
  margin: 5px 0;
  transform: skew(0, -15deg);
}

@media only screen and (min-width: 960px) {
  header {
    height: auto;
    background: url("/Content/images/nb/houseofq_bg_heroarea_03.webp") no-repeat;
    background-size: 100%;
    background-position: center;
    padding-top: 50px;
    aspect-ratio: 16/9;
    background-size: 100%;
  }
  header h1 {
    width: 40%;
    max-width: none;
  }
  header .vertical {
    font-size: clamp(10px, 2vw, 80px);
    margin: 0px auto 0px 50px;
  }
  header .vertical span:not(:first-of-type) {
    margin-top: 15vw;
    position: relative;
    letter-spacing: 0.2em;
  }
}
.pv {
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 30vw auto;
}

@media only screen and (min-width: 960px) {
  .pv {
    margin: 15vw auto;
  }
}
.story {
  padding: 100px 20px;
  background-image: url("/Content/images/nb/houseofq_bg_story.webp");
  background-size: 320px;
  color: var(--c-secondary);
  font-weight: bold;
  text-align: center;
  line-height: 1.8em;
  box-shadow: 0px 0px 50px 50px rgba(191, 92, 0, 0.2) inset, 0px 0px 40px 40px rgba(191, 92, 0, 0.1) inset, 0px 0px 30px 30px rgba(129, 62, 0, 0.1) inset, 0px 0px 20px 20px rgba(141, 68, 0, 0.1) inset, 0px 0px 10px 10px rgba(133, 64, 0, 0.1) inset;
}
.story p:not(:first-of-type) {
  margin-top: 50px;
}

@media only screen and (min-width: 560px) {
  .story {
    padding: 100px 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.8em;
    font-size: 2em;
  }
  .story p:not(:first-of-type) {
    margin-top: 50px;
  }
}
.description {
  margin: 100px auto;
  color: var(--white);
  text-align: center;
  line-height: 1.6em;
}
.description .carousel {
  width: calc(100% - 40px);
  max-width: 960px;
  height: auto;
  margin: 100px auto 0;
}
.description .carousel .desc_img img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.description .carousel .slick-list {
  border: solid 1px #FFF;
}
.description .carousel .slick-dots li {
  background-color: #FFF;
}
.description .carousel .slick-dots li.slick-active {
  background-color: #444;
}
.description .carousel .slick-prev,
.description .carousel .slick-next {
  display: none !important;
}

@media only screen and (min-width: 960px) {
  .description {
    margin: 100px auto;
    font-size: 2em;
  }
  .description .carousel {
    width: calc(100% - 80px);
  }
  .description .carousel .slick-list {
    border: solid 2px #FFF;
  }
}
footer {
  width: 100%;
  height: auto;
  display: block;
  padding: 200px 0 50px;
  color: #FFF;
  font-family: Arial, Helvetica, "sans-serif";
  text-align: center;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 50%);
}
footer .store {
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
footer .store h4 {
  width: 200px;
  margin: auto;
}
footer .store p {
  width: calc(100% - 40px);
  margin: 40px auto 0;
}
footer .store a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 1px;
  letter-spacing: 0;
  border-bottom: 1px solid #FFF;
  color: #FFF;
}
footer .taito {
  display: block;
  width: 160px;
  margin: 100px auto 0;
}
footer ul {
  margin: 50px auto 0;
  padding: 0;
  font-size: 0.8em;
  text-align: center;
  letter-spacing: 0.1em;
}
footer ul li {
  display: block;
  font-weight: bold;
}
footer ul li:not(:first-of-type) {
  margin-top: 20px;
}
footer ul li a {
  color: #FFF;
}

.copy {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 0.8em;
  letter-spacing: 0em;
  margin-top: 50px;
}

@media only screen and (min-width: 960px) {
  footer .store h4 {
    width: 200px;
    margin: auto;
  }
  footer .store p {
    margin-top: 50px;
  }
  footer ul {
    margin: 100px auto 0;
  }
  footer ul li {
    display: inline-block;
    margin: auto 20px;
  }
  footer ul li:not(:first-of-type) {
    margin-top: 0px;
  }
}/*# sourceMappingURL=house_of_q.css.map */