@charset "UTF-8";

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }

  .indent {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: 0.75px;
  }

  .article .contents-section__title {
    /* margin-top: 50px; */
    margin-bottom: 50px;
  }
  .article .desc {
        margin-bottom: 44px;
    }
  .wh {
    background-color: #fff;
        padding: 80px 0;
        margin-top: 50px;
        margin-bottom: 100px;
  }

  .item {
    margin: 0 auto;
    width: 80%;
    /* display: flex;
       justify-content: space-between;
       flex-wrap: wrap;
       row-gap: 80px; */
  }

  /* .item_box {
       width: calc(50% - 2.5vw);
       display: flex;
       flex-direction: column;
     } */

  /* グリッドレイアウト */
  .item_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 56px 14px;
  }

  /* カード */
  .item_box {
  }

  .item_box .image-wrapper {
    position: relative;
    cursor: pointer;
  }

  .item_box .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;

  }

  .item_box .zoom-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding: 6px;
  }

  /* テキスト */
  .item_box .title {
    padding: 0 0 14px 0;
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #2a3f8f;
    border-bottom: 1px solid #6274A8;
    font-weight:500;
  }

  .item_box .price {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    margin: 12px 0 0;
  }

  .item_box .specs {
        margin: 10px 0 0 0;
        font-size: 12px;
        color: #555
  }
  .item_box .color {
        margin: 6px 0 0 0;
        font-size: 12px;
        color: #555
  }

  /* MORE ボタン */
  .load-more {
    display: block;
    margin: 60px auto 0;
    padding: 11px 80px 13px;
    border: 1px solid #6274A8;
    border-radius: 30px;
    background: transparent;
    color: #6274A8;
    font-size: 16px;
    cursor: pointer;
    position: relative;
  }

  .load-more .plus {
    position: absolute;
    right: 18px;
  }

  /* 最初は hidden クラスをつけて非表示 */
  .hidden {
    display: none !important;
  }

  /* モーダル */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 21474836319;
  }

  .modal-content {
    position: relative;
    max-width: 600px;
    max-height: 90%;
    width: 60%;
  }

  .modal-content img {
    width: 100%;
    height: auto;
    display: block;
  }

  .close {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
  }

  .item_box .item_contents {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .item_box .item_text {
    flex-grow: 1;
  }

  .item_box h4 {
    font-size: 16px;
    color: var(--baseblue);
    border-bottom: 1px solid var(--baseblue);
    padding-bottom: 15px;
    margin-bottom: 12px;
    font-weight: 500;
  }

  /* .party_catering .item_box h4,
     .lunch_catering .item_box h4 {
       height: 50px;
     } */

  .item_box h5 {
    font-size: 16px;
    color: var(--baseblue);
    margin-bottom: 15px;
    line-height: 24px;
    font-weight: 500;
  }

  .item_box img {
    width: 100%;
  }

  .item_box .logo {
    width: auto;
    max-width: 90%;
    max-height: fit-content;
    height: 100%;
  }

  .item_box .bold {
    font-weight: bold;
  }

  .item_box a.link {
    font-size: 14px;
    color: var(--baseblue);
    border: 1px solid var(--baseblue);
    background-color: #fff;
    width: 100%;
    padding: 0.9vw;
    border-radius: 50px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    transition: opacity 0.3s ease;
  }

  .item_box a.link:hover {
    opacity: 0.7;
  }

  .item_box a.link .pdf_icon {
    display: inline-block;
    height: 1.2vw;
    max-height: 19px;
    width: 1.2vw;
    max-width: 19px;
    background-image: url(/assets/img/catering/ico_pdf.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 1.3vw;
    top: 31%;
  }

  section.drink_catering,
  .party_catering,
  .lunch_catering {
    margin-bottom: 100px;
  }
          .hidden {
  display: none !important;
}
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .indent {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 20px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .article .contents-section__title {
    /* margin-top: 11vw; */
    margin-bottom: 7vw;
  }
  .article--nav .sidenav.is-absolute{
    top: 77vw!important;
  }
  .wh {
    background-color: #fff;
    padding: 0 0 9vw 0;
    margin-top: 9vw;
    margin-bottom: 9vw;
  }

  .lead p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.75px;
  }

  .item_grid{
    padding: 8vw 7vw 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 2vw), 1fr));
    gap: 8vw 3vw;
  }

  .item {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12vw;
  }

  .item_box {
  }

  .item_box .image-wrapper {
    position: relative;
    cursor: pointer;
  }

  .item_box .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;

  }

  .item_box .zoom-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding: 6px;
  }

  /* テキスト */
  .item_box .title {
    padding: 0 0 2vw 0;
    margin: 0 0 4vw 0;
    font-size: 3.8vw;
    color: #2a3f8f;
    border-bottom: 1px solid #6274A8;
    font-weight:500;
  }

  .item_box .price {
    margin: 0;
    font-size: 3.8vw;
    font-weight: bold;
    margin: 12px 0 0;
  }

  .item_box .specs {
        margin: 10px 0 0 0;
        font-size: 3.2vw;
        color: #555
  }
  .item_box .color {
        margin: 6px 0 0 0;
        font-size: 3.2vw;
        color: #555
  }

  /* MORE ボタン */
  .load-more {
    display: block;
    margin: 0 auto;
    padding: 11px 80px 13px;
    border: 1px solid #6274A8;
    border-radius: 30px;
    background: transparent;
    color: #6274A8;
    font-size: 3.8vw;
    cursor: pointer;
    position: relative;
  }

  .load-more .plus {
    position: absolute;
    right: 18px;
  }

  /* 最初は hidden クラスをつけて非表示 */
  .hidden {
    display: none !important;
  }

  /* モーダル */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 21474836319;
  }

  .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }

  .modal-content img {
    width: 100%;
    height: auto;
    display: block;
  }

  .close {
    position: absolute;
    top: -12vw;
    right: 0px;
    font-size: 7vw;
    color: #fff;
    cursor: pointer;
  }

  .item_box .item_contents {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .item_box .item_text {
    flex-grow: 1;
  }

  .item_box h4 {
    font-size: 3.8vw;
    color: var(--baseblue);
    border-bottom: 1px solid var(--baseblue);
    padding-bottom: 15px;
    margin-bottom: 12px;
    font-weight: 500;
  }

  /* .party_catering .item_box h4,
     .lunch_catering .item_box h4 {
       height: 50px;
     } */

  .item_box h5 {
    font-size: 3.8vw;
    color: var(--baseblue);
    margin-bottom: 15px;
    line-height: 24px;
    font-weight: 500;
  }

  .item_box img {
    width: 100%;
  }

  .item_box .logo {
    width: auto;
    max-width: 90%;
    max-height: fit-content;
    height: 100%;
  }

  .item_box .bold {
    font-weight: bold;
  }

  .item_box a.link {
    font-size: 3.6vw;
    color: var(--baseblue);
    border: 1px solid var(--baseblue);
    background-color: #fff;
    width: 100%;
    padding: 0.9vw;
    border-radius: 50px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    transition: opacity 0.3s ease;
  }

  .item_box a.link:hover {
    opacity: 0.7;
  }

  .item_box a.link .pdf_icon {
    display: inline-block;
    height: 1.2vw;
    max-height: 19px;
    width: 1.2vw;
    max-width: 19px;
    background-image: url(/assets/img/catering/ico_pdf.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 1.3vw;
    top: 31%;
  }

  section.drink_catering,
  .party_catering,
  .lunch_catering {
    margin-bottom: 100px;
  }
        .hidden {
  display: none !important;
}
}
