@charset "UTF-8";
/* ===========================================================================
PAGE Privacy
=========================================================================== */
.privacy_wrap{
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  padding: 113px 0 0;
}
.privacy_block{
  margin-bottom: 40px;
}
.table01 tbody tr td:first-child {
  padding-left: 12px;
}
.table01 thead th:nth-child(1) {
  width: 41%;
}
.table01 thead th:nth-child(2) {
  width: 49%;
}
.table02 th {
  width: 24%;
  height: 95px;
  min-width: 200px;
}
.privacy_time > span:first-child{
  min-width: 105px;
}

@media screen and (max-width:767px) {
  .privacy_wrap{
    padding: 55px 0 0;
  }
  .table02 th {
    width: 100%;
    height: auto;
    min-width: auto;
  }
}

.image img {
  width: 150px;
}

.tooltip {
  position: relative;
  cursor: pointer;
  color: #0000FF;
}

.tooltip-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 5px;
  display: inline-block;
  width: 350px;
  padding: 10px;
  white-space: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  background: #333;
  color: #fff;
  border-radius: 3px;
  transition: 0.3s ease-in;
}

.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.tooltip-text:before {
	content: '';
	position: absolute;
	top: -13px;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-bottom: 7px solid #333;
}

@media screen and (max-width: 768px) {
  .tooltip-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
  }
  .tooltip-text:before {
    display: none;
  }
}