@charset "shift_jis";
/* CSS Document */

html,
body {
  width: 100%;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "MS PGothic", sans-serif;
  color: #333333;
  font-size: 62.5%;
  line-height: 1.6;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


a {
  display: block;
  color: black;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}



/***** header *****/

img#header {
  display: block;
}

/***** contents *****/

header{
  background-color:#ffeff7;
  padding: 3rem 1.5rem 2rem 1rem;
}

.header_title {
  display: block;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 2rem 0 1.8rem;

}

h2 {
  padding: 1rem 2rem;
  margin: 0rem 0 .5rem;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #ffe9f0;
  background: #fff2f8;
}


.contents_list {
  font-size: 1.4rem;
}

.contents_list a {
  padding: 1rem 2rem;

  display: flex;
  align-items: center;
  color: #555;
  border-bottom: 1px solid #dbe3d4;
}
.contents_list a:last-of-type{
  border:0;
}


.contents_list a:hover {
  font-weight: bold;
  background-color: #fcfcfc;
}


i.fa {
  color: #cc0f5b;
  vertical-align: -18%;
  width: 24px;
  font-size: 24px;
  padding-right: 1rem;
  display: table;
}

/***** footer *****/

.footer {
  padding: 1rem;
  box-sizing: border-box;
}

.footer_copy {
  color: #333;
  text-align: center;
  font-size: 1.3rem;
  padding-top: 10px;
  margin-bottom: 0;
}



/* ########### 768px ########### */

@media (min-width:768px) {

  img#header {
    margin: 0 auto;
    max-width: 600px;
  }

  header{
    padding: 5rem 1rem 2.5rem 0.5rem;
  }


  h1 {
    font-size: 2.1rem;
    margin:2rem 0 -1rem;
  }

  h2 {
    padding: 1.2rem;
    margin: 3rem 0 .5rem;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .contents {
    max-width: 645px;
    margin: 0 auto;
  }

  .contents_list a {
    font-size: 1.5rem;
    padding: 1.2rem 1rem;
  }

}