/*2021/04/03*/

.card {
  /*display: block;*//*2021/04/03*/
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
/* テキストをカード下に固定配置する */
.card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  font-size: 1.6em;
}
.card__img {
    border: solid 1px #ffd700;
    border-radius: 4px;/*面取り*/
    filter: drop-shadow(5px 5px 5px rgba(255,255,255,0.6))
    		 brightness(80%); /* フィルター */
    text-align: center;
  display: block;
  transform: scale(0.8);
   /*width: 50%;
   height: 50%;*/
  transition: 0.3s; /* トランジション */
}
/* カードホバー時 */
.card:hover .card__img {
  filter: brightness(110%); /* フィルターを変更 */
  transform: scale(1.2); /* 画像を拡大 */
}
.imga{
    border: solid 1px #ffd700;
    border-radius: 8px;
    filter: drop-shadow(5px 5px 5px rgba(255,255,255,0.6));
    text-align: center;
}

.imgb{
    border: solid 1px #000000;
    border-radius: 1px;
    filter: drop-shadow(5px 5px 5px rgba(0,60,50,0.6));
    text-align: center;
}

.imgs{
    width:64px;
    height:48px;
    border: solid 1px #ffd700;
    border-radius: 1px;
    filter: drop-shadow(1px 1px 1px rgba(0,60,50,0.6));
    text-align: center;
}
.imgsy{
    width:42px;
    height:48px;
    border: solid 1px #ffd700;
    border-radius: 1px;
    filter: drop-shadow(1px 1px 1px rgba(0,60,50,0.6));
    text-align: center;
}

.boxks {
/*ご注意枠、箇条書き、公社所在地Googlemapの設定*/
    width:80%;
    position: relative;
    margin: 10px auto;
    padding: 0.5em 1em;
    border: solid 3px #228b22;
    border-radius: 8px;
    text-align: left;

}
.boxks .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #ff0000;
       /* #color: #8fbc8f;*/
    font-weight: bold;

}
.boxks p {
    margin: 0; 
    padding: 0;
}

.box6 {
/*破線のボックス*/
    width:95%;
    padding: 0.5em 1em;
    margin: 2em 0;
    background: #f0f7ff;
    border: dashed 2px #5b8bd0;/*点線*/
    max-width: 450px;
}
.box6 p {
    margin: 0; 
    padding: 0;
}
.box17{
/*交差線*/
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
    margin: 0; 
    padding: 0;
}

.box26 {
    width:60%;
    position: relative;
    margin: 30px auto;
/*    margin: 2em 2em;*/
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
    text-align: left;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #ff0000;
        #color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}

