@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------
 concept
---------------------------------------------------------- */

#container{
  background-color: #efefef;
}

.box_inner{
  background-color: #fff;
  padding: 100px;
  text-align: center;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.mk_logo{
  width: 100%;
  margin: 0 auto 100px;
}

h1 {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 60px;
}

h1 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 4em;
  padding: 0 1em;
  background-color: #fff;
  text-align: left;
}
h1::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
  background: -webkit-linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
  background: linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
}

.catch{
  font-size: 300%;
  font-family: 'EB Garamond', serif;
  color: #58449b;
}
.inner .box
{
  position: relative;
  z-index: 2;
}
.inner .box::before, .inner .box::after
{
  z-index: 1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #ccc;
  -webkit-box-shadow: 0 15px 10px #ccc;
  -moz-box-shadow: 0 15px 10px #ccc;
  box-shadow: 0 15px 10px #ccc;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.inner .box::after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/* ---- PC ---- */
@media (min-width: 769px) {
  .text p{
    text-align: center;
  }

  .mk_logo{
    max-width: 500px;
  }
}

/*---- ipad ----*/
/*@media  (min-width: 769px) and (max-width: 1024px) {
    .text p{
    text-align: justify;
  }
    .text p .no-sp{
    display: none;
  }
}*/

/* ---- SP ---- */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  h1 span{
    margin: 0;
    padding: 0 0.7em;
  }
  
  .mk_logo{
    width: 60%;
    margin-bottom: 80px;
  }
  
  .box_inner{
    padding: 80px 5%;
  }
  
  .catch{
    font-size: 200%;
    text-align: center;
  }
  
}