@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: 0 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 4em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.layout-lower .visual {
  background: url("../../_images/privacy/visual.jpg") no-repeat;
  background-size: cover;
}

/* ****************************************************************************************************
   * プライバシーポリシー
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.notfound {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.notfound .body {
  max-width: 1120px;
}

.notfound .item ~ .item {
  margin-top: 50px;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .notfound {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.notfound .title-1 {
  position: relative;
  color: var(--c-l-blue);
  text-align: left;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.25em;
}
.notfound .title-1::before {
  content: "";
  display: block;
  background: url("../../_images/notfound/title-nav-icon.png") no-repeat;
  width: 27px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 7px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .notfound .title-1 {
    font-size: 2.0rem;
    padding-left: 1.0em;
  }
  .notfound .title-1::before {
    content: "";
    display: block;
    background: url("../../_images/notfound/title-nav-icon.png") no-repeat;
    width: 13px;
    height: 15px;
    background-size: 13px 15px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 9px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.notfound ul a {
  color: var(--c-l-blue);
}

.notfound .btn {
  width: 270px;
}
.notfound .btn::after {
  content: "";
  display: block;
  background: url("../../_images/_common/link-arrow-w-back.png") no-repeat;
  width: 21px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: 0.1s;
}
.notfound .btn:hover::after {
  left: 0.4em;
}

