@charset "UTF-8";

.tab-wrap {
}

/* ボタン */
.mono .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.tab-buttons .tab{
	position: relative;
	margin-top: 100px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
}


.tab-buttons .tab::before{
	content: '';
	display: block;
	width: 100px;
	height: 150px;
	position: absolute;
	top: -170px;
	left: calc((100% - 100px)/ 2);
	}
.tab-buttons button:nth-child(1)::before{
	background: url(../../img/i-hito01.png)no-repeat;
	background-size: contain;
	background-position: center;
}
.tab-buttons button:nth-child(2)::before{
	background: url(../../img/i-hito02.png)no-repeat;
	background-size: contain;
	background-position: center;
}
.tab-buttons button:nth-child(3)::before{
	background: url(../../img/i-hito03.png)no-repeat;
	background-size: contain;
	background-position: center;
}

.tab.is-active {
  background: #8FC31F;
  color: #fff;
  border-color: #8FC31F;
}

/* コンテンツ */
.tab-contents {
  position: relative;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.tab-content.is-active {
  display: block;
  animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.mono .t-osusume{
	text-align: center;
	font-weight: bold;
	font-size: clamp(16px, 1vw, 16px);
	color: var(--btn-main);
	margin: 20px 0 30px;
}
.mono .p-lead{
	font-weight: bold;
}


#enjoy-with .conte-page > .c-tx{
	position: relative;
	padding: 70px 40px 40px;
}
#enjoy-with .conte-page .c-tx .no-sub-title{
	position: absolute;
	top: 40px;
	width: calc(100% - 60px);
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	color: var(--btn-main);
}
#enjoy-with .conte-page .title-m0{
	margin-bottom: 40px;
}



#enjoy-with .conte-page .title.icon{
	font-size: clamp(18px, 1.1vw, 20px);
	font-weight: bold;
	color: var(--btn-dark);
	padding-left: 2rem;
	margin-bottom: 12px;
}
#enjoy-with .conte-page .title.icon::before{
	top: 2px;
}
#enjoy-with .conte-page .title + .c-tx{
	padding-bottom: 12px;
	margin-bottom: 16px;
	border-bottom: solid 1px var(--btn-main);
	padding-left: 2rem;
}
#enjoy-with .conte-page p.tx{
	font-size: clamp(12px, 0.85vw, 14px);
}


@media screen and (max-width: 1179px) {

}
@media screen and (max-width: 1023px) {

	#enjoy-with .conte-page .title-m0 {
	    margin-bottom: 20px;
	}
	#enjoy-with .conte-page > .c-tx{
		padding: 60px 20px 20px;
	}
	.mono .t-osusume {
	    margin: 10px 0 15px;
	}

	.mono .p-lead {
	    font-size: 14px;
	}
	.mono .i-link{
		margin-top: 6px;
	}
	#enjoy-with .conte-page .title.icon{
		margin-bottom: 6px;
	}



}
@media screen and (max-width: 767px) {


	.mono .t-osusume {
	    margin: 20px 0 20px;
	}

	.mono .tab{
		padding: 10px 10px;
		font-size: 12px;
	}

	.tab-buttons .tab::before{
		width: 80px;
		height: 120px;
		position: absolute;
		top: -126px;
		left: calc((100% - 80px)/ 2);
		}
	.mono .tab-buttons{
		gap: 10px;
	}
	#enjoy-with .conte-page .c-tx .no-sub-title{
		width: calc(100% - 40px);
	}



}
@media screen and (max-width: 460px) {

}  

