@charset "UTF-8";
@media screen and (max-width: 1000px) {
  /*========= Cancel ===============*/
  .widget-area,
  .pagination,
  .comments-pagination,
  .post-navigation,
  .site-footer,
  .site-header,
  .alignwide,
  .wide-max-width {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  /*========= menu ===============*/
  #masthead {
    border-bottom: none;
    display: none;
    position: fixed;
    /*fixedを設定して固定*/
    width: 100vw;
    /*横幅指定*/
    z-index: 998;
    /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: none;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  nav {
    width: 100%;
  }
  nav #g-navi-1 {
    display: none;
  }
  nav #g-navi-1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  nav #g-navi-1 ul li {
    width: 25%;
    display: contents;
  }
  nav #g-navi-1 ul li a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 0.9em;
    color: #87BF49;
    font-weight: 600;
  }
  /*アクティブになったエリア*/
  #g-nav-2.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
    -webkit-transform: scale(0);
            transform: scale(0);
    /*scaleをはじめは0に*/
    left: -50px;
    bottom: -50px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    -webkit-transform: scale(50);
            transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav-2.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
  }
  /*ナビゲーション*/
  #g-nav-2 ul {
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    -webkit-animation-name: gnaviAnime;
            animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
    /*0.2 秒遅らせて出現*/
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
  @-webkit-keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*リストのレイアウト設定*/
  #g-nav-2 li {
    text-align: left;
    list-style: none;
    margin: 1em 0;
    background-color: rgba(255, 255, 255, 0.831372549);
    border-radius: 25px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.7411764706) 6px 7px;
            box-shadow: rgba(0, 0, 0, 0.7411764706) 6px 7px;
    border: solid #87BF49 1px;
  }
  #g-nav-2 li a {
    font-size: 1.2em;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #87BF49;
  }
  /*========= #single ===============*/
  .type-post .pankuzu ul {
    padding-left: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .type-post .pankuzu ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 1em;
  }
  .type-post .pankuzu ul li a {
    font-weight: 600;
    text-decoration: none;
    color: #87BF49;
  }
  .type-post .pankuzu ul i {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .type-post .entry-content {
    background-color: rgba(255, 255, 255, 0.5019607843);
    padding: 30px 0;
    border-radius: 20px;
    margin: 1em;
  }
  /*========= #category ===============*/
  .cat-list-wrap h1 {
    margin-top: 2em;
    font-size: 2em;
  }
  .cat-list-wrap h2 {
    font-size: 1.2em !important;
  }
  .cat-list-wrap h2 a {
    text-decoration: none;
  }
  /*========= main slider ===============*/
  .scrolldown2 {
    position: absolute;
    left: 50%;
    top: 8%;
  }
  /*========= content-item ===============*/
  #company {
    position: relative;
  }
  #information {
    background-color: rgba(219, 159, 217, 0.3411764706);
    position: relative;
  }
  #information #info-title {
    width: 100%;
  }
  #item {
    position: relative;
  }
  #item #item-title {
    width: 100%;
  }
  #jca {
    position: relative;
  }
  #jca #jca-title {
    width: 100%;
  }
  #faq {
    position: relative;
  }
  #faq #faq-title {
    width: 100%;
  }
  #contact {
    background: rgba(219, 159, 217, 0.3411764706);
  }
  /*========= content-item ===============*/
  #all-wrap {
    /* width: 80%; */
    margin: 0 auto;
  }
  #all-wrap .single {
    padding: 50px 0;
    /*========= SECTION ===============*/
    /*========= SECTION ===============*/
    /*========= SECTION ===============*/
    /*========= SECTION ===============*/
    /*========= SECTION ===============*/
    /*========= contact-form ===============*/
  }
  #all-wrap .single #company-wrap {
    padding: 0 0 3em 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #all-wrap .single #company-wrap .hat-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #all-wrap .single #company-wrap .hat-wrap a img {
    width: 100%;
  }
  #all-wrap .single #company-wrap .hat-wrap p {
    position: unset;
    width: auto;
  }
  #all-wrap .single #company-wrap .erth-content {
    background-color: rgba(255, 255, 255, 0.4588235294);
    margin: 4em 0;
  }
  #all-wrap .single #company-wrap .erth-content .hathor-logo {
    width: 100%;
  }
  #all-wrap .single #company-wrap .erth-content #sp {
    display: block;
  }
  #all-wrap .single #company-wrap .erth-content #pc {
    display: none;
  }
  #all-wrap .single #company-wrap .erth-content .first-title {
    margin-bottom: 0 !important;
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
    padding: 1em 0 0.5em;
    font-size: 0.7em;
  }
  #all-wrap .single #company-wrap .erth-content .first-title span {
    font-size: 3em;
    background-image: -webkit-linear-gradient(315deg, #b8751e 0%, #ffce08 37%, #e1ce08 47%, #e1ce08 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
    background-image: linear-gradient(135deg, #b8751e 0%, #ffce08 37%, #e1ce08 47%, #e1ce08 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #all-wrap .single #company-wrap .erth-content p {
    margin-bottom: 1em;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-width: auto;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span .a-content-1 {
    margin: auto;
    padding: 0.5em;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 2em;
    background-size: cover;
    border-radius: 10%;
    margin-bottom: 1em;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span .a-content-1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 !important;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span .a-content-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span .a-content-2 img {
    width: 250px;
    padding-top: 4em;
  }
  #all-wrap .single #company-wrap .erth-content .menu-contents span .a-content-2 p {
    margin: 0;
    padding: 0 1em !important;
    text-align: left;
  }
  #all-wrap .single #company-wrap .video-content .video-box iframe {
    width: 100vw;
    height: 330px;
  }
  #all-wrap .single #company-wrap .video-content .video-box a {
    font-size: 1rem;
  }
  #all-wrap .single #information-wrap {
    padding: 3em 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #all-wrap .single #information-wrap .blog-content {
    max-height: 300px;
    overflow: scroll;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #all-wrap .single #information-wrap .blog-content a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    font-family: "Kaisei Decol", serif;
    margin: 1em 0;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    border-bottom: solid #87BF49 1px;
    padding-top: 2em;
  }
  #all-wrap .single #information-wrap .blog-content a .blog-day {
    width: auto;
    margin-right: 0;
  }
  #all-wrap .single #information-wrap .blog-content a:hover {
    color: darkseagreen;
  }
  #all-wrap .single #information-wrap .blog-content img {
    margin-bottom: 1em;
    height: 200px;
    width: 200px;
  }
  #all-wrap .single #items-wrap {
    padding: 3em 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #all-wrap .single #items-wrap p {
    margin-bottom: 7em;
  }
  #all-wrap .single #items-wrap .use-item-wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-1 {
    -webkit-box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
            box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 4em;
  }
  #all-wrap .single #items-wrap .use-item-wrap img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 40%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt {
    margin-left: 0;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt p.item-txt-b1 {
    position: relative;
    text-align: left;
    max-width: 800px;
    height: auto;
    margin: 0 auto 4em;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0.3em;
    padding: 1em;
    font-size: 0.9em;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt p.item-txt-b1::before {
    -webkit-box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
            box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 203, 0.3607843137);
    left: 4%;
    top: 9%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt p.item-txt-b2 {
    position: relative;
    text-align: left;
    max-width: 800px;
    height: auto;
    margin: 0 auto 4em;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0.3em;
    padding: 1em;
    font-size: 0.9em;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt p.item-txt-b2::before {
    -webkit-box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
            box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 203, 0.3607843137);
    left: 4%;
    top: 9%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .item-txt .h4-2 {
    margin-top: 4em;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-2 {
    position: relative;
    text-align: right;
    margin: 4em 0px;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-2 img {
    margin-right: 9em;
    width: 300px;
    height: 300px;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-2 h3 {
    position: absolute;
    top: 20%;
    left: 50%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-2 p {
    width: 500px;
    position: absolute;
    top: 50%;
    right: 40%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-3 {
    position: relative;
    text-align: left;
    margin: 4em 0px;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-3 h3 {
    position: absolute;
    top: 20%;
    right: 50%;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-3 img {
    margin-left: 9em;
    width: 300px;
    height: 300px;
  }
  #all-wrap .single #items-wrap .use-item-wrap .img-box-3 p {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 40%;
  }
  #all-wrap .single #items-wrap .pickup-wrap {
    margin: 6em 0;
  }
  #all-wrap .single #items-wrap .pickup-wrap h2 {
    margin-bottom: 2em;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider img {
    width: 75%;
    /*スライダー内の画像を横幅100%に*/
    margin: auto;
    height: auto;
    border: #87BF49 4px solid;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-slide {
    margin: 0 10px;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-prev,
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-prev::before {
    color: #666;
    content: none;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-next::before {
    color: #666;
    content: none;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-dots {
    display: none;
  }
  #all-wrap .single #items-wrap .pickup-wrap .pickup-item-wrap .slider .slick-dots button {
    display: none;
  }
  #all-wrap .single #jca-wrap {
    padding: 3em 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 {
    margin-bottom: 5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 .img-wrap {
    margin-bottom: 3em;
    max-height: 300px;
    -webkit-box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
            box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 .img-wrap img {
    width: 100%;
    height: 300px;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 .jca-txt {
    margin-left: 1em;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 .jca-txt h3 {
    text-align: left;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-1 .jca-txt p {
    max-width: 650px;
    border-left: #87BF49 dotted 2px;
    padding: 0 2em;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 .img-wrap {
    margin-bottom: 3em;
    max-height: 300px;
    -webkit-box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
            box-shadow: 20px 20px 40px -5px rgba(0, 0, 0, 0.4784313725);
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 .img-wrap img {
    width: 100%;
    height: 300px;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 .jca-txt {
    margin-right: 1em;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 .jca-txt h3 {
    text-align: right;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-2 .jca-txt p {
    max-width: 650px;
    border-right: #87BF49 dotted 2px;
    padding: 0 2em;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-3 {
    position: relative;
    text-align: left;
    margin: 4em 0px;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-3 h3 {
    position: absolute;
    top: 20%;
    right: 50%;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-3 img {
    margin-left: 5em;
    width: 300px;
    height: 300px;
  }
  #all-wrap .single #jca-wrap .jca-info-wrap .img-box-3 p {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 40%;
  }
  #all-wrap .single #faq-wrap {
    padding: 3em 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #all-wrap .single #faq-wrap .jca-banner {
    width: 800px;
    height: 200px;
  }
  #all-wrap .single #faq-wrap .a-box {
    margin-top: 2em;
  }
  #all-wrap .single #faq-wrap .a-box a {
    margin-top: 2em;
    text-decoration: none;
    padding: 0.5em 2em;
    border: solid #333;
    background-color: transparent;
    text-align: center;
    color: #333;
  }
  #all-wrap .single form #contact-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #all-wrap .single form #contact-items label {
    width: 100%;
    min-height: auto;
  }
  #all-wrap .single form #contact-items input {
    width: 80px;
  }
}/*# sourceMappingURL=sp.css.map */