@charset "UTF-8";
 
/*ボーダーを余白にふくめて計算を簡単にします*/
h1, h2, h3, h4, h5, h6,
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary,
div, span,
p,
ul, ol, li,
dl, dt, dd,
table, tr, th, td,
a, img,
*:after, *:before {
  box-sizing: border-box;
}
 
figure {
  margin: 0;
  padding: 0;
}
 
/*テキストを使うタグの指定です*/
p,
li,
dl,
table {
  line-break: strict;
  word-break: break-strict;
  word-wrap: break-word;
}

/*テーブルの中での改行の指定をしています*/
tr {
  word-break: break-all;
}
/*折り返し禁止のクラスです*/
.nw {
  white-space: nowrap;
}
 
/*画像と画像のあいだの余白を消します*/
img {
  vertical-align: bottom;
  max-width: 100%;
}
 
/*ドラッグして選択したときの文字色と文字の背景色です*/
::selection {
  background: #7cc6cf;
  color: #ffffff;
}
 
::-moz-selection {
  background: #7cc6cf;
  color: #ffffff;
}

a:focus{
  outline:none;
}
  
/*afterまたはoverflowを使ってクリアするクラスです*/
/* --after型-- */
.cfx:after {
  content: "";
  display: block;
  clear: both;
}
 
/* --overflow型-- */
.cfxo {
  overflow: hidden;
}
 
/*リストタグのスタイルを消します*/
ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
 
dd {
  margin-left: 0;
}
 
/*リストタグのスタイルを戻します*/
ul{
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 40px;
}
 
/*フォームのための指定です*/
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
 
select option {
  padding: 0px 5px;
}
 
form label {
  cursor: pointer;
}
 
input:placeholder {
  color: #999;
}
 
input:-ms-input-placeholder {
  color: #999;
}

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

hr {
    display: block;
    height: 1px;
    border: 0;
    margin: 1rem 0 0;
    padding: 0;
}

b{
  font-weight: bold;
}