@charset "utf-8";

/* Reset CSS */
*,*::before,*::after {
	box-sizing: border-box;
}
body,h1,h2,h3,h4,h5,h6,article,section,header,footer,nav,aside,p,hr,ul,ol,li,dl,dt,dd,div,
main,em,strong,small,i,b,spantable,caption,tr,th,td,pre,label,input,textarea,select,button {
	padding: 0;
	margin: 0;
	font-weight: normal;
	line-height: 1.6;
	word-wrap: break-word;
}
body {
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
}
address,em,i {
	font-style: normal;
}
strong,th,b {
	font-weight: normal;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: 0.6;
}


html  .libre-baskerville-regular {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .libre-baskerville-bold {
	font-family: "Libre Baskerville", serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .libre-baskerville-regular-italic {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: italic;
  }
  

  
 
  /*ヘッダー*/


  header{
	width: 100%;
	height: 120px;
}
.top h1{
	text-align: center;
	line-height: 1;
	width: 100px;
	margin: 0 auto;
}
.top img{
	vertical-align: bottom;
}
.top ul {
	margin-left: 80%;
	margin-top: -80px;	
	display: flex;
	list-style: none;
}
@media screen and (max-width: 760px){
	.top ul {
		margin-left: 0;
	}
}
.top ul li img{
	width: 30px;
}
.top {
	width: 80%;
	margin: 0 auto;
}
@media screen and (max-width: 760px){
	.top{
		width: 100%;
	}
}
.space{
	padding: 0 18px;
}


  	/*メイン*/
	.pop  {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: normal;
  }
@media screen and (max-width: 760px) {	/* ハンバーメニューに切り替え幅 */
	.pop {
		display: none;
	}
}
	nav ul{
		display: table;
		margin: 0 auto;
		padding: 0;
		width: 80%;
		text-align: center;
		margin-bottom: 100px;
	}
	nav ul li{
		display: table-cell;
		min-width: 50px;
	}
	nav ul li a{
		display: block;
		width: 100%;
		padding: 10px 0;
		text-decoration: none;
		color: #555;
		font-weight: bold;
	}
	nav ul li.current{
		color: #555;
	}
	nav ul li:hover{
		background-color: #fff;
		
 }
	#center{
		text-align: left;
		width: 70%;
		font-size: 18px;
		display: block;
		margin:0 auto;
		line-height: 400%;
		margin-bottom: 250px;
		padding-top: 100px;
}
	@media screen and (max-width: 760px) {
	.text {
		font-size: 16px;
	}
}
	.text{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 400%;
	font-size: 30px;
	list-style-type: none;
}
footer{
	width: 100%;
	height: 200px;
	text-align: center;
	padding: 50px 0;
	background-color: #83B6B7
}
footer small{
	color: #F9F7F7
}
.footer {
	width: 100px;
	margin: 0 auto;
	margin-top: 40px;
}
.footer ul {
	display: flex;
	list-style: none;
	justify-content: space-between;
}
.footer ul li img{
	width: 40px;
}
/* ページトップ（jQueryの基本形でデザイン変更）の設定 */
#page-top {								/* スクロールボタンの配置位置 */
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	transform: translateY(100px);
}
@keyframes UpAnime{						/* スクロールボタンを上に上げるアニメーション */
	from {
		transform: translateY(100px);
	}
	to {
		transform: translateY(0);
	}
}
#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes DownAnime{					/* スクロールボタンを下に下げるアニメーション */
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(100px);
	}
}
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}
#page-top a {							/* スクロールボタンのスタイル設定 */
	display: block;
	width: 60px;
	height: 60px;
	padding-top: 20px;
	border-radius: 8px;
	background: #fff;				/* スクロールボタンの背景色 */
	opacity: 0.8;
	font-size: 2.2rem;
	line-height: 0.8rem;
	color: #000;						/* スクロールボタンの文字色 */
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
}
#page-top a span {
	font-size: 0.6rem;
}
#page-top a:hover{
	opacity: 0.6;
}

/* ハンバーガーメニューの設定 */
div.hamburger-menu {
	display: none;						/* 初期状態で非表示にする場合は「none」を設定 */
}
@media screen and (max-width: 760px) {	/* ハンバーメニューに切り替え幅 */
	div.hamburger-menu {
		display: block;
	}
}
div.hamburger-menu .menu-btn {			/* ボタン領域を右上に作成 */
    position: fixed;
    top: 20px;							/* ボタンの縦位置 */
    right: 10px;						/* ボタンの横位置 */
    display: flex;
    height: 30px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(253, 255, 255, 0.64);
	cursor: pointer;
	border-radius: 2px;
}
div.hamburger-menu .menu-btn span,		/* ボタンの3本線 */
div.hamburger-menu .menu-btn span:before,
div.hamburger-menu .menu-btn span:after {
    content: '';
    display: block;
    height: 1.5px;
    width: 35px;
    border-radius: 3px;
    background-color: #000000bb;				/* 3本線の色 */
    position: absolute;
}
div.hamburger-menu .menu-btn span:before {
    bottom: 10px;						/* 上の線は上方向に10px移動 */
}
div.hamburger-menu .menu-btn span:after {
    top: 10px;							/* 下の線は下方向に10px移動 */
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
										/* ボタンクリック時：真ん中の線は非表示 */
    background-color: rgba(255, 255, 255, 0);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
										/* ボタンクリック時：上の線を斜め（／） */
    bottom: 0;
    transform: rotate(45deg);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
										/* ボタンクリック時：下の線を斜め（＼） */
    top: 0;
    transform: rotate(-45deg);
}
div.hamburger-menu #menu-btn-check {	/* チェックボックスは非表示 */
    display: none;
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-content {
										/* ボタンクリック時：メニュー領域を表示 */
    left: calc(100% - 220px);			/* メニュー領域の引き出し位置（0にすると左端まで） */
}
div.hamburger-menu .menu-content {		/* メニューのコンテンツ領域 */
	width: 100%;
	height: 100vh;						/* autoにするとコンテンツ領域分までに */
    position: fixed;
    top: 0;
    left: 100%;
	overflow: auto;
    z-index: 80;
    padding: 0 10px;					/* メニュー領域の左右の隙間 */
    background-color: rgba(0,0,0,0.7);	/* メニュー領域の背景色 */
    transition: all 0.5s;				/* メニュー領域の引き出しスピード */
}
div.hamburger-menu .menu-content ul {	/* メニューの領域を作成 */
	display: block;
	width: 200px;						/* メニュー領域の横幅を設定（100%にすると横幅いっぱい） */
    padding-top: 80px;					/* ボタン領域分を下に下げる */
}
div.hamburger-menu .menu-content ul li {
										/* メニューの項目領域 */
    border-top: solid 1px #fff;			/* メニュー項目間の線色 */
    list-style: none;
}
div.hamburger-menu .menu-content ul li:last-child {
    border-bottom: none 1px #fff; 		/* 最後のメニュー項目の下線色 */
}
div.hamburger-menu .menu-content ul li a {
										/* メニューの項目領域（リンク実体） */
	display: block;
    font-size: 16px;
    text-decoration: none;
    color: #fff;						/* メニュー項目の文字色 */
	font-weight: bold;
    padding: 10px 0px;
    text-align: center;					/* メニュー項目の表示位置 */
}
div.hamburger-menu .menu-content ul li a span {
	font-size: 90%;
	font-weight: normal;
}
div.hamburger-menu .menu-content ul li a:hover {
	opacity: 0.6;
