/* reset 初期設定 */
@charset "UTF-8";

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  リセット
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  color: #7F6E64;
}
div, nav, section {
  box-sizing: border-box;
}
ol, ul, li {
  list-style: none;
}
img {
  user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -webkit-touch-callout: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a img {
  border: none;
}
a {
  text-decoration: none;
  transition: .5s;
}
a:hover {
  text-decoration: none!important;
  color: #7F6E64;
  opacity: .5;
}
p, a {
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0.5px;
  color: #7F6E64;
  word-break: normal;
}
.btn {
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0.5px;
  color: #7F6E64;
  word-break: normal;
  transition: .5s;
}
.btn:hover {
  color: #fff;
  background-color: #7F6E64;
}
h1,h2,h3,h4 {
  word-break: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
input,textarea,button,select {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type="submit"] {
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  /*background-color: #F0F4F8;*/
}

input:focus {
  background-color: #FFF9D4;
}

.clear:after {
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}