/*
Theme Name: Arkhe Child
Theme URI: https://arkhe-theme.com/
Template: arkhe
Author: LOOS,Inc.
Author URI: https://loos.co.jp/
Description: A very simple theme for production templates. Customize as you like.
Tags: two-columns,one-column,right-sidebar,custom-colors,custom-menu,editor-style,theme-options,block-styles,wide-blocks
Version: 3.12.0.1778466992
Updated: 2026-05-11 11:36:32

*/

li,
p,
a,
span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

p+p {
  margin-top: 15px !important;
}

/* ---------- カラム ---------- */
@media (min-width: 1000px) {
  .l-content__body {
    display: flex;
    flex-direction: row-reverse;
  }
}

/* ---------- Hタグ ---------- */

h1.c-pageTitle__main {
  position: relative;
  padding: .5em .7em;
  background-color: #307855;
  color: #fff;
  width: 100%;
  font-size: 1.8rem !important;
}

h1.c-pageTitle__main::before {
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom: solid 10px transparent;
  border-right: solid 20px #185236;
  content: '';
}

/* --- h2 --- */
h2.wp-block-heading {
  position: relative;
  padding: .3em 0 .2em 1em;
  border-bottom: 1px solid #333;
  color: #333333;
  text-align: left;
  margin-top: 30px;
}

h2.wp-block-heading strong {
  color: #FF7300;
}

h2.wp-block-heading::before {
  position: absolute;
  top: 0;
  left: .3em;
  transform: rotate(55deg);
  height: 11px;
  width: 12px;
  background: #FF7300;
  content: '';
}

h2.wp-block-heading::after {
  position: absolute;
  transform: rotate(15deg);
  top: .6em;
  left: 0;
  height: 8px;
  width: 8px;
  background: #307855;
  content: '';
}

/* --- h3 --- */

@media (min-width: 768px) {
  h3.wp-block-heading {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background-color: #FFFFF0;
    color: #333;
    width: 100%;
    text-align: center;
    border: 1px solid #FFFF6F;
    font-size: 1.3rem;
  }

  h3.wp-block-heading::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #FF7300;
    content: '';
  }

  h3.wp-block-heading strong {
    color: #FF7300;
  }

  h3.wp-block-heading strong {
    font-size: 140%;
  }
}

@media (max-width: 767px) {
  h2.wp-block-heading {
    font-size: 1.55rem !important;
  }
  h3.wp-block-heading {
    font-size: 1.35rem !important;
    display: block;
    padding: .5em .7em;
    background-color: #FFFFF0;
    color: #333;
    width: 100%;
    text-align: center;
    border: 1px solid #FFFF6F;
    font-size: 1.3rem;
    border-left: 5px solid #FF7300;
    text-align: left;
  }

  h3.wp-block-heading strong {
    color: #FF7300;
  }

  h3.wp-block-heading strong {
    font-size: 120%;
  }
}

/* ---------- トップメイン画像 ---------- */

body.home .top_main_sl1 {
  margin-bottom: 60px;
}

body:not(.home) .top_main_sl1 {
  margin-bottom: 0px;
}

/* ---------- メインメニュー ---------- */

@media (min-width: 1000px) {
  .l-header__right {
    max-width: unset !important;
    width: 100%;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background-color: #f9f9f9;
  }
}

/* 2段表示を維持しつつ、メニューを等幅表示 */
@media (min-width: 1000px) {

  /* ヘッダー全体を2段表示にする */
  .l-header__body {
    display: flex;
    flex-direction: column;
    /* 縦方向にレイアウトを維持 */
    align-items: center;
  }

  /* 1段目のロゴ部分 */
  .l-header__center {
    max-width: 1200px;
    /* 固定幅1200px */
    width: 100%;
    text-align: left;
    /* 左揃え */
    margin: 0 auto;
    /* 中央揃え */
  }

  /* 2段目のメニュー部分 */
  .l-header__right {
    max-width: 1200px;
    /* 固定幅1200px */
    width: 100%;
    text-align: right;
    /* 右揃えの要素を保持 */
    margin: 0 auto;
    /* 中央揃え
    padding-top: 10px; */
  }

  /* ナビゲーションのラップ（中央揃え、固定幅1200px） */
  .c-gnavWrap {
    width: 1200px;
    /* 固定幅1200px */
    margin: 0 auto;
    /* 中央揃え */
  }

  /* ナビゲーションメニューの等幅表示 */
  .c-gnav {
    display: flex;
    justify-content: space-between;
    /* 各メニューを等間隔に配置 */
    padding: 0;
    margin: 0;
    list-style: none;
    /* リストのデフォルトスタイルを削除 */
    width: 100%;
    /* ナビゲーション全体を100%幅に */
  }

  /* 各メニューアイテムの等幅設定 */
  .c-gnav__li {
    flex: 1;
    /* メニュー項目を等幅に表示 */
    text-align: center;
    /* テキストを中央に配置 */
  }

  /* メニューリンクのスタイル */
  .c-gnav__a {
    display: block;
    padding: 10px 0;
    /* クリックしやすいパディング */
  }

  /* l-header__center の中で logo と header_info を横並びに */
  .l-header__center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* 横幅全体を使用 */
  }

  .header_info {
    /*width: 560px;*/
    /* header_info の幅を 700px に設定 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    /* ロゴとのスペースを確保 */
  }

  .tel_info {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    /* TEL番号と営業時間を縦並びに */
  }

  .tel_info img {
    height: 90px;
  }

  .tel_number {
    font-size: 2.2rem;
    /* TEL番号を適度に大きく */
    background-color: transparent;
    /* 背景は無色 */
    font-weight: 600 !important;
    color: #175aa3;
    line-height: 90%;
    margin-right: 10px;
    margin-bottom: -9px;
    margin-top: -9px;
  }

  .tel_number .svg-inline--fa {
    margin-right: 5px;
    margin-left: -5px;
  }

  .tel_number a {
    text-decoration: none;
    font-size: 2rem !important;
  }

  .tel_number .svg-inline--fa {
    margin-right: 5px;
    font-size: 2rem !important;
  }

  .fax_number {
    font-size: 1.6rem;
    /* TEL番号を適度に大きく */
    background-color: transparent;
    /* 背景は無色 */
    font-weight: 600 !important;
    color: #111;
    line-height: 120%;
  }

  .fax_number .svg-inline--fa {
    margin-right: 5px;
    font-size: 1.2rem !important;
    color: #175aa3;
  }

  .business_word {
    font-size: 0.8rem;
    /* 営業時間を小さく表示 */
    font-weight: 600;
  }

  .business_hours {
    font-size: 0.8rem;
    /* 営業時間を小さく表示 */
    font-weight: 600;
  }

  /*.contact_button {
        background-color: #ea5550;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.2rem;
        display: inline-block;
        font-weight: 500 !important;
    }
    .contact_button:hover {
        background-color: #e96560;
    }*/

  a.contact_button {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 280px;
    padding: 10px 35px;
    font-size: 1.1rem;
    font-family: "Noto Sans Japanese";
    text-decoration: none;
    color: #fff;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    border: 1px solid #ff8d41;
    font-weight: 700;
    background-color: #ff7300;
  }

  a.contact_button:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1.4rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  a.contact_button:hover {
    background: #ff6600;
    color: #FFF;
    border: 1px solid #ff8d41;
  }

  a.contact_button:hover:after {
    right: 1.1rem;
  }

  a.contact_button_free {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 280px;
    padding: 10px 35px;
    font-size: 1.1rem;
    font-family: "Noto Sans Japanese";
    text-decoration: none;
    color: #fff;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    border: 1px solid #87cefa;
    font-weight: 700;
    background-color: #78cbff;
    margin-top: 0px !important;
    font-size: 14px;
  }

  a.contact_button_free:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1.4rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  a.contact_button_free:hover {
    background: #3394cf;
    color: #FFF;
    border: 1px solid #87cefa;
  }

  a.contact_button_free:hover:after {
    right: 1.1rem;
  }

  /*svg:not(:host).svg-inline--fa,
    svg:not(:root).svg-inline--fa {
        margin-right: 5px;
    }*/
  .btn_box1 {
    margin-left: -10px;
  }

  ul.c-gnav li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /*
    ul.c-gnav li:last-child {
        border-right: 1px solid #ddd;
    }*/

  /*.c-gnav__li>a.c-gnav__a:first-child {
    border-left: 1px solid #01439A;
  }*/

  .c-gnav__li>.c-gnav__a {
    padding: 5px 12px !important;
  }

  /*.menu_last a {
    border-right: 1px solid #01439A;
  }*/
  .c-gnav__a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    border-left: 1px solid #e1e1e1;
    /* 左側のみ線 */
  }

  /* 最後の要素だけ右側にも線を追加 */
  .c-gnav__li:last-of-type .c-gnav__a {
    border-right: 1px solid #e1e1e1;
  }
}

@media (min-width: 1000px) {
  ul.c-gnav li {
    /*    font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;*/
    font-size: 1rem !important;
    font-weight: 500;
  }

  /*ul.c-gnav li {
        position: relative;
    }

    ul.c-gnav li::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 20px;
        width: 1px;
        height: 70%;
        background-color: #1E7200;
        transform: rotate(45deg);
        transform-origin: top left;
        pointer-events: none;
    }

    ul.c-gnav li:last-child::after {
        content: '';
        position: absolute;
        top: 7px;
        right: 0;
        width: 1px;
        height: 70%;
        background-color: transparent;
        border-right: 1px solid #1E7200;
        transform: rotate(45deg);
        transform-origin: top right;
    }
*/
  .c-gnav .__mainText {
    font-size: 15px;
  }
}

@media (max-width: 999px) {
  .header_info {
    display: none;
  }
}

/* ---------- トップ ---------- */

.reason_c1 {
  z-index: 100;
  position: relative;
  line-height: 100%;
  padding: 7px 5px 6px;
  margin-left: -1px;
  width: 120px;
  text-align: center;
  margin-bottom: -20px;
  color: #fff;
  background-color: #307855;
  border: 2px solid #fff;
}

.reason_c1 em {
  font-size: 1.6rem;
  font-style: normal;
}

@media (min-width: 768px) {
  .p_13 {
    font-size: 2.4rem;
    text-align: center;
    display: block;
    background-color: #FF7300;
    color: #fff;
  }

  .habataki_topbox1 .ul_box1 {
    background-color: #ffffffe0;
    position: relative;
    width: 430px;
    padding: 20px;
    margin-bottom: -640px;
    font-size: 1.2rem;
  }
}

/* ---------- よくある質問 ---------- */
/* 紙風 */
.faqbox1 .vk_faq-body {
  margin: 1em auto 0;
  /* 外側余白 */
  padding: 2em;
  /* 内側余白 */
  background-color: #f9f9f9;
  /* 背景色（薄いグレー） */
  position: relative;
  /* 相対位置指定 */
}

.faqbox1 .vk_faq-body::after {
  position: absolute;
  /* 絶対位置指定 */
  content: '';
  /* 擬似要素 */
  right: 0;
  /* 右端 */
  top: 0;
  /* 上端 */
  border-width: 0 25px 25px 0;
  /* 折れ形状 */
  border-style: solid;
  /* 線の種類 */
  border-color: #ccc #fff #ccc;
  /* 色 */
  box-shadow: -1px 1px 1px rgb(0 0 0 / .15);
  /* 影 */
}

.vk_faq {
  border-bottom: 0px !important;
}

/* ---------- 施術の流れ ---------- */
.step_item1 .smb-step__item__title>span {
  font-size: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #307855;
}

/* ---------- 料金 ---------- */
.price_p1 {
  text-align: center;
  font-size: 1.4rem;
}

.price_p1 strong {
  font-size: 2.4rem;
  color: #FF7300;
}

.price_p1 em {
  font-size: 0.9rem;
  font-style: normal;
}

/* ---------- スタッフ紹介 ---------- */
@media (min-width: 768px) {
  .p_11 {
    margin-top: -5px !important;
  }

  .p_12 {
    font-size: 1.8rem;
  }

  .staff_box2 h3 {
    margin-bottom: 30px;
  }

  .staff_box2 .wp-block-media-text {
    width: 94%;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .p_12 {
    font-size: 1.2rem;
  }
}

/* ---------- アクセス ---------- */
.btm_1 {
  margin-top: -50px !important;
}

.btm_1 a {
  border: 5px solid #fff;
}


/* ---------- 医療関係者・専門家からの推薦文 ---------- */
.suisen_box1 {
  padding: 0.5em 1em;
  margin: 2em 0;
  background: white;
  border-top: solid 5px #307855;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

h2.suisen_mi1 {
  font-size: 1.1rem !important;
}

h2.suisen_mi1 strong {
  font-size: 1.8rem;
}

/*
.suisen_mi1 {
  position: relative;
  padding: 0.6em 1em;
  background: #FFDEAD;
  margin-bottom: 15px;
  margin-bottom: 25px;
}

.suisen_mi1:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #FFDEAD;
  width: 0;
  height: 0;
}
*/

@media (min-width: 1000px) {
  .suisen_box1 {
    padding: 30px 40px;
    margin-bottom: 50px;
  }

  .suisen_box1 br {
    display: none;
  }
}

/* ---------- コンテンツ ---------- */
.p_desi1 {
  background-color: #307855;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.ul_li1 {
  font-size: 1.2rem;
}


.group_box1 {
  margin: 1em auto;
  /* 外側余白 */
  padding: 1em;
  /* 内側余白 */
  background-image: repeating-linear-gradient(-45deg,
      /* ストライプの角度 */
      #f2f3f7 0,
      /* ストライプの色（薄いグレー） */
      #f2f3f7 3px,
      /* ストライプの太さ（3pxの間隔） */
      transparent 3px,
      /* 透明部分 */
      transparent 6px
      /* 透明部分（3pxから6pxまで） */
    );
}


@media (min-width: 1000px) {
  .p_14 {
    text-align: center;
    font-size: 1.4rem;

  }

  .habataki_group1 {
    background-color: #fffff0ed;
    padding: 30px;
    margin-top: -650px;
    position: relative;
    z-index: 999;
    width: 400px;
    left: 20px;
  }

  .habataki_group1 ul li {
    font-size: 1.1rem !important;
  }

  .habataki_group2 {
    background-color: #fffff0ed;
    padding: 30px;
    margin-top: -580px;
    position: relative;
    z-index: 999;
    width: 400px;
    left: 20px;
  }

  .habataki_group2 ul li {
    font-size: 1.1rem !important;
  }

  .habataki_imgbox1 {
    margin-top: 80px;
  }
}

/* ---------- 症状別 ---------- */
.shou_item1 .smb-box {
  padding: 5px;
}

.shou_item1 .smb-box__background {
  border: 2px solid #F8F4E9;
}

.shou_item1 .wp-block-image {
  margin-bottom: 0px;
}

.shou_item1 .wp-block-list.is-style-vk-arrow-mark:where(:not(.is-style-default)) li {
  margin: calc(1rem * 0.3) 0;
  letter-spacing: -0.05em;
}

.shou_item2 .vk_borderBox .vk_borderBox_title_container {
  font-size: 1.3em;
}

.shou_item2 .vk_borderBox .vk_borderBox_body {
  border-width: 1px !important;
  margin-top: -25px;
}

@media (max-width: 680px) {
  .shou_item1 .wp-block-image img {
    width: 70%;
    margin: auto;
  }
}

/* ---------- ブロック ---------- */
.wp-block-media-text .wp-block-media-text__content {
  margin-top: 0px !important;
}

.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner,
.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder,
.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature {
  border-width: 1px !important;
}

.vk_borderBox .vk_borderBox_body {
  border-width: 1px !important;
}

.wp-block-spacer {
  margin-top: 0px !important;
}

.vk_borderBox {
  margin-bottom: 0px !important;
}

.vk_balloon {
  margin-bottom: 0.5em !important;
}

.sme-highlighter {
  background-image: linear-gradient(transparent 80%, rgba(252, 185, 0, 0.5) 60%) !important;
}

p strong {
  color: #F05F32;
  font-size: 120%;
  font-weight: normal;
}

@media (min-width: 992px) {
  #sidebar .vk_borderBox_body {
    padding: 1em 1em 1.5em !important;
  }

  .vk_borderBox .vk_borderBox_body {
    padding: 0.2em 2em 1.5em !important;
  }

  .vk_balloon_icon:not(:empty) {
    flex-basis: 100px !important;
  }

  .vk_balloon_icon_image {
    width: 100px !important;
    height: 100px !important;
  }

  .vk_balloon {
    margin-top: 15px !important;
  }

  .vk_balloon-type-speech .vk_balloon_content {
    margin-top: 15px;
  }
}


/* ---------- サイドバー ---------- */

#sidebar h4 {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

#sidebar .widget_nav_menu a {
  font-size: 16px;
}

@media (min-width: 1000px) {
  [data-sidebar="on"] .l-sidebar {
    width: 250px;
  }

  [data-sidebar="on"] .l-main {
    width: 900px;
  }
}


/* ------------ フッター ------------ */
.widget_nav_menu .menu {
  border-bottom: 0;
  border-top: 0;
}

.widget_nav_menu .menu-item {
  border-bottom: 0;
}

h2.widgettitle {
  border-bottom: 1px dotted #333;
  font-size: 1.1rem;
}

.ft_box1 ul {
  display: flex;
  flex-wrap: wrap;
}

.ft_box1 ul li {
  width: 50%;
}
.child-pages-list {
  display: grid;
  gap: 24px;
}

.child-pages-list.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.child-pages-list.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.child-pages-list.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.child-pages-list.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.child-page-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity .2s ease, transform .2s ease;
}

.child-page-card:hover {
  opacity: .85;
  transform: translateY(-3px);
}

.child-page-image {
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  overflow: hidden;
}

.child-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.no-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.child-page-content {
  padding: 16px;
}

.child-page-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
}

.child-page-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

@media (min-width: 1000px) {
  #block-7 .wp-image-1220{
    margin-left: 300px !important;
  }
}

@media (min-width: 768px) {
  .footer-above-widget-area {
    padding: 30px 10px;
  }
}
@media (max-width: 767px) {
   .footer-above-widget-area {
    padding-top: 30px;
  }
  .child-pages-list {
    grid-template-columns: 1fr !important;
  }
}

/* サイドウィジェット スクロール固定*/

@media (min-width: 1000px) {
  #block-2.is-fixed {
    position: fixed;
    z-index: 10;
  }
}

@media (max-width: 999px) {
  #block-2 {
    position: static !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
  }
}

@media (max-width: 999px) {
  .fixed-sidebar-widget {
    position: static !important;
    width: auto !important;
    transform: none !important;
  }
}


/* ---------- プラグイン ---------- */
@media (min-width: 1024px) {

  .rtoc-mokuji-content.rtoc_close #rtoc-mokuji-title.is_close,
  .rtoc-mokuji-content.rtoc_open #rtoc-mokuji-title.is_close {
    padding: 20px 64px !important;
  }
}

.rtoc-mokuji-content .rtoc-mokuji.level-1.decimal_ol {
  padding-bottom: 20px;
}

/* --- スマホのみ表示 --- */
@media (max-width: 768px) {
  .footer-fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #eee;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  /* 1段目：タイトル */
  .f-fixed-nav-title {
    text-align: center;
    background: #333;
    color: #fff;
    font-size: 15px;
    padding: 8px 0;
    font-weight: bold;
  }

  /* 2段目：ボタン3つ並び */
  .f-fixed-nav-contens {
    display: flex;
    width: 100%;
  }

  .f-fixed-nav-contens .nav-item {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }

  .f-fixed-nav-contens .nav-item i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
  }

  /* カラー設定 */
  .nav-item.tel {
    background: #1e90ff;
  }

  .nav-item.mail {
    background: #FD6DCD;
  }

  .nav-item.line {
    background: #00C854;
  }

  /* スクロールで消える動作 */
  .footer-fixed-nav.hide {
    transform: translateY(100%);
  }
}

/* PCでは非表示 */
@media (min-width: 769px) {
  .footer-fixed-nav {
    display: none;
  }
}

/* ---------- 3PRバナー ---------- */
