body
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  .over {
    overflow-x: hidden;
  }
  
  @media screen and (min-width:551px) {
  
    /*大きい*/
    article {
      width: 80%;
      padding: 0;
      margin: 6% auto;
    }
  
    main {
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      padding: 20px 40px;
      background-color: white;
    }
  
    aside {
      box-sizing: border-box;
      top: 0;
      right: 0%;
      width: 20%;
      height: 100%;
      overflow: auto;
      position: fixed;
      background: #ced5db;
      padding-top: 10%;
      padding-left: 1%;
      padding-right: 4%;
    }
  }
  
  @media screen and (max-width:550px) {
  
    /*大きい*/
    article {
      width: 85%;
      padding: 0;
      margin: 3% auto;
    }
  
    main {
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      background-color: white;
    }
  
    aside {
      box-sizing: border-box;
      top: 0;
      right: 0%;
      width: 35%;
      height: 100%;
      overflow: auto;
      position: fixed;
      background: #ced5db;
      padding-top: 30%;
      padding-left: 1%;
      padding-right: 4%;
    }
  }
  
  header {
    right: 0%;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 0;
    margin-bottom: 50px;
  }
  
  .menu li {
    border-top: solid 1px #aaa;
    padding: 8px 13px;
    font-size: small;
    cursor: pointer;
  }
  
  .menu li:hover {
    background-color: #b6c6d3;
  }
  
  .menu li a {
    color: black;
    display: block;
  }
  
  a {
    text-decoration: none;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  p {
    margin: 0;
    padding: 0;
  }
  
  main span {
    font-size: 3px;
    margin-left: 3px;
  }
  
  .top-space {
    display: block;
    padding-top: 100%;
    margin-top: -100%;
  }
  
  form {
    margin-top: 38px;
  }
  
  
  /* ********** 記事デザイン ********** */
  @media screen and (min-width:551px) {
  
    /*大きい*/
    .home ul,
    .QA ul {
      display: flex;
      flex-wrap: wrap;
      font-size: 12px;
    }
  
    .article_box {
      width: 100%;
      background-color: white;
      /*border: 1px solid black;*/
      display: flex;
      justify-content: space-around;
      padding: 17px 0;
      /* デフォルトでできる先頭の余計な余白を消す */
    }
  
    .article_box li {
      width: 23%;
      height: 220px;
      background-color: #666;
      border: 0.5px solid #666;
      margin-bottom: 5%;
      border-radius: 5px;
    }
  
    .article_box li p {
      padding: 0 10px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      color: white;
    }
  
    .article_box li img {
      border-radius: 4px 4px 0 0;
      width: 100%;
      height: 170px;
    }
  
    .article_box li:hover {
      opacity: 0.5;
      border: 0.5px solid #999;
      border-radius: 5px;
    }
  }
  
  @media screen and (max-width:550px) {
  
    /*小さい*/
    .home ul,
    .QA ul {
      font-size: 12px;
    }
  
    .article_box {
      width: 100%;
      background-color: white;
      /*border: 1px solid black;*/
      padding: 17px 0;
      /* デフォルトでできる先頭の余計な余白を消す */
    }
  
    .article_box li a {
      display: flex;
      width: 100%;
      height: 78px;
      background-color: #666;
      border: 0.5px solid #666;
      margin-bottom: 5%;
      border-radius: 5px;
    }
  
    .article_box li a p {
      width: 100%;
      padding: 0 10px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      color: white;
    }
  
    .article_box li a img {
      border-radius: 4px 0 0 4px;
      width: 100%;
      height: 78px;
      margin: 0;
      padding: 0;
      position: relative;
    }
  
    .article_box li:hover {
      opacity: 0.5;
      border: 0.5px solid #999;
      border-radius: 5px;
    }
  }
  
  /* ********** 回答募集中タグ ********** */
  .answer {
    background-color: #ff6464;
    margin: 0.3em 0.3em 0;
    padding: 0.1em 0.75em;
    color: white;
    font-size: 10px;
    border-radius: 5px;
  }
  
  /* ********** 検索ページ *********** */
  @media screen and (min-width:551px) {
  
    /*大きい*/
    .blog_list_title {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
    }
  
    .category_time {
      padding-top: 3%;
      margin: 0;
    }
  
    .search_article_box {
      border-bottom: 1px solid black;
      padding: 8px 5px;
    }
  
    .flex {
      display: flex;
    }
  
    .flex img {
      width: 14%;
      height: 90px;
      margin: 0;
      padding: 0;
      overflow: hidden;
      position: relative;
      background-color: #666;
    }
  
    .flex .right {
      margin: 0;
      padding: 0 0 0 20px;
      width: 80%;
    }
  
    .flex h3 {
      margin: 0;
      padding: 0;
      font-weight: bold;
      font-size: 18px;
    }
  
    .flex h5 {
      margin: 10px 0 0;
      padding: 0;
    }
  }
  
  @media screen and (max-width:550px) {
  
    /*小さい*/
    .blog_list_title {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
    }
  
    .category_time {
      padding-top: 3%;
      margin: 0;
    }
  
    .search_article_box {
      border-bottom: 1px solid black;
      padding: 8px 5px;
      height: 80px;
    }
  
    .search_article_box img {
      display: none;
    }
  
    .flex img {
      display: none;
    }
  
    .flex h3 {
      font-weight: bold;
      font-size: 16px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
    }
  
    .flex h5,
    .flex h6 {
      margin: 0;
      padding: 0;
      font-size: 10px;
    }
  }
  
  /************** 検索 *****************/
  /*更新ボタンと検索ボタンの位置調整*/
  .select_search_box {
    margin: 0 auto;
    /*上,右,下,左*/
    color: var(--black-color);
    width: 100%;
    height: 30px;
    font-size: 16px;
    display: contents;
  }
  
  /*更新ボタン*/
  .select_search_button {
    font-family: 'R-Font';
    padding: 10px 15px;
    color: rgb(255, 255, 255, 1);
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
  }
  
  /*並び替え、検索の文字*/
  .select_search_text {
    text-align: left;
  }
  
  .search_text {
    padding-left: 5px;
    outline: 0;
    width: 63%;
    height: 27px;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    font-family: 'R-Font';
    font-size: 16px;
    color: var(--black-color);
  }
  
  /* 検索囲い */
  @media screen and (min-width:551px) {
  
    /*大きい*/
    .blog_search {
      text-align: center;
      margin: 0 auto;
      /*上,右,下,左*/
      width: 100%;
      color: var(--black-color);
      display: flex;
    }
  
    .blog_search_key {
      margin: 0 auto;
      padding-bottom: 2%;
      width: 52%;
      color: var(--black-color);
    }
  
    .blog_search_select {
      width: 52%;
      color: var(--black-color);
    }
  
    .box {
      width: 75%;
      margin: 5% auto;
      height: auto;
      padding: 0 0 30px 0;
      color: var(--black-color);
    }
  
  }
  
  @media screen and (max-width:550px) {
  
    /*小さい*/
    .blog_search {
      margin: 0 auto;
      /*上,右,下,左*/
      width: 100%;
      color: var(--black-color);
    }
  
    .blog_search_key {
      margin: 0 auto;
      padding-bottom: 2%;
      width: 100%;
      color: var(--black-color);
    }
  
    .blog_search_select {
      width: 100%;
      color: var(--black-color);
    }
  
    .box {
      width: 75%;
      margin: 5% auto;
      height: auto;
      padding: 0 0 30px 0;
      color: var(--black-color);
    }
  }
  
  .search_alert_box {
    color: var(--black-color);
    margin-left: 5%;
    font-size: 16px;
  }
  
  /*セレクトボックスのCSS*/
  .cp-ipselect {
    overflow: hidden;
    width: 66.85%;
    height: 35px;
    text-align: center;
  
    color: var(--black-color);
    font-family: 'R-Font';
    font-size: 16px;
  }
  
  .cp-ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .cp-ipselect select::-ms-expand {
    display: none;
  }
  
  .cp-ipselect.cp-sl01 {
    position: relative;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    background: #ffffff;
    outline: none;
  }
  
  .cp-ipselect.cp-sl01::before {
    position: fixed;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
  }
  
  .cp-ipselect.cp-sl01 select {
    padding: 8px 38px 8px 8px;
    color: #666666;
  }
  
  /************** ハンバーガーメニュー ***************/
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  @media screen and (min-width:551px) {
  
    /*小さい*/
    .openbtn1 {
      position: absolute;
      top: 56px;
      right: 40px;
      /*ボタン内側の基点となるためrelativeを指定*/
      background: #0b3366;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 5px;
      z-index: 1000;
      transition: all 0.5s 0s ease;
    }
  
    .blog_menu {
      position: fixed;
      right: -20%;
      transition: all 0.5s 0s ease;
    }
  }
  
  @media screen and (max-width:550px) {
  
    /*小さい*/
    .openbtn1 {
      position: fixed;
      top: 30px;
      right: 30px;
      /*ボタン内側の基点となるためrelativeを指定*/
      background: #0b3366;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 5px;
      z-index: 1000;
      transition: all 0.5s 0s ease;
    }
  
    .blog_menu {
      position: fixed;
      right: -35%;
      transition: all 0.5s 0s ease;
    }
  }
  
  /*ボタン内側*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
  }
  
  .openbtn1 span:nth-of-type(1),
  .openbtn1 span:nth-of-type(3) {
    height: 2px;
    background: #fff;
    width: 62%;
    left: 10px;
  }
  
  .openbtn1 span:nth-of-type(1) {
    top: 13px;
  }
  
  .openbtn1 span:nth-of-type(2) {
    top: 18px;
    left: 11px;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #fff;
  }
  
  .openbtn1 span:nth-of-type(3) {
    top: 36px;
  }
  
  /*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  .Information_icon {
    display: none;
  }
  
  /*# sourceMappingURL=common.css.map */
  
  /*ボタン内側*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
  }
  
  .openbtn1 span:nth-of-type(1),
  .openbtn1 span:nth-of-type(3) {
    height: 2px;
    background: #fff;
    width: 62%;
    left: 10px;
  }
  
  .openbtn1 span:nth-of-type(1) {
    top: 13px;
  }
  
  .openbtn1 span:nth-of-type(2) {
    /* top: 16px; */
    left: 11px;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #fff;
  }
  
  .openbtn1 span:nth-of-type(3) {
    top: 36px;
  }
  
  /*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  .warning {
    margin-top: 8px;
    font-size: 12px;
    color: #949aa1;
  }
  
  a {
    color: #595959;
  }
  
  
  /* 上の帯(カテゴリーアイコンがあるところ)における、他のページとの違いをなくす */
  .move_category_icon_right_position,
  .move_category_icon_left_position {
    top: 0;
  }
  
  .fukidashi_lower {
    top: 130%;
  }
  
  .fukidashi_lower_trigger {
    margin-top: 1px;
  }
  
  .copyright {
    bottom: 6px;
  }
  
  /* リンク */
  .links {
    width: 200px;
    height: 40px;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    z-index: 1000;
  }