@charset "UTF-8";

.hosoku {
  color: #004893;
}

/* PC用 */
@media screen and (min-width: 768px) , print {
  .option_block-main {
    display: inline-flex;
    flex-wrap: wrap;
  }
  .option_block-2line {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: calc(50% - 10px - 40px);
    border-bottom: 1px solid #4472C4;
    padding: 10px;
    margin: 0 20px 20px 0;
  }
  .option_photo_center {
    text-align: center;
    margin-top: auto;
  }
}
 
/* 小さい画面用 */
@media screen and (max-width: 767px) {
  .option_block-main {
    
  }
  .option_block-2line {
    width: calc(100% - 10px - 20px);
    border-bottom: 1px solid #4472C4;
    padding: 10px;
    margin: 0 0 20px 0;
  }
  .option_photo_center {
    text-align: center;
  }
}




