@charset "UTF-8";

/* PC用 */
@media screen and (min-width: 768px) , print {
  /* 3G終了警告掲示 */
  #caution_area {
    display: flex;
    justify-content: start;
    width: calc(100% - 20px);
    background-color: #00adb5;
    padding: 10px;
    margin-bottom: 15px;
  }
  #caution_txt {
    width: 85%;
    color: #FFF;
    font-weight: bold;
  }
  #caution_btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 15%;
  }
  #caution_btn > a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #FF0000;
    font-weight: bold;
    background-color: #FFF;
    border: 2px solid #FF0000;
    border-radius: 5px;
    width: 100%;
    height: auto;
    flex-grow: 1;
  }
  #caution_btn > a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    width: 6px;
    height: 6px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #FF0000;
  }
  #caution_btn > a:hover {
    background-color: #fcff9f;
  }
}


/* 小さい画面用 */
@media screen and (max-width: 767px) {
  /* 3G終了警告掲示 */
  #caution_area {
    width: calc(100% - 40px);
    background-color: #00adb5;
    padding: 10px;
    margin: 0 10px 15px;
  }
  #caution_txt {
    width: 100%;
    color: #FFF;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #caution_btn {
    width: 100%;
  }
  #caution_btn > a {
    display: block;
    color: #FF0000;
    font-weight: bold;
    text-align: center;
    background-color: #FFF;
    border: 2px solid #FF0000;
    border-radius: 5px;
    width: 100%;
    height: auto;
    padding: 5px 0;
  }
}

