@charset "UTF-8";

/* お店情報セクション用 追加CSS */
      :root {
          --cafe-primary: #8d6e63;
          --cafe-secondary: #d7ccc8;
          --cafe-bg: #faf9f6;
      }
      .shop-info-card {
          background-color: var(--cafe-bg);
          border-radius: 15px;
          padding: 30px;
          margin-top: 40px;
          box-shadow: 0 4px 15px rgba(0,0,0,0.03);
          border: 1px solid #f0eee9;
      }
      .shop-info-card .section-title {
          font-size: 1.1rem;
          color: var(--cafe-primary);
          font-weight: bold;
          margin-bottom: 10px;
          display: flex;
          align-items: center;
          border-bottom: 1px solid var(--cafe-secondary);
          padding-bottom: 8px;
      }
      .shop-info-card .section-title i {
          margin-right: 10px;
          font-size: 1.2rem;
      }
      .shop-info-card .info-item {
          margin-bottom: 25px;
      }
      .shop-info-card .info-item:last-child {
          margin-bottom: 0;
      }
      .shop-info-card .insta-link {
          color: #e4405f;
          text-decoration: none;
          transition: opacity 0.2s;
          display: inline-block;
          margin-top: 5px;
      }
      .shop-info-card .insta-link:hover {
          opacity: 0.7;
          text-decoration: underline;
      }
      .shop-info-card .menu-trigger {
          background-color: #fff;
          border: 2px dashed var(--cafe-secondary);
          border-radius: 10px;
          padding: 15px;
          text-align: center;
          cursor: pointer;
          transition: all 0.3s ease;
          display: block;
          width: 100%;
          color: var(--cafe-primary);
      }
      .shop-info-card .menu-trigger:hover {
          background-color: var(--cafe-secondary);
          border-color: var(--cafe-primary);
          transform: translateY(-2px);
      }
      .shop-info-card .menu-trigger span {
          font-weight: bold;
      }
      
      /* モーダル用 追加CSS */
      .menu-modal-content {
          border-radius: 15px;
          border: none;
          overflow: hidden;
          background-color: transparent;
      }
      .menu-modal-body {
          padding: 0;
          background-color: #000;
          position: relative;
          text-align: center; /* 画像を中央寄せにするため追加 */
      }
      .menu-modal-body img {
          width: auto;             /* 横幅は画像に合わせて自動調整 */
          max-width: 100%;         /* ただしスマホ等で横にはみ出さないように100%を上限に */
          max-height: 85vh;        /* 画面の高さの85%を上限にする（ここが最大のポイント！） */
          object-fit: contain;     /* 縦横比を崩さずに枠内に収める */
          display: block;
          margin: 0 auto;          /* 画像を中央に配置 */
      }
      .menu-close-btn {
          position: absolute;
          top: 15px;
          right: 15px;
          z-index: 1060;
          background: rgba(255, 255, 255, 0.8);
          border-radius: 50%;
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: none;
          box-shadow: 0 2px 5px rgba(0,0,0,0.2);
          transition: background 0.2s;
      }
      .menu-close-btn:hover {
          background: #fff;
      }

      .owner-name {
        font-weight:700;
        font-size:1.5rem;
        line-height:150%;
        border-bottom:1px dotted #ccc;
        padding-bottom:1rem;
        margin-bottom:1rem;
      }