@charset "utf-8";
/* CSS Document */
* {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;

}
/*
html .delayCont {
  visibility: hidden;

}
html.wf-active .delayCont {
	visibility: visible;
  animation-duration: .3s;
  animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  50% {
    visibility: visible;
    opacity: .5;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

*/
/* header ---------------------------------------- */
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;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-size: 62.5%; /*フォントの基準サイズを10pxにする*/
}
body {
  font-size: 1.6rem; /*全体のフォントサイズは14pxとする*/
  font-size: 16px;
  line-height: 1.5; /*全体の行の高さは文字の1.5(倍)とする*/
  text-align: justify; /*行末を揃える*/
  -webkit-text-size-adjust: 100%; /*スマホでPC表示した際に勝手に文字が大きくなるのを防ぐ*/
  color: #333;
}
body * {
  box-sizing: border-box; /*paddingやborderの大きさもwidthとheightに含める*/
  background-repeat: no-repeat; /*背景は基本的にリピートしない*/
}
img {
  width: 100%;
  display: block; /*デフォルトのdisplay:inline;で表示することはほぼ無いため*/
  max-width: 100%; /*親要素の幅からはみ出させない*/
  height: auto; /*一括指定(以降imgの大きさはwidthのみ指定すればよい)*/
}
a {
  display: block; /*デフォルトのdisplay:inline;で表示することが少ないため(ボタンなど)*/
  text-decoration: none; /*装飾は一切つけない*/
  color: inherit; /*親要素に指定した色を受け継ぐ*/
	transition: opacity 0.3s ease-in;
	cursor: pointer;
}
a.nolink{
	cursor:default;
}
a.nolink:hover{
	opacity: 1;
}

:focus {
	outline:none;

}

a:hover {
  opacity: .6; /*マウスオーバー時の透明度を指定*/
}

input[type="button"],
input[type="submit"]

{
	cursor: pointer;
	transition: background-color 0.3s ease-in;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea
{
	transition: background-color 0.3s ease-in;

}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus
 {
	/*background-color: #FFE000 !important;
	border:1px solid #ccc !important;
	*/
}
input[type="text"].no-focus:focus,
input[type="email"].no-focus:focus,
input[type="password"].no-focus:focus,
textarea.no-focus:focus {
	background-color: #fff !important;
}

input::placeholder{
	color: #bbb;
}

p a[href] {
  display: inline; /*pタグ内のリンクは文字列として表示する*/
  color: #00f; /*カラーを指定*/
  text-decoration: underline; /*下線をつける*/
}
p a:hover {
  text-decoration: none; /*マウスオーバー時下線を消す*/
}
#wrap {
  width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
  overflow-x: hidden; /*横にはみ出した部分は表示させない（スクロールさせない）*/
}
.clearfix:after { /*回り込み解除*/
  display: block;
  content: "";
  clear: both;
}
button{
  cursor: pointer;
  font-weight: 600;
}
textarea{
  resize: vertical;
    overflow: auto;
}

small {
	font-size:0.8em;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
