@charset "utf-8";

/* ================================================================================
voice
================================================================================= */


/* ================================================================================
box_message
================================================================================= */

/* PCサイズ調整----------------------------　*/
@media only screen and (min-width:769px) {
.box_message {
  display:-webkit-flex;
  display:flex;
  max-width:1020px;
  margin:0 auto;
  position:relative;
  -webkit-justify-content:space-between; 
  justify-content:space-between;
}
.box_message div:last-child {
  position:absolute;
  left:13px;
  bottom:23px;
  width:994px;
}
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.box_message {
  display:-webkit-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  flex-wrap:wrap;
  padding:0 10px 10px 10px;
}
.box_message div:nth-child(odd) {
  width:62%;
}
.box_message div:nth-child(even) {
  width:36%;
  margin-left:2%;
}
.box_message div:nth-child(n+3) {
  margin-top:2%;
}
}


/* ================================================================================
message_list
================================================================================= */
.message_list {
  max-width:1020px;
  margin:0 auto 80px;
  font-family:"Sawarabi Mincho", serif;
  line-height:1.8;
}
.message_list .detail {
  margin-top:30px;
  padding:25px 50px;
  background:#c0e1e5;
}
.message_list .detail:nth-child(even) {
  background:#dff0f2;
}
.message_list .detail .name {
  text-align:right;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.message_list {
  margin-bottom:30px;
}
.message_list .detail {
  margin-top:15px;
  padding:10px 15px;
  background:#c0e1e5;
}
}
