@charset "UTF-8";
/*--------------------------------------
    IMPORT
--------------------------------------*/
@import url('/shop/common/webfont/fonts.css');

/*--------------------------------------
    RESET
--------------------------------------*/
* {
  box-sizing: border-box;
}
html, body, div, ul, ol, li, dl, dt, dd, h1, p, figure, blockquote {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
}
em {
  font-weight: bold;
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
}
h2, h3, h4 {
	margin: 0;
}

/*--------------------------------------
    カスタムプロパティ
--------------------------------------*/
:root {
	--wimax-main: #083090;
	--wimax-sub: #0091d7;
  --uq-pink: #e4007f;
	--text-normal: #333;
	--text-strong: #e60012;
}

/* 背景 */
.bg {
	background-color: #f9f9f9;
	padding: 33px 15px 38px;
}
@media screen and (max-width: 1000px) {
	.bg {
		padding: 16px 15px 18px;
	}
}


/*--------------------------------------
    一覧ページ
--------------------------------------*/
.lineup-wrap {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 780px;
	width: auto;
	gap: 20px;
}
.lineup-content {
	width: calc(100% / 2);
	max-width: 380px;
	padding: 12px 12px 22px;
	background: #fff;
	border: 1px solid #dadada;
	border-radius: 8px;
}
.lineup-container {
	display: flex;
	gap: 20px;
}
@media screen and (min-width: 1001px) and (max-width: 1010px) {
	.lineup-wrap {
		max-width: 770px;
		gap: 10px;
	}
	.lineup-container {
		gap: 10px;
	}
}
@media screen and (max-width: 1000px) {
	.lineup-wrap {
		flex-direction: column;
		align-items: center;
	}
	.lineup-content {
		width: 100%;
	}
	.lineup-container {
		flex-direction: column;
		gap: 20px;
	}
}

.lineup-content--right {
	margin-left: auto;
}
@media screen and (max-width: 1000px) {
	.lineup-content--right {
		margin-right: auto;
	}
}
.lineup-category-heading {
	padding: 6px 0;
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
	background: #7a7a7a;
	border-radius: 6px;
	line-height: 1;
	text-align: center;
}
.lineup-product-heading {
	margin-top: 18px;
	font-weight: 900;
	font-size: 2rem;
	text-align: center;
}
.lineup-product-lead {
	margin-top: 5px;
	font-weight: 500;
	font-size: 1.4rem;
	text-align: center;
}
.p-product-support {
	display: flex;
	justify-content: center;
	column-gap: 4px;
	margin-top: 10px;
}
.p-product-support__item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 23px;
	padding: 0 0.65em;
	border-radius: 6px;
	background-color: var(--wimax-sub);
	color: #fff;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
}
.p-product-support__sup {
	margin-top: -5px;
	font-weight: 400;
	font-size: 60%;
}
@media screen and (max-width: 1000px) {
	.p-product-support {
		justify-content: center;
	}
	.p-product-support__item {
		padding: 0 0.6em;
	}
}

.p-product-content-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	margin-top: 17px;
}
.p-product-content-img {
	max-width: 168px;
}
.p-product-content-link-text {
	margin-top: 10px;
	width: 142px;
	height: 43px;
}
.p-product-content-link-text:first-child {
	margin-top: 0;
}
.p-product-content-link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 1.3rem;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 20px;
}
.p-product-content-link--apply {
	color: #fff;
	background: var(--uq-pink);
	border: 1px solid var(--uq-pink);
}
.p-product-content-link--window::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 11px;
	height: 11px;
	background: url("../img/window_icon_black.svg") no-repeat 0 0 / cover;
	content: "";
	margin-top: auto;
	margin-bottom: auto;
}
.p-product-content-info {
	margin: 18px 0 0;
	padding: 0 12px;
}
@media screen and (max-width: 1000px) {
	.p-product-content-info {
		margin: 18px 0 0;
		padding: 0;
	}
}

.p-product-content-info-spec {
	font-weight: 700;
	font-size: 1.3rem;
	text-align: center;
}
.p-product-content-info__table {
	margin: 2px auto 0;
}
.p-product-content-info__table tbody::before {
	content: "";
	display: block;
	height: 4px;
}
.lineup-content--home .p-product-content-info__table {
	width: 250px;
}
@media screen and (max-width: 1000px) {
	.lineup-content--home .p-product-content-info__table {
		width: 238px;
	}
}

.p-product-content-info__th {
	height: 15px;
	padding: 1px 0;
	font-weight: 400;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1;
}
.p-product-content-info__th:first-child {
	background-color: #ccc;
}
.p-product-content-info__td {
	position: relative;
	width: 82px;
	font-size: 1.2rem;
	line-height: 1.25;
	text-align: center;
	border-right: 1px solid #ccc;
}
@media screen and (max-width: 1000px) {
	.p-product-content-info__td {
		width: 79px;
		font-size: 1.1rem;
	}
}

.p-product-content-info__td:first-child {
	border-left: 1px solid #ccc;
}
.p-product-content-info__td strong {
	font-weight: 700;
	font-size: 2.7rem;
	line-height: 1;
}
.p-product-content-info__bps {
	position: relative;
	left: 5px;
}
.p-product-content-info__sup {
	position: relative;
	top: 2px;
	font-size: 65%;
	vertical-align: top;
}
.p-product-content-info__set {
	position: absolute;
	bottom: -14px;
	right: 0;
	left: 0;
	width: 100%;
	font-size: 75%;
	vertical-align: top;
	content: "";
}
.p-product-content-info__set sup {
	position: relative;
	font-size: 70%;
	vertical-align: top;
}
.p-product-content-info__side {
	position: relative;
	font-size: 1rem;
	bottom: 5px;
	right: 3px;
}
.p-product-content-info__side--wide {
	right: 0px;
}
.lineup-content--sim {
	padding: 12px 12px 15px;
}
.p-simcard-support {
	margin-top: 15px;
	padding: 0 13px;
}
.p-simcard-support-title {
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1;
}
.p-simcard-support-text {
	margin-top: 5px;
	font-size: 1.2rem;
	line-height: 1.3;
}
.lineup-content .spec-summary-bg {
	width: auto;
	height: auto;
	margin: 5px 0 0;
	padding: 0;
	background-color: #fff;
	border-radius: 0;
}
.lineup-content .spec-summary-flex--column {
	align-items: center;
	row-gap: 0;
}
.lineup-content .spec-summary-connect-text01 {
	width: 26px;
}
.lineup-content .spec-summary-connect-text01,
.lineup-content .spec-summary-connect-text02,
.lineup-content .spec-summary-connect-text04 {
	font-size: 1.1rem;
}
.lineup-content .spec-summary-connect-text03 {
	width: 25px;
	font-size: 1.8rem;
}
.lineup-content .spec-summary-connect-wrap {
	position: relative;
}
.lineup-content .spec-summary-connect-text04 .p-product-content-info__sup {
	position: absolute;
	top: -5px;
	right: -33px;
	width: 100%;
	content: "";
}
.footer-note-area {
	max-width: 780px;
	margin: 25px auto 0;
}
@media screen and (max-width: 1000px) {
	.footer-note-area {
		margin: 20px auto 0;
	}
}

.device-footer-note {
	padding-left: 2.6em;
	text-indent: -2.6em;
	font-size: 1.2rem;
	line-height: 1.75;
}
.device-footer-note a {
	color: var(--wimax-sub);
	text-decoration: underline !important;
}
.end {
	position: relative;
}
.lineup-end-text {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	font-weight: 900;
	font-size: 2.6rem;
	color: #fff;
	background-color: rgba(51, 51, 51, 0.5);
	border-radius: 6px;
	z-index: 100;
	content: "";
}
.end .lineup-end-text {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*--------------------------------------
    エリア確認
--------------------------------------*/
.bg-color {
	padding: 70px 0 50px;
	background-color: #5c5c5c;
}
.p-area-title {
	color: #fff;
	font-weight: 900;
	font-size: 3.6rem;
	text-align: center;
}
.p-area--plan {
	margin: 15px auto 0!important;
	text-align: center;
}
.p-area--plan .p-area__lead {
	display: inline-block;
	width: 280px;
	height: 52px;
	background-color: #5c5c5c;
	font-weight: 900;
	font-size: 2.5rem;
	color: #fff;
	text-align: center;
}
.p-area--plan .p-area__list {
	margin-top: -29px;
	padding: 58px 47px 43px;
	border: 2px solid #fff;
	border-radius: 14px;
	color: #fff;
	text-align: left;
}
.p-area--plan .p-area__item {
	margin-top: 0;
	font-size: 2rem;
}
.p-area--plan .p-area__item:nth-child(n+2) {
	margin-top: 12px;
}
.p-area--plan .p-area__item-inner {
	margin-top: 0;
}
.p-area--plan .p-area__item::before {
	position: relative;
	top: 5px;
	width: 29px;
	height: 29px;
	margin-right: 10px;
	background-color: #fff;
	color: #5c5c5c;
	font-size: 1.7rem;
	line-height: 27px;
}
.p-area--plan .p-area__item-notes {
	font-weight: 400;
	font-size: 1.6rem;
}
.p-area--plan .p-area__content {
	margin-top: 39px;
}
.p-area--plan .p-area__note {
	margin: 35px auto 0;
	text-align: left;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.bg-color {
		padding: 20px 0;
	}
	.p-area-title {
		font-size: 2.5rem;
	}
	.p-area--plan {
		margin: 10px auto 0!important;
		text-align: center;
	}
	.p-area--plan .p-area__lead {
		width: 191px;
		height: 40px;
		font-size: 1.9rem;
	}
	.p-area--plan .p-area__list {
		margin-top: -22px;
		padding: 30px 25px 25px;
		border-radius: 8px;
	}
	.p-area--plan .p-area__item {
		font-size: 1.7rem;
	}
	.p-area--plan .p-area__item:nth-child(n+2) {
		margin-top: 15px;
	}
	.p-area--plan .p-area__item::before {
		width: 24px;
		height: 24px;
		font-size: 1.4rem;
		line-height: 24px;
	}
	.p-area--plan .p-area__item-notes {
		font-size: 1.5rem;
	}
	.p-area--plan .p-area__content {
		margin-top: 21px;
		height: 337px;
	}
	.p-area--plan .p-area__note {
		margin: 17px auto 0;
	}
}

/*--------------------------------------
    フッター バナー
--------------------------------------*/
.otokuwari-other-banner {
	display: flex;
	justify-content: space-between;
	max-width: 980px;
	margin: 60px auto 70px;
}
.otokuwari-other-banner__inner {
	width: calc(50% - 38px / 2);
	margin: auto;
}
@media screen and (max-width: 1000px) {
	.otokuwari-other-banner {
		display: block;
		max-width: 100%;
		margin: 22px auto 10px;
	}
	.otokuwari-other-banner__inner {
		width: 345px;
	}
	.otokuwari-other-banner__inner:last-child {
		margin-top: 15px;
	}
}