.f-main {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: relative;
	width: 1100px;
	margin: auto;
  }
  
  .flex_1 {
	order: 1;
  }
  
  .head {
	display: flex;
	justify-content: space-between;
  }
  
  .flex_2 {
	order: 2;
	height: 30px;
	margin-top: 2px;
  }
  
  .breadcrumb {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .breadcrumb li {
	display: inline;
	list-style: none;
	font-weight: bold;
  }
  
  .breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	color: #555;
  }
  
  .breadcrumb li:last-child:after {
	content: '';
  }
  
  .breadcrumb li a {
	text-decoration: none;
	color: #52b5ee;
  }
  
  .breadcrumb li a:hover {
	text-decoration: underline;
  }
  
  .flex_3 {
	order: 3;
  }
  
  .content {
	display: flex;
	justify-content: space-between;
  }
  
  .global-nav {
	order: 1;
  }
  /* 画像コンテンツをボタンから20px右にずらす */
.rightBox {
    order: 2;
    margin-left: 20px; /* ボタンから右へ20pxずらす */
}

/* ボタン専用のスタイル */
.nav-button {
    display: block;            /* ボタンをブロック要素にして縦並びに */
    width: 180px;              /* ボタンの幅 */
    min-height: 50px;          /* ボタンの最低高さを設定 */
    padding: 5px 0;            /* 上下の余白を調整 */
    background-color: #e6f2d9; /* 緑色の背景色 */
    color: #556b2f;            /* テキスト色（緑系） */
    font-size: 14px;           /* フォントサイズ */
    font-weight: bold;         /* 文字をボールドに */
    text-align: center;        /* テキストを中央揃え */
    text-decoration: none;     /* アンダーラインを削除 */
    margin-bottom: 5px;        /* ボタン間のスペースを詰める */
    border-radius: 5px;        /* 角丸にする場合 */
    border: 1px solid #c0c0c0; /* ボタンの境界線 */
    line-height: 1.4;          /* 複数行のテキスト用に行間を少し広めに */
    display: flex;             /* フレックスボックスで中央揃えを簡単に */
    align-items: center;       /* 縦方向に中央揃え */
    justify-content: center;   /* 横方向に中央揃え */
    word-wrap: break-word;     /* テキストが長すぎる場合に折り返す */
}

/* 特定のボタン (宅配人気商品お試しセット) */
/* 新しいピンク色のボタン (お問い合わせサンプルのお申込み) */
.nav-button.pink {
    background-color: #f8c6d8; /* ピンク色の背景色 */
    color: #800000;            /* 濃い赤のテキスト */
    font-weight: bold;         /* 文字をボールドに */
}

/* ホバー時のエフェクト */
.nav-button:hover {
    background-color: #d0e4bd; /* ホバー時の背景色 */
    text-decoration: underline; /* ホバー時のアンダーライン */
}
  
  .rightBox {
	order: 2;
  }
  
  .middle img {
	max-width: 925px;
  }
  
  .flex_4 {
	order: 6;
	text-align: center;
	margin-top: 20px;
  }
  
  .copy {
	position: relative;
	top: 10px;
	left: 0;
	margin: 0 auto;
	width: 100%;
	text-align: center;
  }