/**
* join CSS
* 生協・共済加入の手続き（生協加入）
*/
#join-2 {

  .plan-area {
    width: 100%;
  }

  /*タブ切り替え全体のスタイル*/
  .tabs {
    margin-top: 3rem;
    padding-bottom: 0.5rem;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  /*タブのスタイル*/
  .tab_item {
    box-sizing: border-box;
    width: calc(100% / 2);
    height: 3rem;
    background-color: #d9d9d9;
    font-size: 14px;
    text-align: center;
    color: #4b4b4b;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    border: #fff solid 1px;
  }

  /*ラジオボタンを全て消す*/
  input[name="tab_item"],
  input[name="tab_item02"] {
    display: none;
  }

  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 1rem 0 0;
    clear: both;
    overflow: hidden;
  }

  /*選択されているタブのコンテンツのみを表示*/
  #plan-01:checked~#plan-01content,
  #plan-02:checked~#plan-02content,
  #plan-03:checked~#plan-03content,
  #plan-04:checked~#plan-04content {
    display: block;
  }

  /*選択されているタブのコンテンツのみを表示*/
  #plan-03:checked~#plan-03content,
  #plan-04:checked~#plan-04content {
    display: block;
  }

  /*選択されているタブのスタイルを変える*/
  .tabs input:checked+.tab_item::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #d9d9d9;
    content: "";
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  #plan-01:checked+.tab_item,
  #plan-01:checked+.tab_item::before,
  .tab_item:nth-of-type(1):hover {
    background: #b6cb67;
    color: #fff;
  }

  #plan-02:checked+.tab_item,
  #plan-02:checked+.tab_item::before,
  .tab_item:nth-of-type(2):hover {
    background: #82cddb;
    color: #fff;
  }

  #plan-03:checked+.tab_item,
  #plan-03:checked+.tab_item::before,
  .tab_item:nth-of-type(1):hover {
    background: #b6cb67;
    color: #fff;
  }

  #plan-04:checked+.tab_item,
  #plan-04:checked+.tab_item::before,
  .tab_item:nth-of-type(2):hover {
    background: #82cddb;
    color: #fff;
  }

  table.plan {
    width: 100%;
    border: #b6cb67 2px solid;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 90%;
  }

  table.plan01 {
    border: #b6cb67 2px solid;
  }

  table.plan02 {
    border: #82cddb 2px solid;
  }

  table.plan th,
  table.plan td {
    border: #666 1px solid !important;
    padding: 0.5em 0.5em;
  }

  table.plan tr:nth-child(even) {
    background: #eeeeee;
  }

  table.plan th {
    text-align: left;
  }

  table.plan td {
    text-align: center !important;
    line-height: 1.4;
  }

  table.plan tr.kyosaiBorder-BottomA th,
  table.plan tr.kyosaiBorder-BottomA td {
    border-bottom: 3px solid #666;
  }

  table.plan tr.total th,
  table.plan tr.total td {
    font-size: 1.3em;
    color: #fff;
    background: #34a5cc;
    text-align: center;
    font-weight: bold;
  }

  .comment {
    font-size: 80%;
    font-weight: normal;
    line-height: 1.3;
    margin: 0.2em 0;
  }

  td p.comment {
    text-align: center;
  }

  .katt {
    font-size: 90%;
    color: #f00;
    margin: 0.1em 0;
  }

  td p.katt {
    text-align: center;
  }

  .ptitle {
    font-size: 1.2em;
  }

  .price {
    font-size: 1.2em;
    font-weight: bold;
  }

  .base_pink {
    background: #ffe5e5 !important;
  }

  .base_pink02 {
    background: #ffcaca !important;
    color: #333 !important;
  }

  .base_green {
    background: #eaf8dd !important;
  }

  .base_green02 {
    background: #d3f2b6 !important;
    color: #333 !important;
  }

  .base_yellow {
    background: #ffffe1 !important;
  }

  .base_blue {
    background: #d0eff4 !important;
  }

  .base_yellow02 {
    background: #f9f9a3 !important;
    color: #333 !important;
  }

  @media screen and (max-width: 1023px) {
    table.plan {
      font-size: 69%;
      line-height: 1.2;
    }

    table.plan tr.total th,
    table.plan tr.total td {
      font-size: 1em;
    }
  }

}


/*------------ナビゲーション　高さを薄く------------*/
.list-boxed {
  li {
    a {
      height: 60px;
    }
  }
}