/* ----------------------------------------------------------------------------
 * カスタムプロパティ
 * ------------------------------------------------------------------------- */
 :root {
  --main-pink: #e4007f;
 }

body {
	color: #2c2c2c;
	font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-size: 12px;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
img {
	max-width: 100%;
	height: auto;
}

/* ----------------------------------------------------------------------------
 * カラー
 * ------------------------------------------------------------------------- */
.fc-pink {
	color: var(--main-pink);
}
.c-link {
	color: #0091d7;
	text-decoration: underline !important;
}
.c-link:hover {
	text-decoration: none !important;
}

/* ----------------------------------------------------------------------------
 * レイアウト
 * ------------------------------------------------------------------------- */
#main-contents {
  max-width: 1010px;
  margin: auto;
  padding: 0 15px 50px;
}
.p-content-wrap {
	max-width: 820px;
	margin: 30px auto 0;
}

/* ----------------------------------------------------------------------------
 *  見出し
 * ------------------------------------------------------------------------- */
.page-heading {
	max-width: 980px;
	margin: auto;
}
.section-heading__text {
	margin: 0;
	padding-bottom: 25px;
	font-weight: 900;
	font-size: 2.9rem;
	font-feature-settings: "palt";
	line-height: 1;
	text-align: center;
	letter-spacing: 0.01em;
	border-bottom: 2px solid var(--main-pink);
}
@media screen and (max-width: 767px) {
	.section-heading__text {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding-bottom: 22px;
		font-size: 2.4rem;
		letter-spacing: 0.05em;
	}
}
@media screen and (min-width: 900px) and (max-width: 1029px) {
	.section-heading__text {
		padding-bottom: 18px;
		font-size: 2.2rem;
		letter-spacing: 0.05em;
	}
}

/* ----------------------------------------------------------------------------
 * 適用条件
 * ------------------------------------------------------------------------- */
.p-conditions-button {
	max-width: 345px;
	height: 50px;
	margin: 40px auto 0;
}
.p-conditions-button-link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	font-size: 1.9rem;
	font-feature-settings: "palt";
	color: var(--main-pink);
	border: 1px solid var(--main-pink);
	border-radius: 25px;
}
.p-conditions-button-link::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 26px;
	height: 26px;
	margin: auto;
	background: url("../img/3g-norikae_icon02.svg") no-repeat 0 0 / cover;
	content: "";
}
@media screen and (max-width: 767px) {
	.p-conditions-button {
		max-width: 345px;
		height: 50px;
		margin: 35px auto 0;
	}
}

/* ----------------------------------------------------------------------------
 * テキスト関連
 * ------------------------------------------------------------------------- */
.p-content-text {
	margin: 0;
	font-weight: 400;
	font-size: 1.6rem;
	font-feature-settings: "palt";
}
.p-content-notes {
	margin: 0;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.5;
	font-feature-settings: "palt";
}

/* ----------------------------------------------------------------------------
 *  リンク
 * ------------------------------------------------------------------------- */
.p-content-link {
	color: #0091d7;
}
.p-content-link::after,
.p-aucertified-link::after {
	position: relative;
	display: inline-block;
	background: url("../img/3g-norikae_icon01.svg") no-repeat 0 0 / cover;
	content: "";
}
.p-content-link::after {
	width: 20px;
	height: 20px;
	margin-left: 12px;
	vertical-align: -4px;
}
.p-aucertified-link {
	margin: 5px auto 0;
	font-weight: 400;
	font-size: 1.1rem;
	text-align: center;
}
.p-aucertified-link::after {
	width: 10px;
	height: 10px;
	margin-left: 5px;
	vertical-align: -1px;
}

/* ----------------------------------------------------------------------------
 *  タブ
 * ------------------------------------------------------------------------- */
.tab-wrap {
	margin-top: 30px;
}
.p-tab-nav {
	border-bottom: 1px solid var(--main-pink);
}
.p-tab-nav__list {
  margin: auto;
  display: flex;
  justify-content: space-between;
  max-width: 890px;
}
.p-tab-nav__item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
  width: calc(100% / 2 - 20px / 2);
	height: 60px;
  border-radius: 8px 8px 0 0;
	font-weight: 700;
	font-size: 2.4rem;
	font-feature-settings: "palt";
	text-align: center;
	color: #9b9b9b;
  cursor: pointer;
	background-color: #fff;
	border-top: 1px solid #9b9b9b;
	border-right: 1px solid #9b9b9b;
	border-left: 1px solid #9b9b9b;
}
.p-tab-nav__item::after {
	position: absolute;
	bottom: 0;
	width: calc(100% + 2px);
	height: 9px;
	background-color: #fff;
	content: "";
}
.p-tab-nav__item.is-active {
	position: relative;
	color: var(--main-pink);
	background-color: #fce5f2;
	border-color: var(--main-pink);
}
.p-tab-nav__item.is-active::after {
	position: absolute;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background-color: #fce5f2;
	content: "";
}
@media screen and (max-width: 767px) {
	.p-tab-nav__inner {
		display: block;
	}
	.tab-wrap {
		margin-top: 15px;
	}
	.p-tab-nav {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding: 0 15px;
	}
	.p-tab-nav__item {
		width: calc(100% / 2 - 18px / 2);
		font-size: 2.2rem;
	}
}
/* ----------------------------------------------------------------------------
 * カード
 * ------------------------------------------------------------------------- */
#lineup .product-list {
	gap: 22px 24px;
	justify-content: flex-start;
	margin-top: 40px;
}
#lineup .product-price__inner {
	flex-direction: column;
	align-items: center;
	row-gap: 2px;
	line-height: 1.25;
}
#lineup .product-item {
	max-width: 310px;
	height: 290px;
	margin-top: 0;
}
#lineup .product-price {
	min-width: 100%;
	margin: 0;
	font-size: 1rem;
}
#lineup .product-img {
	flex: 0 0 auto;
	max-width: 119px;
	text-align: center;
}
#lineup .product-info {
	width: 100%;
	margin-top: 4px;
}
#lineup .product-info--no-storage {
	align-self: center;
	margin-top: 7px;
}
#lineup .product-price-gb {
	gap: 2px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 12px;
}
#lineup .product-price-gb__button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 1rem;
}
#lineup .product-price-gb__button span {
	position: relative;
	top: 0.8px;
	font-size: 0.9rem;
}
#lineup .is-active.product-price-gb__button {
	border-color: var(--main-pink);
	background-color: #fef2f9;
	color: var(--main-pink);
}
#lineup .product-price__title {
	font-weight: 500;
	font-size: 1.6rem;
}
#lineup .product-price__title sup {
	font-size: 60%;
}
#lineup .product-price__content {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--main-pink);
}
#lineup .product-price__content em {
	margin-right: -2px;
	margin-left: 5px;
	font-weight: 700;
	font-size: 2.8rem;
}
#lineup .product-price__content--num {
	vertical-align: -2px;
}
.product-lineup {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	margin-top: auto;
	padding: 36px 14px 16px;
}
.product-other-info {
	display: flex;
	align-items: center;
	position: relative;
	height: 14px;
}
.product-item__new {
	position: absolute;
	top: 18px;
	left: 14px;
	margin: 0;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--main-pink);
}
.producit-item__date {
	position: absolute;
	right: 0;
	font-size: 1.4rem;
	line-height: 1;
}
.product-item-header {
	max-width: 280px;
	height: 48px;
	margin: 0 auto;
}
.product-flex {
	display: flex;
	justify-content: space-between;
}
/* 購入ボタン */
.lineup-product-link {
	width: 100%;
	height: 50px;
	margin: 17px auto 0;
}
@media screen and (max-width: 767px) {
	.lineup-product-link {
		margin: 24px auto 0;
	}
}
.product-link-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	box-shadow: 0 4px 0 0 #bd0069;
	background-color: var(--main-pink);
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
}
.is-disabled.product-link-button {
	box-shadow: 0 4px 0 0 #c5c5c5;
	background-color: #eee;
	color: #999;
	font-size: 1.6rem;
	pointer-events: none;
}

@media screen and (min-width: 884px) and (max-width: 1217px) {
	#lineup .product-list {
		justify-content: center;
	}
}
@media screen and (max-width: 883px) {
	#lineup .product-list {
		gap: 18px 0;
		flex-direction: column;
	}
	#lineup .product-price__inner {
		line-height: 1.25;
	}
	#lineup .product-item {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	#lineup .product-price {
		font-size: 0.9rem;
	}
	#lineup .product-img {
		max-width: 180px;
	}
	#lineup .product-img img {
		width: 100%;
		height: auto;
	}
	#lineup .product-info {
		margin-top: 20px;
	}
	#lineup .product-price-gb {
		position: absolute;
		top: 103px;
		right: 0;
		left: 0;
		margin: auto;
	}
	.product-other-info {
		display: flex;
		align-items: center;
		position: relative;
		height: 14px;
	}
	.producit-item__date {
		font-size: 1rem;
	}
	.product-item-header img {
		width: 100%;
		height: auto;
	}
	.product-flex {
		flex-direction: column;
		align-items: center;
		margin-top: 45px;
	}
}

/* ----------------------------------------------------------------------------
 *  バナー
 * ------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
	.p-banner-container {
		flex-direction: column;
		align-items: center;
		margin-top: 40px;
	}
	.p-carousel-banner-list {
		flex-direction: column;
	}
}

/* ----------------------------------------------------------------------------
 * カルーセルバナー
 * ------------------------------------------------------------------------- */
.p-campaign {
	margin-top: 60px;
}
.p-campaign__content {
  display: flex;
	column-gap: 25px;
}
.p-campaign-container {
	max-width: 310px;
}
.p-campaign-container--two {
  max-width: 645px;
}
.p-campaign-banner {
  max-width: 310px;
	margin: 35px auto 0;
}
.p-campaign-carousel {
	display: flex;
	column-gap: 25px;
}
.p-campaign-carousel .slick-arrow {
	top: calc(50% + 17.5px);
	transform: translateY(-50%);
	z-index: 1;
	width: 40px;
	height: 40px;
	transition: opacity 0.3s ease-out;
}
.js-sp-only-campaign-carousel .slick-arrow {
	display: none;
}
.p-campaign-carousel .slick-arrow::before {
	content: none;
}
.p-campaign-carousel .slick-prev {
	left: calc(50% - 155px - 20px);
	background: url("../img/3g-norikae_icon03.svg") no-repeat 0 0;
}
.p-campaign-carousel .slick-prev:hover {
	background: url("../img/3g-norikae_icon03.svg") no-repeat 0 0;
}
.p-campaign-carousel .slick-next {
	right: calc(50% - 155px - 20px);
	transform: scale(-1, 1) translateY(-50%);
	background: url("../img/3g-norikae_icon03.svg") no-repeat 0 0;
}
.p-campaign-carousel .slick-next:hover {
	background: url("../img/3g-norikae_icon03.svg") no-repeat 0 0;
}
.p-campaign-carousel .slick-arrow:hover {
	opacity: 1;
}
.p-campaign-carousel .slick-arrow,
.p-campaign-carousel .slick-arrow:hover,
.p-campaign-carousel .slick-arrow:focus,
.p-campaign-carousel .slick-arrow:focus-visible,
.p-campaign-carousel .slick-arrow:active {
	background: url("../img/3g-norikae_icon03.svg") no-repeat 0 0;
}
.p-campaign-carousel .slick-arrow.slick-disabled{
	display: none !important;
}
.p-campaign-carousel .slick-arrow:focus-visible {
	outline: 2px solid #005FCC;
}

@media screen and (max-width: 1220px) {
	.p-campaign {
		margin-top: 40px;
	}  
	.p-campaign__content {
    flex-direction: column;
		align-items: center;
		column-gap: 0;
		row-gap: 40px;
  }
  .p-campaign-container {
    max-width: 100%;
		width: 100%;
    margin: auto;
  }
	.p-campaign-carousel {
		position: relative;
		display: block;
	}
	.p-campaign-carousel .p-campaign-banner {
		margin: 35px 12.5px 0;
	}	
	.js-sp-only-campaign-carousel .slick-arrow {
		display: block;
	}
	.p-campaign-carousel .slick-arrow:focus-visible {
		outline: 2px solid #E59701;
	}
}
