@charset "UTF-8";

.com-ph {
	position: relative;
	height: 1000px;
}
.com-ph img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
table {
	width: 100%;
}
th {
	vertical-align: top;
}
.com-map {
	height: 300px;
}


/*tabの形状*/
.tab{
  display: flex;
  flex-wrap: wrap;
}
.tab li a{
  display: block;
  background:#666;
  margin:0 2px;
  padding:10px 20px;
  color: #fff;
  text-align: center;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background:#987c63;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}


table {
	width: 100%;
}
th {
	vertical-align:top;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}







/*PCのみ*/
@media (min-width: 768px) {



}

@media (max-width: 768px) {



}



