@charset "utf-8";

/* ======================================================
 * product.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Clearfix
 * Media Queries
 * @media only screen and (max-width: 767px)
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  .MainBody{
    padding-top: 0;
  }
  .pageHead{
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .contents > :first-child{
    margin-top: 200px !important;
  }
  /* ------------------------------------------------------
   * fadein
  ------------------------------------------------------ */
  .fadein_side {
    transition-property: opacity, transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.000, 0.295, 0.500, 1.000);
    opacity: 0;
    -webkit-transform: translate(160px, 0);
    transform: translate(160px, 0);
  }
  .fadein_side.fadeL {
    -webkit-transform: translate(-160px, 0);
    transform: translate(-160px, 0);
  }
  
  
  /* ------------------------------------------------------
   * layout
  ------------------------------------------------------ */
  /* ----- main-visual_box ----- */
  .main-visual_box{
    position: relative;
    padding: 0 80px 50px;
    width: 1200px;
    margin: -260px auto 0;
    background: rgba(255,255,255,0.9);
    z-index: 10;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  }
  .main-visual_box .box_lead{
    margin-top: 1.2em;
    font-size: 2rem;
    font-weight: 700;
  }
  .main-visual_box .box_detail{
    margin-top: 1em;
  }
  
  /* ----- history-index-layout ----- */
  .contents > .history-index-layout_wrap{
    margin-top: 60px !important;
  }
  .history-index-layout_wrap{
    padding: 75px 0 0;
    background: -moz-linear-gradient(left, #ffffff 15%, #fdf2e6 15%, #fdf2e6 50%, #fdf2e6 85%, #ffffff 85%); 
    background: -webkit-linear-gradient(left, #ffffff 15%,#fdf2e6 15%,#fdf2e6 50%,#fdf2e6 85%,#ffffff 85%); 
    background: linear-gradient(to right, #ffffff 15%,#fdf2e6 15%,#fdf2e6 50%,#fdf2e6 85%,#ffffff 85%);
    box-shadow:0px -28px 0px 0px #fff inset;
  }
  .history-index-layout{
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .history-index-layout + *{
    margin-top: 30px;
  }
  .history-index-box{
    position: relative;
    width: 60%;
    margin-top: 40px;
    padding: 40px 50px 40px 0;
    background: #fff;
    z-index: 10;
  }
  .history-index-box .box_lead{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .history-index-box .box_lead + .box_detail{
    margin-top: 1.5em;
  }
  .history-index-box .list-note{
    margin-top: 1.5em;
    color: #666;
    font-size: 1.4rem;
  }
  .history-index-image{
    position: absolute;
    width: 512px;
    right: 0;
    z-index: 1;
  }
  .history-index-image .image_caption{
    margin-top: 0.5em;
    text-align: right;
    font-size: 1.4rem;
  }
  /* imageL */
  .history-index-layout.imageL {
    -webkit-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
  }
  .imageL .history-index-box{
    padding: 40px 0 40px 50px;
  }
  .imageL .history-index-image{
    position: absolute;
    width: 512px;
    left: 0;
    z-index: 1;
  }
  .imageL .history-index-image .image_caption{
    text-align: left;
  }
  
  /* index-layout_lv2  */
  .index-layout_lv2 .history-index-image{
    width: 878px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  }
  .index-layout_lv2 .history-index-box{
    margin-top: 350px;
  }
  
  /* ----- more-layout ----- */
  .more-layout .link-button{
    margin-top: 1em;
  }
  .more-layout .link-button > li > a{
    padding: 10px;
  }
  .more-layout .link-button > li > a:before{
    border-right: solid 9px #e3e9ec;
    border-bottom: solid 9px #e3e9ec;
  }
  .more-layout{
    margin-top: 10em;
    padding: 25px 30px 30px;
    background-color: #e3e9ec;
  }
  .more-layout .more_title{
    font-weight: 700;
  }
  

  /* ------------------------------------------------------
   * heading
  ------------------------------------------------------ */
  .history-heading-lv1{
    text-align: center;
    
  }
  .history-heading-lv1 > .heading_title{
    display: inline-block;
    border-top: 8px solid #ef7c0a;
    padding: 48px 10px 0;
    font-size: 7.6rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
}

/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
  .pageHead{
    position: relative;
    padding: 0;
    z-index: 1;
  }
  .container{
    position: relative;
    margin-top: 0;
    z-index: 100;
  }
  .Main{
    padding-top: 0;
  }
  /* ------------------------------------------------------
   * fadein
  ------------------------------------------------------ */
  .fadein_side {
    transition-property: opacity, transform;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.000, 0.295, 0.500, 1.000);
    opacity: 0;
    -webkit-transform: translate(160px, 0);
    transform: translate(160px, 0);
  }
  .fadein_side.fadeL {
    -webkit-transform: translate(-160px, 0);
    transform: translate(-160px, 0);
  }
  
  
  /* ------------------------------------------------------
   * layout-SP
  ------------------------------------------------------ */
  /* ----- history-main-visual ----- */
  .main-visual_box{
    position: relative;
    padding: 0 15px;
    margin: -100px 20px 0;
    background: rgba(255,255,255,0.9);
    z-index: 10;
  }
  .main-visual_box .box_lead{
    margin-top: 1.2em;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  .main-visual_box .box_detail{
    margin-top: 1em;
  }
  
  /* ----- history-index-layout ----- */
  .contents > .history-index-layout_wrap{
    margin-top: 1.5em !important;
  }
  .history-index-layout_wrap{
    padding: 30px 15px 70px;
    margin-left: -15px;
    margin-right: -15px;
    background: url(/english/technology/history/img/index_bg01.jpg) no-repeat 50% 100% #fdf2e6;
    background-size: 100% auto;
    overflow: hidden;
  }
  .history-index-layout{
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .history-index-layout + *{
    margin-top: 1.5em;
  }
  .history-index-box{
    position: relative;
    padding: 15px;
    margin-right: -15px;
    margin-left: 15px;
    background: rgba(255,255,255,0.9);
    z-index: 10;
  }
  .history-index-box .box_lead{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .history-index-box .box_lead + .box_detail{
    margin-top: 1.4em;
  }
  .history-index-box .list-note{
    margin-top: 1.5em;
    color: #666;
    font-size: 1.2rem;
  }
  .history-index-image{
    width: 100%;
    margin-top: -20px;
    z-index: 1;
  }
  .history-index-image .image_caption{
    margin-top: 0.5em;
    text-align: right;
    font-size: 1.2rem;
  }
  
  
  /* imageL */
  .imageL .history-index-box{
    margin-left: -15px;
    margin-right: 15px;
  }
  
  .imageL .history-index-image .image_caption{
    text-align: left;
  }
  /* index-layout_lv2 */
  .index-layout_lv2 .history-index-image{
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  }
  
  /* ----- more-layout ----- */
  .more-layout .link-button{
    margin-top: 1em;
  }
  .more-layout .link-button > li > a{
    padding: 10px;
  }
  .more-layout .link-button > li > a:before{
    border-right: solid 9px #e3e9ec;
    border-bottom: solid 9px #e3e9ec;
  }
  .more-layout{
    margin-top: 10em;
    padding: 25px 30px 30px;
    background-color: #e3e9ec;
  }
  .more-layout .more_title{
    font-weight: 700;
  }
  

  /* ------------------------------------------------------
   * heading
  ------------------------------------------------------ */
  .history-heading-lv1{
    text-align: center;
  }
  .history-heading-lv1 > .heading_title{
    display: inline-block;
    border-top: 8px solid #ef7c0a;
    padding: 30px 10px 0;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.2;
  }
  /* ----- more-layout ----- */
  .more-layout .link-button > li > a:before{
    border-right: solid 9px #e3e9ec;
    border-bottom: solid 9px #e3e9ec;
  }
  .more-layout [class*="link-button"]{
    margin-top: 0.5em !important;
  }
  .more-layout{
    margin-top: 1.5em;
    padding: 20px 15px 15px;
    background-color: #e3e9ec;
  }
  .more-layout .more_title{
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }

}
