 /*環境設定--------------------
-----------------------------------*/
img{
	vertical-align:top;
}

 .content .side-content {
     display: none;
     /*カテゴリ一覧とかイオン東北のお客さまサイトやイオン東北eショップへのリンクとかの
	 左側メニューを非表示にする*/
 }

 /*Container--------------------
-----------------------------------*/
.content-inner {
	/*max-width: 855px;*/
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0 auto 30px;
}

.content-inner * {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-inner .content-inner__ttl {
	margin-bottom: calc(30 / 855 * 100%);
}

.content-inner .content-inner__bnr {
	margin-bottom: calc(30 / 855 * 100%);
}

.content-inner .content-inner__order {
	display: flex;
	justify-content: space-between;
	margin-bottom: calc(30 / 855 * 100%);
}

.content-inner .content-inner__order > img {
	width: calc(422 / 855 * 100%);
}

.content-inner .content-inner__pack {
	margin-bottom: calc(60 / 855 * 100%);
}

.content-inner .content-inner__pack__detail {
	margin-bottom: calc(20 / 855 * 100%);
}

.content-inner .content-inner__pack__btn {
	width: calc(800 / 855 * 100%);
	margin: 0 auto;
}

.content-inner .content-inner__cat {
	margin-bottom: calc(60 / 855 * 100%);
}

.content-inner .content-inner__cat__ttl {
	margin-bottom: calc(60 / 855 * 100%);
	}

.content-inner .content-inner__cat__list {
	display: flex;
	justify-content: space-between;
}

.content-inner .content-inner__cat__list > li {
	width: calc(280 / 855 * 100%);
}

.content-inner .content-inner__content {
	margin-bottom: calc(50 / 855 * 100%);
}

.content-inner .content-inner__content__ttl {
	margin-bottom: calc(30 / 855 * 100%);
}

.content-inner .content-inner__content__cat {
	margin-bottom: calc(50 / 855 * 100%);
}

.content-inner .content-inner__content__cat:last-of-type {
	margin-bottom: calc(30 / 855 * 100%);
}

.content-inner .content-inner__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: calc(20 / 855 * 100%);
}

.content-inner .content-inner__list--style01 > li:first-of-type {
	width: 100%;
}

.content-inner .content-inner__list > li {
	width: calc(422 / 855 * 100%);
	margin-bottom: calc(10 / 855 * 100%);
}

.content-inner .content-inner__list > li:nth-last-of-type(-n+2) {
	margin-bottom: 0;
}

.content-inner .content-inner__btn {
	width: calc(800 / 855 * 100%);
	margin: 0 auto;
}

.content-inner .content-inner__pickup {
	margin: calc(70 / 855 * 100%) 0;
}

.content-inner .content-inner__pickup-ttl {
	display: inline-block;
	position: relative;
	font-size: 30px;
	font-weight: 600;
	padding: 0 90px;
	margin-bottom: calc(40 / 855 * 100%);
}

.content-inner .content-inner__pickup-ttl::before,
.content-inner .content-inner__pickup-ttl::after {
	display: inline-block;
	width: 74px;
	height: 2px;
	content: '';
	position: absolute;
	top: 40%;
	background-color: #000;
}

.content-inner .content-inner__pickup-ttl:before {
	left: 0;
}

.content-inner .content-inner__pickup-ttl:after {
	right: 0;
}

 .content-inner__product {
	 display: grid;
	 container-type: inline-size;
	 grid-template-columns: 1fr; /*1列表示の時はこの行を使う*/
	 /*grid-template-columns: 1fr 1fr; /*2列表示の時はこの行を使う　※『grid-』の前の『/*』を削除して使用*/
	 /*grid-template-columns: 1fr 1fr 1fr; /*3列表示の時はこの行を使う　※『grid-』の前の『/*』を削除して使用*/
	 row-gap: 15px; /*行間は15px*/
	 column-gap: 10px; /*列間は10px*/
	 flex-wrap: wrap;
	 justify-content: space-between;
	 margin-bottom: calc(40 / 855 * 100%);
 }

 .content-inner__product > li {
	 border: 2px solid #e7e7e7;
	 box-sizing: border-box;
	 /*background-color: #f3f3f3;*/
	 margin-bottom: calc(18 / 855 * 100%);
 }

 .content-inner__product > li:nth-of-type(n+5) {
	margin-bottom: 0;
 }

 .content-inner__product > li > a > img {
	 width: 100%;
 }

 .content-inner__product__inner {
	 padding: calc(20 / 420 * 100%);
 }

 .content-inner__product__plan {
     display: flex;
     align-items: center;             /* 縦中央 */
     justify-content: center;         /* 横中央 */
     font-size: clamp(18px, 2.6vw, 30px);  /*『clamp(最小, 理想, 最大)』で小さい画面ほど文字が小さくなる*/
     font-weight: 600;
     color: white;
     background-color: rgb(140, 0, 0);
     line-height: 1.2;                /* 1行前提の行間 */
     border-top: 1px solid #dddddd;
     padding: 0 16px;                 /* 上下は0、左右のみ */
     block-size: 55px;         /* ← 高さを固定（heightでもOK） */
 }

 .content-inner__product__plan > * {
     max-width: 100%;
     display: block;                  /* 高さ制御を安定させる */
     white-space: nowrap;             /* 改行しない＝1行モード */
     overflow: hidden;                /* はみ出しは非表示 */
     text-align: center;
 }

 .content-inner__product__name {
	 font-size: 30px;
	 font-weight: 600;
	 line-height: 1.3;
	 border-top: 1px solid #dddddd;
	 padding-top: calc(30 / 420 * 100%);
	 margin-bottom: calc(15 / 420 * 100%);
 }

  .content-inner__product__name .notice {
	 font-size: 25px;
	 font-weight: 600;
     color: red;
	 line-height: 1.3;
	 padding-top: calc(30 / 420 * 100%);
	 margin-bottom: calc(15 / 420 * 100%);
 }

 .content-inner__product__price {
	 font-size: 25px;
	 font-weight: 600;
	 line-height: 1.3;
	 text-align: right;
 }

 .content-inner__product__price .proper {
	 font-size: 30px;
 }

 .content-inner__product__price .tax {
	 font-size: 20px;
	 font-weight: 400;
 }

 .content-inner__product__price .small {
	 font-size: 18px;
 }


/*-- --*/
@media screen and (max-width: 855px) {
	.content-inner {
		padding: 10px;
		margin-bottom: 20px;
	}

	.content-inner img {
		width: 100%;
		height: auto;
	}

	.content-inner .content-inner__pickup-ttl {
		font-size: 18px;
		padding: 0 50px;
	}
	
	.content-inner .content-inner__pickup-ttl::before,
	.content-inner .content-inner__pickup-ttl::after {
		width: 30px;
	}

    .content-inner__product__plan {
         /* 2行をきれいに収めるため、pxで行高・上下パディングを固定 */
         font-size: 18px;
         line-height: 22px;
         padding-block: 8px;      /* 上下の余白（8pxずつ） */
         /* block-size は 60px のまま固定 */
    }

    .content-inner__product__plan > * {
         white-space: normal;     /* 改行を許可 → 複数行可 */
         display: block;
         overflow: hidden;        /* 3行目以降は非表示（省略記号なし） */
         /* テキスト表示領域（高さ）は block-size − paddingの内側で自動クリップされる */
         /* 2行が確実に収まるように、行高と上下パディングの合計が60px内に収まる設計が重要 */
         overflow-wrap: anywhere; /* 連続英字も折り返す */
    }

	.content-inner__product__name{
         font-size: 19px
    }


	.content-inner__product__price {
		 font-size: 16px
	}

	.content-inner__product__price .proper {
		 font-size: 20px;
	}

	.content-inner__product__price .tax {
		 font-size: 14px;
	}

	.content-inner__product__price .small {
		 font-size: 12px;
	}

}