@import "normalize.css";


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
    font-size : 90%;
    color: #B38D00;
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

body {
  background-color: #fffaec;
}

p {
  letter-spacing: 0.1em;
  line-height: 2.6em;
}

a {
  text-decoration: none;
  color: #B38D00;
}

@media screen and (max-width : 415px) {
  html {
    font-size : 60%;
  }
}


/*
----------------------
 container
----------------------
*/

.container {
  position: relative;
  display: table;
  padding: 0;
  margin: 0 auto;
  width: 75%;
  max-width: 1000px;
  padding-bottom: 10px;
}

.container-inner {
  width: 100%;
  margin: 0 auto;
}



/*
----------------------
 header
----------------------
*/

header {
  display: block;
  position: relative;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  padding: 0;
  margin-top: 40px;
  border-bottom: solid 2px #C79D00;
}

header .logo {
  display: table;
  position: absolute;
  height: 100%;
}

header .logo h1 {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  padding-bottom: 7px;
}

header nav {
  display: table;
  position: absolute;
  right: 0;
  width: 90%;
  height: 100%;
  padding-bottom: 0px;
}

header ul {
  display: table-cell;
  height: 100%;
  vertical-align: bottom;
  text-align: right;
}

header li {
  display: inline;
  line-height: 2.1em;
  border: 1px #000;
  padding-left: 1.0%;
}

header li.first{
  padding-left: 0px;
}

header li.tel{
  padding-left: 5%;
}

header li img.item {
  width: auto;
  height: 13px;
}

header li img.icon {
  width: auto;
  height: 16px;
}

header li .icon {
  visibility: hidden;
  margin-right: 0px;
}

header li.on .item {
  opacity: 0.6;
}

header li.on .icon {
  visibility: visible;
}

@media screen and (max-width : 415px) {
  header {
    margin-top: -30px;
  }
  
  header nav {
    width: 90%;
    padding-bottom: 3px;
  }
  
  header .logo h1 {
    padding-bottom: 3px;
  }
  header .logo img {
    width: 65px;
    height: auto;
  }
  
  header nav li {
    padding-left: 6.5%;
  }

  header nav li img.item {
    height: 9px;
  }

  header nav li img.icon {
    height: 11px;
  }

}


/*
----------------------
 footer
----------------------
*/

footer {
  position: relative;
  float: right;
  right: -1.5%;
  margin-top: 10%;
}

@media screen and (max-width : 415px) {
  footer img {
    height: 6px;
    width: auto;
  }
}

/*
----------------------
 contents
----------------------
*/

.contents {
  clear: both;
  margin-top: 6.5%;
}

@media screen and (max-width : 415px) {
  .contents {
    margin-top: 10%;
  }
}

