/* ====================================
 共通
====================================== */
/* テキスト位置 */
.u-center {
  text-align: center;
}
.u-left {
  text-align: left;
}
.u-right {
  text-align: right;
}

/* テキスト大きさ */
.u-font--small {
  font-size: .8em;
  line-height: .7em;
}
.u-font--big {
  font-size: 1.3em;
}
.u-text--url {
  word-break: break-all;
}

/* テキスト種類 */
.u-font__number {
  font-size: .9em;
  font-family: Verdana;
}
.u-font__result {
  color: #e1c130;
  font-size: 1.4em;
}

/* hr */
.u-hr__space {
  border: none;
  clear: both;
  padding: 5px 0;
}
.u-hr__space2 {
  border: none;
  clear: both;
  padding: 15px 0;
}
.u-hr__dotline {
  border: none;
  border-bottom: 2px dotted #ddd;
  clear: both;
  padding: 5px 0;
}

/* アイコン */
.u-icon__blue {
  color: #8ed1e1;
}
.u-icon__on {
  color: green;
}
.u-icon__off {
  color: #999;
}

/* 写真 */
.u-photo {
  border: 5px solid #fff;
  box-shadow: 2px 2px 2px rgba(100, 100, 100, .2);
}
.u-photo__max {
  width: 100%;
}


/* ====================================
 スマホ
====================================== */
@media all and (min-width: 0) and (max-width: 640px) {
}

/* ====================================
 PC
====================================== */
@media screen and (min-width: 641px) {
}

