@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/**
 * name : style.css
 * discreption : panotuku
 * 
 */

 
/**
 * common
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0,0,0,0,0);
  color: #333;
}

body {
  min-width: 1100px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

h1, h2, h3, h4, h5 {
  margin: 0;
  vertical-align: top;
}

em, i {
  font-style: normal
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
  line-height: 1.75;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}

dl, dt, dd {margin: 0;}


/**
 * module
 */

/* only */
.pc_only {display: block !important;}
.sp_only {display: none !important;}
@media screen and (max-width: 767px) {
  .pc_only {display: none !important;}
  .sp_only {display: block !important;}
}

/* container */
.container {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
}

/* section */
.section {
  clear: both;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .section {padding-bottom: 40px;}
}

/* row */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}
@media screen and (max-width: 767px) {
  .row {
    flex-direction: column;
  }
}
  .row .column {
    padding-left: 24px;
    padding-right: 24px;
  }
  .row.row-2 .column {width: 50%;}
  .row.row-3 .column {width: 33.333%;}
  .row.row-4 .column {width: 25%;}
  @media screen and (max-width: 767px) {
    .row.row-2 .column, .row.row-3 .column, .row.row-4 .column {width: 100%;}
  }

/* heading */
h2.heading {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  h2.heading {
    font-size: 30px;
  }
}

/* heading_asset */
.heading_asset {
  position: relative;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .heading_asset {margin-top: 50px;}
}
  .heading_asset .heading_num {
    position: absolute;
    top: 0;
    left: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
  }

  /* heading_main */
  .heading_asset .heading_main {
    margin-left: 50px;
    padding-left: 50px;
    border-left: 1px solid #333;
  }
  @media screen and (max-width: 767px) {
    .heading_asset .heading_main {
      margin-left: 30px;
      padding-left: 15px;
    }
  }

  /* heading_title */
  .heading_asset .heading_title {
    font-size: 32px;
    line-height: 1.56;
  }
  @media screen and (max-width: 767px) {
    .heading_asset .heading_title {font-size: 26px;}
  }
  
  /* heading_text */
  .heading_asset .heading_text {
    padding-top: 20px;
    font-size: 18px;
  }
  @media screen and (max-width: 767px) {
    .heading_asset .heading_text {
      padding-top: 15px;
      font-size: 16px;
      line-height: 1.6;
    }
  }

  /* heading_en */
  .heading_asset .heading_en {
    position: absolute;
    top: 70px;
    left: 30px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #999999;
    transform-origin: 0 0;
    transform: rotate(90deg);
  }
  @media screen and (max-width: 767px) {
    .heading_asset .heading_en {
      left: 14px;
      font-size: 12px;
    }
  }

  /* - white */
  .heading_asset.white,
  .heading_asset.white .heading_en,
  .heading_asset.white .heading_main,
  .heading_asset.white .heading_title {
    color: #fff;
    border-color: #fff;
  }

/* bg_color */
.bg_gradBlue {
  background-color: #34a7df;
  background: -moz-linear-gradient(left, #34a7df 0%, #2395b5 50%, #38b8ad 100%);
  background: -webkit-linear-gradient(left, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
  background: linear-gradient(to right, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a7df', endColorstr='#38b8ad',GradientType=1 );
}

/* font */
.f_big {font-size: 25px; font-weight: bold;}
@media screen and (max-width: 767px) {
  .f_big {font-size: 22px;}
}
.f_bold {font-weight: bold;}

/* font_color */
.c_skyBlue {color: #56cdeb;}
.c_blue {color: #35b5ed;}
.c_black {color: #161c1f;}
.c_glay {color: #ededed;}

/* btn */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  display : -ms-inline-flexbox;
  justify-content: center;
  align-items: center;
  padding: 1.3rem .75rem;
  font-size: 1rem;
  /* min-height: 80px; */
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 150px;
  text-align: center;
  background-color: #fff;
  border: 5px solid #333;
  transition: 
    transform .35s ease-in-out, 
    box-shadow .35s ease-in-out,
    color .35s ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.btn > * {
  position: relative;
  z-index: 1;
  padding: 0 0.2em;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: rgba(255,255,255, .15);
  border-radius: 150px;
  opacity: 0;
  transition: all .25s ease-in-out;
}
.btn:hover::before {
  width: 100%;
  opacity: 1;
}
  /* btn - min */
  .btn.btn_min {
    min-height: 50px;
    padding: .875rem 15px;
    font-size: 16px;
  }
  /* btn - primary */
  .btn.btn_primary {
    width: 100%;
    min-width: 380px;
    max-width: 500px;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    border: none;
    background: #34a7df;
    background: -moz-linear-gradient(left, #34a7df 0%, #2395b5 50%, #38b8ad 100%);
    background: -webkit-linear-gradient(left, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
    background: linear-gradient(to right, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a7df', endColorstr='#38b8ad',GradientType=1 );
    -webkit-box-shadow: 0 3px 5px 1px rgba(0,0,0,.3);
    box-shadow: 0 3px 5px 1px rgba(0,0,0,.3);
  }
  @media screen and (max-width: 767px) {
    .btn.btn_primary {
      min-width: 0;
      max-width: 100%;
      font-size: 18px;
    }
  }
    .btn.btn_primary:hover {
      -webkit-transform: translateY(-3px);
      transform: translateY(-3px);
      -webkit-box-shadow: 0 5px 15px 2px rgba(0,0,0,.2);
      box-shadow: 0 5px 15px 5px rgba(0,0,0,.2);
    }
    @media screen and (max-width: 767px) {
      .btn.btn_primary i > img {width: 100px;}
    }
    
  /* btn - attention */
  .btn.btn_attention {
    border: 2px solid #ff0000;
    color: #ff0000;
    font-weight: bold
  }
  .btn.btn_attention > span {
    position: relative;
    font-size: 12px;
    padding-top: 4px;
    padding-bottom: 3px;
  }
  .btn.btn_attention > span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 95%;
    height: 1px;
    margin: auto;
    background: #ff0000;
  }
  .btn.btn_attention::before {background-color: #ff0000;}
  .btn.btn_attention:hover {color: #fff;}

/* converstion */
.converstion {
  position: relative;
  z-index: 5;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px 1px rgba(0,0,0,.10);
}
  /* container */
  .converstion .container {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
  }
  @media screen and (max-width: 767px) {
    .converstion .container {
      flex-direction: column;
      height: auto;
      padding: 30px 24px;
    }
  }
  /* converstion_text */
  .converstion .converstion_text {
    width: 520px;
    padding-right: 24px;
  }
  .converstion .converstion_text p {margin-top: 15px;}
  @media screen and (max-width: 767px) {
    .converstion .converstion_text {
      width: 100%;
      padding: 0;
    }
    .converstion .converstion_text p {display: none;}
  }
  /* converstion_btn */
  .converstion .converstion_btn {width: 500px;}
  @media screen and (max-width: 767px) {
    .converstion .converstion_btn {
      width: 100%;
      margin-top: 25px;
    }
  }
  /* converstion_contact */
  .converstion .converstion_contact {
    width: 180px;
    padding-left: 24px;
  }
  @media screen and (max-width: 767px) {
    .converstion .converstion_contact {
      width: 100%;
      margin-top: 10px;
      padding: 0;
      text-align: center;
    }
  }

/* card */
.card {
  margin-top: 40px;
  text-align: center;
}
  .card .card_img {}
  .card .card_title {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    height: 80px;
    font-size: 22px;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    .card .card_title {
      height: 70px;
      font-size: 19px;
    }
  }
  .card .card_text {}
  /* - white */
  .card.white {
    color: #fff;
  }

/* feature_slider */
.feature_slider {}
  /* - feature_item */
  .feature_slider .feature_item {
    width: 270px;
    height: 370px;
    padding: 50px 48px 15px;
    background-color: #161c1f;
    border-radius: 3px;
    color: #fff;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .feature_slider .feature_item {
      width: 180px;
      height: 280px;
      padding: 35px 30px 10px;
    }
  }
  .feature_slider .feature_item_img img {
    width: auto;
    height: 100px;
  }
  @media screen and (max-width: 767px) {
    .feature_slider .feature_item_img img {height: 50px;}
  }
  .feature_slider .feature_item_title {
    display: block;
    margin-top: 43px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {}
  .feature_slider .feature_item_text {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.8;
  }
  @media screen and (max-width: 767px) {}
  /* feature_controll */
  .feature_slider .feature_controll {
    padding-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .feature_slider .feature_controll {padding-top: 40px;}
  }
    .feature_slider .feature_controll_prev,
    .feature_slider .feature_controll_next {
      display: block;
      width: 27px;
      height: 24px;
      margin: 0 15px;
      cursor: pointer;
    }
    .feature_slider .feature_controll_page {
      width: 8em;
      max-width: 130px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
    }

/* link */
.link_under {
  text-decoration: underline;
}


/**
 * header
 */
#header {
  width: 100%;
  background-color: #fff;
}
  /* header_inner */
  #header .header_inner {
    position: relative;
    display: table;
    width: 100%;
    max-width: 1280px;
    height: 80px;
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    #header .header_inner {
      display: block;
      width: 100%;
      height: auto;
      padding: 15px;
    }
  }
  #header .header_inner > * {
    display: table-cell;
    table-layout: fixed;
    width: 50%;
    vertical-align: middle;
  }
  @media screen and (max-width: 767px) {
    #header .header_inner > * {
      display: block;
      width: 100%;
    }
  }
  /* header_logo */
  #header .header_logo {
    position: absolute;
    top: 15px;
    left: 50%;
    width: 220px;
    height: 80px;
    margin: 0 0 0 -110px;
    z-index: 99;
  }
  @media screen and (max-width: 767px) {
    #header .header_logo {
      position: static;
      width: 110px;
      height: 40px;
      margin: 0 auto;
    }
  }
  /* header_catch */
  #header .header_catch {
    padding-right: 150px;
    font-size: 12px;
    font-weight: normal;
  }
  @media screen and (max-width: 767px) {
    #header .header_catch {
      padding-right: 0;
      padding-top: 15px;
      line-height: 1.4;
    }
  }
  /* header_contact */
  #header .header_contact {
    text-align: right;
    padding-left: 150px;
  }
  @media screen and (max-width: 767px) {
    #header .header_contact {display: none;}
  }


/**
 * footer
 */
#footer {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
  #footer small {
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: #999;
    list-style: 1;
  }
  @media screen and (max-width: 767px) {
    #footer small {font-size: 11px;}
  }


/**
 * panotuku_viewer
 */
#panotuku_viewer {
  width: 100%;
  height: 450px;
  background:url(../images/_dummy.png) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {}


/**
 * about
 */
#about {
  height: 520px;
  background: url(../images/bg_catch.png) right center no-repeat #f5f5f2;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  #about {
    height: auto;
    padding-top: 30px;
    padding-bottom: 200px;
    background-size: 600px auto;
    background-position: right bottom;
  }
}
  /* about_column */
  #about .about_column {
    position: absolute;
    z-index: 5;
    top: -25px;
    width: 580px;
    height: 570px;
    padding: 0 40px;
    background-color: #fff;
  }
  @media screen and (max-width: 767px) {
    #about .about_column {
      position: static;
      width: 100%;
      height: auto;
      padding: 0 20px 24px;
    }
  }
  /* heading */
  #about .heading {
    position: relative;
    padding-top: 39px;
  }
  #about .heading::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 2.6em;
    height: 15px;
    background: #35b5ed;
  }
  @media screen and (max-width: 767px) {
    #about .heading {
      font-size: 25px;
    }
  }
  /* about_text */
  #about .about_text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
  }
  @media screen and (max-width: 767px) {
    #about .about_text {
      margin-top: 20px;
      font-size: 15px;
      line-height: 1.65;
    }
  }
  /* btn_primary */
  #about .btn_primary {margin-top: 42px;}
  @media screen and (max-width: 767px) {
    #about .btn_primary {margin-top: 25px;}
  }


/**
 * whats
 */
#whats {
  padding-top: 25px;
  background: url(../images/bg_whats.png) 0 0 no-repeat;
  background-size: cover;
}


/**
 * feature
 */
#feature {
  padding-top: 1px;
  background: url(../images/bg_feature.png) center no-repeat;
  background-size: cover;
}
  /* feature_link */
  #feature .feature_link {
    position: absolute;
    top: 80px;
    right: 24px;
  }
  @media screen and (max-width: 767px) {
    #feature .feature_link {
      position: static;
      margin-top: 20px;
    }
  }
  /* slider */
  #feature .feature_slider {margin-top: 80px;}
  @media screen and (max-width: 767px) {
    #feature .feature_slider {margin-top: 60px;}
  }


/**
 * scene
 */
#scene {
  position: relative;
  padding-top: 20px;
  background: url(../images/bg_scene.png) 0 0 no-repeat;
  background-size: cover;
}
#scene::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
}
#scene .container::after{
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  #scene {background-position: right center;}
  #scene::before {
    content: none;
    display: none;
  }
}
  /* scene_column */
  .scene_column {
    position: relative;
    width: 50%;
    max-width: 540px;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-top: 60px;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .scene_column {
      width: 100%;
      max-width: 100%;
      margin-top: 40px;
      margin-bottom: 10px;
      padding-top: 40px;
    }
  }
  .scene_column::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 10px;
    background-color: #fff;
  }
  
  /* scene_title */
  .scene_column .scene_title {
    margin-top: -17px;
    padding-left: 24px;
    padding-right: 24px;
  }
    .scene_column h3 {
      padding-top: 33px;
      font-size: 22px;
      line-height: 1.45;
    }
    /* scene_num */
    .scene_column .scene_num {
      display: inline-block;
      position: relative;
      margin-left: 10px;
      padding: 10px 20px;
      font-size: 14px;
      line-height: 1;
      background: #34a7df;
      background: -moz-linear-gradient(left, #34a7df 0%, #2395b5 50%, #38b8ad 100%);
      background: -webkit-linear-gradient(left, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
      background: linear-gradient(to right, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a7df', endColorstr='#38b8ad',GradientType=1 );
      -webkit-transform: skewX(-25deg);
      transform: skewX(-25deg);
    }
    .scene_column .scene_num span {
      display: block;
      -webkit-transform: skewX(25deg);
      transform: skewX(25deg);
    }
  /* scene_text */
  .scene_column .scene_text {
    margin-top: 23px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
    line-height: 1.8;
  }

  /* heading_asset */
  #scene .heading_asset {
    float: left;
    margin-bottom: 80px;
  }
  @media screen and (max-width: 767px) {
    #scene .heading_asset {
      float: none;
      margin-top: 40px;
      margin-bottom: 0;
    }
  }
  /* .scene_column_01 */
  #scene .scene_column_01 {float: right; padding-left: 70px;}
  /* .scene_column_02 */
  #scene .scene_column_02 {float: left; padding-right: 70px;}
  /* .scene_column_03 */
  #scene .scene_column_03 {float: right; padding-left: 70px;}
    @media screen and (max-width: 767px) {
      #scene .scene_column_01,
      #scene .scene_column_02,
      #scene .scene_column_03 {
        float: none;
        padding-left: 0;
        padding-right: 0;
      }
    }
  /* scene_converstion */
  #scene .scene_converstion {
    position: absolute;
    bottom: -25px;
    left: 24px;
    bottom: -165px;
    display: block;
    min-width: 470px;
    max-width: 540px;
    height: 400px;
    padding: 0 30px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .15);
  }
  @media screen and (max-width: 767px) {
    #scene .scene_converstion {display: none;}
  }
    #scene .scene_converstion .converstion_text {padding-top: 65px;}
    #scene .scene_converstion .converstion_text p {padding-top: 20px;}
    #scene .scene_converstion .converstion_btn {padding-top: 47px;}
    #scene .scene_converstion .converstion_contact {
      padding-top: 25px;
      text-align: center;
      font-size: 16px;
    }


/**
 * price
 */
#price {padding-top: 140px;}
@media screen and (max-width: 767px) {
  #price {padding-top: 0px;}
}
#price .container {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #price .container {
    display: block;
  }
}
/* price_box */
#price .price_box {
  display: flex;
  display: -ms-flexbox;
  width: 620px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  #price .price_box {
    flex-wrap: wrap;
    width: 100%;
    border: none;
  }
}
  #price .price_box .price_name {height: 90px;}
  #price .price_box .price_label,
  #price .price_box .price_plan {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    border-left: 1px solid #ccc;
  }
  @media screen and (max-width: 767px) {}
  #price .price_box .price_label > *,
  #price .price_box .price_plan > * {
    width: 100%;
    max-width:100%;
    height: 70px;
    padding: 10px 15px;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ccc;
  }
  @media screen and (max-width: 767px) {
    #price .price_box .price_label > *,
    #price .price_box .price_plan > * {
      padding: 10px 15px;
    }
  }
  #price .price_box .price_plan > *.double {height: 140px;}
  /* price_label */
  #price .price_box .price_label {
    margin-top: 90px;
    width: 170px;
    float: left;
  }
  @media screen and (max-width: 767px) {
    #price .price_box .price_label {
      width: 35%;
      margin-top: 130px;
      font-size: 13px;
      border-bottom: 1px solid #ccc;
    }
  }
  #price .price_box .price_label > * {align-items: flex-start;}
  /* price_plan */
  #price .price_box .price_plan {width: 230px;}
  @media screen and (max-width: 767px) {
    #price .price_box .price_plan {
      width: 65%;
      margin-top: 40px;
      border-right: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }
  }
    /* plan_price */
    #price .price_box .plan_price {
      font-size: 30px;
      font-weight: bold;
      letter-spacing: 0.02em;
    }
    #price .price_box .plan_price span {
      font-size: 18px;
      vertical-align: middle; 
      padding-left: 5px;
    }
    @media screen and (max-width: 767px) {
      #price .price_box .plan_price {font-size: 25px;}
      #price .price_box .plan_price span {font-size: 16px;}
    }
    /* plan_attention */
    #price .price_box .plan_attention {
      max-width:100%;
      position: relative;
      margin-top: .75em;
      padding-left: 1.25em;
      line-height: 1.2;
      color: #ff0000;
      font-size: 12px;
      text-align: left;
    }
    @media screen and (max-width: 767px) {
      #price .price_box .plan_attention {font-size: 11px;}
    }
    #price .price_box .plan_attention::before {
      content: "※";
      display: inline;
      position: absolute;
      top: 0;
      left: 0;
    }
    /* plan_name */
    #price .price_box .plan_name {height: 90px;}
    #price .price_box .plan_name > * {
      display: block;
      text-align: center;
    }
      #price .price_box .plan_name em {
        font-size: 22px;
        font-weight: bold;
      }
      #price .price_box .plan_name span {
        font-size: 13px;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 1em;
      }
      @media screen and (max-width: 767px) {
        #price .price_box .plan_name em {font-size: 19px;}
        #price .price_box .plan_name span {font-size: 12px;}
      }
  /* price standard */
  #price .price_box .price_plan.standard {
    color: #fff;
    border-color: #006794;
    background: #34a7df;
    background: -moz-linear-gradient(left, #34a7df 0%, #2395b5 50%, #38b8ad 100%);
    background: -webkit-linear-gradient(left, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
    background: linear-gradient(to right, #34a7df 0%,#2395b5 50%,#38b8ad 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34a7df', endColorstr='#38b8ad',GradientType=1 );
  }
  @media screen and (max-width: 767px) {
    #price .price_box .price_plan.standard {
      border-right: 1px solid #006794;
      border-bottom: 1px solid #006794;
    }
  }
  #price .price_box .price_plan.standard > * {
    border-color: #006794;
  }
