/*
Theme Name: new
*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .hm {
  position: fixed;
  top: 32px;
  width: 60px;
  height: 35px;
  left: 32px;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  header .hm:hover {
    cursor: pointer;
  }
}
header .hm__inner {
  width: 100%;
  height: 3px;
  background-color: #645654;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: left top;
}
header .hm__inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #645654;
  top: 16px;
  transition: all 0.3s ease;
}
header .hm__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #645654;
  top: 32px;
  transition: all 0.3s ease;
}
header .menu {
  position: absolute;
  top: 110vh;
  width: 100%;
  height: 100vh;
  background: #645654;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}
header .menu ul {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
header .menu ul li {
  text-align: center;
}
header .menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: bold;
}
header .menu.show {
  top: 0;
  opacity: 1;
}

.open .hm__inner {
  background: #fff !important;
  transform: rotate(45deg);
}
.open .hm__inner::before {
  background: #fff;
  opacity: 0;
}
.open .hm__inner::after {
  background: #fff;
  width: 100%;
  transform: rotate(-90deg);
  top: 0;
  left: 0;
  transform-origin: center bottom;
}

body {
  background: url(./img/background.png) repeat center center;
}

h2 {
  color: #645654;
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  color: #645654;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  color: #645654;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

section {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.mv {
  width: 100% !important;
  max-width: none !important;
  position: relative;
}
.mv__img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33vh;
  height: 33vh;
  background-color: white;
  border-radius: 6px;
}
.mv .logo__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .profile {
    display: flex;
    justify-content: space-between;
  }
  .profile__img {
    flex-basis: 48%;
  }
  .profile__text {
    flex-basis: 48%;
  }
}

.products__item {
  margin-bottom: 80px;
}
.products__item img {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .atelier {
    display: flex;
    justify-content: space-between;
  }
  .atelier__img {
    flex-basis: 48%;
  }
  .atelier__text {
    flex-basis: 48%;
  }
}
.atelier iframe {
  margin: 1rem 0;
}

footer {
  background: #645654;
  padding: 1rem 0;
  text-align: center;
  color: #fff;
}/*# sourceMappingURL=style.css.map */