@charset "UTF-8";
/**
 * NTT PC
 */

/*-------------------------------------------------------------*/
/* main */

/* network */
.network {
  padding: 100px 0;
  background: #1e2534;
}
.lead_text {
	margin-bottom: 60px;
	color: #fff;
}
.features_box {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	counter-reset: num;
}
.features_item {
	padding: 24px;
	width: calc((100% - 48px) / 3);
	background: #fff;
	counter-increment: num;
}
.features_item figure {
	margin-bottom: 24px;
	text-align: center;
}
.features_item h4 {
	margin-bottom: 16px;
	color: #22263F;
	font-size: 24px;
	font-weight: bold;
}
.features_item h4::before {
	content: counter(num);
    display: inline-block;
    margin-right: 5px;
    width: 27px;
    aspect-ratio: 1 / 1;
    background: #22263F;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    border-radius: 50%;
}
.plan_box {
}
.plan_item {
	margin-bottom: 20px;
	padding: 40px 70px;
	background: #fff;
	border-radius: 8px;
}
.plan_item h4 {
	margin-bottom: 16px;
	padding-bottom: 16px;
	font-size: 24px;
	font-weight: bold;
	border-bottom: #0B69A4 1px solid;
}
.offer_box {
}
.offer_box h4 {
	margin-bottom: 24px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}
.offer_table + h4 {
	margin-top: 50px;
}
.offer_table {
  margin-bottom: 20px;
  line-height:1.1;
}
.offer_table table {
  width: 100%;
  border-collapse: separate;
  border-left: #B9B9B9 1px solid;
  border-top: #B9B9B9 1px solid;
  border-radius: 8px;
}
.offer_table table.table_fixed {
  table-layout: fixed;
}
.offer_table table th ,
.offer_table table td {
  padding: 10px;
  background: #fff;
  text-align: center;
  border-bottom: #B9B9B9 1px solid;
  border-right: #B9B9B9 1px solid;
}
.offer_table table th {
  background: #2564af;
  color: #fff;
}
.offer_table table thead tr:first-child th:first-of-type {
  border-top-left-radius: 8px;
}
.offer_table table thead tr:first-child th:last-of-type {
  border-top-right-radius: 8px;
}
.offer_table table tbody tr th.bdr_bl_r ,/* 最後のthがrowspan有りでtrラストでは無い時用 */
.offer_table table tbody tr:last-of-type th:first-of-type {
  border-bottom-left-radius: 8px;
}
.offer_table table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 8px;
}
.offer_table table span {
  font-size: 87.5%;
}
.offer_table table small {
  font-size: 75%;
  line-height:1.2;
}
.offer_note {
	padding-left: 2em;
	text-indent: -2em;
	color: #fff;
}
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
	.features_item {
		padding: 20px;
		width: calc((100% - 24px) / 2);
	}
  .offer_table {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
	.features_item {
		padding: 15px;
		width: 100%;
	}
	.plan_item {
		padding: 20px 35px;
	}
  .offer_table {
    overflow-x: scroll;
    font-size: 2rem;
  }
  .offer_table table {
    width: 1500px;
  }
}
@media (max-width: 767px) {
	.features_item h4 {
		font-size: max(3.5vw,12px);
	}
	.features_item h4::before {
	    width: 4vw;
	}
	.plan_item {
		padding: 15px;
	}
	.plan_item h4 {
		font-size: max(3.5vw,12px);
	}
  .offer_table {
    font-size: max(2.5vw,12px);
  }
  .offer_table table {
    width: 280%;
  }
  .offer_table table span {
    font-size: max(2.25vw,12px);
  }
  .offer_table table small {
    font-size: max(2vw,12px);
  }
}
@media (max-width: 575px) {
  .offer_table table {
    width: 350%;
  }
}
