@charset "utf-8";
/* ============== 共通 =================== */
#contents {
	padding: 0;
	font-size: 14px;
	text-align: center;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	overflow: hidden;
}
#footer {
	margin-top: 60px;
}
#contents * {
	box-sizing: border-box;
}
#contents a {
	color: #0099cc;
	text-decoration: underline;
}
#contents a:hover {
	opacity: 0.7;
}
button, a {
	-webkit-tap-highlight-color: transparent;
}
figure {
	margin: 0;
}
.display_sp {
	display: none;
}
.end_txt {
	padding: 20px 0;
	font-size: 180%;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #f50028;
	background-color: #fff;
}
/*注釈テキスト*/
.note_txt {
	padding-left: 1em;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.6;
	color: #999;
	text-indent: -1em;
}
.note_num_txt {
	padding-left: 1.8em;
	text-indent: -1.8em;
}
/*角丸ブロック*/
.round_block {
	border-radius: 8px;
}
/*マーカー*/
.line_txt {
	padding: 0 5px;
	display: inline;
	background: linear-gradient(transparent 75%, #FFFF66 0%);
}
/*吹き出し*/
.slash_txt {
	position: relative;
	display: inline-flex;
	align-items: flex-end;
}
.slash_txt::before,
.slash_txt::after {
	content: '';
	display: inline-block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/*強調カラーテキスト*/
.em_txt_blue {
	font-size: 18px;
	color: #198FCF;
}
/*太字*/
.bold_font {
	font-weight: bold;
}
/*中黒リスト*/
.dot_list {
	padding-left: 1em;
	text-indent: -1em;
}
/*(数字)リスト*/
.num_list {
	padding-left: 1.5em;
	text-indent: -1.4em;
	counter-reset: number 0;
}
.num_list > li::before {
	content: "(" counter(number) ")";
	counter-increment: number 1;
}
/* アコーディオン */
.accordion_item {
	overflow: hidden;
}
.accordion_header {
	padding: 10px 20px;
	position: relative;
	display: grid;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}
.accordion_icon {
	content: "";
	width: 15px;
	height: 15px;
	position: relative;
	display: block;
	border-radius: 50%;
}
.accordion_icon::before,
.accordion_icon::after {
	content: "";
	width: 2px;
	height: 12px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s;
}
.accordion_icon::after {
	transform: translate(-50%, -50%) rotate(-90deg);
}
.is_open .accordion_icon::before {
	transform: translate(-50%, -50%) rotate(-90deg);
}
.accordion_body {
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
}
.accordion_contents {
	text-align: left;
	background-color: #fff;
}
/* ============== top =================== */
.top {
	font-size: 0;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/mv_pc_bg.png);
	background-size: contain;
	background-position: center;
	background-repeat: repeat-x;
}
/* ============== lead =================== */
.lead {
	padding: 30px 0 50px;
	color: #fff;
	background-color: #57BAE7;
}
.lead_ttl {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
.lead_note_txt {
	line-height: 2;
	color: #fff;
}
.lead_txt {
	margin-top: 15px;
}
/* ============== btn =================== */
#contents .btn {
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
.btn_wrap {
	padding-top: 60px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_pc_white.png) repeat-x center top / auto 50px, linear-gradient(to bottom, #57BAE7 0 50px, #FFF 50px 100%);
}
.btn_slash_txt {
	gap: 5px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: #198FCF;
	white-space: nowrap;
}
.btn_slash_txt::before,
.btn_slash_txt::after {
	width: 23px;
	height: 25px;
}
.btn_slash_txt::before {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/banzai_2p_left.png);
}
.btn_slash_txt::after {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/banzai_2p_right.png);
}
.btn {
	max-width: 400px;
	height: 50px;
	margin: 10px auto 0;
	position: relative;
	display: grid;
	place-items: center;
	background-color: #ff9123;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/btnarrow_right.png);
	background-size: 20px;
	background-position: center right 15px;
	background-repeat: no-repeat;
	border-radius: 5px;
}
.btn_att {
	margin-top: 20px;
	font-size: 12px;
	color: #999999;
}
/*follow_btn*/
.follow_btn {
	width: 100%;
	padding: 20px 0;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.90) 50%);
	opacity: 0;
	transform: translateY(100%);
	transition: .5s;
	z-index: 200;
}
.follow_btn.is_show {
	opacity: 1;
	transform: translateY(0);
}
/*終了対応*/
#contents .close_btn {
	position: relative;
	pointer-events: none;
}
#contents .close_btn::after {
	content:"※本キャンペーンは終了しました";
	width: 104%;
	height: 120%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: bold;
	color: #ffffff;
	background-color: rgba(0,0,0,0.7);
	transform: translate(-50%,-50%);
	z-index: 10;
}
/* ============== sec共通 =================== */
.sec:nth-of-type(odd) {
	background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_pc_blue.png) repeat-x center top / auto 50px, linear-gradient(to bottom, transparent 0 50px, #E9F9FF 50px 100%);
}
.sec + .sec:nth-of-type(odd) {
	background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_pc_blue.png) repeat-x center top / auto 50px, linear-gradient(to bottom, #FFFFD6 0 50px, #E9F9FF 50px 100%);
}
.sec:nth-of-type(even) {
	background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_pc_yellow.png) repeat-x center top / auto 50px, linear-gradient(to bottom, #E9F9FF 0 50px, #FFFFD6 50px 100%);
}
.sec_inner {
	width:calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
	padding: 70px 0 40px;
}
.sec_ttl {
	padding: 10px 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	color: #198FCF;
	background-color: #FFF;
	border: 2px dashed #198FCF;
	border-radius: 100px;
}
/* ============== LP =================== */
/* プレミアムウォーターのウォーターサーバー */
.products {
	margin-top: 40px;
}
.products_tab {
	margin-top: 30px;
}
.products_tab_head{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 5px;
}
.products_tab_btn {
	width: 100%;
	max-width: 180px;
	padding: 8.5px 0 18.5px;
	flex: 1;
	background-color: #fff;
	border: 1px solid #198FCF;
	border-radius: 8px 8px 0 0;
	transform-origin: bottom center;
	transform: translateY(10px);
	transition: .5s;
	cursor: pointer;
}
.products_tab_btn.active {
	padding-bottom: 8.5px;
	background-color: #198FCF;
	transform: translateY(0);
}
.products_tab_btn_img {
	width: auto;
	height: 43px;
	transition: .5s;
}
.products_tab_btn.active .products_tab_btn_img {
	height: 53px;
}
.products_tab_body {
	padding: 35px 70px;
	position: relative;
	background-color: #fff;
	border-top: 5px solid #198FCF;
	border-radius: 0 0 8px 8px;
	z-index: 100;
}
.products_tab_panel {
  display: none;
}
.products_tab_panel.active {
  display: block;
}
.products_tab_ttl {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #198FCF;
}
.products_tab_txt {
	margin-top: 20px;
}
/* > スライダー */
.products_swiper {
	margin-top: 20px;
}
.single_slider .swiper-wrapper {
	justify-content: center;
}
.swiper-slide {
  width: 100%;
  max-width: 500px;
}
.swiper-pagination {
	position: relative;
	margin-top: 30px;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #E9F9FF;
	border: 1px solid #198FCF;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color: #198FCF;
}
/* > 製品仕様 アコーディオン */
.products_info {
	margin-top: 20px;
	border: 1px solid #198FCF;
}
.products_accordion_header {
	grid-template-columns: 1fr 20px;
	text-align: center;
	color: #198FCF;
	background-color: #E9F9FF;
}
.is_open .products_accordion_header {
	border-bottom: 1px solid #198FCF;
}
.products_accordion_icon::before,
.products_accordion_icon::after {
	background-color: #198FCF;
}
.products_accordion_contents {
	padding: 25px 40px 30px;
}
.products_info_item{
	padding: 15px 0;
	border-bottom: 1px solid #198FCF;
}
.products_info_item > dl {
	display: grid;
	grid-template-columns: 230px 1fr;
	align-items: center;
}
.products_info_item > dl > dt {
	font-weight: bold;
	text-align: center;
}
.products_info_list dd > dl * + dt {
	margin-top: 1em;
}
.products_info_note_txt {
	margin-top: 20px;
}
/* ウォーターサーバーのご利用料金 */
.price_lead {
	margin-top: 30px;
	font-size: 18px;
	line-height: 1.5;
	color: #198FCF;
}
.price_note_txt {
	margin-top: 10px;
}
.price_list {
	margin-top: 30px;
	display: flex;
	gap: 50px;
}
.price_item {
	padding: 20px 0;
	background-color: #fff;
	border: 1px solid #57BAE7;
}
.price_item + .price_item {
	position: relative;
}
.price_item + .price_item::before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: -25px;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/plus_icon.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
}
.price_img {
	width: 100%;
	max-width: 690px;
}
.price_slash_txt {
	gap: 7px;
	font-size: 16px;
	font-weight: bold;
}
.price_slash_txt::before,
.price_slash_txt::after {
	width: 12px;
	height: 18px;
	margin-bottom: 5px;
}
.price_slash_txt::before {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/banzai_left.png);
}
.price_slash_txt::after {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/banzai_right.png);
}
.price_option,
.price_club {
	margin-top: 30px;
}
.price_option_head,
.price_club_head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.price_option_ttl {
	width: 233px;
}
.price_club_ttl {
	width: 308px;
}
.price_option_body,
.price_club_body {
	margin-top: -17px;
	padding: 30px 50px 20px;
	background-color: #fff;
	border: 1px solid;
}
.price_option_body {
	border-color: #57C5C1;
}
.price_club_body {
	border-color: #F08F89;
}
.price_option_img,
.price_club_img {
	width: 100%;
	max-width: 345px;
}
.price_option_em_txt,
.price_club_em_txt {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
}
.price_option_em_txt {
	color: #17B0AD;
}
.price_club_em_txt {
	color: #F08F89;
}
.price_option p + p,
.price_club p + p {
	margin-top: 10px;
}
.price_club p + .price_club_more_txt {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #F2F2F2;
}
.price_club_dots_txt {
	margin-right: 0.5em;
	padding-top: 0.5em;
	background-image: radial-gradient(circle at center, #F17872 20%, transparent 20%);
	background-size: 1em 0.5em;
	background-position: top right;
	background-repeat: repeat-x;
}
/* プレミアムウォーターが選ばれる理由 */
.about_ponta_img {
	width: 112px;
	margin: 30px auto 0;
	display: block;
}
.about_list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: 30px;
}
.about_item {
	padding-top: 20px;
	background-color: #fff;
}
.about_item_01 {
	grid-column: 1 / 3;
}
.about_item_ttl {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #198FCF;
}
.about_item_img {
	width: 100%;
	max-width: 345px;
	margin: 0 auto;
}
.about_item_contents {
	padding: 0 20px 20px;
}
.about_item ul,
.about_item p {
	width: 100%;
	max-width: 670px;
	margin: 0 auto;
	text-align: left;
}
.about_item ul + ul,
.about_item p + p {
	margin-top: 10px;
}
/* ご利用までの流れ */
.flow_list {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 30px;
}
.flow_item {
	padding: 25px 0 20px;
	position: relative;
	background-color: #fff;
}
.flow_num {
	width: 116px;
	height: 25px;
	position: absolute;
	top: 0;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #fff;
	background-color: #198FCF;
	border-radius: 500px;
	transform: translate(-50%, -50%);
}
.flow_img {
	width: 100%;
	max-width: 345px;
	margin: 0 auto;
}
.flow_txt {
	width: calc(100% - 40px);
	margin: 10px auto 0;
	text-align: left;
}
/* よくあるご質問 */
.faq_list {
	margin-top: 20px;
}
.faq_item {
	border: 1px solid #198FCF;
}
.faq_item + .faq_item {
	margin-top: 30px;
}
.faq_accordion_header {
	grid-template-columns: 30px 1fr 20px;
	gap: 15px;
	text-align: left;
	color: #fff;
	background-color: #198FCF;
}
.faq_accordion_header::before {
	content: "";
	width: 30px;
	height: 30px;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/q_icon.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.faq_accordion_icon::before,
.faq_accordion_icon::after {
	background-color: #fff;
}
.faq_accordion_contents {
	padding: 15px 20px 20px;
	padding-bottom: 20px;
	position: relative;
	display: flex;
	gap: 15px;
}
.faq_accordion_contents::before {
	content: "";
	width: 30px;
	height: 30px;
	display: block;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/a_icon.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
}
/* ============== att =================== */
.att {
	padding-top: 110px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_pc_white.png) repeat-x center top / auto 50px, linear-gradient(to bottom, #E9F9FF 0 50px, #FFF 50px 100%);
}
.att_inner {
	width: calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
	padding: 50px 70px;
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	overflow: hidden;
}
.att_ttl {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
.att_list {
	margin-top: 40px;
}
.att_item + .att_item {
	margin-top: 40px;
}
.att_item_ttl {
	padding-left: 1.5em;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
}
/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	background-color: #198FCF;
	border-radius: 50%;
}
.att_dot_list {
	margin-top: 10px;
}
.att_item_inner p {
	margin-top: 10px;
}
.att_item_inner .note_txt {
	margin-top: 0;
}
.att_item_inner p + p {
	margin-top: 0;
}
.att_item_img {
	margin-top: 20px;
	text-align: center;
}
.att_item_img + * {
	margin-top: 20px;
}
.att .dot_list,
.att .num_list,
.att_small_unit,
.att_small_unit + * {
	margin-top: 10px;
}
.att .dot_list .att_small_unit {
	text-indent: 0;
}
.att .dot_list li > .dot_list,
.att .dot_list li > .num_list,
.att .num_list li > .dot_list,
.att .num_list li > .num_list,
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-top: 0;
}
.att .dot_list li > .dot_list + *,
.att .dot_list li > .num_list + *,
.att .num_list li > .dot_list + *,
.att .num_list li > .num_list + *,
.att_small_unit .dot_list + *,
.att_small_unit .num_list + * {
	margin-top: 10px;
}
.att .dot_list li > .num_list,
.att .num_list li > .num_list {
	transform: translateX(-0.2em);
}
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-top: 10px;
	margin-left: 0.5em;
}
.att .em_font {
	font-weight: bold;
	color: #f50028;
}
/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
	/* ============== 共通 =================== */
	img {
		width: 100%;
	}
	.display_pc {
		display: none;
	}
	.display_sp {
		display: block;
	}
	.end_txt {
		font-size: 150%;
	}
	/* ============== top =================== */
	.top {
		background-image:none;
	}
	/* ============== lead =================== */
	.lead {
		padding: 20px 0 30px;
	}
	/* ============== btn =================== */
	.btn_wrap {
		padding-top: max(70px, 18.7vw);
		background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_sp_white.png) no-repeat center top / contain, linear-gradient(to bottom, #57BAE7 0 13vw, #FFF 50px 100%);
	}
	.btn {
		width: calc(100% - 90px);
	}
	.btn_att {
		width: calc(100% - 90px);
		max-width: 400px;
		margin: 15px auto 0;
		text-align: left;
	}
	/*終了対応*/
	#contents .close_btn::after {
		font-size: 1.8rem;
	}
	/* ============== sec共通 =================== */
	.sec:nth-child(odd) {
		background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_sp_blue.png) no-repeat center top / contain, linear-gradient(to bottom, transparent 0 13vw, #E9F9FF 50px 100%);
	}
	.sec + .sec:nth-child(odd) {
		background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_sp_blue.png) no-repeat center top / contain, linear-gradient(to bottom, #FFFFD6 0 13vw, #E9F9FF 50px 100%);
	}
	.sec:nth-child(even) {
		background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_sp_yellow.png) no-repeat center top / contain, linear-gradient(to bottom, #E9F9FF 0 13vw, #FFFFD6 50px 100%);
	}
	.sec_inner {
		width: calc(100% - 30px);
		padding: max(60px, 16vw) 0 30px;
	}
	/* ============== LP =================== */
	/* プレミアムウォーターのウォーターサーバー */
	.products {
		margin-top: 30px;
	}
	.products_tab_body {
		padding: 20px;
	}
	/* > スライダー */
	.swiper-pagination {
		margin-top: 20px;
	}
	/* > 製品仕様 アコーディオン */
	.products_info {
		margin-top: 10px;
	}
	.products_accordion_contents {
		padding-right: 15px;
		padding-left: 15px;
	}
	.products_info_item{
		padding: 0;
		border: none;
	}
	.products_info_item > dl {
		grid-template-columns: 1fr;
	}
	.products_info_item > dl > dt {
		padding-bottom: 10px;
		border-bottom: 1px solid #198FCF;
	}
	.products_info_item > dl > dd {
		padding: 10px 10px 20px;
	}
	/* ウォーターサーバーのご利用料金 */
	.price_note_txt {
		text-align: left;
	}
	.price_list {
		flex-direction: column;
	}
	.price_item {
		padding-top: 0;
	}
	.price_item + .price_item::before {
		top: -25px;
		left: 50%;
	}
	.price_option_body,
	.price_club_body {
		padding-right: 20px;
		padding-left: 20px;
	}
	.price_option_txt {
		text-align: left;
	}
	.price_club_dots_txt {
		margin: 0;
	}
	/* プレミアムウォーターが選ばれる理由 */
	.about_list {
		grid-template-columns: 1fr;
	}
	.about_item_01 {
		grid-column: auto;
	}
	/* ご利用までの流れ */
	.flow_list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	/* よくあるご質問 */
	.faq_item + .faq_item {
		margin-top: 20px;
	}
	.faq_accordion_header {
		padding-right: 10px;
		padding-left: 10px;
		gap: 10px;
	}
	.faq_accordion_contents {
		padding-right: 10px;
		padding-left: 10px;
	}
	/* ============== att =================== */
	.att {
		padding-top: max(70px, 18.7vw);
		background: url(https://pntc.sslcs.cdngc.net/cdn/premium-water/img/bottom_bg_sp_white.png) no-repeat center top / contain, linear-gradient(to bottom, #E9F9FF 0 13vw, #FFF 50px 100%);
	}
	.att_inner {
		width: calc(100% - 30px);
		padding: 40px 30px 30px;
	}
	.att_item_ttl {
		padding-left: 1.5em;
	}
	.att_item_inner p,
	.att .dot_list,
	.att .num_list,
	.att_small_unit,
	.att_small_unit + * {
		margin-top: 5px;
	}
}