.cp_navi06 {
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  color: #888888;
  display: block;
  margin: 1em auto;
  overflow: hidden;
  width: 100%;
}
.cp_navi06 ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.cp_navi06 ul li {
  list-style-type: none;
  transition: all 0.3s;
}
.cp_navi06 ul li a.caret {
  display: flex;
  align-items: center;
}
.cp_navi06 ul li a.caret::after {
  content: '';
  background: #aaaaaa;
  width: 10px;
  height: 5px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: color 0.1s linear;
}
.cp_navi06 ul li a {
  color: black;
  display: block;
  line-height: 56px;
  padding: 0 10px;
  text-decoration: none;
}
.cp_navi06 ul li:hover {
  background-color: green;
}
.cp_navi06 ul li:hover a {
  color: #ffffff;
}
.cp_navi06 ul li:hover a.caret::after {
  background: #ffffff;
}
/*下層に隠れたメニューの動き*/
.cp_navi06 ul li ul {
  background-color: green;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  display: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 165px;
  visibility: hidden;
  transition: all 0.3s;
}
.cp_navi06 ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.cp_navi06 ul li ul li {
  border-radius: 0 0 4px 4px;
}
.cp_navi06 ul li ul li a {
  color: #ffffff;
}
.cp_navi06 ul li ul li:hover a {
  background-color: rgba( 255, 255, 255, 0.1);
}

body{
    background-color: whitesmoke;
}


.BTlist{
    display: flex;
    text-align: center;
}


.BTlist img{
    width: 256px;
    height: 256px;
}

.BTlist2{
  display: flex;
}

footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
      position: fixed;
      bottom: 0;
      width: 100%;
    }
  footer a {
      color: #4CAF50;
      text-decoration: none;
    }
  footer img{
    width: 32px;
    height: 32px;
  }

  /*ソフトウェア*/
  .cp_card04 {
	overflow: hidden;
	border-radius: 3px;
	margin-top: 2rem;
  width: 600px;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
					transition: all 0.25s ease-in;
				  border-bottom: 5px solid transparent;
}
.cp_card04 .photo {
	height: 200px;
	overflow: hidden;
  
}
.cp_card04 .photo img{
  width: 100%;
}
.cp_card04:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: none;
  border-bottom: 5px solid green;
}
.cp_card04 .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1em 1em 0 1em;
	font-size: 0.8em;
}
.cp_card04 .date {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: right;
}
.cp_card04 .category {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
}
.cp_card04 .category p {
	font-size: 0.8em;
	padding: 3px 8px;
	cursor: pointer;
	width: 8em;
	margin: 0;
	border-radius: 10px;
	background: green;
	text-align: center;
	color: #ffffff;
}
.cp_card04 .description {
	padding: 0 1em;
}
.cp_card04 .description h1 {
	font-size: 1.4em;
	margin: 0;
	margin-bottom: 0.5em;
}
.cp_card04 .description .text p {
	margin: 0;
}
.cp_card04 .description a {
	float: right;
	margin-bottom: 10px;
	text-decoration: none;
	color: green;
}
.cp_card04 .description a:after {
	font-family: FontAwesome;
	margin-left: -50px;
	content: 'GOGO!';
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
	vertical-align: middle;
	opacity: 0;
}
.cp_card04 .description a:hover:after {
	margin-left: 5px;
	opacity: 1;
}
 /*見出し*/
.cp_h1title {
  position: relative;
  color: #ffffff;
  background: #4db6ac;/*全体の背景（一番薄い色）*/
  overflow: hidden;/*はみ出た分を非表示に*/
  padding: 5px 10px;
}
.cp_h1title span {
  position: relative;
  z-index: 1;
}
.cp_h1title::before,
.cp_h1title::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
}
.cp_h1title::before {
  background: #009688;/*2番目に薄い色*/
  transform-origin: bottom right;/*右下を起点に*/
  transform: rotate(1.5deg);/*1.5度傾斜*/
}
.cp_h1title::after {
  background: #00796b;/*3番目に薄い色*/
  transform-origin: bottom left;/*左下を起点に*/
  transform: rotate(-2.5deg);/*-2.5度傾斜*/
}
/*見出しここまで*/

  /*サブ見出し*/
  .cp_subtitle {
  color: #ffffff;
  background-color: #7fbf7f;
  box-shadow: 0px 5px 3px -3px rgba(0,0,0,0.4);
}
 /*サブ見出しここまで*/

/*リンク下線消す*/
a {
  text-decoration: none;
}

/*昔のボタン用*/
.dl-button {
    background-color: green;
    color: #FFFFFF;
    padding:10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: calc(36vh - 30px);
}

.about-button {
    background-color: #00b46f;
    color: #FFFFFF;
    padding:10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: calc(36vh - 30px);
}
/*昔のボタン用ここまで*/

/*faq*/
.cp_qa02 {
  margin: 0 auto;
}
.cp_qa02 .cp_actab input[type=checkbox] {
  display: none;
}
.cp_qa02 .cp_actab {
  padding: 20px 0;
  border-bottom: 1px dotted #cccccc;
}
/*質問テキスト*/
.cp_qa02 label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 120%;
  width: calc(100% - 70px);
  margin: 0 0 0 50px;
  padding: 10px;
  cursor: pointer;
}
/*＋アイコン*/
.cp_qa02 label::before {
  position: absolute;
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 210%;
  font-weight: bold;
  margin-left: -50px;
  padding: 0 0 0 0;
  transition: 0.4s ease;
}
.cp_qa02 .cp_actab input[type=checkbox]:checked ~ label::before {
  transform: rotate(45deg);
}
/*答えテキスト*/
.cp_qa02 .cp_actab-content {
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 40px;
  padding: 0 14px;
  transition: 0.4s ease;
  opacity: 0;
}
.cp_qa02 .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  padding: 14px;
  opacity: 1;
}

/*faqここまで*/

/*画像サイズ変更*/
.responsive-image {
    max-width: 100%;
    height: auto;
}
/*画像サイズ変更ここまで*/

/*注目枠*/
.cp_point {
	position: relative;
	margin: 40px 0 30px;
	padding: 45px 20px 15px 40px;
	background: #fcecec;
	border: 1px solid #da3c3c;
	border-radius: 4px;
}
.cp_point:before,.cp_point:after {
	position: absolute;
	display: block;
}
ul.cp_point:before {
	content: attr(title);
	top: -2px;
	left: 0.5em;
	width: auto;
	height: auto;
	padding: .3em 1em;
	background: #da3c3c;
	text-align: center;
	font-weight: bold;
	font-size: 90%;
	color: #fff;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	border-bottom: 2px dotted #fcecec;
}
.cp_point li {
	position: relative;
	list-style-type: none;
}
.cp_point li::before {
	position: absolute;
	top: .25em;
	left: -1.3em;
	font-family: FontAwesome;
	content: " ";
	color: #da3c3c;
}
/*注目枠ここまで*/

/*区切り線*/
.cp_hr06 {
	position: relative;
	height: 1px;
	border-width: 0;
	background-image: -webkit-linear-gradient(left,
	transparent 0%,green 50%,transparent 100%);
	background-image:         linear-gradient(90deg,
	transparent 0%,green 50%,transparent 100%);
}
/*区切り線ここまで*/