@charset "UTF-8";
/*============================
function
============================*/
/*----------------------------------------
	common
----------------------------------------*/
@keyframes scroll {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 100%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
    translate: -0.4rem 0.4rem;
  }
  20% {
    opacity: 1;
    translate: 0 0;
  }
  80% {
    opacity: 1;
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: 0.4rem -0.4rem;
  }
}
/*----------------------------------------
	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;
  }
}

/*----------------------------------------
	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-fade {
  opacity: 0;
  transition: 1s;
}
.u-animation-fade.is-active {
  opacity: 1;
}

/*----------------------------------------
	u-animation-fadeup
----------------------------------------*/
.u-animation-fadeup {
  opacity: 0;
  translate: 0 1em;
  transition: 1s;
}
.u-animation-fadeup.is-active {
  opacity: 1;
  translate: 0 0;
}

/*----------------------------------------
	u-animation-txt
----------------------------------------*/
.u-animation-txt {
  display: block;
  translate: 0 100%;
  transition: 1s;
}
.u-animation-txt.is-active {
  translate: 0 0;
}

/*----------------------------------------
	c-button
----------------------------------------*/
.c-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(14 / 1366 * 100vw);
  height: calc(14 / 1366 * 100vw);
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 1rem;
    height: 1rem;
  }
}
.c-button:before, .c-button:after {
  content: "";
  position: absolute;
  width: calc(8 / 1366 * 100vw);
  height: 1px;
  background: #b49f8a;
}
@media screen and (max-width: 767px) {
  .c-button:before, .c-button:after {
    width: 0.5rem;
  }
}
.c-button:after {
  rotate: 90deg;
}
.c-button:hover {
  scale: 1.5;
}

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

/*----------------------------------------
	p-chain-fixed
----------------------------------------*/
.p-chain-fixed {
  position: fixed;
  top: 1.6rem;
  left: 2.4rem;
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
  writing-mode: vertical-rl;
  color: #b49f8a;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-chain-fixed {
    left: auto;
    right: 0.8rem;
    font-size: 1.1rem;
  }
}
.p-chain-fixed.is-active {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
	p-chain-anchor
----------------------------------------*/
.p-chain-anchor {
  position: fixed;
  right: 1.6rem;
  bottom: 7.2rem;
  width: 11rem;
  height: 11rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-chain-anchor {
    right: 0;
    bottom: 4.8rem;
    width: 2.5rem;
    height: 14.5rem;
    writing-mode: vertical-rl;
  }
}
.p-chain-anchor a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  background: rgba(186, 167, 143, 0.9);
  border: 2px solid #dcceba;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-chain-anchor a {
    justify-content: start;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 1.2rem 0;
    border-radius: 0.4rem 0 0 0.4rem;
  }
}
.p-chain-anchor a:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 1.6rem;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-chain-anchor a:after {
    bottom: 0.8rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}

/*----------------------------------------
	p-chain-mv
----------------------------------------*/
.p-chain-mv {
  position: relative;
}
.p-chain-mv__title {
  position: absolute;
  right: calc(100 / 1366 * 100vw);
  bottom: calc(100 / 1366 * 100vw);
  width: calc(340 / 1366 * 100vw);
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-chain-mv__title {
    width: 19rem;
    right: 0;
    left: 0;
    bottom: 2.4rem;
    margin: auto;
  }
}
.p-chain-mv__title img {
  transition-delay: 1s;
}
.p-chain-mv__scroll {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 5rem;
  background: rgba(255, 255, 255, 0.6);
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-chain-mv__scroll {
    height: 1.5rem;
  }
}
.p-chain-mv__scroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scroll 3s infinite;
}

/*----------------------------------------
	p-chain-feature
----------------------------------------*/
.p-chain-feature {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-chain-feature {
    flex-direction: column;
  }
}
.p-chain-feature__head {
  position: relative;
  width: calc(360 / 1366 * 100vw);
  background: #f6f2ec;
}
@media screen and (max-width: 767px) {
  .p-chain-feature__head {
    width: 100%;
    background: none;
  }
}
.p-chain-feature__txt {
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: calc(200 / 1366 * 100vw) calc(56 / 1366 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-chain-feature__txt {
    position: static;
    padding: 4rem 2.4rem 0;
  }
}
.p-chain-feature__txt h2 {
  font-size: calc(42 / 1366 * 100vw);
  font-family: "EB Garamond", serif;
  line-height: 1.2;
  color: #b49f8a;
  margin: 0 0 calc(56 / 1366 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-chain-feature__txt h2 {
    font-size: 2.1rem;
    margin: 0;
  }
}
.p-chain-feature__txt p {
  font-size: calc(14 / 1366 * 100vw);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-chain-feature__txt p {
    font-size: 1.3rem;
  }
}
.p-chain-feature__main {
  flex: 1;
  padding: 0 calc(60 / 1366 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-chain-feature__main {
    padding: 0;
  }
}
.p-chain-feature__column {
  position: relative;
  padding: calc(48 / 1366 * 100vw) 0;
}
@media screen and (max-width: 767px) {
  .p-chain-feature__column {
    padding: 4rem 0;
  }
}
.p-chain-feature__column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e8e2dc;
  transition: 1s 1s;
}
.p-chain-feature__column:first-child:before {
  content: none;
}
.p-chain-feature__column.is-active:before {
  width: 100%;
}

/*----------------------------------------
	p-chain-feature-necklace
----------------------------------------*/
@media screen and (max-width: 767px) {
  .p-chain-feature-necklace {
    margin: 0 3.6rem 0 0;
  }
}
.p-chain-feature-necklace__img {
  position: relative;
}
.p-chain-feature-necklace__img a:nth-of-type(1) {
  top: 80%;
  left: 60%;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-necklace__img a:nth-of-type(1) {
    top: 84%;
    left: 58%;
  }
}
.p-chain-feature-necklace__img a:nth-of-type(2) {
  top: 68%;
  left: 76%;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-necklace__img a:nth-of-type(2) {
    top: 72%;
  }
}
.p-chain-feature-necklace__img a:nth-of-type(3) {
  top: 58%;
  left: 90%;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-necklace__img a:nth-of-type(3) {
    left: 92%;
  }
}

/*----------------------------------------
	p-chain-feature-coordinate
----------------------------------------*/
.p-chain-feature-coordinate {
  position: relative;
}
.p-chain-feature-coordinate__heading {
  position: absolute;
  top: 0;
  left: calc(-180 / 1366 * 100vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__heading {
    position: static;
    padding: 0 2.8rem 2.8rem;
  }
}
.p-chain-feature-coordinate__heading span {
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  line-height: 1.4;
  color: #b49f8a;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__heading span {
    font-size: 2.4rem;
  }
}
.p-chain-feature-coordinate__img .swiper {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper {
    overflow: hidden;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper {
    flex-direction: row;
    transition-timing-function: linear;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide01 {
  width: calc(370 / 1366 * 100vw);
  margin: 0 0 calc(-240 / 1366 * 100vw) calc(60 / 1366 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide01 {
    width: auto;
    margin: 0;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide01 .swiper-img a:nth-of-type(1) {
  top: 58%;
  left: 48%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide01 .swiper-img a:nth-of-type(2) {
  top: 82%;
  left: 52%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 {
  width: calc(340 / 1366 * 100vw);
  margin: 0 calc(20 / 1366 * 100vw) calc(-80 / 1366 * 100vw) auto;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 {
    width: auto;
    margin: 0;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 .swiper-img a:nth-of-type(1) {
  top: 52%;
  left: 60%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 .swiper-img a:nth-of-type(2) {
  top: 76%;
  left: 62%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 .swiper-number {
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide02 .swiper-number {
    justify-content: start;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 {
  width: calc(480 / 1366 * 100vw);
  margin: 0 0 calc(-380 / 1366 * 100vw) calc(-100 / 1366 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 {
    width: auto;
    margin: 0;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 .swiper-img a:nth-of-type(1) {
  top: 56%;
  left: 56%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 .swiper-img a:nth-of-type(2) {
  top: 84%;
  left: 64%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 .swiper-number {
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide03 .swiper-number {
    justify-content: start;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide04 {
  width: calc(480 / 1366 * 100vw);
  margin: 0 calc(-60 / 1366 * 100vw) 0 auto;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide04 {
    width: auto;
    margin: 0;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide04 .swiper-img a:nth-of-type(1) {
  top: 68%;
  left: 56%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide.-slide04 .swiper-img a:nth-of-type(2) {
  top: 78%;
  left: 64%;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide .swiper-img {
  position: relative;
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide .swiper-number {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 / 1366 * 100vw);
  padding: calc(8 / 1366 * 100vw) 0 0;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide .swiper-number {
    gap: 0.8rem;
    padding: 1.6rem 2.8rem 0;
    opacity: 0;
    transition: 0.4s;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide .swiper-number a {
  font-size: calc(16 / 1366 * 100vw);
  font-style: italic;
  font-family: "EB Garamond", serif;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide .swiper-number a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-wrapper .swiper-slide-active .swiper-number {
    opacity: 1;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-coordinate__img .swiper .swiper-button {
    position: absolute;
    display: flex;
    right: 2.2rem;
    bottom: 0;
    gap: 3.2rem;
    z-index: 1;
  }
}
.p-chain-feature-coordinate__img .swiper .swiper-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 1.5rem;
  background: #f0ece8;
  margin: auto;
}
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-prev,
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-next {
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-prev:after,
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-next:after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #b49f8a;
  border-right: 1px solid #b49f8a;
}
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-prev:after {
  rotate: -135deg;
}
.p-chain-feature-coordinate__img .swiper .swiper-button .swiper-button-next:after {
  rotate: 45deg;
}

/*----------------------------------------
	p-chain-feature-length
----------------------------------------*/
.p-chain-feature-length {
  position: relative;
}
.p-chain-feature-length__heading {
  position: absolute;
  top: 0;
  left: calc(-180 / 1366 * 100vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-length__heading {
    position: static;
    padding: 0 2.8rem 2.8rem;
  }
}
.p-chain-feature-length__heading span {
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  line-height: 1.4;
  color: #b49f8a;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-length__heading span {
    font-size: 2.4rem;
  }
}
.p-chain-feature-length__img {
  width: calc(530 / 1366 * 100vw);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-chain-feature-length__img {
    width: 100%;
    padding: 0 3.2rem 0 2.8rem;
  }
}

/*----------------------------------------
	p-chain-archive
----------------------------------------*/
.p-chain-archive {
  position: relative;
  padding: 10rem 9rem;
}
@media screen and (max-width: 767px) {
  .p-chain-archive {
    padding: 3.2rem 1.6rem;
  }
}
.p-chain-archive:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f0ece8;
  transition: 1s 1s;
}
.p-chain-archive.is-active:before {
  width: 100%;
}
.p-chain-archive__container {
  max-width: 119rem;
  margin: auto;
}

/*----------------------------------------
	p-chain-nav
----------------------------------------*/
.p-chain-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 4.8rem;
  padding: 0 0 2.4rem;
  margin: 0 0 10rem;
  border-bottom: 1px solid #f0ece8;
}
@media screen and (max-width: 767px) {
  .p-chain-nav {
    display: block;
    padding: 0 0 1.6rem;
    margin: 0 0 8rem;
  }
}
.p-chain-nav__sort {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #f6f2ec;
  padding: 0.4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__sort {
    gap: 1.6rem;
    padding: 0.8rem;
    margin: 0 0 1.6rem;
  }
}
.p-chain-nav__sort__title {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__sort__title {
    font-size: 1rem;
  }
}
.p-chain-nav__sort__list {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.8rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__sort__list {
    gap: 0.8rem;
  }
}
.p-chain-nav__sort__list label input {
  display: none;
}
.p-chain-nav__sort__list label input:checked + span:before {
  background-image: url(../img/icon-checked01.svg);
}
.p-chain-nav__sort__list label span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__sort__list label span {
    font-size: 1rem;
  }
}
.p-chain-nav__sort__list label span:before {
  content: "";
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #fff;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__sort__list label span:before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.p-chain-nav__search {
  display: flex;
  align-items: center;
  flex: 1;
  border-left: 1px solid #f0ece8;
}
.p-chain-nav__search__item {
  flex: 1;
  border-right: 1px solid #f0ece8;
}
.p-chain-nav__search__button {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  padding: 0.4rem 5.6rem 0.4rem 3.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__button {
    font-size: 1rem;
    padding: 0 4.8rem 0 1.6rem;
  }
}
.p-chain-nav__search__button:after {
  content: "";
  position: absolute;
  top: -0.4rem;
  right: 3.2rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid #b49f8a;
  border-bottom: 1px solid #b49f8a;
  margin: auto;
  rotate: 45deg;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__button:after {
    right: 2.4rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-chain-nav__search__button.is-active:after {
  top: 0.4rem;
  rotate: 225deg;
}
.p-chain-nav__search__content {
  position: absolute;
  display: flex;
  align-items: start;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  gap: 1.6rem;
  width: 100%;
  background: #fff;
  padding: 1.6rem 3.2rem;
  translate: 0 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__content {
    align-items: end;
    padding: 1.6rem 0;
  }
}
.p-chain-nav__search__content.is-active {
  opacity: 1;
  visibility: visible;
}
.p-chain-nav__search__inner {
  display: flex;
  flex: 1;
  gap: 4rem;
}
.p-chain-nav__search__title {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__title {
    display: none;
  }
}
.p-chain-nav__search__list {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.8rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-chain-nav__search__list label input {
  display: none;
}
.p-chain-nav__search__list label input:checked + span:before {
  background-image: url(../img/icon-checked02.svg);
}
.p-chain-nav__search__list label span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__list label span {
    font-size: 1rem;
  }
}
.p-chain-nav__search__list label span:before {
  content: "";
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #b49f8a;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__list label span:before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.p-chain-nav__search__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 2.4rem;
  font-size: 1.4rem;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #fff;
  background: #b49f8a;
  border-radius: 10rem;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-chain-nav__search__submit {
    width: 5rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.p-chain-nav__search__submit:hover {
  opacity: 0.7;
}

/*----------------------------------------
	p-chain-product
----------------------------------------*/
.p-chain-product {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-chain-product {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.5rem;
  }
}
.p-chain-product__link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-chain-product__img {
  position: relative;
}
.p-chain-product__img .swiper-container .swiper {
  border: 1px solid #f0ece8;
}
.p-chain-product__img .swiper-container .swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
  overflow: hidden;
}
.p-chain-product__img .swiper-container .swiper .swiper-wrapper .swiper-slide img {
  transition: 0.4s;
}
.p-chain-product__img .swiper-container .swiper .swiper-wrapper .swiper-slide img:hover {
  scale: 1.1;
}
.p-chain-product__img .swiper-container .swiper .swiper-arrow {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.4rem;
  height: 4.4rem;
  background: url(../img/icon-arrow01.svg) center/cover;
  z-index: 1;
  animation: arrow 3s infinite;
}
.p-chain-product__img .swiper-container .swiper-pagination {
  display: flex;
  justify-content: center;
}
.p-chain-product__img .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #dbdbda;
  opacity: 1;
}
.p-chain-product__img .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #949291;
}
.p-chain-product__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-chain-product__txt {
    font-size: 1.1rem;
  }
}

/*----------------------------------------
	p-chain-load
----------------------------------------*/
.p-chain-load {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.2rem;
  height: 5.2rem;
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  margin: 4.8rem auto 0;
  border: 1px solid #f0ece8;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .p-chain-load {
    width: 100%;
    height: 3.5rem;
    font-size: 1.4rem;
    margin: 3.2rem auto 0;
  }
}
.p-chain-load:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid #b49f8a;
  border-bottom: 1px solid #b49f8a;
  margin: auto;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-chain-load:after {
    right: 1.6rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-chain-load.is-active:after {
  rotate: 225deg;
}
.p-chain-load.is-active span:first-child {
  display: none;
}
.p-chain-load.is-active span:last-child {
  display: block;
}
.p-chain-load span:last-child {
  display: none;
}

/*----------------------------------------
	p-chain-back
----------------------------------------*/
.p-chain-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  background: #f6f2ec;
  border-top: 1px solid #f0ece8;
  border-bottom: 1px solid #f0ece8;
}
.p-chain-back a {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-chain-back a {
    font-size: 1.4rem;
  }
}
.p-chain-back a:hover {
  text-decoration: underline;
}

/*----------------------------------------
	p-chain-totop
----------------------------------------*/
.p-chain-totop {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  width: 3rem;
  height: 3rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-chain-totop {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-chain-totop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #b49f8a;
  padding: 0.2rem 0 0;
  border-radius: 50%;
}
.p-chain-totop a:before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  rotate: 45deg;
}

/*----------------------------------------
	p-chain-feature-xxxx
----------------------------------------*//*# sourceMappingURL=chain.css.map */