@charset "utf-8";
/* CSS Document */
/* -------------------- header -------------------- */
/* 背景色変更 不要な場合は削除 */
header {
  background-color: #fff;
  text-align: inherit;
  display: inherit;
}
footer {
  margin-top: 0px;
  background-color: #E0CDD6
}
/* -------------------- 全体 -------------------- */
body {
  text-align: center;
	font-size: 15px;
}
img {
  display: block;
  width: 100%;
}
ul::after {
  content: " ";
  display: block;
  clear: both;
}
div {
  margin: 0 auto;
}
ul::after {
  content: " ";
  display: block;
  clear: both;
}
.cf::after {
  content: " ";
  display: block;
  clear: both;
}
/* -------------------- メインビジュアル&タイトル -------------------- */
#main_visual {
  padding: 6% 0% 8%;
  background-color: #CDDADA;
}
.main_visual_block {
  width: 40%;
  max-width: 480px;
	margin-bottom: 2%
}
.text_block p {
  font-size: 16px;
  line-height: 2.5;
}
@media (max-width: 768px) {
#main_visual {
  padding: 15% 0% 8%;
}
	.main_visual_block {
  width: 90%;
	margin-bottom: 5%
}
.text_block p {
  font-size: 12px;
  line-height: 2.5;
}
}
/* -------------------- 一覧リンク -------------------- */
.itiran_link {
  border: double;
  width: 80%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  padding: 3%;
  margin-top: 5%;
}
/* -------------------- コンテンツブロック -------------------- */
/* -------------------- アイテム -------------------- */
#content {
  background-image: linear-gradient(360deg, rgba(188, 146, 166, 0.45), rgba(145, 175, 175, 0.45));
  padding-bottom: 8%;
}
.chapter_block{
  width: 100%;
  border-top: 4px solid #000;
  border-bottom:1px double;
	padding: 8% 0% 6%;
}
.sub_title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 35px;
  font-weight: bold;
  display: block;
  padding-bottom:4%;
}
.sub_description{
	width: 80%;
	max-width: 700px;
	text-align: left;
	margin: 0 auto;
	line-height: 2.2;
	
}
.item_title span {
  font-size: 15px;
  display: block;
  padding: 4% 0% 0%;
  line-height: 2.5;
}
.item_block ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}
.item_block ul li {
  padding-bottom: 5%;
}
.item_block ul li p.colors {
  padding: 5px;
  border: solid 1px #000;
  border-radius: 16px;
  font-size: 10px;
  margin: 3% 4px 2%;
  width: 60px;
  display: inline-block;
  text-align: center;
}
.item_block ul li p.brand {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 2%;
}
.item_block ul li p.brand span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.item_block ul li p.kakaku {
  font-weight: bold;
}
@media (max-width: 768px) {
	
	
.chapter_block{
	padding: 15% 0% 12%;
}
.sub_title {
  font-size: 30px;
}
.sub_description{
  font-size: 13px;
	
}
  .item_block ul {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
  }
	.item_block ul li p.colors {
  padding: 5px;
  font-size: 10px;
  margin: 5% 0 2%;
}
.item_block ul li p.brand {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 2%;
}
.item_block ul li p.brand span {
  display: block;
  font-size: 10px;
  font-weight: normal;
}
.item_block ul li p.kakaku {
  font-weight: bold;
}
}
/* -------------------- 表示非表示 -------------------- */
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
/* -------------------- アニメーション -------------------- */
/* 下から */
.item_block ul li {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}