@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(-1rem);
  }
}
@keyframes blur {
  from {
    filter: blur(0.4rem);
  }
  to {
    filter: blur(0);
  }
}
/*----------------------------------------
	common
----------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  position: static !important;
}

/*----------------------------------------
	u-device-sp
----------------------------------------*/
.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

/*----------------------------------------
	u-device-pc
----------------------------------------*/
@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/*----------------------------------------
	u-animation-fade
----------------------------------------*/
/*----------------------------------------
	u-animation-clip
----------------------------------------*/
.u-animation-clip.is-active .u-animation-clip__line span:last-child {
  clip-path: inset(-1rem);
}
.u-animation-clip__line {
  position: relative;
  display: inline-block;
}
.u-animation-clip__line span:first-child {
  opacity: 0.4;
}
.u-animation-clip__line span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0);
  transition: 1.4s;
}

/*----------------------------------------
	c-button-view
----------------------------------------*/
.c-button-view {
  position: relative;
  display: inline;
  font-size: 1.4rem;
  font-family: "Helvetica", sans-serif;
  line-height: 2;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .c-button-view {
    font-size: 1.1rem;
    padding: 0 0 0 1.4rem;
  }
}
.c-button-view:before, .c-button-view:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2rem;
  height: 1px;
  background: #4c4941;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .c-button-view:before, .c-button-view:after {
    width: 0.8rem;
  }
}
.c-button-view:after {
  rotate: 90deg;
}

/*----------------------------------------
	p-puresilver999
----------------------------------------*/
.p-puresilver999 {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  color: #4c4941;
  background: rgba(211, 211, 205, 0.1);
}
.p-puresilver999 img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	p-puresilver999-button
----------------------------------------*/
.p-puresilver999-button {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-button {
    top: 5rem;
    right: 0;
    bottom: auto;
  }
}
.p-puresilver999-button.is-hidden {
  opacity: 0;
  overflow: hidden;
}
.p-puresilver999-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26rem;
  height: 3.4rem;
  font-size: 1.4rem;
  background: #fff;
  padding: 0 3.2rem 0 0;
  border: 1px solid #dbdbd9;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-button a {
    width: 2.8rem;
    height: 18rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    padding: 0 0 1.6rem;
    border-right: none;
    border-radius: 0.4rem 0 0 0.4rem;
  }
}
.p-puresilver999-button a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.6rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  border-right: 2px solid #dbdbd9;
  border-bottom: 2px solid #dbdbd9;
  rotate: 45deg;
  transform-origin: top;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-button a:after {
    top: auto;
    right: 0;
    left: 0;
    bottom: 1.2rem;
    width: 0.6rem;
    height: 0.6rem;
    transform-origin: center;
  }
}

/*----------------------------------------
	p-puresilver999-mv
----------------------------------------*/
.p-puresilver999-mv {
  position: relative;
}
.p-puresilver999-mv__heading {
  position: absolute;
  top: 50%;
  right: 10%;
  width: calc(380 / 1366 * 100vw);
  translate: 0 -50%;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 0.8s ease forwards;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-mv__heading {
    top: auto;
    right: 50%;
    bottom: 2.4rem;
    width: 21rem;
    translate: 50% 0;
  }
}
.p-puresilver999-mv__img {
  overflow: hidden;
  animation: reveal 1s ease forwards;
}
.p-puresilver999-mv__img img {
  filter: blur(0.4rem);
  animation: blur 1s 0.8s ease forwards;
}

/*----------------------------------------
	p-puresilver999-main
----------------------------------------*/
.p-puresilver999-main {
  padding: 1.2rem 5.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-main {
    padding: 0.8rem 1.6rem 0;
  }
}
.p-puresilver999-main__container {
  max-width: 128rem;
  margin: auto;
}

/*----------------------------------------
	p-puresilver999-view
----------------------------------------*/
.p-puresilver999-view {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-view {
    margin: 0 0 1.6rem;
  }
}

/*----------------------------------------
	p-puresilver999-message
----------------------------------------*/
.p-puresilver999-message__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-message__container {
    font-size: 1.3rem;
  }
}

/*----------------------------------------
	p-puresilver999-row
----------------------------------------*/
.p-puresilver999-row {
  display: flex;
  gap: 8rem;
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-row {
    flex-direction: column-reverse;
    gap: 5.6rem;
    padding: 2.4rem 0 0;
  }
}

/*----------------------------------------
	p-puresilver999-product
----------------------------------------*/
.p-puresilver999-product {
  display: grid;
  gap: 4rem;
  flex: 1;
}
.p-puresilver999-product__heading {
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__heading {
    font-size: 2.1rem;
  }
}
.p-puresilver999-product__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.4rem;
  margin: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin: 2.4rem 0 0;
    direction: rtl;
  }
}
.p-puresilver999-product__list.is-active .p-puresilver999-product__item {
  opacity: 1;
  translate: 0 0;
}
.p-puresilver999-product__list.is-active .p-puresilver999-product__name span:last-child:before {
  width: 100%;
}
.p-puresilver999-product__item {
  opacity: 0;
  translate: 0 2rem;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__item {
    direction: ltr;
  }
}
.p-puresilver999-product__item:nth-child(3n+1), .p-puresilver999-product__item:nth-child(3n+3) {
  margin: -10rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__item:nth-child(3n+1), .p-puresilver999-product__item:nth-child(3n+3) {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__item:nth-child(odd) {
    margin: -8rem 0 0;
  }
}
.p-puresilver999-product__item:nth-child(1) {
  transition-delay: 0s;
}
.p-puresilver999-product__item:nth-child(1) .p-puresilver999-product__name span:before {
  transition-delay: 0.4s;
}
.p-puresilver999-product__item:nth-child(2) {
  transition-delay: 0.4s;
}
.p-puresilver999-product__item:nth-child(2) .p-puresilver999-product__name span:before {
  transition-delay: 0.8s;
}
.p-puresilver999-product__item:nth-child(3) {
  transition-delay: 0.8s;
}
.p-puresilver999-product__item:nth-child(3) .p-puresilver999-product__name span:before {
  transition-delay: 1.2s;
}
.p-puresilver999-product__item:nth-child(4) {
  transition-delay: 1.2s;
}
.p-puresilver999-product__item:nth-child(4) .p-puresilver999-product__name span:before {
  transition-delay: 1.6s;
}
.p-puresilver999-product__item:nth-child(5) {
  transition-delay: 1.6s;
}
.p-puresilver999-product__item:nth-child(5) .p-puresilver999-product__name span:before {
  transition-delay: 2s;
}
.p-puresilver999-product__item:nth-child(6) {
  transition-delay: 2s;
}
.p-puresilver999-product__item:nth-child(6) .p-puresilver999-product__name span:before {
  transition-delay: 2.4s;
}
.p-puresilver999-product__item:nth-child(7) {
  transition-delay: 2.4s;
}
.p-puresilver999-product__item:nth-child(7) .p-puresilver999-product__name span:before {
  transition-delay: 2.8s;
}
.p-puresilver999-product__item:nth-child(8) {
  transition-delay: 2.8s;
}
.p-puresilver999-product__item:nth-child(8) .p-puresilver999-product__name span:before {
  transition-delay: 3.2s;
}
.p-puresilver999-product__item:nth-child(9) {
  transition-delay: 3.2s;
}
.p-puresilver999-product__item:nth-child(9) .p-puresilver999-product__name span:before {
  transition-delay: 3.6s;
}
.p-puresilver999-product__item:nth-child(10) {
  transition-delay: 3.6s;
}
.p-puresilver999-product__item:nth-child(10) .p-puresilver999-product__name span:before {
  transition-delay: 4s;
}
.p-puresilver999-product__link:hover .p-puresilver999-product__img img {
  scale: 1.1;
}
.p-puresilver999-product__img {
  position: relative;
  border: 1px solid #dbdbd9;
  overflow: hidden;
}
.p-puresilver999-product__img img {
  transition: 1s;
}
.p-puresilver999-product__img span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/icon-arrow01.svg);
}
.p-puresilver999-product__name {
  display: flex;
  flex-direction: column;
  padding: 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__name {
    padding: 0;
  }
}
.p-puresilver999-product__name span {
  position: relative;
  font-size: 1.3rem;
  text-align: left;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-product__name span {
    font-size: 1.1rem;
    padding: 0.4rem 0;
  }
}
.p-puresilver999-product__name span:last-child {
  text-align: right;
}
.p-puresilver999-product__name span:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #dbdbd9;
  transition: 1.6s;
}

/*----------------------------------------
	p-puresilver999-info
----------------------------------------*/
.p-puresilver999-info {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-info {
    width: 100%;
  }
}
.p-puresilver999-info__container {
  position: sticky;
  top: 6rem;
}
.p-puresilver999-info__img {
  margin: 0 0 1.6rem;
}
.p-puresilver999-info__button {
  text-align: right;
  margin: 0 0 1.6rem;
}
.p-puresilver999-info__txt {
  margin: 0 0 2.4rem;
}
.p-puresilver999-info__txt h2 {
  font-size: 1.6rem;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-info__txt h2 {
    font-size: 1.7rem;
  }
}
.p-puresilver999-info__txt p {
  font-size: 1.2rem;
}
.p-puresilver999-info__txt p + p {
  margin: 1.2em 0 0;
}
.p-puresilver999-info__note {
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.8;
  color: #a5a4a0;
}

/*----------------------------------------
	p-puresilver999-kit
----------------------------------------*/
.p-puresilver999-kit {
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit {
    padding: 4rem 1.6rem 0;
  }
}
.p-puresilver999-kit__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.6rem 5.6rem;
  max-width: 88rem;
  padding: 3.4rem;
  margin: auto;
  border: 1px solid #dbdbd9;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__container {
    grid-template-columns: auto;
    padding: 1.6rem 1.6rem 3.2rem;
  }
}
.p-puresilver999-kit__container.is-active .p-puresilver999-kit__button a:before, .p-puresilver999-kit__container.is-active .p-puresilver999-kit__button a:after {
  width: 100%;
}
.p-puresilver999-kit__heading {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__heading {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }
}
.p-puresilver999-kit__heading__en {
  display: block;
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__heading__en {
    font-size: 2.5rem;
  }
}
.p-puresilver999-kit__img {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__img {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-puresilver999-kit__content {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__content {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-puresilver999-kit__txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__txt {
    font-size: 1.2rem;
  }
}
.p-puresilver999-kit__button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  font-size: 1.4rem;
  background: #f4f4f3;
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__button a {
    justify-content: center;
    padding: 0;
  }
}
.p-puresilver999-kit__button a:before, .p-puresilver999-kit__button a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: #dbdbd9;
  transition: 1.6s;
}
.p-puresilver999-kit__button a:before {
  top: 0;
}
.p-puresilver999-kit__button a:after {
  bottom: 0;
}
.p-puresilver999-kit__button a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-kit__button a span {
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin: auto;
  }
}
.p-puresilver999-kit__button a span:before, .p-puresilver999-kit__button a span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #4c4941;
}
.p-puresilver999-kit__button a span:after {
  rotate: 90deg;
}

/*----------------------------------------
	p-puresilver999-modal
----------------------------------------*/
.p-puresilver999-modal {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 73, 65, 0.8);
  padding: 5.6rem;
  z-index: 999;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-modal {
    padding: 13rem 2.4rem 4rem;
  }
}
.p-puresilver999-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-puresilver999-modal__container {
  max-width: 128rem;
  margin: auto;
}
.p-puresilver999-modal__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6rem;
  right: 0;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-modal__close {
    top: 5rem;
  }
}
.p-puresilver999-modal__close:before, .p-puresilver999-modal__close:after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2px;
  background: #fff;
}
.p-puresilver999-modal__close:before {
  rotate: 45deg;
}
.p-puresilver999-modal__close:after {
  rotate: -45deg;
}
.p-puresilver999-modal__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-modal__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 3.2rem;
  }
}
.p-puresilver999-modal__link {
  display: block;
}
.p-puresilver999-modal__link:hover .p-puresilver999-modal__img img {
  scale: 1.1;
}
.p-puresilver999-modal__img {
  margin: 0 0 0.8rem;
  overflow: hidden;
}
.p-puresilver999-modal__img img {
  transition: 0.4s;
}
.p-puresilver999-modal__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
  color: #fff;
}

/*----------------------------------------
	p-puresilver999-back
----------------------------------------*/
.p-puresilver999-back {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-back {
    padding: 4rem 0;
  }
}
.p-puresilver999-back__container {
  display: flex;
  justify-content: end;
  max-width: 88rem;
  padding: 0 24rem 0 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-back__container {
    justify-content: center;
    padding: 0;
  }
}
.p-puresilver999-back__container a {
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
}

/*----------------------------------------
	p-puresilver999-totop
----------------------------------------*/
.p-puresilver999-totop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-totop {
    width: 3rem;
    height: 3rem;
  }
}
.p-puresilver999-totop a {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .p-puresilver999-totop a {
    width: 2rem;
    height: 2rem;
  }
}/*# sourceMappingURL=puresilver999.css.map */