/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #25283D;
  background: #F4F4F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 1px;
}

a {
  color: #000;
  text-decoration: none;
}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #FFF;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	filter: alpha(opacity=95);
	-moz-opacity: 0.95;
	opacity: 0.95;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header {
    height: 60px;
  }
  h5 {
	max-width: 1024px;
	margin: 0 auto;
	margin-top: 15px;
	padding-left: 1em;
	padding-right: 1em;
  }
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: relative;
  top: 24px;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
	height: 30px;
	width: 132px;
	margin:0 auto;
	background-image: url(../img/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
}

@media only screen and (min-width: 1024px) {
.cd-auto-hide-header .logo {
	margin:0 auto;
	top: 14px;
	height: 40px;
	width: 176px;
	background-image: url(../img/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
}
}


.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
  display: block;
}

.cd-auto-hide-header .nav-trigger {
	/* vertically align its content */
	display: table;
	height: 100%;
	padding: 0 1em;
	font-size: 0.6rem;
	text-transform: uppercase;
	color: #000;
	font-weight: bold;
	right: 0;
	border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 16px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
	position: absolute;
	z-index: 2;
	top: 50px;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	display: none;
	box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
	text-align: center;
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 55px;
  line-height: 55px;
  padding-left: 6%;
  color: #000;
  font-size: 1em;
  border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
	color: #000;
}
@media only screen and (min-width: 1024px) {
  .cd-primary-nav {
    /* vertically align its content */
    display: table;
    padding-right: 2%;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 3em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}
@media only screen and (min-width: 1024px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
}


/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
  padding: 0 5% 1em;
  overflow: hidden;
}
.cd-main-content.sub-nav {
  /* to be used if there is sub nav */
  padding-top: 110px;
}
.cd-main-content.sub-nav-hero {
  /* to be used if there is hero image + subnav */
  padding-top: 0;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
  margin-top: 50px;
}
.cd-main-content p {
  max-width: 1024px;
  line-height: 1.6;
  margin: 1.5em auto;
  color: #000;
  font-size: 0.8em;
}

@media only screen and (min-width : 550px ){
  .cd-main-content p {
    font-size: 1em;
	line-height: 1.8em;
}
}
@media only screen and (min-width: 1024px) {
  .cd-main-content.sub-nav {
    padding-top: 150px;
  }
  .cd-main-content.sub-nav-hero.secondary-nav-fixed {
    margin-top: 70px;
  }
  .cd-main-content p {
    font-size: 1.3em;
	line-height: 1.8em;
  }
}

/*
	adjust the positioning of in-page links
	http://nicolasgallagher.com/jump-links-and-viewport-positioning/
*/
.cd-main-content.sub-nav :target::before,
.cd-main-content.sub-nav-hero :target::before {
  display: block;
  content: "";
  margin-top: -50px;
  height: 50px;
  visibility: hidden;
}
@media only screen and (min-width: 1024px) {
  .cd-main-content.sub-nav :target::before,
  .cd-main-content.sub-nav-hero :target::before {
    margin-top: -70px;
    height: 70px;
  }
}

/* -------------------------------- 

Intro Section

-------------------------------- */
.cd-hero {
  /* vertically align its content */
  display: table;
  width: 100%;
  margin-top: 50px;
  height: 200px;
  background: url(../img/index_m.jpg) no-repeat center center;
  background-size: cover;
}
.cd-hero .cd-hero-content {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-hero-content-txt {
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  background-color: rgba(236,236,236,1);
  opacity: 0.8;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 2em;
  margin: 0 auto;
  margin-top: 67px;
  padding: 2%;
  text-align: center;
  color: #000;
  text-shadow: rgba(255,255,255,1) 0 0 2px;
}

@media only screen and (min-width : 550px ){
  .cd-hero {
    height: 400px;
  }
  .cd-hero-content-txt {
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  background-color: rgba(236,236,236,1);
  opacity: 0.8;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 2.3em;
  text-align: center;
  margin-top: 145px;
  color: #000;
  text-shadow: rgba(255,255,255,1) 0 0 2px;
}
}
@media only screen and (min-width: 1024px) {
  .cd-hero {
    height: 485px;
	margin: 0 auto;
    margin-top: 60px;
  	background: url(../img/index_p.jpg) no-repeat center center;
  	background-size: cover;
  }
  .cd-hero-content-txt {
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  background-color:  rgba(236,236,236,1);
  opacity: 0.8;
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.9em;
  text-align: center;
  margin-top: 145px;
  color: #000;
  text-shadow: rgba(255,255,255,1) 0 0 2px;
  }
}


h1 {
	position: relative;
	padding: .2em;
	color: #000;
	margin: 0 auto;
	margin-top: 70px;
	margin-bottom: 10px;
    font-size: 0.8em;
    background: #FFF;
}
h1 span {
	display: block;
	padding: 0.8em 1em;
	border: 1px solid #D8D8D8;
}

.wln {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.ln_l {
  width: 95%;
  background-color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2.4em;
  color: #000;
  margin: 0 auto;
  margin-right: 4%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1.2em 2em;
  text-align: left;
  }
.ln_l_works {
  width: 100%;
  margin: 0 auto;
  margin-right: 4%;
  margin-top: 3%;
  margin-bottom: 3%;
  }
.ln_r {
  width: 95%;
  background-color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2.4em;
  color: #000;
  margin: 0 auto;
  margin-right: 4%;
  margin-top: 5%;
  margin-bottom: 3%;
  padding: 1.2em 2em;
  text-align: left;
	}
.ln_r_works {
  width: 100%;
  background-color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.8em;
  color: #000;
  margin: 0 auto;
  margin-right: 4%;
  margin-top: 6%;
  margin-bottom: 3%;
  padding: 1.2em 2em;
  text-align: left;
	}
.ln_r_works_b {
  font-weight: bold;
	}
.ln_blog {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}
.ln_facebook {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;
}

@media only screen and (min-width : 550px ){
  h1 {
	position: relative;
	padding: .3em;
	color: #000;
	margin: 0 auto;
	margin-top: 80px;
    margin-bottom: 10px;
    font-size: 1em;
    background: #FFF;
  }

.wln {
  margin: 0 auto;
  color: #000;
  text-align: center;
  clear: both;
  }
.ln_l {
  float: left;
  width: 45%;
  max-width: 500px;
  background-color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 2.4em;
  color: #000;
  margin-left: 1.5%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1.2em 2em;
  text-align: left;
  }
.ln_l_works {
  float: left;
  width: 60%;
  margin-right: 0;
  margin-top: 3%;
  margin-bottom: 3%;
  }
.ln_r {
  float: right;
  width: 45%;
  max-width: 500px;
  background-color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 2.4em;
  color: #000;
  margin-right: 3%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1.2em 2em;
  text-align: left;
  }
.ln_r_works {
  float: right;
  width: 35%;
  max-width: 500px;
  background-color: #fff;
  font-size: 1em;
  font-weight: normal;
  line-height: 2.4em;
  color: #000;
  margin-right: 0;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1em 1.5em;
  text-align: left;
	}
.ln_blog {
  float: left;
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.ln_facebook {
  float: right;
  width: 48%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;
}
}

@media only screen and (min-width: 1024px) {
  h1 {
	position: relative;
	padding: .3em;
	color: #000;
	margin: 0 auto;
	margin-top: 90px;
    font-size: 1.1em;
    background: #FFF;
	max-width: 1024px;
  }

.wln {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  color: #000;
  }
.ln_l {
  float: left;
  width: 45%;
  font-size: 1em;
  font-weight: normal;
  line-height: 2.4em;
  color: #000;
  margin-left: 2%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1em 1.5em;
  text-align: left;
  }
.ln_l_works {
  float: left;
  width: 55%;
  margin: 0 auto;
  margin-right: 0;
  margin-top: 3%;
  margin-bottom: 3%;
  }
.ln_r {
  float: right;
  width: 45%;
  font-size: 1em;
  font-weight: normal;
  line-height: 2.4em;
  color: #000;
  margin-right 2%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 1em 1.5em;
  text-align: left;
  }
.ln_r_works {
  float: right;
  width: 40%;
  font-size: 1em;
  font-weight: normal;
  line-height: 2.4em;
  color: #000;
  margin-top: 3%;
  margin-bottom: 3%;
  margin-right 0;
  padding: 1em 1.5em;
  text-align: left;
  }
.ln_blog {
  float: left;
  width: 49%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
	}
.ln_facebook {
  float: right;
  width: 48%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;
	}
}


/* -------------------------------- 

Footer Section

-------------------------------- */
footer{
    color: #000;
	font-size: 0.7em;
    width: 100%;
	line-height: 1.7em;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
	margin-top: 30px;
    background-color: #fff;
	text-decoration: none;
}
.ftti{
	margin-top: 0.5em;
	font-size: 1em;
	line-height: 2em;
    text-align: center;
	}
.ftnm{
	font-size: 1.6em;
	line-height: 2em;
    text-align: center;
	}
.add{
	margin-top: 1em;
	font-size: 0.7em;
    width: 95%;
    text-align: center;
}
@media only screen and (min-width : 550px ){
.ftin{
	margin: 0 auto;
	height: 55px;
	}
.ftin_l{
    color: #000;
	float: left;
	width: 39%;
	margin-left: 5%;
	}
.ftti{
	font-size: 1em;
	width: 100%;
	line-height: 2em;
	margin-top: 0;
    text-align: left;
	}
.ftnm{
	width: 100%;
    text-align: left;
	}	
	
	
.ftin_r{
	float: right;
	width: 49%;
	margin-right: 5%;
	}

.add{
	float: right;
	width: 100%;
    color: #000;
	font-size: 0.8em;
	line-height: 2em;
    max-width: 500px;
	margin: 0 auto;
    text-align: left;
}
}
@media only screen and (min-width: 1024px) {
  footer {
    color: #000;
	font-size: 1.5em;
    width: 100%;
	height: 95px;
	line-height: 1.8em;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
	text-decoration: none;
	}

.ftin{
	max-width: 1024px;
	margin: 0 auto;
	}
.ftin_l{
	float: left;
	margin-left: 3%;
	}
.ftti{
	font-size: 0.6em;
	width: 400px;
	line-height: 1.5em;
    text-align: left;
	margin-top: 3px;
	}
.ftnm{
	font-size: 1.1em;
	width: 400px;
    text-align: left;
	}	
	
	
.ftin_r{
	float: right;
	width: 400px;
	margin-right: 3%;
	}

.add{
	width: 400px;
    color: #000;
	font-size: 0.6em;
	line-height: 2em;
    max-width: 500px;
	margin: 0 auto;
    text-align: left;
}
}

.rinen_1 {
	font-size: 2em;
	max-width: 1024px;
	color: #000;
	text-align: center;
	margin: 0 auto;
	padding-top: 0.2em;
	paddingbottom: 0.2em;
}

.rinen_2 {
	font-size: 1.1em;
	line-height: 2em;
	max-width: 1024px;
	color: #000;
	text-align: center;
	margin: 0 auto;
	margin-top: 1em;
	margin-bottom: 2em;
}
.rinen_3 {
	width: 70%;
	max-width: 404px;
	color: #000;
	text-align: center;
	margin: 0 auto;
	margin-top: 1em;
	margin-bottom: 2em;
}
table.prof {
    width: 100%;
	max-width: 1024px;
    margin: 0 auto;
	margin-top: -10px;
    border-collapse: separate;
    border-spacing: 0px 15px;
    font-size: 1.1em;
	line-height: 1.6em;
}

table.prof th,
table.prof td {
		box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 0px 1px;
-webkit-box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 0px 1px;
-moz-box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 0px 1px;
}

table.prof th,
table.prof td {
    padding: 10px;
}
 
table.prof th {
    background: #f8f8f8;
    vertical-align: middle;
    text-align: left;
    width: 120px;
    overflow: visible;
    position: relative;
    color: #000;
    font-weight: normal;
    font-size: 1.3em;
}
 
table.prof th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #f8f8f8;
    border-width: 7px;
    margin-top: -7px;
}
/* firefox */
@-moz-document url-prefix() {
    table.prof th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
        border: 10px solid transparent;
        border-left: #EBEBEC 10px solid;
        margin-top: -10px;
    }
}
 
table.prof th {
    font-size: 0.6em;
}
table.prof td {
    font-size: 0.6em;
	background: #fff;
    width: 360px;
    padding-left: 20px;
}
@media only screen and (min-width : 550px ){
table.prof th {
    font-size: 0.8em;
}
table.prof td {
    font-size: 0.8em;
	line-height: 2.3em;
}
}
@media only screen and (min-width: 1024px) {
table.prof th {
    background: #f8f8f8;
    vertical-align: middle;
    text-align: center;
    width: 120px;
    overflow: visible;
    position: relative;
    color: #000;
    font-weight: normal;
    font-size: 1em;
}
table.prof td {
    font-size: 0.9em;
	line-height: 2.5em;
}
}

table.business {
    width: 100%;
	max-width: 1024px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 0px;
    font-size: 0.6em;
	line-height: 1.8em;
}
 
table.business th,
table.business td {
    padding: 10px;
	box-shadow:rgba(0, 0, 0, 0.0588235) 0px 0px 0px 1px;
-webkit-box-shadow:rgba(0, 0, 0, 0.0588235) 0px 0px 0px 1px;
-moz-box-shadow:rgba(122, 122, 122, 0.0588235) 0px 0px 0px 1px;
}
 
table.business th {
    background: #999;
    vertical-align: middle;
    width: 120px;
    color: #fff;
    font-size: 1em;
}
table.business td {
    background: #FFF;
}
}
/* firefox */
@-moz-document url-prefix() {
    table.business th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
    }
}
 
table.business td {
    background: #f8f8f8;
    width: 360px;
    padding-left: 20px;
}

@media only screen and (min-width: 1024px) {

table.business {
    width: 100%;
	max-width: 1024px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 0px;
    font-size: 1em;
	line-height: 2em;
}
}


.wlnm {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  color: #000;
  }
.ln_lm {
  width: 97.5%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5% 1.5%;
  text-align: left;
  background-color: #fff;
  }
.ln_rm {
  width: 97.5%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5% 1.5%;
  text-align: left;
  background-color: #fff;
　}

@media only screen and (min-width : 550px ){
.wlnm {
  width: 98.5%;
  max-width: 1024px;
  margin: 0 auto;
  margin-right: 2%;
  color: #000;
  }
.ln_lm {
  float: left;
  width: 50%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 1.5%;
  text-align: left;
  }
.ln_rm {
  float: right;
  width: 50%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 1.5%;
  text-align: left;
  }
}

@media only screen and (min-width: 1024px) {
.mail_p {
	margin-top: 6%;
	line-height: 1%;
}
.wlnm {
  width: 99%;
  max-width: 1024px;
  margin: 0 auto;
  margin-right: 4%;
  color: #000;
  }
.ln_lm {
  float: left;
  width: 50%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 1.5%;
  text-align: left;
  }
.ln_rm {
  float: right;
  width: 50%;
  font-size: 1em;
  font-weight: normal;
  color: #000;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 1.5%;
  text-align: left;
  }
}




.wok_wp {
  max-width: 1028px;
  margin: 0 auto;
}
.wok_wp li img{
  vertical-align:bottom;
}
.wok li {
  width: 47.5%;
  margin-right: 5%;
  margin-top: 5%;
  text-align: center;
  float: left;
}
.wok li:nth-of-type(2n) {
  margin-right: 0;
  margin-top: 5%;
}
.wok_txt {
  padding: 0.8em;
  background-color: #fff;
  color: #000;
  font-size: 0.8em;

}

@media only screen and (min-width: 550px) {
.wok li {
  width: 32%;
  margin: 0;
  margin-top: 2%;
  text-align: center;
  float: left;
}

.wok li:nth-of-type(2n) {
  margin-right: 0;
  margin-top: 2%;
}
.wok li:nth-child(3n-1) {
  margin: 0 2%;
  margin-top: 2%;
}
.wok_txt {
  padding: 0.8em;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
}
}

@media only screen and (min-width: 1024px) {
.wok li {
  width: 32%;
  margin: 0;
  margin-top: 2%;
  text-align: center;
  float: left;
}
.wok li:nth-of-type(2n) {
  margin-right: 0;
  margin-top: 2%;
}
.wok li:nth-child(3n-1) {
  margin: 0 2%;
  margin-top: 2%;
}
.wok_txt {
  padding: 0.8em;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
}
}



nav#breadcrumbs {
	margin-bottom: 2em;
	width: 100%;
	max-width: 1024px;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 2em;
}
nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  color: #000;
  font-size: 0.7em;
}
nav#breadcrumbs ol li a {
  display: inline;
  list-style-type: none;
  text-decoration: underline;
  color: #000;
}
nav#breadcrumbs ol li:before {
  content: " > ";
}
nav#breadcrumbs ol li:first-child:before {
  content:"";
}

@media only screen and (min-width: 1024px) {
nav#breadcrumbs {
	margin-bottom: 2em;
	width: 100%;
	max-width: 1024px;
	margin-top: 1em;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3em;
}
nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  color: #000;
  font-size: 0.9em;
}
nav#breadcrumbs ol li a {
  display: inline;
  list-style-type: none;
  text-decoration: underline;
  color: #000;
}
nav#breadcrumbs ol li:before {
  content: " > ";
}
nav#breadcrumbs ol li:first-child:before {
  content:"";
}
}


.ind_bn{
	max-width: 1024px;
	margin: 0 auto;
	
}

.bn_1_le {
	float: none;
	width: 100%;
	text-align: center;
}
.bn_1_ri {
	float: none;
	width: 100%;
	text-align: center;
}
.bn_2_le {
	float: none;
	width: 100%;
}
.bn_2_ri {
	float: none;
	width: 100%;
}
.bn_3_le {
	float: left;
	width: 50%;
	margin-top: 10px;
}
.bn_3_ri {
	float: right;
	width: 50%;
	margin-top: 10px;
}
@media only screen and (min-width: 550px) {
.bn_1_le {
	float: none;
	width: 100%;
}
.bn_1_ri {
	float: none;
	width: 100%;
}
.bn_2_le {
	float: left;
	width: 50%;
}
.bn_2_ri {
	float: right;
	width: 50%;
}
.bn_3_le {
	float: left;
	width: 50%;
	margin-top: 10px;
}
.bn_3_ri {
	float: right;
	width: 50%;
	margin-top: 10px;
}
}
@media only screen and (min-width: 1024px) {
.bn_1_le {
	float: left;
	width: 50%;
}
.bn_1_ri {
	float: right;
	width: 50%;
}
.bn_2_le {
	float: left;
	width: 50%;
}
.bn_2_ri {
	float: right;
	width: 50%;
}
.bn_3_le {
	float: left;
	width: 50%;
}
.bn_3_ri {
	float: right;
	width: 50%;
}
}