@charset "UTF-8";
/* 文字コードの指定 */
.header {
  position: fixed;
  top: 0rem;
  z-index: 100;
  width: 100%;
  background-color: #f7f0e1;
}

.header-logo-sp {
  text-align: center;
  width: 18rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .header-logo-sp {
    display: none;
  }
}

/* ハンバーガーボタン */
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 2rem;
  top: 2rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 2rem;
  height: 0.1rem;
  right: 0;
  background: #5d5d5d;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  background: #5d5d5d;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #5d5d5d;
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #5d5d5d;
  background: #f7f0e1;
  font-family: "Xingkai SC", Klee, serif;
  text-align: center;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

nav.globalMenuSp ul {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

nav.globalMenuSp ul li {
  list-style-type: none;
  font-size: 2.5rem;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #5d5d5d;
  padding: 0 0 2.5rem;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
  display: block;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hamburger-logo {
  width: 18rem;
  margin: 0 auto;
}

.header-title {
  font-weight: 100;
  font-size: 3rem;
}

.globalMenuPc {
  display: none;
}
@media (min-width: 769px) {
  .globalMenuPc {
    display: block;
    font-family: "Xingkai SC", Klee, serif;
    margin: 0 15%;
  }
}

.pc-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-logo-pc {
  width: 25rem;
}

html {
  font-size: 62.5%;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  /*←相対位置*/
}

body, html {
  padding: 0;
  margin: 0;
}

body {
  font-family: Klee, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: #5d5d5d;
  background-color: #f7f0e1;
  display: none;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #5d5d5d;
  text-decoration: none;
}

.hover-line {
  display: inline-block;
  position: relative;
}

.hover-line::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.hover-line:hover::after {
  transform: scale(1, 1);
}

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

.uppercase {
  text-transform: uppercase;
}

.main {
  margin-top: 12rem;
  margin-bottom: 7rem;
}
@media (min-width: 769px) {
  .main {
    margin-top: 15%;
    margin-bottom: 13%;
  }
}

.section-title {
  font-size: 2.4rem;
  font-family: "Xingkai SC", Klee, serif;
  font-weight: 100;
  text-align: center;
  margin: 0 0 5rem;
}
@media (min-width: 769px) {
  .section-title {
    font-size: 4rem;
    margin: 0 0 5%;
  }
}

.link {
  text-align: center;
}

.text-center {
  text-align: center;
}

.top-main {
  overflow-y: hidden;
  overflow-x: scroll;
  margin: 0;
  height: 100vh;
  /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#container {
  width: 298%;
  margin-left: 15vw;
  margin-right: 15vw;
}
@media (min-width: 769px) {
  #container {
    width: 223%;
    margin-left: 27vw;
    margin-right: 27vw;
  }
}

.section {
  display: block;
  width: 70vw;
  float: left;
  margin-left: 6vw;
}
@media (min-width: 769px) {
  .section {
    width: 46vw;
    margin-left: 13vw;
  }
}
.section:first-child {
  margin-left: 0;
}

.about-text {
  margin: 0 4.7rem 0;
}
@media (min-width: 769px) {
  .about-text {
    margin: 0 25%;
  }
}

.collection-container {
  margin: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .collection-container {
    margin: 0 15%;
  }
}

.collection-picture {
  position: relative;
  width: calc((100% - 2rem) / 2);
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .collection-picture {
    width: calc((100% - 5rem) / 2);
    margin-bottom: 5rem;
  }
}
.collection-picture .picture-active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.collection-picture .picture-active:hover {
  opacity: 1;
}
.collection-picture:nth-child(5) {
  margin-bottom: 0;
}
.collection-picture:nth-child(6) {
  margin-bottom: 0;
}

.collection {
  margin-left: 5rem;
  margin-right: 5rem;
}
@media (min-width: 769px) {
  .collection {
    margin-left: 15%;
    margin-right: 15%;
  }
}

.collection-title {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 400;
}
@media (min-width: 769px) {
  .collection-title {
    margin-bottom: 12rem;
    margin-left: 15%;
    font-size: 3rem;
  }
}

.collection-text {
  font-size: 1.6rem;
  margin: 0 0 3rem;
}
@media (min-width: 769px) {
  .collection-text {
    font-size: 2.4rem;
    margin-bottom: 12rem;
    margin-right: 15%;
    margin-left: 15%;
  }
}

.collection-container-single {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .collection-container-single {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.collection-picture-single {
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .collection-picture-single {
    width: 50%;
    margin-bottom: 12rem;
  }
}

@media (min-width: 769px) {
  .sizeup {
    width: 70%;
  }
}

@media (min-width: 769px) {
  .pc-right {
    text-align: right;
  }
}

.size-change {
  text-align: center;
}
@media (min-width: 769px) {
  .size-change {
    text-align: left;
  }
}

@media (min-width: 769px) {
  .pc-picture-size-75 {
    width: 75%;
  }
}

.picture-size-75 {
  width: 75%;
}

.link-container {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .link-container {
    margin: 0 20% 0;
  }
}

.news {
  margin-right: 4.7rem;
  margin-left: 4.7rem;
}
@media (min-width: 769px) {
  .news {
    margin-right: 25%;
    margin-left: 25%;
  }
}

.news-list {
  border-top: solid #c9c3b9 1px;
}

.news-date {
  font-size: 1.2rem;
  color: #c9c3b9;
}

.news-li-title {
  font-size: 1.8rem;
}

.list-last {
  border-bottom: solid #c9c3b9 1px;
}

.news-title {
  display: inline-block;
  font-family: Klee, sans-serif;
  text-align: left;
}
@media (min-width: 769px) {
  .news-title {
    font-size: 3.6rem;
  }
}

.news-image {
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .news-image {
    width: 70%;
    margin-bottom: 12%;
  }
}

.news-text {
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .news-text {
    margin-bottom: 20%;
  }
}

.contact {
  margin-right: 4.7rem;
  margin-left: 4.7rem;
}
@media (min-width: 769px) {
  .contact {
    margin-right: 25%;
    margin-left: 25%;
  }
}

.contact-text {
  display: inline-block;
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .contact-text {
    margin-bottom: 5rem;
    font-size: 1.8rem;
  }
}

.contact-mail {
  margin-bottom: 4rem;
  font-size: 1.6rem;
}
@media (min-width: 769px) {
  .contact-mail {
    margin-bottom: 6rem;
  }
}

input {
  border: none;
  background: #f7f0e1;
  outline: none;
  border-bottom: solid 1px #5d5d5d;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  input {
    margin-bottom: 4rem;
  }
}

.input-form {
  width: 70%;
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .input-form {
    width: 50%;
  }
}

textarea {
  border: none;
  background: #f7f0e1;
  outline: none;
  border-bottom: solid 1px #5d5d5d;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  textarea {
    margin-bottom: 5rem;
  }
}

label {
  font-size: 1.6rem;
}

.contact-submit {
  text-align: center;
}

.submit {
  border: solid 1px #5d5d5d;
  padding: 1rem;
  background: #aeb1c3;
}

.finish-title {
  font-size: 1.8rem;
}
@media (min-width: 769px) {
  .finish-title {
    font-size: 2.4rem;
  }
}

.finish-text {
  font-size: 1.4rem;
  margin-bottom: 8rem;
}
@media (min-width: 769px) {
  .finish-text {
    font-size: 1.8rem;
    margin-bottom: 12rem;
  }
}

footer {
  width: 100%;
}

.footer-short {
  position: absolute;
  bottom: 0;
}

.footer-short-sp {
  position: absolute;
  bottom: 0;
}
@media (min-width: 769px) {
  .footer-short-sp {
    position: static;
  }
}

.copyright {
  font-size: 1rem;
  text-align: center;
  background-color: #e5e2dd;
  padding: 0.5rem 0 0.5rem;
}

/*# sourceMappingURL=style.css.map */
