@charset "UTF-8";
/*  /////////////////////////////////////////////////////////////// 
       共通レイアウト                      
//////////////////////////////////////////////////////////////// */
a {
  text-decoration: none;
  color: #000000;
}
/*基本色
----------------------
#82B140;
*/
.red {
  color: #F7060A;
}
.red_s {
  color: #F7060A;
  font-size: 10px;
}
/*ナビゲーション　検索*/
section .koe_navi {}
/*注意事項*/
.tyuui {
  color: red;
  margin-left: 20px;
}
.font_s {
  font-size: 12px;
}
ul {
  margin-top: 0;
  padding-top: 0;
}
/*スペース*/
.space_l_3px {
  margin-left: 3px;
}
/*スペース*/
.space_l_15px {
  margin-left: 15px;
}
/*スペース*/
.space_l_50px {
  margin-left: 50px;
}
.space_r_10px {
  margin-right: 10px;
}
/* #5AB4BD;　　基本色*/
/*hr色付け
--------------------------------------*/
hr { /*色指定 主にヘッダーサブメニューで使用*/
  height: 1px;
  background-color: #5AB4BD; /*基本色*/
  border: none;
  margin: 0px 0px;
}
/*上下間隔大*/
hr.w_5p {
  height: 1px;
  background-color: #82B140; /*基本色*/
  border: none;
  margin: 5px 0px
}
/*下にスペース
--------------------------------------*/
.common_btm_space_6px {
  margin-bottom: 6px;
}
.common_btm_space_50px {
  margin-bottom: 50px;
}
/*仕様メモ　完成後に消す
-------------------------------*/
.commn_ul_siyou {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 60px;
}
/*END 仕様メモ-------------*/
/*詳細（+）太く*/
.commn_f_bold {
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
}
/* ==============================================
戻るボタン
=============================================== */
.commn_back_btn_area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: solid 0px;
}
.commn_back_btn_area a {
  text-decoration: none;
}
.commn_back_btn {
  margin: 0px 0 0 auto;
  width: 90px;
  text-align: center;
  padding: 6px 0;
  /*cursor: pointer;*/
  border-radius: 4px;
  /*background-color: #94F2A4;*/
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}
.commn_back_btn:hover {
  background-color: #82B140; /*基本色*/ ;
  color: #ffffff;
}
/* ==============================================
メインタイトル　サブタイトル
=============================================== */
.com_main_title {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  /*adobe font A-OTF じゅん Pro-*/
  font-family: a-otf-jun-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  border: solid 0px;
}
.com_main_title .txt {
  margin-top: 10px;
  font-size: 24px;
  line-height: 30px;
  color: #82B140; /*基本色*/
}
/* ==============================================
分類番号
=============================================== */
/*========================================
番号（四角に数字） 
  <div class="shikaku_number_flex">
		<div class="shikaku_number"><span>2</span></div><div class="txt">給食数管理</div>
    　</div>
左）番号　右）文章
======================================== */
.shikaku_number_flex {
  width: 100%;
  display: flex;
  align-items: center; /*上下中央で並べる*/
  margin: 0 0 30px 0;
  border: solid 0px;
}
/*四角*/
.shikaku_number {
  position: relative;
  display: inline-block;
  /*margin: 20px 0;*/
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 0%;
  background: #82B140; /*基本色*/
}
/*番号*/
.shikaku_number span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
/*幅指定*/
.shikaku_number_flex .txt {
  text-justify: inter-ideograph; /* IEで必要 */
  text-justify: inter-character; /* Firefoxで必要 */
  text-align: justify;
  font-size: 18px;
  flex: 1;
}

/*===============================================
　スムーズ　アップ　ボタン（上へ戻る） 円形
=============================================== */
.common_smooth_up {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.common_smooth_up_btn {
  display: inline-block;
  /*margin-left: 50%;*/
  margin-bottom: 30px;
  text-decoration: none;
  color: #82B140; /*基本色*/
  width: 50px;
  height: 45px;
  padding-top: 5px;
  line-height: 20px;
  border-radius: 50%;
  border: solid 2px #82B140; /*基本色*/
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  transition: .4s;
}
.common_smooth_up_btn:hover {
  background: #b3e1ff;
  color: white;
}
/* ディバイスサイズ設定
============================================= */
@media (max-width: 749px) {
  /* ==============================================
戻るボタン
=============================================== */
  .commn_back_btn_area {
    display: none;
  }
  /*リード　幅600px 右にイラストが入るため*/
  .common_lead_w600 {
    width: 100%;
  }
  /*リード　画像あり
----------------------------------------------------------- */
  .common_lead_flex {
    flex-direction: column;
  }
}
/* タブレット用 */
@media (min-width: 750px) and (max-width: 1023px) {}
/* Desktop View------------------------------- */
@media (min-width: 1024px) {}