/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 画像 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.common {
display: flex;
flex-direction: column;
    width:45%;
    margin: 20px; 
}

.common_wide {
display: flex;
flex-direction: column;
    width:90%;
    margin: 20px; 
}

.main {
display: flex;
flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.main img {
    width:40%;
    height: auto;
    margin: 20px;
      clear: both; 
    display: block;
}

.main a {
    display: block;
    width:100%;
        color: #06c;
    font-weight: bold;
    margin-top:20px;
}

h2 {
    width: 100%;
      position: relative;
  display: inline-block;
    margin-top: 0;
    margin-left: 0;
  margin-bottom: 0px;
  padding: 0;
  font-size: 26px;
  font-weight: bold;
  color: rgb(51, 51, 51);
    text-align: left;
      border-bottom: solid 3px #dadeec;
	}

h2:before{
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #4b4b4b;
  bottom: -3px;
  width: 10%;}
.detail{
   text-align: right;
}

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

.new {
    padding: 0.2em;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
    width: 2.5rem;
    display: inline;
    color: #FFF;
    background:#da6000;
    border-radius: 5px;/*角の丸み*/
}


@media (max-width: 680px) {
.common {
    width:100%;
    margin: 0; 
}

.main {
display: flex;
flex-direction: column;
}

.main img {
    width:80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

}

