@charset "Shift_JIS";
   /* ベーススタイル */
#daikansyasai202511 .mordal div {
    line-height: normal;
}
a#openModal{
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}
.mordal {
    text-align: right;
    padding-right: 5%;
}
a.product-item{border: none;}

/* モーダルの背景 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

    /* モーダル本体 */
.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 90%;
  max-height: 60vh;
  padding: 20px 0 20px 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* 外枠はスクロールしない */
}

.modal-scroll-inner {
  overflow-y: auto;
  flex: 1;
}

    /* 閉じるボタン */
    .close-button {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      background: #eee;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    /* 商品リスト */
    .product-section {
      margin-bottom: 24px;
      padding-top: 1px;
    }

    .product-section h3 {
      margin-bottom: 12px;
      text-align: left;
      font-size: 18px;
      border-left: 4px solid #007b8f;
      color: #333;
      padding-left: 8px;
    }

    .product-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      text-decoration: none;
      color: #333;
      transition: background 0.2s;
    }

    .product-item:hover {
      background: #f5f5f5;
    }

    .product-thumb {
      width: 48px;
      height: 48px;
      background: #ddd;
      border-radius: 6px;
      margin-right: 12px;
      flex-shrink: 0;
      object-fit: cover;
    }

    .product-name {
      font-size: 16px;
      padding-right: 16px;
      text-align: left;
    }
@media screen and (max-width: 768px) {
   a#openModal {font-size: 13px;} 
}