@charset "utf-8";
/*-------------------------------------
reset css
-------------------------------------*/

#iot {
	width:940px;
	margin:0 auto;
	background-color:#fff;
}
#iot h2 {
	font-size:28px;
	color:#555555;
	line-height:1.6;
	text-align:center;
	padding-bottom:25px;
}
#iot h3 {
	font-size:17px;
	color:#555555;
	line-height:1.6;
	text-align:center;
	padding-bottom:30px;
}

#iot .block1 {
	width:800px;
	margin:0 auto;
	text-align:center;
	padding-bottom:30px;
}

#iot p {
	margin-bottom: 10px;
}
.notice{font-size: .86em;}
.click{text-align: right; margin-bottom: 5px;}
.madori{margin: 50px auto 50px;}

.cp_h1title {
	text-align: left;
	padding-left: 10px;
	font-size: 1.26em;
  border-left: 10px solid #13c3ac;
  border-bottom: 1px solid #B0BEC5;
}
.point {
    position: relative;
    margin: 3em 5vw;
    padding: 25px 10px 7px;
    border: solid 2px #e37e02;
}
.point .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #e37e02;
    color: #ffffff;
    font-weight: bold;
}
.point p {
    margin: 0; 
    padding: 0;
    line-height: 2em;
}
.itembox{display: flex; margin: 25px auto;justify-content: space-between;}
.itembox img{border: 1px solid #ccc;}
.itembox div{width: 24.5%;}
.panel2{display: flex; justify-content: space-between;}
.panel2 div{width: 49%; text-align: left;}
.lighting{font-size: .86em; margin-top: 25px;}
h4{display: inline-block; margin-bottom: 15px; padding: 0 15px; font-size: 1.26em; font-weight: bold; color: #131313; background: linear-gradient(transparent 70%, #13c3ac 70%);}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}
.button:hover {
    	opacity:0.5;
	transition:0.3s;
}
/* モーダルを開くボタン */
.modal-open{
  display: inline-block;
	border: 1px #dedede solid;

}
button:hover {
    	opacity:0.5;
	transition:0.3s;
}

/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;

}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}


.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tab_label {
  color: #13c3ac;
  font-weight: bold;
  border: solid 2px #13c3ac;
  position: relative;
/*  z-index: 1;*/
  cursor: pointer;
  flex: 1;
  padding: 5px 0;
  margin: 0 5px; 
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #13c3ac;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #13c3ac transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
	padding: 2vw 1vw;
  margin: 0 5px;
	border-bottom: 1px #A4A4A4 solid;
	border-left: 1px #A4A4A4 solid;
	border-right: 1px #A4A4A4 solid;
}
.tab_content img{width:100%;  z-index: 1000;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    top: 50px;;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
