@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);


@media (min-width: 768px) {
    .consultation .ttl-item {
        margin-bottom: 10px;
        font-size: 17px;
    }
}

.mokuji_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    font-size: 17px;
    margin: 20px auto 40px;
    padding: 30px;
    background-color: #fff;
}

.mokuji_nav h2 {
    color: #008d71;
    font-size: 20px;
}

.mokuji_nav li {
    width: 46%;
}

.mokuji_nav li:nth-child(1) {
    width: 100%;
}

.mokuji_nav li:nth-child(n + 2) {
    margin-top: 10px;
}

.mokuji_nav a {
    display: block;
    color: #4c4c4c;
    font-weight: bold;
    text-decoration: none;
    text-indent: -12px;
    padding-left: 12px;
}

.mokuji_nav a::before {
    content: "●";
    color: #008d71;
    display: inline-block;
    width: 12px;
    height: 12px;
}

.mokuji_nav::after {
    content: "";
    display: block;
    width: 46%;
    /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

.js-content {
    display: none;
    /* デフォルトは非表示 */
}

.active .js-content {
    display: block;
    /* 開いた状態 */
}



@media print,
screen and (max-width: 767px) {
    .mokuji_nav {
        width: 96%;
        font-size: 15px;
        line-height: 1.4
    }

    .mokuji_nav li {
        width: 100%;
    }

    .mokuji_nav h2 {
        font-size: 18px;
    }
}

/* <!-- 監修スタイル --> */

.shop_adviser_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shop_adviser_list li {
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 4px 13.5px 1.5px rgba(77, 65, 65, 0.15);
    box-shadow: 0px 4px 13.5px 1.5px rgba(77, 65, 65, 0.15);
    border-radius: 20px;
    padding: 4%;
    margin-bottom: 30px;
}

.shop_adviser_list_top figure,
figure+.shop_adviser_list_ttl {
    width: 48%;
    text-align: center;
}

.shop_adviser_list_ttl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.shop_adviser_list_top {
    display: flex;
    justify-content: space-between;
}

.shop_adviser_list_ttl h2 {
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.shop_adviser_list_ttl h3 {
    font-size: 16px;
    font-weight: 400;
}

.shop_adviser_list_ttl p {
    margin-top: 5px;
    text-align: center;
}

.shop_adviser_list_top+.shop_adviser_list_bottom {
    margin-top: 20px;
}

@media (min-width: 767px) {
    .shop_adviser_list li {
        width: 48%;
        padding: 2%;
    }

    .shop_adviser_list_top figure {
        width: 38%;
    }

    figure+.shop_adviser_list_ttl {
        width: 58%;
    }

    .shop_adviser_list_ttl {
        width: 100%;
    }

}
 /* カテゴリフィルタリング用のCSS  */

    #category-buttons {
      margin-bottom: 20px;
    }

    .accordion {
      margin: 0;
      padding: 10px 15px;
      background-color: #24A38A;
      /* アコーディオンの背景色 */
      color: white;
      border: none;
      text-align: left;
      outline: none;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
    }

    .accordion:hover {
      background-color: #3CB19A;
      /* ホバー時の色 */
    }

    .accordion.active {
      background-color: #1E8D78;
      /* アクティブ時の色 */
    }

    .panel {
      display: none;
      /* 非表示 */
      overflow: hidden;
      background-color: #f1f1f1;
      margin-top: 5px;
      padding: 5px 15px 15px 15px;
      border-radius: 0 0 5px 5px;
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      /* 左寄せ */
      gap: 10px;
      margin-top: 10px;
    }

    .button-group button {
      width: 140px;
      /* PC時は固定幅 */
      padding: 10px;
      border: none;
      background-color: #24A38A;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      font-size: 14px;
      word-wrap: break-word;
    }

    .button-group button:hover {
      background-color: #3CB19A;
    }

    .button-group button.active {
      background-color: #1E8D78;
    }

    /* スマホ用 */
    @media (max-width: 768px) {
      .button-group {
        justify-content: flex-start;
        /* 左寄せ */
      }

      .button-group button {
        width: calc(33.33% - 10px);
        /* スマホ表示時に3つ並べる */
        min-height: 60px;
        /* 高さを統一 */
        display: flex;
        align-items: center;
        /* 縦中央揃え */
        justify-content: center;
        /* 横中央揃え */
        text-align: center;
      }
    }

