@charset "utf-8";
/* CSS Document */


/*基本記述
----------------------------------------------*/

ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
p{
  margin: 0;
}
.wrap-tab{
  overflow: hidden;
	position: relative;
	max-width: 1520px;
	z-index: 10;
	margin: 0 auto;
}

.list-tab{
  display: flex;
}
.list-tab > li{
  display: block;
  padding: 0.5em 1em;
  margin: 0 2px;
  width: 100%;
  color: #1d1456;
  text-align: center;
  background: #d2ebe1;
  box-sizing: border-box;
  cursor: pointer;
}

.list-tab .active{
  background: #1d1456;
	color: #fff;
}

.tab-content{
  display: none;
  padding: 1em;
}
.tab-content.active{
  display: block;
}


@media (max-width: 1630px){
	
	.list-tab{
  display: flex;
margin: 0 30px;
}
	
}


@media (max-width: 750px){
	
		.list-tab{
 display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
			gap:2px;
margin: 0 30px;
}
	
	.list-tab > li{
  display: flex;
		justify-content: center;
  padding: 0.5em 1em;
line-height: 1.2;
		font-size: 14px;
  margin: 0 2px;
  width: 100%;
  color: #1d1456;
  text-align: center;
  background: #d2ebe1;
  box-sizing: border-box;
  cursor: pointer;
}
	
	.list-tab li:nth-child(3){
	grid-row: 2/3;
    grid-column: 1/3;
}
	
}