@charset "utf-8";
/* ******************************************************************

    --stretch.css--

    1. Style setting
        1-1. Font styles

    2. Layout setting
        2-1. Base styles
        2-2. Header styles
        2-3. Content styles
        2-4. Footer styles

****************************************************************** */
/*==================================================================
    1. Style setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Font styles
-------------------------------------------------------------------*/
#tableFee .feeTitle {
  color: #ffffff;
}
#tableFee .feeDetail {
  color: #73532a;
}
/*==================================================================
    2. Layout setting
===================================================================*/
/* ------------------------------------------------------------------
    2-1. Base styles
-------------------------------------------------------------------*/
/* ------------------------------------------------------------------
    2-2. Header styles
-------------------------------------------------------------------*/
/* ------------------------------------------------------------------
    2-2. Content styles
-------------------------------------------------------------------*/
.sliderBlock {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 138px;
}
#tableFee {
  width: 460px;
  margin: 30px auto auto;
}
#tableFee .feeItem {
  margin: 0 0 37px;
}
#tableFee .feeItem .feeTitle {
  width: 148px;
  border-radius: 5px;
  padding: 4px 0;
  background: #98774d;
  font-weight: bold;
}
#tableFee .feeItem .feeDetail {
  text-align: left;
  padding-left: 27px;
  padding-top: 5px;
}

@media only screen and (max-width: 768px) {
  .sliderBlock {
    padding: 0;
  }
  #tableFee {
    width: auto;
  }
  #tableFee .feeItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  #tableFee .feeItem .feeTitle {
    width: 120px;
    min-width: 120px;
  }
}