/*
//@include linkarrow();
@mixin linkarrow($d:'sp', $c:$monocolor){

    @if $d == 'sp'{

        &:before,
        &:after{
            content: "";
            display: block;
            border-top: 1px solid $c;
            position: absolute;
            z-index: 9;
            top: 50%;
            //right: size(80/-2);
            $right: math.div(80 , -2);
            right: size( $right );
            transform-origin: right bottom;
            //opacity: 0.4;
        }
        &:before{
            width: size(30);
            transform: translateY(-50%) rotate(40deg);
        }
        &:after{
            width: size(80);
            transform: translateY(-50%);
        } 
    }
    @else if $d == 'pc'{

        &:before,
        &:after{
            //right: (96px/-2);
            right: ( math.div(96px , -2) );
        }
        &:before{
            width: 24px;
        }
        &:after{
            width: 96px;
        }
    }
}
*/
/* =================================================
   unique layout
================================================= */
#container.page {
  /* -------------------------------------
     article
  ------------------------------------- */
}
#container.page #article section .content.content_1 h3 {
  text-align: center;
  margin: 13.3333333333vw auto 10.6666666667vw;
}
#container.page #article section .content.content_1 h3 span {
  font-size: 1.8rem;
  line-height: 2;
}
#container.page #article section .content.content_1 p {
  text-align: center;
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  /* =================================================
     unique layout
  ================================================= */
  #container.page {
    /* -------------------------------------
       article
    ------------------------------------- */
  }
  #container.page #article section .content.content_1 {
    max-width: 800px;
    margin: 0 auto 80px;
    transition: 0.3s;
  }
  #container.page #article section .content.content_1 h3 {
    margin: 48px auto 32px;
  }
}
@media screen and (min-width: 1100px) {
  #container.page #article section .content.content_1 {
    max-width: 1120px;
    margin: 0 auto 96px;
  }
  #container.page #article section .content.content_1 h3 {
    margin: 64px auto 48px;
  }
  #container.page #article section .content.content_1 h3 span {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=consultation.css.map */