@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300");
/*===================================
	共通レイアウト
=====================================*/
/*　　　global
-------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  font: 400 62.5% Helvetica Neue, Helvetica, Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  color: #333;
}

body {
  padding: 0;
  margin: 0;
}

body,
html {
  min-width: 1000px;
}

@media screen and (max-width: 600px) {
  body,
  html {
    min-width: 100%;
    overflow-x: hidden;
  }
}

main {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/*　最大幅設定　*/
[data-viewport="sm"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="sm"] {
    padding: 0 15px;
  }
}

[data-viewport="md"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 999px) {
  [data-viewport="md"] {
    padding: 0 15px;
  }
}

[data-viewport="lg"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 999px) {
  [data-viewport="lg"] {
    padding: 0 15px;
  }
}

/*　アスペクト比固定　*/
[data-box] {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background: no-repeat center center;
  background-size: cover;
}

[data-box]::before {
  content: "";
  display: block;
}

[data-box] .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

/*　　　footer
-------------------------------------*/
footer {
  padding-top: 80px;
  background-color: #eae2d9;
}

@media screen and (max-width: 600px) {
  footer {
    padding-top: 45px;
  }
}

footer a {
  display: block;
  margin: auto;
  max-width: 555px;
}

footer p {
  margin: 0;
  padding: 45px 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  footer p {
    padding-top: 35px;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: .5px;
  }
}

/*===================================
	共通コンポーネント
=====================================*/
/*　　　selection
-------------------------------------*/
::-moz-selection {
  color: white;
  background-color: #231815;
}
::selection {
  color: white;
  background-color: #231815;
}

/*　　　clearfix
-------------------------------------*/
.cf::after {
  content: "";
  display: block;
  clear: both;
}

/*　　　responsive
-------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}

/*　　　タイトル
-------------------------------------*/
/*　　　本文
-------------------------------------*/
/*　　　フォント
-------------------------------------*/
.gothic {
  font-family: Helvetica Neue, Helvetica, Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

.mincho {
  font-family: YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/*　　　アニメーション
-------------------------------------*/
@-webkit-keyframes slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.invisible {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
}

.visible {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}

/*　　　ボタン
-------------------------------------*/
/*　　　map
-------------------------------------*/
/*　　　breadcrumbs
-------------------------------------*/
/*　　　backtop
-------------------------------------*/
.grecaptcha-badge {
  display: none;
}

.section-ttl {
  position: relative;
  margin: 0 0 30px;
  font-size: 33px;
  font-size: 3.3rem;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: lighter;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .section-ttl {
    font-size: 5.5vw;
    font-weight: bold;
  }
}

.section-ttl span {
  display: block;
  margin-bottom: 5px;
}

.section-ttl span img {
  width: 150px;
}

@media screen and (max-width: 600px) {
  .section-ttl span img {
    width: 30%;
  }
}

.mainvisual {
  position: relative;
}

.mainvisual h1 {
  position: absolute;
  width: 19.8125%;
  min-width: 280px;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 600px) {
  .mainvisual h1 {
    width: 150px;
    min-width: 0;
  }
}

.mainvisual h1 img {
  width: 100%;
}

.mainvisual .main-movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.mainvisual .main-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainvisual .main-slide-wrap .slide {
  display: none;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
  min-height: 800px;
}

@media screen and (max-width: 600px) {
  .mainvisual .main-slide-wrap .slide {
    min-height: 400px;
  }
}

.mainvisual .main-slide-wrap .slide:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.mainvisual .main-slide-wrap .slick-slide .slide {
  display: block;
}

.mainvisual .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 36.8125%;
  z-index: 5;
}

@media screen and (max-width: 600px) {
  .mainvisual .pattern {
    display: none;
  }
}

.mainvisual .pattern img {
  width: 100%;
}

.about {
  position: relative;
  height: 56.25vw;
}

@media screen and (max-width: 1599px) {
  .about {
    min-height: 900px;
  }
}

@media screen and (max-width: 600px) {
  .about {
    height: 100%;
    min-height: 0;
  }
}

.about:before {
  position: absolute;
  content: "";
  background-image: url(../img/bg_about.png);
  background-repeat: no-repeat;
  background-position: center;
}

.about .inner {
  position: relative;
  z-index: 5;
}

.about .inner h2 {
  padding-top: 30px;
  color: #ffffff;
}

@media screen and (max-width: 600px) {
  .about .inner h2 {
    position: absolute;
    width: 100%;
    padding-top: 10px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.about .bg-about {
  position: absolute;
  width: 100%;
  min-width: 1600px;
  top: -11.3vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1599px) {
  .about .bg-about {
    top: -181px;
  }
}

.about .bg-about img {
  width: 100%;
}

.about .bg-about .text01, .about .bg-about .text02 {
  position: absolute;
  width: 210px;
}

.about .bg-about .text01 {
  top: 31%;
  right: 19.5%;
}

.about .bg-about .text01 h3 {
  border-bottom: solid 1px #8fb721;
}

.about .bg-about .text02 {
  bottom: 14%;
  left: 19.3%;
  color: #ffffff;
}

.about .bg-about .text02 h3 {
  border-bottom: solid 1px #ffd900;
}

.about .bg-about h3 {
  margin: 0 0 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}

.about .bg-about p {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.about .sp-gps {
  position: relative;
  padding-top: 11%;
  background-color: #8fb721;
}

.about .sp-gps:after {
  position: absolute;
  content: "";
  background-image: url(../img/cross_mark.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 12%;
  height: 12vw;
  bottom: -6vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about .sp-gps .text-wrap {
  position: absolute;
  bottom: 5%;
  padding: 0 15px;
}

.about .sp-gps .text-wrap h3 {
  margin: 0 0 10px;
  padding-bottom: 10px;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  border-bottom: solid 1px #ffd900;
}

.about .sp-gps .text-wrap p {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.6;
  color: #ffffff;
}

.about .sp-bike .text-wrap {
  position: absolute;
  bottom: 4%;
  padding: 0 15px;
}

.about .sp-bike .text-wrap h3 {
  margin: 0 0 10px;
  padding-bottom: 10px;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: solid 1px #8fb721;
}

.about .sp-bike .text-wrap p {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.6;
}

.spot {
  position: relative;
  border-bottom: dashed 2px #8fb721;
}

.spot .is-pc .text-wrap {
  position: relative;
  margin-top: -75px;
  padding-bottom: 60px;
  z-index: 5;
}

.spot .is-pc .text-wrap h4 {
  margin: 0 auto 15px;
  max-width: 125px;
}

.spot .is-pc .text-wrap p {
  margin: 0 auto;
  width: 450px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.spot .is-pc .bg-spot {
  position: absolute;
  width: 1481px;
  bottom: 69px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.spot .is-pc .bg-spot img {
  width: 100%;
  margin: auto;
}

.spot .is-sp img {
  width: 100%;
  margin-top: -10%;
}

.spot .is-sp p {
  margin: 0;
  padding: 2% 15px 12%;
  font-size: 3.2vw;
  line-height: 1.7;
}

.movie {
  padding: 70px 0 90px;
}

@media screen and (max-width: 600px) {
  .movie {
    padding: 12% 0 20%;
  }
}

.movie .youtube-wrap {
  position: relative;
  text-align: right;
}

.movie .youtube-wrap .youtube {
  max-width: 720px;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .movie .youtube-wrap .youtube {
    text-align: right;
  }
}

.movie .youtube-wrap .youtube .inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movie .youtube-wrap .youtube .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie .youtube-wrap .youtube a {
  display: inline-block;
  margin-top: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #8fb721;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .movie .youtube-wrap .youtube a {
    margin-top: 10px;
    font-size: 3.8vw;
  }
}

.movie .youtube-wrap .youtube a img {
  width: 33.8px;
}

@media screen and (max-width: 600px) {
  .movie .youtube-wrap .youtube a img {
    width: 25px;
  }
}

.movie .youtube-wrap .illust {
  width: 590px;
  margin-top: -175px;
}

@media screen and (max-width: 600px) {
  .movie .youtube-wrap .illust {
    display: none;
  }
}

.charm {
  padding: 30px 0;
  background-color: #eae2d9;
}

@media screen and (max-width: 600px) {
  .charm {
    position: relative;
    padding: 0;
  }
}

.charm h2 {
  margin-bottom: -90px;
  z-index: 5;
}

@media screen and (max-width: 600px) {
  .charm h2 {
    margin-bottom: 0;
  }
}

.charm .wrap {
  position: relative;
}

.charm .wrap .bg-charm {
  position: relative;
  width: 100%;
  min-width: 1600px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.charm .wrap .bg-charm.is-sp {
  min-width: inherit;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin-top: -23.5%;
}

.charm .wrap .item {
  position: absolute;
  z-index: 5;
}

.charm .wrap .item h3 {
  margin: 0 0 15px;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item h3 {
    margin-bottom: 10px;
  }
}

.charm .wrap .item h3 img {
  width: 100%;
}

.charm .wrap .item p {
  width: 280px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .5px;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item p {
    width: 95%;
    margin: 0;
    font-size: 3.2vw;
  }
}

.charm .wrap .item:nth-child(1) {
  top: 190px;
  left: 0;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(1) {
    width: 53%;
    top: 49vw;
    left: 5.5%;
  }
}

.charm .wrap .item:nth-child(1) h3 {
  width: 298.5px;
  margin-left: -15px;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(1) h3 {
    width: 100%;
    margin-left: -5px;
  }
}

.charm .wrap .item:nth-child(2) {
  top: 920px;
  right: 0;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(2) {
    width: 53%;
    top: 201.5vw;
    right: 5%;
  }
}

.charm .wrap .item:nth-child(2) h3 {
  width: 295px;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(2) h3 {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(2) p {
    margin: auto;
  }
}

.charm .wrap .item:nth-child(3) {
  top: 1600px;
  left: 0;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(3) {
    width: 53%;
    top: 370vw;
    left: 5.5%;
  }
}

.charm .wrap .item:nth-child(3) h3 {
  width: 298.5px;
}

@media screen and (max-width: 600px) {
  .charm .wrap .item:nth-child(3) h3 {
    width: 100%;
    margin-left: -5px;
  }
}

.course {
  padding: 40px 0 80px;
}

@media screen and (max-width: 600px) {
  .course {
    padding: 30px 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .course h2 {
    margin-bottom: 15px;
  }
}

.course .icon-wrap {
  max-width: 215px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 600px) {
  .course .icon-wrap {
    max-width: 50%;
    margin-bottom: 10px;
  }
}

.course .course-slide-wrap .slick-slide {
  margin: 0 25px;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .slick-slide {
    margin: 10px;
  }
}

.course .course-slide-wrap .slick-slide .slide {
  display: block;
}

.course .course-slide-wrap .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}

.course .course-slide-wrap .slick-arrow.slick-prev {
  left: -30px;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .slick-arrow.slick-prev {
    left: -10px;
  }
}

.course .course-slide-wrap .slick-arrow.slick-next {
  right: -30px;
}

@media screen and (max-width: 1070px) {
  .course .course-slide-wrap .slick-arrow.slick-next {
    right: 0;
  }
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .slick-arrow.slick-next {
    right: -10px;
  }
}

.course .course-slide-wrap .slick-arrow img {
  width: 40px;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .slick-arrow img {
    width: 25px;
  }
}

.course .course-slide-wrap .item {
  padding: 20px 20px 25px;
  background-color: #ffd900;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item {
    padding: 10px 10px 15px;
  }
}

.course .course-slide-wrap .item a {
  display: block;
  color: #000000;
  text-decoration: none;
}

.course .course-slide-wrap .item a .thum {
  width: 100%;
}

.course .course-slide-wrap .item a h3 {
  margin: 0 0 20px;
  padding: 15px 0 10px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  border-bottom: solid 1px #ffffff;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item a h3 {
    margin-bottom: 15px;
    padding: 13px 0 9px;
    font-size: 4.2vw;
  }
}

.course .course-slide-wrap .item a .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.course .course-slide-wrap .item a .wrap p {
  width: 63%;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item a .wrap p {
    font-size: 3.3vw;
    line-height: 1.6;
  }
}

.course .course-slide-wrap .item a .wrap ul {
  width: 32%;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item a .wrap ul {
    width: 34%;
  }
}

.course .course-slide-wrap .item a .wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.course .course-slide-wrap .item a .wrap ul li:not(:last-child) {
  margin-bottom: 8px;
}

.course .course-slide-wrap .item a .wrap ul li span {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item a .wrap ul li span {
    font-size: 3.5vw;
  }
}

.course .course-slide-wrap .item a .wrap ul li span:nth-child(1) {
  width: 40px;
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .course .course-slide-wrap .item a .wrap ul li span:nth-child(1) {
    width: 30%;
  }
}

.course .course-slide-wrap .item a .wrap ul li span:nth-child(1) img {
  width: 100%;
}

.application {
  padding: 40px 0 70px;
  background-color: #eae2d9;
}

@media screen and (max-width: 600px) {
  .application {
    padding: 30px 0 40px;
  }
}

.application .item:not(:last-child) {
  padding-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .application .item:not(:last-child) {
    padding-bottom: 30px;
  }
}

.application .item h3 {
  margin: 0 0 15px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #8fb721;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .application .item h3 {
    margin-bottom: 10px;
    font-size: 4.2vw;
  }
}

.application .item table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}

.application .item table tr:first-child th, .application .item table tr:first-child td {
  border-bottom: solid 1px #eae2d9;
}

.application .item table th, .application .item table td {
  width: 50%;
  padding: 25px 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .application .item table th, .application .item table td {
    padding: 15px 10px;
    font-size: 3.5vw;
  }
}

.application .item table th {
  background-color: #f5f1ec;
}

.application .item table td {
  background-color: #ffffff;
}

.application .item.price p {
  margin: 10px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: right;
}

@media screen and (max-width: 600px) {
  .application .item.price p {
    margin-top: 7px;
    font-size: 3.2vw;
  }
}

.application .item.detail p {
  margin: 0;
  padding: 25px 10px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  background-color: #ffffff;
}

@media screen and (max-width: 600px) {
  .application .item.detail p {
    padding: 15px 10px;
    font-size: 3.5vw;
  }
}

.application .item.detail .note {
  margin: 10px 0 0;
  padding: 0;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: right;
  background-color: inherit;
}

@media screen and (max-width: 600px) {
  .application .item.detail .note {
    margin-top: 7px;
    font-size: 3.2vw;
  }
}

.application .item.request {
  margin-top: 40px;
}

.application .item.request .form-wrap ::-webkit-input-placeholder {
  color: #e6e6e6;
}

.application .item.request .form-wrap ::-moz-placeholder {
  color: #e6e6e6;
}

.application .item.request .form-wrap :-ms-input-placeholder {
  color: #e6e6e6;
}

.application .item.request .form-wrap ::-ms-input-placeholder {
  color: #e6e6e6;
}

.application .item.request .form-wrap ::placeholder {
  color: #e6e6e6;
}

.application .item.request .form-wrap dl {
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap dl {
    margin-bottom: 25px;
  }
}

.application .item.request .form-wrap dl dt, .application .item.request .form-wrap dl dd {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap dl dt, .application .item.request .form-wrap dl dd {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.application .item.request .form-wrap dl dt p, .application .item.request .form-wrap dl dd p {
  margin: 0;
}

.application .item.request .form-wrap dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
}

.application .item.request .form-wrap dl dt .must {
  margin-left: 1em;
  padding: 1px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #ffffff;
  background-color: #8fb721;
  border-radius: 20px;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap dl dt .must {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.application .item.request .form-wrap dl dd {
  margin-bottom: 1em;
}

.application .item.request .form-wrap dl dd.flex, .application .item.request .form-wrap dl dd.radio-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.application .item.request .form-wrap dl dd.flex > span {
  word-break: keep-all;
}

.application .item.request .form-wrap dl dd input, .application .item.request .form-wrap dl dd textarea {
  width: 100%;
  padding: .75em 1em;
  background-color: white;
  border: none;
}

.application .item.request .form-wrap dl dd select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: .75em 3em .75em 1em;
  background-color: #ffffff;
  border-radius: 0;
}

.application .item.request .form-wrap dl dd .radio-wrap {
  cursor: pointer;
  margin-right: 20px;
}

.application .item.request .form-wrap dl dd .radio-wrap span {
  padding-left: 25px;
  position: relative;
}

.application .item.request .form-wrap dl dd .radio-wrap span:before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: none;
  background-color: #ffffff;
}

.application .item.request .form-wrap dl dd input[type="radio"] {
  display: none;
}

.application .item.request .form-wrap dl dd input[type="radio"]:checked + span:after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 2px;
  width: 9px;
  height: 17px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 4px solid #8fb721;
  border-right: 4px solid #8fb721;
}

.application .item.request .form-wrap dl dd .select-wrap {
  position: relative;
  display: inline-block;
}

.application .item.request .form-wrap dl dd .select-wrap:before {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
}

.application .item.request .form-wrap dl dd .parsley-errors-list {
  margin: 10px 0 0;
  padding: 0;
}

.application .item.request .form-wrap dl dd .parsley-errors-list .parsley-custom-error-message {
  margin: 0;
  padding: .25em 1em;
  list-style: none;
  position: relative;
  color: white;
  font-size: 12px;
  line-height: 160%;
  font-weight: bold;
  background-color: #91b821;
  border-radius: 3px;
}

.application .item.request .form-wrap dl dd .parsley-errors-list .parsley-custom-error-message:before {
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #91b821 transparent;
}

.application .item.request .form-wrap .mod_form_importance_btn {
  padding: 30px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap .mod_form_importance_btn {
    padding: 10px 0 15px;
  }
}

.application .item.request .form-wrap .mod_form_importance_btn p {
  margin: 0 0 30px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap .mod_form_importance_btn p {
    margin-bottom: 20px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.application .item.request .form-wrap .mod_form_importance_btn p a {
  display: inline-block;
  margin: 0 .25em;
  color: #91b821;
}

.application .item.request .form-wrap .mod_form_importance_btn label {
  display: inline-block;
  cursor: pointer;
}

.application .item.request .form-wrap .mod_form_importance_btn label input[type="checkbox"] {
  display: none;
}

.application .item.request .form-wrap .mod_form_importance_btn label input[type="checkbox"]:checked + span:after {
  display: block;
  position: absolute;
  content: "";
  top: -5px;
  left: 5px;
  width: 9px;
  height: 17px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 4px solid #91b821;
  border-right: 4px solid #91b821;
}

.application .item.request .form-wrap .mod_form_importance_btn label span {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap .mod_form_importance_btn label span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.application .item.request .form-wrap .mod_form_importance_btn label span:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #ffffff;
}

.application .item.request .form-wrap .mod_form_btn {
  padding-top: 20px;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap .mod_form_btn {
    padding-top: 10px;
  }
}

.application .item.request .form-wrap .mod_form_btn input[type="submit"] {
  padding: .75em;
  display: inline-block;
  width: 100%;
  color: white;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  background-color: #91b821;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 600px) {
  .application .item.request .form-wrap .mod_form_btn input[type="submit"] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.rental {
  padding: 50px 0 60px;
}

@media screen and (max-width: 600px) {
  .rental {
    padding: 30px 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .rental h2 {
    margin-bottom: 25px;
  }
}

.rental .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  padding-top: 15px;
}

@media screen and (max-width: 600px) {
  .rental .wrap {
    display: block;
    padding: 0;
  }
}

.rental .wrap .item {
  width: 47%;
}

@media screen and (max-width: 600px) {
  .rental .wrap .item {
    width: 100%;
  }
  .rental .wrap .item:first-child {
    margin-bottom: 30px;
  }
}

.rental .wrap .item h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #8fb721;
}

@media screen and (max-width: 600px) {
  .rental .wrap .item h3 {
    margin-bottom: 6px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.rental .wrap .item p {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .rental .wrap .item p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.rental .wrap .item p span {
  color: #cb3030;
}

.btn-reservation {
  position: fixed;
  width: 130px;
  bottom: 30px;
  right: 30px;
  z-index: 30;
}

@media screen and (max-width: 600px) {
  .btn-reservation {
    display: none;
  }
}

.btn-reservation a {
  display: block;
}

.btn-reservation a img {
  width: 100%;
}

.reception {
  min-height: 350px;
  padding: 50px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .reception {
    min-height: 0;
  }
}

.reception h2 {
  margin: 0 0 30px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .reception h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.reception p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .reception p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */