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

/*タブ切り替え全体のスタイル*/
#point .tabs {
   /* margin-top: 50px;
 padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  max-width:1240px;
  width:90%;
  margin: 0 auto;
}

/*タブのスタイル*/
#point .tab_item {
  width:43%;
  max-width:350px;
  text-align: center;
  display: inline-block;
  transition: all 0.2s ease;
  border:1px solid #ccc;
  padding:15px 0;
  margin:0 2%;
  font-family: 'Poppins', sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:3px;
}

.tab_ex{
	font-size:12px;
	margin-top:10px;
}

#point .tab_item span{
	font-size:16px;
	vertical-align:middle;
	margin-left:5px;
}
#point .tab_item:hover {
  opacity: 0.75;
  background:#000;
  color:#fff;
  cursor:pointer;
}

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

/*タブ切り替えの中身のスタイル*/
#point .tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  overflow: hidden;
  margin-top:40px;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#home:checked ~ #home_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
#point .tabs input:checked + .tab_item {
  background-color: #000;
  color: #fff;
}



@media only screen and (max-width: 600px) { 
#point .tab_item {
  width:90%;
  margin-bottom:30px;
}


}


/*
#howto{
	margin:30px auto;
}
*/










