@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/







/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100%;
	font-size: 15px;
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	color: #333;		/*全体の文字色*/
	line-height: 1.8em;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}
ul {list-style-type: none;}
/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}




/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	color:#2397D3;	/*マウスオン時の文字色*/
}


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	margin: 0;
	padding: 0

}
/*inner（囲むブロック）
---------------------------------------------------------------------------*/
.header_inner{
	width:100%;
	max-width: 900px;
	margin: 0 auto 20px;
	display: flex;					
	justify-content: space-between;	
	align-items: center;		
	flex-direction: row;
	padding: 0 30px 10px;		
}

/*ロゴ画像*/
header #logo {
	width: 300px;		/*ロゴ画像の幅*/
}

/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin: 15px 70px 0 0;
	color: #137a4e;	
}
header address a{
	color: #137a4e;	
	font-size:20px;
	text-decoration: none;
	font-weight: 600;
}

header address img {
	padding-right: 10px;
	width: 43px;
	margin-top: -3px;
}

.pc { display:block; }
.tb { display:none; } 
.sp { display:none; }

@media screen and (max-width: 900px){   
  .pc { display:block; }
  .tb { display:block; } 
  .sp { display:none; }
}

@media screen and (max-width: 480px){   
  .pc { display:none; }
  .tb { display:block; } 
  .sp { display:block; }
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 100;
	top: 30px;		/*上からの配置場所指定*/
	right: 30px;	/*右からの配置場所指定*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: url(../images/ham.png) no-repeat center top/50px;
}
/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: url(../images/ham.png) no-repeat center bottom/50px;
}


/*メニュー設定（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
#menubar{
	padding: 0;
}
#menubar ul {
	list-style: none;
	margin:10px 0 10px;
	padding: 0;
	
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	width: 50%;
	display: block;
	text-decoration: none;
 background: -webkit-linear-gradient(top, #FFF, #e8ecc2);
 background: linear-gradient(to bottom, #FFF, #e8ecc2);/*背景グラデーション*/
	color: #137a4e;		/*文字色*/
	padding: 15px 20px 15px 80px;	/*上下、左右へのメニュー内の余白*/
	margin: 10px auto;
	font-size:18px;
	position: relative;
	border-radius: 8PX;
	
}
.menuicon{
	position: absolute;
	width: 45px;
	top:10px;
	left:20px;
}
/*マウスオン時のメニュー色*/
#menubar > ul > li > a:hover img {
    transform: rotateZ( 30deg );
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}




/*メニューの設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}

/*小さな端末用のメニューブロック*/
#menubar.db {
	position: fixed;
	overflow: auto;z-index: 99;
	left: 0;
	top: 80px;
	width: 100%;
	height: 100%;
	padding: 50px 0;
	background-color: #137a4e;
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
#menubar .ddmenu_parent ul {display: none;}

/*ドロップダウンメニュー1個あたりの設定*/
#menubar .ddmenu_parent ul a {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	border:1px solid #137a4e;
	font-size: 16px;
	background-image: url("../images/menu_arrow.png");
	background-repeat: no-repeat;
	background-position: left;
	margin: 10px auto;
	border-radius: 8px;
}
#menubar .ddmenu_parent ul img{
		width: 20px;
	}

/*マウスオン時*/
#menubar .ddmenu_parent ul a:hover {
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
	background-image: url("../images/menu_arrow2.png");
	background-repeat: no-repeat;
	background-position: left;
}



.rec_link{
	width: 52%;
	margin: 20px 22% 10px 24%;	
}
.rec_link img:hover{
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.2));
}

.privacy_link{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 50%;
	margin: 10px auto;	
}
.privacy_link_item a{
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	margin: 0 20px;
	
}
.privacy_link_item a:hover{
	color: #3fa87b;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.footer_top{
	width: 100%;
	margin: 0 auto -1px;
}


footer{
	width:100%;
	background-color:#659C7C;

}

.footer_inner{
	width: 250px;
	margin:0 auto 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 15px;
}
.footer_logo{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 1.4em;
	}
.footer_logo img{
	width: 80%;
	margin: 10px auto 10px;
}
.footer_logo p{
		margin: 0;
	}
.footer_logo span{
		font-size:23px;
	line-height: 1.6em;
	font-weight: 600;
	}
.footer_logo span a:hover{
	color: rgba(88,161,93,1.00);
}
#footermenu {
	display: none;
}
#footermenu2 {
	display: none;
}
.footer_info{
		margin: 0 20%;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
.footer_info_item{
		width: 47%;
	margin: 0 1.5%;
	}
 .footer_info_item img:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.2));
}
/*フッター設定
---------------------------------------------------------------------------*/
.copyright small {font-size: 100%;}


.copyright {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #0b634c;	/*背景色*/
	color: #fff;			/*文字色*/;
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #AABDB2;}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-align: center;
	width: 60px;
	z-index: 120;
	position: fixed;
	bottom: 100px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 2S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	color: #fff;
	line-height: 1em;
	text-decoration: none;
}
.pagetop a img{
	opacity: 0.8;
	border-radius: 5px;
	box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.2); 
}
.pagetop img a:hover{
	opacity: 1.0;

}


/*contentsブロック
---------------------------------------------------------------------------*/
.contents{
	width: 100%;
	border-top:2px solid rgba(153,213,228,1.00);
	margin: -20px 0 0 0;
}
/*-------------------------mainimg---------------------------------------*/
.top_img{
	width: calc(100% - 6px);
	margin: -40px auto 0;
	position: relative;
	max-width: 900px;
	padding: 3px;
}
.top_img_cover{
	width: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 2;
	max-width: 1500px;
}
.top_img img{
	width: 100%;
	padding: 2px;
	max-width: 1500px;
	z-index: 1;
	margin-top: -1px;
}
.main{
	width: 100%;
	margin: 0 auto;
	padding: 40px 0;
	line-height: 2em;
	background-color: #fff;
}
.main_inner{
	width: 80%;
	margin: 0 auto;
	max-width: 600px;
}
.main h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #137a4e;
	font-size: 1.6rem;
	line-height: 2.4rem;
}
.main2{
	width: 100%;
	margin: 0 auto -60px;
	background-color: #F3FCE9;
	padding: 40px 0 80px;
}
.main3{
	width: 100%;
	margin: 0 auto -60px;
	background-color: #f9f9f7;
	padding: 60px 0 80px;
}
/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}
.top_img{
	width: 100%;
	margin: -53px auto 0;
	position: relative;
	max-width: 1500px;
}
.main_inner{
	width: 60%;
	margin: 0 auto;
	max-width: 900px;
}	
.main h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #137a4e;
	font-size: 2.2rem;
	line-height: 2.7rem;
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*電話番号ブロック*/
header address {
	margin-right: 0px;
}
/*inner（囲むブロック）
---------------------------------------------------------------------------*/
.header_inner{
	width:100%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;					
	justify-content: space-between;	
	align-items: center;		
	flex-direction: row;
	padding: 0 30px 10px;		
}
.inner{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position:relative;
	}

/*ロゴ画像*/
header #logo {
	width: 260px;		/*ロゴ画像の幅*/
}

/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin: 10px 20px 0 0;
	color: #137a4e;	
	font-size:20px;
}
header address a{
	color: #137a4e;	
	font-size:24px;
	text-decoration: none;
	font-weight: 600;
}
header address img {
	padding-right: 10px;
	width: 45px;
	margin-top: -5px;
}	
/*menubar
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}

    /*メニュー設定
---------------------------------------------------------------------------*/
.menu_area{
		width: 100%;
		margin: 0 auto;
		max-width: 1500px;
	}
#menubar{
	width:850px;
	margin:0 0 0 auto;
	}
#menubar ul {
	list-style: none;margin: 0;padding: 0;
	background: #fff;	
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	width: 100%;
	display: block;text-decoration: none;
	background:#fff;
	color: #333;		/*文字色*/
	padding: 10px;	/*上下、左右へのメニュー内の余白*/
	margin: 0 auto;
	position: relative;
	font-size:14px;
}
.menuicon{
	position: absolute;
	width: 40px;
	top:-25px;
	left:40%;
}
#menubar ul a:hover img {
    transform: rotateZ( 30deg );
}


/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	
}


/*メニューの設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}

/*小さな端末用のメニューブロック*/
#menubar.db {
	position: absolute;overflow: auto;z-index: 99;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 20px;				/*上下、左右へのメニューブロック内の余白*/
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
#menubar .ddmenu_parent ul {display: none;}

/*ドロップダウンメニュー1個あたりの設定*/
#menubar .ddmenu_parent ul a {
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	border:none;
	border-radius: 0;
	font-size: 13px;
	margin: 0;
}

/*マウスオン時*/
#menubar .ddmenu_parent ul a:hover {
	background: #137a4e;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*メニューのボックス全体の設定（※変更不要）*/
#menubar {height: auto;overflow: visible;}
#menubar.db {position: static;overflow: visible;height: auto;padding: 0;}

/*ドロップダウンに影響させない為。*/
#menubar > ul {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1500px;				/*最大幅。これ以上広がらないように。前半の小さな端末用の「#container」と数字を揃える。*/
	margin: 0 auto;
}

/*メニュー１個あたりの設定*/
#menubar li {
	text-align: center;	/*テキストをセンタリング*/
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ddmenu ulの幅となる基準を作っておく*/
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
#menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
}

/*メニュー１個ごとに入れる線*/
#menubar .ddmenu_parent ul li a {
	border: 1px solid #137a4e;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
}
	

/*最初のドロップダウンにのみ上の線を入れる*/
#menubar .ddmenu_parent ul li:first-of-type a {
	border-top: 1px solid #137a4e;
}
	
	
.footer_top{
	width: 100%;
	margin: 0 auto -1px;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/

/*ボックス全体の設定*/
footer{
	width:100%;
	background-color: #659C7C;
}
.footer_inner{
	width: 100%;
	margin:0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1200px;
	padding: 0 0 20px 30px;
}
.footer_logo{
	width: 250px;
	display: flex;
	flex-direction: column;
	padding: 0;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 2em;
	}
.footer_logo p{
	margin: 0;
	}
.footer_logo img{
	width: 80%;
	margin: 20px auto 10px;
}
.footer_logo span{
	font-size:20px;
	font-weight: 700;
	line-height: 1.4em;
	}

#footermenu {
	width: 70%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 40px 0 0 10px;
	max-width: 840px; 
}

/*ボックス内のリンクテキスト設定*/
#footermenu,#footermenu2 a {
	text-decoration: none;
	color: #fff;	/*文字色*/
	font-weight: 400;
	font-size: 14px;
}
#footermenu li img{
		width: 20px
	}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #AABDB2;	/*文字色*/
}
#footermenu2 a:hover {
	color: #AABDB2;	/*文字色*/
}
/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 20px 0 0;
	padding: 0 ;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-size: 16px;
	color: #AABDB2;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}
	#footermenu .title a{
		color: #AABDB2;
	}
	#footermenu .title a:hover{
		color: #fff;
	}
#footermenu2{
	width: 500px;
	margin: 0 0 0 43vw ;
	border-top: 1px solid #AABDB2;
	display: flex;
	flex-direction: row;
	justify-content: center;
	max-width: 840px; 
}
.footermenu2_item{
		margin:15px;

	}

.copyright small {font-size: 100%;}

.copyright {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #0b634c;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}
/*contentsブロック
---------------------------------------------------------------------------*/
.contents{
	width: 100%;
	border-top:2px solid rgba(153,213,228,1.00);
	margin: -20px 0 0 0;
}


}

/*---------------------------------------------------------------------------
ここから下は画面幅480px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
html,body {
	margin: 0;padding: 0;
	height: 100%;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}
/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

.top_img{
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	max-width: 500px;
}

/*inner（囲むブロック）
---------------------------------------------------------------------------*/
.header_inner{
	width:100%;
	margin: 0 auto;
	display: flex;					
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0 10px 0;		
}

/*ロゴ画像*/
header #logo {
	width: 230px;
}

/*電話番号ブロック*/
header address {
	font-style: normal;	
	margin: 30px 20px 0;
	font-size:20px;
}


header address img {
	width: 80%;
}
.main_inner{
	width: 90%;
	margin: 0 auto;
	max-width: 600px;
}
.main h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #137a4e;
	font-size: 1.4rem;
	line-height: 1.8rem;
	font-weight: 500;
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 100;
	top: 20px;		/*上からの配置場所指定*/
	right: 20px;	/*右からの配置場所指定*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: url(../images/ham.png) no-repeat center top/50px;/*背景色、ハンバーガメニュー画像の読み込み、50pxは幅の指定*/
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	width: 80%;
	display: block;
	text-decoration: none;
 background: -webkit-linear-gradient(top, #FFF, #e8ecc2);
 background: linear-gradient(to bottom, #FFF, #e8ecc2);/*背景グラデーション*/
	color: #137a4e;		/*文字色*/
	padding: 10px 20px 10px 80px;;	/*上下、左右へのメニュー内の余白*/
	margin: 10px auto;
	font-size:18px;
	position: relative;
	border-radius: 8PX;
	
}
.menuicon{
	position: absolute;
	width: 45px;
	top:10px;
	left:20px;
}
.menuicon{
	position: absolute;
	width: 45px;
	top:10px;
	left:20px;
}
/*マウスオン時のメニュー色*/
#menubar > ul > li > a:hover img {
    transform: rotateZ( 30deg );
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}




/*メニューの設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}

/*小さな端末用のメニューブロック*/
#menubar.db {
	position: absolute;
	overflow: auto;z-index: 99;
	left: 0;
	top: 80px;
	width: 100%;
	height: auto;
	padding: 30px 0 ;
	background-color: #137a4e;

}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
#menubar .ddmenu_parent ul {display: none;}

/*ドロップダウンメニュー1個あたりの設定*/
#menubar .ddmenu_parent ul a {
	background: #fff;	/*背景色*/
	color: #6b5a18;		/*文字色*/
	font-size: 16px;
	background-image: url("../images/menu_arrow.png");
	background-repeat: no-repeat;
	background-position: left;
	margin: 10px auto;
	border-radius: 8px;
}

/*マウスオン時*/
#menubar .ddmenu_parent ul a:hover {
	background: #fff;	/*背景色*/
	color: #3a372e;			/*文字色*/
	background-image: url("../images/menu_arrow2.png");
	background-repeat: no-repeat;
	background-position: left;
}



.rec_link{
	width: 80%;
	margin: 20px 22% 10px 10%;	
}
.rec_link img:hover{
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.2));
}

.privacy_link{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 90%;
	margin: 10px auto;	
}
.privacy_link_item a{
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	margin: 0 25px;
	
}
.privacy_link_item a:hover{
	color: #5ebc91;
}

.footer_top{
	width: 100%;
	margin: 0 auto -1px;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/

/*ボックス全体の設定*/
footer{
	width:100%;
	background-color: #659C7C;
}
.footer_inner{
	width: 90%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 480px;
	padding: 0 0 30px 0;
}
.footer_logo{
	width: 	80%;
	display: flex;
	flex-direction: column;
	padding: 0;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 2em;
	margin: -20px auto 0;
	}
.footer_logo p{
	margin: 0 auto;
	}
.footer_logo span{
	font-size:20px;
	font-weight: 700;
	line-height: 1.4em;
	}


#footermenu {
	display: none;
}
#footermenu2 {
	display: none;
}
.copyright {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #0b634c;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding:10px;			/*ボックス内の余白*/
}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-align: center;
	width: 60px;
	z-index: 120;
	position: fixed;
	bottom: 230px;	/*下から20pxの場所に配置*/
	right: 5%;		/*右から3%の場所に配置*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 2S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	color: #fff;
	line-height: 1em;
	text-decoration: none;
}
}
