/***************************************
あんしん探偵　select
***************************************/

@charset "utf-8";

/* モバイルレイアウト : 480 px およびそれ以下. */

/***************************************
select モバイル
***************************************/
#select {
  display: block;
  width: 100%;
  margin: 0 0 50px 0;
  background: none;
  text-align: left;
}

#select h2 {
  text-align: left;
  background: #fccfcc;
  padding: 8px;
  font-size: 18px;
  margin: 0;
}

#select .container {
  width: 96%;
  margin: 0 2%;
}

#select ul.questions li {
  color: #0099ff;
  font-weight: bold;
  line-height: 1.8em;
}

#select ul.questions li:before {
  content: "→";
  color: #111;
}

#select .important {
  font-weight: bold;
}

#select .important_color {
  color: #ff618a;
}

#select .arrow_box_top {
  position: relative;
  max-width: 100%;
  padding: 12px;
  background: #ff618a;
  color: #fff;
  z-index: 0;
  margin-top: 18px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.arrow_box_top:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  display: block;
  content: "";
  height: 0;
  width: 0;
  border: solid transparent;
  border-bottom-color: #ff618a;
  border-width: 12px;
  margin-left: -12px;
}

#select p.arrow_box_top {
  font-size: 120%;
  text-align: center;
  margin-bottom: 12px;
}

#select ul.circles {
  text-align: center;
}

#select .circles li {
  width: 200px;
  height: 200px;
  border: 2px dotted #ff618a;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 140%;
  margin: 8px auto;
  padding: 1.5em;
}

#select .circles li p {
  position: relative;
  top:30%;
  transform: translateY(-50%);
}

#select .points img {
  display: block;
  margin: 0 auto;
}

#select .points img.point {
  margin-top: -18px;
}

/* デスクトップレイアウト : 769 px 以上。モバイルレイアウトからスタイルを継承。 */
@media only screen and (min-width: 769px) {
/***************************************
select デスクトップ
***************************************/
  #select .container {
    width: 100%;
    margin: 0;
  }

  #select .arrow_box_top {
    max-width: 80%;
    margin: 18px auto;
  }

  #select ul.circles {
    margin: 32px auto;
  }

  #select .circles li {
    display: inline-block;
    margin: 0 15px;
  }

  .select_p {
    padding:0 5% 20px;
  }
}