@charset "UTF-8";

body {
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  color: #000000;
}

html {
  font-size: 18px;
}

a {
  color: #1A6AD8;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #EA9727;
}

a,
a:focus {
  outline: none;
}

button,
input,
input:focus {
  outline: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
}

p {
  margin: 0;
  padding: 0;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

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

   Common header

=================================== */
.header {
  padding-left: 15px;
  padding-right: 15px;
  background-color: #ffffff;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left,
.header__right {
  width: 50%;
}

.header__left {
  font-size: 24px;
  color: #034077;
  font-weight: bold;
  line-height: 1.3;
}

.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav {
  margin-left: 16px;
}

.header-hint {
  margin-right: 8px;
}

.header-sns {
  margin-right: 24px;
}

.header a {
  display: inline-block;
}

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

   ハンバーガーメニュー

=================================== */
#nav-open {
  margin-top: 5px;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: block;
}

.header-nav-line {
  position: absolute;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #333333;
  transition: 0.3s;
}

.header-nav-line:nth-child(1) {
  top: 0;
}

.header-nav-line:nth-child(2) {
  top: 10px;
}

.header-nav-line:nth-child(3) {
  top: 20px;
}

.header-nav-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 1;
}

#nav-open.on .header-nav-line:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

#nav-open.on .header-nav-line:nth-child(2) {
  display: none;
}

#nav-open.on .header-nav-line:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

#nav-open.on .header-nav-txt {
  display: none;
}

.navDrawer {
  position: relative;
}

.navDrawer__list li {
  border-bottom: solid 1px #000;
}

.navDrawer__list li:first-child {
  border-top: solid 1px #000;
}

.navDrawer__list a {
  color: #000;
  display: block;
  padding: 12px 8px;
  position: relative;
  font-size: 20px;
}

.navDrawer__list a::after {
  font-family: 'FontAwesome';
  content: '\f0da';
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

#navDrawerInner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.93);
  z-index: 15;
  display: none;
  padding: 0 32px 32px;
}

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

   Home Cover

=================================== */
.cover {
  overflow: hidden;
}

.cover img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.slick-dotted.slick-slider {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.slick-dots {
  background: #404040;
  height: 40px;
  bottom: 0;
}

.slick-prev,
.slick-next {
  top: auto;
  bottom: 8px;
  transform: none;
  z-index: 9;
}

.slick-prev::before,
.slick-next::before {
  font-family: 'FontAwesome';
}

.slick-prev {
  left: 25px;
}

.slick-prev::before {
  content: '\f053';
}

.slick-next {
  right: 25px;
}

.slick-next::before {
  content: '\f054';
}

.slick-dots li button::before {
  color: #fff;
  opacity: 1;
  font-size: 12px;
}

.slick-dots li.slick-active button::before {
  color: #FFFF55;
  opacity: 1;
}

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

   main nav

=================================== */
.mainNav {
  display: flex;
  justify-content: flex-start;
}

.mainNav a {
  height: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mainNav-item {
  width: 33.333333333%;
  height: 100%;
  transition: 0.3s;
}

.mainNav-news {
  background-color: #f5b800;
}

.mainNav-news:hover {
  background-color: #ffc825;
}

.mainNav-campingcar {
  background-color: #204E79;
}

.mainNav-campingcar:hover {
  background-color: #265e93;
}

.mainNav-rvpark {
  background-color: #128FCD;
}

.mainNav-rvpark:hover {
  background-color: #1ba3e7;
}

.mainNav-icon {
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainNav-ttl {
  height: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  padding-bottom: 6px;
}

.mainNav-content {
  padding: 16px 0 24px;
}

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

  section

=================================== */
.sectionCommon {
  padding: 60px 0;
}

.section-border {
  border-bottom: solid 1px #404040;
  padding-bottom: 60px;
}

.sectionCommon-border {
  padding-bottom: 0;
}

.ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.ttl-border {
  padding-bottom: 6px;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  display: inline-block;
}

.ttl-border img {
  vertical-align: middle;
  margin-right: 10px;
}

.ttl-border-red {
  border-color: #f20000;
}

.ttl-border-yellow {
  border-color: #FEC000;
}

.ttl-border-bule {
  border-color: #0A70C0;
}

.ttl-border-orange {
  border-color: #f8b62b;
}

.ttl-border-green {
  border-color: #2fc436;
}

.ttl-sub {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #128FCD;
  margin-bottom: 40px;
}

.ttl-img img {
  vertical-align: middle;
  margin-right: 10px;
}

.ttlcatch {
  color: #1E90FF;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.ttl-border {
  padding-bottom: 6px;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  display: inline-block;
}

.ttl-border img {
  vertical-align: middle;
  margin-right: 10px;
}

.ttl-border-red {
  border-color: #f20000;
}

.ttl-border-yellow {
  border-color: #FEC000;
}

.ttl-border-bule {
  border-color: #0A70C0;
}

.ttl-border-orange {
  border-color: #f8b62b;
}

.ttl-border-green {
  border-color: #2fc436;
}

.ttl-sub {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #128FCD;
  margin-bottom: 40px;
}

.ttl-img img {
  vertical-align: middle;
  margin-right: 10px;
}

.btnArea {
  display: flex;
  justify-content: space-between;
}

.btnArea-item {
  width: calc((100% - 20px) / 2);
  text-align: center;
}

.btnArea a {
  display: block;
  color: #fff;
  padding: 16px 0;
  position: relative;
  box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.35);
  /*
    &::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 90px;
      height: 100%;
      background-position: center center;
      background-repeat: no-repeat;
    }
*/
}

.btnArea a span {
  display: block;
  padding: 8px 0;
  position: relative;
  font-size: 38px;
  /*
      &::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 4px;
        height: 100%;
        background: #fff;
      }
*/
}

.btnArea a:hover {
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
  top: 4px;
}

.btnArea a.howto {
  background: #0A70C0;
  /*
      &::before {
        background-image: url(../img/common/icon_howto.png);
        background-size: 30px;
        @media only screen and (-webkit-min-device-pixel-ratio: 2){
          background-image: url(../img/common/icon_howto@2x.png);
        }
      }
*/
}

.btnArea a.howto:hover {
  background-color: #1184db;
}

.btnArea a.reservation {
  background: #1DB050;
  /*
      &::before {
        background-image: url(../img/common/icon_reservation.png);
        background-size: 60px;
        @media only screen and (-webkit-min-device-pixel-ratio: 2){
          background-image: url(../img/common/icon_reservation@2x.png);
        }
      }
*/
}

.btnArea a.reservation:hover {
  background-color: #21c259;
}

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

  news

=================================== */
.newsItem {
  margin-bottom: 60px;
}

.newsItem-img {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}

.newsItem-img::before {
  content: "";
  display: block;
  padding-top: 50%;
  /* 高さを幅の75%に固定 */
}

.newsItem-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.newsItem-img img {
  width: 100%;
  height: auto;
}

.newsItem-txt {
  display: block;
}

.newsItem a {
  text-decoration: underline;
  display: block;
  background-color: #fff;
}

.newsMore {
  border-bottom: solid 1px #404040;
}

.newsMore a {
  padding: 24px 2.5em 24px 0;
  display: block;
  position: relative;
  text-align: right;
}

.newsMore a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: 'FontAwesome';
  content: '\f054';
  font-size: 28px;
  color: #1A6AD8;
}

.newsMore a:hover {
  background: #f2f7ff;
}

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

  パンくずリスト

=================================== */
.breadcrumbs {
  padding: 6px 0;
  background-color: #919191;
}

.breadcrumbs ul {
  display: table;
}

.breadcrumbs ul li {
  margin: 0 8px 0 0;
  font-size: 12px;
  float: left;
}

.breadcrumbs ul li::before {
  padding: 0 8px 0 0;
  content: "\f105";
  font-family: FontAwesome;
  font-size: 14px;
  color: #fff;
}

.breadcrumbs ul li:first-child::before {
  padding: 0 3px 0 0;
  content: "\f015";
}

.breadcrumbs ul li a {
  color: #fff;
}

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

  コンテンツページ

=================================== */
.pageListHeader {
  text-align: center;
  padding: 60px 0;
}

.pageListTitle {
  font-weight: bold;
  font-size: 30px;
}

.pageListTitle-hint img {
  max-width: 40px;
}

.pageDetailHeader {
  padding: 40px 0;
}

.pageDetailTitle {
  font-weight: bold;
  font-size: 30px;
  border-bottom: solid 2px #0A0A0A;
  padding-bottom: 6px;
  margin-bottom: 24px;
}

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

  キャンピングカー泊　施設一覧

=================================== */
.list-area {
  font-size: 24px;
  color: #fff;
  background: #0A70C0;
  padding: 16px;
  margin-bottom: 40px;
}

.list-name {
  margin-bottom: 16px;
}

.list-name a {
  font-size: 28px;
  text-decoration: underline;
  line-height: 1;
}

.list-date {
  margin-bottom: 8px;
  display: inline-block;
  font-size: 1.1em;
}

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

  キャンピングカー泊　詳細

=================================== */
.detailMainPhoto {
  margin-bottom: 24px;
}

.detailMainPhoto img {
  width: 100%;
  height: auto;
}

.detailBtn {
  margin-bottom: 36px;
}

.detailBtn-item {
  position: relative;
  display: block;
  height: 200px;
  background: #1DB050;
  text-align: center;
  color: #fff;
  padding: 16px;
  box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.35);
}

.detailBtn-item:hover {
  color: #fff;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
  top: 4px;
}

.detailBtn-item span {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  height: 50%;
}

.detailBtn-item span:first-child {
  align-items: flex-end;
  font-size: 36px;
  padding-bottom: 8px;
  border-bottom: solid 1px #fff;
}

.detailBtn-item span:last-child {
  align-items: flex-start;
  font-size: 20px;
  padding-top: 8px;
}

.detailBtn-item-reservation {
  background: #19B0F0;
}

.detailInfo1 {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: center;
}

.detailInfo1-icon {
  width: 18%;
  color: #fff;
  display: block;
  //visibility: hidden;
  //height: 200px;
  height: 110px;
  background: #B9B9B9;
  border-radius: 15px;
}

.detailInfo1-icon.on {
  background: #2C64BE;
  visibility: visible;
}

.detailInfo1 span {
  display: flex;
  justify-content: center;
  text-align: center;
}

.detailInfo1 span:first-child {
  height: 60%;
  align-items: center;
  padding: 16px;
}

.detailInfo1 span:last-child {
  height: 40%;
  align-items: center;
  line-height: 1.2;
}

.detailInfoIcon {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: center;
  padding: 10px 0px 0px 0px;
}

.detailInfoIcon-icon {
    width: 18%;
    color: #fff;
    display: block;
    /* visibility: hidden; */
    /* height: 200px; */
    background: #B9B9B9;
    border-radius: 15px;
}

.detailInfoIcon-icon.on {
  background: #2C64BE;
  visibility: visible;
}

.detailInfoIcon span {
  display: flex;
  justify-content: center;
  text-align: center;
}

.ddetailInfoIcon span:first-child {
    /* height: 60%; */
    width: 75%;
    align-items: center;
    align: center;
    /* text-align: center; */
    margin: auto;
    padding: 5px;
}

.detailInfoIcon span:last-child {
    height: 40%;
    align-items: center;
    line-height: 1.2;
    font-size: 0.9em;
}


.detailInfo2 {
  margin-bottom: 36px;
}

.detailInfo2-item21 {
  width: 100%;
  background: #ffff00;
  color: #fff;
  margin-bottom: 12px;
}

.detailInfo2-item {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}

.detailInfo2-item th,
.detailInfo2-item td {
  padding: 12px;
}

.detailInfo2-item th {
  border-right: solid 2px #fff;
  width: 20%;
  font-weight: normal;
}

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

   アイコン

=================================== */
/* 利用料金 */
.detailInfo2-item-usageFee {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-usageFee th,
.detailInfo2-item-usageFee td {
  padding: 12px;
}
.detailInfo2-item-usageFee th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-usageFee {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-usageFee th,
.detailInfo2-item-usageFee td {
  padding: 12px;
}
.detailInfo2-item-usageFee th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f157";
}

/* 利用時間 */
.detailInfo2-item-utilizationTime {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-utilizationTime th,
.detailInfo2-item-utilizationTime td {
  padding: 12px;
}
.detailInfo2-item-utilizationTime th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-utilizationTime {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-utilizationTime th,
.detailInfo2-item-utilizationTime td {
  padding: 12px;
}
.detailInfo2-item-utilizationTime th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f017";
}

/* 予約受付 */
.detailInfo2-item-reservationReception {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-reservationReception th,
.detailInfo2-item-reservationReception td {
  padding: 12px;
}
.detailInfo2-item-reservationReception th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-reservationReception {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-reservationReception th,
.detailInfo2-item-reservationReception td {
  padding: 12px;
}
.detailInfo2-item-reservationReception th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f044";
}

/* 車室枠 */
.detailInfo2-item-carRoomFrame {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-carRoomFrame th,
.detailInfo2-item-carRoomFrame td {
  padding: 12px;
}
.detailInfo2-item-carRoomFrame th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-carRoomFrame {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-carRoomFrame th,
.detailInfo2-item-carRoomFrame td {
  padding: 12px;
}
.detailInfo2-item-carRoomFrame th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    /*content: "\f5b6";*/
    content: "\f0d1";
}

/* トイレ */
.detailInfo2-item-toilet {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-toilet th,
.detailInfo2-item-toilet td {
  padding: 12px;
}
.detailInfo2-item-toilet th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-toilet {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-toilet th,
.detailInfo2-item-toilet td {
  padding: 12px;
}
.detailInfo2-item-toilet th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 3px 0px 0px;
    margin: auto;
    /*content: "\f7bd";*/
    content: "\f182";
}

/* 火の使用 */
.detailInfo2-item-useOfFire {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfFire th,
.detailInfo2-item-useOfFire td {
  padding: 12px;
}
.detailInfo2-item-useOfFire th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-useOfFire {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfFire th,
.detailInfo2-item-useOfFire td {
  padding: 12px;
}
.detailInfo2-item-useOfFire th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    /*content: "\f3b1";*/
    content: "\f06d";
}

/* ペットの宿泊可否 */
.detailInfo2-item-pet {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-pet th,
.detailInfo2-item-pet td {
  padding: 12px;
}
.detailInfo2-item-pet th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-pet {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-pet th,
.detailInfo2-item-pet td {
  padding: 12px;
}
.detailInfo2-item-pet th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    /*content: "\f6d3";*/
    content: "\f1b0";
    /*content: "\f6d4";*/
}

/* 食事処 */
.detailInfo2-item-restaurant {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-restaurant th,
.detailInfo2-item-restaurant td {
  padding: 12px;
}
.detailInfo2-item-restaurant th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-restaurant {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-restaurant th,
.detailInfo2-item-restaurant td {
  padding: 12px;
}
.detailInfo2-item-restaurant th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    /*content: "\e2eb";*/
    /*content: "\f79f";*/
    /*content: "\f4e3";*/
    /*content: "\f2e7";*/
    /*content: "\f5a7";*/
    /*content: "\f80f";*/
    /*content: "\f54f";*/
    content: "\f0f4";
}


/* 水場の使用 */
.detailInfo2-item-useOfWater {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfWater th,
.detailInfo2-item-useOfWater td {
  padding: 12px;
}
.detailInfo2-item-useOfWater th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-useOfWater {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfWater th,
.detailInfo2-item-useOfWater td {
  padding: 12px;
}
.detailInfo2-item-useOfWater th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    /*content: "\f3b1";*/
    content: "\f043";
}



/* Wifiの使用 */
.detailInfo2-item-useOfWifi {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfWifi th,
.detailInfo2-item-useOfWifi td {
  padding: 12px;
}
.detailInfo2-item-useOfWifi th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-useOfWifi {
  width: 100%;
  background: #2C64BE;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-useOfWifi th,
.detailInfo2-item-useOfWifi td {
  padding: 12px;
}
.detailInfo2-item-useOfWifi th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f1eb";
}



/* 利用者特典 */
.detailInfo2-item-userBenefits {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-userBenefits th,
.detailInfo2-item-userBenefits td {
  padding: 12px;
}
.detailInfo2-item-userBenefits th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-userBenefits {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-userBenefits th,
.detailInfo2-item-userBenefits td {
  padding: 12px;
}
.detailInfo2-item-userBenefits th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f06b";
}

/* 注意点 */
.detailInfo2-item-importantPoint {
  width: 100%;
  background: #7F6000;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-importantPoint th,
.detailInfo2-item-importantPoint td {
  padding: 12px;
}
.detailInfo2-item-importantPoint th {
  border-right: solid 2px #fff;
  width: 15%;
  font-weight: normal;
}
.detailInfo2-item-importantPoint {
  width: 100%;
  background: #EC2552;
  color: #fff;
  margin-bottom: 12px;
}
.detailInfo2-item-importantPoint th,
.detailInfo2-item-importantPoint td {
  padding: 12px;
}
.detailInfo2-item-importantPoint th:first-child::before {
    width: 20%;
    font-weight: normal;
    font-family: 'FontAwesome';
    padding: 0 5px 0px 0px;
    margin: auto;
    content: "\f06a";
}

.detailInfo21 {
  margin-bottom: 36px;
}

.detailInfo2-item2 {
  width: 100%;
  background: #ffa500;
  color: #fff;
  margin-bottom: 12px;
}

.detailInfo2-item th,
.detailInfo2-item td {
  padding: 12px;
}

.detailInfo2-item th {
  border-right: solid 2px #fff;
  width: 20%;
  font-weight: normal;
}

.detailInfo3 {
  line-height: 1.8;
  margin-bottom: 36px;
}

.detailInfo3 p {
  margin-bottom: 1em;
  line-height: 1.8;
}

.detailReservationImg {
  margin-bottom: 36px;
}

.detailReservationImg a {
  position: relative;
  display: block;
  box-shadow: 0px 6px 6px 1px rgba(0, 0, 0, 0.35);
}

.detailReservationImg a:hover {
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.15);
  top: 6px;
}

.detailReservationImg div[class*="col-"] {
  margin-bottom: 24px;
}

.detailTitle {
  background: #0A70C0;
  color: #fff;
  padding: 8px;
  text-align: center;
  margin-top: 36px;
  margin-bottom: 24px;
}

.detailTitle.brown {
  background: #C55A12;
}

.detailSlider {
  position: relative;
  margin-bottom: 40px;
}

.detailSlider__inner {
  text-align: center;
  font-size: .9rem;
}

.detailSlider img {
  width: 250px;
  height: 250px;
  padding-left: 5px;
  padding-right: 5px;
  object-fit: cover;
}

.detailSlider .slider-ttl {
  width: 250px;
  display: block;
  text-align: center;
}

.detailSlider .slick-prev {
  left: 10px;
  top: 46%;
}

.detailSlider .slick-next {
  right: 10px;
  top: 46%;
}

.detailSlider .slick-prev,
.detailSlider .slick-next {
  width: 32px;
  height: 32px;
  z-index: 99;
}

.detailSlider .slick-prev:before,
.detailSlider .slick-next:before {
  font-size: 32px;
}

.detailSlider a {
  text-decoration: none;
}

.detailSlider-dots {
  position: absolute;
  bottom: -5px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  left: -10px;
}

.detailSlider-dots li,
.detailSlider-dots li button {
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  position: relative;
  display: inline-block;
  width: 13px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.detailSlider-dots li button::before {
  font-family: 'slick';
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: #848484;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.detailSlider-dots li.slick-active button::before {
  color: #0A70C0;
}


/* 地図iframe */
.sectionaccess {
    background: #fff;
    margin: 20px auto 0;
    max-width: 1000px;
    padding: 10px 40px 10px;
}

#access .address {
    margin: 0 0 10px;
    font-weight: bold;
}

.ggmap {
    position: relative;
    margin: 0 0 10px;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.ggmap iframe, .ggmap object, .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


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

  標準ページ

=================================== */
.pageHeader {
  text-align: center;
  padding: 60px 0;
}

.pageTitle {
  font-weight: bold;
  font-size: 30px;
}

.pageMokuji {
  margin-top: 16px;
  font-weight: bold;
  font-size: 24px;
}

.pageMokuji-body {
  display: inline-block;
}

.pageMokuji-body a {
  display: block;
  text-align: left;
  text-decoration: underline;
  padding: 6px 0;
}

.pageBody-ttl {
  background: #0A70C0;
  color: #fff;
  padding: 8px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}

.pageBody p {
  line-height: 1.8;
  margin-bottom: 1em;
}

.pageBodyPhoto {
  margin: 16px 0;
}

.pageBody>.container>h2:first-child {
  margin-top: 0;
}

.flow {
  border-bottom: solid 1px #e9e9e9;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 1.2rem;
}

span.num {
  display: inline-block;
  margin-right: .5em;
  background: #004076;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 2em;
  font-size: 1rem;
  font-weight: bold;
}

ul.kome {
  margin-top: 1.5em;
  margin-left: 0;
  margin-bottom: 2em;
}

.pagination-entry {
  border-top: solid 1px #eee;
  margin-top: 40px;
}

.pagination-entry ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.pagination-entry ul li {
  width: 100%;
  line-height: 1;
  padding: 16px 0 0;
  margin: 0;
}

.pagination-entry ul li a {
  vertical-align: middle;
  display: inline-block;
  padding: 16px 8px;
}

.pagination-entry-prev {
  text-align: right;
}

.pagination-entry-next {
  text-align: left;
}

@media (max-width: 991.98px) {
  .pagination-entry {
    margin-bottom: 48px;
  }

  .pagination-entry ul li {
    padding: 0;
  }
}

.pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.pagination li {
  position: relative;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 35px;
}

.pagination li a,
.pagination li span.active {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #fff;
  background: #8a8a8a;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination li a:hover,
.pagination li span.active:hover {
  color: #fff;
  background: #113162;
}

.pagination li.prev-s span,
.pagination li.next-e span {
  position: relative;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagination li.prev-s span span,
.pagination li.next-e span span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e7e7e7;
}

.pagination li span {
  display: table-cell;
  vertical-align: middle;
}

.pagination li span.active {
  background: #113162;
}

.pagination li.prev a,
.pagination li.next a {
  background: #fff;
  color: #bababa;
}

.internalLinkBody {
    background: #f0f0f0;
    /*margin-bottom: 40px;*/
	margin-top: 50px;
}

.internalLinkBodyList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 18px 100px;
    /*padding: 18px 20px;*/
}

.internalLinkBodyItems {
    margin-top: 7px;
    margin-bottom: 7px;
    width: 140px;
    text-decoration: underline;
}

.internalLinkBodyAnchor {
    /*font-weight: bold;*/
    /*padding-left: 14px;*/
    position: relative;
    font-size: 16px;
}

.internalLinkBodyAnchor:before {
	-webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 4px;
    content: '\f077';
    font-family: 'FontAwesome';
    font-size: 15px;
    color: #1A6AD8;
    position: absolute;
    top: 9px;
    bottom: 0;
    /* right: 83px; */
    left: -8px;
    margin: auto;
    text-align: center;
}


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

  Form

=================================== */
input[type="text"],
input[type="mail"],
textarea {
  width: 100%;
  font-size: 16px;
  padding: 8px;
  border: solid 1px #c5c5c5;
}

.required {
  color: #fff;
  background-color: #db4054;
  font-size: 12px;
  padding: 2px 5px;
  margin-left: .5em;
}

input[type="submit"],
input[type="button"] {
  display: inline-block;
  cursor: pointer;
  background-color: #2cbda3;
  font-size: 1.1rem;
  color: #fff;
  padding: 12px 2em;
  min-width: 30%;
}

.input__submit {
  margin: 40px auto 20px;
  text-align: center;
}

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

  お問い合わせ表組み

=================================== */
table.contact {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

table.contact thead th,
table.contact th,
table.contact td {
  padding: 12px 8px;
  border-bottom: 1px solid #dddddd;
  line-height: 1.4;
}

table.contact th {
  background: #f6f6f6;
  text-align: left;
  white-space: nowrap;
  width: 25%;
  font-weight: normal;
}

.contact-note {
  text-align: center;
  margin-top: 24px;
}

.contact-note-ttl {
  font-family: 1.3em;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

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

  footer

=================================== */
.footer-nav {
  text-align: center;
}

.footer-nav li {
  display: inline-block;
  margin-right: 16px;
  padding-right: 16px;
}

.footer-nav li:not(:last-child) {
  border-right: solid 1px #1f1f1f;
}

.copyright {
  margin: 40px 0;
  text-align: center;
}

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

  ページトップボタン

=================================== */
#page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  /*bottom: 10px;*/
  bottom: 90px;
  background: #666666;
  /*background: #2F6EBA;*/
  /*border-radius: 3px;*/
  border-radius: 30px;
  /*border-radius: 40px;*/
}

#page-top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
  position: absolute;
  /*
  text-align: center;
  top: 20px;
  color: #FFFFFF;
  font-size: 15px;
  */
}

#page-top a::after {
  content: '\f077';
  font-family: 'FontAwesome';
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: 13px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}