@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

/*----------------------------------------
	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-card
----------------------------------------*/
.u-card__head {
  position: relative;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .u-card__head {
    font-size: 1.6rem;
    margin: 0 0 2.4rem;
  }
}
.u-card__head.is-first p {
  transition: 0.3s 0.6s;
}
.u-card__head.is-first p:nth-child(1) {
  opacity: 0;
}
.u-card__head.is-second p {
  transition: 0.6s 1s;
}
.u-card__head.is-second p:nth-child(2) {
  opacity: 1;
  visibility: visible;
}
.u-card__head.is-third p {
  transition: 0.6s 1s;
}
.u-card__head.is-third p:nth-child(3) {
  opacity: 1;
  visibility: visible;
}
.u-card__head.is-hide p:nth-child(2) {
  opacity: 0;
}
.u-card__head p:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.u-card__head p:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.u-card__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54rem;
  background: #f4f4ee;
  border: 1px solid #70665a;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .u-card__main {
    height: 42rem;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(1) {
  top: 0;
  left: 10%;
  rotate: 20deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(1) {
    top: 26%;
    left: 0;
    rotate: -20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(2) {
  top: 30%;
  left: 30%;
  rotate: 100deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(2) {
    top: 0;
    left: 10%;
    rotate: 20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(3) {
  top: 0;
  right: 40%;
  rotate: -10deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(3) {
    top: 14%;
    rotate: -20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(4) {
  top: 30%;
  right: 22%;
  rotate: 20deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(4) {
    top: 4%;
    right: 12%;
    rotate: 40deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(5) {
  top: 0;
  right: 12%;
  rotate: -20deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(5) {
    top: 26%;
    right: 0;
    rotate: 20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(6) {
  bottom: 24%;
  left: 0;
  rotate: 20deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(6) {
    bottom: 0;
    rotate: -30deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(7) {
  bottom: 10%;
  left: 20%;
  rotate: -40deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(7) {
    bottom: 26%;
    rotate: -20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(8) {
  bottom: 0;
  left: 38%;
  rotate: 10deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(8) {
    bottom: 6%;
    left: 40%;
    rotate: 40deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(9) {
  bottom: -4%;
  right: 24%;
  rotate: -10deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(9) {
    bottom: 30%;
    right: 20%;
    rotate: 20deg;
  }
}
.u-card__main.is-active .u-card-list__item:nth-child(10) {
  bottom: 20%;
  right: 0;
  rotate: 30deg;
}
@media screen and (max-width: 767px) {
  .u-card__main.is-active .u-card-list__item:nth-child(10) {
    bottom: 6%;
  }
}
.u-card__main.is-active .u-card-button {
  opacity: 1;
}

/*----------------------------------------
	u-card-list
----------------------------------------*/
.u-card-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .u-card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
.u-card-list.is-first {
  opacity: 0;
}
.u-card-list.is-first .u-card-list__item {
  position: static;
  opacity: 0;
  translate: 0 10%;
  rotate: 0deg !important;
}
@media screen and (max-width: 767px) {
  .u-card-list.is-first .u-card-list__item:nth-child(1) {
    margin: 0 0 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .u-card-list.is-first .u-card-list__item:nth-child(3) {
    margin: 0 4rem 0 0;
  }
}
.u-card-list.is-second {
  opacity: 1;
}
.u-card-list.is-second .u-card-list__item {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
  cursor: pointer;
}
.u-card-list.is-second .u-card-list__item:nth-child(1) {
  transition-delay: 0s;
}
.u-card-list.is-second .u-card-list__item:nth-child(2) {
  transition-delay: 0.08s;
}
.u-card-list.is-second .u-card-list__item:nth-child(3) {
  transition-delay: 0.16s;
}
.u-card-list.is-second .u-card-list__item:nth-child(4) {
  transition-delay: 0.24s;
}
.u-card-list.is-second .u-card-list__item:nth-child(5) {
  transition-delay: 0.32s;
}
.u-card-list.is-second .u-card-list__item:nth-child(6) {
  transition-delay: 0.4s;
}
.u-card-list.is-second .u-card-list__item:nth-child(7) {
  transition-delay: 0.48s;
}
.u-card-list.is-second .u-card-list__item:nth-child(8) {
  transition-delay: 0.56s;
}
.u-card-list.is-second .u-card-list__item:nth-child(9) {
  transition-delay: 0.64s;
}
.u-card-list.is-second .u-card-list__item:nth-child(10) {
  transition-delay: 0.72s;
}
.u-card-list.is-hide {
  opacity: 0;
  transition: 0.3s;
}
.u-card-list__item {
  position: absolute;
  width: 13rem;
  height: 18rem;
  perspective: 1000px;
  transition: 1s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .u-card-list__item {
    width: 6.9rem;
    height: 9.5rem;
  }
}
.u-card-list__item:nth-child(1), .u-card-list__item:nth-child(2) {
  top: -100%;
  left: -100%;
}
.u-card-list__item:nth-child(3), .u-card-list__item:nth-child(4), .u-card-list__item:nth-child(5) {
  top: -100%;
  right: -100%;
}
.u-card-list__item:nth-child(6), .u-card-list__item:nth-child(7), .u-card-list__item:nth-child(8) {
  bottom: -100%;
  left: -100%;
}
.u-card-list__item:nth-child(9), .u-card-list__item:nth-child(10) {
  bottom: -100%;
  right: -100%;
}
.u-card-list__item.is-show .u-card-list__inner {
  transition: transform 1s;
  transform: rotateY(180deg);
}
.u-card-list__item.is-none {
  pointer-events: none !important;
}
.u-card-list__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0s;
  transform-style: preserve-3d;
}
.u-card-list__front, .u-card-list__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.u-card-list__front {
  transform: rotateY(180deg);
  z-index: 1;
}

/*----------------------------------------
	u-card-button
----------------------------------------*/
.u-card-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 22rem;
  height: 22rem;
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  color: #867056;
  background: #f4f4ee;
  border: 2px solid #867056;
  border-radius: 50%;
  translate: -50% -50%;
  opacity: 0;
  transition: 0.6s 1s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .u-card-button {
    width: 12.5rem;
    height: 12.5rem;
    font-size: 2.1rem;
  }
}
.u-card-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  border: 1px solid #867056;
  border-radius: 50%;
  translate: -50% -50%;
}
.u-card-button.is-hide {
  opacity: 0 !important;
  visibility: hidden;
  transition: 0.3s 0.6s;
}

/*----------------------------------------
	u-card-panel
----------------------------------------*/
.u-card-panel {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 70rem;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .u-card-panel {
    flex-direction: column;
    gap: 2.4rem;
    width: 100%;
    padding: 0 1.6rem;
  }
}
.u-card-panel.is-show {
  opacity: 1;
  visibility: visible;
}
.u-card-panel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1.6;
  padding: 6rem 0;
  border-top: 1px solid #70665a;
  border-bottom: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .u-card-panel__content {
    width: 100%;
    padding: 1.6rem 0;
    border-top: none;
  }
}
.u-card-panel__message {
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .u-card-panel__message {
    font-size: 2.5rem;
  }
}
.u-card-panel__name {
  font-size: 5.2rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6;
  color: #70665a;
}
@media screen and (max-width: 767px) {
  .u-card-panel__name {
    font-size: 3rem;
  }
}
.u-card-panel__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .u-card-panel__img {
    flex: auto;
    width: 16rem;
  }
}

/*----------------------------------------
	p-tarot
----------------------------------------*/
.p-tarot {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
  color: #403c36;
  background: #f4f4ee;
}
.p-tarot img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	p-tarot-mv
----------------------------------------*/
.p-tarot-mv {
  position: relative;
  overflow: hidden;
}
.p-tarot-mv__head {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 10%;
  bottom: 32%;
  gap: 2.4rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-tarot-mv__head {
    left: auto;
    right: 10%;
    bottom: 6%;
    gap: 1.6rem;
  }
}
.p-tarot-mv__head.is-active h2 span {
  translate: 0 0;
}
.p-tarot-mv__head.is-active h3 img {
  translate: 0 0;
}
.p-tarot-mv__head h2 {
  overflow: hidden;
}
.p-tarot-mv__head h2 span {
  display: block;
  font-size: 4.8rem;
  font-weight: normal;
  font-family: "EB Garamond", serif;
  line-height: 1.3;
  transition: 1s 0.6s;
  translate: 0 100%;
}
@media screen and (max-width: 767px) {
  .p-tarot-mv__head h2 span {
    font-size: 2.4rem;
  }
}
.p-tarot-mv__head h3 {
  overflow: hidden;
}
.p-tarot-mv__head h3 img {
  display: block;
  width: 17rem;
  transition: 1s 0.6s;
  translate: 0 110%;
}
@media screen and (max-width: 767px) {
  .p-tarot-mv__head h3 img {
    width: 10rem;
  }
}
.p-tarot-mv__img {
  display: block;
  scale: 1.2;
  transition: 1s;
}
.p-tarot-mv.is-active .p-tarot-mv__img {
  scale: 1;
}

/*----------------------------------------
	p-tarot-concept
----------------------------------------*/
.p-tarot-concept {
  background: #dbd6ce;
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept {
    padding: 4rem 0 6rem;
  }
}
.p-tarot-concept__container {
  max-width: 91rem;
  margin: auto;
}
.p-tarot-concept__heading {
  margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept__heading {
    margin: 0 0 4rem;
  }
}
.p-tarot-concept__heading.is-active h2 span {
  translate: 0 0;
}
.p-tarot-concept__heading.is-active h3 span {
  translate: 0 0;
}
.p-tarot-concept__heading h2 {
  overflow: hidden;
}
.p-tarot-concept__heading h2 span {
  display: block;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  color: #867056;
  translate: 0 100%;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept__heading h2 span {
    font-size: 1.6rem;
  }
}
.p-tarot-concept__heading h3 {
  overflow: hidden;
}
.p-tarot-concept__heading h3 span {
  display: block;
  font-size: 7rem;
  font-weight: normal;
  font-family: "EB Garamond", serif;
  line-height: 1.3;
  text-align: center;
  color: #403c36;
  margin: 1.6rem 0 0;
  translate: 0 100%;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept__heading h3 span {
    font-size: 4.5rem;
  }
}
.p-tarot-concept__txt {
  background: #fdfdfb;
  padding: 2rem;
  margin: 0 0 8rem;
  opacity: 0;
  translate: 0 4rem;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept__txt {
    position: relative;
    margin: 0 0 4rem;
  }
}
.p-tarot-concept__txt.is-active {
  opacity: 1;
  translate: 0 0;
}
.p-tarot-concept__txt p {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  line-height: 2.2;
  text-align: center;
  color: #70665a;
  padding: 3rem 0;
  border-top: 1px solid #70665a;
  border-bottom: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-concept__txt p {
    font-size: 1.3rem;
    padding: 2rem 0;
  }
}
.p-tarot-concept__card {
  padding: 0 1.8rem;
}

/*----------------------------------------
	p-tarot-jewelry
----------------------------------------*/
.p-tarot-jewelry {
  padding: 12rem 0;
  border-top: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry {
    padding: 9rem 4.5rem 4.5rem;
  }
}
.p-tarot-jewelry__container {
  max-width: 100rem;
  margin: auto;
}
.p-tarot-jewelry__main {
  display: grid;
  grid-template-columns: 1fr 40rem;
  grid-template-rows: max-content 1fr;
  gap: 0 10rem;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__main {
    grid-template-columns: 100%;
    gap: 0;
    margin: 0 0 2rem;
  }
}
.p-tarot-jewelry__content {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-tarot-jewelry__number {
  position: relative;
  margin: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__number {
    margin: 0 0 1.6rem;
  }
}
.p-tarot-jewelry__number:before, .p-tarot-jewelry__number:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  height: 1px;
  background: #70665a;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__number:before, .p-tarot-jewelry__number:after {
    width: 10rem;
  }
}
.p-tarot-jewelry__number:before {
  left: 0;
}
.p-tarot-jewelry__number:after {
  right: 0;
}
.p-tarot-jewelry__number img {
  width: 16rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__number img {
    width: 6rem;
  }
}
.p-tarot-jewelry__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding: 0 0 5.6rem;
  margin: 0 0 5.6rem;
  border-bottom: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__heading {
    gap: 3.2rem;
    padding: 0 0 3.2rem;
    margin: 0 0 3.2rem;
  }
}
.p-tarot-jewelry__heading:after {
  content: "";
  position: absolute;
  top: 8.6rem;
  left: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-name01.svg) center/cover;
  margin: auto;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__heading:after {
    top: 5.6rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-tarot-jewelry__heading > span {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6;
  overflow: hidden;
}
.p-tarot-jewelry__heading > span:first-child {
  gap: 1.6rem;
  font-size: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__heading > span:first-child {
    font-size: 2.9rem;
  }
}
.p-tarot-jewelry__heading > span:last-child {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__heading > span:last-child {
    font-size: 2.2rem;
  }
}
.p-tarot-jewelry__heading > span span {
  display: block;
  translate: 0 100%;
  transition: 1s;
}
.p-tarot-jewelry__heading.is-active:after {
  opacity: 1;
}
.p-tarot-jewelry__heading.is-active > span span {
  translate: 0 0;
}
.p-tarot-jewelry__txt {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__txt {
    grid-row: 3/4;
    font-size: 1.05rem;
    line-height: 1.9;
  }
}
.p-tarot-jewelry__img {
  grid-column: 2/3;
  grid-row: 1/3;
  margin: 7.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__img {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 0 0 2.4rem;
  }
}
.p-tarot-jewelry__slide {
  position: relative;
  margin: 0 0 8rem;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__slide {
    width: 22rem;
    margin: 0 auto 6.8rem;
  }
}
.p-tarot-jewelry__slide.is-active {
  opacity: 1;
}
.p-tarot-jewelry__slide .swiper-button-next,
.p-tarot-jewelry__slide .swiper-button-prev {
  width: 3.4rem;
  height: 3.4rem;
  background: url(../img/icon-arrow01.svg) center/cover;
  transition: 0.6s;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__slide .swiper-button-next,
  .p-tarot-jewelry__slide .swiper-button-prev {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.p-tarot-jewelry__slide .swiper-button-next:hover,
.p-tarot-jewelry__slide .swiper-button-prev:hover {
  background: url(../img/icon-arrow01_hover.svg) center/cover;
}
.p-tarot-jewelry__slide .swiper-button-next:after,
.p-tarot-jewelry__slide .swiper-button-prev:after {
  content: none;
}
.p-tarot-jewelry__slide .swiper-button-next {
  right: -5.6rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__slide .swiper-button-next {
    right: -3.2rem;
  }
}
.p-tarot-jewelry__slide .swiper-button-prev {
  left: -5.6rem;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__slide .swiper-button-prev {
    left: -3.2rem;
  }
}
.p-tarot-jewelry__slide .swiper-pagination {
  bottom: -5.2rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__slide .swiper-pagination {
    bottom: -4.6rem;
  }
}
.p-tarot-jewelry__slide .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background: none;
  margin: 0 1rem !important;
  border: 1px solid #70665a;
  opacity: 1;
}
.p-tarot-jewelry__slide .swiper-pagination-bullet-active {
  background: #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__name {
    display: flex;
    justify-content: center;
  }
}
.p-tarot-jewelry__name a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-size: 1.2rem;
  color: #fff;
  background: url(../img/bg-name01.svg) center/cover;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__name a {
    width: 24.2rem;
    height: 3.5rem;
    font-size: 0.9rem;
    background: url(../img/bg-name02.svg) center/cover;
    transition: none;
  }
}
.p-tarot-jewelry__name a:hover {
  color: #867056;
  background: url(../img/bg-name01_hover.svg) center/cover;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__name a:hover {
    background: url(../img/bg-name02_hover.svg) center/cover;
  }
}
.p-tarot-jewelry__button {
  text-align: center;
}
.p-tarot-jewelry__button a {
  position: relative;
  display: inline;
  font-size: 1.8rem;
  padding: 0.8rem 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__button a {
    font-size: 1.2rem;
  }
}
.p-tarot-jewelry__button a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #70665a;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-tarot-jewelry__button a:after {
    width: 100%;
  }
}
.p-tarot-jewelry__button a:hover:after {
  left: 0;
  width: 100%;
}

/*----------------------------------------
	p-tarot-product
----------------------------------------*/
.p-tarot-product {
  padding: 6rem 0;
  border-top: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-product {
    padding: 4rem 3rem 6rem;
  }
}
.p-tarot-product__container {
  max-width: 110rem;
  margin: auto;
}
.p-tarot-product__heading {
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-product__heading {
    font-size: 2.1rem;
    margin: 0 0 3.2rem;
  }
}
.p-tarot-product__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-tarot-product__list li a {
  display: block;
}
.p-tarot-product__list li a:hover figure {
  opacity: 0.6;
}
.p-tarot-product__list li a figure {
  margin: 0 0 1.6rem;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-tarot-product__list li a figure {
    margin: 0 0 0.8rem;
  }
}
.p-tarot-product__list li a p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-tarot-product__list li a p {
    font-size: 0.9rem;
  }
}

/*----------------------------------------
	p-tarot-about
----------------------------------------*/
.p-tarot-about {
  background: #dbd6ce;
  padding: 10rem 0 12rem;
  border-top: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-about {
    padding: 6rem 0;
  }
}
.p-tarot-about__container {
  max-width: 62rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__container {
    max-width: 26.5rem;
  }
}
.p-tarot-about__heading {
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__heading {
    font-size: 1.4rem;
    margin: 0 0 1.6rem;
  }
}
.p-tarot-about__content {
  background: #fdfdfb;
  padding: 4rem;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__content {
    padding: 3.2rem 2.2rem;
  }
}
.p-tarot-about__content.is-active {
  opacity: 1;
}
.p-tarot-about__name {
  margin: 0 0 0.8rem;
}
.p-tarot-about__name h2 {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #867056;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__name h2 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem;
  }
}
.p-tarot-about__name h3 {
  font-size: 1.4rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__name h3 {
    font-size: 0.9rem;
  }
}
.p-tarot-about__name h3 span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__name h3 span {
    font-size: 1.6rem;
  }
}
.p-tarot-about__txt {
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__txt {
    font-size: 1rem;
    margin: 0 0 2.4rem;
  }
}
.p-tarot-about__button a {
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  color: #867056;
}
@media screen and (max-width: 767px) {
  .p-tarot-about__button a {
    font-size: 1rem;
  }
}

/*----------------------------------------
	p-tarot-back
----------------------------------------*/
.p-tarot-back {
  display: flex;
  justify-content: center;
  background: #dbd6ce;
  padding: 12rem 0;
  border-top: 1px solid #70665a;
}
@media screen and (max-width: 767px) {
  .p-tarot-back {
    padding: 4rem 0;
  }
}
.p-tarot-back a {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-tarot-back a {
    font-size: 1.6rem;
  }
}
.p-tarot-back a:hover {
  opacity: 0.6;
}

/*----------------------------------------
	p-tarot-totop
----------------------------------------*/
.p-tarot-totop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .p-tarot-totop {
    right: 1.8rem;
    bottom: 1.8rem;
    width: 4.3rem;
    height: 4.3rem;
  }
}/*# sourceMappingURL=tarot.css.map */