@charset "utf-8";
/* CSS Document */

/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');*/
/* Noto Serif Japanese
font-family: 'Noto Serif JP', serif;
*/
/* 明朝指定
font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
*/

/*Adobefonts*/


/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
7.フッター

ex.フェードで画像切り替え

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #fff;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, sans-serif;
	font-weight: 400;
	color: #232323;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:black;
}
.js-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC900px、SP100%*/
.js-container{
	width:100%;
	max-width:600px;
	margin:auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01{
  width: 50%;
  padding: 14px 0 14px 0;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background: #5c89aa;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;

  border: 1px solid #5c89aa;
}
.btn01 a{
	color: #fff;
	display: block;
}
.btn01 a:hover {
  color: #5c89aa;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
}
.btn01:hover {
  color: #5c89aa;
  background-color: #fff;
  border-color: #5c89aa;
}

/*小さいver*/
.btn-small{
	width: 200px;
	font-size:0.8em;
	/*padding: 0.5em 3em;*/
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		width: 90%;
		 padding: 1.2em;
	}
	.btn-small{
		 /*padding: 0.1em 2em;*/
	}
}


/*共通padding設定*/
.main-padding{
	padding: 100px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*見出し*/
.content-head01{
	margin-bottom:2em;
}
.content-head01_01{
	font-size:2em;
	font-family: serif;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:0.4em;
}
.content-head01_02{
	font-size:1em;
}


/*ボタン色変更*/
.btn-color01{
	background: #fff;
	border: 1px solid #222;
	color: #222;
}
.btn-color01:hover{
	background-color: #222;
  	border-color: #222;
  	color: #fff;
}

/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #363636;
}
.bg-color03{ /**/
	background: #5c89aa;
}

/*テキスト色*/
.font-color01{ /*差し色*/
	color:#a33830;
}

.font01 {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.color01 {
	color: #c30d0d;
}
.color02 {
	color: #d4690a;
}
.main-margin {
	margin: 4em auto;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #fff;
	line-height: 0;
}

h1{
	margin:0;
	line-height: 0;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクションとメニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	font-size:0.8em;
	line-height: 1.8;
}


/*メニュー*/
.main-menu{
	margin: 0 auto 80px;
	width:100%;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item{
	width:45%;
	padding:10px;
}
@media screen and (max-width: 768px){
	.main-menu_item{
		width:90%;
	}
}

/*ボタン*/
.button03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 2em;
  width: 100%;
  color: #000;
  /*font-size: 18px;*/
  /*font-weight: 700;*/
  border: 1px solid #222;
 /*border-bottom: 1px solid #000;*/
}

.button03 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}

.button03 a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  border-color:#000;
  opacity: 1;
}

.button03 a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
staff introdaction
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.staff-intro {
	background-color: #faf7f5;
	padding: 1em 2em 0.5em;
}
.staff_title {
	letter-spacing: 0.1em;
	line-height: 3;
	border-bottom: 1px solid #000;
}
.staff-intro_container {
	display: flex;
}
.staff-intro_box {
	width: 50%;
	display: flex;
	align-items: center;
	padding: 1.5em 0;
}
.staff-intro_img {
	width: 35%
}
.staff-intro_img img {
	width: 100%;
}
.staff-intro_text {
	width: 65%;
	text-align: left;
	padding-left: 1em;
	font-size: 0.73em;
	line-height: 1.3;
}
.staff-intro_text .name {
	line-height: 2;
}

.staff-intro_text .height {
	font-size: 1.4em;
	font-weight: bold;
}
.staff-intro_text u {
	line-height: 2.3;
	font-size: 1.1em;
}


.img-area img {
	width: 100%;
}

@media screen and (max-width: 768px){
	.staff-intro {
		padding: 1em 1em 0.5em;
	}
	.staff-intro_img {
		width: 32%
	}
	.staff-intro_text {
		width: 67%;
		padding-left: 0.8em;
		font-size: 0.65em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item_box{
	/*margin:40px auto;
	width:100%;
	max-width:980px;*/
	background-color: #faf7f5;
	padding: 3em 0;
	margin: 3em auto;
}
.main-item_title img {
	width: 100px;
}
.main-item_title-text {
	font-size: 1.8em;
	font-weight: 600;
	line-height: 1;
	background: linear-gradient(transparent 50%, #e9f0f8 80%);
	display: inline-block;
}
.main-item_title-text span {
	font-size: 1.5em;
	font-weight: 600;
	color: #5989af;
}

.main-item_detail {
	width: 70%;
	margin: 1.8em auto 1em;
	padding: 3% 6%;
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 20px;
}
.main-item_detail-img {
	width: 25%;
}
.main-item_detail-img img {
	width: 100%;
}
.main-item_detail-text {
	width: 75%;
	text-align: left;
	padding-left: 9%;
	font-size: 0.7em;
}
.main-item_detail-text01 {
	font-size: 1.8em;
	color: #5989af;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: 1px solid #5989af;
	display: inline-block;	
}
.main-item_detail-text02 {
	font-size: 1.5em;
	padding-bottom: 5px;
	line-height: 1.3;
}
.main-item_detail-text04 {
	padding: 2px 0 5px;
}

.main-item_detail-text04 span {
	font-size: 0.7em;
}

@media screen and (max-width: 768px){
	/*.main-item_box{
		width:95%;
	}*/
	.main-item_detail {
		width: 90%;
		margin: 1.8em auto 1em;
		padding: 4% 4%;
		border-radius: 10px;
	}
	.main-item_detail-text {
		width: 75%;
		padding-left: 5%;
		font-size: 0.65em;
	}

}

/*大枠見出し*/
.contents_title{
	margin-top:40px;
	display: inline-block;
	font-size:1.5em;
	padding-bottom:0.5em;
	border-bottom: 2px solid #54bcd5;
}
.contents_title .number{
	font-family: serif;
	font-size:0.8em;
}

/*〜〜〜上の部分〜〜〜*/
.main-item_box_upper{
	padding: 1em 5%;
	/*background-color:#E9ECF3;*/
	/*border-radius:15px 15px 0 0;*/

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;

}
@media screen and (max-width: 768px){
	.main-item_box_upper{
		padding: 1em 5%;
	}
}

/*上の部分の写真の方*/
.container01{
	width:35%;
	line-height:0;
}
.container01 img{
	width:100%;
}
.container02{
	width:65%;
	padding:4% 0 4% 4%;
}
@media screen and (max-width: 768px){
	.container02{
		font-size: 0.9em;
		padding:4% 0 4% 3%;
	}
}

/*@media screen and (max-width: 768px){
	.container01{
		width:100%;
	}
	.container01 img{

	}
}


@media screen and (max-width: 768px){
	.container02{
		width:100%;
		padding:3%;

	}
}

*/

/*アイテムタイトル*/
.item_header{
	width:100%;
	margin:auto;
	margin-bottom:1em;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.item_header01{
	width:20%;
	font-family: serif;
	font-weight: bold;
	font-size:2.5em;
}
.item_header img{
	width:100%;
}
.item_header02{
	width:80%;

	/*要素上下中央揃え*/
	display: flex;
	justify-content: center;
	align-items: center;
}
.item_header02 .inner{
	width:100%;
	padding-left:2%;

	text-align: left;
	/*font-style:italic;*/
	font-size:1.3em;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 768px){
	.item_header{
		/*1列に戻す*/
		display: block;
	}
	.item_header01{
		margin:auto;
	}
	.item_header02{
		width:100%;
		/*要素上下中央揃え*/
		align-items:flex-end;
	}
	.item_header02 .inner{
		padding-top:0.5em;
		font-size:1.25em;
		text-align: center;
	}
}
.main-item_inner{
	position: relative;
}


.height-img {
	position: absolute;
	top: 0;
	left: 0.5em;
	width: 65px;
	z-index: 100;
}
.height-img img {
	width: 100%;
}

/*コメント*/
.item_comment {
  display: inline-block;
  margin: 0;
  min-width: 120px;
  max-width: 100%;
  font-size: 0.8em;
  /*background: #fff;*/

	padding:1em 1.25em 1.25em;
	text-align: justify;
	line-height: 2;
	position: relative;
}
.comma-start {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	position: absolute;
	top: -5px;
	left: -3px;
	font-size: 2.5em;
}
.comma-end {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	position: absolute;
	line-height: 1;
	bottom: -5px;
	right: -3px;
	font-size: 2.5em;
}
@media screen and (max-width: 768px){
	.comma-start {
		top: -1px;
		left: 0px;
		font-size: 2.3em;
	}
	.comma-end {
		bottom: -1px;
		right: 0px;
		font-size: 2.3em;
	}
	.height-img {
		top: -5px;
		left: 0.5em;
		width: 50px;
		z-index: 100;
	}


}


.item_comment p {
  margin: 0;
  padding: 0;
}
.item_comment1 {
	font-size: 0.5em;
	font-weight: 700;
}
.item_comment1 .brand_name {
	border-bottom: 1px solid;
	display: inline-block;
	margin: 10px auto 20px;
}
.item_comment1 b {
	font-size: 1.1em;
}
.item_comment2 {
	display: inline-block;
	margin: 0;
	min-width: 120px;
	max-width: 100%;
	font-size: 1em;
	padding:0.8em 1em 0.8em;
	text-align: justify;
	line-height: 1.5;
}

.item_comment2 p {
  margin: 0;
  /*padding: 0px 0px 5px 0px;*/
}


@media screen and (max-width: 768px){
	.item_comment {
		font-size: 0.75em;
		padding: 1em 1.25em 0;
		line-height: 1.8;
		letter-spacing: 0.05em;
	}
	.item_comment2 {
		font-size: 0.9em;
		padding:0.4em 1em 0 0.8em;
	}

}

/*PC用順番指定*/
@media screen and (min-width: 769px){
	/*テキストが左側 sectionに追加*/
	.text-left .main-item_box_upper .container01{
		order: 1;
	}
	.text-left .main-item_box_upper .container02{
		order: 0;
		/*padding-right:30px;
		padding-left:0;*/
	}
	/*テキストが右側 sectionに追加*/
	.text-right .main-item_box_upper .container01{
		order: 0;
	}
	.text-right .main-item_box_upper .container02{
		order: 1;
		/*padding-right:0;
		padding-left:30px;*/
	}

}


/*more onepiece*/
.more-item {
	padding-top: 3em;
}
.more-item_text01 {
	font-size: 0.6em;
	font-weight: 600;
	letter-spacing: 0.25em;
}
.more-item_text02 {
	font-size: 1.2em;
	font-weight: 500;
	padding: 3px 0 15px;
}
.more-item_text02 span {
	color: #5c89aa;
}

.more-item_inner {
	display: flex;
	flex-wrap: wrap;
	width: 70%;
	margin: 0 auto;
}
.more-item_pick {
	width: 33%;
	padding: 3%;
}
.more-item_pick img {
	width: 100%;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
SNAPエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.snap {
	background-color: #f1e5de;
	padding: 2em 0;
	margin: 3em auto;
}
.snap img {
	width: 70%;
}
@media (max-width: 768px) {
	.snap {
		padding: 1em 0;
	}
	.snap img {
		width: 100%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.一覧（FS）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-fs-all{

}
.contents-fs-all .fs-all_title{
	margin:auto;
	color:#000;
	font-size:1.1em;
	font-weight: 700;
	/*font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;*/
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.link-area {
	width: 700px;
	margin: 0 auto 5em;
}
.link-area img {
	max-width: 100%;
	margin-bottom: 2em;
}
@media (max-width: 768px) {
	.link-area {
		width: 100%;
	}
	.link-area img {
		max-width: 90%;
	}

}

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #c8ae9d;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;

	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:1.2em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.カテゴリリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_allitem{
	margin-bottom:5em;
}

.contents-link_allitem_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;

	text-align: left;
	margin:0 auto 2em;
	width:90%;
}
.contents-link_allitem_img{
	width:30%;
	line-height: 0;
}
.contents-link_allitem_img img{
	width:100%;
	object-fit: cover;
}
.contents-link_allitem_txt{
	width:70%;
	text-align: center;
	color:#fff;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.5em;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.8em;
}








/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*下から*/
.fadein {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードで画像切り替え
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fade-img {
  position:relative;
  width: 100%;
  height: auto;
}
.ratio-1500_1800:before{
	content: "";
    display: block;
    padding-top: 174%; /* 500x870 画像の縦横比で変化 */
}
.fade-img img {
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
}
