@charset "UTF-8";
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
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,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ------------------------------------------------------------
初期設定
------------------------------------------------------------ */
html,
body {
  height: 100%;
}

/* border-box / word-break */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------------------------------------------
画像
------------------------------------------------------------ */
/* 画像のレスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
  width/***/: auto;
}

/* マウスオン画像透過 */
a:hover img {
  opacity: 0.6;
}

/* ------------------------------------------------------------
行間設定（<p>タグ）
------------------------------------------------------------ */
p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
二行目字下げ
------------------------------------------------------------ */
.att {
  padding-left: 1em;
  text-indent: -1em;
}

/* ------------------------------------------------------------
左右配置
------------------------------------------------------------ */
.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.ta-center {
  text-align: center;
}

/* ------------------------------------------------------------
placeholderのテキストカラー（お問い合わせフォーム等）
------------------------------------------------------------ */
/* Chrome, Safari */
::-webkit-input-placeholder {
  color: #cccccc;
}

/* Firefox */
::-moz-placeholder {
  color: #cccccc;
}

/* IE */
:-ms-input-placeholder {
  color: #cccccc;
}

/* ------------------------------------------------------------
TABLE
------------------------------------------------------------ */
.table-type1 {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}
.table-type1 th,
.table-type1 td {
  display: block;
  font-size: 14px;
  vertical-align: top;
  width: 100%;
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-bottom: none;
}
.table-type1 th {
  color: #ffffff;
  text-align: left;
  padding: 4px 15px;
  background: #bfb1a8;
}

/*# sourceMappingURL=default.css.map */