@charset "UTF-8";
body{
	color: gray;
}


.title{
	content: "";
	display: block;
	clear: both;
            margin: 0 auto;
	max-width: 1200px;
}

.title::after{
	content: "";
display: block;
clear: both;
	margin: 0 auto;
}

.box1{
	float: left;
	width: 50%;
	margin-left: 10%;
}

.box1 a:link, a:visited, a:hover, a:active{
	color: gray;
	text-decoration: none;
}

.box1-2{
	float: left;
	width: 20%;
	margin-left: 10%;
	margin-top: 2%;
	text-align: left;
	font-size: small;
}

/*メインメニューの編集*/
.box2{
	font-family: HG丸ｺﾞｼｯｸM-PRO;
	font-size: large;
	text-align: center;
	margin-bottom: 10px;
	margin-top: 35px;
}

.box2-2{
	text-align: center;
}


.box2-2 img{
	width: 100%;
	margin: 0 auto;
}

.box3{
	width: 80%;
            margin: 0 auto;
	max-width: 1000px;
}
.box3 a:link, a:visited, a:active{
	color: gray;
	text-decoration: none;
}
.box3 a:hover{
  background:#ffd0db;
}

/*ｐ文字だけ１文字下げる*/
p{
  text-indent: 1em;
}

/*がぞう*/
img.top{
  width: 1000px;
  height: 250px;
  object-fit: cover; /* この一行を追加するだけ！ */

}

/*みだし*/
h22{
  background: #e76b6f;
  box-shadow: 0px 0px 0px 5px #e76b6f;
  border: dashed 2px #ffffff;
  padding: 0.2em 0.5em;
  color: #ffffff;
}

h1{
  color: #ffffff;
  padding: 0.2em 0.5em;
  border-bottom: 3px dotted #e76b6f;
  background: #edb8b9;
}

/*見出し２*/
h2{
  position: relative;
}

h2::after{
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
	margin-bottom: -10px;
}

/*テーブル*/
table{
  width: 90%;
 max-width: 900px;
 margin: 0 auto;
  }

/*フッター設定*/
.footerFixed{
	padding-bottom: 60px;/* ←フッターの高さを指定 */
	box-sizing: border-box;/* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
	text-align: right;
}

footer{
    /* 以下 背景色やテキストカラーなどはお好みで指定してください */

}

/***トップへ戻るボタン***/
#page-top{
    display: block;
    font-weight: bold;
    padding: .7em;
    text-align: center;
    background: #fff; /*背景色*/
    color: #666; /*文字色*/
    transition: .3s;
}
/***マウスオーバー時***/
#page-top:hover{
    background: #e76b6f; /*背景色*/
    color: #fff; /*文字色*/
}
/***トップへ戻るボタンここまで***/