@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Noto+Sans+JP:wght@400;700&display=swap');

/* Gotic
font-family: 'Noto Sans JP', sans-serif;
*/
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/
/* モバイルレイアウト : 480 px およびそれ以下. */
.fixedBlock{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #D9D9D9;
    z-index: 9000;
}
.fixedBlock > div{
    width: 100%;
    max-width: 1282px;
    margin: 0 auto;
}
.fixedBlock p{
    font-size: 11px;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 2em 0 0 3%;
}
.dummy{
    height: 150px;
    width: 100%;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.contents{
    position: relative;
    width: 100%;
}
h1{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 33px;
    font-weight:normal;
    text-align: left;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 27px;
    font-weight:normal;
    text-align: center;
    color: #00A99D;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
    border-left-style: solid;
    border-left-width: 6px;
    border-left-color: #65C9FF;
    font-weight: normal;
}
h4{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    letter-spacing: 0.1em;
    color: #000;
}
h5{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    letter-spacing: 0.1em;
    color: #000;
}
.content{
    width: 90%;
    margin: 100px auto;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 140%;
}
footer{
    background: #999999;
    width: 100% ;
    padding: 10px 0;
}
footer p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    text-align: center;
    color: #fff;
}
.toTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.toTopShow{
	display:block;
}
.toTopHidden{
	display:none;	
}
.cellFit{
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.linkButton{
	display:inline-block;
	color:#fff;
	font-size: 33px;
	text-decoration:none;
	padding: 0.25em 0.5em;
	border-radius: 4px;
    background-color:#29ABE2;
    font-weight: normal;
}
.linkButton:hover{
	opacity: 0.8;
	color:#fff;
}
.linkButton:visited{
	color:#fff;
}
.stdLink{
    color: #09f;
    font-size: inherit;
}
.stdLink:hover{
    color: inherit;
}
.stdLink:visited{
    color: inherit;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
footer p{
    font-size: 17px;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only print {
.gridContainer {
	max-width: 1282px;
	margin: auto;
}
footer{
    padding: 30px 0;
}
footer p{
    font-size: 20px;
}
}