@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  font-size: 100%;
}

body {
  font-family: "Avenir LT W01 45 Book", Avenir, Helvetica, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1em;
  color: #333333;
  background-color: #FFFFFF;
}

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

h2 {
  font-size: 1.75rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
}

p {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.625rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  p {
    font-size: 1rem;
  }
}
img,
picture {
  margin: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all .1s linear;
}
a:active, a:focus, a:hover {
  color: #F05A24;
}
a:active, a:focus {
  outline: none;
}

input[type=text],
input[type="button"],
input[type="submit"] {
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border: none;
}

/* ==========================================================================

Common

========================================================================== */
/* Section BackGround ============================================== */
.bg-grn {
  width: 100%;
  color: #FFFFFF;
  background-color: #73C017;
}

.bg-gry {
  width: 100%;
  background-color: #F1F1F1;
}

.bg-dgry {
  width: 100%;
  color: #FFFFFF;
  background-color: #B2B2B2;
}

/* Content Wrapper ============================================== */
.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 80px 40px 0;
  }
}

.wrapper h2 {
  margin-bottom: 30px;
  text-align: center;
}
.wrapper h2.second {
  margin-top: 80px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .wrapper h2 {
    margin-bottom: 80px;
  }
  .wrapper h2 {
    margin-bottom: 80px;
  }
  .wrapper h2.mb40 {
    margin-bottom: 40px;
  }
}

/* Button ============================================== */
.btn-newaccount {
  width: 100%;
  margin: 0 auto;
  padding: 18px 0 17px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  background-color: #F05A24;
  display: block;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
.btn-newaccount span {
  margin-left: 8px;
  font-size: 1.25rem;
}
.btn-newaccount:hover {
  color: #FFFFFF;
  background-color: #f37e54;
}
@media (min-width: 768px) {
  .btn-newaccount {
    width: 320px;
  }
}

#start .btn-newaccount {
  padding: 20px 0 17px;
  color: #73C017;
  background-color: #FFFF00;
}
#start .btn-newaccount:hover {
  background-color: #ffff99;
}
#start .btn-newaccount__white {
  color: #73C017;
  background-color: #FFFFFF;
}
#start .btn-newaccount__white:hover {
  background-color: #FFFF00;
}

/* ==========================================================================

Barger Icon

========================================================================== */
/*
* burger menu
*/
.burger-menu {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.burger-menu:after, .burger-menu:before {
  content: "";
}
.burger-menu span, .burger-menu::after, .burger-menu::before {
  backface-visibility: hidden;
  position: absolute;
  left: 8px;
  right: 8px;
  border-top: 4px solid #FFFFFF;
  transition: .2s;
  border-radius: 7px;
}
.burger-menu::before {
  top: 0;
}
.burger-menu span {
  top: 11px;
}
.burger-menu::after {
  top: 22px;
}
.burger-menu.active::before, .burger-menu.active::after {
  top: 12px;
  backface-visibility: hidden;
  transition: .3s;
}
.burger-menu.active::before {
  transform: rotate(45deg);
}
.burger-menu.active span {
  opacity: 0;
}
.burger-menu.active::after {
  transform: rotate(-45deg);
}

/* ==========================================================================

Top Bar

========================================================================== */
.top-bar {
  background-color: #2A3F54;
}

.top-bar__nav-wrapper {
  width: 100%;
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #8FCD45;
  display: none;
  z-index: 10000;
}
@media (min-width: 1201px) {
  .top-bar__nav-wrapper {
    position: static;
    background-color: #F1F1F1;
    display: block;
  }
}

.top-bar__head,
.top-bar__nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .top-bar__head,
  .top-bar__nav {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
    
.top-bar__head h1.site-name {
    line-height: 1 !important;
    font-size: 1.75rem !important;
}

}
.site-name {
  padding: 14px 0;
}
.site-name img {
  width: 115px;
  height: auto;
}
.site-name span {
  margin-left: 30px;
  font-size: 0.875rem;
  line-height: 26px;
  color: #FFFFFF;
  display: none;
}
@media (min-width: 1201px) {
  .site-name span {
    display: inline;
  }
}
@media (min-width: 1201px) {
  .site-name {
    padding: 24px 0;
  }
  .site-name img {
    width: 170px;
  }
}

.burger {
  position: absolute;
  top: 11px;
  right: 10px;
}
@media (min-width: 1201px) {
  .burger {
    display: none;
  }
}

.top-bar__nav {
  padding-bottom: 26px;
}
@media (min-width: 1201px) {
  .top-bar__nav {
    height: 48px;
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .top-bar__nav .top-bar__nav-accout {
    margin-left: auto;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .top-bar__nav-list li a {
    vertical-align: -5px;
  }

  /* IE11 */
}
.top-bar__nav-list,
.top-bar__nav-accout {
  margin: 0 -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar__nav-list li,
.top-bar__nav-accout li {
  width: 50%;
  margin-top: 30px;
  padding: 0 10px;
  font-size: 0.9375rem;
}
.top-bar__nav-list a,
.top-bar__nav-accout a {
  color: #FFFFFF;
}
@media (min-width: 1201px) {
  .top-bar__nav-list,
  .top-bar__nav-accout {
    margin: 0 0 0 -40px;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .top-bar__nav-list li,
  .top-bar__nav-accout li {
    width: auto;
    margin-top: 0;
    margin-left: 40px;
    padding: 0;
  }
  .top-bar__nav-list a,
  .top-bar__nav-accout a {
    color: #333333;
  }
  .top-bar__nav-list a:hover,
  .top-bar__nav-accout a:hover {
    color: #F05A24;
  }
}

.top-bar__nav-accout li {
  font-size: 0.8125rem;
  font-weight: 700;
}
.top-bar__nav-accout li a {
  width: 100%;
  padding: 6px 0 4px;
  display: block;
  text-align: center;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
@media (min-width: 1201px) {
  .top-bar__nav-accout li {
    margin-left: 20px;
  }
  .top-bar__nav-accout li a {
    width: 160px;
  }
}

.btn-login a {
  color: #73C017;
  background-color: #FFFFFF;
  border: 2px solid #73C017;
}
.btn-login a:hover {
  background-color: #FFFF00;
  color: #73C017;
}

.btn-account a {
  color: #FFFFFF;
  background-color: #F05A24;
  border: 2px solid #F05A24;
}
.btn-account a:hover {
  color: #FFFFFF;
  background-color: #f37e54;
  border-color: #f37e54;
}
.introduction p, .introduction-r p {
    font-weight: 700;
}
.introduction.black {
    color: #333;
}
.introduction.black h2 {
    color: #333;
}

/* ==========================================================================

HERO

========================================================================== */
#hero {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  #hero {
    height: 500px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    background-color: #73C017;
  }
}

@media (min-width: 768px) {
  .hero-image {
    background-image: url("../images/shift-hero-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-ctm {
    background-image: url("../images/ctm-hero-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-sft {
    background-image: url("../images/shift-hero-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-cus {
    background-image: url("../images/custom.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type0 {
    background-image: url("../images/type0.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type1 {
    background-image: url("../images/type1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type2 {
    background-image: url("../images/type2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type3 {
    background-image: url("../images/type3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type4 {
    background-image: url("../images/type4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type5 {
    background-image: url("../images/type5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-image-type6 {
    background-image: url("../images/type6.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
    .hero-top-image {
        background-image: url("../images/large.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height:620px;
    }
    .hero-top-image1 {
        background-image: url("../images/large1.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height:620px;
    }
    .hero-top-image2 {
        background-image: url("../images/large2.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height:620px;
    }
    .hero-top-image3 {
        background-image: url("../images/large3.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height:620px;
    }
    .introduction{
      padding-top: 10%;
      padding-left: 45%;
      text-align: center;
    }
    .introduction-r{
      padding-top: 10%;
      padding-left: 10%;
      margin-right: 45%;
      text-align: center;
    }
  
}

.introduction h2, .introduction-r h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/shift-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-ctm h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/ctm-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-cus h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/custom.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-sft h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/shift-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type0 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type0.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type1 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type2 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type3 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type4 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type5 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction-type6 h2 {
  padding: 70px 0;
  color: #FFFFFF;
  background-image: url("../images/type6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.introduction p, .introduction-r p {
  margin: 30px 0 30px;
}
.introduction .introduction-txt, .introduction-r .introduction-txt {
  padding: 0 20px 60px;
}
.introduction-ctm p {
  margin: 30px 0 30px;
}
.introduction-ctm .introduction-txt {
  padding: 0 20px 60px;
}
.introduction-sft p {
  margin: 30px 0 30px;
}
.introduction-sft .introduction-txt {
  padding: 0 20px 60px;
}
.introduction-type p {
  margin: 30px 0 30px;
}
.introduction-type .introduction-txt {
  padding: 0 20px 60px;
}
@media (min-width: 768px) {
  .introduction, .introduction-r {
    color: #FFFFFF;
  }
  .introduction-ctm {
    color: #FFFFFF;
  }
  .introduction-cus {
    color: #FFFFFF;
  }
  .introduction-sft {
    color: #FFFFFF;
  }
  .introduction-type0 {
    color: #FFFFFF;
  }
  .introduction-type1 {
    color: #FFFFFF;
  }
  .introduction-type2 {
    color: #FFFFFF;
  }
  .introduction-type3 {
    color: #FFFFFF;
  }
  .introduction-type4 {
    color: #FFFFFF;
  }
  .introduction-type5 {
    color: #FFFFFF;
  }
  .introduction-type6 {
    color: #FFFFFF;
  }
  .introduction h2, .introduction-r h2 {
    padding: 0;
    background: none;
  }
  .introduction-ctm h2 {
    padding: 0;
    background: none;
  }
  .introduction-cus h2 {
    padding: 0;
    background: none;
  }
  .introduction-sft h2 {
    padding: 0;
    background: none;
  }
  .introduction-type0 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type1 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type2 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type3 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type4 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type5 h2 {
    padding: 0;
    background: none;
  }
  .introduction-type6 h2 {
    padding: 0;
    background: none;
  }
  .introduction p, .introduction-r p {
    margin: 25px 0 40px;
  }
  .introduction .introduction-txt, .introduction-r .introduction-txt {
    padding: 0;
  }
  .introduction-ctm p {
    margin: 25px 0 40px;
  }
  .introduction-ctm .introduction-txt {
    padding: 0;
  }
  .introduction-sft .introduction-txt {
    padding: 0;
  }
  .introduction-type0 .introduction-txt {
    padding: 0;
  }
  .introduction-type1 .introduction-txt {
    padding: 0;
  }
  .introduction-type2 .introduction-txt {
    padding: 0;
  }
  .introduction-type3 .introduction-txt {
    padding: 0;
  }
  .introduction-type4 .introduction-txt {
    padding: 0;
  }
  .introduction-type5 .introduction-txt {
    padding: 0;
  }
  .introduction-type6 .introduction-txt {
    padding: 0;
  }
  

}

@media (max-width: 768px) {
    .hero-top-image {
        background-image: url("../images/medium.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .hero-top-image1 {
        background-image: url("../images/medium1.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .hero-top-image2 {
        background-image: url("../images/medium2.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .hero-top-image3 {
        background-image: url("../images/medium3.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .introduction, .introduction-r{
        color: #fff;
    }
    .introduction, .introduction-r{
        color: #fff;
        text-align: center;
    }
    .introduction h2, .introduction-r h2 {
        background: none;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-top-image {
        background-image: url("../images/small.jpg");
        background-repeat-x: no-repeat;
        background-size: cover;
        background-position: center;
        height: 500px;
    }
    .hero-top-image1 {
        background-image: url("../images/small1.jpg");
        background-repeat-x: no-repeat;
        background-size: cover;
        background-position: center;
        height: 500px;
    }
    .hero-top-image2 {
        background-image: url("../images/small2.jpg");
        background-repeat-x: no-repeat;
        background-size: cover;
        background-position: center;
        height: 500px;
    }
    .hero-top-image3 {
        background-image: url("../images/small3.jpg");
        background-repeat-x: no-repeat;
        background-size: cover;
        background-position: center;
        height: 500px;
    }
    .introduction, .introduction-r{
        color: #fff;
        text-align: center;
    }
    .introduction h2, .introduction-r h2 {
        background: none;
        text-align: center;
    }
}



/* ==========================================================================

News

========================================================================== */
#news {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#news h2 {
  margin-bottom: 20px;
  font-size: 1.4375rem;
  text-align: left;
  line-height: 1;
}
#news .news-list,
#news .facebook-mod {
  width: 100%;
}
#news a {
  color: #73C017;
}
#news a:hover {
  color: #F05A24;
}
@media (min-width: 768px) {
  #news .news-list,
  #news .facebook-mod {
    width: 50%;
  }
  #news .news-list {
    padding: 0 20px 0 0;
  }
  #news .facebook-mod {
    padding: 0 0 0 20px;
  }
  #news h2 {
    margin-bottom: 40px;
    font-size: 1.4375rem;
  }
}

.news-article {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-article .news-article__date,
.news-article .news-article__title {
  width: 100%;
}
@media (min-width: 768px) {
  .news-article {
    margin-bottom: 32px;
  }
  .news-article .news-article__date {
    width: 120px;
  }
  .news-article .news-article__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.news-article__date,
.news-article__title,
.news-list__more {
  font-size: 0.75rem;
  line-height: 1.5;
}
.news-article__date h3,
.news-article__title h3,
.news-list__more h3 {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .news-article__date,
  .news-article__title,
  .news-list__more {
    font-size: 1rem;
  }
  .news-article__date h3,
  .news-article__title h3,
  .news-list__more h3 {
    font-size: 1rem;
  }
}

.news-article__date {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .news-article__date {
    margin-bottom: 0;
  }
}

.news-list__more {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .news-list__more {
    margin-bottom: 0;
    text-align: center;
  }
}

/* ==========================================================================

User

========================================================================== */
#user {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #user {
    padding-bottom: 20px;
  }
}

.user-list {
  margin: 0 -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.user-list .user-list__user {
  width: 100%;
  padding: 0 10px;
  text-align: right;
}
.user-list p {
  font-size: 0.75rem;
}
.user-list small {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .user-list {
    margin: 0 -20px;
  }
  .user-list .user-list__user {
    width: 33.33333%;
    padding: 0 20px 60px;
  }
  .user-list p {
    font-size: 1rem;
  }
  .user-list small {
    font-size: 0.875rem;
  }
}

.user-comment {
  width: 100%;
  height: 300px;
  margin: 20px 0 0px;
  padding: 10px 16px 13px;
  text-align: left;
  background: #F1F1F1;
  position: relative;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  line-height: 140%;
}
.user-comment p {
    height: 220px;
    overflow: hidden;
}
.user-comment:before {
  content: '';
  position: absolute;
  border: 1px solid #F1F1F1;
  border-color: #F1F1F1 transparent;
  border-width: 0 10px 20px 10px;
  top: -15px;
  left: 46%;
}
/*.user-comment:after {
  content: '詳しく見る';
  position: absolute;
 border: 1px solid #333;
  border-color: #333 transparent;
  border-width: 20px 10px 0 10px;
  top: 275px;
  right: 15px;
}*/
.user-comment-more {
  display: none;
}
.sample_modal img {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.sample_modal h3 {
    padding: 25px;
    font-weight: 700;
}
@media (min-width: 768px) {
  .user-comment {
    margin: 30px 0 0px;
    padding: 15px 24px 20px;
  }
  .user-comment:before {
    top: -20px;
  }
}
@media (max-width: 767px) {
    .user-comment p {
        overflow: auto;
    }
}
    .user-comment-more {
      display: block;
      width: 50%;
      height: 30px;
      margin: 0 auto;
      text-align: center;
      vertical-align: middle;
      background: #F1F1F1;
      border-radius: 0 0 4px 4px;
      padding: 5px;
    }
    .user-comment-more a {
        cursor: pointer;
    }

/* ==========================================================================

Footer

========================================================================== */
.bg-footer {
  background-color: #4D4D4D;
}

.copyright {
  padding: 20px 0;
  text-align: center;
  color: #FFFFFF;
  background-color: #333333;
}
.copyright small {
  font-size: 0.75rem;
}

.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  color: #FFFFFF;
}
.site-footer a {
  color: #FFFFFF;
}
.site-footer a:hover {
  color: #F05A24;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 0 40px;
  }
}

.site-footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.site-footer__content h2 {
  width: 100%;
  margin: 60px 0 30px;
}
.site-footer__content h2 img {
  width: 140px;
}
.site-footer__content div {
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer__content {
    margin: 0 -20px;
  }
  .site-footer__content h2 {
    padding: 0 20px;
  }
  .site-footer__content div {
    width: 25%;
    padding: 0 20px;
  }
}

/* Footer List ====================================================================== */
.site-footer__content .employment-banner {
  width: 160px;
  margin-bottom: 40px;
}
.site-footer__content h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
}
.site-footer__content ul {
  margin-bottom: 40px;
}
.site-footer__content ul li {
  margin-bottom: 10px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .site-footer__content .employment-banner {
    margin-bottom: 60px;
  }
  .site-footer__content ul {
    margin-bottom: 60px;
  }
}

/* Footer SNS ====================================================================== */
.site-footer__sns {
  font-size: 0;
}
.site-footer__sns li {
  margin-right: 20px;
  display: inline-block;
}

.icon-fb,
.icon-tw {
  width: 46px;
  height: 46px;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
}

.icon-fb {
  padding-top: 10px;
  font-size: 1.625rem;
  background-color: #3B5998;
}
.icon-fb:hover {
  color: #3B5998 !important;
  background-color: #FFFFFF;
}

.icon-tw {
  padding-top: 8px;
  font-size: 2rem;
  background-color: #1DA1F2;
}
.icon-tw:hover {
  color: #1DA1F2 !important;
  background-color: #FFFFFF;
}

/* ==========================================================================

About

========================================================================== */
.bg-about .wrapper {
  padding: 0;
}
@media (min-width: 768px) {
  .bg-about {
    background-image: url("../images/sample-item-photo-03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-about .wrapper {
    padding: 0 40px;
  }
}

#about h2 {
  padding: 70px 20px;
  background-image: url("../images/sample-item-photo-03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#about .about-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
#about .about-list section {
  width: 100%;
  margin-bottom: 50px;
  padding: 0 20px;
}
#about .about-list {
  text-align: center;
}
#about .about-list h3 {
  margin-bottom: 20px;
  line-height: 1.3;
}
#about .about-list p {
  margin-bottom: 20px;
  line-height: 1.5;
}
#about .about-list .about-more {
  font-size: 0.875rem;
  color: #73C017;
}
#about .about-list .about-more span {
  margin-left: 8px;
  vertical-align: 1px;
}
#about .about-list .about-more:hover {
  color: #F05A24;
}
@media (min-width: 768px) {
  #about h2 {
    padding: 80px 0 0;
    background: none;
  }
  #about .about-list {
    margin: 0 -20px;
  }
  #about .about-list section {
    width: 50%;
    margin-bottom: 0;
    padding: 0 20px 60px;
  }
  #about .about-list h3,
  #about .about-list p {
    max-width: 380px;
    margin: 0 auto;
  }
  #about .about-list h3 {
    margin-bottom: 20px;
  }
  #about .about-list p {
    margin-bottom: 30px;
  }
  #about .about-list .about-more {
    font-size: 1rem;
  }
}

#about-kokyaku .about-list {
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#about-kokyaku .about-list__item {
  margin-bottom: 50px;
  text-align: center;
}
#about-kokyaku .about-list__item h2 {
  margin: 20px 0 10px;
  line-height: 1.25;
}
#about-kokyaku .about-list__item img {
  width: 120px;
  height: auto;
}
#about-kokyaku .about-list__item p {
  text-align: left;
}
@media (min-width: 768px) {
  #about-kokyaku .about-list {
    margin: 0 -20px;
    padding-bottom: 60px;
  }
  #about-kokyaku .about-list__item {
    width: 33.33333%;
    margin-bottom: 0;
    padding: 0 20px;
  }
}
@media (min-width: 1201px) {
  #about-kokyaku .about-list {
    padding-bottom: 80px;
  }
  #about-kokyaku .about-list__item h3 {
    margin: 40px 0 20px;
  }
}

/* ==========================================================================

STEP

========================================================================== */
#step {
  max-width: 100%;
}
#step h2 {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  #step h2 {
    margin-bottom: 40px;
  }
}

.step-list {
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .step-list {
    margin-bottom: 40px;
  }
}

.step-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.step-nav li {
  margin: 0 5px;
}
.step-nav li a {
  width: 80px;
  padding: 12px 0 10px;
  font-size: 1rem;
  text-align: center;
  background-color: #F1F1F1;
  display: block;
}
.step-nav li a:hover {
  color: #73C017;
  background-color: #FFFF00;
}
.step-nav .current a {
  color: #73C017;
  background-color: #FFFF00;
}
@media (min-width: 768px) {
  .step-nav li {
    margin: 0 10px;
  }
  .step-nav li a {
    width: 120px;
    padding: 12px 0 10px;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .step-content__step {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1201px) {
  .step-content__step {
    display: inline;
  }
}

.step-content__step-hide {
  display: none;
}

@media (min-width: 768px) {
  .step-content__text-outer {
    width: 50%;
    padding-right: 20px;
  }
}
@media (min-width: 1201px) {
  .step-content__text-outer {
    max-width: 1200px;
    width: auto;
    margin: 0 auto;
    position: relative;
  }
}

.step-content__text h3 {
  text-align: center;
}
.step-content__text p {
  margin-top: 20px;
}
.step-content__text .btn-newaccount {
  margin: 24px 0 24px;
}
@media (min-width: 768px) {
  .step-content__text h3 {
    text-align: left;
  }
  .step-content__text p {
    margin-top: 32px;
  }
  .step-content__text .btn-newaccount {
    margin: 60px 0;
  }
}
@media (min-width: 1201px) {
  .step-content__text {
    width: 50%;
    padding-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .step-content__img {
    width: 50%;
    padding-left: 20px;
  }
}
@media (min-width: 1201px) {
  .step-content__img {
    width: 50%;
    margin-left: 50%;
    padding-left: 20px;
  }
}

/* ==========================================================================

Detail

========================================================================== */
#detail {
  max-width: 100%;
}
#detail h1 {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  #detail h1 {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .detail-content__detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1201px) {
  .detail-content__detail {
    display: inline;
  }
}

@media (min-width: 768px) {
  .detail-content__text-outer {
    width: 50%;
    padding-right: 20px;
  }
}
@media (min-width: 1201px) {
  .detail-content__text-outer {
    max-width: 1200px;
    width: auto;
    margin: 0 auto;
    position: relative;
  }
}

.detail-content__text {
  margin-bottom: 30px;
}
.detail-content__text h2 {
  text-align: center;
}
.detail-content__text p {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .detail-content__text h2 {
    text-align: left;
  }
  .detail-content__text p {
    margin-top: 32px;
  }
}
@media (min-width: 1201px) {
  .detail-content__text {
    width: 50%;
    padding-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .detail-content__img {
    width: 50%;
    padding-left: 20px;
  }
}
@media (min-width: 1201px) {
  .detail-content__img {
    width: 50%;
    margin-left: 50%;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .detail-content__reverse .detail-content__rev-img {
    width: 50%;
    padding-right: 20px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 768px) {
  .detail-content__reverse .detail-content__rev-text-outer {
    width: 50%;
    max-width: 620px;
    padding-left: 20px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (min-width: 1201px) {
  .detail-content__reverse .detail-content__text {
    width: 100%;
    position: static;
  }
}
@media (min-width: 768px) {
  .detail-content__reverse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/* ==========================================================================

Theme

========================================================================== */
#theme h2 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #theme h2 {
    margin-bottom: 80px;
  }
  #theme_custom h2 {
    margin-bottom: 30px;
  }
}

.theme-list {
  margin: 0 -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.theme-list section {
  width: 100%;
  padding: 20px;
  background-color: #F1F1F1;
}
@media (min-width: 768px) {
  .theme-list section {
    width: 33.33333%;
    width: 25%;
    padding: 0 20px 80px;
    background-color: transparent;
  }
}

.theme-list {
  text-align: center;
}
.theme-list h3 {
  color: #73C017;
  width: 100%;
}
.theme-list img {
  margin: 17px 0;
}
.theme-list p {
  margin-bottom: 15px;
}
.theme-list .theme-more {
  font-size: 0.875rem;
  color: #73C017;
}
.theme-list .theme-more:hover {
  color: #F05A24;
}
@media (min-width: 768px) {
  .theme-list img {
    margin: 30px 0;
  }
  .theme-list p {
    margin-bottom: 30px;
  }
  .theme-list .theme-more {
    font-size: 1rem;
  }
}

/* ==========================================================================

Plan

========================================================================== */
@media (min-width: 768px) {
  .bg-plan {
    background-color: #F1F1F1;
  }
}

.plan-footer {
  padding: 24px 0 0;
  text-align: center;
}
.plan-footer .btn-newaccount {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .plan-footer {
    padding: 40px 0 80px;
  }
  .plan-footer .btn-newaccount {
    margin-top: 60px;
  }
}

.plan-footer__more {
  font-size: 0.875rem;
  color: #73C017;
}
.plan-footer__more span {
  margin-left: 8px;
  font-size: 1.25rem;
  vertical-align: -1px;
}
@media (min-width: 768px) {
  .plan-footer__more {
    font-size: 1rem;
  }
  .plan-footer__more span {
    font-size: 1.125rem;
  }
}

/* Table =============================================================== */
.plan-table {
  display: none;
}
@media (min-width: 768px) {
  .plan-table {
    display: block;
  }
}

@media (min-width: 768px) {
  .plan-table__mob {
    display: none;
  }
}

.plan-table {
  border-top: 1px solid #989898;
  border-left: 1px solid #989898;
}

.plan-table th,
.plan-table td,
.plan-table__mob th,
.plan-table__mob td {
  padding: 14px 12px 12px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #989898;
  border-right: 1px solid #989898;
}
.plan-table th,
.plan-table__mob th {
  background-color: #F1F1F1;
}
.plan-table td,
.plan-table__mob td {
  width: 16.6666%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .plan-table th,
  .plan-table td,
  .plan-table__mob th,
  .plan-table__mob td {
    padding: 22px 20px 20px;
  }
  .plan-table th,
  .plan-table__mob th {
    width: 22%;
  }
  .plan-table td,
  .plan-table__mob td {
    width: 13%;
  }
}

.plan-table__free {
  color: #FFFFFF;
  background-color: #F05A24 !important;
}

.plan-table__sm {
  color: #FFFFFF;
  background-color: #41b8a4 !important;
}
.plan-table__biz {
  color: #FFFFFF;
  background-color: #73C017 !important;
}


.plan-table__cus {
  color: #FFFFFF;
  background-color: #1996E4 !important;
}

/* PC Table Font ========================================================================== */
.plan-table th {
  font-size: 1rem;
}
.plan-table td {
  font-size: 1.125rem;
}
.plan-table .plan-table__plan th {
  font-size: 1.2375rem;
}
.plan-table .plan-table__plan td {
  font-weight: 700;
}
.plan-table .plan-table__price td {
  font-size: 1rem;
}
.plan-table .plan-table__price td b {
  font-size: 1.475rem;
  font-weight: 700;
}
.plan-table .plan-table__price .plan-table__price-biz b {
  font-size: 1.2rem;
  line-height: 1.5;
}
.plan-table .plan-table__price .plan-table__price-biz span {
  font-size: 1.25rem;
  color: #33ABDF;
}
.plan-table .plan-table__txt td {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
	.free_v2 {
		background: #f7fcfe !important;
		color: #555 !important;
	}
	.entry_v2 {
		background: #a0d8ef !important;
		color: #fff !important;
	}
	.step_v2 {
		background: #41b8a4 !important;
		color: #fff !important;
	}
	.light_v2 {
		background: #007bbb !important;
		color: #fff !important;
	}
	.basic_v2 {
		background: #F05A24 !important;
		color: #fff !important;
	}
	.advance_v2 {
		background: #9ca200 !important;
		color: #fff !important;
	}
/* Mobile Table ================================================================ */
.plan-table__mob th {
  border-left: 1px solid #989898;
}
.plan-table__mob tr td:first-child {
  border-left: 1px solid #989898;
}
.plan-table__mob .plan-table__plan th {
  border-top: 1px solid #989898 !important;
  border-bottom: none !important;
}
.plan-table__mob .plan-table__free,
.plan-table__mob .plan-table__biz,
.plan-table__mob .plan-table__sm {
  border: none !important;
}
.plan-table__mob .plan-table__biz {
  border-right: 1px solid #73C017 !important;
}
.plan-table__mob .plan-table__sm {
  border-right: 1px solid #41b8a4 !important;
}

/* Mobile Table Font ========================================================================== */
.plan-table__mob th {
  font-size: 0.75rem;
}
.plan-table__mob td {
  font-size: 1rem;
}
.plan-table__mob .plan-table__plan td {
  font-size: 0.875rem;
  font-weight: 700;
}
.plan-table__mob .plan-table__price td {
  font-size: 0.75rem;
}
.plan-table__mob .plan-table__price td b {
  font-size: 1.5rem;
  font-weight: 700;
}
.plan-table__mob .plan-table__price .plan-table__price-biz {
  padding: 14px 0 12px;
}
.plan-table__mob .plan-table__price .plan-table__price-biz b {
  font-size: 1.2rem;
  line-height: 1.5;
}
.plan-table__mob .plan-table__price .plan-table__price-biz span {
  color: #33ABDF;
}
.plan-table__mob .plan-table__txt td {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}

th a {
  margin-top: 4px;
  font-size: 0.75rem;
  display: block;
  color: #33ABDF;
}
th a:hover {
  color: #1b7fab;
}
@media (min-width: 768px) {
  th a {
    margin-top: 8px;
    font-size: 0.875rem;
  }
}

.text-color {
  color: #73C017;
}

/* ==========================================================================

Start

========================================================================== */
#start {
  padding: 30px 20px;
}
#start h2 {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  #start {
    padding: 50px 40px 34px;
  }
  #start h2 {
    margin-bottom: 48px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../script/slider/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
.slick-prev,
.slick-next {
  font-family: FontAwesome;
  height: 40px;
  margin: 0;
  padding: 8px 16px;
  display: block;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  outline: none;
  z-index: 9998;
}
@media (min-width: 768px) {
  .slick-prev,
  .slick-next {
    height: 64px;
  }
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 64px;
  }
}

.slick-prev {
  position: absolute;
  top: calc(50% - 50px);
  left: 0;
  text-align: left;
}
.slick-prev:before {
  content: "\f104";
}

.slick-next {
  position: absolute;
  top: calc(50% - 50px);
  right: 0;
  text-align: right;
}
.slick-next:before {
  content: "\f105";
}

/* @media max-width: 1023px */
/* Dots =========================================== */
.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  width: 100%;
  position: absolute;
  display: block;
  bottom: -48px;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 32px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 20px;
  content: '●';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
.plan-wrapper .bg-plan{
background-color: #FFF;
}
.trimming {
    position:relative;
    height: 200px;
    overflow: hidden;
}
.trimming img {
    /* position: absolute; */
    /* top: -40px; */
    /* left: 0; */
    width: auto;
    height: 100%;
    margin: 0 auto;
    display: block;
}

@media only screen and (min-width: 641px) {
.remodal {
        max-width: 55% !important;
}

ul.modal_sample_list {
    display: table;
    table-layout: fixed;
    width: 100%;
}
ul.modal_sample_list li{
    display: table-cell;
    padding: 30px;
}
ul.modal_sample_list li h4 {
    font-weight: bold;
    padding: 10px;
}
ul.modal_sample_list li img {
    display: block;
    padding: 10px;
}
ul.modal_sample_list li a {
    margin-top: 20px;
    display: block;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #f37e54;
    border-radius: 30px;
    padding: 10px;
}
ul.modal_sample_list li a:last-child {
    margin-top: 20px;
    display: block;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #8FCD45;
    border-radius: 30px;
    padding: 10px;
}

ul.modal_sample_list li a:hover {
    opacity: 0.8;
}


}
.sample_view {
    cursor: pointer;
}
.t-left {
    text-align: left !important;
}
#custom_sub h2 {
    text-align: center;
    margin: 8px 0;
    font-size: 1.4rem;
}
#custom_sub p {
    text-align: left;
}
#custom_sub .plan-footer {
    padding: 0 0 60px;
}
#custom_sub .plan-footer .btn-newaccount {
    margin-top: 24px;
}

.mt5 {
   margin-top: 5px !important; 
}
.pt5 {
    padding-top: 5px !important;
}
.user-comment h4 {
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    margin: 8px 0;
}
.label-fb {
    color: #fff;
    font-size: 85%;
    padding: 3px;
    cursor: default;
    background-color: #3B5998;
}
.facebook_join {
    cursor: pointer;
    text-decoration: none;
}
.sample_modal {
    max-width: 700px !important;
}
.modal-header {border-top-left-radius: 6px;border-top-right-radius: 6px;background: #eeeeee;}
.modal-title {
    text-align: center;
    font-weight: bold;
}
@media (min-width: 992px) {
.modal-body p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 150%;
}
.modal-footer .btn {
    font-size: 1.1rem;
}

}
@media (max-width: 991px) {
.modal-body p {
    text-align: center;
    font-size: 1rem;
    line-height: 120%;
}
.modal-footer .btn {
    font-size: 1rem;
}

}
.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #f8f4e6;
}
@media (min-width: 992px) {
.modal-body .confirm_modal th, .modal-body #confirm_modal_table th {
    text-align: right;
    padding-right: 5%;
}
.modal-body .confirm_modal td, .modal-body #confirm_modal_table td {
    text-align: left;
    padding-left: 5%;
}
}
@media (max-width: 992px) {
.modal-body .confirm_modal th, .modal-body #confirm_modal_table th {
    text-align: right;
    padding-right: 5%;
}
.modal-body .confirm_modal td, .modal-body #confirm_modal_table td {
    text-align: left;
    padding-left: 5%;
}
}
.mt10 {
    margin-top: 10px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.reserve_caution {
    padding: 10px;
    line-height: 130%;
    border: 1px solid #ff4400;
    margin: 5px auto;
    width: 90%;
    text-align: left;
}
.box {
    position: relative;
}
.box .menu_info {
    position: absolute;
    right: 5px;
    bottom: 5px;
}
.box .menu_info i {
    font-size: 1.6rem;
    color: #73C117;
}
.box.current .menu_info i {
    font-size: 1.6rem;
    color: #fff;
}
.thumbnail {
    width: 40%;
    margin: 10px auto;
}

.demo_list h3 {
    text-align:center;
    color: #73C017;
    width: 100%;
}

@media (max-width: 992px) {
    .demo_list {
        text-align:center;
    }
}
.modal_sample_list {
    margin: 0 auto !important;
}

.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
}
.pagetop a{
	width: 100%;
	padding: 5px 0 4px;
	display: block;
	text-align: center;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 20px;
}
.t-center {
	text-align: center !important;
}
.f-small {
	font-size: 0.8rem !important;
}