@charset "UTF-8";

/* ==========================================================================
   秀学会 コーポレートサイト - メインスタイル（レイアウト・配色）

   フォント関連は font.css に分離
   配色:
     - ベージュ（ヘッダー背景）        : #bfcfdf
     - ベージュ薄（関連施設帯）        : #e1dac6
     - 茶（見出し文字・リンク）        : #30567c
     - 茶系グレー（セクション見出し帯）: #a2b8ce
     - th背景                          : #f7f7f7
     - LINE緑（帯）                    : #57bc2f
     - テキスト                        : #333
     - 背景                            : #fff
   ========================================================================== */

:root {
  --color-bg: #fff;
  --color-text: #333;
  --color-accent: #30567c;        /* 濃青（文字・リンク） */
  --color-beige: #bfcfdf;         /* 薄青（ヘッダー背景） */
  --color-beige-2: #e1dac6;       /* 関連施設帯（据え置き） */
  --color-section-bar: #a2b8ce;   /* 青系グレー（セクション見出し帯） */
  --color-th-bg: #f7f7f7;
  --color-line-green: #57bc2f;
  --color-border: #ccc;

  --content-width: 1000px;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  height: 100px;
  background: var(--color-beige);
}

.site-header__inner {
  position: relative;
  width: var(--content-width);
  height: 100%;
  margin: 0 auto;
}

/* ロゴ */
.site-header__logo {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 240px;
}

.site-header__catch {
  display: block;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1;
}

.site-header__title {
  margin-top: 6px;
  color: var(--color-accent);
}

/* リード */
.site-header__lead {
  position: absolute;
  top: 42px;
  left: 180px;
  width: 380px;
  color: var(--color-text);
}

/* 電話番号 */
.site-header__tel {
  position: absolute;
  top: 42px;
  right: 55px;
  width: 250px;
  text-align: right;
  color: var(--color-text);
}

.site-header__tel-note {
  display: block;
  margin-top: 2px;
}

/* メールアイコン */
.site-header__mail {
  position: absolute;
  top: 40px;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #0c76e2 url("../images/icon_mail.png") no-repeat center / 28px auto;
  border-radius: 2px;
}

/* 文字サイズ切替（ヘッダー右端 縦ストリップ） - 一旦非表示 */
.font-size-switcher {
  display: none; /* 一旦非表示 */
  position: fixed;
  top: 10px;
  right: 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 48px;
  padding: 8px 4px;
  background: var(--color-beige);
  color: var(--color-accent);
  line-height: 1.2;
  z-index: 3;
}

.font-size-switcher__label {
  writing-mode: vertical-rl;
}

.font-size-switcher__buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.font-size-switcher__buttons button {
  width: 35px;
  padding: 7px 0 6px;
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 2px;
  line-height: 1;
}

.font-size-switcher__buttons button.is-active {
  background: var(--color-accent);
  color: #fff;
}

/* ==========================================================================
   Global Navigation
   ========================================================================== */
.global-nav {
  width: 100%;
  background: #fff;
  padding: 5px 0;
  box-shadow: 0px 3px 5px 0px rgba(82, 82, 82, 0.20);
}

.global-nav__list {
  display: flex;
  width: var(--content-width);
  margin: 0 auto;
  border-left: 1px solid var(--color-border);
}

.global-nav__item {
  flex: 1;
  border-right: 1px solid var(--color-border);
}

.global-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 50px;
  padding: 6px;
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}

.global-nav__item a:hover {
  background: #fafaf5;
  opacity: 1;
}

.global-nav__close {
  display: none;
}

/* ==========================================================================
   SP Menu Toggle (ハンバーガー) - 原サイト準拠: 左上 40×40 白背景 茶色の線
   ========================================================================== */
.sp-menu-toggle {
  display: none;
  position: fixed;
  top: 10px;
  left: 15px;
  z-index: 100;
  width: 40px;
  height: 40px;
  padding: 11px 10px;
  background: #fff;
  border-radius: 6px;
}

.sp-menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 0 auto;
  background: #ccc;
  border-radius: 9999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sp-menu-toggle span + span {
  margin-top: 5px;
}

.sp-menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sp-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.sp-menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Main
   ========================================================================== */
.main {
  padding-bottom: 120px;
}

.main__inner {
  width: var(--content-width);
  margin: 0 auto;
}

/* メインビジュアル */
.key-visual {
  width: 100%;
  margin: 40px 0 20px;
}

.key-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Breadcrumb（パンくず）
   ========================================================================== */
.breadcrumb {
  width: var(--content-width);
  margin: 45px auto 30px;
  color: var(--color-text);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin-right: 5px;
  color: var(--color-accent);
}

.breadcrumb__item a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ==========================================================================
   Page Header（ページ見出し）
   ========================================================================== */
.page-header {
  margin-bottom: 20px;
}

.page-title {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
}

/* ==========================================================================
   Lead（本文導入段落）
   ========================================================================== */
.lead {
  margin: 0 0 20px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 2.2;
}

/* ==========================================================================
   Section
   ========================================================================== */
.section {
  margin-bottom: 40px;
  scroll-margin-top: 180px;
}

.section__title {
  width: 100%;
  margin: 0 0 20px;
  padding: 8px 15px;
  color: #fff;
  background: var(--color-section-bar);
  border-radius: 6px;
}

.section__body--split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.section__body--split > .info-list {
  flex: 0 0 500px;
}

.section__body--split > .map-frame {
  flex: 1;
}

/* ==========================================================================
   Info List (会社概要)
   ========================================================================== */
.info-list {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.info-list__row {
  display: flex;
}

.info-list__term {
  flex: 0 0 100px;
  padding: 12px;
  color: var(--color-text);
  background: var(--color-th-bg);
  font-weight: 700;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.info-list__desc {
  flex: 1;
  padding: 12px 15px;
  color: var(--color-text);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   Recruit Item（採用 募集要項の各園）
   ========================================================================== */

.recruit-item__name {
  margin: 0 0 40px;
  padding: 10px 10px 10px 0;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  border-bottom: 1px dotted currentColor;
}

.recruit-item__action {
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   Button（汎用）
   ========================================================================== */
.btn {
  display: inline-block;
  min-width: 186px;
  padding: 12px 45px;
  background: var(--color-beige);
  color: var(--color-accent);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}

.btn:hover {
  background: #aabfd4;
  opacity: 1;
}

/* ==========================================================================
   Line Box（recruit ページの LINE 誘導ボックス）
   ========================================================================== */
.line-box {
  width: 526px;
  padding: 10px;
  margin: 100px auto 0;
  text-align: center;
  background: var(--color-beige);
  border: 3px solid #30567c;
  border-radius: 6px;
}

.line-box__text {
  margin: 0;
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: dotted 3px #30567c;
}

.line-box__qr {
  margin: 20px 50px 10px;
  padding: 0;
}

.line-box__qr img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

/* ==========================================================================
   Contact Form
   原サイトに準拠: 入力欄はブラウザ既定の見た目、行高コンパクト
   ========================================================================== */
.contact-form {
  width: 100%;
}

.contact-form__list {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.contact-form__row {
  display: flex;
}

.contact-form__label {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: var(--color-th-bg);
  color: var(--color-text);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.contact-form__required {
  margin-left: 4px;
  color: var(--color-text);
}

.contact-form__field {
  flex: 1;
  padding: 15px;
  background: #fff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* 電話番号: input 本体を横並び、エラー文言は下に（flex-direction: column） */
.contact-form__field--tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* MW WP Form が出力する電話番号の span */
.contact-form__field--tel .mwform-tel-field {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contact-form__tel-sep {
  color: var(--color-text);
}

.contact-form__actions {
  margin: 30px 0 0;
  text-align: center;
}

/* 送信ボタン: 原に合わせてベージュ×白文字
   MW WP Form は class を付けないので type=submit を直接ターゲット */
.btn--submit,
.contact-form__actions input[type="submit"],
.contact-form__actions button[type="submit"] {
  padding: 8px 25px;
  background: var(--color-beige);
  color: #fff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.btn--submit:hover,
.contact-form__actions input[type="submit"]:hover,
.contact-form__actions button[type="submit"]:hover {
  background: #aabfd4;
  opacity: 1;
}

/* MW WP Form エラー表示: フィールドの下に赤文字で表示 */
.contact-form__field .error,
.contact-form__field .mw_wp_form_error {
  display: block;
  margin-top: 6px;
  color: #d63638;
  font-size: 13px;
}

/* ==========================================================================
   Map
   ========================================================================== */
.map-frame {
  width: 460px;
  height: 450px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   History List (沿革)
   ========================================================================== */
#history .section__body {
  width: 500px;
}

.history__group-title {
  margin-bottom: 10px;
  color: var(--color-accent);
}

.history-list {
  padding-left: 0;
}

.history-list__item {
  padding: 0;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
}

.history-list__date {
  color: var(--color-text);
  font-weight: 400;
}

/* ==========================================================================
   Promo (採用バナー + LINE)
   ========================================================================== */
.promo {
  width: 100%;
  padding: 32px 0;
  background: url(../images/banner_bg.png) 50% 50% / cover no-repeat;
}

.promo__inner {
  display: flex;
  max-width: 725px;
  margin: 0 auto;
  /*justify-content: space-between;*/
  justify-content: center;
  align-items: center;
}

.promo__banner {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, .2);
  border-radius: 8px;
}

.promo__banner img {
  display: block;
  width: 350px;
  height: auto;
}

.promo__line {
  width: 100%;
  max-width: 358px;
  text-align: center;
  background: #fff;
  border: 2px solid #57bc2f;
  border-radius: 4px;
}

.promo__line-title {
  padding: 8px;
  background: var(--color-line-green);
  color: #fff;
}

.promo__line-text {
  padding: 8px;
  color: var(--color-text);
  text-align: left;
}

.promo__line-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 8px;
}

.promo__line-btn img {
  display: block;
  width: 129px;
  height: auto;
}

.promo__line-qr {
  width: 60px;
  height: auto;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: #fff;
  color: var(--color-text);
}

/* ---- 関連施設 ---- */
.group-nav {
  padding: 20px 0 0;
  background: var(--color-beige-2);
  text-align: center;
}

.group-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.group-nav__item {
  margin: 0 10px 20px 0;
}

.group-nav__item a {
  display: flex;
  width: 208px;
  min-height: 61px;
  padding: 10px 12px;
  background: #fff;
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.4;
}

.group-nav__item a:hover {
  background: #d5e2ef;
  opacity: 1;
}

/* ---- フッターナビ ---- */
.footer-nav {
  padding: 0;
  background: #fff;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  height: 28px;
  margin: 10px 0 30px;
  line-height: 28px;
}

.footer-nav__list a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ---- 会社情報 ---- */
.footer-info {
  padding: 24px 0;
  background: #fff;
}

.footer-info__inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px 0 0;
}

.footer-info__name {
  margin-bottom: 10px;
  color: var(--color-text);
}

.footer-info__address {
  color: var(--color-text);
}

.footer-info__address span {
  display: block;
  margin-right: 16px;
}

.footer-info__links {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.footer-info__links a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ---- Copyright ---- */
.copyright {
  color: #999;
}

/* ---- ページトップ ---- */
.page-top {
  position: fixed;
  right: calc(100% - 1000px - ((100% - 1000px) / 2));
  bottom: 20px;
  width: 64px;
  height: 64px;
  padding-top: 3px;
  color: #fff;
  text-align: center;
  background: var(--color-beige);
  border-radius: 50%;
  opacity: 0;
  gap: 2px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.page-top.is-visible {
  opacity: 0.9;
  pointer-events: auto;
}

.page-top:hover { opacity: 1; }

.page-top__arrow {
  display: inline-block;
  margin-right: 3px;
  transform: rotate(90deg);
  line-height: 1;
}

.page-top__text {
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ==========================================================================
   Responsive - Tablet (～1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .site-header__inner,
  .global-nav__list,
  .main__inner,
  .promo__inner,
  .footer-info__inner {
    width: 100%;
    padding-inline: 20px;
  }

  .site-header__inner {
    position: relative;
  }

  .site-header__lead {
    left: 260px;
    width: calc(100% - 420px);
  }

  .site-header__tel {
    right: 80px;
    width: auto;
  }

  .map-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* ==========================================================================
   Responsive - SP (～767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* ---- Header: SP では fixed 固定（常時表示） ---- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    height: auto;
    padding: 10px 15px;
    text-align: center;
  }

  /* fixed header 分の余白確保 */
  .breadcrumb,
  .main {
    margin-top: 80px;
  }

  .breadcrumb + .main {
    margin-top: 0;
  }

  .site-header__inner {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    text-align: center;
  }

  .site-header__logo {
    position: static;
    display: block;
    width: auto;
    margin: 0 auto;
  }

  /* SP ではリード・TEL・メールアイコンを非表示（原サイト準拠） */
  .site-header__lead,
  .site-header__tel,
  .site-header__mail {
    display: none;
  }

  /* 文字サイズ切替は SP では非表示 */
  .font-size-switcher {
    display: none;
  }

  /* ---- Hamburger: 原サイト準拠 左上配置 ---- */
  .sp-menu-toggle {
    display: block;
  }

  /* ---- Global Nav (SP: 原サイト準拠 上からスライドダウン・2×2グリッド) ---- */
  .global-nav {
    position: fixed;
    top: 70px; /* ヘッダー高さぶん下げる */
    left: 0;
    right: 0;
    z-index: 90;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: calc(100vh - 70px);
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    text-align: center;
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  /* 2列グリッドに変更 */
  .global-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 15px;
    border: 0;
    background: #FFF;
  }

  .global-nav__item {
    border: 0;
    border-right: 1px solid #a8a08a;
    border-bottom: 1px dotted #a8a08a;
  }

  /* 左カラムにだけ右側の点線 */
  .global-nav__item:nth-child(odd) {
    border-left: 1px solid #a8a08a;
  }

  /* 最終行（最後の2項目）は下線なし */
  .global-nav__item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .global-nav__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: auto;
    padding: 5px;
    color: var(--color-accent);
  }

  /* 閉じるボタン: 白背景 茶色文字、中央配置 */
  .global-nav__close {
    display: inline-block;
    position: static;
    margin: 20px auto 0;
    padding: 8px 25px;
    min-width: 150px;
    font-weight: bold;
    background: #bfcfdf;
    color: var(--color-accent);
    border-radius: 6px;
  }

  /* ---- Breadcrumb ---- */
  .breadcrumb {
    width: 100%;
    padding: 0 15px;
    margin: 80px 0 30px;
  }

  /* ---- Main / Inner ---- */
  .main {
    padding-bottom: 35px;
  }

  .main__inner {
    width: 100%;
    padding: 0 15px;
  }

  .key-visual {
    margin: 20px 0 20px;
  }

  /* ---- Section ---- */
  .section {
    margin-bottom: 4px;
  }

  .section__body--split {
    flex-direction: column;
    gap: 20px;
  }

  .section__body--split > .info-list,
  .section__body--split > .map-frame {
    flex: 1;
    width: 100%;
  }

  /* Map full-width */
  .map-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  /* Info list: stack term above desc（原サイト準拠） */
  .info-list__row {
    flex-direction: column;
    border-bottom: 0;
  }

  .info-list__term {
    flex: none;
    width: 100%;
    padding: 10px;
    background: var(--color-th-bg);
    border-bottom: 1px solid var(--color-border);
  }

  .info-list__desc {
    flex: none;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
  }

  /* ---- History (recruit/index) ---- */
  #history .section__body {
    width: 100%;
  }

  /* ---- Page Header (recruit/contact) ---- */
  .page-header {
    margin-bottom: 16px;
  }

  /* ---- Recruit items ---- */
  .recruit-item {
    margin-bottom: 30px;
  }

  .recruit-item__name {
    margin: 0 0 40px;
    padding: 10px 0;
  }

  /* ---- Button (SP: 最大323pxで中央、原サイト準拠色) ---- */
  .btn {
    display: block;
    width: 100%;
    max-width: 323px;
    min-width: 0;
    margin: 0 auto;
    padding: 8px 25px;
    background: #bfcfdf;
    color: #30567c;
  }

  /* Recruit LINE box: full-width responsive */
  .line-box {
    width: 100%;
    max-width: 235px;
    margin: 100px auto 50px;
  }

  .line-box__qr {
    margin: 20px 0 10px;
  }

  .line-box__qr img {
    width: 146px;
    height: auto;
  }

  /* ---- Contact form: stack label above field ---- */
  .contact-form__row {
    flex-direction: column;
  }

  .contact-form__label {
    flex: none;
    width: 100%;
    padding: 10px;
    border-right: 0;
  }

  .contact-form__field {
    flex: none;
    width: 100%;
    padding: 10px;
    border-right: 0;
  }

  .contact-form__field input[type="text"],
  .contact-form__field input[type="email"] {
    width: 100%;
    max-width: 100%;
  }

  .contact-form__field textarea {
    width: 100%;
  }

  /* ---- Promo (banner + LINE): stack vertically ---- */
  .promo {
    padding: 24px 15px;
  }

  .promo__inner {
    flex-direction: column;
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 16px;
  }

  .promo__banner {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .promo__banner img {
    width: 100%;
    height: auto;
  }

  .promo__line {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .promo__line-btn img {
    width: 154px;
  }

  /* ---- Footer ---- */
  .group-nav {
    padding: 15px 10px;
  }

  .group-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .group-nav__item {
    width: calc((100% - 5px) / 2);
    margin: 0;
  }

  .group-nav__item a {
    width: 100%;
  }

  .footer-nav__list {
    flex-wrap: wrap;
    height: auto;
    margin: 0;
    line-height: 1.6;
    gap: 0;
    justify-content: flex-start;
  }

  .footer-nav__list li {
    width: 50%;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }

  .footer-nav__list li:nth-child(2) {
    border-right: none;
  }

  .footer-nav__list a {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #f2f2f2;
  }

  .footer-info {
    position: relative;
    padding: 20px 15px 60px;
  }

 .footer-info:before {
    content: '';
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 13px;
    background: url(../images/footer_line.png) 0 0 / auto 100% repeat-x;
  }

  .footer-info__inner {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .footer-info__address span {
    display: block;
    margin-right: 0;
    margin-top: 0;
  }

  .footer-info__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  /* ---- Page top button ---- */
  .page-top {
    right: 12px;
    bottom: 100px;
  }
}
