@charset "utf-8";

/*
/*    CSS MENU
/*
*/

    body {
      opacity:0;
    }
    .wf-active body {
      opacity:1;
    }
    
header {
	background: var(--pink);
	margin-bottom: 6vw;
}

.logo {
	padding: 5vw 14vw;
}
.top_back a {
	display: inline-block;
	position: relative;
	padding: 2vw 0  2vw 5vw;
	text-decoration: none;
	font-family: var(--point);
	line-height: 1.6;
	margin-bottom: 10vw;
	color: var(--blue);
}

.top_back a:before {
	width: 2.4vw;
	height: 2.3vw;
	border: 0.7vw solid var(--blue);
	border-width: 0 0 0.7vw 0.7vw;
	position: absolute;
	content: "";
	top: 3.9vw;
	left: 0%;
	transform: rotate(45deg);
}

.top_back a:after {
	position: absolute;
	content: "";
	width: 3.4vw;
	height: 0.7vw;
	background: var(--blue);
	left: 0.3vw;
	top: 50%;
	transform: translate(0%, -50%);
}

.page_tl {
	font-family: var(--en);
	color: var(--pink);
	font-size: 4rem;
	text-align: center;
	position: relative;
	padding-bottom: 2vw;
	margin-bottom: 8vw;
}

.page_tl:after {
	position: absolute;
	content: "";
	width: 10vw;
	height: 0.5vw;
	background: var(--pink);
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
}


.tab-list {
  display: flex;
  width: 100%;
  border-right: 0.7vw solid var(--pink);
}
.tab-list-item {
  flex: 1;
  text-align: center;
  font-family: var(--point);
  cursor: pointer;
  border: 0.7vw solid var(--pink);
  border-right-width: 0;
  padding: 3vw 1vw;
  font-size: 1.7rem;
  transition: 0.5s ease;
}

.tab-list-item.is-btn-active {
	background: var(--pink);
	color: #fff;
	transition: 0.5s ease;
}


.tab-contents{
  display: none;
}

.is-contents-active{
  display: block;
}

.table_tab tr>* {
	letter-spacing: 0.07em;
}
.table_tab .new {
	color: var(--pink);
	font-family: var(--en);
	font-size: 1.2rem;
	padding-left: 0.8em;
	vertical-align: baseline;
}

footer {
	background: var(--pink);
	color: #fff;
	font-family: var(--point);
	font-size: 1.3rem;
	text-align: center;
	padding: 3vw 0;
	margin-top: 15vw;

}