@charset "euc-jp";
/*===============================================
FONT
===============================================*/
/* ie fontにアンチエイリアスを有効にさせたい要素に指定 */

@media all and (-ms-high-contrast: none){
a {
-webkit-transform: rotate(.028deg);
-ms-transform: rotate(.028deg);
transform: rotate(.028deg)\9; /* IE10以下 */
}
}

@media all and (-ms-high-contrast: none){
p {
-webkit-transform: rotate(.028deg);
-ms-transform: rotate(.028deg);
transform: rotate(.028deg)\9; /* IE10以下 */;
}
}

/* firefox fontにアンチエイリアスを有効にさせたい要素に指定 */
@-moz-document url-prefix(){
  .sample{
    background: #cccccc;
  }
}

hr.hr-fade {
margin: 3% 0 5% 0;
border: 0; 
height: 1px; 
background-image: -webkit-linear-gradient(left, #f0f0f0, #333, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}


/*===============================================
hamburger
===============================================*/
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}







/*===============================================
PAGE SCROLL TOP
===============================================*/
#pageTop {
position: fixed;
bottom: 20px;
right: 20px;
}
 
#pageTop a {
display: block;
z-index: 999;
padding: 8px 0 0 2px;
border-radius: 30px;
width: 50px;
height: 50px;
background-color: #ccc;
color: #fff;
font-weight: bold;
text-decoration: none;
text-align: center;
}
 
#pageTop a:hover {
text-decoration: none;
opacity: 0.7;
}

/*===============================================
HEADER TOP
===============================================*/
.header_all {
width: 100%;
}

.header_logo {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
width: 100%;
text-align: left;
float:left;
}

.header_logo img{
/*width: 100%;*/
}

.header_right {
margin: 20px 0px 10px 0px;
padding: 0px 0px 0px 0px;
width: 100%;
text-align: right;
float:right;
}

div.nav-wrap {
padding: 0em 0em 0em 0em;/*全体幅*/
text-align: rigght;
}

div.nav-wrap:last-child {
margin: 0;
}


@media screen and (min-width: 641px) {
div.nav-wrap {
margin: 0 0 30px;
}
}

div.nav-wrap ul {
margin: 0;
padding: 0;
}

div.nav-wrap ul li {
display: block;
margin: 0em 0em 0em 0em;/*字間*/
}

@media screen and (min-width: 641px) {
div.nav-wrap ul li {
display: inline;
}
}

div.nav-wrap ul li:last-child {
margin: 0 0 0;
}

div.nav-wrap ul li a {
position: relative;
z-index: 0;
display: inline;
margin: 0px 0px;
padding: 5em 0.5em 0.5em 0.5em;/*ライン間隔*/
color: #333;
text-decoration: none;
font-size: 0.8rem;
line-height: 0em;
cursor: pointer;
}

.nav-sample-3 {
	background: none;
}

div.x-width-border a:before,
div.x-width-border a:after {
	position: absolute;
	opacity: 0;
	width: 0%;
	height: 2px;
	content: '';
	background: #79cfc4;
	transition: all 0.3s;
}

div.x-width-border a:before {
	left: 0px;
	top: 0px;
}

div.x-width-border a:after {
	right: 0px;
	bottom: 0px;
}

div.x-width-border a:hover:before,
div.x-width-border a:focus:before,
div.x-width-border a:active:before,
div.x-width-border a:hover:after,
div.x-width-border a:focus:after,
div.x-width-border a:active:after {
	opacity: 1;
	width: 100%;
}

.header_logo_sp {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
width: 100%;
text-align: center;
}

.header_logo_sp img{
width: 50%;
}

/*===============================================
NAVIGATION
===============================================*/
.navi_background {
margin: 0px 0px 20px 0px;
background : #eeeeee url(../img/header/navi_bg.jpg) repeat-x;
background-size:contain;
}

.navi_pc {
margin: 0 0 0 0;
width: 100%;
}

.nav_table {
margin: -1px 0 0 0;
width: 100%;
border-spacing: 0px;
border-collapse:collapse;
}

.nav_table img {
width: 100%;
border: none;
}

.nav_table tr {
width: 100%;
}

.nav_table td.nav_td1 {
width: 20%;
}

ul.nav_menu_pc2 {
width: auto;
max-width: 1111px;
margin: 0 auto;
padding: 0;
list-style: none;
text-align: center;
}

ul.nav_menu_pc2 li{
display: block;
float: left;
width: 20%;
margin: 0;
padding: 0; 
}

ul.nav_menu_pc2 li a{
display: block;
padding: 12px 0 10px;
background : #eeeeee url(../img/header/navi_bg.jpg) repeat-x;
color: #333;
text-align: center;
text-decoration: none;
font-size: 0.8rem;
border-left:1px solid #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 500;
}

ul.nav_menu_pc2 li a:hover{
background : #eeeeee url(../img/header/navi_bg_hover.jpg) repeat-x;
color: #79cfc4;
}

ul.nav_menu_pc2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

ul.nav_menu_pc2 a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #79cfc4;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

ul.nav_menu_pc2 a:hover::after {
  transform: scale(1, 1);
}

ul.nav_menu_pc2 a {
  @include hover-underline('slide', 'left-right');
}

/*===============================================
SLIDER
===============================================*/
.slider_background {
margin: 0 auto;
/*background : #b7ded9 repeat-x;*/
background-size:contain;
}

.slideshow {
position: relative;
margin: 0px -15px 0px -55px;
}

.slider{
    margin: 0 auto;
    width: 100%;
}

.slider img{
    height: auto;
    width: 100%;
}

/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}


.slidethumb {
width: 100%;
text-align: center;
/*background-color: #f2f2f2;*/
margin: 0% 0% 0% -3%;
}

ul.thumb{
    margin: 0 auto;
    width: 60%;
}

ul.thumb li{
    padding: 5% 10% 0% 10%;
}

ul.thumb img{
    height: auto;
    width: 100%;
}

.slidethumb .thumb-line01 {
 border:3px solid #3333CC;
}

.slidethumb .thumb-line02 {
 border:3px solid #99FFFF;
}

.slidethumb .thumb-line03 {
 border:3px solid #B1F9D0;
}
	



/*===============================================
INFORMATION
===============================================*/
.info_top hr {
margin: 5% 0 5% 0;
border-color: #000;
}

.hr-text {
font-size:17px;
line-height: 1em;
position: relative;
outline: 0;
border: 0;
color: black;
text-align: center;
height: 1.0em;
opacity: .8;
}

.hr-text:before {
content: '';
background: -webkit-linear-gradient(left, transparent, #818078, transparent);
background: linear-gradient(to right, transparent, #818078, transparent);
position: absolute;
left: 0;
top: 50%;
width: 100%;
height: 1px;
}

.hr-text:after {
content: attr(data-content);
position: relative;
display: inline-block;
color: black;
padding: 0 .5em;
line-height: 1.5em;
color: #000;
background-color: #fff;
}

.info_comment {
width: 100%;
font-size:100%;
}



.p_1 {
font-size:100%;
color: black;
text-align: center;
}

/*===============================================
HOVER1
===============================================*/

.img_wrap{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}



.work_background {
margin: 0px 0px 50px 0px;
padding: 0% 0 0% 0;
background : none ;
background-size:contain;
}

.work_content {
margin: 0px auto;
width: 100%;
}

.work_banner {
margin: 0% 0px 0px 0px;
width: 100%;
height: 100%;
}

.work_button {
display: inline-block;
width: 100%;
height: 350px;
position: relative;
z-index: 2;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
}

.work_button:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work1.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work1.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button:hover {
background: url(../img/work1-2.jpg) no-repeat;
background-size: contain;
}

.work_button:hover::before,
.work_button:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER2
===============================================*/
.work_button2 {
display: inline-block;
width: 100%;
height: 350px;
position: relative;
z-index: 2;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
}

.work_button2:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button2:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button2:hover {
background: url(../img/work2-2.jpg) no-repeat;
background-size: contain;
}

.work_button2:hover::before,
.work_button2:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER3
===============================================*/
.work_button3 {
display: inline-block;
width: 100%;
height: 350px;
position: relative;
z-index: 2;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
}

.work_button3:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work5.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button3:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work5.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button3:hover {
background: url(../img/work5-2.jpg) no-repeat;
background-size: contain;
}

.work_button3:hover::before,
.work_button3:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER4
===============================================*/
.work_button4 {
display: inline-block;
width: 100%;
height: 350px;
position: relative;
z-index: 2;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
}

.work_button4:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work4.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button4:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/work4.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button4:hover {
background: url(../img/work4-2.jpg) no-repeat;
background-size: contain;
}

.work_button4:hover::before,
.work_button4:hover::after {
width: 0;
background-color: #fff;
}


/*===============================================
HOVER1 SP
===============================================*/
.work_background-sp {
margin: 0px 0px 50px 0px;
padding: 0% 0 0% 0;
background : none ;
background-size:contain;
width: 100%;
}

.work_content-sp {
margin: 0px auto;
width: 100%;
}

.work_banner-sp {
margin: 0% 0 0% 0;
width: 100%;
}

.work_button-sp1 {
display: inline-block;
width: 100%;
height: 80px;
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
position: relative;
z-index: 2;
}

.work_button-sp1:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 50.5%;
width: 100%;
height: 100%;
background: url(../img/worksp1-2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button-sp1:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/worksp1-2.jpg) no-repeat;
background-size: contain;
left: 0;
}

.work_button-sp1:hover {
background: url(../img/worksp1-1.jpg) no-repeat;
background-size: contain;
}

.work_button-sp1:hover::before,
.work_button-sp1:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER2 SP
===============================================*/
.work_button-sp2 {
display: inline-block;
width: 100%;
height: 80px;
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
position: relative;
z-index: 2;
}

.work_button-sp2:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 50.5%;
width: 100%;
height: 100%;
background: url(../img/worksp2-2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button-sp2:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/worksp2-2.jpg) no-repeat;
background-size: contain;
left: 0;
}

.work_button-sp2:hover {
background: url(../img/worksp2-1.jpg) no-repeat;
background-size: contain;
}

.work_button-sp2:hover::before,
.work_button-sp2:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER3 SP
===============================================*/
.work_button-sp3 {
display: inline-block;
width: 100%;
height: 80px;
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
position: relative;
z-index: 2;
}

.work_button-sp3:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 50.5%;
width: 100%;
height: 100%;
background: url(../img/worksp5-2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button-sp3:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/worksp5-2.jpg) no-repeat;
background-size: contain;
left: 0;
}

.work_button-sp3:hover {
background: url(../img/worksp5-1.jpg) no-repeat;
background-size: contain;
}

.work_button-sp3:hover::before,
.work_button-sp3:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
HOVER4 SP
===============================================*/
.work_button-sp4 {
display: inline-block;
width: 100%;
height: 80px;
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
position: relative;
z-index: 2;
}

.work_button-sp4:before {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 50.5%;
width: 100%;
height: 100%;
background: url(../img/worksp4-2.jpg) no-repeat;
background-size: contain;
right: 0;
}

.work_button-sp4:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
top: 0;
width: 100%;
height: 100%;
background: url(../img/worksp4-2.jpg) no-repeat;
background-size: contain;
left: 0;
}

.work_button-sp4:hover {
background: url(../img/worksp4-1.jpg) no-repeat;
background-size: contain;
}

.work_button-sp4:hover::before,
.work_button-sp4:hover::after {
width: 0;
background-color: #fff;
}

/*===============================================
FOOTER
===============================================*/
.footer_background {
margin: 10px 0px 0px 0px;
padding: 5% 0 5% 0;
background : #f2f2f2 ;
background-size:contain;
}

.footer_content {
margin: 0px auto;
width: 100%;
}

.footer_title {
margin: 0px auto;
padding: 0 0 0 0;
width: 100%;
font-family: Times New Roman;
}

.hr-text_footer {
line-height: 1em;
position: relative;
outline: 0;
border: 0;
color: black;
text-align: center;
height: 1.5em;
opacity: .8;
letter-spacing: 5px;
font-size:20px;
}
.hr-text_footer:before {
content: '';
background: -webkit-linear-gradient(left, transparent, #818078, transparent);
background: linear-gradient(to right, transparent, #818078, transparent);
position: absolute;
left: 0;
top: 50%;
width: 100%;
height: 1px;
}
.hr-text_footer:after {
content: attr(data-content);
position: relative;
display: inline-block;
color: black;
padding: 0 .5em;
line-height: 1.5em;
color: #000;
background-color: #f2f2f2;
}


.footer_banner {
margin: 10% 0px 0px 0px;
width: 90%;
height: 100%;
}

.footer_button {
  display: inline-block;
  width: 100%;
  /*height: 54px;*/
  text-align: center;
  text-decoration: none;
  /*line-height: 54px;*/
  outline: none;
}
.footer_button::before,
.footer_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.footer_button,
.footer_button::before,
.footer_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer_button {
  position: relative;
  z-index: 2;
  background-color: #666;
  border: 2px solid #666;
  color: #000;
  line-height: 50px;
  font-size:12px;
}
.footer_button:hover {
  background-color: #79cfc4;
  border-color: #79cfc4;
  color: #fff;
  text-decoration: none;
}

.footer_button::before,
.footer_button::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #f2f2f2;
}
.footer_button::before {
  right: 0;
}
.footer_button::after {
  left: 0;
}
.footer_button:hover::before,
.footer_button:hover::after {
  width: 0;
  background-color: #fff;
}

/* FOOTER SP */

.footer_background-sp {
margin: 5% 0 1% 0;
padding: 4% 0 4% 0;
background : #f2f2f2 ;
background-size:contain;
}

.footer_content-sp {
margin: 0px auto;
width: 100%;
}

.footer_title-sp {
margin: 0px auto;
padding: 0 0 3% 0;
width: 100%;
font-family: Times New Roman;
text-align: center;
font-size:90%;
}

.footer_banner-sp {
margin: 0% 0 2% 0;
width: 100%;
}

.footer_button {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  outline: none;
}
.footer_button::before,
.footer_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.footer_button,
.footer_button::before,
.footer_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer_button {
  position: relative;
  z-index: 2;
  background-color: #666;
  border: 2px solid #666;
  color: #000;
  line-height: 50px;
  font-size:12px;
}
.footer_button:hover {
  background-color: #79cfc4;
  border-color: #79cfc4;
  color: #fff;
  text-decoration: none;
}

.footer_button::before,
.footer_button::after {
  top: 0;
  width: 50.5%;
  height: 100%;
  background-color: #f2f2f2;
}
.footer_button::before {
  right: 0;
}
.footer_button::after {
  left: 0;
}
.footer_button:hover::before,
.footer_button:hover::after {
  width: 0;
  background-color: #fff;
}

.copyright {
font-family: Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
padding: 10px 0px 10px 0px;
width: 100%;
height: 100%;
text-align: center;
font-size: 11px;
}


/*===============================================
sidebar
===============================================*/
.side_re {
margin: 0px 0px 10px 0px;
width: 100%;
font-family: Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

table#cate_side img {
border: none;
width: 100%;
}

table#cate_side {
width: 100%;
height: 100%;
border-spacing: 0px;
padding: 0px 0px 0px 0px;
/*font-size: 90%;*/
}

table#cate_side tr {
width: 100%;
}

table#cate_side td.c_side_00 {
padding: 0px 0px 0px 0px;
width: 15%;
text-align: left;
vertical-align: top;
border-bottom: 1px #888 dotted;
}

table#cate_side td.c_side_0a {
padding: 0px 0px 0px 0px;
width: 15%;
text-align: left;
vertical-align: top;
}

table#cate_side td.c_side_01 {
padding: 10px 0px 10px 10px;
width: 85%;
color: #333;
font-size: 80%;
text-align: left;
vertical-align: top;
border-bottom: 1px #888 dotted;
}

table#cate_side td.c_side_02 {
padding: 10px 0px 10px 10px;
width: 85%;
color: #333;
font-size: 80%;
text-align: left;
vertical-align: top;
}

table#cate_side td.c_side_10 {
padding: 10px 0px 10px 10px;
width: 100%;
color: #333;
font-size: 15px;
text-align: center;
vertical-align: top;
border-bottom: 1px #888 solid;
}

.side_img_top {
margin: 0px 0px 10px 0px;
width: 100%;
}

table#cate_side td.c_side_atend {
padding: 5px 5px 5px 5px;
width: 100%;
text-align: left;
vertical-align: top;
border-bottom: 1px #888 dotted;
border-top: 1px #888 dotted;
background: #f3f3f3;
font-size: 80%;
}

table.sidebar_ad {
margin: 0px;
width: 100%;
height: 100%;
vertical-align: top;
}

table.sidebar_ad tr {
width: 100%;
}

table.sidebar_ad td {
padding: 0px 0px 10px 0px;
width: 100%;
height: 100%;
}


.header_circle{
/* border */
border:1px solid rgb(204, 204, 204);

/* box-shadow */
box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
-webkit-box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
-moz-box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
}

.bottom_circle{
/* border */
border:1px solid rgb(204, 204, 204);

/* border-radius */
-webkit-border-top-left-radius: 0px;  
-webkit-border-top-right-radius: 0px;  
-webkit-border-bottom-right-radius: 5px;  
-webkit-border-bottom-left-radius: 5px;  
-moz-border-radius-topleft: 0px;  
-moz-border-radius-topright: 0px;  
-moz-border-radius-bottomright: 5px;  
-moz-border-radius-bottomleft: 5px;  

/* box-shadow */
box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
-webkit-box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
-moz-box-shadow:rgba(173, 173, 173, 0.2) 0px 0px 8px -1px;
}

/*===============================================
PRIVACY
===============================================*/
ul.pri-title {
padding: 0;
position: relative;
}

li.pri-head {
color: #333;
border-left: solid 6px #79cfc4;/*左側の線*/
background: #fff;/*背景色*/
margin-bottom: 3px;/*下のバーとの余白*/
line-height: 1.5;
padding: 0.5em;
list-style-type: none!important;/*ポチ消す*/
}

/*===============================================
COMPANY PROFILE
===============================================*/
table#company_table {
width: 100%;
height: 100%;
border-spacing: 0px;
padding: 0px 0px 0px 0px;
/*font-size: 90%;*/
}

table#company_table tr {
width: 100%;
}

table#company_table td.company_td1 {
padding: 0px 0px 0px 0px;
width: 20%;
text-align: left;
vertical-align: top;
/*border-bottom: 1px #888 dotted;*/
}

table#company_table td.company_td2 {
padding: 0px 0px 0px 0px;
width: 80%;
text-align: left;
vertical-align: top;
/*border-bottom: 1px #888 dotted;*/
}

/*===============================================
AGENT
===============================================*/
.agent_background {
margin: 0 auto;
max-width: 3000px;
width: 100%;
background : #00a590;
}

.agent-img {
width: 100%;
text-align: center;
padding: 20px 0px 20px 0px;
}

.agent-img img{
width: 80%;
}

.agent-taxt {
width: 100%;
text-align: left;
}

table#agent_table {
width: 100%;
border-spacing: 0px;
margin: 30px 0px 30px 0px;
}

table#agent_table tr {
width: 100%;
}

table#agent_table td.agent_td1 {
width: 15%;
}

table#agent_table td.agent_td2 {
width: 2%;
}

table#agent_table td.agent_td3 {
text-align: center;
font-size: 1rem;
line-height: 2rem;
border-bottom: 1px #888 dotted;
font-weight: bold;
}

table#agent_table td.agent_td4 {
text-align: left;
vertical-align: top;
font-size: 1rem;
line-height: 1.5rem;
}

/*===============================================
ARENA
===============================================*/
.arena_background {
margin: 0 auto;
max-width: 3000px;
width: 100%;
background : #fff;
}

.soloeru_1 {
margin: 0px 0px 0px 0px;
padding: 20px 0px 20px 0px;
width: 100%;
background : #fff;
text-align: center;
}

.soloeru_2 {
margin: 20px 0px 20px 0px;
padding: 20px 20px 20px 20px;
width: 100%;
background : #f2f2f2;
}

.soloeru_3 {
margin: 0px 0px 0px 0px;
padding: 30px 0px 30px 0px;
width: 100%;
text-align: center;
color: #fff;
}

.soloeru_4 {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
width: 100%;
background : #fff;
text-align: center;
}

.arena2_background {
margin: 0 auto;
max-width: 3000px;
width: 100%;
background : #0bb5dc;
}

.soloeru_5 {
margin: 50px 0px 50px 0px;
padding: 0px 0px 0px 0px;
width: 100%;
background : #f0f6f7;
text-align: center;
}

.arena3_background {
margin: 0 auto;
max-width: 3000px;
width: 100%;
background : #f0f6f7;
}

/*===============================================
EC
===============================================*/
.ec_1 {
margin: 0px 0px 0px 0px;
padding: 20px 20px 20px 20px;
width: 100%;
background : #fff;
}

table#ec_table {
width: 100%;
border-spacing: 0px;
margin: 30px 0px 50px 0px;
}

table#ec_table tr {
width: 100%;
}

table#ec_table td.ec_td1 {
width: 15%;
}

table#ec_table td.ec_td2 {
width: %;
}

table#ec_table td.ec_td3 {
width: 5%;
}













