@charset "utf-8";
/* CSS Document Ext*/

.button {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 18pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #000066;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}


.button-arrow-inner {
  text-align: center;
  box-sizing: border-box;
  display: block;
  background: #fff;
  color: #447fff;
  font-weight: bold;
  padding: 0.5em 2em 0.5em 1em;
  line-height: 1.4;
  max-width: 300px;
  width: 100%;
  margin: 10px auto;
  position: relative;
  margin-top: 10px;
}


.button-arrow-inner::after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -6px;
  transform: rotate(45deg);
  border-top: 2px solid #447fff;
  border-right: 2px solid #447fff;
  transition: right 0.3s;
}
.button-arrow-inner:hover {
  color: #fff;
}
.button-arrow-inner:hover::after {
  border-color: #fff;
  right: 7px;
}
.button-arrow-inner:active, .button-arrow-inner:focus {
  opacity: 0.8;
}


.button-list {
  text-align: left;
  box-sizing: border-box;
  display: block;
    background-color:#FCC472;
  background: #fff;
  color: #447fff;
  font-weight: bold;
  padding: 0.5em 2em 0.5em 1em;
  line-height: 1.4;
  width: 90%;
  margin: 10px auto;
  position: relative;
  margin-top: 10px;
}

