@media only screen and (min-width: 767px) {

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  header {
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    background-color: #fff;

    img {
      padding: 0px 20px 0px 0px;
      margin-left: 5px;
      width: 100px;
    }

    .header-menu {
      width: 100%;
      min-width: 1200px;
      background-color: #fff;
      margin-top: 10px;
      height: 54px;
      border-bottom: 1px solid #e2e2e2;

      nav {
        height: 100%;
        width: 100%;
      }
    }

    .home-icon {
        position: absolute;
        top: 10px;
        right: 10px; /* 右上に配置 */
        text-align: center; /* テキストとアイコンを中央揃え */
        display: flex;
        flex-direction: column; /* 縦に並べる */
        align-items: center; /* 中央揃え */
        text-decoration: none; /* リンクの下線を削除 */
    }

    .home-icon img {
        width: 30px; /* アイコンのサイズ調整 */
        height: auto;
    }

    .home-icon span {
        font-size: 12px; /* HOMEテキストを小さく */
        color: #333; /* テキストの色 */
        margin-top: 5px; /* アイコンとHOMEの間に少し余白を追加 */
        padding: 0 15px 0 0;
        text-decoration: none; /* テキストの下線をなくす */
    }

    .header-menu-outer {
      height: 100%;
    }

    .header-menu-inner {
      margin: 0 auto;
      height: 100%;
      width: 1140px;

      ul {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
      }

      li {
        position: relative;
        display: block;
        height: 100%;
        width: 190px;
      }

      li::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 0px;
        height: 20px;
        width: 1px;
        background-color: #e2e2e2;
      }
    }

    .header-menu-item {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      height: 100%;
      width: 100%;
      padding-top: 21px;
      text-decoration: none; /* リンクの下線を削除 */

      img {
        padding: 0px 10px 0px 0px;
        max-width: 30px;
        height: 50%;
      }

      span {
        display: block;
        font-size: 13px;
        line-height: 1;
        letter-spacing: .05em;
        font-weight: 700;
        color: #333;
        padding-top: 8px;
      }
    }
  }



  /* ショップ名スタイル */
  .shop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 30px;
    font-size: 12px; /* モバイル向けにフォントサイズを調整 */
    font-weight: bold;
    color: #545454;
    background-color: #F8EBD5;
    border-radius: 12px;
  }

  /* 商品詳細ページのスタイル */
  .product-details {
    padding: 20px;
  }
  .product-image {
    height: 400px;
    margin-bottom: 20px;
    padding: 0px 20px 0px 0px;
    text-decoration: none; /* リンクの下線を削除 */
  }

  .product-image-PC {
    height: 400px;
    margin-bottom: 20px;
    padding: 0px 20px 0px 0px;
    text-decoration: none; /* リンクの下線を削除 */
  }

  .product-info {
    margin-bottom: 20px;

    h1 {
      font-size: 14px; /* モバイル向けにフォントサイズを調整 */
      margin: 10px 0 5px 0;
      font-weight: bold;
      color: #333;
    }
  }

  /* 評価のスタイル */
  .product-info p {
    margin: 5px 0;
    font-size: 12px; /* モバイル向けにフォントサイズを調整 */
    color: #555;
    padding: 10px;
  }

  /* 星のスタイル */
  .product-info p1 {
    color: #f39c12; /* 星の色を黄色に */
    font-weight: bold;
    padding: 10px 0px 10px 5px;
  }

  /* 価格のスタイル */
  .product-info p2 {
    color: #e74c3c; /* 価格の色を赤に */
    font-weight: bold;
    font-size: 20px; /* モバイル向けにフォントサイズを調整 */
    padding: 10px 0px 10px 5px;
  }

  /* 通常スタイル */
  .product-info p3 {
    font-size: 12px; /* モバイル向けにフォントサイズを調整 */
    color: #333333;
    padding: 10px 0px 10px 5px;
  }

  /* 強調スタイル */
  .product-info p4 {
    font-size: 16px; /* モバイル向けにフォントサイズを調整 */
    font-weight: bold;
    color: #333333;
    margin: 5px 0;
    padding: 10px 0px 10px 5px;
  }

  .background-color {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: #FFE4E4;
    border-radius: 5px;
  }

  /* 商品説明の配置 */
  .flex {
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }

  .buy-button {
    background-color: #AC0517;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  .buy-button:hover {
    background-color: #FF4500;
  }