@charset "UTF-8";

/* main全体に対して */
.for-back{
    background: url(../img/plan.png);
    background-color: black;
    background-size: cover;
    width: 100%;
    height: auto;
}
/* プラン紹介　タイトルと概要 */
.top-intro{
    width: 100vw;
    height: auto;
    margin: 2rem auto;
    text-align: center;
}
/* 開閉バーボタン */
.flex-acord{
    display: flex;
    justify-content: space-between;
    border: 1px solid #fff;
    margin: 0;
    align-items: center;
}
/* ボタンの中の文字 */
.flex-acord p{
    margin: 0.5rem;
}
/* ± */
.plus{
    text-align: right;
}

/* 開閉部分　バーベキュープランの中身 */
/* 開閉部分の肉画像とテキストを横並び */
.for-flex{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 1rem auto;
}

/* 画像（左側） */
.plan-img{
    width: 40vw;
    height: 30vh;
    margin: 1rem;
    object-fit: cover;
}
/* プラン概要テキスト（右側） */
.plantext{
    width: 50%;
    height: auto;
    margin: 1rem;
}
.plantext h3{
    text-align: center;
    border-bottom: 1px solid var(--white);
    margin-bottom: 1rem;
}

/* プラン左右(BBQのみ) */
.plan-card{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.BBQ-plan{
    width: 50%;
    border: 1px solid white;
    text-align: left;
    margin: 2rem;
}
.BBQ-plan h4{
    margin: 2rem;
}

.BBQ-plan p{
    margin: 2rem  1rem;
}
.BBQ-plan li{
    border: none;
    list-style-type: none;
    list-style: none;
    text-decoration: none;
}
.attention{
    color: #fff;
    width: 70%;
    margin: 1rem auto;
    border: 1px solid white;
    padding: 2rem;
}
.attention li{
    font-size: 1rem;
    margin: 1rem;
}

/* 開閉の仕掛けに関わる部分 */

/* リストバー */
.detail-openclose:hover{
    cursor: pointer;
}
/* 内容　初期閉じ */
.toggle-content{
    display: none;
}
.toggle-content.active{
    display: block;
}


.detail-openclose::before,
.detail-openclose::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: 24px;
  height: 1px;
  background-color: black;
}

.detail-openclose::after {
  transform: rotate(90deg);
  transition: .4s;
}
