@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: index.css
 * Summary:   トップページの固有スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    home - header/nav
 *     =2    home - content
 *
 * ===============================================================
*/


/** =1
 * ========================================
 * home - header/nav
 * ========================================
*/
#home.is-pageTop #header {
  background-color: transparent;
}

  /* -- >>> styles for narrow layout ----- */
  @media all and (max-width: 767px) {
    #home #header {
      -moz-transition-property: all;
      -webkit-transition-property: all;
      transition-property: all;
    }
    #home.is-pageTop #header {
      border-bottom-color: transparent;
      background-color: rgba(56,62,69,.5);
    }
    #home #header::after {
      display: block;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: -1;
      height: 100px;
      /*background: none;
      background: -moz-linear-gradient(top, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);
      background: -webkit-linear-gradient(top, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);
      background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);*/
      content: "";
      pointer-events : none;
      -moz-transition: opacity .3s ease-out;
      -webkit-transition: opacity .3s ease-out;
      transition: opacity .3s ease-out;
    }
    #home.is-pageTop #header::after {
      opacity: 1;
    }

    #home #header .logo,
    #home #header .navHandler a,
    #home #header .navHandler a:after {
      -moz-transition: all .3s ease-out;
      -webkit-transition: all .3s ease-out;
      transition: all .3s ease-out;
    }

    /*#home.is-pageTop #header .logo {
      width: 55%;
    }*/

    #home.is-pageTop #header .navHandler a {
      color: #fff;
    }
    #home.is-pageTop #header .navHandler a:after {
      -webkit-box-shadow: 0 6px 0 #fff,
                          0 -6px 0 #fff;
      -moz-box-shadow: 0 6px 0 #fff,
                       0 -6px 0 #fff;
      box-shadow: 0 6px 0 #fff,
                  0 -6px 0 #fff;
      background: #fff;
    }
  }

  /* -- >>> styles for wide layout ----- */
  @media all and (min-width: 768px) {
    #home #header {}
    #home #header .logo {
      /*width: 310px;*/
    }
  }


#home #nav {
}

  /* -- >>> styles for narrow layout ----- */
  @media all and (max-width: 767px) {
    #home {
    }
  }

  /* -- >>> styles for wide layout ----- */
  @media all and (min-width: 768px) {
    #home #nav {
      /*position: fixed;
      top: 0;*/
    }

    #home.is-pageTop #nav {
      /*position: absolute;*/
      /*z-index: 10;*/
      /*top: 100vh;*/
      /*padding: 6.5em 0 1.5em;*/
      /*background: none;
      background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
      background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
      background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);*/
      border-bottom-color: transparent;
      background-color: transparent;
      color: #fff;
    }
    #home #nav::after {
      display: block;
      opacity: 0;
      position: absolute;
      top: -60px;
      right: 0;
      left: 0;
      z-index: -1;
      height: 130px;
      background-color: rgba(56,62,69,.5);
      content: "";
    }
    #home.is-pageTop #nav::after {
      opacity: 1;
    }

    #home.is-pageTop #nav a {
      color: #fff;
    }
    #home.is-pageTop #nav .navGlobal {
      /*padding: 0;*/
    }
  }


/** =2
 * ========================================
 * home - content
 * ========================================
 */
#home .l-contents {
  padding-top: 0;
}

  /* -- >>> styles for narrow layout ----- */
  @media all and (max-width: 767px) {
    #home {
    }
  }

  /* -- >>> styles for wide layout ----- */
  @media all and (min-width: 768px) {
    #home {
    }
  }

  /*
   * hero
   * ----------------------------------
   */
  #hero {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  #hero .itemText {
    position: absolute;
    /*top: 37.5%;*/
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 660px;
    height: 90px;
    margin-top: -45px;
    margin-left: -330px;
    background: center center no-repeat;
    background-size: contain;
  }
  #hero.scene01 .itemText {
    background-image: url(../../../src/region/common/pc/image/index/slide/text_slide01.png);
  }
  #hero.scene02 .itemText {
    background-image: url(../../../src/region/common/pc/image/index/slide/text_slide02.png);
  }
  #hero.scene03 .itemText {
    background-image: url(../../../src/region/common/pc/image/index/slide/text_slide03.png);
  }


  #hero .itemBtn {
    position: absolute;
    /*top: 55%;*/
    top: 62%;
    left: 50%;
    z-index: 11;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    background: url(../../../src/region/common/pc/image/index/arrow_scroll.png) center center no-repeat;
    background-size: contain;
  }

    /* -- >>> styles for narrow layout ----- */
    @media all and (max-width: 767px) {
      #hero {
        height: auto;
        padding-top: 100%;
      }
      #hero .itemText {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        height: 0;
        margin-top: 30px;
        margin-left: 0;
        padding-top: 13.63636363636364%;
      }
      #hero .itemBtn {
        top: auto;
        bottom: 5%;
        width: 40px;
        height: 40px;
        margin-left: -20px;
      }
    }

    /* -- >>> styles for wide layout ----- */
    @media all and (min-width: 768px) {
      #hero {}
    }

    /* slider */
    #hero .slider {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }
    #hero .slider .itemSlide {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      background: center center no-repeat;
      background-size: cover;
      -webkit-transition: -webkit-transform 8s linear;
      -moz-transition: -moz-transform 8s linear;
      -o-transition: -o-transform 8s linear;
      transition: transform 8s linear;
    }
    #hero .slider .itemSlide.is-current { z-index: 10; }
    #hero .slider .itemSlide.is-next { z-index: 9; }
    #hero .slider .itemSlide.is-zoom {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
    }

    #hero.scene01 .slider .itemSlide.slide01 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide01-01.jpg);
    }
    #hero.scene01 .slider .itemSlide.slide02 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide01-02.jpg?ver=20171031);
    }
    #hero.scene01 .slider .itemSlide.slide03 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide01-03.jpg);
    }
    #hero.scene01 .slider .itemSlide.slide04 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide01-04.jpg?ver=20170726);
    }
    #hero.scene01 .slider .itemSlide.slide05 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide01-05.jpg);
    }

    #hero.scene02 .slider .itemSlide.slide01 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide02-01.jpg);
    }
    #hero.scene02 .slider .itemSlide.slide02 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide02-02.jpg);
    }
    #hero.scene02 .slider .itemSlide.slide03 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide02-03.jpg);
    }
    #hero.scene02 .slider .itemSlide.slide04 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide02-04.jpg);
    }
    #hero.scene02 .slider .itemSlide.slide05 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide02-05.jpg);
    }

    #hero.scene03 .slider .itemSlide.slide01 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide03-01.jpg);
    }
    #hero.scene03 .slider .itemSlide.slide02 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide03-02.jpg);
    }
    #hero.scene03 .slider .itemSlide.slide03 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide03-03.jpg);
    }
    #hero.scene03 .slider .itemSlide.slide04 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide03-04.jpg);
    }
    #hero.scene03 .slider .itemSlide.slide05 {
      background-image: url(../../../src/region/common/pc/image/index/slide/slide03-05.jpg);
    }


      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        #hero.scene01 .slider .itemSlide.slide01 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide01-01.jpg);
        }
        #hero.scene01 .slider .itemSlide.slide02 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide01-02.jpg?ver=20171031);
        }
        #hero.scene01 .slider .itemSlide.slide03 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide01-03.jpg);
        }
        #hero.scene01 .slider .itemSlide.slide04 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide01-04.jpg?ver=20170726);
        }
        #hero.scene01 .slider .itemSlide.slide05 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide01-05.jpg);
        }

        #hero.scene02 .slider .itemSlide.slide01 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide02-01.jpg);
        }
        #hero.scene02 .slider .itemSlide.slide02 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide02-02.jpg);
        }
        #hero.scene02 .slider .itemSlide.slide03 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide02-03.jpg);
        }
        #hero.scene02 .slider .itemSlide.slide04 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide02-04.jpg);
        }
        #hero.scene02 .slider .itemSlide.slide05 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide02-05.jpg);
        }

        #hero.scene03 .slider .itemSlide.slide01 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide03-01.jpg);
        }
        #hero.scene03 .slider .itemSlide.slide02 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide03-02.jpg);
        }
        #hero.scene03 .slider .itemSlide.slide03 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide03-03.jpg);
        }
        #hero.scene03 .slider .itemSlide.slide04 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide03-04.jpg);
        }
        #hero.scene03 .slider .itemSlide.slide05 {
          background-image: url(../../../src/region/common/sp/image/index/slide/slide03-05.jpg);
        }
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        #hero {
        }
      }


  /*
   * articlePoint
   * ----------------------------------
   */
  .articlePoint {}
  .articlePoint .boxPoint {
    background: center center no-repeat;
    background-size: cover;
  }

  .articlePoint .boxPoint .itemText {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #383e45;
    background-color: rgba(56,62,69, .4);
    color: #fff;
    text-align: center;
  }
  .articlePoint .boxPoint .itemText .title {
    width: 100%;
    margin-bottom: 2.5em;
    line-height: 1.4;
  }
  .articlePoint .boxPoint .itemText .description {
    width: 100%;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #fff;
    border-bottom-color: rgba(255,255,255,.3);
    text-align: left;
  }
  .articlePoint .boxPoint .itemText .link {
    display: inline-block;
    text-align: left;
  }
  .articlePoint .boxPoint .itemText .link a {
    display: inline-block;
    line-height: 1.5;
  }

    /* -- >>> styles for narrow layout ----- */
    @media all and (max-width: 767px) {
      .articlePoint {
        padding-top: 2.5%;
      }
      .articlePoint .boxPoint {
        margin-right: 2.5%;
        margin-bottom: 2.5%;
        margin-left: 2.5%;
      }
      .articlePoint .boxPoint.point01 {
        background-image: url(../../../src/region/common/sp/image/index/point/image_point01.jpg);
      }
      .articlePoint .boxPoint.point02 {
        background-image: url(../../../src/region/common/sp/image/index/point/image_point02.jpg);
      }
      .articlePoint .boxPoint.point03 {
        background-image: url(../../../src/region/common/sp/image/index/point/image_point03.jpg?ver=20170726);
      }
      .articlePoint .boxPoint.point04 {
        background-image: url(../../../src/region/common/sp/image/index/point/image_point04.jpg);
      }

      .articlePoint .boxPoint .itemText {
        padding: 25px 9% 20px;
      }
    }

    /* -- >>> styles for wide layout ----- */
    @media all and (min-width: 768px) {
      .articlePoint {
        padding: 40px;
      }
      .articlePoint .boxPoint + .boxPoint {
        margin-top: 20px;
      }
      .articlePoint .boxPoint.point01 {
        background-image: url(../../../src/region/common/pc/image/index/point/image_point01.jpg);
      }
      .articlePoint .boxPoint.point02 {
        background-image: url(../../../src/region/common/pc/image/index/point/image_point02.jpg);
      }
      .articlePoint .boxPoint.point03 {
        background-image: url(../../../src/region/common/pc/image/index/point/image_point03.jpg?ver=20170726);
      }
      .articlePoint .boxPoint.point04 {
        background-image: url(../../../src/region/common/pc/image/index/point/image_point04.jpg);
      }

      .articlePoint .boxPoint .itemText {
        width: 33.33333333333333%;
        width: -webkit-calc( 1/3 * 100% );
        width: calc( 1/3 * 100% );
        min-height: 400px;
        padding: 50px 4% 40px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
      }
      .articlePoint .boxPoint:nth-child(2n) .itemText {
        width: auto;
        margin-left: 66.66666666666667%;
        margin-left: -webkit-calc( 2/3 * 100% );
        margin-left: calc( 2/3 * 100% );
      }
    }


  /*
   * articleNoticeIndex
   * ----------------------------------
   */
  .articleNoticeIndex {}
  .articleNoticeIndexTitle {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.2;
  }

    /* -- >>> styles for narrow layout ----- */
    @media all and (max-width: 767px) {
      .articleNoticeIndex {
        padding-top: 25px;
        padding-bottom: 30px;
      }
      .articleNoticeIndexTitle {
        margin-bottom: 1.0em;
        text-align: center;
      }
    }

    /* -- >>> styles for wide layout ----- */
    @media all and (min-width: 768px) {
      .articleNoticeIndex {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
      }
      .articleNoticeIndexInner {
        display: inline-flex;
      }
      .articleNoticeIndexTitle {
        flex-shrink: 0;
        /* width: 160px; */
        margin-right: 16px;
        text-align: left;
      }
    }

    .listNoticeIndex {
      font-size: 16px;
      font-size: 1.6rem;
    }
    .listNoticeIndexItem+.listNoticeIndexItem {
      margin-top: .5em;
    }
    .listNoticeIndex a {
      color: inherit;
      text-decoration: none;
    }
    .no-touch .listNoticeIndex a:hover {
      text-decoration: underline;
    }

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        .listNoticeIndex {}
      }
      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        .listNoticeIndex {
          margin-top: .25em;
          text-align: left;
        }
      }


  /*
   * articleInfomationIndex
   * ----------------------------------
   */
  .articleInfomationIndex {}

  .articleInfomationIndex .itemBtn {}
  .articleInfomationIndex .itemBtn a {
    display: inline-block;
    line-height: 1.5;
  }

    /* -- >>> styles for narrow layout ----- */
    @media all and (max-width: 767px) {
      .articleInfomationIndex {
        padding-top: 30px;
        padding-bottom: 20px;
      }
      .articleInfomationIndex .itemBtn {
        margin-top: 20px;
        padding-top: 1.0em;
      }
    }

    /* -- >>> styles for wide layout ----- */
    @media all and (min-width: 768px) {
      .articleInfomationIndex {
        padding-top: 60px;
        /*padding-bottom: 80px;*/
        padding-bottom: 30px;
      }
      .articleInfomationIndex .itemBtn {
        margin-top: 30px;
        padding-top: 1.5em;
      }
    }


    /* [ blockListInformation ]
    ------------------------------ */
    .blockListInformation.slick-slider {
      margin: 0;
    }
    .blockListInformation.slick-slider .slick-arrow {
      background: none;
    }
    .blockListInformation.slick-slider .listInformation {
      display: block;
      margin: 0;
    }

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        .blockListInformation.slick-slider {
          /*margin-right: -5px;
          margin-left: -5px;*/
        }
        .blockListInformation.slick-slider .slick-arrow {
          opacity: .6;
          bottom: auto;
          width: 20px;
          height: 110px;
        }
        .blockListInformation.slick-slider .slick-arrow.slick-prev {
          left: -10px;
        }
        .blockListInformation.slick-slider .slick-arrow.slick-next {
          right: -10px;
        }
        .blockListInformation.slick-slider .slick-arrow .iconArrowCircle {
          margin-top: -10px;
          margin-left: -10px;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%;
          background-color: #fff;
        }
        .blockListInformation.slick-slider .listInformation {
          margin-right: 5px;
          margin-left: 5px;
        }
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        .blockListInformation.slick-slider {
          margin-right: -16px;
          margin-left: -16px;
        }
        .blockListInformation.slick-slider .listInformation {
          margin-right: 16px;
          margin-left: 16px;
        }

        .blockListInformation.slick-slider .slick-arrow {
          bottom: auto;
          width: 72px;
          height: 165px;
        }
        .blockListInformation.slick-slider .slick-arrow.slick-prev {
          left: -56px;
        }
        .blockListInformation.slick-slider .slick-arrow.slick-next {
          right: -56px;
        }
      }

  /*
   * blockOtherIndex
   * ----------------------------------
   */
  .blockOtherIndex {}
  .blockOtherIndex a {
    color: #383e45;
  }
  .no-touch .blockOtherIndex .itemLink {
    clear: both;
  }

    /* -- >>> styles for narrow layout ----- */
    @media all and (max-width: 767px) {
      .blockOtherIndex {
        padding-top: 30px;
        padding-bottom: 40px;
      }
    }

    /* -- >>> styles for wide layout ----- */
    @media all and (min-width: 768px) {
      .blockOtherIndex {
        padding-top: 60px;
        padding-bottom: 20px;
      }
    }


    /* [ boxBanners ]
    ------------------------------ */
    .boxBanners {}
    .boxBanners a {
      display: block;
    }

    .boxBanners .itemBanner {
      padding: 0 2px;
    }
    .boxBanners .itemBanner.column {
      margin-bottom: 4px;
    }
    .boxBanners .boxBannerInternal,
    .boxBanners .boxBannerExternal {
      margin-right: -2px;
      margin-left: -2px;
    }

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        .boxBanners {
          margin-bottom: 6%;
        }
        .boxBanners .itemBanner {
          width: 50%;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
        }
        .boxBanners .boxBannerInternal {
          margin-bottom: 16px;
        }
        .boxBanners .boxBannerExternal {
          margin-bottom: 0;
        }
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        .boxBanners {
          float: left;
          /*width: 664px;*/
          width: 440px;
          margin-top: 16px;
        }
        .boxBanners .itemBanner {
          width: 218px;
        }
        .boxBanners .boxBannerInternal {
          /* margin-bottom: 32px; */
          margin-bottom: 29px;
        }
      }

    /* [ wrapSns ]
    ------------------------------ */

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        /* .wrapSns {
          padding: 5%;
          margin-bottom: 1px;
        } */
      }
      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        /* .wrapSns {
          float: left;
          width: 215px;
          margin-left: 16px;
          padding: 16px;
          padding-top: 27px;
        } */
      }

    /* [ boxMovie ]
    ------------------------------ */
    /* .boxMovie {}
    .boxMovie a {
      display: block;
    } */

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        /* .boxMovie {
          padding: 5%;
          margin-bottom: 1px;
        } */
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        /* .boxMovie {
          float: left;
          width: 215px;
          margin-left: 16px;
          padding: 16px;
          padding-top: 38px;
        } */
      }

    /* [ boxSns ]
    ------------------------------ */
    .boxSns {}

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        .boxSns {
          padding: 5%;
          margin-bottom: 10px;
        }
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        .boxSns {
          float: left;
          width: 336px;
          /* height: 253px; */
          margin-left: 16px;
          /* margin-bottom: 10px; */
          padding: 16px;
          /* padding-top: 42px; */
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
        }
      }

      /* boxSns01 */
      .boxSns01 {
        /* display: table; */
        display: flex;
        justify-content: space-between;
        /* width: 100%;
        width: -webkit-calc( 100% + 8px );
        width: calc( 100% + 8px ); */
        /* margin: 0 -4px 16px; */
        /* margin-bottom: -5px; */
        /* margin-bottom: 10px; */
        border-collapse: separate;
        border-spacing: 4px 0px;
      }
      .boxSns01 .column { margin-bottom: 0; }
      .boxSns01 .itemBtn {
        /* display: table-cell; */
        width: 49.3%;
        /* width: 50%; */
        vertical-align: middle;
      }
      .boxSns01 .itemBtn:nth-child(2n) {
        /* margin-left: 1.4%; */
      }

      /* .boxSns01 .itemBtn#bnrAssociateUSJ {
        background-color: #fff;
        border: 1px solid #a8afb6;
        text-align: center;
      }
      .boxSns01 .itemBtn#bnrAssociateUSJ a {
        display: block;
        min-height: 100%;
        padding: .5em;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
      }
      .boxSns01 .itemBtn#bnrAssociateUSJ .itemImage {
        margin-bottom: .5em;
      }
      .boxSns01 .itemBtn#bnrAssociateUSJ .itemImage img {
        width: 60px;
        height: auto;
      }
      .boxSns01 .itemBtn#bnrAssociateUSJ .itemText {
        line-height: 1.2;
        letter-spacing: -.1em;
      } */

      .boxSns01 .itemBtn#wrapTrustYouWidget .trustscore:after,
      .boxSns01 .itemBtn#wrapTrustYouWidget .trustscore:before {
        border-spacing: 0;
      }
      .boxSns01 .itemBtn#wrapTrustYouWidget .btnMore .btn {
        width: 146px;
        padding-top: .1em;
        padding-bottom: .1em;
        box-sizing: border-box;
        background-color: #3498db;
      }
      .no-touch .boxSns01 .itemBtn#wrapTrustYouWidget .btnMore .btn:hover { background-color: #50b4e5; }

      .boxSns01 .itemBtn .TA_certificateOfExcellence {
        height: 100%;
        line-height: 0;
      }
      .boxSns01 .itemBtn #CDSWIDCOE {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        width: auto;
        height: 100%;
        margin: 0 auto;
      }

        /* -- >>> styles for narrow layout ----- */
        @media all and (max-width: 767px) {
          .boxSns01 {}
        }

        /* -- >>> styles for wide layout ----- */
        @media all and (min-width: 768px) {
          .boxSns01 {
          }
        }

    /* [ boxBelong ]
    ------------------------------ */
    .boxBelong {}

      /* -- >>> styles for narrow layout ----- */
      @media all and (max-width: 767px) {
        .boxBelong {}
        .boxBelong .itemBnr + .itemBnr {
          margin-top: 10px;
        }
      }

      /* -- >>> styles for wide layout ----- */
      @media all and (min-width: 768px) {
        .boxBelong {
          float: right;
          width: 232px;
          margin-top: 16px;
        }
        .boxBelong .itemBnr + .itemBnr {
          margin-top: 9px;
        }
      }

      /* bnrWorldHotels */
      #bnrWorldHotels {}
      #bnrWorldHotels a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        border: 1px solid #e2e5e7;
        text-align: center;
      }
        /* -- >>> styles for narrow layout ----- */
        @media all and (max-width: 767px) {
          #bnrWorldHotels a {
            width: 216px;
          }
        }
        /* -- >>> styles for wide layout ----- */
        @media all and (min-width: 768px) {
          #bnrWorldHotels a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 170px;
            box-sizing: border-box;
          }
          #bnrWorldHotels a img {
            width: 100%;
          }
        }

      /* bnrAnshintabi */
      #bnrAnshintabi {}
      #bnrAnshintabi a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        border: 1px solid #e2e5e7;
        text-align: center;
      }
        /* -- >>> styles for narrow layout ----- */
        @media all and (max-width: 767px) {
          #bnrAnshintabi a {
            width: 216px;
          }
        }
        /* -- >>> styles for wide layout ----- */
        @media all and (min-width: 768px) {
          #bnrAnshintabi a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            box-sizing: border-box;
          }
          #bnrAnshintabi a img {
            width: 100%;
          }
        }

      /* bnrAssociateUSJ */
      #bnrAssociateUSJ {}
      #bnrAssociateUSJ {
        background-color: #004ea2;
      }
      #bnrAssociateUSJ a {
        display: block;
        padding: 6px .5em;
        color: #fff;
        text-decoration: none;
      }
      #bnrAssociateUSJ .itemImage,
      #bnrAssociateUSJ .itemText {
        display: inline-block;
        vertical-align: middle;
      }
      #bnrAssociateUSJ .itemImage {
        text-align: center;
      }
      #bnrAssociateUSJ .itemImage img {
        width: 64px;
        height: auto;
      }
      #bnrAssociateUSJ .itemText {
        line-height: 1.4;
      }
      #bnrAssociateUSJ .itemText .sans-serifEn {
        letter-spacing: -.01em;
      }
        /* -- >>> styles for narrow layout ----- */
        @media all and (max-width: 767px) {
          #bnrAssociateUSJ .itemImage {
            width: 26%;
          }
          #bnrAssociateUSJ .itemText {
            width: 72%;
          }
        }
        /* -- >>> styles for wide layout ----- */
        @media all and (min-width: 768px) {
          #bnrAssociateUSJ .itemImage {
            width: 38%;
          }
          #bnrAssociateUSJ .itemText {
            width: 58%;
            padding: 5px 0 4px;
          }
        }

      /* boxSns02 */
      /* .boxSns02 {
        margin-bottom: 0;
        background-color: #fff;
      }
      .boxSns02 .column { margin-bottom: 0; }
      .boxSns02 .itemTitle {
        width: 36%;
        height: 48px;
        padding: .5em .75em;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 1.2;
      }
      .boxSns02 .itemTitle span,
      .boxSns02 .itemTitle::before {
        display: inline-block;
        vertical-align: middle;
      }
      .boxSns02 .itemTitle::before {
        width: 0;
        height: 100%;
        content: "";
      }
      .boxSns02 .itemBtn {
        width: 16%;
      }
      .boxSns02 .itemBtn .btn {
        display: block;
        padding: 12px .5em;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background-color: #004ea2;
        font-size: 24px;
        line-height: 24px;
      }
      .boxSns02 .itemBtn .btn.twitter { background-color: #1da1f3; }
      .boxSns02 .itemBtn .btn.facebook { background-color: #3b5998; }
      .boxSns02 .itemBtn .btn.line { background-color: #00b900; }
      .boxSns02 .itemBtn .btn.instagram {
        background-color: #bf3987;
        background-image: url(../../../src/region/common/pc/image/index/bg_instagram.jpg);
        background-position: center center;
        background-size: cover;
      }
      .boxSns02 .itemBtn .btn .fa { vertical-align: bottom; }
      .boxSns02 .itemBtn .btn.line img { width: 24px; } */

        /* -- >>> styles for narrow layout ----- */
        @media all and (max-width: 767px) {
          /* .boxSns02 {
            margin-top: 10px;
          } */
        }

        /* -- >>> styles for wide layout ----- */
        @media all and (min-width: 768px) {
          /* .boxSns02 {
            margin-top: 12px;
            background: none;
          }
          .boxSns02 .itemTitle {
            width: 100%;
            height: auto;
            margin-bottom: .5em;
            padding: 0;
            color: #004ea2;
            text-align: center;
          }
          .boxSns02 .itemTitle .fwBold {
            font-weight: normal;
          }
          .boxSns02 .itemBtn {
            width: 25%;
          } */
        }
