@charset "utf-8";
/* CSS Document */

/*---------- 下部カテゴリーリンク ----------*/

#bottomlinkwrap {
  padding-bottom: 50px;
  border-top: 1px solid rgba(54, 122, 189, .3);
  background: rgba(54, 122, 189, .1);
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

#bottomlinkmark {
  margin-bottom: 20px;
  text-align: center;
}

.cat {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #2FAFF9;
  padding: 45px 20px 0 20px;
  background: rgba(255, 255, 255, .6);
  border-radius: 300px 300px 0 0;
  border-bottom: dotted 4px #87CEFA;
  background-image: url(../../common-whole/image/logo-light.png);
  background-repeat: no-repeat;
  background-position: top center;
}

#bottomlinkmark span {
  display: block;
  font-size: 20px;
}

#contentsbox {
  max-width: 350px;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

#contentsbox a {
  color: #777777;
  transition: 0.3s;
}

#contentsbox a:hover {
  color: rgba(243, 165, 48, 1.0);
  cursor: pointer;
}

#contentsbox p {
  margin: 0;
}

.contents {
  min-height: 35px;
  overflow: hidden;
  font-weight: bold;
  margin-bottom: 25px;
  transition: 0.4s;
}

.C-blue {
  border-bottom: 4px dotted rgba(54, 122, 189, .5);
}

.C-brown {
  border-bottom: 4px dotted rgba(181, 130, 79, .5);
}

.N-blue {
  color: rgba(54, 122, 189, 1);
  display: inline-block;
}

.N-brown {
  color: rgba(181, 130, 79, 1);
  display: inline-block;
}

.l-blue {
  color: rgba(54, 122, 189, 1);
}

.l-brown {
  color: rgba(181, 130, 79, 1);
}

.numbox {
  width: 25px;
  display: inline-block;
  float: left;
  font-size: 20px;
  padding-left: 10px;
}

.num {
  margin-left: 5px;
  font-size: 20px;
}

.Cont-T {
  display: inline-block;
  float: left;
  width: 290px;
  height: auto;
  font-size: 18px;
  padding-left: 25px;
}

@media(max-width:550px) {
  #bottomlinkwrap {
    padding-bottom: 25px;
  }

  .cat {
    font-size: 20px;
    padding: 40px 20px 0 20px;
  }

  #bottomlinkmark span {
    font-size: 17px;
  }

  .numbox {
    display: none;
  }

  .Cont-T {
    box-sizing: border-box;
    float: none;
    width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --------------- 開閉ラベル作成 --------------- */
.hidden_box {
  margin: 2em 0;
  padding: 0;
  text-align: center;
}

/*ボタン装飾*/
.hidden_box label {
  padding: 15px 30px 15px 30px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: .5s;
  width: auto;
}

/*アイコンを表示*/
.hidden_box label:before {
  display: inline-block;
  content: '\f0fe';
  font-family: "Font Awesome 5 Free";
  font-size: 22px;
  padding-right: 10px;
  transition: 0.2s;
}

/*ボタンホバー時*/
.hidden_box label:hover {
  background: silver;
}

/*アイコンを切り替え*/
.hidden_box input:checked ~ label:before {
  content: '\f146';
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*チェックは見えなくする*/
.hidden_box input {
  display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  text-align: left;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
  padding: 10px 0;
  height: auto;
  opacity: 1;
}
