
/* TABLE OF CONTENTS:
 * 
 * 01 どのサイズでも共通で適用されるスタイル
 *    - 流れ共通
 * 02 幅 480px 以上
 * 03 幅 730px 以上
 *    - 流れ共通
 */

/* --------------------------------------------------------------------------------------------------------
   01
 *
 * どのサイズでも共通で適用されるスタイル
 */


  /* 流れ共通 */
    section {
      margin-bottom: 30px;
    }

    .flow {
      margin: 0;
      padding: 0;
    }

    .flow > div:first-child {
      padding:0;
      background: none;
    }

    .flow > div.att-box {
      list-style: none;
      margin-left: 0;
      padding: 30px 0 0 0;
      border: 6px #8BC6F9 solid;
      margin-bottom: 4em;
      min-height: 150px;
      padding: 15px;
      position: relative;
    }

    .flow > div.att-box:before {
      border: 30px solid transparent;
      border-top: 20px solid #8BC6F9;
      content: "";
      position: absolute;
      bottom: -75px;
      left: 44%;
    }
    
    .flow > div.att-box:last-child:before {
      border: 0;
    }

    .flow > div .flow-heading span {
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 100px;
      display: table-cell;
      font-size: 1.3rem;
      font-weight: bold;
      height: 50px;
      line-height:1.2em;
      padding: 15px 0 5px 0px;
      vertical-align: middle;
    }
    
    .flow > div.f1 .flow-heading span {
      background-image: url(../img/icon/step1.png);
    }
    
    .flow > div.f2 .flow-heading span {
      background-image: url(../img/icon/step2.png);
    }
    
    .flow > div.f3 .flow-heading span {
      background-image: url(../img/icon/step3.png);
    }
    
    .flow > div.f4 .flow-heading span {
      background-image: url(../img/icon/step4.png);
    }
    
    .flow > div.f5 .flow-heading span {
      background-image: url(../img/icon/step5.png);
    }
    
    #main .post h3,
    #main .post .s-heading {
      background: url(../img/bg/dot-light.png);
      border: 0;
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.8;
      margin-bottom: 0.5rem;
      padding: 5px 10px 0;
    }



/* --------------------------------------------------------------------------------------------------------
   02
 *
 * 幅 480px 以上
 */
@media screen and (min-width: 480px) {

    /* ここにスタイル */

}/* End 480px */



/* --------------------------------------------------------------------------------------------------------
   03
 *
 * 幅 730px 以上
 */
@media screen and (min-width: 730px) {

  /* 流れ共通 */
    .flow > div.att-box:before {
      left: 46%;
    }
    .flow > div .flow-heading {
      font-size: 16px;
    }
    .flow > div .flow-heading span {
      background-size: auto;
      font-size:1.7em;
    }
    .flow .img-l .cont {
    width: 62%;
    }
    .flow .img-l .image {
    margin: 1em 0 1.5em;
    }

}/* End 730px */


/* 問合わせバナー */

.flow-banner .icon {
    height: auto;
}

#content .flow-banner {
    clear: both;
    height: auto;
    margin: 30px auto 10px;
    text-align: center;
}

#content .flow-banner ul {
    padding-left: 0;
}

#content .flow-banner ul li {
    list-style: none;
}

#content .flow-banner .form-tel,
#content .flow-banner .form-toi a {
    font-weight: bold;
    height: 75px;
    margin: 0;
    padding: 2px 5px;
    text-align: center;
    vertical-align: middle;
    width: 48%;
}

#content .flow-banner ul li img {
    vertical-align: -1px;
}

#content .flow-banner .form-tel {
    background: #FF9E3E;
    border-radius: 3px;
    display: block;
    float: left;
    font-size: 24px;
    line-height: 1em;
    margin-right: 15px;
}

#content .flow-banner ul li span {
    font-weight: normal;
    font-size: 14px;
    display: block;
    text-align: center;
}

#content .flow-banner ul li span.tel-num {
  display: inline;
  font-size: 22px;
  margin-left: 5px;
}

#content .flow-banner .form-toi a {
    background: #2082D7;
    border-radius: 3px;
    color: #fff;
    display: table-cell;
    float: none;
    font-size: 18px;
    text-decoration: none;
}

#content .flow-banner .form-toi a:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 1039px) {
    #content .flow-banner .form-tel {
        font-size: 20px;
    }

    #content .flow-banner ul li span {
        font-size: 10px;
    }

    #content .flow-banner .form-toi a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 729px) {

    #content .flow-banner .form-tel,
    #content .flow-banner .form-toi a {
        float: none;
        margin: 0 0 5px;
        padding: 0;
    }

    #content .flow-banner .form-tel {
        font-size: 24px;
        width: 100%;
    }

    #content .flow-banner .form-toi {}

    #content .flow-banner .form-toi a {
        width: 34%;
    }

    #content .flow-banner ul li span {
        font-size: 12px;
    }
    
    #main .describe-text dd {
        margin: 0.2em 0.5em 1em;
    }
    
}