/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
    font-family:
    "Hiragino Mincho ProN",    /* macOS */
    "Hiragino Mincho Pro",     /* macOS 旧版 */
    "Yu Mincho",               /* Windows */
    "YuMincho",                /* Windows */
    serif;
  font-weight: 300; /* 細め（Light相当） */

}

h1 img{
width: 30%;
}
a img{
width: 40px;
}


a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}



/* Layout */


.container {
  display: table;
  padding-top: 80px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 6px 10px;
  color: #ffffff;
  background-color:#8C6FB4;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

#more-content {
  display: none;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
    
h1 img{
width: 60%;
}
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  
  #more-content {
    float: left;
    margin-right: 10px;
    
  }
  

  .content, blockquote { 
    display: inline;
    margin: 0 auto;
    padding-top: 80px;
    vertical-align: baseline;
  }



  .sub-title {
    font-size: 20px;
    line-height: 30px;
  }

  .button, p {
    max-width: 250px;
    margin: 10px auto;
    font-size: 20px;
    line-height: 20px;
  }
.button {
      margin-bottom: 30px ;  
}
    

  html, body, .container {
    height: auto;
  }
}