@charset "utf-8";
/*====================================================================
 clearfix
====================================================================*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
  overflow: hidden;
}
* html .clearfix {
  height: 1px;
  overflow: hidden;
}
html.fixed, body.fixed {
  overflow: hidden;
  width: 100%;
}
.sp_view {
  display: none;
}
.pc_view {
  display: block;
}
.hover {
  transition: opacity 0.4s ease;
}
.hover:hover {
  opacity: 0.8;
}
/*============================
         header
============================*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff; /* 最初は真っ白 */
}
#wrapper {
  position: relative;
  width: 100%;
}
/* ローディング背景 */
#loader {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  background-image: none; /* 最初は背景なし → アニメで追加 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#none_loader {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#logo-img {
  display: block;
  width: 258px;
  opacity: 0; /* GSAPで1に */
  transform: scale(1);
}
#none_logo {
  display: block;
  width: 258px;
  text-align: center;
  margin: 0px auto 50px;
}
#none_logo img {
  display: block;
  width: 258px;
  height: 250px;
}
#mv_copy, #l_mv_copy {
  color: #FFFFFF;
  text-align: center;
  transform: translateY(30px); /* 下から上に出す */
  margin-top: 20px;
}
#mv_copy h1, #l_copy01 {
  opacity: 0;
  text-align: center;
  font-size: 46px;
  line-height: 1.3em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
#mv_copy h2, #l_copy02 {
  opacity: 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 400;
}
/*-----------------------------------*/
/* ヘッダー全体 */

#hamburger {
  display: none;
}

#global-header {
  opacity: 0; /* 最初はアニメーションで出すため */
  position: fixed; /* 常に上部に固定 */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  background: transparent; /* 背景透明なら必要に応じて調整 */
  transition: background-color 0.5s ease; /* フォールバック */
}
#global-header.bg-active {
  background-color: rgba(25, 35, 80, 0.40);
}
/* ロゴを左寄せ */
#h_logo img {
  display: block;
  height: auto;
  max-width: 100%;
}
/* ナビを右寄せ */
#global-nav {
  display: flex;
  align-items: center;
  gap: 30px; /* メニューとアイコンの間隔 */
}
/* メニュー（横並び） */
#h_menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
#h_menu li {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 0 12px;
}
#h_menu li.sp_view {
  display: none;
}



/* 仕切り線 ｜ */
#h_menu li:not(:last-child):not(.li_news)::after {
  content: "|";
  color: #fff;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
/* 下線アニメーション */
#h_menu li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
#h_menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
#h_menu li a:hover::after {
  width: 100%;
}
/* アイコンリスト（横並び） */
#h_icon {
  display: flex;
  align-items: center;
  gap: 15px;
}
#h_icon li {
  display: inline-block;
}
#h_icon li a img {
  transition: opacity 0.3s ease;
}
#h_icon li a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 1231px) and (min-width: 1156px) {
	#h_menu {
  	gap: 10px;
	}
	#h_menu li {
		font-size: 15px;
		padding: 0 10px;
	}
}
@media screen and (max-width: 1155px) and (min-width: 1092px) {
	#h_menu {
  	gap: 5px;
	}
	#h_menu li {
		font-size: 14px;
		padding: 0 5px 0 10px;
	}
	#h_menu li:not(:last-child):not(.li_news)::after {
		content: "|";
		color: #fff;
		position: absolute;
		right: -5px;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media screen and (max-width: 1091px) and (min-width: 830px) {
	#h_menu {
  	gap: 5px;
	}
	#h_menu li {
		font-size: 14px;
		padding: 0 5px 0 10px;
	}
	#h_menu li:last-child,#h_menu li.li_news {
		display: none;
	}
	#h_menu li:not(:last-child):not(.li_news)::after {
		content: "|";
		color: #fff;
		position: absolute;
		right: -5px;
		top: 50%;
		transform: translateY(-50%);
	}
	#h_icon {
		display: none;
	}
}
@media screen and (max-width: 829px) and (min-width: 769px) {
	#h_menu {
  	gap: 5px;
	}
	#h_menu li {
		font-size: 13px;
		padding: 0 5px 0 10px;
	}
	#h_menu li:last-child,#h_menu li.li_news {
		display: none;
	}
	#h_menu li:nth-child(3) {
		display: none;
	}
	#h_menu li:not(:last-child):not(.li_news)::after {
		content: "|";
		color: #fff;
		position: absolute;
		right: -5px;
		top: 50%;
		transform: translateY(-50%);
	}
	#h_icon {
		display: none;
	}
}


/*-----------------------------------*/
#main-content {
  opacity: 0;
  padding: 0px 0px 0px;
}
#mission {
  clear: both;
  width: 100%;
  padding: 100px 0px 140px 0px;
  background-image: url("../images/bg_mission01.svg"), url("../images/bg_mission02.svg"), url("../images/bg_mission03.svg");
  background-repeat: no-repeat;
  background-size: 540px auto, 400px auto, 498px auto;
  background-position: left -150px top 20px, right -100px top -30px, right bottom -30px;
}
.title {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.title .line {
  width: 70px; /* 最終サイズ基準 */
  margin: 0 auto 30px; /* 中央配置 */
  text-align: left; /* spanを左寄せ */
  overflow: hidden; /* 念のため */
}
.title .line span {
  display: block;
  width: 0; /* 初期は0 */
  height: 8px;
  background-color: #5c7be7;
}
#contact .title .line span {
  background-color: #4fa743;
}
.title h2 {
  font-size: 40px;
  font-weight: 500;
  opacity: 0; /* 下からフェードイン用 */
  transform: translateY(10px);
  transition: all 0.3s;
}
.title h2 span {
  display: block;
  font-size: 20px;
  margin-top: 12px;
}
.title .bt_more {
  opacity: 0;
  color: #000;
  font-weight: 800;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%); /* いったん中央 */
  margin-left: 300px;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* テキストと矢印の間の間隔 */
  text-decoration: none;
  transition: all 0.5s;
}
.title .bt_more::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../images/arr_more.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}
/* ホバーで矢印が右にスライド */
.title .bt_more:hover {
  color: #9a1f53;
  transition: all 0.5s;
}
.title .bt_more:hover::after {
  transform: translateX(6px);
}
/* mission_wrap */
#mission_wrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
/* mi_mark */
.mi_mark {
  width: 455px;
  margin-left: 30px;
  text-align: center;
}
#tx_company01 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
  margin-top: 15px;
}
#tx_company01 span {
  color: #9a1f53;
}
#tx_company02 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
}
/* mi_text */
.mi_text {
  width: 642px;
	padding-right: 20px;
}
.mi_text h3 {
  width: 100%;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 1.4em;
}
/* アンダーライン2重 (薄い→濃い) */
.mi_text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 2px;
  background: #dee5fa;
  z-index: 1;
}
.mi_text h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 114px;
  height: 2px;
  background: #586baf;
  z-index: 2;
}
.mi_text p {
  font-size: 17px;
  line-height: 2.2em;
  letter-spacing: 0.01em;
  padding-left: 4px;
}
/*-----------------------------------*/
#aboutus {
  clear: both;
  width: 100%;
  padding: 100px 0px 100px 0px;
  background-color: rgba(236, 240, 241, 0.3);
}
#aboutus_total {
  clear: both;
  width: 1170px;
  height: 480px;
  margin: 0 auto 60px;
  background: url("../images/maru_about.webp") no-repeat 0 0;
  background-size: 100% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 中央寄せ */
  align-items: flex-start;
}
#aboutus_total > div {
  position: relative;
}
/* 上段3つ */
.abo_001, .abo_002, .abo_003 {
  margin: 90px -15px 0px; /* 両端を重ねるため、合計で約60pxのオーバーラップ */
}
/* 下段1つ */
.abo_total {
  display: block;
  width: 100%;
  text-align: center;
  margin: -20px auto 0px; /* 上に余白 */
}
.abo_001, .abo_002, .abo_003, .abo_total {
  opacity: 0;
}
.abo_001 {
  transform: translateX(-50px); /* 左から */
}
.abo_002 {
  transform: translateY(-50px); /* 上から */
}
.abo_003 {
  transform: translateX(50px); /* 右から */
}
.abo_total {
  transform: translateY(50px); /* 下から */
}
.underline-title {
  clear: both;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  margin: 0px auto 70px;
}
.underline-title span {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  padding-bottom: 5px;
  --line-width: 0%;
}
.underline-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--line-width);
  height: 10px;
  background-color: #dee5fa;
}
#best_keiei {
  clear: both;
  width: 1170px;
  border-radius: 30px;
  border: 1px solid #192350;
  box-sizing: border-box;
  padding: 35px 50px 45px;
  margin: 0px auto 70px;
}
#best_keiei h2 {
  font-size: 34px;
  color: #192350;
  font-weight: 600;
  line-height: 1.2em;
  background: url("../images/ic_sankaku.svg") no-repeat 0px 10px;
  background-size: 100px auto;
  box-sizing: border-box;
  letter-spacing: 0.16em;
  padding: 0px 0px 0px 120px;
  margin-bottom: 30px;
}
#best_keiei h2 span {
  font-size: 46px;
  color: #b7144f;
  font-weight: 700;
}
#best_keiei p {
  font-size: 17px;
  line-height: 2.0em;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin: 0px 0px 30px 0px;
}
#best_keiei h3 {
  width: 600px;
  background-color: #dee5fa;
  border-radius: 10px;
  font-size: 23px;
  line-height: 1.3em;
  color: #000000;
  font-weight: 700;
  box-sizing: border-box;
  padding: 30px 30px 30px;
  margin: 0px 0px 0px 0px;
}
#best_keiei h3 span {
  color: #b7144f;
}
.keiei_wrap {
  clear: both;
  width: 100%;
  height: auto;
  position: relative;
}
.img_zu {
  position: absolute;
  top: 0px;
  right: 0px;
}
.work {
  clear: both;
  width: 1170px;
  margin: 0px auto 80px;
}
.work h2 {
  display: flex;
  align-items: center;
  clear: both;
  width: 100%;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #FFFFFF;
  vertical-align: middle;
  line-height: 1.1em;
  padding: 20px 30px 20px 100px;
  box-sizing: border-box;
  background-color: #192350;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 0 auto 40px;
}
.work h2 span {
  font-size: 20px;
  padding-left: 20px;
  letter-spacing: 0.05em;
}
.work h2#work_001 {
  background-image: url("../images/ic_abo01.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: auto 56px;
}
.work h2#work_002 {
  background-image: url("../images/ic_abo02.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: auto 50px;
}
.work h2#work_003 {
  background-image: url("../images/ic_abo03.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: auto 50px;
}
.work_flex {
  display: flex;
  justify-content: center;
}
.wf_text {
  width: 430px;
}
.wf_text p {
  font-size: 17px;
  line-height: 1.9em;
  font-weight: 600;
  padding: 10px 80px 0px 0px;
  margin-bottom: 30px;
}
.wf_text ul {
  margin: 0px 0px 40px 0px;
}
.wf_text ul li {
  font-size: 22px;
  font-weight: 700;
  padding: 0px 0px 4px 38px;
  margin-bottom: 10px;
  background: url("../images/ic_check.svg") no-repeat 2px 0px;
  background-size: 24px auto;
}
.wf_text ul li span.nado {
  font-size: 16px;
  padding-left: 10px;
}
.wf_text h3 {
  font-size: 26px;
  line-height: 1.1em;
  font-weight: 600;
  color: #192350;
  padding: 25px 30px 30px 50px;
  box-sizing: border-box;
  border-top: 1px solid #192350;
  border-bottom: 1px solid #192350;
  border-left: 1px solid #192350;
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
}
.wf_photo {
  width: 700px;
}
/*-----------------------------------*/
#service {
  clear: both;
  width: 1170px;
  margin: 0px auto 60px;
}
.service_wrap {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.service_wrap h2 {
  display: inline-block;
  font-size: 32px;
  line-height: 1.1em;
  font-weight: 600;
  color: #FFF;
  margin: 0 auto -20px;
  background-image: url("../images/ic_ushi.svg"), url("../images/ic_ushi.svg");
  background-size: auto 40px;
  background-repeat: no-repeat;
  background-position: 40px center, right 40px center;
  background-color: #192350;
  padding: 20px 130px 20px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.b_blue {
  clear: both;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 70px 70px 40px;
  background-color: rgba(190, 202, 245, 0.3);
}
.b_blue .dl_flex {
  display: flex;
  justify-content: space-between;
}
.b_blue dl {
  display: inline-block;
  width: 520px;
  margin-bottom: 10px;
}
.b_blue dl dt {
  display: flex;
  align-items: flex-start;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 0px 0px 0px 24px;
  background: url("../images/ic_maru.svg") no-repeat 0px 7px;
  background-size: 15px auto;
  margin-bottom: 10px;
}
.b_blue dl dt span {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 1.0em;
  font-weight: 900;
  color: #2e469a;
  padding: 4px 8px;
  background-color: #becaf5;
  margin: 5px 0px 0px 10px;
}
.b_blue dl dd {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6em;
  letter-spacing: 0.025em;
  padding: 0px 0px 30px 25px;
}
.clear_flex {
  display: block;
  width: 100%;
}
.b_blue h3 {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
  color: #FFF;
  padding: 12px 0px;
  border-radius: 20px;
  background-color: #7a87c4;
  margin: 0px auto 20px;
}
.b_blue p.kome {
  padding: 0px 0px 20px 28px;
  font-size: 15px;
  letter-spacing: 0.025em;
  line-height: 1.4em;
  background: url("../images/ic_kome.svg") no-repeat 10px 6px;
  background-size: 10px auto;
}
/**/
#news {
  clear: both;
  width: 100%;
  padding: 100px 0px 100px 0px;
}
.wrap_news {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 50px; /* 横の間隔 */
  flex-wrap: wrap; /* はみ出し対策 */
}
/* 各ニュースリンク */
.wrap_news a {
  display: block;
  text-decoration: none;
  color: #000;
  flex: 1 1 calc(33.333% - 40px); /* 3分割 - gap */
  max-width: 350px;
  transition: transform 0.5s ease;
  background: #fff;
}
/* サムネイル */
.wrap_news .thumbnail {
  border: 1px solid #ccc;
  overflow: hidden;
  margin-bottom: 10px;
}
.wrap_news .thumbnail img {
  width: 100%;
	height: auto;
  display: block;
	max-height: 210px;
  transition: transform 0.5s ease;
}
.wrap_news a:hover .thumbnail img {
  transform: scale(1.10); /* ふわっと拡大 */
}
/* 日付とカテゴリ */
.wrap_news .date {
  display: flex;
  align-items: center; /* 縦中央 */
  gap: 10px;
  margin: 12px 6px 8px;
  font-size: 16px;
  color: #555;
}
.wrap_news .date p {
  margin: 0;
}
.wrap_news .date span {
  font-size: 16px;
  font-weight: 800;
  padding: 4px 6px 8px;
  border-radius: 2px;
  display: inline-block;
}
/* カテゴリ別色 */
.wrap_news .cat_01,.wrap_news .cat_news {
  background: #becaf5;
  color: #2e469a;
}
.wrap_news .cat_02,.wrap_news .cat_column {
  background: #b9dcb4;
  color: #2c3a1d;
}
/* タイトル */
.wrap_news h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  margin: 0 0px 8px 6px;
  color: #000000;
  transition: all 0.5s;
}
.wrap_news a:hover h3 {
  color: #9a1f53;
  transition: all 0.5s;
}

/*-----------------------------------*/
#contact {
  clear: both;
  width: 100%;
  padding: 100px 0px 100px 0px;
  background-color: rgba(236, 240, 241, 0.3);
}
.attention {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 70px;
}
/* contact_banner全体 */
#contact_banner {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px; /* liの横間隔 */
  padding: 0;
  list-style: none;
  flex-wrap: wrap; /* はみ出し対策 */
}
/* 各aリンク */
#contact_banner li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 530px;
  height: 200px;
  border-radius: 40px;
  text-align: center;
  font-size: 38px;
  line-height: 1.0em;
  color: #fff;
  position: relative;
  padding-top: 10px;
  box-sizing: border-box;
  /* ホバーアニメーション用 */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 1.5s ease;
  background-size: 200% 200%; /* グラデーションを拡大して流す */
  text-decoration: none;
}
/* cb_02 テキストサイズ調整 */
#contact_banner li.cb_02 a {
  font-size: 30px;
}
/* アイコン画像 */
#contact_banner li a::before {
  content: '　';
  display: block;
  width: 100%;
  height: 78px;
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease; /* アイコン浮き */
}
/* 個別アイコン指定 */
#contact_banner li.cb_01 a::before {
  background-image: url('../images/icon_cb01.svg');
  background-size: auto 60px;
}
#contact_banner li.cb_02 a::before {
  background-image: url('../images/icon_cb02.svg');
  background-size: auto 78px;
}
/* 背景色＋グラデーション用 */
#contact_banner li.cb_01 a {
  background: linear-gradient(135deg, #4fa743, #66c255, #4fa743);
}
#contact_banner li.cb_02 a {
  background: linear-gradient(135deg, #b46c8a, #d47bb5, #b46c8a);
}
/* ホバー時アニメーション */
#contact_banner li a:hover {
  transform: scale(1.05); /* 少し拡大 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 浮き感 */
  background-position: 100% 0; /* グラデーション流れ */
}
#contact_banner li a:hover::before {
  transform: translateY(-8px); /* アイコン浮き */
}

/*-----------------------------------*/
#company {
  clear: both;
  width: 100%;
  padding: 100px 0px;
}
/* wrap_company全体 */
.wrap_company {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* 両端寄せ */
  gap: 20px;
  flex-wrap: wrap; /* はみ出し対策 */
  box-sizing: border-box;
}
/* com_text */
.wrap_company .com_text {
  width: 710px;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.4em;
}
/* dl全体 */
.wrap_company .com_text dl {
  padding: 18px 0;
  border-bottom: 1px dashed#cbcbcb;
  display: flex;
  align-items: flex-start;
}
/* dt */
.wrap_company .com_text dt {
  width: 120px;
  flex-shrink: 0;
  font-weight: 600;
  padding-left: 10px;
}
/* dd */
.wrap_company .com_text dd {
  margin: 0;
  padding-left: 10px;
  flex: 1;
}
/* com_photo */
.wrap_company .com_photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
/* 画像 */
.wrap_company .com_photo img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
/* aリンク */
.wrap_company .com_photo a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  background-color: #192350;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 10px 20px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.wrap_company .com_photo a:hover {
  background-color: #353535;
}

/*-----------------------------------*/
#footer {
  clear: both;
  width: 100%;
  padding: 40px 0px 40px;
  text-align: center;
  background-color: #192350;
}
#f_logo {
  margin-bottom: 40px;
}
#footer p#copyright {
  font-size: 14px;
  line-height: 1.2em;
  color: #FFFFFF;
}