@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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap') ;

/* font
    font-family: 'Noto Sans JP', sans-serif; gotic
    font-family: 'Noto Serif JP', serif;	micho
    font-family: "Open Sans", 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 およびそれ以下. */
.menuBlock{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 10000;
}
.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: "Open Sans", sans-serif;
	font-size: 38px;
    font-weight:bold;
    letter-spacing: -1px;
    color: #606060;
}
h2{
    font-family: "Open Sans", sans-serif;
	font-size: 38px;
    font-weight:bold;
    letter-spacing: -1px;
    color: #606060;
}
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 2%;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	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{
    font-family: 'Noto Sans JP', sans-serif;
	display:inline-block;
	color:#fff;
	font-size: 24px;
	text-decoration:none;
	padding: 0.5em 0;
    background-color:#22B573;
    font-weight: normal;
    text-align: center;
    margin: 0.25em 0;
}
.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{
    margin: 100px 0 0 0;
    position: relative;
}
footer > div:nth-child(1) img{
    width: 100%
}
footer .dummy{
    height: 100px;
    background: #39B54A;
}
footer .tree {
	position: absolute;
	bottom: 92%;
	right: 10%;
	width: 40vw;
	max-width: 469px;
}
footer .tree img{
    width: 100%;
}
.footerContent{
    max-width: 1152px;
    width: 95%;
    margin: 100px auto !important;
}
.footerContent .linkButton{
    width: 12em;
}
.footerContent h2{
    text-align: center;
}
.footerContent p{
    font-family: 'Noto Serif JP', serif;
    text-align: center;
}
.footerContent .telNo{
    font-size: 29px;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
h1{
}
h2{
}

.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: 20px;
}
}

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

@media only screen and (min-width: 768px) {
.gridContainer {
	max-width: 1280px;
	margin: auto;
}
.content{
    margin: 100px 22%;
}
.content p{
    font-size: 20px;
}
.linkButton{
	font-size: 33px;
}
.footerContent{
    width: 90%;
    margin: 100px auto !important;
}
footer{
    margin: 200px 0 0 0;
}
footer .item{
    width: 45%;
    margin: 0 2.5%;
}
footer .tree {
	bottom: 85%;
}
}