@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 580px) {
  html {
    font-size: 37.5%;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #033067;
  letter-spacing: .03em;
  font-size: 1.4rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
}

img {
  display: block;
  max-width: 100%;
  margin: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* intersection
====================================== */
*[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateY(20px);
}

*[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection]{
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection]{
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

/* Pace
====================================== */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.pace .pace-progress {
  background: #3A815F;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace.pace-inactive {
  opacity: 0;
  height: auto;
}

/* utility
====================================== */
.u-tablet-block {
  display: none !important;
}

.u-mobile-block {
  display: none !important;
}

.u-top-space{
  padding: 4em 0 0;
}
.u-bg-green {
  background: #ECFFDB;
}
.u-bg-yellow:before{
  content: url(../img/bg_green_nami.png);
  position: absolute;
  top: -40px;
}
.u-bg-yellow{
  background-size: auto auto;
  background-color: rgba(255, 217, 143, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 213, 130, 1) 10px, rgba(255, 213, 130, 1) 20px );
}
.u-bg-inquiry{
  background-color   : #0075ac;
  background-image   : radial-gradient(#006c9f 10%, transparent 10%),
                       radial-gradient(#006c9f 10%, transparent 10%);
  background-position: 0 0, 13px 13px;
  background-size    : 26px 26px;
}
.u-bg-inquiry:before{
  content: url(../img/bg_inquiry.png);
  position: absolute;
  top: -18px;
}

.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

@media screen and (max-width: 960px) {
  .u-tablet-block {
    display: block !important;
  }
  .u-tablet-none {
    display: none !important;
  }
}

@media screen and (max-width: 580px) {
  .u-mobile-block {
    display: block !important;
  }
  .u-mobile-none {
    display: none !important;
  }
}

/* main
====================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
  box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
}

.l-main {
  position: relative;
  width: 100%;
  max-height: 100%;
}

/* nav-sticky
====================================== */
.l-nav-sticky {
  background: #000000;
  width: 100%;
  position: fixed;
  left: -25vw;
  bottom: 14%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
@media screen and (max-width: 1680px) {
  .l-nav-sticky {
    left: -21vw;
  }
}
@media screen and (max-width: 1440px) {
  .l-nav-sticky {
    left: -17vw;
  }
}
@media screen and (max-width: 1200px) {
  .l-nav-sticky {
    left: -8vw;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav-sticky {
    left: -3.5vw;
  }
}

.l-nav-sticky-btn,.l-nav-sticky-btn_inquiry {
  display: block;
  position: absolute;
  z-index: 2;
  right: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 70px;
}
.l-nav-sticky-btn_inquiry {
  top: -6em;
}
@media screen and (max-width: 1000px) {
  .l-nav-sticky-btn_inquiry {
    top: -7em;
  }
}
@media screen and (max-width: 580px) {
  .l-nav-sticky-btn_inquiry {
    top: -8.8em;
  }
}


/* header
====================================== */
.l-header {
  height: 70px;
  background: #fff;
  position: relative;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2em;
}

.l-header__logo {
  width: 26.5%;
  max-width: 319px;
  margin: 0 auto;
}

@media screen and (max-width: 580px) {
  .l-header__inner {
    flex-direction: column;
    justify-content: center;
  }
  .l-header__logo {
    width: 100%;
    max-width: 230px;
    margin: auto 1.5em;
  }
}

/* footer
====================================== */
.l-footer {
  padding: 3em 0;
  background: #333;
  color: #fff;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
}

.l-footer > p {
  margin-top: -.375em;
  margin-bottom: -.375em;
}

/* sec
====================================== */
.c-sec {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 3em 0 6em;
  z-index: 1;
  overflow: hidden;
}
.c-sec._price{
  padding: 0 0 6em;
}
.c-sec._price:last-of-type{
  padding: 0 0 8em;
}

.c-sec.u-bg-yellow{
  padding: 3em 0 0;
}
.c-sec.u-bg-inquiry{
  overflow: inherit;
  padding: 6em 0 6.8em;
}
.c-sec-container {
  max-width: 900px;
  margin: auto;
}

.c-sec-inner {
  margin: 6em 0;
}

.c-sec-title{
  text-align: center;
  font-size: 2.8em;
  font-weight: bold;
  color: #033067;
  padding: 0 .5em .5em;
}
.c-sec-title._green{
  color: #3A815F;
  padding: 0 0.5em 1em;
}
.c-sec-title._green:after,
.c-sec-title._green:before{
  content: "";
  background-image: url(../img/bg_howto_ttl.png);
  position: absolute;
  top: 3.7vw;
  display: block;
  width: 25%;
  height: 10%;
  margin: auto 0;
  padding: 0;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-sec-title._green:before{
  right: 20px;
}
@media screen and (max-width: 765px) {
  .c-sec-title._green:after{
    top: -3.5vw;
    left: -20px; 
  }
  .c-sec-title._green:before{
    top: -3.5vw;
    right: -20px;
  }
}
.c-sec-title._white{
  color: #fff;
}


.c-sec__fig {
  padding-bottom: 2.5em;
}

@media screen and (max-width: 960px) {
  .c-sec-container {
    max-width: 100%;
    padding: 0 2em;
  }
}

@media screen and (max-width: 580px) {
  .c-sec-inner{
    margin: 4em 0;
  }
}

/* btn */
.c-sec__btn {
  display: flex;
  justify-content: space-around;
}

.c-sec__btn li {
  width: 45%;
}

.c-sec__btn li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.c-sec__btn li a img{
  transition: all .3s ease;
}

.c-sec__btn li a:hover img{
  opacity: .8;
}

/* mainvisual
====================================== */
.p-mainvisual {
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

/* howto
====================================== */
.p-rentacar-howto {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-rentacar-howto-list {
  position: relative;
  width: 32%;
  border: solid #3A815F;
  border-radius: 1em;
  background: #3A815F;
}

@media screen and (max-width: 765px) {
  .p-rentacar-howto-list {
    width: 100%;
  }
  .p-rentacar-howto-list + .p-rentacar-howto-list {
    margin-top: 2em;
  }
}

.p-rentacar-howto-list__fig {
  overflow: hidden;
  border-radius: .8em .8em 0 0;
  background: #fff;
}

.p-rentacar-howto-list__inner {
  padding: 1em 2em;
  color: #fff;
  background: #3A815F;
  border-radius: 0 0 .5em .5em;
  height: 13em;
}
@media screen and (max-width: 765px) {
  .p-rentacar-howto-list__inner {
    height: 14em;
  }
}

.p-rentacar-howto-list__head {
  margin-bottom: 0.3em;
  font-weight: bold;
  font-size: 1.6875em;
}

.p-rentacar-howto-list:not(:last-of-type):after {
  content: "";
  background-image: url(../img/arrow_right01.png);
  position: absolute;
  top: 0;
  right: -2.5em;
  bottom: 0;
  display: block;
  width: 50px;
  height: 50px;
  margin: auto 0;
  padding: 0;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

@media screen and (max-width: 765px) {
  .p-rentacar-howto-list:not(:last-of-type):after {
    transform: rotate(90deg) translate(165%, -50%);
    top: 71%;
    right: 50%;
  }
  .p-rentacar-howto-list__body{
    font-size: 1.45em;
  }
}
@media screen and (max-width: 580px) {
  .p-rentacar-howto-list:not(:last-of-type):after {
    top: 57%;
  }
}

/* tab
====================================== */
.p-tab-button-area {
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-weight: bold;
  font-size: 1.6875em;
  padding: 3em 1em 2em;
  color: #fff;
}
.p-tab-button {
  width: 100%;
  margin: 0 1em;
  padding: 1.2em 0;
  cursor: pointer;
  border-radius: .5em;
}
.p-tab-button._red {
  background: #E6534C;
}
.p-tab-button._blue {
  background: #19ADB9;
}
.p-tab-button.active{
  position: relative;
  /* border: solid 3px #033165; */
  padding: 1em 0;
  pointer-events: none;
}
/* .p-tab-button.active:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  z-index: 2;
} */
.p-tab-button.active._red:before {
  border-top: 12px solid #E6534C;
}
.p-tab-button.active._blue:before {
  border-top: 12px solid #19ADB9;
}
/* .p-tab-button.active:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #033165;
  z-index: 1;
} */
.p-tab-content {
  display: none;
  position: relative;
}
.p-tab-content.show {
  display: block;
}

/* camp
====================================== */
.p-campcar-main{
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-campcar-main{
    padding-bottom: 6em;
  }
}
.campcar_deco{
  position: absolute;
  right: 20px;
  bottom: -40px;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  .campcar_deco img{
    width: 70%;
    bottom: -6em;
  }
}
@media screen and (max-width: 580px) {
  .campcar_deco{
    right: -40px;
    bottom: -1em;
  }
  .campcar_deco img{
    width: 40%;
  }
}
.c-sec-container.p-campcar-detail{
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, 80%);
}
.p-campcar__body{
  margin: 6em 0;
}
@media screen and (max-width: 580px){
  .p-campcar__body{
    margin: 4em 0;
  }
}
.p-campcar-slider{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.p-camp__body {
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin: 2em auto 0;
}

/* tabl
====================================== */
.c-table-lead{
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 1em;
}
@media screen and (max-width: 580px){
  .c-table-lead{
    font-size: 1.4em;
    text-align: left;
  }
}
.c-table-container {
  position: relative;
}

.c-table-container + .c-table-container {
  margin-top: 5rem;
}

.c-table-container._set:after {
  content: "\002B";
  display: block;
  margin-bottom: -2rem;
  padding-top: 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
}

.c-table-container__inner {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 15px) 0 0/50px 100%, linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fff 15px) right/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) right/20px 100%;
  background-color: #fff;
  background-attachment: local, scroll, local, scroll;
  background-repeat: no-repeat;
}

.c-table-container__inner > * {
  min-width: 63em;
}

.c-table-container__inner._campcar > * {
  min-width: 25em;
}

.c-sec._price:last-of-type .c-table-container__inner > * {
  min-width: 40em;
}
@media screen and (max-width: 580px){
  .c-table-container__inner > * {
    min-width: 68em;
    font-size: 1.4em;
  }
}

/* data table
=============================== */
.c-data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #033067;
  border-left: 1px solid #033067;
  table-layout: fixed;
}

.c-data-table th,
.c-data-table td{
  padding: 1em .75em;
  border-right: 1px solid #033067;
  border-bottom: 1px solid #033067;
  text-align: center;
}
.c-data-table > thead > tr > th{
  border-right: 1px solid #A1B8CA;
}
.c-data-table > thead > tr > th:last-of-type{
  border-right: 1px solid #033067;
}
.c-data-table > thead > tr > th.subhead{
  border-right: 1px solid #033067;
}
.c-data-table thead th {
  background: #033067;
  color: #fff;
  font-weight: bold;
}

.c-data-table thead th em {
  display: block;
  font-weight: bold;
  font-size: 1.06667em;
}

.c-data-table thead th em span {
  display: inline;
  padding-left: .5em;
  font-size: .875em;
}

.c-data-table thead th > span {
  display: block;
  margin-top: .25em;
  font-size: .93333em;
}

.c-data-table thead th.subhead {
  background: #678DBE;
  color: #fff;
  font-weight: normal;
  font-size: .93333em;
}

.c-data-table tbody th {
  background: #fff;
  font-weight: bold;
}

.c-data-table tbody th ._fs {
  font-size: .75em;
}

.c-data-table tbody th[rowspan] {
  padding: 1.2em .33333em;
}

.c-data-table tbody th[rowspan] span {
  display: inline-block;
  min-height: 1em;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
          text-orientation: upright;
}

.c-data-table tbody th.total {
  background: #cc0000;
}

.c-data-table tbody td {
  width: 16.66667%;
  border: 1px solid #033067;
}

.c-data-table tbody td em {
  color: #2195c6;
  font-weight: bold;
  font-size: 1.125em;
}

.c-data-table tbody td.total {
  color: #cc0000;
  font-weight: bold;
}

/* notes
=========================== */
.c-notes {
  margin-top: 1em;
  line-height: initial;
}

.c-notes > li:before{
  content: "※";
}

.c-notes__frame {
  padding: .75em 1em;
  border: 1px solid;
  text-align: center;
  letter-spacing: -.05em;
}

.c-notes__desc:not(:first-child) {
  margin-top: 1.86667em;
}

.c-notes__desc:not(:last-child) {
  margin-bottom: 1.86667em;
}

.c-notes__desc > *:not(:last-child) {
  margin-bottom: 6px;
}

.c-notes__list > li {
  display: inline;
  font-size: .86667em;
  line-height: 1.46154;
}

.c-notes__list._broad:not(:last-child) {
  margin-bottom: 2.25em;
}

.c-notes__list._broad > li {
  line-height: 2.15385;
}

.c-notes__kei {
  padding: .75em 1em .75em 1.5em;
  padding-left: .3em;
  background: #e9f6fe;
  border: 2px solid #000;
  color: #333;
  text-align: center;
  letter-spacing: .3em;
}

.c-note-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: .86667em;
  line-height: 1.75;
}

.c-note-desc > dt {
  width: 6em;
  text-align: center;
  font-weight: 700;
}

.c-note-desc._hoshou > dt {
  background: #EB535F;
  color: #fff;
}

.c-note-desc._recycle > dt {
  background: #6eb92b;
  color: #fff;
}

.c-note-desc > dd {
  width: calc(100% - 6em);
  padding-left: .75em;
}

/* slick-slider
====================================== */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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);
          transform: translate3d(0, 0, 0);
}

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

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

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

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

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

.slick-slide a {
  outline: none;
}

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

.slick-slide img {
  display: block;
  width: 100%;
}

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

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

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

.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 */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 0;
  z-index: 10;
  display: block;
  width: 70px;
  height: 100%;
  margin: auto 0;
  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  -webkit-transition: opacity .4s;
          transition: opacity .4s;
}

@media screen and (max-width: 960px) {
  .slick-prev,
  .slick-next {
    width: 60px;
  }
}
@media screen and (max-width: 580px) {
  .slick-prev,
  .slick-next {
    width: 40px;
  }
}

.slick-prev:hover,
.slick-next:hover {
  opacity: .6;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev {
  left: -3.5rem;
  background-image: url(../img/arrow_left01.png);
}

.slick-next {
  right: -3.5rem;
  background-image: url(../img/arrow_right01.png);
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 0.5em;
  margin: 0 0.3em;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  outline: none;
  border: 0;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

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

.slick-dots li button {
  background: #AB9995;
}
.slick-dots li.slick-active button {
  background: #E2534B;
}

/* inquiry
====================================== */
.p-inquiry-inner{
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.p-inquiry__head{
  font-size: 1.8em;
}
.p-inquiry__phone-inner{
  padding: 1em 0 0;
}
.p-inquiry__phone-store{
  font-size: 1.3em;
}
.p-inquiry__phone{
  font-size: 2.5em;
  background: #fff;
  max-width: 60%;
  width: 350px;
  margin: 0 auto 0.3em;
  padding: 0 0 0.1em;
  border-radius: 5em;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.p-inquiry__phone a{
  color: #E5534B;
}
@media (min-width: 765px) {
  .p-inquiry__phone a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.p-inquiry__phone i{
  margin-right: 5px;
  width: 25px;
}
.p-inquiry__body{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.3em;
  padding-top: 1em;
}
@media screen and (max-width: 580px) {
  .p-inquiry__phone i{
    margin-right: 0;
  }
  .p-inquiry__phone i img{
    max-width: 60%;
  }
}
