/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111; /* 暗い背景色 */
    color: #eee; /* 明るいグレーのテキスト色 */
    font-family: 'Playfair Display', serif; /* 高級感のあるセリフ体フォント */
    line-height: 1.6; /* 行間を広げる */
    overflow-x: hidden; /* 横スクロールを禁止 */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /*左右中央寄せ*/
    padding: 20px;
}

/* 長崎和牛A5ランクセクション */
.nagasaki-beef-header img {
    width: 100%;
    display: block; /*画像の下の隙間をなくす*/
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

/* 商品説明テキスト */
.nagasaki-beef-description {
    text-align: center; /*中央寄せ*/
    margin-bottom: 40px; 
}

.description-box {
    background-color: #222; /* 背景色を暗めに */
    padding: 30px; /* 余白を追加 */
    border-radius: 10px; /* 角丸にする */
    margin-bottom: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.nagasaki-beef-description .highlight {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #fff; /* 白色 */
}

.highlight-yellow {
    color: #FFD700; /* 黄色 */
    font-weight: bold; /* 太字にすることで強調 */
}

/* 最高品質の「長崎和牛」セクション */
.nagasaki-beef-award {
    background-color: #111; /* 背景色を暗く */
    padding: 30px; /* 余白を追加 */
    border-radius: 10px; /* 角丸にする */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.nagasaki-beef-award h2 {
    color: #FFD700; /* ゴールドの色 */
    margin-bottom: 20px; /* マージン下を調整 */
    font-size: 2.5rem; /* 見出しサイズ調整 */
    font-weight: 700; /* 太字にする */
    letter-spacing: 1px; /* 文字間隔を広げる */
    text-transform: uppercase; /* 大文字にする */
}

.nagasaki-beef-award p {
    font-size: 1.4em; /* フォントサイズ調整 */
    line-height: 1.6; /* 行間調整 */
    margin-bottom: 20px;
}

/* 商品セクション */
.product-section {
    text-align: center;
    margin-bottom: 40px; /* マージン下を調整 */
}

.product-section h2 {
    color: #FFD700; /* ゴールドの色 */
    margin-bottom: 20px; /* マージン下を調整 */
    font-size: 2rem; /* 見出しサイズ調整 */
    font-weight: 700; /* 太字にする */
    letter-spacing: 1px; /* 文字間隔を広げる */
    text-transform: uppercase; /* 大文字にする */
}

.product-section p {
    font-size: 1.6em; /* フォントサイズ調整 */
    line-height: 1.6; /* 行間調整 */
    margin-bottom: 20px;
}

/* 横並びの商品セクション */
.product-section-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;  /* マージン下を調整 */
    gap: 40px;
}

.product-section-horizontal.reverse {  /* reverseクラスがついた場合 */
    flex-direction: row-reverse; /* 順番を反転 */
}


.text-content {
    width: 50%;  /* 幅を調整 */
    text-align: left; /*中央寄せ*/
    font-size: 1.4em; /* フォントサイズ調整 */
    line-height: 1.6; /* 行間調整 */
}


.image-content {
    width: 45%;  /* 幅を調整 */
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.product-yohaku {
    margin-top: 60px; /* 上余白を調整 */
}


/* 商品グリッド */
.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px; /* マージン下を調整 */
}

.product-item {
    background-color: #222;
    padding: 20px; /* パディング調整 */
    border: 2px solid #a98732; /* ゴールド系の枠線 */
    border-radius: 8px;
    text-align: center;
    width: 30%; /* 幅調整 */
    transition: transform 0.3s ease; 
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* 影を追加 */
}

.product-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px; /* マージン下を調整 */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.product-item h3 {
    font-size: 1.4rem; /* フォントサイズ調整 */
    margin: 10px 0;
    color: #FFD700; /* ゴールドの色 */
}

.product-item p {
    font-size: 1.2rem; /* フォントサイズ調整 */
    color: #fff;
    line-height: 1.4;
}


/* カニ商品セクション */

.image-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.image-container img {
    width: 48%;
    border-radius: 8px;
    display: block; /* 余白除去 */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}


.crab-section h2 {
    color: #FFD700; /* ゴールドの色 */
    font-size: 2rem; /* 見出し調整 */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700; /* 太字にする */
    letter-spacing: 1px; /* 文字間隔を広げる */
    text-transform: uppercase; /* 大文字にする */
}

.crab-description {
    text-align: center;
    font-size: 1.4em; /*フォントサイズ調整*/
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 購入ボタン */
.buy-button {
    display: inline-block;
    padding: 12px 20px; /* パディング調整 */
    margin-top: 15px;
    color: #000;
    background-color: #a98732; /* ゴールド系のボタン */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem; /* フォントサイズ調整 */
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* 影を追加 */
    transition: all 0.3s ease;
}

.buy-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px); 
}
/* 商品説明テキスト */
.nagasaki-beef-description {
    text-align: center; /*中央寄せ*/
    margin-bottom: 40px; 
}

.description-box {
    background-color: #222; /* 背景色を暗めに */
    padding: 30px; /* 余白を追加 */
    border-radius: 10px; /* 角丸にする */
    margin-bottom: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.nagasaki-beef-description .highlight {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #fff; /* 白色 */
}

.highlight-yellow {
    color: #FFD700; /* 黄色 */
    font-weight: bold; /* 太字にすることで強調 */
}

/* 最高品質の「長崎和牛」セクション */
.nagasaki-beef-award {
    background-color: #111; /* 背景色を暗く */
    padding: 30px; /* 余白を追加 */
    border-radius: 10px; /* 角丸にする */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* 影を追加 */
}

.nagasaki-beef-award h2 {
    color: #FFD700; /* ゴールドの色 */
    margin-bottom: 20px; /* マージン下を調整 */
    font-size: 2.5rem; /* 見出しサイズ調整 */
    font-weight: 700; /* 太字にする */
    letter-spacing: 1px; /* 文字間隔を広げる */
    text-transform: uppercase; /* 大文字にする */
}

.nagasaki-beef-award p {
    font-size: 1.4em; /* フォントサイズ調整 */
    line-height: 1.6; /* 行間調整 */
    margin-bottom: 20px;
}
/* 全体的な見やすさを調整 */
body {
    font-size: 16px; /* 基準となるフォントサイズ */
}

/* 商品説明テキスト */
.nagasaki-beef-description .highlight {
    font-size: 2rem; /* フォントサイズを大きく */
}

.highlight-yellow {
    font-size: 1.8rem; /* フォントサイズを大きく */
}

/* 商品セクション */
.product-section h2 {
    font-size: 2.2rem; /* フォントサイズを大きく */
}

.product-section p {
    font-size: 1.4rem; /* フォントサイズを大きく */
}

/* 横並びの商品紹介セクション */
.product-section-horizontal {
    gap: 30px; /* 画像とテキストの間にスペースを追加 */
}

.text-content {
    width: 45%; /* テキスト部分の幅を調整 */
}

.image-content {
    width: 55%; /* 画像部分の幅を調整 */
}

.product-section-horizontal.reverse {
    justify-content: flex-end;
    /* 画像とテキストの順番を反転 */
    flex-direction: row-reverse;
    align-items: center;
}

/* 商品グリッド */

.product-item {
    width: 31%; /* アイテムの幅を調整 */
}

.product-item h3 {
    font-size: 1.6rem;
}
.product-yohaku {
    margin-top: 80px; /* 上余白を調整 */
}
/* カニ商品セクション */

/* カニ商品セクションのグリッド調整 */
.crab-section .product-grid {
    display: flex;
    flex-wrap: wrap;  /* 複数行に折り返す */
    gap: 20px; /* アイテム間のスペースを広げる */
    margin-bottom: 60px; /* マージン下を調整 */
}


.crab-section h2 {
    font-size: 2.2rem;
}

.crab-description {
    font-size: 1.4rem;
}

/* 購入ボタン */
.buy-button {
    font-size: 1.2rem; /* ボタンの文字サイズを大きく */
}

.product-yohaku {
    margin-top: 80px; /* 上余白を調整 */
}
/* レスポンシブデザイン */
@media (max-width: 768px) { /* タブレットサイズ以下 */
    .product-section-horizontal {
        flex-direction: column; /* 横並びから縦並びに変更 */
        align-items: center; /* 中央寄せ */
        gap: 20px;
    }
.nagasaki-beef-description .highlight {
    font-size: 1em;
}
    .text-content {
        width: 100%;  /* 幅を100%にする */
        text-align: center; /* 中央寄せ */
    }
.highlight-yellow {
    font-size: 1rem;
}
    .image-content {
        width: 100%; /* 幅を100%にする */
    }

    .product-grid {
        justify-content: center; /* アイテムを中央寄せ */
    }

    .product-item {
        width: 100%; /* アイテムの幅を100%にする */
    }

    .nagasaki-beef-award h2 {
        font-size: 1.8rem; /* 見出しのサイズを調整 */
    }
	.nagasaki-beef-award {
		padding: 0px;
		font-size: 9px;
	}
    .crab-section h2 {
        font-size: 1.8rem; /* 見出しのサイズを調整 */
    }

    .crab-description {
        font-size: 1rem; /* フォントサイズを調整 */
    }

    .product-section-horizontal.reverse,
    .crab-section-horizontal.reverse { 
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
    }

    .product-section-horizontal.reverse .image-content,
    .crab-section-horizontal.reverse .image-content {
        order: -1; /* 画像を下に配置 */
    }

    /* カニのセクションの調整 */
    .crab-section {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
    }

    .crab-section .image-container {
        order: -1; /* 画像を下に配置 */
    }

    .crab-section .product-grid {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
        gap: 10px; /* スマホサイズでは間隔を狭くする */
    }
}
/* レスポンシブデザイン */
@media (max-width: 768px) { /* タブレットサイズ以下 */
    .product-section-horizontal {
        flex-direction: column; /* 横並びから縦並びに変更 */
        align-items: center; /* 中央寄せ */
        gap: 20px;
    }
br {
    display: none;
  }
    .text-content {
        width: 100%;  /* 幅を100%にする */
        text-align: center; /* 中央寄せ */
		font-size: 1rem;
    }

    .image-content {
        width: 100%; /* 幅を100%にする */
		order: -1;
    }
	.product-section h2 {
    	font-size: 1.5rem;
	}
    .product-grid {
        justify-content: center; /* アイテムを中央寄せ */
    }

    .product-item {
        width: 100%; /* アイテムの幅を100%にする */
    }
	.product-yohaku {
    margin-top: 0px;
}
    .nagasaki-beef-award h2 {
        font-size: 1.5rem; /* 見出しのサイズを調整 */
    }

    .crab-section h2 {
        font-size: 1.5rem; /* 見出しのサイズを調整 */
    }

    .crab-description {
        font-size: 1rem; /* フォントサイズを調整 */
    }

    .product-section-horizontal.reverse,
    .crab-section-horizontal.reverse { 
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
    }

    .product-section-horizontal.reverse .image-content,
    .crab-section-horizontal.reverse .image-content {
        order: -1; /* 画像を下に配置 */
    }

    /* カニのセクションの調整 */
    .crab-section {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
    }

    .crab-section .image-container {
        order: -1; /* 画像を下に配置 */
    }

    .crab-section .product-grid {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央寄せ */
        gap: 10px; /* スマホサイズでは間隔を狭くする */
    }

    .product-item {
        width: calc(100% - 20px); /* 幅を大きくする */
        margin: 10px; /* マージンを設定 */
    }

    /* カニと肉のセクションの幅を揃える */
    .nagasaki-beef-award .product-grid,
    .crab-section .product-grid {
        width: 100%; /* 画面幅いっぱいにする */
    }
}
