@charset "utf-8";

/* ヘッダー */
#header{
	margin: 0 auto ;
	display: block;
	width: 100%;
    background-color: #000;
    text-align: center;
    padding: 10px 0;
}

#header img{
    max-width: 200px;
    margin: 0 auto;
}

#footer {
    text-align: center;
    padding: 1rem;
}

#footer img{
    margin: 0 auto;
    max-width: 200px;
}

.mv {
  margin: 0 auto;
}

.mv img{
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    /*transition: .6s;*/
  }
  .popup.is-show {
    opacity: 1;
    visibility: visible;
  }
  .popup-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(90% - 60px);
    max-width: 600px;
    padding: 30px;
    background-color: #fff;
    z-index: 2;
  }
  .popup-inner img {
    width: 100%;
  }
  .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
  }
  .close-btn i {
    font-size: 20px;
    color: #333;
  }
  .black-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 1;
    cursor: pointer;
  }

  .bgimg {
    background-image: url(../../img/doron-haitatsu/bg.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 40px 0;
  }

  .about {
    margin: 20px auto;
    width: 100%;
    max-width: 560px;
    background-color:#fff;
  }

  .btn {
    text-align: center;
    margin: 40px auto;
  }

  .btn img{
    text-align: center;
    margin: 0 auto;
    max-width: 240px;
  }
  .box {
    margin: 20px auto;
    width: 100%;
    max-width: 560px;
    background-color:#fff;
  }
  .box p {
    padding: 1rem;
  }
  .ttl {
    padding: 0.5em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #eaf3ff;/*背景色*/
  border-bottom: solid 3px #516ab6;/*下線*/
  font-weight: bold;
  font-size: 120%;
  }