@charset "utf-8";
/* CSS Document */


.nav_area {
  padding: 10px 0
}
.nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
	line-height: 3;
}
.nav-item {
  margin: 15px auto;
  float: left;
  width: calc(45% - 20px);
  position: relative;
}
.nav-item a {
    display: flex;
    background-color: #CAEDF5;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 3px 3px #668AD8;
    font-size: 18px;
	align-items: center;
	justify-content: center;
	font-weight: bold;
    color: #404040;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #668AD8;
    border-right: 2px solid #668AD8;
    transform: translate(0, -50%) rotate(45deg);
}
/*.nav-item:last-child a {
  background-color: #439785;
  box-shadow: 3px 3px #316f63;
  color: #fff;
}
.nav-item:last-child::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) rotate(45deg);
}*/
.nav-item:nth-child(4) a {
    background-color: #668AD8;
    box-shadow: 3px 3px #37589F;
    color: #fff;
}

.nav-item:nth-child(4)::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(0, -50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
	.nav-list {
		line-height: 1.5
	}
  .nav-item {
    margin: 15px auto;
    float: left;
    width: calc(48% - 0px);
    position: relative;
  }
	  .nav-item {
        margin: 15px auto;
        float: left;
       width: calc(48% - 0px);
		 /*width: 100%;*/
        position: relative;
    }
	.nav-item a {
		font-size: 12px;
		min-height: 35px;
	}
 /* .nav-item:first-child {
    float: none;
    width: 95%;
  }
  .nav-item:last-child {
    float: none;
    width: 95%;
  }*/
	.nav-item::after {
    
    right: 10px;
    
}

}
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.comment { background-image: url(../img/navi-ico01.png); }
.icon.memo { background-image: url(../img/navi-ico02.png); }
.icon.pen { background-image: url(../img/navi-ico03.png);padding-left: 0 }
.icon.graph { background-image: url(../img/navi-ico04.png); }
.icon.check { background-image: url(../img/navi-ico05.png); }
.icon.calendar { background-image: url(../img/navi-ico06.png); }
.icon.search { background-image: url(../img/navi-ico07.png); }
	
	
	
	
