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

/* PC版 w560以上に適応するcss ****************************************************************** */
/* PC版 w560以上に適応するcss ****************************************************************** */
/* PC版 w560以上に適応するcss ****************************************************************** */
/* PC版 w560以上に適応するcss ****************************************************************** */
/* PC版 w560以上に適応するcss ****************************************************************** */
/* PC版 w560以上に適応するcss ****************************************************************** */



/* ;;;;;;;; 共通項目 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; */


/* =========================
   Common (Vitamin Yellow Theme)
   ========================= */
:root{
  --vy: #FFD400;         /* ビタミンイエロー */
  --vy-dark:#E6B800;
  --text:#1a1a1a;
  --muted:#666;
  --bg:#fff;
  --line:#e7e7e7;
  --card:#ffffff;
  --soft:#fafafa;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
  --radius: 16px;
}

/* ===== Shop Button (external link) ===== */
.shop-cta{
  text-align: center;
  margin: 18px 0;
}

.shop-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* 見た目 */
  background: #18b65b;          /* グリーン */
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 999px;

  /* レスポンシブサイズ */
  width: min(92vw, 420px);
  padding: 14px 18px;
  font-size: clamp(15px, 2.2vw, 18px);

  /* 押したくなる質感 */
  box-shadow: 0 10px 18px rgba(24,182,91,.25);
  border: 1px solid rgba(0,0,0,.08);

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.shop-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(24,182,91,.32);
  filter: brightness(1.03);
}

.shop-btn:active{
  transform: translateY(0px) scale(.99);
  box-shadow: 0 8px 14px rgba(24,182,91,.22);
  filter: brightness(.98);
}

.shop-btn:focus-visible{
  outline: 3px solid rgba(24,182,91,.35);
  outline-offset: 3px;
}

/* 小さい画面の微調整 */
@media (max-width: 420px){
  .shop-btn{
    width: min(94vw, 420px);
    padding: 13px 16px;
  }
}



.page {
	width: 96%!important;
	padding-left: 2%!important;
	padding-right: 2%!important;
	display: block;
	margin: 0 auto;
	background-color: #fff;
	margin-top: 30px;
	margin-top: 0px:
}
.note,.small {
	display: none;
	
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; color:var(--text); background:var(--bg); }
body{ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; line-height: 1.8; }
img{ max-width:100%; height:auto; display:block; }

a{ color: inherit; text-decoration: none; }
a:hover{ opacity:.9; }

.w1000{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   Page Layout
   ========================= */
.page{
  padding: 28px 0 56px;
}
.page-hero{
  background: linear-gradient(180deg, rgba(255,212,0,.28), rgba(255,212,0,0));
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid rgba(255,212,0,.35);
}
.page-title{
  margin: 0 0 6px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: .02em;
}
.page-lead{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.badges{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top: 12px;
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
}
.badge b{ color: var(--text); }

.section{
  margin-top: 26px;
}
.section h2{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  position: relative;
  padding-left: 12px;
}
.section h2::before{
  content:"";
  position:absolute; left:0; top:.5em;
  width: 6px; height: 1.1em;
  background: var(--vy);
  border-radius: 6px;
}
.section p{ margin: 8px 0; color: var(--text); }
.section .note{ color: var(--muted); font-size: 13px; }

.hr{
  height:1px; background: var(--line);
  margin: 22px 0;
}

/* =========================
   Cards / Grid
   ========================= */
.grid{
  display:grid;
  gap: 14px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: none;
}
.card strong{ display:block; margin-bottom: 6px; }
.card .muted{ color: var(--muted); font-size: 13px; }
.card ul{ padding-left: 18px; margin: 8px 0 0; }
.card li{ margin: 4px 0; }

.kpi{
  display:flex; gap:10px; flex-wrap:wrap;
}
.kpi .pill{
  background: rgba(255,212,0,.18);
  border: 1px solid rgba(255,212,0,.35);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
}

/* =========================
   Image Placeholder
   ========================= */
.img-ph{
  border: 1px dashed #cfcfcf;
  border-radius: var(--radius);
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.img-ph::before{
  content:"画像（後で追加）";
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#888; font-size: 13px;
}
.ratio-16x9{ aspect-ratio: 16 / 9; }
.ratio-3x2{ aspect-ratio: 3 / 2; }
.ratio-1x1{ aspect-ratio: 1 / 1; }

/* =========================
   Check / Steps / Tables
   ========================= */
.checklist{
  list-style:none; padding:0; margin:0;
}
.checklist li{
  display:flex; gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:#fff;
  margin: 10px 0;
}
.checklist .dot{
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--vy);
  flex: 0 0 18px;
  margin-top: 3px;
}
.steps{
  counter-reset: step;
  list-style:none; padding:0; margin:0;
}
.steps li{
  counter-increment: step;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 12px 54px;
  background:#fff;
  position: relative;
  margin: 10px 0;
}
.steps li::before{
  content: counter(step);
  position:absolute; left:12px; top:12px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--vy);
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}

.table{
  width:100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.table th, .table td{
  border-bottom: 1px solid var(--line);
  padding: 10px 10px;
  text-align: left;
  font-size: 14px;
}
.table th{
  background: rgba(255,212,0,.18);
}
.table tr:last-child td{ border-bottom:none; }

/* =========================
   FAQ (details/summary)
   ========================= */
.faq details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background:#fff;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"＋";
  float:right;
  font-weight: 900;
}
.faq details[open] summary::after{ content:"－"; }
.faq .answer{
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

/* =========================
   CTA
   ========================= */
.cta{
  margin-top: 26px;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255,212,0,.35);
  background: rgba(255,212,0,.14);
}
.cta h3{ margin: 0 0 6px; font-size: 18px; }
.cta p{ margin: 0 0 12px; color: var(--muted); }

.btns{
  display:flex; flex-wrap:wrap; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  font-weight: 700;
  font-size: 14px;
  min-width: 160px;
}
.btn-primary{
  background: var(--vy);
  border-color: var(--vy-dark);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(0,0,0,.18);
}

/* =========================
   Form
   ========================= */
.form{
  display:grid;
  gap:10px;
}
.input, .textarea, .select{
  width:100%;
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  background:#fff;
}
.textarea{ min-height: 120px; resize: vertical; }
.form-row{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr 1fr;
}
.small{ font-size: 13px; color: var(--muted); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .grid-2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .btn{ min-width: 0; width: 100%; }
  .page-hero{ padding: 18px 14px; }
}




/* ;;;;;;;; 共通項目 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; */

body {
	padding: 0px;
	margin: 0px;
	background-color: #ece4d8;
}

.sponly {
	display:none;
}

.spnone {
	display:block;
}

.f_left {
	float: left;
}

.f_right {
	float: right;
}

.overimg:hover {
	opacity:0.5;
}

/* h や w */

.w30per {
	width: 30%;
	padding-right: 3%;
}
.w30 {
	width: 40%;
}

.w70 {
	width: 60%;
}

.w70-100 {
 width: 70%;		
	}
.w50per {
	width: 50%;
}

.w95per {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto 20px auto;
}
.w1000 {
	width: 1000px;
}

.w1100 {
	width: 1100px;
	display: block;
	margin: 0 auto;
}

/* section 1 */
.header_wraper {
	width: 100%;
}

.header_logobox {
	margin: 0 auto;
	overflow: hidden;
}

.top_logo {
	float: left;
	height: 100px;
}
.contact_btn {
	float: right;
	margin: 25px 5px 10px 5px;
	height: 55px;
	width: auto;
}

/* section 2 */

/* section 3 */

/* section 4 */

/* section 5 */

/* section 6 */


/* ここから商品タグ　*/

.item_wrap {
	width: 46%;
	background-color: #fff;
	border-top: 8px solid #e6b71c;
}

.item_title {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: bold;
	display: block;
	width: 90%;
	margin: 5px auto 20px auto;
	text-align: left;
	color: black;
	font-size: 20px;
}

.tag_space {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}


.tag_space2 {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}
.tag {
	float: left;
	background-color: #c45353;
	border-radius: 25px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	font-size: 14px;
	padding: 5px 20px 3px 20px;
	margin: 5px 5px 5px 0px;
	font-weight: normal;
	color: #fff;
}

.tag2 {
	float: left;
	background-color: #fff;
	border-top: 2px solid #c45353;
	border-bottom: 2px solid #c45353;
	border-left: 2px solid #c45353;
	border-right: 2px solid #c45353;
	border-radius: 15px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	font-size: 20px;
	padding: 5px 20px 3px 20px;
	margin: 5px 5px 5px 0px;
	font-weight: bold;
	color: #c45353;
	
}

.tag_b {
	float: left;
	background-color: #3c6297;
	border-radius: 25px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	font-size: 14px;
	padding: 5px 20px 3px 20px;
	margin: 5px 5px 5px 0px;
	font-weight: normal;
	color: #fff;
}

.tag2_b {
	float: left;
	background-color: #fff;
	border-top: 2px solid #3c6297;
	border-bottom: 2px solid #3c6297;
	border-left: 2px solid #3c6297;
	border-right: 2px solid #3c6297;
	border-radius: 15px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	font-size: 20px;
	padding: 5px 20px 3px 20px;
	margin: 5px 5px 5px 0px;
	font-weight: bold;
	color: #3c6297;
	
}

.tag3 {
	background-color: #fff;
	border-top: 2px solid #3c6297;
	border-bottom: 2px solid #3c6297;
	border-left: 2px solid #3c6297;
	border-right: 2px solid #3c6297;
	border-radius: 15px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	font-size: 20px;
	padding: 5px 20px 3px 20px;
	margin: 5px 5px 5px 0px;
	font-weight: bold;
	color: #3c6297;
	width: 70%;
	display: block;
	margin: 5px auto;
	
}


.exam {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 14px;
	color: #423B3B;
	display: block;
	width: 87%;
	text-align: left;
	float: right;
	font-weight: normal;
}


.exam_plice {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 40px;
	color: #423B3B;
	display: block;
	padding-top: 0px;
	padding-left: 1%;
	width: 86%;
	text-align: left;
	float: right;
	margin-bottom: 10px;
}

.f_left_plice {
	float: left;
}

.f_right_plice {
	float: right;
}



.link {
	text-decoration: none;
	letter-spacing: 0.1em;
	line-height: 2;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
}
.link:hover {
	padding-left: 10px;
}

/* youtube */
iframe.youtube-16-9 {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
}

/* RECRUIT */

.btn_recruit {
	height: auto;
	width: 70%;
	display: block;
	margin: 50px auto auto auto;
}



/* お問い合わせボタン　*/

.contact_btn_wrap {
	width: 40%;
	margin: 20px auto;
	display: block;
}





/* ここから 共通バーガーメニュー */
/* ここから 共通バーガーメニュー */
/* ここから 共通バーガーメニュー */
/* ここから 共通バーガーメニュー */

.wrap {
  padding: 60px 0 0 0;
}

.content {
  text-align: center;
  font-size: 22px;
  color: #bf86ce;
  height: 2000px;
  padding: 60px;
  background-color: #f8e0f7;
}

/*ハンバーガー ヘッダーロゴ フラッシュ周辺*/


.el_humburger img {
	height: 75px;
	width: auto;
}
.el_humburger {
  position: absolute;
  right: 0px;
  width: 75px;
  height: auto;
  padding-top: 1px;
  box-sizing: border-box;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}

.el_humburger > span {

  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #000;
  transition: all 0.2s ease-in-out;

}

.el_humburger > span:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger > span {
  background: #000;
}

.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);

}


/* ヘッダーメニュー　*/
.header_menu_wrapper {
	width: 100%;
	margin: 0px auto;
	padding: 0px auto;
}

.top_btn {
	height: 60px;
	width: auto;
}

/*ナビゲーション*/
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation {
  padding: 80px 0 0 0;
  text-align: center;
}


.navigation_item {
	display: block;
	text-align: left;
	padding-left: 60px;
	border-bottom: 1px dotted #333;
	margin-bottom: 10px;
	padding-bottom: 20px;
	padding-top: 15px;
	display: block;
	background-image: url("../img/check.svg");
	background-repeat: no-repeat;
	background-position: left center;
}


.navigation_item_bottom {
	display: block;
	text-align: left;
	padding-left: 60px;
	margin-bottom: 10px;
	padding-bottom: 20px;
	padding-top: 15px;
	display: block;
	background-image: url("../img/check.svg");
	background-repeat: no-repeat;
	background-position: left center;
}

.navigation_item:hover{
	opacity: 0.5;
}
.navigation_item_bottom:hover{
	opacity: 0.5;
}

.navigation_item > a {
  color: #000;
  text-decoration: none;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 0.1em;
	color: #333;
}
.navigation_item_bottom > a {
  color: #000;
  text-decoration: none;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 0.1em;
	color: #333;
}


.js_fixed {
	position: fixed;
	width: 100%;
	height: 100%
}
		
/*  ここまでバーガーメニュー 　*/
/*  ここまでバーガーメニュー 　*/
/*  ここまでバーガーメニュー 　*/
/*  ここまでバーガーメニュー 　*/
/*  ここまでバーガーメニュー 　*/
		
/* flexbox フレックスボックス */
/* flexbox フレックスボックス */
/* flexbox フレックスボックス */
/* flexbox フレックスボックス */
/* flexbox フレックスボックス */

.flexbox_three {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content:space-between;
  	flex-wrap: wrap;
	width: 1000px;
	margin: 0 auto;
	}


.flexbox_three_inside {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content:space-between;
  	flex-wrap: wrap;
	margin: 0 auto;
	}


.child1 {
	width: 31%;
	}

.child2 {
	width: 33%;
	}




/* スマホ版 w560以下に適応するcss *************************************************************** */
/* スマホ版 w560以下に適応するcss *************************************************************** */
/* スマホ版 w560以下に適応するcss *************************************************************** */
/* スマホ版 w560以下に適応するcss *************************************************************** */
/* スマホ版 w560以下に適応するcss *************************************************************** */
/* スマホ版 w560以下に適応するcss *************************************************************** */

@media screen and (max-width: 560px) {
	
	
/* ;;;;;;;; 共通項目 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; */
/* ;;;;;;;; 共通項目 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; */


.sponly {
	display:block;
}

.spnone {
	display:none;
}


	
/* h や w */
	
.w30per {
	width: 90%;
	padding-right: 0%;
	float: none;
	margin: 0px auto;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px dotted #fff;
	margin-bottom: 40px;
}
.w30 {
	width: 100%;
}

.w70 {
	width: 100%;
}

.w50per {
	width: 100%;
}

.w70-100 {
 width: 100%;		
	}
.w95per {
	width: 45%;
	float: left;
	}	
	
.w1000 {
	width: 90%;
	margin: 0 auto;
}

.w1100 {
	width: 100%;
}
	


/* ここから商品タグ　*/

.item_wrap {
	width: 100%;
	overflow: hidden;
}


.f_left_plice, .f_right_plice {
	float: none;
	margin: 0 auto 20px auto;
	width: 100%;
}
	

.item_title {
	width: 45%;
	float: right;
	font-size: 18px;
	padding-top: 15px;
	padding-right: 5%;
}

.tag_space {
	width: 90%;
	float: none;
	margin: 0 auto;
	overflow: hidden;
}

.tag_space2 {
	margin: 0 auto;
	clear: both;
}

.tag {
	border-radius: 15px;
	font-size: 10px;
}

.tag2 {
	font-size: 15px;
	
}

.exam {
	width: 50%;
	float: right;
	font-size: 14px;
	width: 90%;
	float: none;
}


.exam_plice {
	width: 50%;
	float: right;
	font-size: 30px;
	width: 90%;
	float: none;
}
	
	
.btn_recruit {
	width: 50%;
	margin: 10px auto auto auto;
}
	
	
/* お問い合わせボタン　*/

.contact_btn_wrap {
	width: 80%;
}

	

/* section 1 */

.top_logo {
	height: 70px;
	margin: 0px auto 8px 10px;
}
/* section 2 */

/* section 3 */

/* section 4 */

/* section 5 */

/* section 6 */


/* バーガーメニューと　ロゴ周辺 */
/* バーガーメニューと　ロゴ周辺 */
/* バーガーメニューと　ロゴ周辺 */
.header {
		height: 65px;
	}
	
.header_logo {
height: 60px;
background-color: none;
}
	
.el_humburger img {
	height: 60px;
}
.el_humburger {
  position: absolute;
  height: 60px;
  width: 60px;

}

.el_humburger > span {

  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #000;
  transition: all 0.2s ease-in-out;

}
	
/* バーガーメニューと　ロゴ周辺 ここまで */
/* バーガーメニューと　ロゴ周辺 ここまで */
/* バーガーメニューと　ロゴ周辺 ここまで */

	
	
/*  flexbox フレックスボックス */
/*  flexbox フレックスボックス */
/*  flexbox フレックスボックス */
/*  flexbox フレックスボックス */
/*  flexbox フレックスボックス */


.flexbox_three {
	display: block;
	width: 80%;
	}

.child1 {
	width: 100%;
	overflow: hidden;
	display: block;
	margin-bottom: 10px;
	}
	
	
}