@charset "UTF-8";
/*------------------------------------------------------------
スマホの文字大きさ設定（本文・ボックス）
-------------------------------------------------------------*/

@media screen and (max-width: 640px) {
#main .text, #text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10, #space1, #space2 {
        font-size:15px;
}
.alert, .accept, .attention, .thint {
  font-size: 15px;
}
}

/*------------------------------------------------------------
1. PCのみに表示
-------------------------------------------------------------*/

/*640px以上でのみ表示*/
@media
only screen and (max-width : 640px){

.pconly{ display: none ; }

}

/*------------------------------------------------------------
2. スマホのみに表示
-------------------------------------------------------------*/

/*640px以下でのみ表示*/
@media
only screen and (min-width : 640px){

.sponly{ display: none ; }

}

/* 口コミ見出し */
.kuchi {
  position: relative;
  padding: 0.6em;
  background: #e0edff;
font-size: 16px;
border-radius: 7px;
}

.kuchi:after {
position: absolute;
content: '';
top: 100%;
left: 30px;
border: 15px solid transparent;
border-top: 15px solid #e0edff;
width: 0;
height: 0;
}