@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif,-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI";
}

@media (min-width: 451px) {
  h1 {
    font-size: 3rem;
  }
}

.first-view {
  position: relative;
}

.first-view .one-time img {
  width: auto;
  height: 100vh;
}

@media screen and (min-width: 450px) {
  .first-view .one-time img {
    width: 100%;
  }
}

.inner-box {
  width: 444px;
  height: 450px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.578);
  text-align: center;
}

.inner-box h3 {
  color: #fff;
  padding-top: 20px;
  font-weight: 400;
  font-size: 15px;
}

.inner-box .icon {
  color: #fff;
  font-size: 55px;
}

.inner-box h1 {
  color: #fff;
  font-size: 55px;
  margin-top: 10px;
}

@media screen and (min-width: 450px) {
  .inner-box h3 {
    color: #fff;
    padding-top: 50px;
    font-weight: 400;
  }
  .inner-box .icon {
    color: #fff;
    font-size: 70px;
  }
  .inner-box h1 {
    color: #fff;
    font-size: 85px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .inner-box {
    width: 222px;
    height: 225px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
  }
}

.header {
  height: 60px;
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #333;
  display: none;
  z-index: 10;
}

.header .header-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header .header-item .logo {
  position: absolute;
  left: 30px;
  top: 10px;
}

.header .header-item .logo .hd-icon {
  font-size: 40px;
  margin-right: 100px;
}

.header .header-item .header-list {
  position: absolute;
  right: 0;
  top: 40%;
}

.header .header-item .header-list ul {
  display: flex;
}

.header .header-item .header-list ul li {
  list-style: none;
  margin-right: 40px;
}

.header .header-item .header-list ul li a {
  text-decoration: none;
  color: #333;
}

.header .header-item .header-list ul li a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 450px) {
  .header {
    display: block;
  }
}

.nav {
  background: #fff;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.5, 0, 0.5, 1);
  position: fixed;
  top: 0;
  z-index: 100;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 3em 6em;
}

.nav__item {
  margin-bottom: 3em;
}

.nav__link {
  text-decoration: none;
  color: #333;
}

.nav__link:hover {
  text-decoration: underline;
  color: navy;
}

.nav__toggle {
  position: absolute;
  top: 2em;
  left: 0;
  transform: translateX(-100%);
  background: #fff;
  padding: 1.3em .8em;
  border: 0;
  border-radius: .25em 0 0 .25em;
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 2em;
  height: 3px;
  background: #333;
  transition: transform 350ms ease-in-out, opacity 200ms linear;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  bottom: 6px;
}

.hamburger::after {
  top: 6px;
}

/* Navigation open styles */
.nav-open .nav {
  transform: translateX(0);
  box-shadow: 0 0 3em rgba(0, 0, 0, 0.15);
}

/* Change this stuff below */
.nav-open .hamburger {
  transform: rotate(45deg);
}

.nav-open .hamburger::before {
  opacity: 0;
}

.nav-open .hamburger::after {
  transform: rotate(90deg) translate(-6px);
}

@media screen and (min-width: 450px) {
  .nav {
    display: none;
  }
}

.news {
  height: 500px;
  text-align: center;
}

.news .multiple-items {
  text-align: center;
}

.news .multiple-items img {
  margin: 0 auto;
  filter: grayscale(60%);
}

.news .multiple-items {
  position: relative;
}

.news #arrows i {
  font-size: 20px !important;
  color: #000 !important;
}

.news .dots {
  position: relative;
  text-align: center;
  margin: 50px 0;
}

.concept {
  margin-top: 20px;
  position: relative;
  height: 700px;
  overflow-X: hidden;
  height: 600px;
}

.concept img {
  filter: grayscale(100%);
  height: 100%;
}

.concept .concept-desc {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 2px 1px 1px #333;
}

@media screen and (min-width: 450px) {
  .concept {
    height: 900px;
  }
  .concept img {
    width: 100%;
    height: 100%;
  }
  .concept .concept-desc {
    padding: 0 15px;
  }
  .concept .concept-desc h1 {
    font-size: 45px;
  }
  .concept .concept-desc h2 {
    font-size: 40px;
  }
  .concept .concept-desc p {
    font-size: 16px;
  }
}

button {
  border: 1px solid #333;
  padding: 10px 40px;
  margin: 40px 0;
}

button:hover {
  opacity: 0.7;
}

.products {
  text-align: center;
}

.products h1 {
  margin-top: 10vh;
}

.products p {
  padding: 0 25px;
}

.products .products-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  max-width: 1500px;
}

.products .products-list ul li {
  list-style: none;
  margin-right: 5px;
  margin-bottom: 5px;
}

.products .products-list ul li img {
  width: 100px;
  height: 100px;
}

@media (max-width: 350px) {
  .products .products-list {
    padding: 0 25px;
  }
  .products .products-list ul li img {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 450px) {
  .products .products-list {
    padding: 0 25px;
  }
  .products .products-list ul li img {
    width: 300px;
    height: 280px;
  }
}

@media (min-width: 1000px) {
  .products .products-list ul {
    padding: 0 120px;
  }
}

@media (min-width: 1500px) {
  .products .products-list {
    padding: 0 200px;
  }
  .products .products-list ul li img {
    width: 350px;
    height: 320px;
  }
}

.interior {
  text-align: center;
  margin-bottom: 30px;
}

.interior h1 {
  margin-top: 10vh;
}

.interior p {
  padding: 0 15px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.interior img {
  max-width: 1500px;
  width: 90%;
  margin-top: 30px;
}

.gallary {
  text-align: center;
  height: 450px;
}

.gallary h1 {
  margin-top: 10vh;
}

.gallary .your-class img {
  max-height: 300px;
  width: 100%;
}

@media screen and (min-width: 450px) {
  .gallary {
    height: 700px;
  }
}

@media screen and (min-width: 2000px) {
  .gallary .your-class img {
    max-height: 500px;
    width: 100%;
  }
}

.gap {
  height: 300px;
  background-image: url(../images/couch-447484_1280.jpg);
  background-size: 375px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 450px) {
  .gap {
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
  }
}

.store {
  overflow-x: hidden;
  text-align: center;
}

.store h1 {
  margin-top: 10vh;
}

.store .map-desc {
  text-align: center;
}

.store .map-desc ul {
  display: inline-block;
}

.store .map-desc ul li {
  text-align: left;
  list-style: none;
  list-style: circle;
  text-decoration: underline;
  text-decoration-color: #8ddd8d;
}

.footer {
  height: 140px;
  border-top: 1px solid #333;
}

.footer .footer-list ul {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-list ul li {
  list-style: none;
  font-size: 12px;
  margin-right: 30px;
}

.footer .footer-bottom {
  margin-top: 40px;
  text-align: center;
  height: 40px;
  background-color: #333;
  color: #fff;
  bottom: 0;
}
