/*=======================================================================*/
/*
Base.css
wrapper や header、footer など、ペースとなる部分のCSS
*/
/*=======================================================================*/

/*=======================================================================*/
/* ボディ */
/*=======================================================================*/

/* フォント */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);*/ /* for IE11: notosansjp.css -> notosansjapanese.css */

body {
	font-family: 'Noto Sans Japanese';
	font-size: 0.85em;
	position: relative;
	padding-bottom: 60px;
}


/*=======================================================================*/
/* コンテンツ */
/*=======================================================================*/

/* セクション */
/*=======================================================================*/

section {
	position: relative;
	max-width: 1080px;
	width: 98%;
	margin: 10px auto;
	padding: 0;
	box-sizing: border-box;
}

article {
	margin: 0;
}

article p {
	padding: 0 0 10px 0;
}

/* 見出し装飾 */
/*=======================================================================*/

section h2 {
	position: relative;
	text-align: center;
	color: #0068b7;
	margin: 30px auto;
	width: 100%;
	font-size: 2em;
	font-family: 'Noto Sans Japanese';
	font-weight: 700;
}

section h2 span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
}

section h2:before {
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background-color: #ea609e;
}

h3.formBlock {
	font-size: 1.5em;
	font-family: 'Noto Sans Japanese';
	font-weight: 600;
	padding: 0 10px 5px 10px;
	background: linear-gradient(transparent 60%, #a7d6ff 50%);
	margin: 35px 0 25px;
}

h3.Notes {
	font-size: 1.4em;
	font-family: 'Noto Sans Japanese';
	font-weight: 600;
	padding: 0 10px 3px 10px;
	background: linear-gradient(transparent 60%, #00838F 70%);
	margin: 0 0 20px 0;
}

h4 {
	color: #1976D2;
	font-weight: bold;
	margin: 10px 0;
}

/* 確認画面 表示テキスト */

p.conTxt {
	line-height: 1.8em;
	margin: -10px 0 0 0;
	font-weight: bold;
}



/* ステッププログレスバー */
/*=======================================================================*/

.stepBar {
	position: relative;
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
	text-align: center;
	width: 98%;
	overflow: hidden;
	*zoom: 1;
}

.stepBar .step {
	position: relative;
	float: left;
	display: inline-block;
	line-height: 60px;
	padding: 0 40px 0 20px;
	background-color: #eee;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.stepBar .step:before, .stepBar .step:after {
	position: absolute;
	left: -15px;
	display: block;
	content: '';
	background-color: #eee;
	border-left: 4px solid #FFF;
	width: 30px;
	height: 30px;
}
.stepBar .step:after {
	top: 0;
	-moz-transform: skew(30deg);
	-ms-transform: skew(30deg);
	-webkit-transform: skew(30deg);
	transform: skew(30deg);
}

.stepBar .step:before {
	bottom: 0;
	-moz-transform: skew(-30deg);
	-ms-transform: skew(-30deg);
	-webkit-transform: skew(-30deg);
	transform: skew(-30deg);
}

.stepBar .step:first-child {
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.stepBar .step:first-child:before, .stepBar .step:first-child:after {
	content: none;
}

.stepBar .step:last-child {
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.stepBar .step.current01 {
	color: #FFF;
	background-color: #00ACC1;
}

.stepBar .step.current02 {
	color: #FFF;
	background-color: #3949AB;
}

.stepBar .step.current03 {
	color: #FFF;
	background-color: #D81B60;
}

.stepBar .step.current01:before, .stepBar .step.current01:after {
	background-color: #00ACC1;
}

.stepBar .step.current02:before, .stepBar .step.current02:after {
	background-color: #3949AB;
}

.stepBar .step.current03:before, .stepBar .step.current03:after {
	background-color: #D81B60;
}

.stepBar.step2 .step {
	width: 50%;
}

.stepBar.step3 .step {
	width: 33.333%;
}

.stepBar.step4 .step {
	width: 25%;
}

.stepBar.step5 .step {
	width: 20%;
}

/* キャンペーン参加ボックス */
/*=======================================================================*/

.CampJoin {
	padding: 20px;
	box-sizing: border-box;
}


h3.Join {
	position: relative;
	padding: 10px 20px;
	font-size:1.4em;
	text-align:center;
	border-top: solid 1px #325A8C;
	border-bottom: solid 1px #325A8C;
	font-size: 1.2em;
	font-weight: bold;
}

h3.Join i {
	font-weight: normal;
}

h3.Join::before,
h3.Join::after{
	content: '';
	position: absolute;
	top: -10px;
	width: 1px;
	height: calc(100% + 20px);
	background-color: #325A8C;
}

h3.Join::before{left: 10px;}
h3.Join::after{right: 10px;}

.KeizokuChk {
	display: block;
	text-align: center;
	font-weight: bold;
	display: block;
}

.KeizokuChk label{
	cursor: pointer;
	transition: 0.5s ;
}
.KeizokuChk label:hover {
	opacity: 0.8 ;
}

#freeChk {
	width: 80%;
    margin: 10px auto 30px auto;
	position: relative;
	border: 2px solid #f44336;
	background: #FFFDE7;
	box-sizing: border-box;
}

#freeChk label {
	margin-bottom: 20px ;
	margin-top: 18px;
}

#freeChk label .checkbox-parts {
	font-size: 1.2em;
}

#freeChk:before{
	content:" ";
	position:absolute;
	bottom:-22px;
	left:-2px;
	width:0;
	height:0;
	border-width:0 20px 20px 0;
	border-style:solid;
	border-color:transparent;
	border-right-color:#b71c1c;
	z-index: -10;
}
#freeChk:after{
	content:" ";
	position:absolute;
	bottom:-22px;
	right:-2px;
	width:0;
	height:0;
	border-width:20px 20px 0 0;
	border-style:solid;
	border-color:transparent;
	border-top-color:#b71c1c;
	z-index: -10;
}


/* フォーム完了 */
/*=======================================================================*/


#FinishBody {
	min-height: 400px;
	margin: 40px auto 0 auto;
}


.FinishArea {
	position: relative;
	padding: 10px 20px;
	font-size:1.4em;
	text-align:center;
	border-top: solid 1px #e53935;
	border-bottom: solid 1px #e53935;
	font-size: 1.2em;
	font-weight: bold;
}

.FinishArea::before,
.FinishArea::after{
	content: '';
	position: absolute;
	top: -10px;
	width: 1px;
	height: calc(100% + 20px);
	background-color: #e53935;
}

.FinishArea::before{left: 10px;}
.FinishArea::after{right: 10px;}

.FinishArea h3 {
	font-size: 1.4em;
	line-height: 2.0em;
	color: #d32f2f;
}

.FinishArea p {
	text-align: left;
	font-weight: normal;
	font-size: 0.9em;
	line-height: 1.6em;
	margin: 0 0 10px 0;
}

.fns_contact {
	width: 600px;
	text-align: center;
	padding: 10px;
	border: 2px dotted #ef9a9a;
	margin: 10px auto;
	border-radius: 5px;
	font-size: 0.9em;
}

.fns_contact p {
	font-weight: bold;
	text-align: center;
	margin: 0 0;
}

.fns_contact h4 {
	font-size: 1.4em;
	font-family: 'Noto Sans Japanese';
	font-weight: 700;
	color: #e53935;
	margin: 0 0 5px 0;
}

.cTime {
	display: inline-block;
	margin: 0 3px;
}

#goTop {
	text-align: center;
}

#goTop a {
	color: #FFF;
	text-decoration: none;
}

.TaxCapSv {
	width: 100%;
	margin: 20px 0;
}


/* フォームエラー */
/*=======================================================================*/

.errTxtArea {
	position: relative;
	padding: 10px 20px;
	text-align: center;
	border: solid 2px #e53935;
	border-radius: 5px;
	background: #FCE4EC;
	font-size: 1.2em;
	line-height: 1.8em;
	font-weight: bold;
}

.markErr {
	display: inline-block;
	max-width: 100%;
	font-size: 1em;
	background: #f0d6dc !important;
	font-weight: bold;
	padding: 3px 13px 5px 12px;
	margin: 3px 0 6px;
	border-radius: 3px;
}

.markErr:before {
	content: "\f06a";
	font-family: FontAwesome;
	color: #d32f2f;
	margin: 0 7px 0 0;
	font-size: 1.4em;
	line-height: 1.3;
	position: relative;
	top: 1px;
}

/* フォームテーブル */
/*=======================================================================*/

section#formInputArea {
	padding: 0 10px;
}

/* キャンペーンおよび無料から本申込みチェック部 */
article#formHead {

}

/* 通常入力articleブロック */
form > article.baseInputTable {
	width: 96%;
	margin: 0 auto;
}
#wrapInfo article > dl,
#wrapInfo article > div {
	width: 98%;
	margin-right: auto;
	margin-left: auto;
}
#wrapInfo article > div#tosArea {
	width: 60%;
}

/* 通常以外articleブロック */
article.etcInputTable {

}


dl {
	width: 100%;
	display: table;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*
dl:hover,
dl:focus {
	background: #E1F5FE;
	border-radius: 3px;
}
*/

dl:before, dl:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}

dl:after {
	clear: both;
}

dl dt,
dl dd {
	display: table-cell;
	vertical-align: middle;
	border-top: 1px solid #CCC;
}
article.baseInputTable dl:last-child dt,
article.baseInputTable dl:last-child dd,
article.baseInputTable dl#dlCycle dt,
article.baseInputTable dl#dlCycle dd,
article.baseInputTable dl#dlYmd dt,
article.baseInputTable dl#dlYmd dd {
	border-bottom: 1px solid #CCC;
}
article.baseInputTable #appMethod dl:last-child dt,
article.baseInputTable #appMethod dl:last-child dd {
	border-bottom: none;
}


dl dt {
	width: 250px;
	box-sizing: border-box;
	padding: 10px;
	vertical-align: top;
	font-weight: bold;
	line-height: 1.6em;
	background: #E3F2FD;
	/* border-radius: 5px; */
}

/* 消費税注釈 */
.TaxCapTxt {
	display: block;
	margin: 5px 0 0 0;
	font-size: 0.9em;
	color: #481c87;
}
/* ウォーターサーバー 注釈 */
.SrvCapTxt {
	margin: 10px 0 0 0;
	font-size: 0.9em;
	line-height: 1.5;
}


dl dd.markArea {
	width: 80px;
	box-sizing: border-box;
	vertical-align: top;
	padding: 10px 5px;
	background: #E3F2FD;
}

dl dd.txtArea {
	width: 730px;
	box-sizing: border-box;
	vertical-align: middle;
	padding: 15px 0 5px 10px;
}
dl dd.txtArea label {
	cursor: pointer;
	transition: 0.5s ;
}
dl dd.txtArea label:hover * {
	opacity: 0.8 ;
}
dl dd.txtArea label:hover .BoxTc {
    opacity: 1;
}
.confirm dl dd.txtArea label:hover * {
	opacity: 1 ;
}

body.confirm dd.txtArea {
	padding: 10px;
}

span.notes {
	display: block;
	font-size: 0.8em;
	line-height: 1.4em;
	font-weight: bold;
	margin: 0 0 3px 0;
	color: #01579B;
}

.SrvIDate {
	padding: 0 0 10px 0;
}

/* 商品選択エリア */
/*=======================================================================*/

#ItemSizeArea {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

#ItemSizeArea:before, #ItemSizeArea:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}

#ItemSizeArea:after {
	clear: both;
}

label.ItemSize {
	width: 100%;
}

label.ItemSize:before, label.ItemSize:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}

label.ItemSize:after {
	clear: both;
}

.ISBox {
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
}

.ISpictBox {
	width: 120px;
	float: left;
	text-align: center;
	display: block;
	margin: 0 10px 0 0;
	position: relative;
	z-index: 10;
}

.ISpictBox img {
	max-width: 100%;
	height: auto;
	max-height: 120px;
	margin: 10px auto;
}

.ISSelBox {
	width: 100%;
	display: block;
	/* padding: 20px 0 0 130px; */
	padding: 20px 0 0 0;
	margin-right: -130px;
}

.SizeName {
	width: 100%;
	font-size: 1em;
	margin: 0 20px 0 0;
	font-weight: normal;
	line-height: 1.7;
}
.SizeName .ProductNm2 {
	padding-left: 2.5em;
	font-weight: bold;
	font-size: 1.1em;
}

.SizePrice {
	font-size: 1em;
	line-height: 1.6em;
	font-weight: bold;
	color: #d32f2f;
}

.ISExplain {
	font-size: 0.9em;
	line-height: 1.4em;
	margin: 10px 0 0 0;
	padding: 0;
	font-weight: normal;
}

.product_opt {
	padding: 10px 0;
}

.product_opt .checkbox-parts {
	width: 520px;
	display: block;
	float: left;
}

.product_opt_su {
	display: block;
	margin: 10px 0;
	padding: 10px 0;
}

.product_opt_sel {
	min-width: 3.5em !important;
}

.suryoTxt {
	display: block;
	float: left;
	padding: 12px 0;
	margin: 0 10px 0 0;
}

body.confirm .product_opt_su {
	margin: 0;
}

body.confirm .checkbox-parts {
	font-weight: bold;
}

.con_opt_su {
	font-size: 1.2em;
	font-weight: bold;
}

/* フォームテキストエリア */
/*=======================================================================*/

.SubTxt {
	display: block;
	font-size: 0.8em;
	line-height: 1.5em;
	padding: 10px 0 0;
}

.SubTxt a {
	color: #FFF;
	display: inline-block;
	padding: 2px 1em 3px;
	background-color: #00ACC1;
	font-weight: normal;
	text-decoration: none;
}
.SubTxt a:hover {
	color: #FFF;
	background-color: #00c7dd;
}

/* 確認用 */

.confirmTxt {
	font-weight: bold;
}

.confirmTxtB01 {
	font-weight: bold;
	margin: 0 0 10px 0;
}

.confirmTxtName {
	font-weight: bold;
	display: inline-block;
}

.confirmTxtTel {
	font-weight: bold;
	display: inline-block;
	margin: 5px 0;
}

.confirmTxtMulti {
	font-weight: bold;
	line-height: 1.6em;
}

/* フォーム以外のパーツについて */
/*=======================================================================*/

/* 必須・任意マーク */

.markAny {
	display: inline-block;
	border-radius: 5px;
	background: #4DB6AC;
	color: #FFF;
	padding: 4px 13px 6px;
	font-size: 0.9em;
	margin: 0 0 0 10px;
}

.markReq {
	display: inline-block;
	border-radius: 5px;
	background: #d32f2f;
	color: #FFF;
	padding: 4px 13px 6px;
	font-size: 0.9em;
	margin: 0 0 0 10px;
}

/* 商品・プラン */

.ItemSel_Per100 {
	display: block;
	position: relative;
	width: 100%;
	margin: 0 0 20px 0;
}

.ItemSel_Per50 {
	display: block;
	position: relative;
	width: 48%;
	margin: 0 0 20px 0;
}

/* カレンダー */

.cal {
	margin-right: 10px !important;
}

#ui-datepicker-div {
	z-index: 1000;
}

/* ご利用人数 */

.useNinzu {
	display: inline-block;
}

.useNinzu input {
	margin-left: 3px !important;
	margin-right: 3px !important;
}

/* 認知手段 */

.NinchiArea {
	display: inline-block;
}

/* 紹介者 */

.SyokaiName {
	display: inline-block;
}

/* メディア選択 */

#media_detail {
	width: 100%;
	display: block;
}

/* アンケート人数 */

.Enq_Fami_su {
	width: 2em;
}

/* 住所検索ボタン */
/*=======================================================================*/

#zip-btn1,
#zip-btn2 {
    font-family: 'Noto Sans Japanese';
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 10px 10px;
	background: #f3f3ed;
	border: 2px solid #babab1;
	cursor: pointer;
	-webkit-transition: all .5s;
	transition: all .5s;
	font-size: 1em;
    outline: none;
}

#zip-btn1:hover,
#zip-btn2:hover {
	    background: #babab1;
}

/* ヘルプツールチップ */
/*=======================================================================*/

.BtnTc {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin: 5px 0 0 10px;
	cursor: pointer;
}

.BtnTc i {
	font-size: 22px;
	color: #00838F;
}

.BoxTc {
	background: rgba(255, 255, 255, 0.9);
	width: 240px;
	height: auto;
	padding: 10px;
	position: absolute;
	bottom: 38px;
	left: -35px;
	text-align: left;
	z-index: 2;
	display: none;
	border: 2px solid #29B6F6;
	border-radius: 5px;
	font-size: 0.8em;
	line-height: 1.4em;
}

.BoxTc:after {
	content: ' ';
	position: absolute;
	bottom: -10px;
	left: 115px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #29B6F6 transparent transparent transparent;
}

/* 利用規約 */
/*=======================================================================*/

#tosArea {
	width: 80%;
	margin: 10px auto;
	border: 3px solid #E9E9E9;
	background-color: #F6F6F6;
	text-align: center;
	font-size: 1em;
	padding: 10px;
}

#tosArea p {
/*	line-height: 2.8em;	*/
	line-height: 1.5em;
}

#Tos label {
	margin: 10px 0 0 0;
	cursor: pointer;
	transition: 0.5s ;
	font-size: 1.1em;
}
#Tos label:hover {
	opacity: 0.8 ;
}

/* ご利用上の注意 */
/*=======================================================================*/

#wserver,
#ppp,
#haisou,
#haisou_muryou {
	margin: 0 0 30px 0;
}

#useNotes > div {
	border: 3px solid rgba(129,194,250, 0.5);
	margin-bottom: 20px;
}
#useNotes > div#haisou_ryoukin {
	border: none;
}
#useNotes ul {
	width: 90%;
	padding: 5px;
	margin: 0 auto;
	width:100%;
	list-style: none;
	box-sizing: border-box;
}

#useNotes > div p,
#useNotes ul li {
	position: relative;
	padding: 0.5em 1em 0.5em 2em;
	margin-top: 5px;
	margin-bottom:5px;
	color: #0277BD;
	line-height: 1.8em;
	box-sizing: border-box;
}

#useNotes #mousiNote * {
    line-height: 1.4;
}

#useNotes ul li:after,
#useNotes ul li:before{
	content: "";
	position: absolute;
	border-radius: 50%;
	font-size: 1.4em;
}

#useNotes ul li:before{
	left: 0.2em;
	content: "\f043";
	color: #0277BD;
	font-family: FontAwesome;
}

#useNotes ul li:after{

}

/* 料金表 */

#useNotes table {
	width: 100%;
	margin: 0 0 20px 0;
	font-size: 0.9em;
}

#useNotes table th,
#useNotes table td {
	padding: 10px;
	border: 2px solid #FFF;
}

#useNotes table th {
	background: #E3F2FD;
	font-weight: bold;
	width: 230px;
}

#useNotes table td {
	text-align: center;
	background: #E0F7FA;
}

.pcLayOut {
	display: table;
}

.mobLayOut {
	display: none;
}

/* メール受信許可 */
/*=======================================================================*/

#otokuArea {
	width: 100%;
	margin: 10px auto;
	border: 3px solid #E9E9E9;
	background-color: #F6F6F6;
	text-align: center;
	font-size: 1em;
	padding: 10px;
}

#otokuArea p {
	line-height: 1.8em;
}

#otokuArea label {
	margin: 10px 0 0 0;
	cursor: pointer;
	transition: 0.5s ;
}
#otokuArea label:hover {
	opacity: 0.8 ;
}

/* フォーム送信 */
/*=======================================================================*/

#SubmitBtnArea {
	text-align: center;
}

.ComBtn_A {
	width: 400px;
	display: inline-block;
	margin: 0 10px;
	height: 60px;
	text-align: center;
	text-decoration: none;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: rgba(255,23,68,1);
	border: 2px solid rgba(255,23,68,1);
	color: #FFF;
	line-height: 55px;
	overflow: hidden;
	border-radius: 60px;
	cursor: pointer;
	font-size: 1.4em;
	padding: 0;
	font-weight: bold;
}

.ComBtn_A::before,
.ComBtn_A::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.ComBtn_A,
.ComBtn_A::before,
.ComBtn_A::after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.ComBtn_A:hover {
	color: rgba(255,23,68,1) !important;

}

.ComBtn_A::after {
	top: -100%;
	width: 100%;
	height: 100%;
}

.ComBtn_A:hover::after {
	top: 0;
	background-color: rgba(255,255,255,1);
}

.ComBtn_B {
	width: 200px;
	display: inline-block;
	margin: 0 10px;
	height: 60px;
	text-align: center;
	text-decoration: none;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: rgba(255,255,255,1);
	border: 2px solid rgba(96,125,139,1);
	color: rgba(96,125,139,1);
	line-height: 55px;
	overflow: hidden;
	border-radius: 60px;
	cursor: pointer;
	font-size: 1.4em;
	padding: 0;
}


/* 汎用メッセージ表示画面 */
/*=======================================================================*/
.apply_form_msg #msg_main .msg-body {
	margin: 3em 0 5em;
}

/* フッター */
/*=======================================================================*/

footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 50px 0 0 0;
	background: #E1F5FE;
	box-sizing: border-box;
	text-align: center;

}

footer p {
	font-size: 0.8em !important;
	color: #0277BD;
	padding: 20px;
}

/* ページの先頭へ戻る */
/*=======================================================================*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	line-height: 16px;
}

#page-top a {
	display: block;
	text-indent: -9999px;
	width: 80px;
	height: 80px;
	background: url(../img/top.png) no-repeat 0 0;
}

/* ママ応援プランリンク */

a.mamaLink {
	display: block;
	margin: 0 0 10px 0;
	padding: 10px 5px;
	border-radius: 5px;
/*	
	background:rgba(235,77,75,0.2);
	border: 2px solid rgba(235,77,75,1);
*/
	color: rgba(235,77,75,1);
/*	text-align: center;	*/
	font-weight: bold;
	-webkit-transition: all .3s;
	transition: all .3s;
}

a.mamaLink:hover {

}

/* 画面別（申込みフォーム） body.apply_form.apply */
/*=======================================================================*/
/* 「追加注文（mousi_type:3）」は支払い方法を非表示 */
.apply_form.apply.mousi_type_3 #payMethod {
    display: none !important;
}

/* 画面別（申込み確認）  body.apply_form.confirm */
/*=======================================================================*/
/* 「追加注文（mousi_type:3）」は支払い方法を非表示 */
.apply_form.confirm.mousi_type_3 #payMethod {
    display: none !important;
}

