@charset "UTF-8";

/* あ */


.header_container{
  background-image: url("../../images/kanrihi/header_container_back.png");
  background-repeat: repeat-x;
}

header{
  color: #fff;
  background-image: url("../../images/kanrihi/header.png"), url("../../images/kanrihi/header2.png");
  background-repeat: no-repeat, no-repeat;
}

/* PCタブレット */
@media screen and (min-width:640px){
  .header_container{
    background-position: bottom;
  }

  header{
    background-position: left top, right top;
  }
}

/* PC */
@media screen and (min-width:960px){
  header{
    width: 940px;
    margin: 0 auto;
    padding: 180px 0 0 10px;
    font-size: 1.3em;
  }
}

/* タブレット */
@media screen and (min-width:640px) and (max-width:959px){
  header{
    padding: 150px 0 5px 20px;
    background-size: 50% auto;
  }
}

/* スマートフォン */
@media screen and (max-width:639px){
  .header_container{
    background-size: 4px 80px;
    background-position: top;
  }

  header{
    padding: 12px 0 250px 20px;
    background-size: 300px auto;
    border-bottom: 1px solid #ccc;
    background-position: center 80px, center 185px;
  }
}


