/**
 *
 * Used to generate responsive styles according to the breakpoint we set into the variables file
 *
 */
/**
 *
 * Simpler shortcut to create easily break points
 *
 */
/**
 * Easy functions to create easily pure css arrows anywhere
 */
html {
  min-height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#suntory_contents .viewport {
  position: relative;
}

#suntory_contents .row {
  width: 80%;
  margin: 0 auto;
  *zoom: 1;
}
#suntory_contents .row:before, .row:after {
  display: table;
  content: "";
  line-height: 0;
}
#suntory_contents .row:after {
  clear: both;
}

#suntory_contents pre {
  text-align: left;
}

#suntory_contents .api {
  padding: 0;
  list-style: none;
}
#suntory_contents .api p {
  margin: 0.1em;
}
#suntory_contents .api pre {
  margin-bottom: 0.2em;
  margin-top: 1.5em;
}
#suntory_contents .api ul {
  margin: 0.2em;
}
#suntory_contents .api ul li {
  font-size: 0.8em;
}

#suntory_contents footer {
  margin: 3em 0 0;
  padding: 10px 10%;
}
#suntory_contents footer a {
  text-decoration: none;
}

#suntory_contents .btn {
  background: black;
  color: white;
  font-size: 1em;
  padding: 1em;
  border: none;
  cursor: pointer;
  border: 1px solid white;
}
#suntory_contents .btn:hover {
  color: black;
  background: white;
  border: 1px solid black;
}

#suntory_contents .demo {
  position: relative;
  margin-bottom: 50px;
  *zoom: 1;
}
#suntory_contents .demo:before, .demo:after {
  display: table;
  content: "";
  line-height: 0;
}
#suntory_contents .demo:after {
  clear: both;
}
#suntory_contents .demo .GITheWall {
  float: left;
}
#suntory_contents .demo .ajax {
  padding: 20px 0;
  color: white;
  min-height: 550px;
}
#suntory_contents .demo .ajax .txt {
  font-size: 0.8em;
  float: left;
  padding: 0 5% 0 0;
  width: 45%;
}
#suntory_contents .demo .ajax .img {
  position: relative;
  width: 50%;
  height: 550px;
  float: left;
  background-size: cover;
  background-position: center;
}
#suntory_contents .demo ul {
  text-align: center !important;
}
#suntory_contents .demo ul li {
  cursor: pointer;
  color: white;
  background: #444;
  line-height: 3em;
  float: none;
  display: inline-block;
  width: 200px;
  height: 200px;
}
#suntory_contents .demo ul li img {
  width: 200px;
  height: 200px;
}

#suntory_contents .GI_TW_expander {
  color: white;
}

/**
 *
 * The wall could be used to show an image gallery or any other content in a "google images" user interaction way
 * Here there is all the html needed
 *
 *
 *  <div class="GITheWall">
 *    <ul>
 *      <li data-contenttype="image" data-href="path/to/the/image">
 *        <img src="small/thumb" />
 *      <li>
 *      <li data-contenttype="ajax" data-href="path/to/the/html/to/load">
 *        <img src="small/thumb" />
 *      <li>
 *    </ul>
 *  </div>
 *
 */
#suntory_contents .GITheWall ul {
  list-style: none;
  padding: 20px 0;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}
#suntory_contents .GITheWall ul li {
  display: inline-block;
  margin: 10px 5px 0 5px;
  vertical-align: top;
  width: 200px;
}
#suntory_contents .GITheWall ul li.GI_TW_Selected_Row {
  -webkit-transition: margin-bottom 0.3s ease-in;
  -moz-transition: margin-bottom 0.3s ease-in;
  -o-transition: margin-bottom 0.3s ease-in;
  transition: margin-bottom 0.3s ease-in;
}

#suntory_contents .GI_TW_expander {
  position: absolute;
  z-index: 1;
  top: 0;
  background: black;
  left: 0;
  width: 100%;
  margin-top: 10px;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in;
  -moz-transition: height 0.3s ease-in;
  -o-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}
#suntory_contents .GI_TW_expander.animating {
  overflow: hidden !important;
}
#suntory_contents .GI_TW_expander.opened {
  overflow: visible;
}
#suntory_contents .GI_TW_expander .GI_TW_pointer {
  position: absolute;
  margin-left: -20px;
  margin-top: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid black;
  -webkit-transition: left 0.3s ease-in;
  -moz-transition: left 0.3s ease-in;
  -o-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}
#suntory_contents .GI_TW_expander .GI_TW_expander-inner {
  width: 80%;
  height: 560px;
  margin: 0 auto;
  overflow: hidden;
}
#suntory_contents .GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg {
  position: relative;
  width: 100%;
  height: 580px;
  margin: 10px 0 0;
  text-align: center;
  overflow: hidden;
}
#suntory_contents .GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg img {
  position: relative;
}
#suntory_contents .GI_TW_expander .GI_TW_Controls {
  z-index: 1;
}
#suntory_contents .GI_TW_expander .GI_TW_close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#suntory_contents .GI_TW_expander .GI_TW_arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}
#suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_hidden {
  display: none;
}
#suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_next {
  right: 30px;
}
#suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_prev {
  left: 30px;
}
#suntory_contents .GI_TW_expander .GI_TW_loading {
  position: absolute;
  top: 50%;
  left: 50%;
}


/* ==========================================================================
   Controls
   ========================================================================== */

#suntory_contents .GI_TW_close {
    width: 19px;
    height: 19px;
    background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_close.png) no-repeat 0 0;
}
#suntory_contents .fa-arrow-left {
    width: 14px;
    height: 25px;
    background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_prev.png) no-repeat 0 0;
    display: block;
}

#suntory_contents .fa-arrow-right {
    width: 14px;
    height: 25px;
    background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_next.png) no-repeat 0 0;
    display: block;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
#suntory_contents .ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

#suntory_contents .ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
#suntory_contents .hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
#suntory_contents .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
#suntory_contents .visuallyhidden.focusable:active,
#suntory_contents .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
#suntory_contents .invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
#suntory_contents .clearfix:before,
#suntory_contents .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

#suntory_contents .clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
#suntory_contents .clearfix {
  *zoom: 1;
}

#suntory_contents .fr {
  float: right;
}

#suntory_contents .fl {
  float: left;
}

#suntory_contents .tac {
  text-align: center;
}

#suntory_contents .tal {
  text-align: left;
}

#suntory_contents .tar {
  text-align: right;
}

#suntory_contents .clear-both {
  clear: both;
}

#suntory_contents .clear-left {
  clear: left;
}

#suntory_contents .clear-right {
  clear: right;
}



@media only screen and (max-width: 767px){
    
    /*=============================================================
      [SP] 
    ============================================================ */
    
    #suntory_contents .GI_TW_expander .GI_TW_close {
      position: absolute;
      width: 10px;
      height: 10px;
      top: 15px;
      right: 20px;
      cursor: pointer;
    }
    #suntory_contents .GI_TW_expander .GI_TW_arrow {
      position: absolute;
      top: 0;
      cursor: pointer;
    }
    #suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_hidden {
      display: none;
    }
    #suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_next {
      right: -30px;
    }
    #suntory_contents .GI_TW_expander .GI_TW_arrow.GI_TW_prev {
      left: -30px;
    }
    #suntory_contents .GI_TW_expander .GI_TW_loading {
      position: absolute;
      top: 50%;
      left: 50%;
    }

    /* ==========================================================================
       Controls
       ========================================================================== */

    #suntory_contents .GI_TW_close {
        width: 45px;
          height: 45px;
        background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_close.png) no-repeat center center;
        background-size: 10px auto;
    }
    #suntory_contents .fa-arrow-left {
        width: 34px;
        height: 80px;
        background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_prev.png) no-repeat center center;
        display: block;
    }

    #suntory_contents .fa-arrow-right {
        width: 34px;
        height: 80px;
        background: url(https://www.suntory.com/newsroom/mediakit/parts_2017/img/btn_next.png) no-repeat center center;
        display: block;
    }


}

