@charset "utf-8";
/*----------------------------------------------------
タブ
----------------------------------------------------*/

.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.tab-label {
	color: #000000;
	cursor: pointer;
	flex: 1;
	font-weight: bold;
	order: -1;
	padding: 12px 14px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
	background: rgba(255,255,255,0.85);
}

.tab-switch:checked + .tab-label {
	color: #D0121B;
}

.tab-label::after {
	background: #D0121B;
	bottom: 0;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
	transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
	height:0;
	opacity:0;
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}
/*----------------------------------------------------
詳細リスト
----------------------------------------------------*/
.details li {
  border-bottom: 1px solid #707070;
  min-height: 80px;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.details dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.details dt {
  width: 85px;
  font-weight: bold;
}
.details dd {
  width: calc(100% - 85px);
  font-weight: bold;
}
.skk {
  width: 104px;
}
.map {
  width: 230px;
}
@media screen and (min-width: 751px) {
  .details {
    margin-top: 20px;
  }
  .details li {
    min-height: 115px;
  }
  .details dt {
    width: 30%;
    text-align: center;
    font-size: 20px;
  }
  .details dd {
    width: 70%;
    font-size: 20px;
  }
  .skk {
    width: 208px;
  }
  .map {
    width: 360px;
  }
}
