@charset "euc-jp";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/

ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
  text-align: center;
}

.mt-50{
	margin-top: 50px;
}

.flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flow > li {
  padding: 20px 30px;
  margin-bottom: 8vh;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  border: 2px solid rgb(107,144,219);
  position: relative;
}
.flow > li:nth-child(odd) {
  margin-right: auto;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow > li:not(:last-child)::before {
  border-width: 22px;
  border-left-color: rgb(107,144,219);
}
.flow > li:not(:last-child)::after {
  border-width: 20px;
}
.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 20px;
  display: block;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 100;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
}

/* CARDの基本CSS */
.shadow_002 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card_shadow {
    border: none;
    list-style: none;
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.card_shadow li {
    width: 25%;
    display: inline-block;
    margin-bottom: 4%;

}

.card_shadow li a {
  text-decoration: none;
  color: #fff;
}

.card_box {
    background: #FFF;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 100%;
	margin: 0.2em;
}

.card_box img {
	width: 100%;
	padding-top: 5%;
}

.card_box .card_innertext {
  padding: 5px 5px 5px;
}

.card_box .card_innertext {
  margin: 0;
  font-weight: 200;
}

.card_ttl{
	font-weight: bold;
	color: black;
	margin-bottom: 5%;
	text-align: center;
}

.card_setsumei{
	font-size: 0.8em;
	font-weight: 100;
	line-height: 1.3;
	margin: 0;
}

.card_box .card_innertext{
    margin: 5px 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    line-height: 1.3;
}
.card_box span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFF;
    padding: 3px 8px;
	margin: 3px;
    font-size: 0.7rem;
    border-radius: 50px;
    color: #999;
}

.button01{
    display:block;
    width: 90%;
    line-height: 30px;
	margin: 0 auto;
	margin-bottom:7%;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    background-color: #000; /*ボタン色*/
    border-radius: 5px; /*角丸*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button01:hover{
    background-color:rgb(107,144,219) /*ボタン色*/
}

.button01 a:hover{
	color: #000;
}

.gluegel_box{
	max-width: 600px;
}

@media screen and (max-width: 900px) {
/* （ここにタブレット用スタイルを記述） */

  .card_shadow li {
    width: 50%;
  }
	
.others div {
	width: calc(100% /4 - 5px);

}
	
	
}

/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media (max-width:300px) {
	
	.flow > li dl dt {
		font-size: 12px;}
	
	  .card_shadow li {
    width:50%;
  }
	
}


/* デスクトップレイアウト : 769 px 〜最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {

	
	
}	
	
