@charset "UTF-8";
/* --------------------
		setting
-------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
:root {
  --c-txt: #333;
  --c-bk: #E6E5E2;
  --c-point: #BAA97B;
}

@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
/* --------------------
		content
-------------------- */
#content {
  overflow: hidden;
  position: relative;
  line-height: 1;
  color: var(--c-txt);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
}
#content img {
  width: 100%;
  height: auto;
}

header {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  header {
    margin-bottom: 100px;
  }
}
header h1 {
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  header h1 {
    margin-bottom: 100px;
  }
}
header p {
  font-size: 3.7333333333vw;
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  header p {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
}
header p span:first-child {
  display: block;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  header p span:first-child {
    margin-bottom: 30px;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  width: 80vw;
  margin: 0 auto;
  margin-bottom: 26.6666666667vw;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .nav {
    margin: 0 auto 100px;
    overflow-x: visible;
    padding: 0;
    justify-content: center;
  }
}
.nav li {
  width: 16vw;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .nav li {
    width: 105px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .nav li:nth-child(n+2) {
    margin-left: 20px;
  }
}
.nav__img {
  width: 28vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .nav__img {
    width: 105px;
    margin-bottom: 20px;
    position: relative;
  }
  .nav__img:hover img:first-of-type {
    opacity: 0;
  }
  .nav__img:hover img:last-of-type {
    opacity: 1;
  }
  .nav__img img {
    transition: opacity 0.5s;
  }
  .nav__img img:last-of-type {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
}
.nav__txt {
  font-size: 3.4666666667vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1000px) {
  .nav__txt {
    font-size: 15px;
  }
}
.nav .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav li a {
  display: block;
}

section {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  section {
    padding-bottom: 150px;
  }
}

.sec-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .sec-img {
    flex-wrap: nowrap;
    margin-bottom: 50px;
  }
}
.sec-img li {
  width: 49.3333333333vw;
  width: 50%;
}
@media screen and (min-width: 1000px) {
  .sec-img li {
    width: 25%;
  }
}

@media screen and (min-width: 1000px) {
  .inner {
    padding: 0 0 0 3.125vw;
  }
}
.inner p {
  width: 80vw;
  margin: 0 auto 13.3333333333vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1000px) {
  .inner p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 50px;
  }
}
.inner .inner__p-top {
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  .inner .inner__p-top {
    margin-bottom: 2.34375vw;
  }
}
.inner .inner__point {
  font-size: 3.7333333333vw;
  display: inline-block;
  font-weight: bold;
  margin: 0 0 2.6666666667vw 8.8vw;
}
@media screen and (min-width: 1000px) {
  .inner .inner__point {
    font-size: 14px;
    margin: 0 0 10px -5px;
  }
}
.inner .inner__point::before {
  content: "";
  display: inline-block;
  width: 5.3333333333vw;
  height: 0.2666666667vw;
  background-color: var(--c-txt);
  margin: 1.3333333333vw 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .inner .inner__point::before {
    width: 20px;
    height: 1px;
    background-color: var(--c-txt);
    margin: 5px 5px;
  }
}

.product {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 10.6666666667vw !important;
}
@media screen and (min-width: 1000px) {
  .product {
    padding-left: 3.125vw !important;
  }
}
.product .swiper-wrapper {
  display: flex;
}
.product .swiper-wrapper .swiper-slide {
  width: 33.3333333333vw;
  min-width: 33.3333333333vw;
  margin-right: 5.3333333333vw !important;
}
@media screen and (min-width: 1000px) {
  .product .swiper-wrapper .swiper-slide {
    width: 225px;
    margin-right: 20px !important;
    min-width: inherit;
  }
}
.product .swiper-wrapper .swiper-slide a {
  display: block;
  transition: all 0.2s ease;
}
.product .swiper-wrapper .swiper-slide a:hover {
  opacity: 0.5;
}
.product .swiper-wrapper .swiper-slide div {
  margin-top: 15px;
  font-size: 3.2vw;
  line-height: 1.75;
}
@media screen and (min-width: 1000px) {
  .product .swiper-wrapper .swiper-slide div {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px) {
  .flex-pc {
    display: flex;
  }
  .flex-pc .inner__item__other {
    display: flex;
  }
  .flex-pc .inner__item__other:not(:first-child)::before {
    content: "/";
    padding: 0 30px;
  }
}

/* ----------------------------------------
		other
---------------------------------------- */
.other {
  background-color: var(--c-bk);
  padding: 26.6666666667vw 0 40vw;
}
@media screen and (min-width: 1000px) {
  .other {
    padding: 100px 0 150px;
    margin: 0 auto;
  }
}
.other p {
  font-size: 3.7333333333vw;
  line-height: 2;
  margin-bottom: 13.3333333333vw;
  padding-left: 10.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .other p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 50px;
    padding: 0;
  }
}
.other__head {
  font-size: 6.6666666667vw;
  margin-bottom: 5.3333333333vw;
  padding-left: 10.1333333333vw;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1000px) {
  .other__head {
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
    padding: 0;
  }
}
.other li {
  width: 68.8vw;
}
@media screen and (min-width: 1000px) {
  .other li {
    width: 258px;
  }
}

.other__list {
  display: flex;
  overflow-x: scroll;
  margin: 0 auto 13.3333333333vw;
  padding-left: 10.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .other__list {
    overflow-x: visible;
    width: 980px;
    margin: 0 auto 80px;
    padding: 0;
    flex-wrap: wrap;
  }
}
.other__list li {
  position: relative;
  width: 68.8vw;
}
@media screen and (min-width: 1000px) {
  .other__list li {
    width: 320px;
  }
}
.other__list li:nth-child(n+2) {
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .other__list li:nth-child(n+2) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .other__list li:nth-child(4) {
    margin-left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .other__list li:nth-child(n+4) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1000px) {
  .other li .mask {
    position: absolute;
    display: block;
    width: 320px;
    height: 484px;
    background-color: rgba(157, 138, 88, 0.6);
    top: 0;
    opacity: 0;
    transition: all 0.6s ease;
  }
}

.other li:hover .mask {
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .other li {
    overflow: hidden;
  }
  .other li:hover .other__list__img img {
    transform: scale(1.05);
    filter: blur(2px);
  }
  .other li .other__list__img img {
    transition: all 0.6s ease;
    filter: blur(0);
  }
}

.other__list__img {
  width: 68.8vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .other__list__img {
    width: 320px;
    margin: 0;
  }
}

@media screen and (min-width: 1000px) {
  .other__product__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
  }
}

.other__main__product {
  margin-bottom: 8vw;
  line-height: 1.5;
  font-size: 4.8vw;
}
@media screen and (min-width: 1000px) {
  .other__main__product {
    margin-bottom: 30px;
    font-size: 19px;
  }
}
.other__main__product a {
  position: relative;
  display: flex;
  width: 58.6666666667vw;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.other__main__product a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1000px) {
  .other__main__product a {
    width: 230px;
    position: relative;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
.other__main__product a span {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .other__main__product a span {
    font-size: 10px;
  }
}

.arrow-container {
  position: relative;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-point);
}
@media screen and (min-width: 1000px) {
  .arrow-container {
    background-color: #fff;
    width: 25px;
    height: 25px;
  }
}

.arrow {
  position: absolute;
  width: 2.6666666667vw;
  top: -3.7333333333vw;
  z-index: 10;
}
.arrow img {
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 1000px) {
  .arrow {
    width: 9px;
    top: -15px;
  }
  .arrow img {
    filter: none;
  }
}

.other__main__product-3 {
  letter-spacing: 0.05em;
}

.other__product {
  font-size: 3.7333333333vw;
  display: flex;
  margin-top: 1.3333333333vw;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .other__product {
    font-size: 14px;
    display: flex;
    margin-top: 5px;
  }
}
.other__product a {
  display: block;
  text-decoration: underline;
  padding: 0 2.6666666667vw;
  cursor: pointer;
  transition: all 0.2s ease;
}
.other__product a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1000px) {
  .other__product a {
    padding: 0 10px;
  }
}
.other__product a:first-child {
  padding-left: 0;
}

.other__product__2 {
  line-height: 1.5;
}

.other__all {
  width: 80vw;
  margin: 0 auto;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .other__all {
    width: 500px;
    margin: 0 auto;
  }
}
.other__all a {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 6.1333333333vw;
  background-color: var(--c-point);
  border: solid 1px var(--c-point);
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 4.2666666667vw;
  overflow: hidden;
  line-height: 1;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .other__all a {
    padding: 30px;
    font-size: 16px;
  }
}
.other__all a:hover {
  background-color: var(--c-bk);
  color: var(--c-point);
  border: solid 1px var(--c-point);
}

@media screen and (min-width: 1000px) {
  #style-3 .inner__item__other:not(:first-child)::before {
    content: "/";
    padding: 0 15px;
  }
}

#style-1 .sec-img li:nth-child(1) {
  order: 0;
}
@media screen and (min-width: 1000px) {
  #style-1 .sec-img li:nth-child(1) {
    order: 1;
  }
}
#style-1 .sec-img li:nth-child(2) {
  order: 3;
}
@media screen and (min-width: 1000px) {
  #style-1 .sec-img li:nth-child(2) {
    order: 2;
  }
}
#style-1 .sec-img li:nth-child(3) {
  order: 3;
}
@media screen and (min-width: 1000px) {
  #style-1 .sec-img li:nth-child(3) {
    order: 3;
  }
}
#style-1 .sec-img li:nth-child(4) {
  order: 2;
}
@media screen and (min-width: 1000px) {
  #style-1 .sec-img li:nth-child(4) {
    order: 4;
  }
}

/* --------------------
		aside
-------------------- */
aside {
  background-color: var(--c-bk);
  position: relative;
  margin: 0 auto;
  padding: 0 0 26.6666666667vw 0;
}
@media screen and (min-width: 1000px) {
  aside {
    padding: 0 0 100px 0;
    margin: 0 auto;
  }
}
aside a {
  transition: all 0.2s ease;
}
aside a:hover {
  opacity: 0.5;
}

.artist {
  width: 80vw;
  margin: 0 auto 26.6666666667vw;
  background-color: var(--c-bk);
  padding: 13.3333333333vw 0 21.3333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 1000px) {
  .artist {
    width: 812px;
    margin: 0 auto 100px;
    display: flex;
    align-items: flex-start;
    padding: 100px;
  }
}
.artist__img {
  width: 40vw;
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .artist__img {
    width: 162px;
    margin: 0;
  }
}
.artist .inst {
  width: 5.0666666667vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .artist .inst {
    width: 19px;
    margin-bottom: 40px;
  }
}

.artist__inner {
  font-size: 3.2vw;
  width: 61.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .artist__inner {
    margin-left: 50px;
    font-size: 12px;
    width: 400px;
  }
}
.artist__inner-name {
  line-height: 1;
}
.artist__inner-name span {
  display: block;
}
.artist__inner-name-1 {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .artist__inner-name-1 {
    margin-bottom: 20px;
  }
}
.artist__inner-name-2 {
  font-size: 18px;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .artist__inner-name-2 {
    margin-bottom: 10px;
  }
}
.artist__inner-name-3 {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .artist__inner-name-3 {
    margin-bottom: 20px;
  }
}

.artist__inner-hp {
  text-decoration: underline;
}

.aside__wrap {
  margin: 0 auto 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside__wrap {
    overflow: hidden;
    margin: 0 auto 100px;
  }
}
.aside__wrap .aside__ttl {
  font-size: 5.8666666667vw;
  margin-bottom: 5.3333333333vw;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.aside__wrap p {
  line-height: 2;
  font-size: 3.2vw;
  margin-bottom: 13.3333333333vw;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .aside__wrap p {
    font-size: 12px;
    margin-bottom: 50px;
  }
}
.aside__wrap .aside__btn {
  margin: 0 auto;
  text-align: center;
}
.aside__wrap .aside__btn li {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__btn li {
    font-size: 13px;
  }
}
.aside__wrap .aside__btn li a {
  position: relative;
  display: block;
  border: 1px solid var(--c-txt);
  background-color: var(--c-txt);
  color: #fff;
  padding: 4.5333333333vw;
  transition: all 1s ease;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__btn li a {
    padding: 17px;
  }
}
.aside__wrap .aside__btn li a:hover {
  border: 1px solid var(--c-txt);
  background-color: #fff;
  color: var(--c-txt);
}
.aside__wrap .aside__list li a {
  width: 60vw;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__list li a {
    width: 225px;
  }
}
.aside__wrap .aside__list__img {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__list__img {
    margin-bottom: 10px;
  }
}
.aside__wrap .aside__list__p {
  text-align: left;
  font-size: 3.2vw;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .aside__wrap .aside__list__p {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.labeltop a {
  display: block;
  width: 26.6666666667vw;
  margin: 0 auto;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1000px) {
  .labeltop a {
    width: 105px;
  }
}
.labeltop a:hover {
  opacity: 0.5;
}

.link__none {
  pointer-events: none;
  opacity: 0.5;
}
.link__none span {
  text-decoration: none !important;
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: #000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 3.90625vw 0;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 34.6666666667vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: 10.15625vw;
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
  width: 34.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo a {
    width: 10.15625vw;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 1000px) {
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: 1.015625vw;
  }
}

/* --------------------
		move
-------------------- */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
}

.fadein-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */