
@charset   "UTF-8";
@media all and (min-width:960px){


.box{
  position   : relative;
  max-width  : 100%;
  height     : 900px;
  margin     : auto;
  overflow   : hidden;
}

/* 波・曲線・上 */
svg.wave-ue{
  background-size:cover;
  width:100%;
  display:block;
  position: absolute;
    bottom: 0;
}

/* 波・曲線・下*/
svg.wave-shita{
  background-size:cover;
  width:100%;
  display:block;
  position: absolute;
  top: 0;
}
    
/* ヘッダースライド レスポンシブ画像 */
img.p-25{
 width:  100%;
}
/* 画像・レスポンシブ */
img.p-100{
  width: 100%;
}

/* タイトル・バナー(wide・medium)・レスポンシブ */
img.mw-100{
  width: 100%;
}
/* タイトル・バナー(smart)・レスポンシブ */
img.s-100{
  display: none;
}

/* 事業所紹介横長フェード レスポンシブ画像 */
img.aa{
  width: 100%;
}

/* 丸画像 吹き出し 文字 見出し */
.midashi{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 90%;
  font-weight: bold;
  color: white;
  border-bottom: 1px dashed;
  word-break: keep-all;
  display: block;
}
/* 丸画像 吹き出し 文字 内容 */
.maru-naiyo{
  width: 85%;
  padding-bottom: 5%;
  margin-left: auto;
  margin-right: auto;
  font-size: 80%;
  color: white;
  display: block;
}
/* 丸画像 吹き出し 文字 リンク */
.pop-link{
  text-decoration: none;
  background-position: 0 0;
  background-size: auto 200%;
}
.pop-link:hover{
  text-decoration: none;
  background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(46,204,113,1) 50%);
  background-position: 0 100%;
  background-size: auto 200%;
  transition: .1s;
}

a.pop-link:link{
  color: #ffffff;
  text-decoration: none;
}
a.pop-link:visited{
color: #ffffff;
text-decoration: none;
}

/* 丸画像『販売メニューの紹介』マウスホバー効果 吹き出し */
.maru-oya-1 {
  margin-top: -2%;
  position   : relative; 
  font-size: 13pt;
}

.maru-balloon-1 {
  /*バルーンのスタイルです*/
 
  /*表示位置を指定します*/
  position: absolute;
  margin-top: -19%;
  top: 50%;
  left: 10%;
  /*非表示にしておきます*/
  display: none;
  opacity: 0;
  /*表示スタイルを指定します*/
  width: 10%;
  min-width: 150px;
  height: auto;
  min-height: 150px;
  text-align: left;
  padding: 20px 15px 20px 15px;/* 設定順番:上・右・下・左; */
  margin-bottom: 20px;
  border-radius: 85px;
  line-height: 1.6em;
  color: white;
  background-color: rgba(107, 71, 33, 0.9);
  /*影をつけて見栄えを良くします*/
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  /*アニメーションを指定します*/
  animation-duration: 0.1s;
  animation-name: show-maru-balloon-1;
}

.maru-oya-1:hover .maru-balloon-1 {
  /*マウスホバー時のバルーンのスタイルです*/

  /*表示するようにします*/
  display: inline-block;
  opacity: 1;
  top: -40px;
}

.maru-balloon-1::before {
  /*吹き出し部分の三角形を表示します*/
  content: "";
  position: absolute;
  top: 97%;
  left: 45%;
  border: 10px solid transparent;
  border-top: 15px solid rgba(107, 71, 33, 0.7);
}

@keyframes show-maru-balloon-1 {
  /*アニメーションを定義します*/
  0% {
    display: none;
    opacity: 0;
    top: -30px;
  }
  1% {
    display: inline-block;
    opacity: 0;
    top: -30px;
  }
  100% {
    display: inline-block;
    opacity: 1;
    top: -40px;
  }
}

/* 丸画像『日々の活動紹介』マウスホバー効果 吹き出し */
.maru-oya-2 {
  margin-top: -2%;
  position   : relative; 
  font-size: 14pt;
}

.maru-balloon-2 {
  /*バルーンのスタイルです*/
 
  /*表示位置を指定します*/
  position: absolute;
  margin-top: -18%;
  top: 60%;
  left: 30%;
  /*非表示にしておきます*/
  display: none;
  opacity: 0;
  /*表示スタイルを指定します*/
  width: 10%;
  min-width: 120px;
  height: auto;
  min-height: 120px;
  padding: 20px 15px 20px 15px;/* 設定順番:上・右・下・左; */
  border-radius: 85px;
  line-height: 1.4em;
  color: white;
  background-color: rgba(255, 90, 114, 0.9);
  /*影をつけて見栄えを良くします*/
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  /*アニメーションを指定します*/
  animation-duration: 0.3s;
  animation-name: show-maru-balloon-2;
}

.maru-oya-2:hover .maru-balloon-2 {
  /*マウスホバー時のバルーンのスタイルです*/

  /*表示するようにします*/
  display: inline-block;
  opacity: 1;
  top: -40px;
}

.maru-balloon-2::before {
  /*吹き出し部分の三角形を表示します*/
  content: "";
  position: absolute;
  top: 97%;
  left: 45%;
  border: 10px solid transparent;
  border-top: 15px solid rgba(255, 90, 114, 0.7);
}

@keyframes show-maru-balloon-2 {
  /*アニメーションを定義します*/
  0% {
    display: none;
    opacity: 0;
    top: -30px;
  }
  1% {
    display: inline-block;
    opacity: 0;
    top: -30px;
  }
  100% {
    display: inline-block;
    opacity: 1;
    top: -40px;
  }
}
/* 丸画像『運営事業所の紹介』マウスホバー効果 吹き出し */
.maru-oya-3 {
  margin-top: -2%;
  position   : relative; 
  font-size: 14pt;
}

.maru-balloon-3 {
  /*バルーンのスタイルです*/
 
  /*表示位置を指定します*/
  position: absolute;
  margin-top: -17%;
  top: 60%;
  right: 30%;
  /*非表示にしておきます*/
  display: none;
  opacity: 0;
  /*表示スタイルを指定します*/
  width: 10%;
  min-width: 135px;
  height: auto;
  min-height: 120px;
  padding: 20px 15px 20px 15px;/* 設定順番:上・右・下・左; */
  border-radius: 85px;
  line-height: 1.6em;
  color: white;
  background-color: rgba(0, 118, 53, 0.9);
  /*影をつけて見栄えを良くします*/
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  /*アニメーションを指定します*/
  animation-duration: 0.3s;
  animation-name: show-maru-balloon-3;
}

.maru-oya-3:hover .maru-balloon-3 {
  /*マウスホバー時のバルーンのスタイルです*/

  /*表示するようにします*/
  display: inline-block;
  opacity: 1;
  top: -40px;
}

.maru-balloon-3::before {
  /*吹き出し部分の三角形を表示します*/
  content: "";
  position: absolute;
  top: 97%;
  left: 45%;
  border: 10px solid transparent;
  border-top: 15px solid rgba(0, 118, 53, 0.7);
}

@keyframes show-maru-balloon-3 {
  /*アニメーションを定義します*/
  0% {
    display: none;
    opacity: 0;
    top: -30px;
  }
  1% {
    display: inline-block;
    opacity: 0;
    top: -30px;
  }
  100% {
    display: inline-block;
    opacity: 1;
    top: -40px;
  }
}

/* 丸画像『法人の紹介』マウスホバー効果 吹き出し */
.maru-oya-4 {
  margin-top: -2%;
  position   : relative; 
  font-size: 14pt;
}

.maru-balloon-4 {
  /*バルーンのスタイルです*/
  
  /*表示位置を指定します*/
  position: absolute;
  margin-top: -16%;
  top: 60%;
  right: 10%;
  /*非表示にしておきます*/
  display: none;
  opacity: 0;
  /*表示スタイルを指定します*/
  width: 10%;
  min-width: 130px;
  height: auto;
  min-height: 120px;
  padding: 20px 15px 20px 15px;/* 設定順番:上・右・下・左; */
  border-radius: 85px;
  line-height: 1.4em;
  color: white;
  background-color: rgba(82, 170, 250, 0.9);
  /*影をつけて見栄えを良くします*/
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  /*アニメーションを指定します*/
  animation-duration: 0.3s;
  animation-name: show-maru-balloon-4;
}

.maru-balloon-4 .maru-naiyo{
  width: 92%;
}

.maru-oya-4:hover .maru-balloon-4 {
  /*マウスホバー時のバルーンのスタイルです*/

  /*表示するようにします*/
  display: inline-block;
  opacity: 1;
  top: -40px;
}

.maru-balloon-4::before {
  /*吹き出し部分の三角形を表示します*/
  content: "";
  position: absolute;
  top: 97%;
  left: 45%;
  border: 10px solid transparent;
  border-top: 15px solid rgba(82, 170, 250, 0.7);
}

@keyframes show-maru-balloon-4 {
  /*アニメーションを定義します*/
  0% {
    display: none;
    opacity: 0;
    top: -30px;
  }
  1% {
    display: inline-block;
    opacity: 0;
    top: -30px;
  }
  100% {
    display: inline-block;
    opacity: 1;
    top: -40px;
  }
}

/* ニュース・横長背景 */
#news-haikei{
  width: 100%;
  height: auto;
  padding-top: 130px;
  padding-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  background-color: #f9faf4;
  background-image: url("wave-ue.png"), 
                    url("news-kami2.jpg");
  background-repeat: no-repeat,
                     repeat;
  background-position: top;
  background-size: 100%,
                    40%;
  overflow: hidden;
  position: relative;
}  

/* 競輪とオートレースの補助事業 */
#hojo-all{
  width: 100%;
  position: absolute;
  top: 40%;
  left: 84%; 
}

#hojo-all img{
  width: 15%;
  max-width: 234px;
  margin-bottom: 5px;
  display: block;
}

/* ニュースの上のお知らせ */
#info-all{
  width: 90%;
  max-width: 1100px;
  text-align: left;
  margin: 0 auto;
  padding-top: 10px;
}

#info-all a{
 color: #000;
}

.info-title{
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  border-bottom: solid 2px #5F9B4E;
}
.info-naiyo{
  width: 100%;
  text-align: left;
  font-size: 15px;
  margin-top: 5px;
}

/* ニュース・親BOX */
#news-box{
  width : 65%; 
  height : 450px;
  padding: 0px 10% 1% 10%;/* 設定順番:上・右・下・左; */
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 0px rgba(0,0,0,.3) inset;
  overflow: auto;
  -ms-overflow-style:none;
}
#news-box {
 -ms-overflow-style: none; /* IE対策 */
      scrollbar-width: none; /* Firefox対策 */
}
#news-box::-webkit-scrollbar { /* Google Chrome対策 */
 display: none;
}
	
/* ニュース・リンク通常時 色指定 */
#news-box a:link{
   color: black;
}
/* ニュース・リンク訪問済み 色指定 */
#news-box a:visited{
   color: black;
}

/* ニュース・タイトルバナー画像 */
.news-title{
  width: 90%;
  max-width: 1100px; 
  min-width: 65%;
  height : auto;
  text-align: center;
  margin-top: 20;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-top: 10px;
}
/* ニュース・アイコン・『Facebook』 */
.news-facebook{
   width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 10.5pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align:center;
    display: block;
    color: #FFFFFF;
    background: #495998;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・『ブログ』 */
.news-blog{
    width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 9pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align:center;
    display: block;
    color: #FFFFFF;
    background: #F75D71;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・『法人本部』 */
.news-houjin{
    width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 9pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align:center;
    display: block;
    color: #FFFFFF;
    background: #008DDD;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・『ワンセルフ』 */
.news-oneself{
    width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 10.5pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align:center;
    display: block;
    color: #FFFFFF;
    background: #FF9799;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・『月とらいおん』 */
.news-tsuki-lion{
    width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 9pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align:center;
    display: block;
    color: #FFFFFF;
    background: #5F9B4E;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・『心愛 』*/
.news-kokoa{
    width: 100px;
    height: auto;
    padding: 8px;
    margin: 0 auto;
    font-size: 9pt;
    line-height: 1.2em;
    text-decoration: none;
    text-align: center;
    display: block;
    color: #FFFFFF;
    background: #FFC84D;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
/* ニュース・アイコン・日付・文字・親BOX */
dl{
  width: 98%;
  height: auto;
  padding: 20px 1% 0px 1%;/* 設定順番:上・右・下・左; */
  border-bottom: 1px dashed;
  color : #005500;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(210,180,140,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: 0.5s;
  overflow: hidden;
  display: block;
}
dl:hover {
  background-color : #D2B48C;
  background-position: -100% 0;
}

/* ニュース・アイコン・日付 */
dt{
   width: 26%;  
   height: auto;
   float: left;
   margin: auto; 
   font-size: 12pt;
   text-align: left;
   overflow: hidden;
}
/* ニュース・内容 */
dd{
   width: 48%;
   height: auto;
   float: left;
   margin: 0px;
   padding-bottom: 20px;
   font-size: 10pt;
   text-align: left; 
   text-decoration : none; 
   text-indent: 1em;
   line-height: 2em;
   letter-spacing: 0.3em;
   color: #000;
   overflow: hidden;
}   
dd:hover {
  font-weight: 600;
}

/* 事業所紹介 親BOX 横長背景*/
#jigyousyo{
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto; 
  background-color: #fdf9e8; 
  background-image: url("wave-shita.png"), 
                    url("ki.jpg");
  background-repeat: no-repeat,
                     repeat;
  background-position: bottom;
  background-size: 100%,
                    10%;      
  overflow: hidden;
}
    
/* 事業所紹介・タイトルバナー画像 */
.jigyousyo-title{
  width: 90%;
  max-width: 1100px; 
  min-width: 65%;
  height : auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10;
  padding-bottom: 10px;
  text-align: center;
  
}

/* 事業所紹介・画像 親BOX */
.jigyousyo-shokai{
  width : 90%;
  height : auto;
  float: left;
  margin-left: 5%;
  text-align: center;
}
/* 事業所紹介『月とらいおん』レスポンシブ画像 */
.jigyousyo-gazo1{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
}
/* 事業所紹介『月とらいおん』レスポンシブ画像マウスホバー */
.jigyousyo-gazo1:hover{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
   opacity: 0.6;/* 透過率50% */
   transition: 0.8s;/* 0.2秒アニメーション */
   -webkit-transition: 0.2s;
}    
 /* 事業所紹介『oneself』レスポンシブ画像 */
.jigyousyo-gazo2{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
}
/* 事業所紹介『oneself』レスポンシブ画像マウスホバー */
.jigyousyo-gazo2:hover{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
   opacity: 0.6;/* 透過率50% */
   transition: 0.8s;/* 0.2秒アニメーション */
   -webkit-transition: 0.2s;
}    
/* 事業所紹介『心愛』レスポンシブ画像 */
.jigyousyo-gazo3{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
}
/* 事業所紹介『心愛』レスポンシブ画像マウスホバー */
.jigyousyo-gazo3:hover{
   width: 27%;
   max-width: 350px;
   min-width: 20%;
   height: auto;
   padding: 25px 1.5% 15px 1.5%;/* 設定順番:上・右・下・左; */
   display: inline-block; /* インラインブロック化 */
   vertical-align: top;   /* 上端を揃える */
   opacity: 0.6;/* 透過率50% */
   transition: 0.8s;/* 0.2秒アニメーション */
   -webkit-transition: 0.2s;
}    

img.jigyousyo-gazo-back{
width: 15%;
position: absolute;
left: 0;
}
img.jigyousyo-gazo-back2{
width: 14%;
position: absolute;
right: 10;
}

/* 事業所利用内容紹介・横長画像 */
#saiwai-yokonaga{
  width: 100%;
}
/* 事業所利用内容紹介・横長レスポンシブ画像 */
img.haba-100{
  width: 100%;
}

/* contents メニュー紹介・横長背景  */
#contents{
  width : 100%;  
  height : auto;
  margin-left : auto;
  margin-right : auto;
  padding-top: 40px;
  text-align: center;
  overflow: hidden;
}
 

/* メニュー紹介・タイトルバナー画像 */
.item-title{
  width: 90%; 
  max-width: 1100px;
  min-width: 65%;
  height : auto;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
}

/* メニュー紹介説明 */
.item-moji{
  width : 58%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  text-align : left;
  text-indent: 1em;
  line-height: 2.2em;
  font-size: 14pt;
  font: 550000;
  margin-bottom: 50px;
  
}

/* メニュー紹介・写真画像 */
.item{
  width : 99%;
  height : auto;
  padding: 10px 0.5% 10px 0.5%;/* 設定順番:上・右・下・左; */
  text-align: center;
  background-color: #cfd5c2;
}
/* メニュー紹介・写真レスポンシブ・緑色の枠 */
.item-gazo{
  width: 32%;
  display: inline-block; /* インラインブロック化 */
  vertical-align: top;   /* 上端を揃える */
  border:3px  #cfd5c2 solid;
  overflow: hidden;
}
.item-gazo:hover{
  width: 32%;
  display: inline-block; /* インラインブロック化 */
  vertical-align: top;   /* 上端を揃える */
  border:3px #277638 solid;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
/* メニュー紹介・写真レスポンシブ・画像ズーム */
.item-gazo img {
  transition: all 0.2s ease;
}
.item-gazo img:hover {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

/* 地図・マップ */
.map100{
  position: relative;
  z-index: 1;
}

}
