@charset "UTF-8";
/* ***** TOP style.css ***********/

/* ***** Import CSS file.********** */
@import url('/common/css/reset.css?0917');
@import url('/common/css/menu.css?0917');
/* ****************************** */

/*===基本スタイル===*/
html, body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif; 
	margin:0;
	padding:0;
}

body.open {
  overflow: hidden;
	
}

body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	background-color: #fff;
	color:#000;
	min-height:300px;
	overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
}

/*見出し*/
h1,h2,h3,h4,h5{
	line-height: 1.8rem;
}
/*END 見出し*/
p {
  line-height: 1.4em; 
text-align: left;
	padding:5px 0;
}

a {
  text-decoration: none; 
	color:#000;
}
a:hover{
	color:#AC966A;
}
a:visited{
	color:#000;
}

img {
  transition: 0.5s; 
  width: 100%;
  max-width: 100%;
  height: auto;
  }

dt {
  font-weight: 600; }

dd {
  margin-bottom: 20px; }

/*---リスト関連---*/
ul{
	list-style: none;
	margin:0 0;
    line-height: 1.6rem;	
}
.list_disk{
		list-style-type:disc;
		margin:10px 0 10px 20px;
}

li{

}
.li_margin10_0 li{
	margin:10px 0;
}
.li_margin20_0 li{
	margin:20px 0;
}
ol {
		margin:10px 0;
  margin-left: 20px;
    line-height: 1.6rem;
}
/*---END リスト関連---*/

/*---テーブル関連---*/
table {
  border: 1px;
    width: 100%;
}
  table th, table td {
    border: solid 1px #000;
    vertical-align: middle;	
    line-height: 1.2rem;
    padding: 10px 2px;	  
}
/*---END テーブル関連-------*/


/*===カスタマイズ=======*/

/*---フェードイン効果------*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }


/*---スクロールバー関連--------*/
 .scroll-wrap{
    width: 90%;
    padding: 5%;
    overflow-y: auto;
  }
  .scroll-wrap::-webkit-scrollbar {
    height: 10px;
  }
  .scroll-wrap::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 5px;
  }
  .scroll-wrap::-webkit-scrollbar-track-piece {
    background: #efefef;
  }
/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(150, 150, 150, .8);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(	50, 50, 50, .8);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
/*iphoneスクロールバー常に表示*/
.scrollbox::-webkit-scrollbar {
  background:#ccc;
  width:10px;
}
.scrollbox::-webkit-scrollbar-thumb {
  background:#aaa;
  border-radius: 50px;
  height: 50px;
}
.container::-webkit-scrollbar {
  display: block;
  -webkit-appearance: block;
}


/*---ENDスクロールバー関連--------*/


/*チェックボックス関連　20220705*/
.anchorText {
  pointer-events: none;
  /* 無効のスタイル */
  color: #999;
}

#check-enable:checked ~ p .btn001 .anchorText {
  pointer-events: auto;
  /* 有効のスタイル */
  color: blue;
}
/*END チェックボックス関連*/

/*PC　SMP表示関連*/
.d-pc {
	 display: none; }
.d-smp {
	display: block; 
	}

/*テキスト色関連*/
.aka{
	color:#f00;
}
.t_white{
	color:#fff;
}
.t_black{
	color:#000;
}

/*見出し関連*/
.m_title{
	font-size:1.2rem;
	margin:15px 0;
    text-align: left;	
}
.ms_title {
    font-size: 1.0rem;
    margin: 10px 0;
    text-align: left;
}

/*テキストサイズ関連*/
.f_size01rem{
	font-size:0.1rem;
}
.f_size04rem{
	font-size:0.4rem;
}
.f_size06rem{
	font-size:0.6rem;
}
.f_size08rem{
	font-size:0.8rem;
}
.f_size09rem{
	font-size:0.9rem;
}
.f_size10rem{
	font-size:1.0rem;
}
.f_size11rem{
	font-size:1.1rem;
}
.f_size12rem{
	font-size:1.2rem;
}

/*テキスト位置関連*/
.t_left{text-align:left;}
.t_center { text-align: center;}
.t_right{text-align:right;}

/*背景色*/
.bg_color_black{
	background-color:#000;		
}
.bg_color_white{
	background-color:#fff;		
}

/*枠表示項目*/
.unit_frame{
	margin:10px auto;
	padding:10px 0;	
}
.inner{
	position: relative;
}
.inner_pdd5{
	padding:5px;
}

.inner_pdd10{
	padding:10px;
}
.inner_pdd20{
	padding:20px;
}

.inner_pdd_pc20-20_smp20-0{
	padding:20px 0;	
}
.inner_pdd_pc20-20_smp20-10{
	padding:20px 10px;	
}


.inner .on_caption{
	position: absolute;
	top:0;
	left:0;
	font-weight: 600;
}

/*END 枠表示項目*/


/*余白関連*/
.margin10_0{
	margin:10px 0;
}
/*幅関連*/
.frame960 {
	max-width: 960px;
	max-width: 100%;		
	margin:0 auto;
}
.frame_m700{
	max-width: 700px;
	margin:0 auto;
}
.frame_m600{
	max-width: 600px;
	margin:0 auto;
}
.w200m{
	max-width:200px;
	margin: 0 auto;
}
.w300m{
	max-width:300px;
	margin: 0 auto;
}
.w400m{
	max-width:400px;
	margin:	0 auto;
}
.w500m{
	max-width:500px;
	margin: 0 auto;
}
.w600m{
	max-width:600px;
	margin:0 auto;}
.w700m{
	max-width:700px;
	margin:0 auto;
}
/*END　幅関連*/	

/*グリッド表示関連*/
.p_relative{
	position: relative;
}

.grid_area{
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}
.grid_area_l{
	display: flex;
	flex-wrap:wrap;
	justify-content: start	
}
.pc2smp1 {
    width: 100%;
	overflow: hidden;
}
.pc3smp2 {
	width: 48%;
    padding: 5px;
	overflow: hidden;
}
.pc3smp3 {
	width: 33%;
    padding: 5px;
	overflow: hidden;
}
.pc80w-smp80w{
	width:80%;
	margin:0 auto;
}
.pc80w-smp100w{
	width:100%;
	margin:0 auto;
}

/*---リンクフレーム関連------*/

.linkitem {
	margin-bottom: 10px;
	width:100%;
	margin: 0 auto; 
}
.linkitem_frame h2 {
	position: absolute;
	left:15px;
	top:15px;
}

.link_item .inner_pdd5 {
	position: relative; 
}
.link_item .inner_pdd5 h2 {
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.0em; 
	text-align:center;
	text-shadow: 1px 1px 5px #000;	
	}

.link_frame {
	position: absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
  padding: 0px;
  transition: background-color 1s; 
  color: #333;
	font-size:1.2em;
}
.link_frame img{
	object-fit: cover;
	width:100%;
	max-width:600px;
	min-height:100%;
	max-height:300px;
	}


.link_frame h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;	
}

.link_frame h2 a:hover{
	color:#fff; 
	transition: 0.3s; 
}

.link_frame h3 {
	position: absolute;
	right:15px;
	bottom:15px;
	color: #fff;
	text-shadow: 1px 1px 5px #000; 
	font-size:1.2em;
}

/*---END リンクフレーム関連------*/


/*--画像上文字表示------*/
.ontext {
	position: relative;
	text-align: center;
	font-size:1.1rem;
}
.ontext .ontext_inner h2 {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:left;
	top:20px;
	left:20px;
	color:#fff;	
	text-shadow: 1px 1px 2px black;
}
.ontext .ontext_inner h3 {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:left;
	bottom:25px;
	right:20px;
	color:#fff;	
	text-shadow: 1px 1px 2px black;
}
.ontext img {
    height:auto;
	width:100%;
}

.on_frame{
	position: relative;	
}
.on_frame img{
    object-fit: cover;
    height: 200px;

}
.on_frame h2 {
	position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    text-shadow: 1px 1px 5px #000;
    transition: background-color 1s;
    color: #fff;
	font-size: 1.2rem;
}
.on_frame200{
	position: relative;
}
.on_frame200 img{
	height:200px;
}
.on_frame200 p {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
	text-align: center;
    text-shadow: 1px 1px 5px #000;
    transition: background-color 1s;
    color: #fff;
    font-size: 1.2rem;
}
/*---画像上文字表示------*/

/*img hover切替*/
.img-box {
	 position: relative;
}
.img-box img{
	box-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
}
.img-box .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s; 
}
.img-box:hover .active {
  opacity: 1;
}
/*---END img hover切替------*/

/*---見出し帯・ライン関連------*/
.obi_01 {
    position: relative;
    padding: 5px 10px 5px 35px;
    margin: 10px 0;
    font: bold /1.2 Arial, Helvetica, sans-serif;
    color: #fff;
    background: #999;
    border-top: #333 solid 1px;
    border-right: #333 solid 1px;
    border-bottom: #333 solid 1px;
    border-left: #333 solid 1px;
    text-shadow: 1px 1px 0 rgb(55 55 55);
    box-shadow: 0 0 0 1px rgb(55 55 55 / 50%) inset;
    background-image: -webkit-gradient(linear, left top, left bottom, from( rgba(020, 020, 020, 1.0)), color-stop(0.25, rgba(040, 040, 040, 1.0)), color-stop(0.30, rgba(035, 035, 035, 1.0)), color-stop(0.36, rgba(040, 040, 040, 1.0)), color-stop(0.50, rgba(035, 035, 035, 1.0)), color-stop(0.80, rgba(015, 015, 015, 1.0)), to( rgba(090, 090, 090, 1.0)) );

}
.obi_01:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 21px;
    width: 0;
    height: 100%;
    border-right: #FBB41C solid 3px;  
}

.obi_02 {
    position: relative;
    padding: 5px 10px 5px 35px;
    margin: 10px 0 ;
    font: bold /1.2 Arial, Helvetica, sans-serif;
    color: #fff;
    background: #999;
    border-top: #333 solid 1px;
    border-right: #333 solid 1px;
    border-bottom: #333 solid 1px;
    border-left: #333 solid 1px;
    text-shadow: 1px 1px 0 rgb(55 55 55);
    box-shadow: 0 0 0 1px rgb(55 55 55 / 50%) inset;
    background-image: -webkit-gradient(linear, left top, left bottom, from( rgba(040, 040, 040, 1.0)), color-stop(0.25, rgba(040, 040, 040, 1.0)), color-stop(0.30, rgba(050, 050, 050, 1.0)), color-stop(0.36, rgba(055, 055, 055, 1.0)), color-stop(0.50, rgba(065, 065, 065, 1.0)), color-stop(0.80, rgba(065, 065, 065, 1.0)), to( rgba(055, 055, 055, 1.0)) );

}
.obi_02:after {
    content: " ";
    position: absolute;
    top: 10%;
    left: 18px;
    width: 0;
    height: 80%;
    border-right: #AC966A solid 6px;

}

.obi_03 {
    position: relative;
    padding: 5px 10px 5px 35px;
    margin: 10px 0 ;
    font: bold /1.2 Arial, Helvetica, sans-serif;
    color: #309;
    background: #30c;
    border-top: #00f solid 1px;
    border-right: #00f solid 1px;
    border-bottom: #00f solid 1px;
    border-left: #00f solid 1px;
    text-shadow: 1px 1px 0 rgb(55 55 55);
    box-shadow: 0 0 0 1px rgb(55 55 55 / 50%) inset;
    background-image: -webkit-gradient(linear, left top, left bottom, from( rgba(040, 040, 040, 1.0)), color-stop(0.25, rgba(040, 040, 040, 1.0)), color-stop(0.30, rgba(050, 050, 050, 1.0)), color-stop(0.36, rgba(055, 055, 055, 1.0)), color-stop(0.50, rgba(065, 065, 065, 1.0)), color-stop(0.80, rgba(065, 065, 065, 1.0)), to( rgba(055, 055, 055, 1.0)) );

}
.obi_03:after {
    content: " ";
    position: absolute;
    top: 10%;
    left: 18px;
    width: 0;
    height: 80%;
    border-right: #AC966A solid 6px;

}

.line_01{
	border-bottom:solid 2px #AC966A;
	padding-bottom:5px;
	margin-bottom: 10px;	
}
.line_02{
	border-bottom:solid 2px #fff ;
	padding-bottom:5px;
	margin-bottom: 10px;	
}
/*---END 見出し帯・ライン関連---*/

/*===ドロップダウン===================*/
.ddown-check{
    display: none;
	text-align: center;
}
.ddown-label{
    display:flex;
	justify-content:space-between;
    margin-bottom: 1px;
	cursor:pointer;
	align-items: center;
	margin:10px 10px 0 10px ;
	background-color:#fff;
	color:#333;
	font-weight:bolder;
	padding:10px 10px;
	line-height: 1.2rem;	
	border:solid 1px #000000;	
	 box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.057),
    0 0.5px 0.5px rgba(0, 0, 0, 0.076),
    0 1px 11px rgba(0, 0, 0, 0.086),
    0 2px 2px rgba(0, 0, 0, 0.092),
    0 4px 4px rgba(0, 0, 0, 0.1),
    0 5px 5px rgba(0, 0, 0, 0.13);	
}
.ddown-label:hover, .ddown-check:hover{
	background-color:#ccc;
}
.ddown-content{
   /* border: 1px solid #333;*/
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .2s;
    visibility: hidden;
	background-color:rgba(200,200,200,0.5);
	margin:0 10px ;	
}
.ddown-check:checked + .ddown-label + .ddown-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
/*ドロップダウンアイコン*/
.ddown_dropdown_icon {
	font-size: 18px;
	margin-top: 0px; 
	color:#000;
	text-align: right;
}
.ddown_dropdown_icon:hover {
	background-color:#ccc;
}
.ddown_dropdown_icon::after {
	font-family: "Font Awesome 5 Free";
	content: '\f107';
	font-weight: 900;
	font-style: normal;	

}
/*===END ドロップダウン===================*/


/*=======ボタン==============*/
/*ノーマルボタン001*/

.btn001 a{
	display: inline-block;
	margin:10px;
	background-color:#fff;
	color:#333;
	font-weight:bolder;
	padding:10px 10px;
	line-height: 1.2rem;	
	border:solid 1px #000000;	
	 box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.057),
    0 0.5px 0.5px rgba(0, 0, 0, 0.076),
    0 1px 11px rgba(0, 0, 0, 0.086),
    0 2px 2px rgba(0, 0, 0, 0.092),
    0 4px 4px rgba(0, 0, 0, 0.1),
    0 5px 5px rgba(0, 0, 0, 0.13);
}
.btn001 a:visited, .btn001 a:link{
		color:#333;
}
.btn001 a:hover{
	background-color:#ccc;
	color:#333;
	transition: 0.3s; 	
}

.btn002{
	display: inline-block;
	margin:10px;
	background-color:#fff;
	color:#333;
	font-weight:bolder;
	padding:10px 10px;
	line-height: 1.2rem;	
	border:solid 1px #000000;	
	 box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.057),
    0 0.5px 0.5px rgba(0, 0, 0, 0.076),
    0 1px 11px rgba(0, 0, 0, 0.086),
    0 2px 2px rgba(0, 0, 0, 0.092),
    0 4px 4px rgba(0, 0, 0, 0.1),
    0 5px 5px rgba(0, 0, 0, 0.13);
}
.btn002:visited, .btn001:link{
		color:#333;
}
.btn002:hover{
	background-color:#ccc;
	color:#333;
	transition: 0.3s; 	
}

/*リンクボタン大*/
.btn_linkitem {
  background-color: #fff;
	border:solid 1px #000000;
	color:#000000;
    width: 100%;	
  height: 80px;
  position: relative;
  margin: 5px;
	 box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.057),
    0 0.5px 0.5px rgba(0, 0, 0, 0.076),
    0 1px 11px rgba(0, 0, 0, 0.086),
    0 2px 2px rgba(0, 0, 0, 0.092),
    0 4px 4px rgba(0, 0, 0, 0.1),
    0 5px 5px rgba(0, 0, 0, 0.13);
}
.btn_linkitem h2:visited {
	  background-color: #000;
}
.btn_linkitem:hover {
  background-color: #ccc;
  height: 80px;
	color:#ccc;
  position: relative;
  margin: 5px; 
 transition: 0.3s; 
}

.btn_linkitem h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
	color:#333;
  
}
.btn_linkitem h2:hover {
	color:#333;
	 transition: 0.3s; 
}
/*googlemapリンク*/
.map_link:hover{
	color:#AC966A;
}

/*END リンクボタン大*/
/*===END ボタン===========*/

/*===各ページ関連==========*/

/*---header 関連------*/
.header_frame {
  width: 100%;
  position: fixed;
  z-index: 100; 
}


.header_logo { 
	width: 100px; 
}

.header_logo img {
    margin: 5px;
	z-index: 100; 
	width: 100%; 
}

.header_image{
	height:400px;
	background-image: url("../../images/top/header_img.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_image .header_title{
    color: #fff;
    text-shadow: 1px 1px 4px #000000;
	font-size:1.4rem;	
    line-height: 1.4em;
}

/*スクロールアイコン*/
.bottom_scroll {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

/* PAGE TOP TITLE 関連　*/
  #page-top-title {
    position: fixed;
    top: 0px;
	left:0;  
    right: 0;
	padding:0;
	margin:0 ;
	max-width:100%;
	 z-index:990;
	}

  #page-top-title h1 {
    background: rgba(102, 102, 102, 0.8);
    text-decoration: none;
    color: #fff;
    padding:5px  0;
    text-align: center;
    display: block;
	font-size:0.7rem;   
	line-height: 0.8rem;
 }
/*END PAGE TOP TITLE 関連*/	


/*---END header 関連------*/


/*---ぺージタイトル---*/
.page_title{
	font-size:1.4rem;
	margin:10px auto 10px auto;
	line-height: 1.8rem;
}
/*---END ぺージタイトル---*/


/*---footer関連------*/
footer{
	margin-bottom:80px;
	border-top:2px solid #333;
}

#footer_frame{
	padding:10px;
}

/*sns関連*/
.sns_list{
	display: flex;
	justify-content: center;
}

.sns_list li{
	padding:5px;
}
.sns_list li img{
	width:40px;
}
/*END sns関連*/

/* TOPへ戻る関連 */
#page-top a:hover {
  text-decoration: none;
  background: rgba(144, 144, 144, 0.8); }


#page-top {
  position: fixed;
  bottom: 80px;
  left: 15px;
  font-size: 77%; }

#page-top a {
  background: rgba(102, 102, 102, 0.8);
  text-decoration: none;
  color: #fff;
  width: 50px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px; }

/*---END footer関連------*/


/*==================================MQ======================================================
==========================================================================================
*/
@media screen and (min-width: 568px) {
/*幅関連*/	
.frame_m600{
	max-width: 568px;
	margin:0 auto;
}		
.frame_m700{
	max-width: 568px;
	margin:0 auto;
}

}

@media screen and (min-width: 968px) {
/*PC SMP表示（PC）*/	
.d-pc {
    display: block; }
.d-smp {
    display: none; 
}

/*幅関連*/
.frame960 {
width: 960px;
max-width: 100%;		
		margin:0 auto;
}
.frame_m700{
	max-width: 700px;
	margin:0 auto;
}
.frame_m600{
	max-width: 600px;
	margin:0 auto;
}		
/*END　幅関連*/	
	
/*グリッド表示関連*/
.grid_area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.pc2smp1 {
    width: 48%;
    padding: 5px;
}
.pc3smp1 {
    width:30%;
    padding: 5px;
}	
.pc3smp2 {
    width:33%;
    padding: 5px;
}
.pc3smp3 {
    width:33%;
    padding: 5px;
}	
.pc80w-smp80w{
	width:80%;
	margin:0 auto;
}
.pc80w-smp100w{
	width:80%;
	margin:0 auto;
	}
/*END グリッド表示関連*/
	
/*枠表示項目*/	
.inner_pdd_pc20-20_smp20-0{
	padding:20px;	
}
.inner_pdd_pc20-20_smp20-10{
	padding:20px 20px;	
	}	
/*END 枠表示項目*/
	
/*リンクアイテム*/	
.link_frame img{
	 object-fit: cover;
	width:100%;
	max-width:100%;
	height:100%;
}
/*END リンクアイテム*/

/*===各ページ関連==========*/
	
/*---header関連（PC）---*/
.header_image{
	height:400px;
	background-image: url("/images/top/header_img.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.header_image img{
	height: auto;	
}
.header_image .header_title{
	font-size:1.6rem;
    line-height: 1.4em;
}	
	
/* PAGE TOP TITLE 関連　*/
  #page-top-title {
    position: fixed;
    top: 0px;
	left:0;  
    right: 0;
	padding:0;
	margin:0 ;
	max-width:100%;
	}

  #page-top-title h1 {
    background: rgba(102, 102, 102, 0.8);
    text-decoration: none;
    color: #fff;
    padding:5px  0;
    text-align: center;
    display: block;
	font-size:0.8rem;   
	line-height: 0.8rem;
 }
/*END PAGE TOP TITLE 関連*/	
	
/*---END　header関連（PC）---*/
	
/*---footer関連（PC）---*/
#footer_frame{
	width:960px;
	margin:0 auto;
}
#f_inner{
		display: flex;
}
.f_ibox{
	padding:10px;
	width:50%;
}

/*TOPへ戻る関連*/
  #page-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 77%; 
	}
  #page-top a {
    background: rgba(102, 102, 102, 0.8);
    text-decoration: none;
    color: #fff;
    width: 50px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px; }
/*TOPへ戻る関連*/

/*---END footer関連---*/

}