.js-ticker {
  overflow: hidden;
}

.js-ticker-track {
  white-space: nowrap;
}

.js-ticker-item {
  white-space: normal;
  height: 100%;
  vertical-align: top;
  display: inline-block;
  position: relative;
}

@supports ((display: -webkit-box) or (display: flex)) {
  .js-ticker-track {
    position: relative;
    white-space: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .js-ticker-item {
    height: auto;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .js-ticker.active .js-ticker-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .js-ticker.active .js-ticker-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
@charset "utf-8";





/***************************************************************************
*
* PAGE STYLE
*
***************************************************************************/

.pageTitle {
    font-size: 24px;
    margin-bottom: 0;
}

.pageTitleSub {
    color: #707070;
    text-align: center;
    margin-top: 0px;
    font-family: MS Gothic;
}

.pageTitle2 {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 60px;
}

.area {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
    margin-bottom: 30px;
}

.area .photo {
    float: left;
}

.area .areaSub {
    float: right;
    width: 375px;
    padding: 15px 19px;
}

.area .areaSub .areaSubTitle {
    text-align: center;
    font-size: 25px;
    font-weight: normal;
}

.area .areaSub .text {
    margin-top: 10px;
}

.area .areaSub .btn {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 375px;
    right: 0;
}

.area .areaSub .btn a {
    width: 256px;
    background: #76B536;
    display: inline-block;
    color: #fff;
    padding: 5px 0;
}






/* STYLE SP */

@media (max-width: 768px) {
    .area .areaSub {
        width: 100%;
    }

    .area .areaSub .btn {
        position: inherit;
        width: 100%;
        margin-top: 10px;
    }
    .area .areaSub .btn a {
        width: 90%;
    }
}