@charset "utf-8";
/* CSS Document */

/*----------------------------------
 追加・修正
----------------------------------*/
/*TOPページ　キャンペーン・プログラムバナー追加*/
#index .cpbtn {
  background-color: #efefef;
}

.cpbtnset {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cpbtnset li {
  width: calc((100% - 1.694%) / 2);
  height: auto;
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.cpbtnset li {
  margin-bottom: 1.694%;
}

.cpbtnset li:nth-child(5),
.cpbtnset li:nth-child(6) {
  margin-bottom: 0;
}

.cpbtnset li img {
  display: block;
  width: 100%;
  height: auto;
}

.cpbtnset li a {
  transition: 0.3s;
}

.cpbtnset2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.cpbtnset2 li {
  width: calc((100% - 3.388%) / 3);
  height: auto;
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.cpbtnset2 li img {
  display: block;
  width: 100%;
  height: auto;
}

.cpbtnset2-bnr-sp {
  display: none !important;
}

.cpbtnset li a:hover,
.cpbtnset2 li a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 575px) {
  .cpbtnset li {
    width: 90%;
    margin: 0 auto 10px auto;
  }

  .cpbtnset li:nth-child(5) {
    margin-bottom: 10px;
  }

  .cpbtnset2 li {
    width: 90%;
    margin: 0 auto 10px auto;
  }

  .cpbtnset2-bnr-pc {
    display: none !important;
  }

  .cpbtnset2-bnr-sp {
    display: block !important;
  }

  .cpbtnset li a:hover,
  .cpbtnset2 li a:hover {
    opacity: 1;
  }
}

/*----------------------------------
モーダルウインドウ
----------------------------------*/
/* モーダルCSS */
.modalarea {
  display: none;
  position: fixed;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalbg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modalwrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 860px;
  max-height: calc(100vh - 80px);
  background-color: #fff;
  overflow: auto;
}

.modalclose {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalhead {
  background-color: #000;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  margin: 0;
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.modalhead img {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 584px) {
  .modalhead img {
    max-width: 100px;
  }
}
.modalbody {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px;
}

@media screen and (max-width: 584px) {
  .modalbody {
    padding: 20px;
  }
}

.modalbody h3 {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

@media screen and (max-width: 584px) {
  .modalbody h3 {
    font-size: 16px;
  }
}

.modalbody h3 span {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #363636;
  box-sizing: border-box;
}

.modalbody h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 30%;
  height: 2px;
  background-color: #ed6d00;
  z-index: 2;
}

.modalbody .mcl {
  display: flex;
  flex-wrap: wrap;
}

.modalbody .mcl li {
  width: calc((100% - 20px) / 2);
  margin-bottom: 20px;
  position: relative;
  border: 2px solid #000;
  transition: 0.3s;
  overflow: hidden;
}

.modalbody .mcl li::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 100%;
  left: 150%;
  top: 0;
  transform: skewX(-17.62deg);
  background-color: #ed6d00;
  opacity: 1;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.52, 0.08, 0.18, 1);
}

.modalbody .mcl li::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 100%;
  left: -150%;
  top: 0;
  transform: skewX(-17.62deg);
  background-color: #ed6d00;
  opacity: 1;
  z-index: 1;
}

.modalbody .mcl li:hover::before {
  transition: 0s 0.6s cubic-bezier(0.52, 0.08, 0.18, 1);
  left: -10%;
}

.modalbody .mcl li:hover a::after {
  right: 6px;
  background-image: url("../images/common/arr_01_w.png");
}

@media screen and (max-width: 584px) {
  .modalbody .mcl li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.modalbody .mcl li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #3585c5;
  padding: 30px 10px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 584px) {
  .modalbody .mcl li a {
    padding: 28px 10px;
    font-size: 15px;
  }
}

.modalbody .mcl li a p {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 15px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  color: #000;
  transition: 0.3s;
}

.modalbody .mcl li a::after {
  width: 14px;
  height: 14px;
  background-size: cover;
  background-position: center center;
  background-image: url("../images/common/arr_01.png");
  content: "";
  right: 10px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: 0.3s;
}

.modalbody .mcl li:hover::after {
  left: -10%;
  transition: 0.6s cubic-bezier(0.52, 0.08, 0.18, 1);
}

.modalbody .mcl li:nth-child(2n) {
  margin-left: 20px;
}

@media screen and (max-width: 584px) {
  .modalbody .mcl li:nth-child(2n) {
    margin-left: 0;
  }
}

/*ボタン*/
nav.rbtn1 button {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  background: initial;
  border: none;
  z-index: 3;
}

@media screen and (max-width: 584px) {
  nav.rbtn1 button {
    font-size: 10px;
  }
}

.modalclose {
  box-sizing: border-box;
  padding: 10px;
  background-color: #000;
  position: absolute;
  width: 120px;
  right: 0;
  top: 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.modalclose p {
  text-align: center;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
}

/*----------------------------------
料金表
----------------------------------*/
#index .secin .sec7c .price-table {
  width: 100%;
  border-radius: 10px;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}
#index .secin .sec7c .price-table .orange {
  color: #ed6d00;
}
#index .secin .sec7c .price-table .blue {
  color: #368cc5;
}
#index .secin .sec7c .price-table .light-blue {
  color: #33acbf;
}
#index .secin .sec7c .price-table th,
#index .secin .sec7c .price-table td {
  padding: 15px 0;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table th,
  #index .secin .sec7c .price-table td {
    padding: 8px 3px;
  }
}

#index .secin .sec7c .price-table thead th:first-child {
  background-color: #fff !important;
}

#index .secin .sec7c .price-table thead .bottom th {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table thead .bottom th {
    font-size: 11px;
  }
}

#index .secin .sec7c .price-table thead th,
#index .secin .sec7c .price-table tbody th {
  font-weight: bold;
}
#index .secin .sec7c .price-table tbody {
  border: 1px solid #ccc;
}

#index .secin .sec7c .price-table tbody th {
  color: #000;
  font-size: 13px;
  background-color: #e5e2e0;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table tbody th {
    font-size: 12px;
  }
}
#index .secin .sec7c .price-table tbody td {
  color: #000;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table tbody td {
    font-size: 11px;
  }
}
#index .secin .sec7c .price-table tbody td:last-child {
  border-right: 1px solid #ccc;
}
#index .secin .sec7c .price-table tbody th {
  border-left: 1px solid #ccc;
}
#index .secin .sec7c .price-table tbody .first th,
#index .secin .sec7c .price-table tbody .first td {
  border-top: 1px solid #ccc;
}

#index .secin .sec7c .txt-box p.head {
  font-size: 14px;
}

#index .secin .sec7c .txt-box p {
  color: #000;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}
#index .secin .sec7c .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .sp {
    display: block;
  }
}
#index .secin .sec7c .price-table .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
}
/*一般会員*/
#index .secin .sec7c .price-table {
  border-collapse: separate;
}
#index .secin .sec7c .price-table.normal thead .top th {
  width: 25%;
}
#index .secin .sec7c .price-table.normal thead .top th:first-child {
  width: 19%;
}
#index .secin .sec7c .price-table.normal thead .top th:nth-child(2),
#index .secin .sec7c .price-table.normal thead .top th:nth-child(4) {
  background-color: #fff;
}
#index .secin .sec7c .price-table.normal thead .top .pop {
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table thead .top .pop {
    font-size: 10px;
  }
}
#index .secin .sec7c .price-table.normal thead th {
  background-color: #eb9e39;
  border: none;
}
#index .secin .sec7c .price-table.normal thead .pop {
  background-color: #ed6d00;
  border-left: 4px solid #ed6d00;
  border-right: 4px solid #ed6d00;
}
#index .secin .sec7c .price-table.normal tbody .bd {
  border-left: 4px solid #ed6d00;
  border-right: 4px solid #ed6d00;
}
#index .secin .sec7c .price-table.normal tbody .last .bd {
  border-bottom: 4px solid #ed6d00;
}
#index .secin .sec7c .price-table.normal .big {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.normal .big {
    font-size: 16px;
  }
}
#index .secin .sec7c .price-table.normal .circle {
  border: 3px solid #ed6d00;
}

/*法人会員*/
#index .secin .sec7c .table-wrap {
  overflow: auto;
}
#index .secin .sec7c .price-table.company {
  min-width: 490px;
}
#index .secin .sec7c .price-table.company thead .top th:first-child {
  width: 20%;
}
#index .secin .sec7c .price-table.company thead .top th:nth-child(2) {
  width: 24%;
}
#index .secin .sec7c .price-table.company thead .top th:nth-child(3) {
  width: 30%;
}
#index .secin .sec7c .price-table.company thead .top th:nth-child(4) {
  width: 26%;
}

#index .secin .sec7c .price-table.company thead th {
  background-color: #3b3b3b;
  border: none;
}
#index .secin .sec7c .price-table.company tbody th.bg-blue {
  color: #fff;
  background-color: #368cc5;
}
#index .secin .sec7c .price-table.company thead .top th {
  padding: 15px 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.company thead .top th {
    font-size: 10px;
  }
}
#index .secin .sec7c .price-table.company thead .bottom th {
  padding: 2px 10px;
  font-size: 11px;
}
#index .secin .sec7c .price-table.company thead .top th,
#index .secin .sec7c .price-table.company thead .bottom th {
  border-right: 1px solid #fff;
}
#index .secin .sec7c .price-table.company thead .top th:last-child,
#index .secin .sec7c .price-table.company thead .bottom th:last-child {
  border-right: none;
}
#index .secin .sec7c .price-table.company .big {
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.company .big {
    font-size: 14px;
  }
}
#index .secin .sec7c .price-table.company tbody th.bg-blue {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.company tbody th.bg-blue {
    font-size: 16px;
  }
}
#index .secin .sec7c .price-table.company tbody th.bg-blue span {
  display: block;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.company tbody th.bg-blue span {
    font-size: 9px;
  }
}
#index .secin .sec7c .price-table.company tbody td {
  border-left: 1px solid #ccc;
}
#index .secin .sec7c .price-table.company .circle {
  border: 3px solid #368cc5;
}
/*割引*/
#index .secin .sec7c .price-table.discount thead th {
  font-size: 14px;
  background-color: #33acbf;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.discount thead th {
    font-size: 13px;
  }
}
#index .secin .sec7c .price-table.discount thead th span {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #index .secin .sec7c .price-table.discount thead th span {
    font-size: 11px;
  }
}
#index .secin .sec7c .price-table.discount thead th {
  width: 29%;
}
#index .secin .sec7c .price-table.discount thead th:first-child {
  width: 22%;
}
#index .secin .sec7c .price-table.discount thead th,
#index .secin .sec7c .price-table.discount tbody td {
  border-right: 1px solid #ccc;
}
#index .secin .sec7c .price-table .light-blue {
  font-weight: bold;
}
/*----------------------------------
SHOPページ
----------------------------------*/
.shop_kv {
  position: relative;
  height: 550px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .shop_kv {
    height: 300px;
  }
}
@media screen and (max-width: 584px) {
  .shop_kv {
    height: 200px;
  }
}
.shop_kv.fo {
  background-image: url(../images/shop/main_f.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 584px) {
  .shop_kv.fo {
    background-image: url(../images/shop/main_f_sp.jpg);
  }
}
.shop_kv.hs {
  background-image: url(../images/shop/main_h.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 584px) {
  .shop_kv.hs {
    background-image: url(../images/shop/main_h_sp.jpg);
  }
}
.shop_kv .shop_name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 584px) {
  .shop_kv .shop_name {
    font-size: 20px;
  }
}
#shop-info .info-box {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
@media screen and (max-width: 584px) {
  #shop-info .info-box {
    margin: 0 0;
  }
}
#shop-info .detail,
#shop-info .map {
  width: 50%;
}
@media screen and (max-width: 584px) {
  #shop-info .detail,
  #shop-info .map {
    width: 100%;
  }
}
#shop-info .detail {
  padding-right: 25px;
}
@media screen and (max-width: 584px) {
  #shop-info .detail {
    padding-right: 0;
  }
}
#shop-info .detail dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 25px 0;
  font-size: 15px;
  line-height: 1.8;
  border-bottom: 1px solid #ccc;
}
#shop-info .detail dl.first {
  border-top: 1px solid #ccc;
}
#shop-info .detail dt {
  width: 136px;
  font-weight: bold;
}
#shop-info .detail dd {
  flex: 1;
  margin: 0;
}
#shop-info .map {
  padding-left: 25px;
}
@media screen and (max-width: 584px) {
  #shop-info .map {
    margin-top: 20px;
    padding-left: 0;
  }
}
#shop-info .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 584px) {
  #shop-info .map iframe {
    height: 400px;
  }
}
#facility {
  background-color: #ed6d00;
}

#facility {
  background-color: #ed6d00;
  color: #fff;
}
#facility h2 {
  font-size: 24px;
}
@media screen and (max-width: 584px) {
  #facility h2 {
    font-size: 23px;
  }
}
#facility h2 span {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: normal;
}
#facility p.lead {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 584px) {
  #facility p.lead {
    font-size: 12px;
    text-align: left;
    line-height: 1.7em;
  }
  #facility p.lead br {
    display: none;
  }
}
@media screen and (max-width: 584px) {
  #facility p.lead {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#facility ul.map_image {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
#facility ul.map_image li.list2 {
  width: 30%;
  background-color: #ececec;
  box-sizing: border-box;
  padding: 20px;
  order: 1;
}
#facility ul.map_image li.list2 p {
  font-size: 14px;
  line-height: 1.6em;
  color: #000;
}
#facility ul.map_image li.list2 figure {
  margin-top: 15px;
}
@media screen and (max-width: 584px) {
  #facility ul.map_image li.list2 {
    width: 100%;
  }
}
#facility ul.map_image li.list1 {
  background-color: #fff;
  width: 70%;
  position: relative;
  order: 2;
}
#facility ul.map_image li.list1 figure {
  position: relative;
}
#facility ul.map_image li.list1 .hpnt {
  background-color: #ed6d00;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: 3;
  cursor: pointer;
}
#facility ul.map_image li.list1 .hpnt p {
  text-align: center;
  line-height: 32px;
  font-size: 20px;
  color: #fff;
}
#facility ul.map_image li.list1 .hpnt::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 0 rgba(237, 109, 0, 0.97);
  border-radius: 100%;
  opacity: 0;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation: scbtani 2s infinite;
  animation: scbtani 2s infinite;
  background-color: rgba(237, 109, 0, 0.1);
}
@-webkit-keyframes scbtani {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    width: 220%;
    height: 220%;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scbtani {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    width: 220%;
    height: 220%;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#facility.s8 .map_image .list1 .s8,
#facility.s7 .map_image .list1 .s7,
#facility.s6 .map_image .list1 .s6,
#facility.s5 .map_image .list1 .s5,
#facility.s4 .map_image .list1 .s4,
#facility.s3 .map_image .list1 .s3,
#facility.s2 .map_image .list1 .s2,
#facility.s1 .map_image .list1 .s1 {
  background-color: #f00;
}
#facility.s8 .map_image .list1 .s8::after,
#facility.s7 .map_image .list1 .s7::after,
#facility.s6 .map_image .list1 .s6::after,
#facility.s5 .map_image .list1 .s5::after,
#facility.s4 .map_image .list1 .s4::after,
#facility.s3 .map_image .list1 .s3::after,
#facility.s2 .map_image .list1 .s2::after,
#facility.s1 .map_image .list1 .s1::after {
  background-color: rgba(255, 0, 0, 0.2);
}

@media screen and (max-width: 584px) {
  #facility ul.map_image li.list1 .hpnt {
    width: 16px;
    height: 16px;
  }
  #facility ul.map_image li.list1 .hpnt p {
    line-height: 16px;
    font-size: 14px;
  }
}
@media screen and (max-width: 584px) {
  #facility ul.map_image li.list1 {
    width: 100%;
  }
}
#facility .slide_image {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #fff;
}
#facility .slide_image .pp {
  width: 40px;
  height: 40px;
  position: absolute;
  background-color: #000;
  z-index: 3;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
}
#facility .slide_image .pp::after {
  content: "";
  position: absolute;
  left: 16px;
  cursor: pointer;
  top: 12px;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: auto;
  border-left: #ffffff solid 2px;
  border-bottom: #ffffff solid 2px;
  transform: rotate(45deg);
}
#facility .slide_image .nn {
  width: 40px;
  height: 40px;
  position: absolute;
  background-color: #000;
  z-index: 3;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
}
#facility .slide_image .nn::after {
  content: "";
  position: absolute;
  right: 16px;
  cursor: pointer;
  top: 12px;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: #ffffff solid 2px;
  border-top: #ffffff solid 2px;
  transform: rotate(45deg);
}
#facility .slide_image ul {
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  left: 0;
  top: 0;
}
#facility .slide_image ul li {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: 1s;
  background-color: #fff;
}
#facility.s1 .slide_image ul li.s1,
#facility.s2 .slide_image ul li.s2,
#facility.s3 .slide_image ul li.s3,
#facility.s4 .slide_image ul li.s4,
#facility.s5 .slide_image ul li.s5,
#facility.s6 .slide_image ul li.s6,
#facility.s7 .slide_image ul li.s7,
#facility.s8 .slide_image ul li.s8 {
  opacity: 1;
}

@media screen and (max-width: 584px) {
  #facility .slide_image {
    height: 240px;
  }
}
#shop-info .contact-area {
  margin: 70px 0 80px 0;
  padding: 50px;
  background-color: #000;
}
#shop-info .contact-area .rbtn2 {
}
#facility .contact-area {
  margin: 30px 0 80px 0;
  padding: 50px;
  background-color: #000;
}
@media screen and (max-width: 960px) {
  #shop-info .contact-area,
  #facility .contact-area {
    margin: 20px 0 0 0;
    padding: 20px;
  }
}
#shop-info .contact-area .ttl,
#facility .contact-area .ttl {
  margin: 0 0 25px 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 584px) {
  #shop-info .contact-area .ttl,
  #facility .contact-area .ttl {
    font-size: 18px;
  }
}
#shop-info .contact-area .rbtnset,
#facility .contact-area .rbtnset {
  margin-top: 0;
  margin-bottom: 0;
}
/*福岡店施設マップ位置*/
#facility ul.map_image li.list1.fo .hpnt.s1 {
  left: 53%;
  top: 60%;
}
#facility ul.map_image li.list1.fo .hpnt.s2 {
  left: 17%;
  top: 29%;
}
#facility ul.map_image li.list1.fo .hpnt.s3 {
  left: 63%;
  top: 18%;
}
#facility ul.map_image li.list1.fo .hpnt.s4 {
  left: 73.4%;
  top: 50.4%;
}
#facility ul.map_image li.list1.fo .hpnt.s5 {
  left: 47%;
  top: 21%;
}
#facility ul.map_image li.list1.fo .hpnt.s6 {
  left: 65%;
  top: 64%;
}
#facility ul.map_image li.list1.fo .hpnt.s7 {
  left: 55%;
  top: 13%;
}
#facility ul.map_image li.list1.fo .hpnt.s8 {
  left: 84.5%;
  top: 17%;
}
/*広島店施設マップ位置
#facility ul.map_image li.list1.hs .hpnt.s1 {
}*/

/*福岡店施設画像*/
#facility .fo_imglist li.s1 {
  background-image: url("../images/shop/f_01.jpg");
}
#facility .fo_imglist li.s2 {
  background-image: url("../images/shop/f_02.jpg");
}
#facility .fo_imglist li.s3 {
  background-image: url("../images/shop/f_03.jpg");
}
#facility .fo_imglist li.s4 {
  background-image: url("../images/shop/f_04.jpg");
}
#facility .fo_imglist li.s5 {
  background-image: url("../images/shop/f_05.jpg");
}
#facility .fo_imglist li.s6 {
  background-image: url("../images/shop/f_06.jpg");
}
#facility .fo_imglist li.s7 {
  background-image: url("../images/shop/f_07.jpg");
}
#facility .fo_imglist li.s8 {
  background-image: url("../images/shop/f_08.jpg");
}
/*広島店施設画像
#facility .hs_imglist li.s1 {
  background-image: url("../images/shop/h_01.jpg");
}
#facility .hs_imglist li.s2 {
  background-image: url("../images/shop/h_02.jpg");
}
#facility .hs_imglist li.s3 {
  background-image: url("../images/shop/h_03.jpg");
}
#facility .hs_imglist li.s4 {
  background-image: url("../images/shop/h_04.jpg");
}
#facility .hs_imglist li.s5 {
  background-image: url("../images/shop/h_05.jpg");
}
#facility .hs_imglist li.s6 {
  background-image: url("../images/shop/h_06.jpg");
}
#facility .hs_imglist li.s7 {
  background-image: url("../images/shop/h_07.jpg");
}
#facility .hs_imglist li.s8 {
  background-image: url("../images/shop/h_08.jpg");
}*/

/*ピラティス*/
#pilates {
  margin-bottom: 30px;
}
#pilates .pb_headline {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  color: #333333;
  font-size: 35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #pilates {
    margin-bottom: 30px;
  }
  #pilates .pb_headline {
    font-size: 20px;
  }
}
