@charset "UTF-8";
/*
デザイン上のpxサイズをvwに変換
viewportはデザインの横幅サイズ
*/
/*
メディアクエリ
記述例
body{
  @include ms-w('max',1200){
    background-color: red;
  }
}
*/
/*
ICON FONT
*/
/************************************************************
SCREEN ALL
*************************************************************/
main {
  position: relative;
}

/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:768px) {
  main {
    padding-top: 80px;
    padding-bottom: 100px;
    background-image: url("../../images/404/bg-mist-sp.jpg");
    background-position: center top -300px;
    background-repeat: no-repeat;
  }
  main .t-404 {
    width: 193px;
    margin: 0 auto;
  }
  main .txt-01 {
    margin-top: 50px;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.1em;
  }
  main .txt-02 {
    margin-top: 20px;
    color: #000;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 2.2em;
    letter-spacing: 0.1em;
  }
  main .pagelinks {
    padding: 50px 0;
  }
  main .pagelinks .pagelinks-boxes {
    width: 78.6666666667vw;
    max-width: 400px;
    margin: 0 auto;
  }
  main .pagelinks .pagelinks-boxes .pagelinks-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.1em;
    height: 70px;
    border-radius: 6px;
    border: 1px solid #674498;
    background: #FFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
  }
  main .pagelinks .pagelinks-boxes .pagelinks-box:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:769px) {
  main {
    padding-top: 130px;
    padding-bottom: 200px;
    background-image: url("../../images/404/bg-mist-pc.jpg");
    background-position: center top -400px;
    background-repeat: no-repeat;
  }
  main .t-404 {
    width: 320px;
    margin: 0 auto;
  }
  main .txt-01 {
    margin-top: 80px;
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.1em;
  }
  main .txt-02 {
    margin-top: 30px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2em;
    letter-spacing: 0.1em;
  }
  main .pagelinks {
    padding: 60px 0;
  }
  main .pagelinks .pagelinks-boxes {
    display: flex;
    justify-content: center;
  }
  main .pagelinks .pagelinks-boxes .pagelinks-box {
    margin: 0 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.1em;
    width: 372px;
    height: 90px;
  }
}