/* mixins
--------------------------------------------------------*/
.main_contents.index {
  width: 100%;
}

@media only screen and (max-width: 736px) {
  .main_contents.index {
    width: 100%;
    padding: 0;
  }
}
.mv-area {
  position: relative;
}
.mv-area .index_kv {
  position: relative;
  z-index: 1;
}
.mv-area .hd {
  position: absolute;
  z-index: 2;
  text-align: center;
  margin: auto;
  top: 50%;
  left: 50%;
  margin-left: -240px;
  margin-top: -22px;
}

.mv-area:after,
.mv-area:before {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}

.mv-area:before {
  left: calc(-1152px/2);
}

.mv-area:after {
  right: calc(-1152px/2);
}

@media only screen and (max-width: 736px) {
  .mv-area .hd {
    top: 50%;
    left: 50%;
    margin-left: -85px;
    margin-top: -21px;
  }
  .mv-area .hd img {
    height: 43px;
    width: auto;
  }

  .mv-area:after,
  .mv-area:before {
    display: none;
  }
}
.news-area {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  width: 1065px;
  margin: 0 auto 0;
  padding: 40px;
}
.news-area .section-header {
  width: 170px;
  float: left;
  padding-top: 0;
  margin-bottom: 0;
}
.news-area .section-header .ttl:before {
  display: none;
}
.news-area .section-content {
  width: 815px;
  float: left;
  padding-bottom: 0;
}
.news-area .section-content .news-block {
  float: left;
  width: 710px;
  margin-bottom: 0;
}
.news-area .section-content .news-block li {
  margin-bottom: 10px;
  padding: 0;
}
.news-area .section-content .news-block li .date {
  float: left;
  width: 100px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666666;
  font-weight: bold;
}
.news-area .section-content .news-block li .txt {
  float: left;
  width: 600px;
  float: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666666;
}
.news-area .section-content .news-block li:before {
  display: none;
}
.news-area .section-content .block-read-more {
  float: left;
  width: 105px;
  border-left: 1px solid #cccccc;
}
.news-area .section-content .block-read-more a {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-image: url(../img/common/ic-arrow-red-r.png);
  background-size: 5px auto;
  background-position: 98% 50%;
  background-repeat: no-repeat;
  padding: 0 8px 0 12px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.news-area .section-content .block-read-more a:hover {
  -webkit-animation: blockReadMoreArrow 0.2s linear;
  -moz-animation: blockReadMoreArrow 0.2s linear;
  -ms-animation: blockReadMoreArrow 0.2s linear;
  -o-animation: blockReadMoreArrow 0.2s linear;
  animation: blockReadMoreArrow 0.2s linear;
}

@-webkit-keyframes blockReadMoreArrow {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    background-position: 80% 50%;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    background-position: 98% 50%;
  }
}
@-moz-keyframes blockReadMoreArrow {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    background-position: 80% 50%;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    background-position: 98% 50%;
  }
}
@keyframes blockReadMoreArrow {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    background-position: 80% 50%;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    background-position: 98% 50%;
  }
}
@media only screen and (max-width: 736px) {
  .news-area {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    width: calc(100% - 30px);
    margin: 0 15px 0;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .news-area .section-header {
    width: 100%;
    float: none;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .news-area .section-header .ttl:before {
    display: none;
  }
  .news-area .section-content {
    width: 100%;
    float: none;
    padding-bottom: 0;
  }
  .news-area .section-content .news-block {
    float: none;
    width: 100%;
    margin-bottom: 0;
  }
  .news-area .section-content .news-block li {
    margin-bottom: 10px;
    padding: 0;
  }
  .news-area .section-content .news-block li .date {
    float: none;
    width: 100%;
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1.6;
    display: block;
  }
  .news-area .section-content .news-block li .txt {
    float: none;
    width: 100%;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: normal;
    color: #666666;
  }
  .news-area .section-content .block-read-more {
    float: none;
    width: 100%;
    border-left: none;
    text-align: center;
    padding-top: 10px;
  }
  .news-area .section-content .block-read-more a {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    font-weight: bold;
    background-image: url(../img/common/ic-arrow-red-r.png);
    background-size: 5px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 0 12px 0 0;
    display: inline;
  }
}
@media print, screen and (min-width: 737px) {
  .residence {
    background-image: url(../img/common/bg-dot.png);
    background-position: 0% 0%;
    background-repeat: repeat;
  }
  .residence .section-content {
    padding-bottom: 20px;
  }

  .cols_block_index {
    display: table;
  }
  .cols_block_index .col_box {
    display: table-cell;
    vertical-align: top;
  }
  .cols_block_index .col_box.bnr {
    vertical-align: top;
    /* width: 640px; */
  }
  .cols_block_index .col_box.bnr .thumb-area {
    position: relative;
    display: block;
  }
  .cols_block_index .col_box.bnr .thumb-area img {
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    text-align: center;
    top: 30px;
    right: 30px;
    width: 230px;
    height: 230px;
    padding-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .panel-inner {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .ttl {
    text-align: center;
    background: none;
    margin-bottom: 0;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .ttl img {
    margin: 0 auto;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .txt-more {
    margin-top: 30px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .txt-more:after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    background-color: #e23337;
    margin: 5px auto 0;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }
  .cols_block_index .col_box.bnr a.thumb-area:hover img {
    filter: alpha(opactiy=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
  }
  .cols_block_index .col_box.bnr a.thumb-area:hover .thumb-panel .txt-more:after {
    -webkit-animation: expandTheBar 0.2s linear;
    -moz-animation: expandTheBar 0.2s linear;
    -ms-animation: expandTheBar 0.2s linear;
    -o-animation: expandTheBar 0.2s linear;
    animation: expandTheBar 0.2s linear;
    height: 3px;
    margin-top: 4px;
  }
  .cols_block_index .col_box.desc {
    width: 340px;
    padding-left: 40px;
  }
  .cols_block_index .col_box.desc img {
    display: block;
    vertical-align: bottom;
  }
  /*.cols_block_index .col_box.desc */ .caption {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 17px;
    color: #fff;
    text-align: center;
    background-color: #727171;
    padding: 8px 0;
    display: block;
  }
  /*.cols_block_index .col_box.desc */ .info-area {
    margin-bottom: 20px;
  }
  /*.cols_block_index .col_box.desc */ .info-area p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000;
    border-bottom: 1px solid #727171;
    margin: 0;
    padding: 10px 0 7px;
  }
  .cols_block_index .col_box.desc .links-block {
    margin: 0 -5px;
  }
  .cols_block_index .col_box.desc .links-block .col_box {
    padding: 0 5px;
  }
}
@-webkit-keyframes expandTheBar {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    width: 0px;
    height: 1px;
    margin-top: 5px;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    width: 45px;
    height: 3px;
    margin-top: 4px;
  }
}
@-moz-keyframes expandTheBar {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    width: 0px;
    height: 1px;
    margin-top: 5px;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    width: 45px;
    height: 3px;
    margin-top: 4px;
  }
}
@keyframes expandTheBar {
  0% {
    filter: alpha(opactiy=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    width: 0px;
    height: 1px;
    margin-top: 5px;
  }
  100% {
    filter: alpha(opactiy=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    width: 45px;
    height: 3px;
    margin-top: 4px;
  }
}
@media only screen and (max-width: 736px) {
  .residence {
    background-image: url(../img/common/bg-dot.png);
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: 6px auto;
  }
  .residence .section-content {
    padding-bottom: 20px;
  }
  .residence .cols_block_index .col_box.bnr .thumb-area .thumb-panel .ttl img {
    width: 80%;
  }

  .cols_block_index .col_box.bnr .thumb-area {
    position: relative;
    display: block;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    text-align: center;
    top: 15px;
    right: 15px;
    width: 35.9375%;
    height: calc(100% - 30px);
    padding-top: 0;
    margin-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .panel-inner {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .ttl {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    background: none;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .ttl img {
    margin: 0 auto;
    height: auto;
    width: 60%;
    display: block;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .txt-more {
    margin-top: 15px;
    font-size: 6px;
    font-size: 0.6rem;
    line-height: 1.6;
    color: #fff;
    font-weight: bold;
    position: relative;
  }
  .cols_block_index .col_box.bnr .thumb-area .thumb-panel .txt-more:after {
    content: "";
    display: block;
    width: 21px;
    height: 1px;
    background-color: #e23337;
    margin: 1px auto 0;
  }
  .cols_block_index .col_box.desc {
    width: 100%;
    padding: 0 15px;
    margin-top: 25px;
  }
  /* .cols_block_index .col_box.desc */ .caption {
    font-size: 1.0rem;
    line-height: 15px;
    color: #fff;
    text-align: left;
    padding: 6px 0 6px 1em;
    display: block;
    background-color: #727171;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cols_block_index .col_box.desc .info-area {
    margin-bottom: 15px;
  }
  /* .cols_block_index .col_box.desc */ .info-area p {
    font-size: 1.0rem;
    line-height: 15px;
    color: #000;
    border-bottom: 1px solid #cccccc;
    margin: 0;
    padding: 8px 0 6px;
  }
  .cols_block_index .col_box.desc .links-block {
    margin: 0 -5px;
  }
  .cols_block_index .col_box.desc .links-block .col_box {
    padding: 0 5px;
  }
}
.housing .section-content {
  padding-bottom: 20px;
}
.housing .cols_block_index .col_box.desc .caption {
  margin-bottom: 20px;
}

.support {
  background-image: url(../img/common/bg-dot.png);
  background-position: 0% 0%;
  background-repeat: repeat;
}
.support .section-content {
  padding-bottom: 20px;
}
.support .cols_block_index .col_box.desc {
  position: relative;
}
.support .cols_block_index .col_box.desc .links {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: calc(100% - 40px);
}
.support .cols_block_index .col_box.desc .ttl {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
  padding: 0;
  margin: 0 0 10px;
  background: none;
}
.support .cols_block_index .col_box.desc .ttl:before {
  display: none;
}
.support .cols_block_index .col_box.desc p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  color: #000;
  font-weight: bold;
  padding: 0;
  margin: 0 0 30px;
}
.support .cols_block_index .col_box.desc .link-box {
  margin-bottom: 10px;
}
.support .cols_block_index .col_box.desc .link-box .btn {
  text-align: left;
  padding-left: 40px;
}
.support .cols_block_index .col_box.desc .link-box .btn .ic {
  padding-left: 3em;
}
.support .cols_block_index .col_box.desc .link-box:first-child {
  margin-bottom: 10px;
}
.support .entry-area {
  padding-top: 35px;
}
.support .entry-area .btn-entry {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0 auto;
  font-weight: bold;
}

@media only screen and (max-width: 736px) {
  .support {
    background-size: 4px auto;
  }
  .support .section-content {
    padding-bottom: 20px;
  }
  .support .cols_block_index .col_box.desc {
    margin-top: 20px;
    position: relative;
  }
  .support .cols_block_index .col_box.desc .links {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .support .cols_block_index .col_box.desc .ttl {
    font-size: 1.0rem;
    line-height: 1.7;
    color: #000;
    font-weight: bold;
    padding: 0;
    margin: 0 0 0;
  }
  .support .cols_block_index .col_box.desc p {
    font-size: 1.0rem;
    line-height: 1.7;
    color: #000;
    font-weight: bold;
    padding: 0;
    margin: 0 0 30px;
  }
  .support .cols_block_index .col_box.desc .link-box .btn {
    text-align: left;
    padding-left: 10px;
  }
  .support .cols_block_index .col_box.desc .link-box .btn .ic {
    padding-left: 1em;
  }
  .support .cols_block_index .col_box.desc .link-box {
    width: 50%;
    float: left;
    padding-left: 5px;
    margin-bottom: 10px;
  }
  .support .cols_block_index .col_box.desc .link-box .btn {
    padding: 6px 0 6px 0;
    letter-spacing: 0;
    font-size: 1rem;
    text-align: center;
  }
  .support .cols_block_index .col_box.desc .link-box:first-child {
    padding-right: 5px;
    padding-left: 0;
  }
  .support .entry-area {
    padding-top: 5px;
  }
  .support .entry-area .btn-entry {
    width: 152px;
    font-size: 1.1rem;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
    padding: 6px 0 6px 1em;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
  }
  .support .entry-area .btn-entry:before {
    left: 20px;
    margin-top: -3px;
  }
}
.brand .section-header {
  margin-bottom: 30px;
}
.brand .section-content {
  width: 100%;
  background-image: url(../img/index/bg-brand.jpg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-color: #eeeeee;
  padding-top: 75px;
  padding-bottom: 80px;
}
.brand .section-content > .inner {
  width: 980px;
  margin: 0 auto;
}
.brand .col4_block {
  margin-bottom: 75px;
}
.brand .col4_block .col_box .item {
  display: block;
  background: rgb(255, 255, 255);
  position: relative;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.brand .col4_block .col_box .item:hover, .brand .col4_block .col_box .item:active, .brand .col4_block .col_box .item:focus {
  -webkit-animation: onhoverLightning 0.2s linear;
  -moz-animation: onhoverLightning 0.2s linear;
  -ms-animation: onhoverLightning 0.2s linear;
  -o-animation: onhoverLightning 0.2s linear;
  animation: onhoverLightning 0.2s linear;
  filter: alpha(opactiy=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.brand .col4_block .col_box .item .item-inner {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.brand .col4_block .col_box .item .ttl {
  text-align: center;
  background: none;
  margin-bottom: 20px;
}
.brand .col4_block .col_box .item .ttl img {
  margin: 0 auto;
}
.brand .col4_block .col_box .item p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
}
.brand .col4_block .col_box .item:after {
  display: block;
  content: "";
  padding-top: 100%;
}
.brand .col4_block .col_box .item:before {
  content: "";
  display: block;
  background-image: url(../img/common/ic-tri-red.png);
  background-size: 7px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 7px;
  width: 7px;
}
.brand .bnr_style_box{
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.brand .bnr_style_box .bnr-wrap {
  position: relative;
  display: block;
	/*width: calc((100% - 1px) /2 )*/
	width: 100%
}
.brand .bnr_style_box .bnr-wrap .bnr-inner {
  display: flex;
	justify-content: center;
	align-items: center;
  width: 100%;
  /*height: 175px;*/
  height: 140px;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.brand .bnr_style_box .bnr-wrap .bnr-inner:hover {
  filter: alpha(opactiy=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.brand .bnr_style_box .bnr-wrap .bnr-inner:hover .read-more {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  text-decoration: none;
}
.brand .bnr_style_box .bnr-wrap .bnr-inner:hover .read-more .ic {
  -webkit-animation: movebtnArrow 0.4s linear;
  -moz-animation: movebtnArrow 0.4s linear;
  -ms-animation: movebtnArrow 0.4s linear;
  -o-animation: movebtnArrow 0.4s linear;
  animation: movebtnArrow 0.4s linear;
  background-image: url(../img/common/ic-arrow-black-r.png);
}
.brand .bnr_style_box .bnr-wrap .vm-cont {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.brand .bnr_style_box .bnr-wrap .ttl {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  background: none;
}
.brand .bnr_style_box .bnr-wrap .lead {
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.05em;
}
.brand .bnr_style_box .bnr-wrap .lead:after {
  display: block;
  content: '';
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin: 15px auto;
}
.brand .bnr_style_box .bnr-wrap .info {
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.brand .bnr_style_box .bnr-wrap .read-more {
  width: 150px;
  margin: 0 auto;
  padding: 10px 0 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 16px;
  letter-spacing: 0.1em;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}

@-webkit-keyframes onhoverLightning {
  0% {
    filter: alpha(opactiy=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
  }
  100% {
    filter: alpha(opactiy=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
  }
}
@-moz-keyframes onhoverLightning {
  0% {
    filter: alpha(opactiy=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
  }
  100% {
    filter: alpha(opactiy=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
  }
}
@keyframes onhoverLightning {
  0% {
    filter: alpha(opactiy=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
  }
  100% {
    filter: alpha(opactiy=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
  }
}
@media only screen and (max-width: 736px) {
  .brand .section-header {
    margin-bottom: 25px;
  }
  .brand .section-content {
    width: 100%;
    background-image: url(../img/index/bg-brand-sp.jpg);
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #eeeeee;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .brand .section-content > .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .brand .col4_block {
    margin-bottom: 25px;
  }
  .brand .col4_block .col_box:first-child .item .ttl img {
    height: 28px;
  }
  .brand .col4_block .col_box .item .ttl {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .brand .col4_block .col_box .item .ttl img {
    margin: 0 auto;
    height: 14px;
    width: auto;
  }
  .brand .col4_block .col_box .item p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .brand .col4_block .col_box .item:after {
    display: block;
    content: "";
    padding-top: 100%;
  }
  .brand .col4_block .col_box .item:before {
    content: "";
    display: block;
    background-image: url(../img/common/ic-tri-red.png);
    background-size: 7px auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 5px;
    right: 5px;
    height: 7px;
    width: 7px;
  }
  .brand .bnr_style_box .bnr-wrap {
    position: relative;
    display: block;
		width: 100%;
		margin-bottom: 20px;
  }
  .brand .bnr_style_box .bnr-wrap .bnr-inner {
    /*display: block;
    width: 100%;*/
    height: auto;
    /*background: black;
    position: relative;
    right: 0;
    top: 0;*/
  }
  .brand .bnr_style_box .bnr-wrap .vm-cont {
    position: relative;
    top: 0;
    width: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 20px 0;
  }
  .brand .bnr_style_box .bnr-wrap .ttl {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
  }
  .brand .bnr_style_box .bnr-wrap .lead {
    text-align: center;
    font-size: 1.0rem;
    line-height: 1.6;
    color: #fff;
    letter-spacing: 0.05em;
  }
  .brand .bnr_style_box .bnr-wrap .lead:after {
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 12px auto;
  }
  .brand .bnr_style_box .bnr-wrap .info {
    text-align: center;
    font-size: 1.0rem;
    line-height: 1.8;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }
  .brand .bnr_style_box .bnr-wrap .read-more {
    width: 120px;
    margin: 0 auto;
    padding: 5px 0 5px 1em;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .brand .bnr_style_box .bnr-wrap .read-more:before {
    left: 15px;
    margin-top: -3px;
  }
}
.member .member-signup {
  padding: 10px 0;
}
.member .member-signup .btn-member {
  margin: 0 auto;
}

@media only screen and (max-width: 736px) {
  .member .member-signup {
    padding: 0 0 0;
  }
  .member .member-signup .btn-member {
    margin: 0 auto;
  }
}
