@charset "utf-8";

/*費用事例*/
  .case_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 60px auto;
  }
  .case_item {
    border: 1px solid #cccccc;
    font-weight: bold;
    width: 31.5%;
  }

  .case_item_01 {
    --color-case-primary: #3c90af;
    --color-case-secondry: #cae3ef;
    --color-case-number: #256a84;
    --color-case-border: #0a6a8e;
  }
  .case_item_02 {
    --color-case-primary: #225fbb;
    --color-case-secondry: #cfdfff;
    --color-case-number: #184992;
    --color-case-border: #1d52a1;
  }
  .case_item_03 {
    --color-case-primary: #7b3794;
    --color-case-secondry: #e2d7ec;
    --color-case-number: #502360;
    --color-case-border: #502360;
  }
  .case_contents {
    padding: 15px 20px;
  }
  .case_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .case_title {
    display: flex;
    justify-content: space-between;
  }
  .case_title p {
    background: var(--color-case-secondry);
    padding: 7px 15px 4px 15px;
    font-weight: bold;
    font-size: 16px;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    width: 25%;
    text-align: center;
  }
  .case_title h3 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #cccccc;
    padding: 5px 15px;
    width: 75%;
    margin: 0;
  }
  .case_price_tag {
    background: var(--color-case-primary);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    width: 30%;
  }
  .case_price_num {
    text-align: center;
    font-size: 18px;
    color: var(--color-case-number);
    font-weight: bold;
    width: 65%;
  }
  .case_price_num span {
    font-size: 35px;
  }
  .cara_title {
    background: var(--color-case-primary);
    color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 2px 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  .tag.case {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tag.case:before {
    content: "";
    width: 22%;
    display: block;
    order: 1;
  }
  .tag.case:after {
    content: "";
    width: 22%;
    display: block;
  }
  .tag.case p {
    background: var(--color-case-primary);
    border: 1px solid var(--color-case-border);
    border-radius: 5px;
    color: #fff;
    width: 22%;
    text-align: center;
    margin-top: 10px;
  }
  p.tag_gray {
    background: #fff !important;
    border: 1px solid #cccccc !important;
    color: #cccccc !important;
  }
  .case_price_items {
    margin: 20px 0;
  }
  .case_price_items img {
    width: 100%;
  }
  .case_schedule {
    margin-top: 20px;
  }
  .case_schedule img {
    width: 100%;
  }

  @media screen and (max-width: 768px) {
    .top_case .case_wrap {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
    }
    .top_case .case_item {
        width: 100%;
    }
  }