/* 共通 */
:root {
  --main-font: "TheImpressionist", serif;
  /* --noto-font: "Noto Sans JP", sans-serif; */
  --sub-font: "Parisienne", cursive;
  --noto-font: "Noto Serif", serif;
  --base-font-size: 16px;
  --heading-font-size: 2rem;
  --main-blue: #1F233A;
  --main-gray: #D9D9D9;
}

.container-wrapper {
  width: 128rem;
  padding: 20rem 0 1rem;
  /* text-align: center; */
  background-color: #D9D9D9;
}

.single-img {
  position: relative;
  width: 100rem;
  margin: 0 auto;
}

.single-img img {
  width: 100%;
  height: 60rem;
  margin: 0 auto;
  border-radius: 0rem;
}

.single-title {
  font-size: 3rem;
  font-family: var(--noto-font);
  padding: 2rem 0;
  text-align: center;
  color: #1F233A;
}

.single-text p {
  font-size: 2rem;
  font-family: var(--noto-font);
  text-align: start;
  width: 100rem;
  margin: 0 auto;
  color: #1F233A;
}


/* メーカー */
.maker-cat {
  background-color: rgb(33 33 33 / 51%);
  width: 35rem;
  padding: 2rem 3rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  font-family: var(--noto-font);
  border-radius: 0rem;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

/* ここからカテゴリーのデザイン */
.single-description {
  padding: 2rem 14rem;
}


.size-title,
.color-title,
.type-title {
  background-color: rgb(222, 222, 222);
  width: 20rem;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  /* border-radius: 3rem; */
}

.size-ans,
.color-ans,
.type-ans {
  line-height: 5rem;
  font-size: 2rem;
  padding: 0 2rem;
}


/* ここからリンクボタン */
.link-btn {
  background-color: #1F233A;
  width: 22rem;
  height: 4rem;
  border-radius: 3rem;
  font-size: 1.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 4rem;
  margin: 5rem auto 5rem;
  cursor: pointer;
  transition: all 0.8s ease;
}

.link-btn:hover {
  background-color: #ffffff;
  opacity: 1;
  color: #1F233A;
}

.link-btn a {
  color: #fff;
  font-weight: 300;
  font-family: var(--noto-font);
}

.link-btn:hover a {
  color: #1F233A;
}


/* ここからスマホ版・SP版 */
@media screen and (max-width: 699.98px) {

  /* 画面幅が699.98px以下のデバイスに適用するスタイル */
  .container-wrapper {
    width: 37.5rem;
    padding: 8rem 0 3rem;
  }

  .single-img {
    width: 30rem;
  }

  .single-img img {
    width: 30rem;
    height: 20rem;
  }

  .single-title {
    font-size: 2rem;
    padding: 1rem 0;
  }

  .single-text p {
    font-size: 1.3rem;
    width: 30rem;
  }

  /* カテゴリーボタン */
  .maker-cat {
    width: 10rem;
    padding: 1rem 1rem;
    font-size: 1rem;
  }

  /* ここからカテゴリーのデザイン */
  .single-description {
    padding: 2rem 4rem;
  }

/* リンクボタン */
	.link-btn {
		width: 20rem;
		height: 5rem;
		font-size: 1.4rem;
		line-height: 5rem;
		margin: 5rem auto 5rem;
	}

}

/* inview */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.inview1 {
  opacity: 0;
  transform: translateY(5rem);
  transition: 0.8s;
}

.inview1.show {
  opacity: 1;
  transform: translateY(0px);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */