@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&&family=Noto+Serif+JP:wght@200..900&display=swap');

/* Gotic
font-family: 'Noto Sans JP', sans-serif;
font-family: "Zen Maru Gothic", 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 {
    background: #a39480;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 10000;
}
header > div{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
header .logo{
    display: inline-block;
    margin: 0 0 0 5px;
}
header label{
    float: right;
}
header .menuButton{
    display: inline-block;
    box-sizing: border-box;
    border: solid 1px #fff;
    border-radius: 6px;
    color: #c4171e;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 18px;
    width: 6em;
    box-shadow: 1px 3px 5px 0 rgba(0,0,0,0.6) ;
    padding: 0.15em 0;
    margin: 0 5px 0 0;
}
main{
    padding: 51px 0 0 0;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.contents{
    width: 100%;
}
h1{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
    font-weight:bold;
    text-align: center;
    padding: 20px 0 0 0;
}
h1 span{
    display: inline-block;
    padding: 0 2em;
    border-bottom: solid 2px #754c24;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
    font-weight:bold;
    text-align: center;
    padding: 0 0 0 0;
}
h2 span{
    display: inline-block;
    padding: 0 2em;
    border-bottom: solid 2px #754c24;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 17px;
    font-weight: bold;
    text-align: center;
    color: #000;
}
h3 span{
    display: inline-block;
    padding: 0 1em;
    background: linear-gradient(0deg, rgba(255,123,172,0.2) 0%, rgba(255,123,172,0.2) 15%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 100%);
}
h4{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    color: #000;
}
h5{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    color: #000;
}
.content{
    width: 100%;
    margin: 0 auto 50px auto;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 175%;
}
footer{
}
.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:#000;
	font-size: 14px;
	text-decoration:none;
	padding: 0.75em 0;
	border-radius: 8px;
    font-weight: normal;
    text-align: center;
    background: #99bd32;
}
.linkButton:hover{
	opacity: 0.8;
	color:#000;
}
.linkButton:visited{
	color:#000;
}
.stdLink{
    color: #000;
    font-size: inherit;
    text-decoration: none;
}
.stdLink:hover{
    color: inherit;
}
.stdLink:visited{
    color: inherit;
}
.forPC{
    display: none;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

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

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

@media only screen and (min-width: 768px) {
.gridContainer {
	max-width: 1000px;
	margin: auto;
}
.content{
    width: 100%;
}
.forSP{
    display: none;
}
.forPC{
    display: block;
}
}