@charset "UTF-8";
/* CSS Document */
/* header
------------------------------------------------------------*/
header {
  height: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}

header .head-logo {
  line-height: 0;
}

header .head-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

header .head-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-right: 1px solid #eaeaea;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

header .head-nav ul li {
  border-left: 1px solid #eaeaea;
}

header .head-nav ul li.contact a {
  position: relative;
  width: 160px;
}

header .head-nav ul li.contact a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #93c73e;
}

header .head-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 80px;
  width: 110px;
  color: #111111;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-nav ul li a:hover {
  color: #93c73e;
}

header .head-nav ul li a span:nth-child(1) {
  line-height: 0;
  height: 30px;
  margin-bottom: 3px;
}

header .head-nav ul li a span:nth-child(2) {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

header .head-nav .tel {
  margin-left: 30px;
}

header .head-nav .tel a {
  font-size: 16px;
  display: block;
  text-align: center;
  border: 1px solid #111111;
  line-height: 1.4;
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-nav .tel a:hover {
  background-color: #111111;
  color: #FFF;
}

header .head-nav .tel a small {
  display: block;
  font-size: 10px;
}
/* 
header .head-nav .en {
  margin-left: 30px;
}

header .head-nav .en a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-nav .en a:hover {
  color: #93c73e;
}

header .head-nav .en a:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/icon-nav_en.svg) no-repeat;
  margin-right: 10px;
} */

header .head-menu, header .head-hidden {
  display: none;
}

@media screen and (max-width: 1100px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .head-nav ul li a {
    width: 120px;
  }
  header .head-nav .tel {
    margin-left: 20px;
  }
  header .head-nav .en {
    margin-left: 20px;
  }
  header .head-menu, header .head-hidden {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  header .head-nav {
    display: none;
  }
  header .head-menu {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -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;
    top: 0;
    height: 50px;
    width: 50px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
    cursor: pointer;
    background: #93c73e;
  }
  header .head-menu span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto;
    background-color: #FFF;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .head-menu span:last-child {
    margin-bottom: 0;
  }
  header .head-menu span.top {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  header .head-menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .head-menu span.bottom {
    margin-top: -2px;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
  header .head-hidden {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: auto;
    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;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #FFF;
    z-index: 2;
    pointer-events: none;
    border-top: 1px solid #eaeaea;
  }
  header .head-hidden nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }
  header .head-hidden nav ul {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
  }
  header .head-hidden nav ul li {
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: 10px;
  }
  header .head-hidden nav ul li a {
    width: 100%;
  }
  header .head-hidden nav ul li a span:nth-child(2) {
    font-size: 14px;
  }
  header .head-hidden .tel, header .head-hidden .en {
    margin-left: 20px;
    margin-right: 20px;
  }
  header.active .head-menu .middle {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    left: 20px;
  }
  header.active .head-menu .top {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  header.active .head-menu .bottom {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  header.active .head-hidden {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (max-width: 640px) {
  header {
    height: 60px;
    padding-right: 5px;
    padding-left: 10px;
  }
  header .head-logo {
    width: 140px;
  }
  header .head-logo img {
    height: auto;
  }
  header .head-hidden {
    top: 60px;
  }
  header .head-hidden nav ul li.contact a {
    width: 100%;
  }
  header .head-hidden nav ul li a span:nth-child(2) {
    font-size: 11px;
    letter-spacing: normal;
  }
  header .head-hidden nav .tel, header .head-hidden nav .en {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background: #fff;
}

footer .foot-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}

footer .foot-nav ul {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-right: 1px solid #eaeaea;
}

footer .foot-nav ul li {
  border-left: 1px solid #eaeaea;
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

footer .foot-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  color: #111111;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .foot-nav ul li a:hover {
  color: #93c73e;
}

footer .foot-nav ul li a span:nth-child(1) {
  line-height: 0;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}

footer .foot-nav ul li a span:nth-child(2) {
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}

footer .foot-bottom {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 0;
}

footer .foot-bottom .logo {
  line-height: 0;
  margin-right: 30px;
}

footer .foot-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

footer .foot-bottom ul li {
  margin-right: 30px;
  font-size: 13px;
}

footer .foot-bottom .copy {
  font-size: 13px;
  margin-left: auto;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  footer .foot-bottom {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .foot-bottom ul {
    margin-left: auto;
  }
  footer .foot-bottom .copy {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  footer .foot-nav {
    border-bottom: none;
  }
  footer .foot-nav ul {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .foot-nav ul li {
    width: 33.3333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
  }
  footer .foot-nav ul li a {
    height: 70px;
  }
  footer .foot-nav ul li a span:nth-child(2) {
    font-size: 13px;
  }
}

@media screen and (max-width: 640px) and (max-width: 360px) {
  footer .foot-nav ul li {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  footer .foot-bottom {
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .foot-bottom > *:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .foot-bottom .logo {
    margin-right: 0;
  }
  footer .foot-bottom ul {
    margin-top: 10px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  footer .foot-bottom ul li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  footer .foot-bottom .copy {
    width: 100%;
    text-align: center;
  }
}

/* mainimg
------------------------------------------------------------*/
#pagePjax[data-page="business"] .Page, #pagePjax[data-page="airport"] .Page {
  padding-top: 0;
}

#pagePjax[data-page="contact"] .Page {
  padding-top: 0;
  border-top: 1px solid #eaeaea;
}

#pagePjax[data-page="contact"] .Page_cover {
  padding-top: 100px;
  padding-bottom: 70px;
}

.mw_wp_form .error {
  position: absolute;
}

#mainimg {
  position: relative;
  background: no-repeat center / cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

#mainimg:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.4);
}

#mainimg.home {
  background-image: url(../img/bg-kv.jpg);
  height: 320px;
}

#mainimg.home > * {
  position: relative;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.1em;
}

#mainimg.home .item-hd {
  font-size: 40px;
  font-weight: lighter;
  margin-bottom: 10px;
}

#mainimg.home .item-text {
  font-size: 24px;
}

#mainimg.home .item-text span {
  font-size: 32px;
  color: #93c73e;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  #mainimg.home .item-hd {
    font-size: 34px;
  }
  #mainimg.home .item-text {
    font-size: 20px;
  }
  #mainimg.home .item-text span {
    font-size: 28px;
  }
}

@media screen and (max-width: 640px) {
  #mainimg.home {
    height: 240px;
  }
  #mainimg.home .item-hd {
    font-size: 24px;
    line-height: 1.3;
  }
  #mainimg.home .item-text {
    font-size: 16px;
  }
  #mainimg.home .item-text span {
    font-size: 22px;
  }
}

@media screen and (max-width: 640px) {
  #mainimg {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#mainimg:not(.home) {
  height: 240px;
}

#mainimg:not(.home) .item-title {
  font-size: 40px;
  color: #FFF;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 640px) {
  #mainimg:not(.home) {
    height: 180px;
  }
  #mainimg:not(.home) .item-title {
    font-size: 30px;
  }
}

#mainimg.flow {
  background-image: url(../img/bg-kv_flow.jpg);
}

#mainimg.price {
  background-image: url(../img/bg-kv_price.jpg);
}

/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  background: transparent;
  border: 1px solid #111111;
  color: #111111;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
}

@media screen and (max-width: 640px) {
  .btn {
    height: 40px;
    font-size: 15px;
  }
}

.btn:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #111111;
}

.btn.gray {
  background-color: #aaaaaa;
}

.btn.lg {
  height: 70px;
  font-size: 18px;
}

@media screen and (max-width: 640px) {
  .btn.lg {
    height: 55px;
    font-size: 17px;
  }
}

.btn.arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  right: 0;
  background: url(../img/arrow-btn.svg) no-repeat center;
}

.btn.arrow:hover:after {
  background-image: url(../img/arrow-btn_white.svg);
}

.btn.green {
  border-color: #93c73e;
  background-color: #93c73e;
  color: #FFF;
}

.btn.green:hover {
  background-color: #fff;
  color: #93c73e;
}

.btn.green.arrow:after {
  background-image: url(../img/arrow-btn_white.svg);
}

.btn.green.arrow:hover:after {
  background-image: url(../img/arrow-btn_green.svg);
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.btn-block.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-block > * {
  margin: 0 10px 15px;
}

.btn-block > *.w5p {
  width: calc(5% - 20px);
}

.btn-block > *.w10p {
  width: calc(10% - 20px);
}

.btn-block > *.w15p {
  width: calc(15% - 20px);
}

.btn-block > *.w20p {
  width: calc(20% - 20px);
}

.btn-block > *.w25p {
  width: calc(25% - 20px);
}

.btn-block > *.w30p {
  width: calc(30% - 20px);
}

.btn-block > *.w35p {
  width: calc(35% - 20px);
}

.btn-block > *.w40p {
  width: calc(40% - 20px);
}

.btn-block > *.w45p {
  width: calc(45% - 20px);
}

.btn-block > *.w50p {
  width: calc(50% - 20px);
}

.btn-block > *.w55p {
  width: calc(55% - 20px);
}

.btn-block > *.w60p {
  width: calc(60% - 20px);
}

.btn-block > *.w65p {
  width: calc(65% - 20px);
}

.btn-block > *.w70p {
  width: calc(70% - 20px);
}

.btn-block > *.w75p {
  width: calc(75% - 20px);
}

.btn-block > *.w80p {
  width: calc(80% - 20px);
}

.btn-block > *.w85p {
  width: calc(85% - 20px);
}

.btn-block > *.w90p {
  width: calc(90% - 20px);
}

.btn-block > *.w95p {
  width: calc(95% - 20px);
}

.btn-block > *.w100p {
  width: calc(100% - 20px);
}

@media screen and (max-width: 640px) {
  .btn-block {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .btn-block > * {
    margin: 0 5px 10px;
  }
  .btn-block > *.w5p {
    width: calc(5% - 10px);
  }
  .btn-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .btn-block > *.w10p {
    width: calc(10% - 10px);
  }
  .btn-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .btn-block > *.w15p {
    width: calc(15% - 10px);
  }
  .btn-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .btn-block > *.w20p {
    width: calc(20% - 10px);
  }
  .btn-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .btn-block > *.w25p {
    width: calc(25% - 10px);
  }
  .btn-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .btn-block > *.w30p {
    width: calc(30% - 10px);
  }
  .btn-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .btn-block > *.w35p {
    width: calc(35% - 10px);
  }
  .btn-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .btn-block > *.w40p {
    width: calc(40% - 10px);
  }
  .btn-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .btn-block > *.w45p {
    width: calc(45% - 10px);
  }
  .btn-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .btn-block > *.w50p {
    width: calc(50% - 10px);
  }
  .btn-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .btn-block > *.w55p {
    width: calc(55% - 10px);
  }
  .btn-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .btn-block > *.w60p {
    width: calc(60% - 10px);
  }
  .btn-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .btn-block > *.w65p {
    width: calc(65% - 10px);
  }
  .btn-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .btn-block > *.w70p {
    width: calc(70% - 10px);
  }
  .btn-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .btn-block > *.w75p {
    width: calc(75% - 10px);
  }
  .btn-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .btn-block > *.w80p {
    width: calc(80% - 10px);
  }
  .btn-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .btn-block > *.w85p {
    width: calc(85% - 10px);
  }
  .btn-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .btn-block > *.w90p {
    width: calc(90% - 10px);
  }
  .btn-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .btn-block > *.w95p {
    width: calc(95% - 10px);
  }
  .btn-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .btn-block > *.w100p {
    width: calc(100% - 10px);
  }
  .btn-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

input.btn {
  display: -moz-inline-box;
  display: inline-block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* btn */
/* text */
.heading, .heading-lv01, .heading-lv01 + .sub, .heading-lv02, .heading-lv03 {
  line-height: 1.4;
}

.heading:not(:last-child), .heading-lv01:not(:last-child), .heading-lv01 + .sub:not(:last-child), .heading-lv02:not(:last-child), .heading-lv03:not(:last-child) {
  margin-bottom: 30px;
}

.heading-lv01 {
  font-size: 36px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .heading-lv01 {
    font-size: 23px;
  }
}

.heading-lv01 + .sub {
  margin-top: -10px;
  font-size: 18px;
  text-align: center;
}

.heading-lv02 {
  font-size: 20px;
}

.heading-lv03 {
  font-size: 17px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.red {
  color: #ff0000;
}

.bold {
  font-weight: bold;
}

/* text */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w110 {
  width: 110px;
}

.w120 {
  width: 120px;
}

.w130 {
  width: 130px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w170 {
  width: 170px;
}

.w180 {
  width: 180px;
}

.w190 {
  width: 190px;
}

.w200 {
  width: 200px;
}

.w210 {
  width: 210px;
}

.w220 {
  width: 220px;
}

.w230 {
  width: 230px;
}

.w240 {
  width: 240px;
}

.w250 {
  width: 250px;
}

.w260 {
  width: 260px;
}

.w270 {
  width: 270px;
}

.w280 {
  width: 280px;
}

.w290 {
  width: 290px;
}

.w300 {
  width: 300px;
}

.w310 {
  width: 310px;
}

.w320 {
  width: 320px;
}

.w330 {
  width: 330px;
}

.w340 {
  width: 340px;
}

.w350 {
  width: 350px;
}

.w360 {
  width: 360px;
}

.w370 {
  width: 370px;
}

.w380 {
  width: 380px;
}

.w390 {
  width: 390px;
}

.w400 {
  width: 400px;
}

.w410 {
  width: 410px;
}

.w420 {
  width: 420px;
}

.w430 {
  width: 430px;
}

.w440 {
  width: 440px;
}

.w450 {
  width: 450px;
}

.w460 {
  width: 460px;
}

.w470 {
  width: 470px;
}

.w480 {
  width: 480px;
}

.w490 {
  width: 490px;
}

.w500 {
  width: 500px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w50p {
  width: 50%;
}

.w55p {
  width: 55%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .w10-sp {
    width: 10px;
  }
}

@media screen and (max-width: 640px) {
  .w20-sp {
    width: 20px;
  }
}

@media screen and (max-width: 640px) {
  .w30-sp {
    width: 30px;
  }
}

@media screen and (max-width: 640px) {
  .w40-sp {
    width: 40px;
  }
}

@media screen and (max-width: 640px) {
  .w50-sp {
    width: 50px;
  }
}

@media screen and (max-width: 640px) {
  .w60-sp {
    width: 60px;
  }
}

@media screen and (max-width: 640px) {
  .w70-sp {
    width: 70px;
  }
}

@media screen and (max-width: 640px) {
  .w80-sp {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  .w90-sp {
    width: 90px;
  }
}

@media screen and (max-width: 640px) {
  .w100-sp {
    width: 100px;
  }
}

@media screen and (max-width: 640px) {
  .w110-sp {
    width: 110px;
  }
}

@media screen and (max-width: 640px) {
  .w120-sp {
    width: 120px;
  }
}

@media screen and (max-width: 640px) {
  .w130-sp {
    width: 130px;
  }
}

@media screen and (max-width: 640px) {
  .w140-sp {
    width: 140px;
  }
}

@media screen and (max-width: 640px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 640px) {
  .w160-sp {
    width: 160px;
  }
}

@media screen and (max-width: 640px) {
  .w170-sp {
    width: 170px;
  }
}

@media screen and (max-width: 640px) {
  .w180-sp {
    width: 180px;
  }
}

@media screen and (max-width: 640px) {
  .w190-sp {
    width: 190px;
  }
}

@media screen and (max-width: 640px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .w210-sp {
    width: 210px;
  }
}

@media screen and (max-width: 640px) {
  .w220-sp {
    width: 220px;
  }
}

@media screen and (max-width: 640px) {
  .w230-sp {
    width: 230px;
  }
}

@media screen and (max-width: 640px) {
  .w240-sp {
    width: 240px;
  }
}

@media screen and (max-width: 640px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 640px) {
  .w260-sp {
    width: 260px;
  }
}

@media screen and (max-width: 640px) {
  .w270-sp {
    width: 270px;
  }
}

@media screen and (max-width: 640px) {
  .w280-sp {
    width: 280px;
  }
}

@media screen and (max-width: 640px) {
  .w290-sp {
    width: 290px;
  }
}

@media screen and (max-width: 640px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 640px) {
  .w310-sp {
    width: 310px;
  }
}

@media screen and (max-width: 640px) {
  .w320-sp {
    width: 320px;
  }
}

@media screen and (max-width: 640px) {
  .w330-sp {
    width: 330px;
  }
}

@media screen and (max-width: 640px) {
  .w340-sp {
    width: 340px;
  }
}

@media screen and (max-width: 640px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 640px) {
  .w360-sp {
    width: 360px;
  }
}

@media screen and (max-width: 640px) {
  .w370-sp {
    width: 370px;
  }
}

@media screen and (max-width: 640px) {
  .w380-sp {
    width: 380px;
  }
}

@media screen and (max-width: 640px) {
  .w390-sp {
    width: 390px;
  }
}

@media screen and (max-width: 640px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 640px) {
  .w410-sp {
    width: 410px;
  }
}

@media screen and (max-width: 640px) {
  .w420-sp {
    width: 420px;
  }
}

@media screen and (max-width: 640px) {
  .w430-sp {
    width: 430px;
  }
}

@media screen and (max-width: 640px) {
  .w440-sp {
    width: 440px;
  }
}

@media screen and (max-width: 640px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 640px) {
  .w460-sp {
    width: 460px;
  }
}

@media screen and (max-width: 640px) {
  .w470-sp {
    width: 470px;
  }
}

@media screen and (max-width: 640px) {
  .w480-sp {
    width: 480px;
  }
}

@media screen and (max-width: 640px) {
  .w490-sp {
    width: 490px;
  }
}

@media screen and (max-width: 640px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 640px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 640px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 640px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 640px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 640px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 640px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 640px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 640px) {
  .w5p-sp {
    width: 5%;
  }
}

@media screen and (max-width: 640px) {
  .w10p-sp {
    width: 10%;
  }
}

@media screen and (max-width: 640px) {
  .w15p-sp {
    width: 15%;
  }
}

@media screen and (max-width: 640px) {
  .w20p-sp {
    width: 20%;
  }
}

@media screen and (max-width: 640px) {
  .w25p-sp {
    width: 25%;
  }
}

@media screen and (max-width: 640px) {
  .w30p-sp {
    width: 30%;
  }
}

@media screen and (max-width: 640px) {
  .w35p-sp {
    width: 35%;
  }
}

@media screen and (max-width: 640px) {
  .w40p-sp {
    width: 40%;
  }
}

@media screen and (max-width: 640px) {
  .w45p-sp {
    width: 45%;
  }
}

@media screen and (max-width: 640px) {
  .w50p-sp {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .w55p-sp {
    width: 55%;
  }
}

@media screen and (max-width: 640px) {
  .w60p-sp {
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
  .w65p-sp {
    width: 65%;
  }
}

@media screen and (max-width: 640px) {
  .w70p-sp {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .w75p-sp {
    width: 75%;
  }
}

@media screen and (max-width: 640px) {
  .w80p-sp {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  .w85p-sp {
    width: 85%;
  }
}

@media screen and (max-width: 640px) {
  .w90p-sp {
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  .w95p-sp {
    width: 95%;
  }
}

@media screen and (max-width: 640px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  br.pc {
    display: none;
  }
}

br.tablet {
  display: none;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  br.tablet {
    display: inline;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 640px) {
  img.pc {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  img.sp {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .hidden-sp {
    display: none;
  }
}

/* etc */
/* main
------------------------------------------------------------*/
#ui-datepicker-div {
  z-index: 100 !important;
}

.z-index1 {
  position: relative;
  z-index: 1 !important;
}

#pagePjax .page section {
  padding-left: 30px;
  padding-right: 30px;
}

#pagePjax .page section:not(:last-child) {
  margin-bottom: 80px;
}

#pagePjax .page section .content {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#pagePjax .page .point-list, #pagePjax .page .flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -24px -24px 0;
}

#pagePjax .page .point-list li, #pagePjax .page .flow-list li {
  width: calc(33.3333% - 24px);
  margin: 0 24px 24px 0;
  border: 1px solid #eaeaea;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  padding: 30px;
  position: relative;
}

#pagePjax .page .point-list li > *, #pagePjax .page .flow-list li > * {
  position: relative;
  z-index: 2;
}

#pagePjax .page .point-list li:before, #pagePjax .page .flow-list li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 122px;
  bottom: -40px;
  background: url(../img/bg-shadow_point.png) no-repeat center bottom/100% auto;
  z-index: -1;
}

#pagePjax .page .point-list li:after, #pagePjax .page .flow-list li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

#pagePjax .page .point-list .item-icon, #pagePjax .page .flow-list .item-icon {
  height: 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;
  line-height: 0;
  margin-bottom: 15px;
}

#pagePjax .page .point-list .item-text, #pagePjax .page .flow-list .item-text {
  font-size: 15px;
}

#pagePjax .page .point-list .item-text h3, #pagePjax .page .flow-list .item-text h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

#pagePjax .page .HomeLineup .swiper-slide {
  padding: 0 30px 200px;
  background-position: center bottom -20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
  min-width: 300px;
}

#pagePjax .page .HomeLineup .swiper-slide .badge {
  top: inherit;
  bottom: 150px;
}

#pagePjax .page .HomeLineup .swiper-slide .text {
  text-align: center;
  border-bottom: 1px solid #111111;
  position: relative;
}

#pagePjax .page .HomeLineup .swiper-slide .text h3 {
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 1.2;
}

#pagePjax .page .HomeLineup .swiper-slide .text p {
  font-size: 14px;
}

#pagePjax .page .HomeLineup .swiper-slide .text:before, #pagePjax .page .HomeLineup .swiper-slide .text:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #111111 transparent transparent transparent;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  bottom: -8px;
}

#pagePjax .page .HomeLineup .swiper-slide .text:after {
  border-top-color: #FFF;
  bottom: -6px;
}

#pagePjax .page .HomeLineup .btn-block {
  padding-top: 30px;
}

#pagePjax .page .HomeAboutImg {
  text-align: center;
  margin-bottom: 40px;
  margin-left: -20px;
  margin-right: -20px;
}

#pagePjax .page .HomeAboutImg img {
  width: auto;
  height: auto;
}

#pagePjax .page #higher {
  padding-top: 80px;
}

#pagePjax .page #higher .higher-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -24px -24px 0;
}

#pagePjax .page #higher .higher-list:not(:last-child) {
  margin-bottom: 6px;
}

#pagePjax .page #higher .higher-list li {
  width: calc(33.3333% - 24px);
  margin: 0 24px 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#pagePjax .page #higher .higher-list .item-img {
  line-height: 0;
  margin-bottom: 0;
}

#pagePjax .page #higher .higher-list .item-img img {
  height: auto;
}

#pagePjax .page #higher .higher-list .item-text {
  border: 1px solid #eaeaea;
  border-top: none;
  padding: 15px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

#pagePjax .page #higher .higher-list .item-text h4 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}

#pagePjax .page #higher .higher-list .item-text p {
  font-size: 15px;
}

#pagePjax .page #higher .higher-price {
  width: 440px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #111111;
}

#pagePjax .page #higher .higher-price:not(:last-child) {
  margin-bottom: 30px;
}

#pagePjax .page #higher .higher-price h4 {
  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;
  margin-left: -10px;
  margin-right: -10px;
  font-size: 18px;
}

#pagePjax .page #higher .higher-price h4:before, #pagePjax .page #higher .higher-price h4:after {
  content: "";
  width: 10px;
  height: 1px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  background-color: #111111;
  margin-left: 10px;
  margin-right: 10px;
}

#pagePjax .page #higher .higher-price > div {
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
}

#pagePjax .page #higher .higher-price > div small {
  display: block;
  font-size: 13px;
  margin-top: 10px;
}

#pagePjax .page .flow-list .item-number {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 36px;
  height: 36px;
  background: #93c73e;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 20px;
  margin: 0;
}

#pagePjax .page .mw_wp_form section {
  padding-left: 0;
  padding-right: 0;
}

#pagePjax .page .mw_wp_form .CA_formBlock.is-last {
  padding-bottom: 0;
}

#pagePjax .page .mw_wp_form .CA_CategoryGroup {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
}

#pagePjax .page .mw_wp_form .CA_CategoryGroup .CA_Category {
  width: calc(33.3333% - 20px);
}

#pagePjax .page .mw_wp_form .CA_input_group {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

#pagePjax .page .mw_wp_form .CA_input_group > input, #pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder--full {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

#pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder {
  width: 300px;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  #pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder {
    max-width: calc(50% - 7px);
  }
}

#pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder:before {
  top: 32px;
}

#pagePjax .page .mw_wp_form .CA_input_group .CA_input_icon {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  top: 19px;
}

#pagePjax .page .mw_wp_form .CA_formBlock_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#pagePjax .page .mw_wp_form .CA_formBlock_header .CA_formBlock_form_section_RequiredLabel {
  margin-left: 5px;
}

#pagePjax .page .mw_wp_form .error {
  position: relative;
  margin-top: 5px;
  width: 100%;
}

#pagePjax .page .CarModal_cover .swiper-wrapper .CarModal_cover_item {
  height: 457px;
}

@media screen and (max-width: 600px) {
  #pagePjax .page .CarModal_cover .swiper-wrapper .CarModal_cover_item {
    height: 350px;
  }
}

@media screen and (max-width: 500px) {
  #pagePjax .page .CarModal_cover .swiper-wrapper .CarModal_cover_item {
    height: 285px;
  }
}

@media screen and (max-width: 400px) {
  #pagePjax .page .CarModal_cover .swiper-wrapper .CarModal_cover_item {
    height: 230px;
  }
}

.thanks-txt {
  text-align: center;
}

#pagePjax[data-page="contact"] .page {
  min-height: calc(100vh - 340px);
}

#pagePjax[data-page="contact"] .CA_Confirm {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  margin-top: -30px;
}

#pagePjax[data-page="contact"] .CA_inputSelectHolder {
  width: 400px;
  max-width: 100%;
}

#pagePjax[data-page="contact"] .u-text-center {
  padding: 30px 0;
}

#pagePjax[data-page="contact"] input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio-button;
}

#pagePjax[data-page="contact"] input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

#pagePjax[data-page="contact"] .FF_CheckboxButtonLabel {
  display: inline;
}

#pagePjax[data-page="contact"] .CA_Confirm_submit_button {
  background: #93c73e;
}

#pagePjax[data-page="contact"] .CA_Confirm_submit_button.back {
  background: #ccc;
}

#pagePjax[data-page="contact"] .mw_wp_form_confirm {
  padding-bottom: 50px;
}

#pagePjax[data-page="contact"] .mw_wp_form_confirm .CA_stopoverButton {
  display: none;
}

#pagePjax[data-page="contact"] .mw_wp_form_confirm svg:not(:root) {
  display: none;
}

#pagePjax[data-page="contact"] .mw_wp_form_confirm .is-last {
  display: none;
}

#pagePjax[data-page="contact"] .mw_wp_form_confirm .CA_inputSelectHolder:before {
  display: none;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  /* main
------------------------------------------------------------*/
  #pagePjax .page .point-list, #pagePjax .page .flow-list {
    margin: 0 -16px -16px 0;
  }
  #pagePjax .page .point-list li, #pagePjax .page .flow-list li {
    width: calc(33.3333% - 16px);
    margin: 0 16px 16px 0;
    padding: 20px;
  }
}

@media screen and (min-width: 641px) and (max-width: 980px) and (max-width: 800px) {
  #pagePjax .page .point-list li, #pagePjax .page .flow-list li {
    width: calc(50% - 16px);
  }
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  #pagePjax .page .point-list li:before, #pagePjax .page .flow-list li:before {
    bottom: -30px;
  }
  #pagePjax .page #higher .higher-list {
    margin: 0 -16px -16px 0;
  }
  #pagePjax .page #higher .higher-list li {
    width: calc(33.3333% - 16px);
    margin: 0 16px 16px 0;
  }
}

/*sp*/
@media screen and (max-width: 640px) {
  /* main
------------------------------------------------------------*/
  #pagePjax .page {
    padding-top: 40px;
  }
  #pagePjax .page section:not(:last-child) {
    margin-bottom: 40px;
  }
  #pagePjax .page .point-list, #pagePjax .page .flow-list {
    margin: 0 -12px -12px 0;
  }
  #pagePjax .page .point-list li, #pagePjax .page .flow-list li {
    width: calc(50% - 12px);
    margin: 0 12px 12px 0;
    padding: 15px;
  }
}

@media screen and (max-width: 640px) and (max-width: 500px) {
  #pagePjax .page .point-list li, #pagePjax .page .flow-list li {
    width: calc(100% - 12px);
  }
}

@media screen and (max-width: 640px) {
  #pagePjax .page .point-list li:before, #pagePjax .page .flow-list li:before {
    bottom: -20px;
  }
  #pagePjax .page .point-list .item-icon, #pagePjax .page .flow-list .item-icon {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
  }
  #pagePjax .page .point-list .item-icon img, #pagePjax .page .flow-list .item-icon img {
    height: 60px;
  }
  #pagePjax .page .point-list .item-text, #pagePjax .page .flow-list .item-text {
    font-size: 14px;
  }
  #pagePjax .page .point-list .item-text h3, #pagePjax .page .flow-list .item-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #pagePjax .page .HomeLineup .swiper-slide {
    padding: 0 15px 120px;
    min-width: 220px;
  }
  #pagePjax .page .HomeLineup .swiper-slide .badge {
    bottom: 90px;
  }
  #pagePjax .page #higher {
    padding-top: 40px;
  }
  #pagePjax .page #higher .higher-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 -12px -12px 0;
  }
  #pagePjax .page #higher .higher-list li {
    width: calc(50% - 12px);
    margin: 0 12px 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) and (max-width: 500px) {
  #pagePjax .page #higher .higher-list li {
    width: calc(100% - 12px);
  }
}

@media screen and (max-width: 640px) {
  #pagePjax .page #higher .higher-list .item-img img {
    width: 100%;
  }
  #pagePjax .page #higher .higher-list .item-text h4 {
    font-size: 17px;
  }
  #pagePjax .page #higher .higher-list .item-text p {
    font-size: 14px;
  }
  #pagePjax .page #higher .higher-price > div {
    font-size: 17px;
    padding: 15px 0;
  }
}

@media screen and (max-width: 640px) and (max-width: 400px) {
  #pagePjax .page #higher .higher-price > div {
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 640px) {
  #pagePjax .page #higher .higher-price > div small {
    font-size: 12px;
  }
  #pagePjax .page .Page_cover_title {
    font-size: 24px;
  }
  #pagePjax .page .mw_wp_form .CA_formBlock {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0;
  }
  #pagePjax .page .mw_wp_form .CA_formBlock .CA_formBlock {
    padding: 15px 0;
    margin: 0;
  }
  #pagePjax .page .mw_wp_form .CA_formBlock .CA_formBlock.is-last {
    padding-bottom: 0;
  }
  #pagePjax .page .mw_wp_form .CA_CategoryGroup {
    margin-right: -8px;
  }
  #pagePjax .page .mw_wp_form .CA_CategoryGroup .CA_Category {
    width: calc(33.3333% - 8px);
  }
  #pagePjax .page .mw_wp_form .CA_input_group .CA_input_icon {
    top: 13px;
  }
  #pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder {
    width: 180px;
    max-width: calc(50% - 4px);
  }
  #pagePjax .page .mw_wp_form .CA_input_group .CA_inputSelectHolder:before {
    top: 22px;
  }
  #pagePjax .page .mw_wp_form .CA_Confirm {
    margin-top: 20px;
  }
}
