@charset "utf-8";
body {
	background-image: url(img/bg_body.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	padding: 0px;
	background-color: #F4F4F4;
}
#wrapper {
    max-width: 1792px;  /* 最大幅を制限 */
    width: 100%;         /* 画面幅に合わせて伸縮 */
    margin: 0 auto;
    overflow: hidden;
    background-image: url(img/bg_header.jpg);
    background-repeat: no-repeat;
    background-position: center;
	
}
#header{
	width: 1060px;
	margin-right: auto;
	margin-left: auto;
	height: 338px;
	}
#header img {
	padding-top: 210px;
}
#global_menu {
    height: 55px;
    width: 1060px;
    margin: 0 auto;
}

#global_menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;  /* li間の均等間隔 */
    list-style: none;
}

#global_menu ul li {
    float: none !important;  /* floatを完全に無効化 */
    margin: 0;                /* 個別余白を削除 */
    height: 55px;
    line-height: 55px;
    font-weight: bold;
    font-size: 14px;
    color: #FFF;
}

#global_menu ul li a {
    display: block;
    padding: 0 10px;
    color: #FFF;
    text-decoration: none;
}

#contents {
	width: 1060px;
	margin-right: auto;
	margin-left: auto;
}
#pan {
	font-size: 12px;
	line-height: 55px;
	height: 55px;
	color: #999;
}
.breadcrumb ul {
  display: flex;
  align-items: center; /* 縦方向中央揃え */
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

/* 2個目以降だけ、左にマージン＆パディングを同値で与える */
.breadcrumb li + li {
  margin-left: .9em;     /* ← 棒の左側 */
  padding-left: .9em;    /* ← 棒の右側 */
}

.breadcrumb li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #999;
  transform: translateY(-50%);
}
#pan ul li a {
	color: #999;
	text-decoration: none;
}
#main-area {
    display: flex;   /* 本文とサイドバーを横並びに */
    gap: 20px;
}
#body {
	flex: 1;             /* 本文エリアは残り幅をすべて使用 */
	background-color: #FFFFFF;
	padding: 25px;
	width: 640px;
}

#aside {
	width: 300px;        /* サイドバーは固定幅 */
	background-color: #fff;
	padding: 25px;
}
.responsive-table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Helvetica Neue", Arial, sans-serif;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 軽い影で浮き感 */
	font-size: 12px;
	line-height: 16px;
}

.responsive-table th {
	background-color: #111111; /* 深めのグレー */
	color: #f9fafb;
	font-weight: 600;
	padding: 10px;
	text-align: left;
	border-right: 1px solid #374151;
}

.responsive-table th:last-child {
  border-right: none;
}

.responsive-table td {
	padding: 10px;
	background-color: #ffffff;
	border-right: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.responsive-table td:last-child {
  border-right: none;
}

.responsive-table tr:nth-child(even) td {
  background-color: #f9fafb; /* 交互背景 */
}

.responsive-table tr:hover td {
  background-color: #f3f4f6; /* ホバー */
}

.responsive-table th, .responsive-table td {
  word-wrap: break-word;
}


.nutrition-info {
  display: block;
  font-weight: 500;        /* 強すぎない太さ */
  margin: 12px 0;          /* 上下余白で本文と分離 */
  color: #111;             /* 文字色は落ち着いた濃色 */
  line-height: 1.4;        /* 読みやすさ */
}
.summary {
  border: 2px solid #4cafef;   /* 目立つけど派手すぎない枠線 */
  background-color: #f9fcff;   /* 薄い背景色 */
  padding: 20px;
  border-radius: 8px;          /* 角丸で柔らかい印象 */
  margin-top: 30px;
}

/*コストパフォーマンス*/
  .cost_performance {
    display: flex;
    width: 100%;
    font-family: Arial, sans-serif;
  }

  .cost_performance_spec {
    width: 20%;
    display: flex;
    flex-direction: column;
  }

  .cost_performance_spec_price {
    background-color: gray;
    color: white;
    padding: 10px;
    text-align: center;
  }

  .cost_performance_spec_protein {
    background-color: #d3d3d3; /* 薄いグレー */
    padding: 10px;
    text-align: center;
  }

  .cost_performance_price_of_1g {
    width: 80%;
    background-color: orange;
    padding: 10px;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
  }
.price-per-gram {
    font-size: 1em;
  }

.amount {
    font-size: 3em; /* 14円を3倍に */