@charset "utf-8";
@import url("base.css");
/* CSS Document */

.compare{
	text-align: center;
}

/*比較表*/
.comparison-table {
  margin: 50px auto;
}

table {
  width: 100%;
}

thead th {
  background-color: #ff1493;
  color: #fafafa;
  padding: 10px;
text-align: center;
}

tbody td {
	vertical-align: middle;
  padding: 15px;
}

tbody tr:nth-child(even) {
  background-color: #222222;
}

tbody tr:nth-child(odd) {
  background-color: #333333;
}

tbody td:first-child {
  text-align: left;
}

th, td {
	font-size: 1.6rem;
 border: 1px solid #444444;
}

td svg{
	width: 1.5rem;
}

/*プラン別*/

.pricing-card {
    background-color: #181818;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
	margin: 20px auto;
    width: 300px;
    text-align: left;
}

/*カードの中身 */
.plan_title{
	display: flex;
	justify-content: space-between;
}


.plan_title h2 {
    font-size:1.5rem;
    margin: 10px 0;
}

.plan_title h3 {
    font-size: 20px;
    color: #ff1493;
}


/* 価格部分 */
.price {
    font-size: 20px;
    margin-top: 10px;
	font-weight: bold;
}


/* 特徴リスト */
.plan_description {
    padding-top: 10px;
}

.plan_description li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* ボタン部分 */
.buttons {
    margin-top: 20px;
	text-align: center;
}



.trial-btn {
	 display: inline-block;
	width: 70%;
    background-color: #ff1493;
	   padding: 15px 20px;
    border: none;
    border-radius: 5px;
    color: #FAFAFA;
    cursor: pointer;
    font-size: 14px;
}

.trial-btn:hover{
    background-color: #C8006C;
}

/*学生*/
.student h3{
	color: #13C2DF;
}
.student .trial-btn {
    background-color: #13C2DF;
 
}

.student .trial-btn:hover{
    background-color: #10A0B8;
}


/*ファミリー*/
.family h3{
	color: #FBA20F;
}
.family .trial-btn {
    background-color: #FBA20F;
 
}
.family .trial-btn:hover{
    background-color: #EF9603;
}



/* 注意事項 */
.plan_card_footer {
    font-size: 12px;
    color: #aaa;
    margin-top: 20px;
}




@media screen and (min-width: 768px) {
    
	
	.comparison-table{
		max-width: 800px;
	}
	
	#plans{
		display: flex;
		justify-content: space-around;
	}
	
}

