@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;
}

}

/* ****************************************************************************************************
   * 共通タイトル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.notfound .title-1 {
  border-radius: 10px;
  background: var(--c-blue);
  color: var(--c-yellow);
  font-size: 3.0rem;
  font-weight: 900;
  text-align: center;
  padding: 0.1em 1em;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
 .notfound .title-1 {
    border-radius: 10px;
    background: var(--c-blue);
    color: var(--c-yellow);
    font-size: 2.0rem;
    font-weight: 900;
    text-align: center;
    padding: 0.1em 1em;
    line-height: 1.4;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.notfound .title-area {
  line-height: 1.4;
  text-align: center;
}
.notfound .title-area .subtitle {
  position: relative;
}

.notfound .title-area .subtitle span {
  position: relative;
  font-size: 3.0rem;
  color: #000000;
  font-weight: bold;
  padding: 0 50px;
  display: inline-block;
}
.notfound .title-area .subtitle span::before {
  content: "";
  display: block;
  background: url("../../_images/_common/title-line-left.png") no-repeat;
  width: 33px;
  height: 80px;
  background-size: 33px 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.notfound .title-area .subtitle span::after {
  content: "";
  display: block;
  background: url("../../_images/_common/title-line-right.png") no-repeat;
  width: 34px;
  height: 80px;
  background-size: 34px 80px;
  position: absolute;
  top: 0;
  right: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
 .notfound .title-area .subtitle span {
    position: relative;
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
    padding: 0 15px;
    display: inline-block;
  }
 .notfound .title-area .subtitle span::before {
    content: "";
    display: block;
    background: url("../../_images/_common/title-line-left.png") no-repeat;
    width: 16px;
    height: 40px;
    background-size: 16px 40px;
    position: absolute;
    top: 0;
    left: -8px;
  }
 .notfound .title-area .subtitle span::after {
    content: "";
    display: block;
    background: url("../../_images/_common/title-line-right.png") no-repeat;
    width: 17px;
    height: 40px;
    background-size: 17px 40px;
    position: absolute;
    top: 0;
    right: -8px;
  }
}

.notfound .lead {
  margin-top: 30px;
}
.notfound .lead .text {
  font-size: 1.6rem;
  text-align: center;
}

/* ****************************************************************************************************
   * 404 Not Found
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.notfound {
  position: relative;
  padding-top: 60px;
  padding-bottom: 120px;
}

.notfound .body {
  max-width: 1120px;
  padding: 0 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .notfound {
    position: relative;
    padding-top: 60px;
    padding-bottom: 10rem !important;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.notfound .link-btn {}

.notfound .link-btn .btn.return {
  font-size: 1.6rem;
  width: 350px;
  padding: 20px 3em;
  font-weight: 900;
}
.notfound .link-btn .btn.return::after {
  border: 0px;
  border-bottom: solid 3px #fff;
  border-left: solid 3px #fff;
  left: 15px;
  right: auto;
  transition: 0.2s left;
}
.btn.return:hover::after {
  left: 10px !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .notfound .link-btn .btn.return {
    font-size: 1.6rem;
    width: auto;
    padding: 20px 3em;
  }
}


