@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* font
    font-family: 'Noto Sans JP', sans-serif; gotic
    font-family: 'Noto Serif JP', serif;	micho
    font-family: 'Roboto', 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 およびそれ以下. */
header {
	position: fixed;
    top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background: rgba(255,255,255,0.6);
}
header > div{
    max-width: 1282px;
    width: 100%;
    margin: 0 auto;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.header{
    position: relative;
}
.header .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.54);
}
.contents{
    position: relative;
    width: 100%;
}
h1{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    font-weight:bold;
	text-align:center;
    margin: 0 0 20px 0;
    line-height: 300%;
}
h1 span{
	display: inline-block;
    background: #F29600 ;
    border-radius: 50%;
	color:#fff;
    width: 1.5em;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0.05em;
    line-height: 140%;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    font-weight:normal;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
}
.boxFrame h2 {
	font-size: 18px;
	color: #036EB7;
	font-weight: bold;
	margin: 2em 0 0 0;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
    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{
    margin: 50px 5%;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
	line-height: 180%;
}
.content .boxFrame{
    border: solid 6px #036EB7;
}
.content .boxFrame > div{
    width: 90%;
    margin: 40px auto;
}
.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: 14px;
	text-decoration:none;
	padding: 0.25em 0.5em;
	border-radius: 15px;
    background-color:#036EB7;
    font-weight: normal;
}
.linkButton:hover{
	opacity: 0.8;
	color:#fff;
}
.linkButton:visited{
	color:#fff;
}
.stdLink{
    color: #000;
    font-size: inherit;
    text-decoration: none;
}
.stdLink:hover{
    color: inherit;
}
.stdLink:visited{
    color: inherit;
}
footer{
    background: #FDF6EC;
    padding: 20px 0;
}
footer > div{
    max-width: 1167px;
    width: 91%;
    margin: 0 auto;
}
footer .item{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0;
}
footer .companyName{
    font-size: 28px!important;
}
footer .leftItem p {
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	line-height: 150%;
	margin: 0.2em 0;
}
footer .small{
    font-size: 16px;
}
footer .box{
    display: inline-block;
    width: 3em;
    background: #000;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    line-height: 120%;
}
footer .rightItem p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    text-align: center;
}
footer .linkButton {
	background: #036EB7;
	border-radius: 15px;
	font-weight: bold;
	letter-spacing: 0;
	font-size: 20px;
	margin: 5px 0;
	width: 14em;
	padding: 0.75em 0;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
h1{
	font-size: 38px;
}
h2{
	font-size: 25px;
}

.content .boxFrame{
    border: solid 11px #036EB7;
}
.boxFrame h2 {
	font-size: 27px;
}
.content .boxFrame > div{
    width: 85%;
    margin: 50px auto;
}
.content{
    margin: 50px 10%;
}
.content p{
    font-size: 18px;
}
}

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

@media only print {
.gridContainer {
	max-width: 1282px;
	margin: auto;
}
.content{
    margin: 100px 4.5%;
}
footer{
    background: #FDF6EC;
    padding: 20px 0;
}
footer > div{
    max-width: 1167px;
    width: 91%;
    margin: 0 auto;
}
footer .item{
    display: inline-block;
    vertical-align: top;
    width: 45%;
    margin: 0 2.5%;
}
footer .companyName{
    font-size: 28px!important;
}
footer .leftItem p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 22px;
	line-height: 150%;
	margin: 0.2em 0;
}
footer .small{
    font-size: 19px;
}
footer .box{
    display: inline-block;
    width: 3em;
    background: #000;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    line-height: 120%;
}
footer .rightItem p{
    font-family: 'Noto Sans JP', sans-serif; 
    font-size: 28px;
    text-align: center;
}
footer .linkButton {
	background: #036EB7;
	border-radius: 15px;
	font-weight: bold;
	letter-spacing: 0;
	font-size: 31px;
	margin: 5px 0;
    width: 14em;
	padding: 0.75em 0;
}
}