@charset "UTF-8";

/* --------------- *\
 * product_detail
\* --------------- */
#product_detail {}


/* --------------- *\
 * bg
\* --------------- */
#bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 800px;
  position: relative;
}
#gradient {
  background: linear-gradient(rgba(25,25,25,0), rgba(25,25,25,0.1) 70%, rgba(25,25,25,1));
  height: 100%;
}
#bg .txt {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
}
#bg .txt p {
  font-family: YuMincho, 'Yu Mincho', serif;
  color: #fff;
  font-size: 17px;
  line-height: 44px;
}



/* --------------- *\
 * gallery
\* --------------- */
#gallery {
  position: relative;
  margin-bottom: 48px;
  height: auto;
}



/* --------------- *\
 * galleries_header
\* --------------- */
#galleries_header {
  height: 104px;
  background-color: #191919;
  border-bottom: 10px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#galleries_header #gallery_categories {}
#galleries_header #gallery_categories ul {
  display: flex;
  justify-content: flex-start;
  margin-left: 20px;
}
#galleries_header #gallery_categories ul li {
  margin-right: 20px;
}
#galleries_header #gallery_categories ul li a {
  text-decoration: none;
  background-color: #333;
  padding: 4px 8px;
  border-radius: 4px;
}
#galleries_header #gallery_close {}
#pickup_bg #pickup_close {
  position: absolute;
  right: 10px;
  top: 27px;
  display: none;
}
#galleries_header #gallery_close .modal-close {
  position: relative;
  width: 38px;
  height: 24px;
  margin-right: 20px;
}
#pickup_bg #pickup_close .close_button {
  position: relative;
  width: 38px;
  height: 24px;
}

#galleries_header #gallery_close .modal-close span,
#pickup_bg #pickup_close .close_button span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
#galleries_header #gallery_close .modal-close span:nth-of-type(1),
#pickup_bg #pickup_close .close_button span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}
#galleries_header #gallery_close .modal-close span:nth-of-type(2),
#pickup_bg #pickup_close .close_button span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}




/* --------------- *\
 * pickup_bg
\* --------------- */
#pickup_bg {
  width: calc(60% - 10px);
}





/* --------------- *\
 * galleries
\* --------------- */
#galleries {
  padding: 30px 20px 0 20px;
  display: flex;
  justify-content: space-between;
}
#galleries #main_screen {
  width: 100%;
}
#galleries #main_screen .slider-prev,
#galleries #main_screen .slider-next {
  position: absolute;
  z-index: 9;
  top: calc(50% - 34px);
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
}
#galleries #main_screen .slider-prev {
  left: 0;
}
#galleries #main_screen .slider-next {
  right: 0;
}
#galleries #main_screen .slider-prev:hover,
#galleries #main_screen .slider-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
#galleries #main_screen .item {
  height: auto;
}

#galleries #main_screen .item.image {}
#galleries #main_screen .item.video {}


#galleries #main_screen .item.image img,
#galleries #main_screen .item.video iframe {
  width: 100%;
}
#galleries #main_screen p.caption {
  line-height: 34px;
}
#galleries #sub_screen {
  width: 40%;
  overflow-y: scroll;
  height: calc(100vh - 154px);
}
#galleries #sub_screen ul.category_slider {
  margin-bottom: 100vh;
}
#galleries #sub_screen ul.category_slider li h3 {
  background-color: #333;
  padding: 8px 12px;
  margin: 0 10px 20px 10px;
}

#galleries #sub_screen ul.category_slider li ul.thumb_slider {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#galleries #sub_screen ul.category_slider li ul.thumb_slider li {
  width: 20%;
  padding: 10px;
}
#galleries #sub_screen ul.category_slider li ul.thumb_slider li div.image_thumb img {
  width: 100%;
}
#galleries #sub_screen ul.category_slider li ul.thumb_slider li div.video_thumb {
  width: 100%;
  height: 100%;
}


@media (max-width: 1219px) {
  #galleries #sub_screen ul.category_slider li ul.thumb_slider li {
    width: 25%;
  }
}


@media (max-width: 767px) {
  /* --------------- *\
   * galleries_header
  \* --------------- */
  #galleries_header {
    display: block;
    border-bottom: none;
  }
  #galleries_header #gallery_title {
    background-color: #333;
    margin: 10px 0 20px 0;
    position: relative;
    height: 40px;
  }
  #galleries_header #gallery_title h2 {
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
  #galleries_header #gallery_title div.modal-close {}
  #galleries_header #gallery_title div.modal-close:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 24px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(-135deg);
  }


  /* --------------- *\
   * pickup_bg
  \* --------------- */
  #pickup_bg {
    display: none;
  }
  #pickup_bg.on {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    z-index: 9;
    display: block;
  }
  #pickup_bg #pickup_close {
    display: block;
  }


  /* --------------- *\
   * galleries
  \* --------------- */
  #galleries {
    padding: 0 16px;
    display: block;
  }

  #galleries #main_screen {
    display: block;
    width: 100vw;
    top: 80px;
  }

  #galleries #main_screen .slider-prev,
  #galleries #main_screen .slider-next {
    width: 30px;
    height: 30px;
    top: 200px;
  }

  #galleries #main_screen .item {}

  #galleries #main_screen .item.image img {}
  #galleries #main_screen .item.video iframe {}

  #galleries #sub_screen {
    width: 100%;
  }
  #galleries #sub_screen ul.category_slider li h3 {
    background-color: transparent;
    padding: 0;
    margin: 0 4px 10px 4px;
  }
  #galleries #sub_screen ul.category_slider li ul.thumb_slider li {
    width: 33.33%;
    padding: 4px;
  }
}


@media (max-width: 640px) {
  #galleries #main_screen .slider-prev,
  #galleries #main_screen .slider-next {
    top: 140px;
  }
}




/* --------------- *\
 * main_slider
\* --------------- */
#gallery #main_slider {
  display: none;
  width: 100%;
}
#gallery #main_slider.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}
#gallery #main_slider .slider-prev,
#gallery #main_slider .slider-next {
  position: absolute;
  top: 208px;
  z-index: 9;
}
#gallery #main_slider .slider-prev {
  left: 0;
}
#gallery #main_slider .slider-next {
  right: 0;
}
#gallery #main_slider .slider-prev:hover,
#gallery #main_slider .slider-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
#gallery #main_slider .item {}
#gallery #main_slider .item.video {}
#gallery #main_slider .item.video iframe {}
#gallery #main_slider .item.caption {}
#gallery #gallery_count {
  position: absolute;
  right: 16px;
  top: 430px;
  background-color: rgba(0,0,0,0.6);
  border-radius: 10px;
  padding: 0px 12px;
}
#gallery #gallery_count button,
#gallery #gallery_count a {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/common/ico_gallery.png);
  background-size: 13px 13px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 18px;
  text-decoration: none;
  background-color: transparent;
  color: #fff;
}
#gallery #main_slider p.caption {
  line-height: 34px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


/* --------------- *\
 * slider_thumb
\* --------------- */
#gallery #slider_thumb {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #000 #333;
}
#gallery #slider_thumb::-webkit-scrollbar {
  height: 6px;
}
#gallery #slider_thumb::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 3px;
}
#gallery #slider_thumb::-webkit-scrollbar-track {
  background: #333;
  border-radius: 3px;
}
#gallery #slider_thumb div.slider_category {
  margin-bottom: 30px;
}
#gallery #slider_thumb ul.slider_thumb_slider {
  display: flex;
  flex-wrap: nowrap;
}
#gallery #slider_thumb ul.slider_thumb_slider li {
  margin-bottom: 6px;
  flex-shrink: 0;
}
#gallery #slider_thumb ul.slider_thumb_slider li.active img {
  border: 2px solid #fff;
}
#gallery #slider_thumb ul.slider_thumb_slider li.slick-current img {
  border: 2px solid #fff;
}
#gallery #slider_thumb ul.slider_thumb_slider li img {
  width: 44px;
  height: 44px;
}
#gallery #slider_thumb ul.slider_thumb_slider li div {
  margin-right: 6.458px;
}
#gallery #slider_thumb ul.slider_thumb_slider li:nth-child(14n) div {
  margin-right: 0px;
}



/* --------------- *\
 * video_thumb
\* --------------- */
.video_thumb {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
}
.video_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  z-index: 4;
  display: inline-block;
  border: 2px solid #ffffff;
  cursor: pointer;
  background: #ffffff;
}
.video-play-icon:before {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -4px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #808080;
}





/* --------------- *\
 * product_title
\* --------------- */
.product_title {
  position: relative;
  margin-bottom: 10px;
}
.product_title h1 {
  font-size: 30px;
  font-weight: bold;
}



/* --------------- *\
 * pref_fav
\* --------------- */
.pref_fav {
  position: relative;
  margin-bottom: 40px;
}
.pref_fav span.pref {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/common/ico_pin.png);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center left 0;
  padding: 4px 0 4px 18px;
}
.pref_fav .fav {
  position: absolute;
  right: 2px;
  top: -2px;
  align-self: center;
  font-size: 18px;
  color: #191919;
  text-shadow:0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff;
  background-color: transparent;
}
.pref_fav .fav.on {
  color: #FEDF32;
}


/* --------------- *\
 * h2
\* --------------- */
#product_detail .main section h2 {
  font-size: 30px;
  font-weight: bold;
  border-left: 1px solid #FEDF32;
  padding-left: 10px;
  line-height: 1.2em;
  margin-bottom: 10px;
}



/* --------------- *\
 * section main_content
\* --------------- */
section.main_content {
  margin-bottom: 60px;
}



/* --------------- *\
 * base_information
\* --------------- */
.base_information {
  margin-bottom: 24px;
}
.base_information table th {
  background-color: #333;
  font-weight: bold;
}



/* --------------- *\
 * summary
\* --------------- */
.summary {
  margin-bottom: 24px;
}
.summary p {
  font-size: 15px;
  line-height: 24px;
}



/* --------------- *\
 * overview
\* --------------- */
.overview {
  margin-bottom: 24px;
}
.overview ul li {
  padding-left: 20px;
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/common/icon_list.svg);
  background-size: 14px 14px;
  background-position: left top 6px;
  background-repeat: no-repeat;
  font-size: 15px;
}



/* --------------- *\
 * contents
\* --------------- */
.contents ul li {
  font-size: 16px;
  line-height: 24px;
}
.contents ul li:not(:last-child) {
  margin-bottom: 24px;
}
.contents ul li h3 {
  font-weight: bold;
}



/* --------------- *\
 * plans
\* --------------- */
#plans {}
#plans .plan_single {
  background-color: #fff;
  color: #191919;
  margin-bottom: 20px;
  border-radius: 6px;
}
#plans .plan_single.selected {}
#plans .plan_wrapper {
  display: flex;
  justify-content: space-between;
  padding: 14px;
}
#plans .plan_wrapper .left {
  width: 318px;
}
#plans .plan_wrapper .left .plan_package_slider .slick-slide img {
  border-radius: 4px;
}
#plans .plan_wrapper .left .no_image {
  width: 318px;
  height: 212px;
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 4px;
  position: relative;
}
#plans .plan_wrapper .left .no_image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
#plans .plan_single h3.plan_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#plans .plan_wrapper .right {
  width: calc(100% - 328px);
}




#plans .note.open[data-readmore] {
 transition: height 750ms;
 overflow: hidden;
 margin-bottom: 10px;
}
#plans .note.open {
  text-align: left;
  position: relative;
  overflow: hidden;
}
#plans .note.open p {
  margin-bottom: 10px;
  word-wrap: break-word;
}
#plans .note.open::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 70%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.6) 70%,rgba(255,255,255,1) 100%);
}
#plans .note.open.is-show::before {
  display: none;
}
#plans .btn-open,
#plans .btn-close{
  cursor: pointer;
  color: #3E7FFF;
  text-decoration: none;
  background-color: transparent;
  /*display: block;*/
}
#plans .btn-open {
  /*margin-top: 10px;*/

}
#plans .btn-open:hover,
#plans .btn-close:hover {
  opacity: 0.7;
}



#plans .plan_single .plan_price {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  text-align: right;
}
#plans .plan_single .plan_price.package {
  margin-top: 0;
}

#plans .plan_single .plan_price span.unit {
  font-size: 10px;
  font-weight: normal;
}
#plans .plan_single .plan_price .before {
  font-size: 12px;
  text-decoration-line: line-through;
}
#plans .plan_single .plan_price span {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2em;
}
#plans .plan_single .plan_price span:first-child span{
  font-size: 10px;
  font-weight: normal;
}
#plans .booking {
  display: flex;
  justify-content: flex-end;
}
#plans button.plan_choice_btn,
#plans a.plan_choice_btn {
  display: block;
  border: 1px solid #D70D0D;
  border-radius: 4px;
  min-width: 144px;
  height: 34px;
  color: #D70D0D;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  padding: 0 6px;
  background-color: transparent;
}
#plans a.plan_choice_btn.package {}
#plans .booking.selected button.plan_choice_btn,
#plans .booking.selected a.plan_choice_btn {
  background-color: #D70D0D;
  color: #fff;
}
#plans button.plan_choice_btn:hover,
#plans a.plan_choice_btn:hover {
  color: #fff;
  cursor: pointer;
  background-color: #D70D0D;
  transition: all 0.3s ease;
}



/* --------------- *\
 * ul.service
\* --------------- */
#plans div.service_bg {
  background-color: #f9f9f9;
  margin: 10px 0 0 0;
  padding: 4px;
}
#plans div.service_bg.package {
  margin: 0 0 0 10px;
}

#plans ul.service {
  width: 100%;
}
#plans ul.service li {
  border-bottom: none;
  background-repeat: no-repeat;
  background-position: left top 2px;
  background-size: 16px;
  padding: 0 0 0 20px;
  color: #838383;
  font-size: 12px;
}
#plans ul.in_out {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#plans ul.in_out li {
  border-bottom: none;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
  padding: 0 0 0 20px !important;
  color: #838383;
  font-size: 12px;
  margin-right: 24px;
}

#plans ul.service li.meal {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_package_service_1.png);
}
#plans ul.service li.room {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_package_service_2.png);
}
#plans ul.in_out li.in {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_in.png);
}
#plans ul.in_out li.out {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_out.png);
}



/* --------------- *\
 * ul.service_package
\* --------------- */
#plans ul.packages ul.service_package {}
#plans ul.packages ul.service_package li {
  border-bottom: none;
  background-repeat: no-repeat;
  background-position: left top 2px;
  background-size: 16px;
  padding: 0 0 0 20px;
  color: #838383;
  font-size: 12px;
}
#plans ul.packages ul.service_package li.meal {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_package_service_1.png);
}
#plans ul.packages ul.service_package li.room {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_package_service_2.png);
}
#plans ul.packages ul.service_package li.in {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_in.png);
}
#plans ul.packages ul.service_package li.out {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_out.png);
}




/* --------------- *\
 * plan_package_slider
\* --------------- */
#plans .plan_package_slider {
  width: 100%;
}
#plans .plan_package_slider .items {
  display: none;
}
#plans .plan_package_slider .slick-initialized {
  display: block;
}
#plans .plan_package_slider .item {}
#plans .plan_package_slider .item .screen {
  width: 100%;
}



/* --------------- *\
 * #plans .openable
\* --------------- */
#plans .openable {
  border-top: 1px solid #ccc;
  color: #3E7FFF;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
}
#plans .openable:hover {
  cursor: pointer;
}
#plans .openable span {
  position: relative;
}
#plans .openable span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: -24px;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #3E7FFF;
  border-right: 1px solid #3E7FFF;
  transform: rotate(45deg);
}
#plans .openable.active {
  border-bottom: 1px solid #ccc;
}
#plans .openable.active span:after {
  top: 7px;
  transform: rotate(-135deg);
}



/* --------------- *\
 * #plans .packages
\* --------------- */
#plans ul.packages {}
#plans ul.packages li{
  padding: 6px 14px 10px 14px;
}
#plans ul.packages li h4 {
  font-size: 16px;
  font-weight: bold;
}




/* --------------- *\
 * #plans .package_wrapper
\* --------------- */
.package_wrapper {
  display: flex;
  justify-content: space-between;
}
.package_wrapper .left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.package_wrapper .left .image {
  width: 147px;
}
.package_wrapper .left .no_image {
  width: 147px;
  height: 98px;
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 4px;
  position: relative;
}
.package_wrapper .left .no_image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.package_wrapper .left .plan_package_slider .slick-slide img {
  border-radius: 4px;
}
#plans .package_wrapper .left ul.service {
  width: 260px;
}
#plans .package_wrapper .left ul.service li,
#plans .package_wrapper .left ul.in_out li {
  border-bottom: none;
  padding: 0 0 0 20px;
}

.package_wrapper .right {}




/* --------------- *\
 * flow
\* --------------- */
#flow {}
#flow ul {}
#flow ul li {}
#flow ul li h3 {
  background-color: #333;
  padding: 4px 10px;
  margin-bottom: 10px;
}
#flow ul li ul {}
#flow ul li ul li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 24px;
}
#flow ul li ul li:before {
  content: '・';
  font-size: 24px;
  color:#444;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1em;
}
#flow ul li ul li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 11px;
  top: 20px;
  height: calc(100% - 16px);
  border-left: 1px solid #444;
}



/* --------------- *\
 * price_details
\* --------------- */
#price_details {}
#price_details ul {}
#price_details ul li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 12px;
}
#price_details ul li:before {
  content: '・';
  font-size: 24px;
  color:#444;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1em;
}



/* --------------- *\
 * access
\* --------------- */
#access {
  margin-bottom: 60px;
}
#access .access_title {
  /*position: relative;*/
  /*width: 100%;*/
  /*height: 36px;*/
  margin-bottom: 10px;
}
#access .access_title h2 {
  /*position: absolute;*/
/*  top: 0;
  left: 0;*/
}
/*#access .access_title a.root_link {
  display: inline-block;
  padding: 3px 15px;
  border: 1px solid #666;
  border-radius: 100px;
  color: #ccc;
  text-decoration: none;
  position: absolute;
  top: 4px;
  right: 0;
}*/
#access p.directions_map {
  margin-bottom: 10px;
  text-align: right;
}
#access p.directions_map a.root_link {
  padding: 3px 15px;
  border: 1px solid #666;
  border-radius: 100px;
  color: #ccc;
  text-decoration: none;
}


#access .map {
  background-color: #ddd;
  height: 324px;
  margin-bottom: 10px;
  border-radius: 12px;
}
#access .map iframe {
  border-radius: 12px;
}

#access .address div,
#access .access_detail div {
  font-weight: bold;
  font-size: 16px;
}


/* --------------- *\
 * review
\* --------------- */
#review {
  margin-bottom: 60px;
}
#review_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  border-bottom: 1px solid #838383;
  padding-bottom: 10px;
}
#review_header a.review-add {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-weight: bold;
  color: #FEDF32;
  border: 1px solid #FEDF32;
  border-radius: 4px;
}
#review_ul li {
  padding: 15px 0;
  border-bottom: 1px solid #838383;
}
#review_ul .nick_name {
  margin-right: 20px;
  font-weight: bold;
  line-height: 24px;
}
#review_ul .star-rating {
  position: relative;
  display:inline-block;
  font-size: 16px;
  margin-right: auto;
}
#review_ul .star-rating .star-rating-item{
  position:absolute;
  overflow: hidden;
}
#review_ul .star-rating .star-rating-item::before{
  content:"★★★★★";
  color: #ffcc33;
}
#review_ul .star-rating::after {
  content:"★★★★★";
  color: #ccc;
}
#review_ul .title_body {
  background-color: #333;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}
#review_ul .date {
  font-size: 11px;
  line-height: 24px;
}
#review_ul .title {
  font-size: 16px;
  font-weight: bold;
}
#review_ul .body.open[data-readmore] {
 transition: height 750ms;
 overflow: hidden;
}
#review_ul .body.open {
  text-align: left;
  position: relative;
  overflow: hidden;
}
#review_ul .body.open p {
  margin-bottom: 10px;
  word-wrap: break-word;
}
#review_ul .body.open::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -moz-linear-gradient(top,  rgba(51,51,51,0) 0%, rgba(51,51,51,0.6) 70%, rgba(51,51,51,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(51,51,51,0) 0%,rgba(51,51,51,0.6) 70%,rgba(51,51,51,1) 100%);
  background: linear-gradient(to bottom,  rgba(51,51,51,0) 0%,rgba(51,51,51,0.6) 70%,rgba(51,51,51,1) 100%);
}
#review_ul .body.open.is-show::before {
  display: none;
}
#review_ul .btn-open,
#review_ul .btn-close{
  cursor: pointer;
  color: #3E7FFF;
  text-decoration: none;
  background-color: transparent;
}
#review_ul .btn-open:hover,
#review_ul .btn-close:hover {
  cursor: pointer;
  opacity: 0.7;
}
#review_ul .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#review_ul .info .info_left p {
  color: #838383;
}
#review_ul .info .info_left p:not(:last-of-type){
  margin-bottom: 2px;
}
#review .info .info_right {}
#review .info .info_right a.translation{
  padding-right: 16px;
  background-image: url('../img/front_x/product_detail/icon_honyaku.png');
  background-repeat: no-repeat;
  background-position: top 1px right 0;
  background-size: 14px 14px;
  color: #3E7FFF;
  text-decoration: none;
}
#review .info .info_right a.translation:hover {
  opacity: 0.7;
}
#review #page_more {
  text-align: center;
  margin-top: 20px;
}
#review #page_more #next_btn {
  font-size: 16px;
  color: #3E7FFF;
  background-color: transparent;
  text-decoration: underline;
}


/* --------------- *\
 * attention
\* --------------- */
#attention {
  margin-bottom: 60px;
}
#attention h2 {
  margin-bottom: 10px;
}
#attention p {
  font-size: 16px;
  line-height: 24px;
}
#attention .cancel {}
#attention .cancel h5 {
  margin: 25px 0 10px;
  font-size: 16px;
  font-weight: bold;
}
#attention .cancel a {
  color: #fff;
  text-decoration: underline;
}
#attention .cancel a:hover {
  opacity: 0.7;
}



/* --------------- *\
 * sidebar
\* --------------- */
.sidebar .box_shadow {
  border-top: 6px solid #ffdb14;
}
.sidebar .fit-sidebar_inner {
  padding: 20px 10px;
}
.sidebar h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.sidebar .fit-sidebar_inner .page_link {
  padding: 0 27px;
}
.sidebar .fit-sidebar_inner .page_link ul {
  margin-bottom: 24px;
}
.sidebar .fit-sidebar_inner .page_link ul li {
  border-bottom: 1px solid #838383;
}
.sidebar .fit-sidebar_inner .page_link ul li:first-child {
  border-top: 1px solid #838383;
}
.sidebar .fit-sidebar_inner .page_link ul li a {
  padding: 12px 6px;
  display: block;
  color: #fff;
  text-decoration: none;
}
.sidebar .fit-sidebar_inner .page_link ul li a:hover {
  background-color: #333;
  color: #fff;
}
.sidebar .fit-sidebar_inner p.btn_area {
  width: 200px;
  margin: 10px auto 0 auto;
}
.sidebar #plan_selected .form_contents {
  margin-bottom: 20px;
}
.sidebar span.reserve_input {
  width: 100%;
  border: 1px solid #b7b7b7;
  display: block;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.sidebar span.reserve_input:after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(135deg);
  right: 8px;
}
.sidebar span.reserve_input:hover {
  background-color: #838383;
  color: #fff;
  cursor: pointer;
}


/* --------------- *\
 * tooltip
\* --------------- */
#plan_time_select,
#plan_num_select,
#ticket_num_select {
  position: relative;
}
.is_display {
  display: block !important;
}
#about_price_detail .tooltip,
#plan_time_select .tooltip,
#plan_num_select .tooltip,
#ticket_num_select .tooltip{
  display: none;
  position: absolute;
  z-index: 1;
  transition: opacity 500ms;
  width: 100%;
  top: 46px;
  right: 0;
  background-color: #191919;
  border: 1px solid #838383;
  border-radius: 4px;
  padding: 20px 10px 50px 10px;
  box-shadow: 2px 2px 4px gray;
}
#plan_num_select .tooltip,
#ticket_num_select .tooltip {
  width: 150%;
}
#plan_time_select .tooltip .tooltip_inner {
  max-height: 220px;
  overflow: auto;
}
#plan_time_select .tooltip a.close,
#plan_num_select .tooltip a.close,
#ticket_num_select .tooltip a.close{
  position: absolute;
  right: 20px;
  bottom: 10px;
}
.tooltip table {}
.tooltip table th {
  background-color: #333;
  color: #fff;
}
.tooltip table th,
.tooltip table td {
  padding-left: 0;
  padding-right: 0;
  vertical-align: middle;
}
.tooltip table a {
  color: #fff;
}

/* --------------- *\
 * num_up_down
\* --------------- */
.num_up_down {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.num_btn {
  color: #09f;
  background-color: #333;
  display: block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.num_now {
  font-weight: bold;
  font-size: 16px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  padding: 0 !important;
}
.num_now input {
  width: 30px !important;
  border: none;
  text-align: center;
}
a.num_btn:hover {
  opacity: 0.7;
}
a.num_btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
  color: #ccc;
}
#result_price {
  margin: 20px 0;
}
#result_price li {
  display: flex;
  justify-content: right;
}
#result_price hr {
  border-top: none;
  border-bottom: 1px dashed #666;
  margin-top: 5px;
}
#calculation_result {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}
.num_err_msg {
  font-weight: bold;
  color: #ff4200;
}
span.price_format {
  font-weight: bold;
  color: #ff4200;
}
span.price_format_black {
  font-weight: bold;
  color: #fff;
}



/* --------------- *\
 * .sidebar .button
\* --------------- */
#product_detail .sidebar .button {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  background-color: #ffdb14;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
}
#product_detail .sidebar .button.disabled {
  pointer-events: none;
  cursor: pointer;
  opacity: 0.6;
}
#product_detail .sidebar p.note {
  margin-top: 10px;
  color: #666;
}








@media (max-width: 1219px) {
  #bg {
    height: 600px;
  }


  /* --------------- *\
   * sidebar
  \* --------------- */
  .sidebar .fit-sidebar_inner .page_link {
    padding: 0;
  }
  .sidebar .fit-sidebar_inner p.btn_area {
    width: 100%;
  }


  /* --------------- *\
   * gallery
  \* --------------- */
  #gallery {
    display: block;
    /*height: 462px;*/
    height: 444px;
  }

  #gallery #main_slider .slider-prev,
  #gallery #main_slider .slider-next {
    top: 155px;
  }

  #gallery #main_slider .item .screen img {
    object-fit: cover;
    width: 100%;
    height: 360px;
  }
  #gallery #main_slider .item.video {
    height: 360px;
  }
  #gallery #main_slider .item.video iframe {
    height: 100%;
  }
  #gallery #gallery_count {
    right: 20px;
    top: 320px;
  }


}




@media (max-width: 767px) {
  /* --------------- *\
   * sp_fix_menu
  \* --------------- */
  #sp_fix_menu {
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: scroll;
    width: 100%;
    padding: 11px;
    opacity: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
  }
  #sp_fix_menu ul {
    display: flex;
  }
  #sp_fix_menu ul li {}
  #sp_fix_menu ul li:not(:last-child) {
    margin-right: 20px;
  }
  #sp_fix_menu ul li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    height: 1em;
  }
  #sp_fix_menu ul li a::after {
    position: absolute;
    bottom: -12px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  #sp_fix_menu ul li a:hover {
    color: #fff;
    font-weight: bold;
  }
  #sp_fix_menu ul li a:hover::after {
    transform: scale(1, 1);
  }
  #sp_fix_menu.on {
    opacity: 1;
    pointer-events: auto;
  }



  /* --------------- *\
   * bg
  \* --------------- */
  #bg {
    height: 430px;
    margin-bottom: 170px;
  }
  #bg .txt {
    width: 90%;
    bottom: -150px;
  }
  #bg .txt p {
    font-size: 16px;
    line-height: 36px;
  }



  /* --------------- *\
   * gallery
  \* --------------- */
  #gallery {
    display: block;
    /*height: 382px;*/
    height: 364px;
    /*width: calc(100vw - 16px);*/
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  /* --------------- *\
   * main_slider
  \* --------------- */
  #gallery #main_slider {
    width: 100%;
  }
  #gallery #main_slider .item .screen img {
    height: 280px;
  }
  #gallery #main_slider .item.video {
    height: 280px;
  }
  #gallery #main_slider .item.video iframe {
    height: 100%;
  }
  #gallery #main_slider p.caption {}


  /* --------------- *\
   * slider_thumb
  \* --------------- */
  #gallery #slider_thumb {
    width: 100%;
    /*overflow-x: scroll;*/
  }
  #gallery #slider_thumb div.slider_category {
    overflow-x: auto;
    margin-bottom: 10px;
  }
  #gallery #slider_thumb div.slider_category ul.slider_thumb_slider {
    padding-left: 0;
    flex-wrap: nowrap;
  }
  #gallery #slider_thumb ul.slider_thumb_slider li div.image_thumb,
  #gallery #slider_thumb ul.slider_thumb_slider li div.video_thumb {
    margin-right: 6px;
  }
  #gallery #slider_thumb ul.slider_thumb_slider li {
    flex-shrink: 0;
  }
  #gallery #gallery_count {
    right: 8px;
    top: 252px;
  }


  /* --------------- *\
   * video_thumb
  \* --------------- */
  .video_thumb {
    width: calc(100% - 3px);
    height: 100%;
  }


  /* --------------- *\
   * product_title
  \* --------------- */
  .product_title h1 {
    font-size: 20px;
    padding-right: 20px;
  }
  .product_title .fav {
    top: 4px;
  }


  /* --------------- *\
   * h2
  \* --------------- */
  #product_detail .main section h2 {
    font-size: 16px;
  }

  /* --------------- *\
   * base_information
  \* --------------- */
  .base_information table th {
    width: 25%;
    padding: 10px 8px;
  }
  .base_information table td {
    width: 75%;
    padding: 10px 15px;
  }


  /* --------------- *\
   * overview
  \* --------------- */
  .overview ul li {
    font-size: 14px;
  }


  /* --------------- *\
   * contents
  \* --------------- */
  .contents ul li {
    font-size: 14px;
  }


  /* --------------- *\
   * plans
  \* --------------- */
  #plans .plan_single {
    display: block;
  }
  #plans .plan_single h3.plan_title {
    font-size: 16px;
  }
  #plans .plan_single .price_and_btn  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  #plans .plan_wrapper {
    display: block;
    padding: 0;
  }
  #plans .plan_wrapper .left {
    width: 100%;
  }
  #plans .plan_wrapper .right {
    width: 100%;
    padding: 10px;
  }
  #plans .plan_wrapper .note p {
    font-size: 13px;
  }
  #plans button.plan_choice_btn,
  #plans a.plan_choice_btn {
    width: 100%;
  }
  #plans .plan_wrapper .left .no_image {
    width: 100%;
  }
  #plans .plan_wrapper .left .plan_package_slider .slick-slide img {
    border-radius: 6px 6px 0 0;
  }
  #plans .plan_single .plan_price span {
    font-size: 20px;
  }
  #plans .openable {
    margin-top: 0;
  }



  /* --------------- *\
   * .package
  \* --------------- */
  .package_wrapper {
    margin-top: 10px;
  }
  #plans ul.packages li h4 {
    font-size: 14px;
  }
  .package_wrapper .left .image {
    width: 120px;
  }
  .package_wrapper .left .no_image {
    width: 120px;
    height: 80px;
  }
  #plans button.plan_choice_btn.package,
  #plans a.plan_choice_btn.package {
    width: 144px;
  }
  #plans ul.packages .plan_price span {
    font-size: 16px;
  }




  /* --------------- *\
   * .access
  \* --------------- */
  #access .map {
    height: 162px;
  }

  #access .address div,
  #access .access_detail div {
    font-size: 14px;
  }
  #access .address p,
  #access .access_detail p {
    font-size: 12px;
  }

  #access .access_title {
    margin-bottom: 0;
  }



  /* --------------- *\
   * .review
  \* --------------- */
  #review {}
  #review_header a.review-add {
    padding: 0 20px;
  }
  #review_ul li {
    padding: 10px 0;
  }
  #review_ul .title {
    font-size: 14px;
  }
  #review_ul li .flex {
    display: flex;
    justify-content: space-between;
  }
  #review_ul .nick_name {
    margin-right: 0;
    order: 1;
  }
  #review_ul .star-rating {
    order: 3;
    width: 100%;
  }
  #review_ul .date {
    order: 2;
  }
  #review_header a.review-add {
    font-size: 12px;
  }


  /* --------------- *\
   * .attention
  \* --------------- */
  #attention p {
    font-size: 14px;
  }


  /* --------------- *\
   * .sidebar
  \* --------------- */
  .sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 20;
    background-color: rgba(51, 51, 51, 0.9);
  }
  .sidebar .box_shadow {
    border-top: none;
  }
  .sidebar .fit-sidebar_inner {
    padding: 6px;
    /*width: 100%;*/
  }
  .sidebar.modal_active {
    height: 80vh;
    background-color: #fff;
  }
  .sidebar .modal_btn {
    position: relative;
  }
  .sidebar.modal_active .modal_btn .open_btn {
    display: none !important;
  }
  .sidebar .modal_btn .close_btn {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    font-size: 20px;
    text-align: center;
    color: #333;
    text-decoration: none;
  }
  .sidebar:not(.modal_active) .modal_btn .close_btn {
    display: none !important;
  }
  .sidebar h4 {
    margin-right: 40px;
  }


  /* --------------- *\
   * .sidebar #plan_noselected
  \* --------------- */
  .sidebar #plan_noselected {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sidebar #plan_noselected #about_price {
    display: block;
    margin-right: 10px;
  }
  .sidebar #plan_noselected #about_price .before {
    text-decoration: line-through;
  }
  .sidebar #plan_noselected #about_price span:first-child {
    font-size: 20px;
    font-weight: bold;
    line-height: 22px;
    color: #fff;
  }
  .sidebar #plan_noselected #about_price span:first-child span {
    font-size: 12px;
    font-weight: normal;
  }
  .sidebar #plan_noselected p.btn_area {
    width: 200px;
    margin: 0;
  }


  /* plan_selected */
  .sidebar .plan_selected .form_contents {}
  .sidebar .plan_selected .form_contents span.reserve_input {}
  #result_price {}
  #result_price hr {}
  #calculation_result {}
  #product_detail .sidebar .button {}
  #product_detail .sidebar .button.disabled {}
  #product_detail .sidebar p.note {}



  #plan_num_select .tooltip {
    width: 100%;
  }
  #product_detail + #go_top {
    bottom: 84px;
  }


  #product_detail .sidebar .button {
    padding: 8px;
  }
}



/* --------------- *\
 * calendar
\* --------------- */
#event_date {
  position: relative;
}

#reserve_date {
  background-image: url(https://assets.deep-exp.com/assets/img/front_x/product_detail/ico_calendar.png);
  background-color: #fff;
  border: 3px solid #333333;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  color: #191919;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 16px;
  padding: 0 0 0 30px;
  margin: 16px 0;
}

#reserve_date_clear {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  width: 48px;
  background-color: transparent;
}

#reserve_date_clear img {
  width: 16px;
  height: 16px;
}

.blank #reserve_date_clear {
  display: none;
}

#event_date .tooltip {
  display: none;
  position: absolute;
  z-index: 1;
  transition: opacity 500ms;
  width: 100%;
  top: 50px;
  background: #fff;
  padding: 20px 10px 40px 10px;
}

@media (max-width: 1219px) {
  #event_date .tooltip {
    /* width: calc(100vw - 60px); */
    padding: 20px 20px 40px 20px;
  }
}

#calendarResult {
  position: relative;
}

#calendarResult.is_display {
  min-height: 400px;
  box-shadow: 0 10px 10px 0 rgb(0 0 0 / 50%);
}

/* #calendarResult .bg {
  content: '';
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
} */

#calendarResult div.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

@media (min-width: 768px) {
  #calendar_wrapper {
    display: flex;
    justify-content: space-between;
  }

  #calendar_wrapper .calendar_container {
    width: 46%;
  }
}

.calendar_title {
  position: relative;
  margin-bottom: 20px;
}

#product_detail .main section .calendar_title h2 {
  text-align: center;
  font-weight: normal;
  font-size: 17px;
  color: #191919;
  border: none;
  line-height: 1;
}

.calendar_title .prev {
  position: absolute;
  left: 20px;
  top: -2px;
}

.calendar_title .next {
  position: absolute;
  right: 20px;
  top: -2px;
}


.calendar_title .prev button,
.calendar_title .next button,
.calendar_title .prev a,
.calendar_title .next a {
  position: relative;
  display: inline-block;
  color: #191919;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
}
.calendar_title .prev button:hover,
.calendar_title .next button:hover {
  cursor: pointer;
}
.calendar_title .prev button:before,
.calendar_title .next button:after,
.calendar_title .prev a:before,
.calendar_title .next a:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  border-top: solid 3px #191919;
  border-right: solid 3px #191919;
}
.calendar_title .prev button:before,
.calendar_title .prev a:before {
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 4px;
}
.calendar_title .next button:after,
.calendar_title .next a:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 4px;
}

table.calendar_table {
  border: none;
  width: 100%;
  color: #191919;
}

table.calendar_table tr th,
table.calendar_table tr td {
  text-align: center;
  vertical-align: top;
  border: none;
  padding: 8px 0;
}

table.calendar_table tr th {
  background-color: transparent;
  color: #191919;
  border-bottom: 1px solid #191919;
}

table.calendar_table tr td {
  color: #191919;
}

table.calendar_table tr td p.symbol {
  /* color: #191919; */
}

table.calendar_table tr td.none,
table.calendar_table tr td.ng {
  color: #ccc;
  background: #fff;
}

table.calendar_table tr td.none p.symbol::before {
  content: '';
}

table.calendar_table tr td.ng p.symbol::before {
  content: '×';
}

table.calendar_table tr td.ok p.symbol {
  color: #3E7FFF;
}

table.calendar_table tr td.ok p.symbol::before {
  content: '〇';
}

table.calendar_table tr td.ok:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}

.tooltip a.close {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #191919;
}
