#container {
  max-width: 1200px;
  margin: 0 auto;
}
#main {
  width: 100%;
}


.mainContents {
  font-size: 14px;
  color:#696969;/*文字色*/
  padding: 1em;/* 内側余白 */
  letter-spacing: 0.1em;/*文字間*/
  line-height: 1.5;/*行間*/
}



    p {
    margin-bottom: 5px;
    padding-left: 1.5em;/* 内側余白 */
    padding-right: 1.5em;/* 内側余白 */
    }

    p.img_center{    
    text-align: center;
    margin-bottom: 5px;
    }




.display_sp {
    display: none !important;
}

.display_pc{
		display: block !important;
}

@media (max-width: 767px) {
    .mainContents {
        width: 100%;
    }
	.display_sp {
    display: block !important;
	}
	.display_pc{
		display: none !important;
	}
}



.product-details h1 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}




h2 {
    margin-bottom: 0.1em;
    padding: 1em;
    background-color: #ffffff;
    color: #696969;
    font-weight: bold;
    font-size: 15px;
}

h2:before {
    content: '';
    border-left: 2px dotted #02b6d1;
    margin-right: 0.5rem;
}





/* 背景色をつける */
.box1-5 {
    margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
    padding: 1em;        /* 内側余白 */
    background-color:#ff7878; /* 背景の色 */
}

/* pタグの余白 */
.box1-5 p {
    margin: 0;
    text-align: center;
    font-size: 18px;
    color:#ffffff;/*文字色*/
    letter-spacing: 0.2em;/*文字間*/
    font-weight: bold;/*文字太さ*/
}



/* 背景色をつける */
.box1-6 {
    margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
    padding: 1em;        /* 内側余白 */
    background-color:#ffffff; /* 背景の色 */
}

/* pタグの余白 */
.box1-6 p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 18px;
    color:#4c362c;
    letter-spacing: 0.2em;
    font-weight: bold;
}








/* ボタン */

a.button {
    background-color: #ffffff; /* 背景色 */
    color: #666666; /* 文字色 */
    text-align: left; /* 文字のアライメント */
    display: inline-block; /* ボタンの表示方法 */
    font-size: 12px; /* フォントサイズを小さく */
    font-family: Arial, sans-serif; /* フォント */
    margin: 2px 1px; /* 外側の余白を小さく */
    border: none; /* ボーダーなし */
    padding: 10px 20px; /* 内側の余白を小さく */
}





/* Flexbox PC↓ */
 .wrapper-250720 {
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #ffffff;
    box-sizing: border-box;
    font-size: 12px; /* フォントサイズ */
 }
 .archive-list {
    display: flex;
    justify-content: space-between;
    padding: 0;
 }
 .archive-item {
   width: 33%; /* 基本左寄せだからここの数字で場所を調整 */
   padding: 20px;
   background-color: #fff;
   display: flex;
   flex-direction: column;
 }
 .archive-img-wrap {
   width: 100%;
   height: auto;
   margin-bottom: 10px;
 }
 .archive-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 .archive-item:not(:nth-child(3n)) { /* archive-itemの4の倍数の時だけ○○する */
   margin-right: 30px;
 }
 .archive-ttl {
   margin-bottom: 5px;
   line-height: 1.5;
   background-color: #fff;
   flex-grow: 1;
 }



/* Flexbox SP↓ */

 .wrapper-250720-sp {
    width: 100%;
    margin: 0 auto;
    padding: 5px 10px;
    background-color: #ffffff;
    box-sizing: border-box;
    font-size: 12px; /* フォントサイズ */
 }
 .archive-list-sp {
    display: flex;
    padding: 0;
    justify-content: space-between;
 }
 .archive-item-sp {
   width:33%; /*基本左寄せだからここの数字で場所を調整 */
   padding: 5px;
   background-color: #fff;
   display: flex;
   flex-direction: column;
 }
 .archive-img-wrap-sp {
   width: 100%;
   height: auto;
   margin-bottom: 10px;
 }
 .archive-img-wrap-sp img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 .archive-item-sp:not(:nth-child(3n)) {
   margin-right: 10px;
 }
 .archive-ttl-sp {
   margin-bottom: 5px;
   line-height: 1.5;
   background-color: #fff;
   flex-grow: 1;
 }





/*カートまわり*/

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.product-image {
  flex: 1;
  text-align: center;
}

.product-details {
  flex: 1;
}

@media (max-width: 767px) {
  .product-container {
    flex-direction: column;
  }
}

/* カートボタン専用デザイン */
a.cart-button {
  background-color: #f19a33;
  color: #fff;
  text-align: center;
  padding: 12px 30px;
  margin: 10px 0;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  width: auto;
  min-width: 400px;
}

a.cart-button:hover {
  background-color: #e07a2d;
}



/* 商品名上のWEB限定文字 */
.web-limited {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  font-size: 12px;
  padding: 3px 8px;
  margin-bottom: 5px;
  border-radius: 3px;
}





/*価格*/

.product-details p.price {
  font-size: 18px;
}

.product-details p.price .original-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.product-details p.price .tax {
  font-size: 12px;
  font-weight: normal;
}

.product-details p.price .special-price {
  color: red;
  font-weight: bold;
}





.dotted-line {
  border: none;
  border-top: 1px dotted #ccc;
  margin: 10px 0;
}