.body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.filter {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    font-size: 1.2rem;
    flex-wrap: wrap; /* 一列に表示するために追加 */
}

.filter div {
    display: inline-block; /* ラベルと選択肢を一列に表示するために追加 */
    margin: 0.5rem 1rem;
    font-size: 1.5rem; /* ラベルと選択肢の文字サイズを大きく */
}

.plans {
    display: flex;
    flex-wrap: wrap; /* 2列に並べるために追加 */
    justify-content: center; /* 中央揃え */
}

.plan {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 1rem;
    padding: 1rem;
    width: 95%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.plan h2 {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    font-size: 1rem; 

}

.images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images img {
    width: 100%;
    max-width: 700px;
    margin-bottom: 1rem;
    cursor: pointer;
}

.small-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
}

.small-images img {
    width: 24%;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
    cursor: pointer;
}

.details {
    margin: 0.5rem 0;
    text-align: right; /* 右寄せ */
    font-size: 1.5rem; /* 価格の文字サイズを大きく */
}

.price {
    color: red;
}
.option {
    font-weight: bold;
    font-size: 1rem;
    
}

.upcharge {
    font-size: 0.8rem; /* 土日祝日UP料金の文字サイズを大きく */
    text-align: right; /* 右寄せ */
}

.description {
    font-size: 0.8rem; 
    margin: 0.5rem 0;
    text-align: left;
}

.more-content {
    display: none;

  }
.more-content p{
    font-size: 0.8rem; 
    margin: 0.5rem 0;
    text-align: left;
  }

  .show-more-button {
    cursor: pointer;
    color: blue;
    text-decoration: underline;

  }
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

.inquiry-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif; /* おしゃれなフォントを使用 */
    font-weight: 500;
    color: #fff;
    background-color: #85bddde0; /* モノクロ系の背景色 */
    border: none;
    border-radius: 0; /* 角を丸くしない */
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.inquiry-button:hover {
    background-color: #3949AB; /* ホバー時の色 */
    transform: translateY(-2px); /* ホバー時に少し浮かせる */
}

.inquiry-button:active {
    background-color: #3949AB; /* クリック時の色 */
    transform: translateY(0); /* クリック時に元の位置に戻す */
}


@media (max-width: 768px) {
    .filter {
        flex-direction: column;
        align-items: flex-start; /* 左寄せに変更 */
        padding-left: 10%; /* 画面端から10%離す */
    }

    .filter div {
        width: 80%; /* 幅を80%に設定して中央寄せを防ぐ */
        text-align: left; /* 左寄せ */
    }

    .plans {
        flex-direction: column; /* スマートフォンでは1列に */
    }

    .plan {
        width: 90%;
    }
}

@media (min-width: 769px) {
    .plan {
        width: 45%; /* タブレットとPC画面では2列に */
    }
}

/* モーダルウインドウのスタイル */
.modalplan {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 画面が動かないようにする */
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-nav .prev,
.modal-nav .next {
    padding: 16px;
}