@charset "UTF-8";
/* CSS Document */
/* アコーディオン全体の枠組み */
.travel-accordion-container {
    max-width: 1000px; /* LPの幅に合わせて調整してください */
    margin: 0 auto;
}

/* 各アコーディオンの箱 */
.tour-details {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* クリックする見出し部分 */
.tour-details summary {
    padding: 15px 20px;
    background-color: #f8f8f8;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* デフォルトの三角形を消す */
    position: relative;
    display: block;
}

/* 右側の「＋」アイコン */
.tour-details summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s;
}

/* 開いている時のスタイル（見出しの色を変える） */
.tour-details[open] summary {
    background-color: #eef4f8; /* 爽やかな青系などに */
    border-bottom: 1px solid #ddd;
}

/* 開いている時の「ー」アイコン */
.tour-details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

/* 中身のコンテンツエリア */
.tour-content {
    padding: 20px;
    background-color: #fff;
    animation: details-show 0.4s ease;
}

/* ふわっと表示させるアニメーション */
@keyframes details-show {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Safari/Chromeのデフォルト矢印を消す */
.tour-details summary::-webkit-details-marker {
    display: none;
}
