@charset "utf-8";
/* 「すぐ使えるCMS」記事ページテンプレート CSS */
/* Sugutsukaeru CMS Article pages CSS (Please see the admin CSS file for English explanation) */
/*
■スタイルの分類

「すぐ使えるCMS」の記事ページで使っているスタイル定義は、以下の2つに分類できます。

A. Pure
pure-* というクラス名のスタイル定義は、フレームワーク pure を使用しているものです。レスポンシブWebの仕組みの実装に利用しています。
Pure のレスポンシブWebデザインの設定の仕組みについては、管理画面側のCSSファイル内にコメントで説明があります。

B. 「すぐ使えるCMS」で定義したスタイル
sugu-* というクラス名のスタイル定義は、「すぐ使えるCMS」で定義し表示調整に使用しています。

これらのスタイルは不要であれば削除、変更して使って下さい。

*/

:root {
  --header-height: 106px;
  --frame-thickness: clamp(10px, 1.3vw, 30px);

  /* space */
  --space-xs: clamp(10px, 1.25vw, 20px);
  --space-s: clamp(20px, 2.5vw, 40px);
  --space-base: clamp(40px, 5vw, 80px);
  --space-large: clamp(80px, 10vw, 160px);
  --space-x-large: clamp(150px, 18.75vw, 300px);

  /* border radius */
  --fv-img-border-radius: clamp(10px, 5vw, 80px);

  /* color */
  --color-primary: #F6E700;
  --color-secondary: #009191;
  --color-secondary-shadow: #006666;
  --color-text: #141F1F;
  --color-white: #fff;

  /* font family */
  --font-main: 'Montserrat', 'BIZ UDGothic', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* font size */
  --font-size-small: clamp(12px, 1.25vw, 14px);
  --font-size-small-medium: clamp(14px, 1.46vw, 16px);
  --font-size-base: clamp(16px, 1.67vw, 18px);
  --font-size-medium: clamp(18px, 1.88vw, 20px);
  --font-size-large: clamp(24px, 2.5vw, 28px);
  --font-size-x-large: clamp(32px, 3.13vw, 36px);
  --font-size-xx-large: clamp(40px, 4.17vw, 48px);
  --font-size-xxx-large: clamp(48px, 5.21vw, 56px);
  --font-size-xxxx-large: clamp(50px, 6.9vw, 100px);
  --font-size-xxxxx-large: clamp(72px, 10vw, 144px);

  /* dynamic heights */
  --concept-height: 0px;
}

/* 

■フレームワーク pure をベースにした、表示調整のためのスタイル  Pure-based layout adjustment */
.pure-g > div {
  /* マージンまで含んだ幅がボックスのサイズ */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* 
■背景色と基本の枠組み  Background and container */
body {
  background-color: white;
  font-family: var(--font-main) !important;
}
a{
  cursor: pointer;
}
/* ページ全体の枠 */
.sugu-window {
  max-width: 1024px;
  margin: 0 auto;
}
.sugu-container {
  padding: 0 2em 2em 2em;
}

.pure-g [class *="pure-u"]{
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
}
/* VivaEvi Specific Styles */
.accent-text {
    font-family: var(--font-accent);
    font-weight: 700;
}

/* 一行で...省略 */
.ellipsis_text {
  white-space: nowrap; /* 折り返し無しにする */
  overflow: hidden; /* はみ出た部分を非表示 */
  text-overflow: ellipsis; /* 語尾を3点リーダーに */
}

/* 下層ページ設定 */
.sub_title h2 {
  font-family: var(--font-main);
  width: 100% !important;
  position: static !important;
  transform: translate(0, 0) !important;
}

.sub_title h2 svg {
  width: 100%;
}

.sub_title {
  background-color: var(--color-white);
  padding: var(--space-xs);
}

.sub_title > div {
  height: 216px;
  position: static !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.ja_title_text {
  display: block;
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-top: 1em;
  margin-inline: auto;
  text-align: center;
}


.sub_title + .wrapper {
  background-color: var(--color-primary);
  position: relative;
  padding: var(--space-large) 0;
}

.sub_title + .wrapper::before,
.sub_title + .wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6vw;
}
.sub_title + .wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    background: url('../img//vivaevi-text-white.svg') left top / contain repeat-x;
}
.sub_title + .wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    background: url('../img//vivaevi-text-white.svg') left bottom / contain repeat-x;
}

.pankuzu {
  font-family: var(--font-main);
  padding-top: 0 !important;
}

@media screen and (max-width: 35.499em) {
  .sugu-container {
    padding: 0 2.5em 1em 1em;
  }
}
/* 
■文字サイズ  Font */
h1,
h2,
h3 {
  line-height: 35px;
}
h1 {
  font-size: 31.5px;
}
h2 {
  font-size: 24.5px;
}
h3 {
  font-size: 17.5px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 11.9px;
}
h6 {
  font-size: 10.5px;
}
h1 small {
  font-size: 17.5px;
}
h2 small {
  font-size: 14px;
}
h3 small {
  font-size: 11.9px;
}
h4 small {
  font-size: 11.9px;
}
h1 small,
h2 small {
  white-space: nowrap;
}
/* 
■右寄せ・左寄せ・中央  Alignment and Centering */
.sugu-clearfix:before,
.sugu-clearfix:after {
  content: " ";
  display: table;
}
.sugu-clearfix:after {
  clear: both;
}
.sugu-center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sugu-pull-right {
  float: right;
}
.sugu-pull-left {
  float: left;
}
.sugu-text-center {
  text-align: center;
}
.sugu-text-right {
  text-align: right;
}
/* 
■ページネーション  Pagination */
/* （※管理画面と同じクラス名ですが、定義が異なります） */
ul.sugu-pagination {
  margin: 1em 0;
  padding: 0;
}
ul.sugu-pagination li {
  list-style: none;
  display: inline-block;
  min-height: 0.8;
}
ul.sugu-pagination li a {
  padding: 4px 10px 4px 10px;
  vertical-align: middle;
  border: #cbcbcb 1px solid;
  margin-left: -1px;
  text-decoration: none;
  color: gray;
}
ul.sugu-pagination li a:active,
ul.sugu-pagination li a:hover {
  background-color: #dfdfdf;
  color: black;
}
ul.sugu-pagination li:first-child a {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
ul.sugu-pagination li:last-child a {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
ul.sugu-pagination .sugu-active a,
ul.sugu-pagination .pagethis a {
  font-weight: bold;
  color: black;
}
/* 
■前後リンク  Pager link */
ul.sugu-pager {
  margin: 50px 0 0.3em 0;
  padding: 0;
  height: 3em;
    display: flex;
    justify-content: center;
}
ul.sugu-pager li {
  list-style: none;
  display: inline-block;
}
ul.sugu-pager li a {
  padding: 12px 15px;
    margin: 0 10px;
  vertical-align: middle;
  height: 2em;
  border: var(--color-secondary) 1px solid;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-secondary);
    font-weight: 600;
    transition: .4s;
}
ul.sugu-pager li a:active,
ul.sugu-pager li a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.sentou{
  padding: 12px 15px 12px 30px!important;
    position: relative;
}
.saigo{
  padding: 12px 30px 12px 15px!important;
    position: relative;
}
.sentou::before, .saigo::before{
    content: '';
    box-sizing: border-box;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--color-secondary);
    border-right: 1px solid var(--color-secondary);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: .45s;
    z-index: 5;
}
.sentou::before{
    left: 15px;
    border-bottom: 1px solid var(--color-secondary);
    border-left: 1px solid var(--color-secondary);
    border-top: 0;
    border-right: 0;
}
.sentou:hover::before{
    border-bottom: 1px solid var(--color-white);
    border-left: 1px solid var(--color-white);
}
.saigo:hover::before{
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
}
/* 
■全一覧のスタイル  Article list classes */
.sugu-article-list .sugu-entry {
  border-bottom: var(--color-white) dotted 2px;
}
.sugu-article-list .sugu-entry:first-child {
  border-top: var(--color-white) dotted 2px;
}
.sugu-article-list .sugu-entry .sugu-entry-left {
  
}
.article_list_file{
    display: none;
}
.sugu-article-list .sugu-entry .sugu-entry-right {
  padding: 0.8em 0;
}
@media screen and (min-width: 35.5em) {
  .sugu-article-list .sugu-entry .sugu-entry-right {
    padding: 0.8em 0 0.8em 2em;
  }
}
.sugu-article-list .sugu-entry h3,
.sugu-article-list .sugu-entry h2 {
  margin-top: 0;
  font-weight: normal;
}
.article_list_box{
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 20px 15px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", 'Noto Serif JP', メイリオ, Meiryo, serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: #333;
	letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    transition: .4s;
}
.article_list_box:hover{
    background-color: #f7f7f7;
}
.sugu-article-list .sugu-entry p {
  margin: 0 0 5px 0;
    font-size: 15px;
	letter-spacing: 0.06em;
}
.sugu-article-list .sugu-entry p:last-child {
  margin-bottom: 0;
}
.article_list_window{
    margin-top: var(--space-large);
    margin-bottom: var(--space-base);
    width: 80%;
    max-width: 900px;
}
/* 
■短い一覧のスタイル  Short list classes */
/* 罫線 */
ul.sugu-ruled-list {
  list-style: none outside none;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
}
.sugu-ruled-list li {
  border-bottom: #dfdfdf solid 1px;
  /* 太さ、線種、色 */
}
.sugu-ruled-list li:first-child {
  border-top: #dfdfdf solid 1px;
  /* 太さ、線種、色 */
}
.short_list_container{
    padding: 0;
}
.short_list{
    max-width: 100%;
    width: 100%;
}
.short_list_date{
    line-height: 1.6em;
    display: inline-block;
    box-sizing: border-box;
    width: 28%;
}
.short_subject{
    line-height: 1.6em;
    display: block;
   width: 72%;
    box-sizing: border-box;
    padding-left: 30px;
}
.short_list_a{
    display: flex;
    width: 100%;
  padding: 22px;
}
.short_list_a .icon01::before {
    left: 100px;
}
.short_list_a .icon02::before {
    left: 100px;
}
.short_list_a .icon03::before {
    left: 100px;
}
/* 文字色・スタイル */
.sugu-listdate {
  color: gray;
  padding-right: 1em;
}
.sugu-listlink a,
.sugu-listlink a:link {
  color: #389ABE;
  text-decoration: none;
}
/* 文字色・スタイル ここまで */
/* マウスオーバーでの背景色の設定 ここから */
.sugu-interactive-list li{
    transition: .4s;
}
.sugu-interactive-list li:hover {
  background-color: #f7f7f7;
}
/* マウスオーバーで背景色を変更する時は、リンク文字の変更を止めておく
   （この措置が不要なら設定を削除して下さい。） */
.sugu-interactive-list .sugu-listlink a:hover,
.sugu-interactive-list .sugu-listlink a:active {
  text-decoration: none;
}
/* マウスオーバーでの背景色の設定 ここまで */
/* 
■記事ページ設定  Article page classes */
/* 記事部分 */
.sugu-article {
  /* 記事ページの画像
	   pure-img クラスの付いているものは枠幅いっぱいに表示される設定になっている
	 */
}
.sugu-article .sugu-article-left {
  padding: 0 0 15px;
    width: 100%!important;
}
.sugu-article .sugu-article-right {
  padding: 0.8em 0;
}
.article_window{
    padding: 90px;
    width: 80%;
    max-width: 1000px;
}

.article_date{
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    display: inline-block;
}
.article_h3{
    line-height: 1.6em;
    font-size: 22px;
    padding-bottom: 12px;
    border-bottom: dotted 4px var(--color-white);
    margin-bottom: 20px;
}
.article_img{
    width: 100%;
}
.article_img_flex{
    display: flex;
    position: relative;
    margin-bottom:15px;
}
/*.article_img_flex::before{
    content: '画像はクリックで拡大できます';
    position: absolute;
    left: 1%;
    bottom: 0;
    font-size: 14px;
    color: #333;
    background-color: #FFF5E9;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}*/
.article_img_flex>div{
    width: calc(25% - 2%);
    margin: 0 1%;
}
.article_main_text{
    line-height: 2em;
    font-weight: 400;
}
.article_main_text p{
    margin-bottom: 15px;
}
.article_pager{
    display: flex;
    justify-content: center;
    width: 100%;
}
.article_pager a{
    padding: 12px 20px;
    margin: 0 10px;
    vertical-align: middle;
    /* border: var(--color-white) 1px solid; */
    border-radius: 1.8em;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    transition: .4s;
    background-color: var(--color-secondary);
    display: block;
}
.article_pager a:hover{
    background-image: none;
    background-color: var(--color-white);
    color: var(--color-secondary);
}

/* オンラインショップへのボタン */
.online-btn-container {
    text-align: center;
    margin-top: 1.2em;
}

.online-btn {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-secondary);
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0.4em 0.7em;
    border-radius: 1.8em;
    border: 1.5px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-white);
    transition: 0.2s ease;
}

.online-btn::after {
    content: '';
    font-size: inherit;
    width: 1em;
    height: 1em;
    background: url('../img/vivaevi/common/online-shop-icon.svg') left center / contain no-repeat;
    margin-left: 0.2em;
}

.online-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px var(--color-secondary-shadow);
    transition: 0.2s ease;
}


/* footer ------------ */
.copy {
  background-color: var(--color-white) !important;
}

.footer_content,
.footer_left ul li a,
.footer_contact .tel>p:first-of-type,
.footer_contact .tel>p:last-of-type,
.footer_contact .hp>p:first-of-type,
.copy a,
.margin-inline-auto .sp-textalign-left,
.footer_form
 {
  color: var(--color-text) !important;
}

.footer_contact .tel>p:last-of-type {
  background-image: url('../img/footer_tel.png') !important;
}

.margin-inline-auto .sp-textalign-left {
  line-height: 2 !important;
}


@media screen and (min-width: 35.5em) {
  .sugu-article .sugu-article-right {
    padding: 0;
  }
}
.sugu-article img {
  margin-bottom: 20px;
}
/* 記事ページのフッタリンク調整 */
.sugu-page-link {
  margin: 2em 0;
}
.sugu-page-link a {
  margin-right: 0.8em;
  margin-bottom: 0.8em;
}
/* 
■ファイル一覧の形式（ul） Files */
.sugu-file-list {
  list-style-position: outside;
}
.sugu-file-list li {
  line-height: 1.4;
    margin-top: 20px;
}
/* ファイルをアップロードしたときのアイコン表示  Icons for uploaded files */
.filelink {
    display: inline-block;
    color: #222;
    padding: 10px 15px 10px 44px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: 14px 50%;
    background-image: url(../../icons/general.gif);
    letter-spacing: 0.05em;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border-radius: 4px;
    transition: opacity .4s;
}
.filelink:hover{
    opacity: .7;
}
.doc {
  background-image: url(../../icons/word.svg);
  background-size: 20px;
}
.pdf {
  background-image: url(../../icons/pdf.svg);
  background-size: 20px;
}
.ppt {
  background-image: url(../../icons/ppt.gif);
}
.img {
  background-image: url(../../icons/img.svg);
  background-size: 20px;
}
.txt {
  background-image: url(../../icons/txt.gif);
}
.xls {
  background-image: url("../../icons/xlsx.svg");
    background-size: 20px;
}
.zip {
  background-image: url("../../icons/zip.svg");
    background-size: 20px;
}



/* 管理画面 */
.icon{
    display: inline-block;
    width: 100%; /* アイコン画像ファイルのサイズに合わせて指定 */
    height: auto; /* アイコン画像ファイルのサイズに合わせて指定 */
    margin-top: 0.35em;
    background-repeat: no-repeat;
    background-position: right center;
}
 
/* 記事画面 */
.article_title {
    font-weight: 700;
    color: var(--color-secondary);
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
}
/* 表示するアイコン */
.icon01 {
    padding-right: 95px!important; /* 表示するアイコンの幅＋余白 */
    position: relative;
}
.icon01::before{
    content: 'お知らせ';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 82px;
    padding: 0 0 1px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    background-color: var(--color-secondary);
    border-radius: 4px;
    box-sizing: border-box;
    color: var(--color-white);
    font-family: YakuHanJP_Noto, 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    line-height: 20px;
}
.icon02 {
    padding-right: 95px!important; /* 表示するアイコンの幅＋余白 */
    position: relative;
}
.icon02::before{
    content: '催事情報';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 82px;
    padding: 0 0 1px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    background-color: #DFB2EC;
    border-radius: 4px;
    box-sizing: border-box;
    color: #fff;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    line-height: 20px;
}
.icon03 {
    padding-right: 120px!important; /* 表示するアイコンの幅＋余白 */
    position: relative;
}
.icon03::before{
    content: 'メディア情報';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    padding: 0 0 1px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    background-color: #A4BFEA;
    border-radius: 4px;
    box-sizing: border-box;
    color: #fff;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    line-height: 20px;
}

/*催事情報・メディア情報------------------------------*/
.sec_08{
    position: relative;
}
.sec_08 p img{
    width: 100%;
    height: auto;
}
.sec_08_inner{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 400px;
}
.sec_08_inner a{
    display: block;
    background-color: rgba(255,255,255,0.75);
    color: #c2a167;
    font-size: 24px;
    font-weight: 600;
    padding: 25px 35px;
    box-sizing: border-box;
    width: 100%;
    max-width: 400px;
    transition: .6s;
    position: relative;
}
.sec_08_inner a:first-of-type{
    margin-bottom: 25px;
}
.sec_08_inner a::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    right: 30px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #c2a167;
    border-right: 1px solid #c2a167;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: .45s;
    z-index: 5;
}
.sec_08_inner a:hover{
    background-color: rgba(255,245,233,0.95);
}
@media print, screen and (max-width: 1200px) {
    .sec_08_inner a{
        font-size: 18px;
    }
    .sec_08 p{
        overflow: hidden;
        padding: 30px 0;
    }
    .sec_08 p img{
        transform: scale(1.2);
    }
}
@media print, screen and (max-width: 1000px) {
    .sec_08_inner a{
        padding: 20px 25px;
    }
    .sec_08_inner a:first-of-type{
        margin-bottom: 15px;
    }
}
@media print, screen and (max-width: 980px) {
    .short_list_a {
        display: block;
    }
    .short_subject {
        width: 100%;
        padding-left: 0;
    }
    .article_title{
        margin-bottom: 5px;
    }
}

@media print, screen and (max-width: 750px) {

    .sub_title h2 {
      padding: 0 !important;
    }
    .short_list_a{
        padding: 15px 5px;
    }
    .icon01::before{
        padding: 0;
    }
    .icon02::before{
        padding: 0;
    }
    .icon03::before{
        padding: 0;
    }
    .short_list_a .icon01::before {
        left: 90px;
    }
    .short_list_a .icon02::before {
        left: 90px;
    }
    .short_list_a .icon03::before {
        left: 90px;
    }
    .sec_08_inner {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 380px;
    }
    .sec_08 p{
        padding: 0;
    }
    .article_title{
        font-size: 14px!important;
    }
    .short_subject{
        font-size: 15px!important;
    }
    .article_list_window {
        margin-block: 50px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
        max-width: 600px;
    }
    .sugu-container{
        padding: 0;
    }
    .article_list_box{
        padding: 15px 5px;
    }
    .article_list_box h3{
        font-size: 15px;
    }
    ul.sugu-pager li a {
        padding: 12px 15px;
        margin: 0 5px;
        font-size: 15px;
    }
    .article_window {
        margin-bottom: 50px;
        width: 100%;
        box-sizing: border-box;
        max-width: 600px;
        padding: 0 20px;
    }
    .article_h3 {
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .sugu-article .sugu-article-left{
        padding: 0;
    }
    .sugu-article .sugu-article-right{
        padding-bottom: 0;
    }
    .article_img_flex{
        margin-bottom: 5px;
    }
    .article_main_text{
        font-size: 15px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

}


@media print, screen and (max-width: 450px) {
    ul.sugu-pager li a {
        padding: 12px ;
        font-size: 14px;
    }
    .sentou {
        padding: 12px 15px 12px 20px!important;
    }
    .saigo {
        padding: 12px 20px 12px 15px!important;
    }
    .sentou::before{
        left: 12px;
    }
    .saigo::before{
        right: 12px;
    }



}

