@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * 404
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.notfound {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}

.notfound .body {
  max-width: 1120px;
  padding: 0 20px;
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン(緑)
/* ------------------------------------------------------------------------------------------------- */

.notfound .link-btn {
  margin-top: 40px;
  text-align: center;
}
.notfound .btn-1 {
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-green);
  padding: 0.5em 1.0em;
  transition: 0.6s;
  text-align: center;
  margin: 0 auto;
}
.notfound .btn-1::after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow-w-2.png") no-repeat;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: 0.1s;
}
.notfound .btn-1:hover::after {
  left: 0.4em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  .notfound .link-btn {
    margin-top: 1em;
    text-align: center;
  }
}
