@charset "UTF-8";
/* CSS Document */

/*フォントの種類やサイズを指定します*/
html {
  font-family:YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  color:rgba(67,67,67,1.00);
  font-size:62.5%; /*基準サイズ(16px x 62.5% = 10px=10rem)*/
  overflow: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}
 
body {
  font-size:1.4rem;/*ベースのフォントサイズ*/
}

h1{font-size:2.6rem;}
h2{font-size:2rem;}
h3{font-size:1.6rem;}
h4{font-size:1.6rem;}

h1, h2, h3, h4, h5, h6 {
  line-height: 3rem;
  margin-top: 0px;
  margin-bottom: 0px;
}

/*ボーダーを余白にふくめて計算を簡単にします*/
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; /*単語の途中で改行*/
  line-height: 2.8rem;
  font-size: 1.4rem;
  margin-top: 0px;
  margin-bottom: 0px;
}
 
small {
  font-size: 1rem;
}
h2{
	font-weight: bold;
}
/*メディアクエリ================================================================*/
/*PC用*/
@media screen and (min-width:960px) {}

/*メディアクエリ================================================================*/


/*テーブルの中での改行の指定をしています*/
tr {
  word-break: break-all;
}
/*折り返し禁止のクラスです*/
.nw {
  white-space: nowrap;
}
 
/*画像と画像のあいだの余白を消します*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height:auto;
}
 
/*ドラッグして選択したときの文字色と文字の背景色です*/
::selection {
  background: #7cc6cf;
  color: #ffffff;
}
 
::-moz-selection {
  background: #7cc6cf;
  color: #ffffff;
}
 
/*リンクの文字とスタイルをしています*/
a {
  background: transparent;
  text-decoration: none;
  color:rgba(255,255,255,1.00);
  transition: 0.3s;
  cursor: pointer;
}
 
a:focus{
	outline:none;
}
 
a:hover {
}
 
/*afterまたはoverflowを使ってクリアするクラスです*/
/* --after型-- */
.cfx:after {
  content: "";
  display: block;
  clear: both;
}
 
/* --overflow型-- */
.cfxo {
  overflow: hidden;
}
 
/*リストタグのスタイルを消します*/
ul,
.li_none {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
 
dd {
  margin-left: 0;
}
 
/*リストタグのスタイルを戻します*/
.ul{
  list-style-type: disc;
  margin: 1rem 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;
}
