@charset "utf-8";
/*===========================
〜479px        ：SP縦
  480px〜599px ：SP横
  600px〜959px ：タブレット
  960px〜1279px：小型PC
 1280px〜      ：大型PC
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");

/*----------------------------------------
	fv
----------------------------------------*/
#hero_image {
  width: 950px;
  position: relative;
  margin-bottom: 50px;
}
#_____01 img {
  vertical-align: baseline;
}
#hero_image .fv_bnr {
  position: absolute;
  bottom: 80px;
  right: 30px;
  z-index: 2;
}
#hero_image .fv_bnr.left {
  left: 30px;
}
#hero_image .fv_bnr img {
  width: 133px;
}
#hero_image .fv_bnr.left img {
  width: 125px;
}
#hero_image .fv_bnr a:hover img {
  opacity: 0.75;
}
/**************************
	#hero_image メニュー
**************************/
#hero_image ul {
  list-style: none;
  z-index: 2;
}
#hero_image ul.nav_01 {
  display: flex;
  justify-content: space-between;
  bottom: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  border-left: 1px solid #d8c5a7;
  border-right: 1px solid #d8c5a7;
  box-sizing: border-box;
}
#hero_image ul.nav_01 li span {
  color: #7d6946;
  font-size: 12px;
}
#hero_image ul.nav_01 li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  width: 17%;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}
#hero_image ul.nav_01 li:last-child {
  width: 18%;
  background-color: #d8c5a7;
  display: block;
}
#hero_image ul.nav_01 li:hover {
  background-color: #eee2d2;
}
#hero_image ul.nav_01 li:last-child:hover {
  background-color: #b99b75;
}

#hero_image ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}
#hero_image ul.nav_01 li a {
  padding: 15px 10px;
  color: #000;
}
#hero_image ul.nav_01 li a:hover {
  text-decoration: none;
}
#hero_image ul.nav_01 li:before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 45px;
  top: 25px;
  background-color: #999;
  left: 0;
}
#hero_image ul.nav_01 li:last-child:before,
#hero_image ul.nav_01 li:first-child:before {
  content: none;
}
#hero_image ul.nav_02 {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #b59971;
  color: #000;
}
#hero_image ul.nav_02 li {
  padding: 0;
  font-size: 14px;
  position: relative;
  width: 14%;
  text-align: center;
}
#hero_image ul.nav_02 li:before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 15px;
  top: 14px;
  background-color: #fff;
  right: 0;
}
#hero_image ul.nav_02 li a {
  padding: 11px 0;
  display: block;
  color: #fff;
  box-sizing: border-box;
}
#hero_image ul.nav_02 li a:hover {
  text-decoration: underline;
}
/**************************
	#hero_image slide
**************************/
#hero_image h1 {
  position: absolute;
  z-index: 9;
  right: 45px;
  bottom: 156px;
  margin: auto;
  height: fit-content;
  text-align: center;
  -moz-height: fit-content;
  font-size: 15px;
  line-height: 3;
  color: #fff;
  font-weight: 400;
  text-align: right;
  text-shadow: 0px 0px 7px rgba(36, 36, 34, 1);
  letter-spacing: 0.25em;
}
#hero_image h1 span {
  font-size: 27px;
  line-height: 1.7;
  letter-spacing: 0.4em;
}
#hero_image .main_slide {
  position: relative;
}
#hero_image .main_slide:after {
  position: static;
}
#hero_image .out {
  position: relative;
}
#hero_image .in img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 0;
}
#hero_image .main_slide img {
  display: block;
  width: 100%;
  height: auto;
}
#hero_image input {
  display: none;
}
#hero_image .in {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero_image label span {
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  margin: -40px 0 0;
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#hero_image label span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #b0894c;
  opacity: 0.25;
  border-radius: 100%;
}
#hero_image input:nth-of-type(1):checked ~ .in label:nth-of-type(1) span::before,
#hero_image input:nth-of-type(2):checked ~ .in label:nth-of-type(2) span::before,
#hero_image input:nth-of-type(3):checked ~ .in label:nth-of-type(3) span::before,
#hero_image input:nth-of-type(4):checked ~ .in label:nth-of-type(4) span::before,
#hero_image input:nth-of-type(5):checked ~ .in label:nth-of-type(5) span::before,
#hero_image input:nth-of-type(6):checked ~ .in label:nth-of-type(6) span::before {
  /* #hero_image input:nth-of-type(7):checked ~ .in label:nth-of-type(7) span::before */
  background: #b0894c;
  opacity: 0.75;
}
#hero_image label span::before {
  animation: slidebutton 21s infinite;
}
@keyframes slidebutton {
  0% {
    opacity: 0.25;
    background: #b0894c;
  }
  2.3% {
    opacity: 0.75;
    background: #b0894c;
  } /* b÷x×100=y */
  18% {
    opacity: 0.75;
    background: #b0894c;
  } /* b÷x×100=y */
  23% {
    opacity: 0.25;
    background: #b0894c;
  } /* 100÷c=z */
}
#hero_image label:nth-of-type(2) span::before,
#hero_image label:nth-of-type(2) img {
  animation-delay: 3.5s;
}
#hero_image label:nth-of-type(3) span::before,
#hero_image label:nth-of-type(3) img {
  animation-delay: 7s;
}
#hero_image label:nth-of-type(4) span::before,
#hero_image label:nth-of-type(4) img {
  animation-delay: 10.5s;
}
#hero_image label:nth-of-type(5) span::before,
#hero_image label:nth-of-type(5) img {
  animation-delay: 14s;
}
#hero_image label:nth-of-type(6) span::before,
#hero_image label:nth-of-type(6) img {
  animation-delay: 17.5s;
}
/* #hero_image label:nth-of-type(7) span::before,
#hero_image label:nth-of-type(7) img {
  animation-delay: 21s;
} */
#hero_image input:nth-of-type(1):checked ~ .in label:nth-of-type(1) img,
#hero_image input:nth-of-type(2):checked ~ .in label:nth-of-type(2) img,
#hero_image input:nth-of-type(3):checked ~ .in label:nth-of-type(3) img,
#hero_image input:nth-of-type(4):checked ~ .in label:nth-of-type(4) img,
#hero_image input:nth-of-type(5):checked ~ .in label:nth-of-type(5) img,
#hero_image input:nth-of-type(6):checked ~ .in label:nth-of-type(6) img
  /* #hero_image input:nth-of-type(7):checked ~ .in label:nth-of-type(7) img  */ {
  opacity: 1;
  z-index: 1;
}
#hero_image .in img {
  animation: slide 21s infinite; /* (a+b)×c=x */
  opacity: 0;
}
@keyframes slide {
  0% {
    opacity: 0;
  }
  2.3% {
    opacity: 1;
    z-index: 1;
  } /* b÷x×100=y */
  16.6% {
    opacity: 1;
  } /* 100÷c=z */
  18.9% {
    opacity: 0;
    z-index: 0;
  } /* y+z */
}
#hero_image input:checked ~ .in img,
#hero_image input:checked ~ .in span::before {
  animation: none;
}
#hero_image .in:hover img,
#hero_image .in:hover span::before {
  animation-play-state: paused; /* マウスを載せると一時停止 */
}

/*---------------------------
共通
----------------------------*/
#RthCustomizeW {
  background-color: #ffffff;
  background: url(https://www.lakeresort.jp/rakuten/niji/top/img/240515_kawa_background_img.jpg) no-repeat;
  background-size: 100%;
  background-position-y: -100px;
}

#htlContents {
  width: 1190px !important;
  margin: auto !important;
  min-width: 1190px !important;
  line-height: 1.5;
}
div#RthCustomize {
  width: 950px;
}
div#RthCustomizeW {
  margin-right: 240px;
}

/*---------------------------
FV上バナー
----------------------------*/
/* #htlSide-A {
  /* position: absolute;
  top: 945px;
  left: 20px;
  margin-top: 215px; 
} */
a#rc_rightArea {
  width: 150px; /*画像の全体幅*/
  position: fixed;
  top: 200px;
  right: -100px; /*マウスを乗せた時に出てくる幅*/
  display: inline-block;
  transition: all 0.2s ease;
  z-index: 9999;
}
a#rc_rightArea:hover {
  right: 100;
}
.over {
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}
.bnr_area {
  width: 950px;
  text-align: center;
  margin: 10px 0 0px;
}
.bnr_area p {
  margin-bottom: 10px;
}

.bnr_area .bnr_single {
  display: flex;
  flex-direction: column;
}
/*シングルバナー*/
.bnr_area .bnr_single p:nth-child(1) {
  display: none;
}
.bnr_area .bnr_single p:nth-child(2) {
  display: none;
}
/*
.bnr_area .bnr_single p:nth-child(3){
display: none;
} 
*/
.bnr_area .bnr_single p:nth-child(4) {
  display: none;
}
.bnr_area .bnr_single p:nth-child(5) {
  display: none;
}

.bnr_area .bnr_toku {
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
/*得旅バナー*/

.bnr_area .bnr_toku p:nth-child(1) {
  display: none;
}
.bnr_area .bnr_toku p:nth-child(2) {
  display: none;
}

.bnr_area .bnr_toku p:nth-child(3) {
  display: none;
}

.bnr_area a:hover,
.toku_bnr a:hover,
.bnr_2col a:hover,
.b_bnr a:hover {
  opacity: 0.75;
}
#contents a:hover {
  text-decoration: underline;
}
#contents a {
  color: #595959;
  /*display: block;*/
  width: 100%;
}
#contents img {
  max-width: 100%;
  height: auto;
}
#contents a:hover {
  text-decoration: none;
  opacity: 0.75;
  filter: alpha(opacity = 75);
  -moz-opacity: 0.75;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#contents .mouseon_alpha a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #fff;
}
#contents a,
a:visited,
a:link {
  text-decoration: none;
}
#contents .clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
#contents .lnk {
  margin-top: -100px;
  padding-top: 100px;
}
/*---------------------------
contents
----------------------------*/
#contents {
  width: 950px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  max-width: 100%;
  color: #595959;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-top: 30px;
}
#contents .popup_news {
  display: block;
}
#contents .popup_ttl {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  border: 1px #ccc solid;
  line-height: 1.5;
  font-size: 13px;
}
#contents .mb_10 {
  margin-bottom: 10px;
}
#contents .popup_ttl a {
  font-size: 13px;
}
#contents .popup_news a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #fff;
}
#contents .con_outer {
  margin-bottom: 80px;
  overflow: hidden;
  margin-bottom: 100px;
}
#contents h2 {
  text-align: center;
  color: #ab8333;
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  font-weight: 400;
}
/**************************
   concept
**************************/
#contents #concept {
  text-align: end;
}
#contents #concept img {
  width: 100%;
}
#contents #concept div {
  text-align: left;
  padding: 35px 0 0 4%;
}
#contents #concept h3 {
  font-size: 24px;
  letter-spacing: 0.3em;
  margin-bottom: 15px;
  font-weight: 400;
}
#contents #concept h3 span {
  letter-spacing: 0.15em;
}
#contents #concept p {
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-size: 15px;
}
/**************************
   charm
**************************/
#contents #charm {
  width: 100%;
  overflow: hidden;
}
#contents #charm h2 {
  font-size: 32px;
  margin-bottom: 80px;
}
#contents #charm .list_charm {
  margin-bottom: 160px;
  position: relative;
  z-index: 1;
}
#contents #charm .list_charm::before {
  content: "";
  position: absolute;
  background: url(https://www.lakeresort.jp/rakuten/niji/top/img/bg.png);
  width: 100%;
  height: 100%;
  z-index: -1;
  margin-bottom: -150px;
  top: 80px;
  opacity: 0.75;
}
#contents #charm .list_charm .box_charm {
  display: flex;
  align-items: center;
}
#contents #charm .list_charm:nth-child(even) .box_charm {
  text-align: end;
}
#contents #charm .list_charm:nth-child(even) .box_charm {
  flex-direction: row-reverse;
}
#charm .list_charm:nth-of-type(3) .box_charm {
  align-items: end;
}
#contents #charm .list_charm img {
  width: 60%;
}
#contents #charm .list_charm .box_txt {
  width: 40%;
  text-align: center;
  letter-spacing: 0.15em;
  box-sizing: border-box;
}
#contents #charm .list_charm dl {
  width: 82%;
  margin: 120px auto 0;
  padding: 0;
  text-align: center;
}
#contents #charm .list_charm dl dt {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-bottom: 25px;
  border-bottom: 1px solid #adabab;
}
#contents #charm .list_charm dl dd {
  position: relative;
  padding-top: 15px;
  font-size: 15px;
  margin-left: 0;
}
#contents a i,
#contents #charm .list_charm:nth-child(odd) a i,
#contents #charm .list_charm:nth-child(4n) a i,
#contents #charm .list_charm:nth-child(5n) a i {
  position: absolute;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  vertical-align: auto;
  zoom: 1;
  width: 52px;
  height: 1px;
  right: 43%;
  bottom: -77%;
  background: #595959;
  -webkit-transition: background 500ms ease, -webkit-transform 500ms ease;
  -moz-transition: background 500ms ease, -moz-transform 500ms ease;
  -o-transition: background 500ms ease, -o-transform 500ms ease;
  transition: background 500ms ease, transform 500ms ease;
}
#contents a i:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 15px;
  height: 12px;
  margin-top: -8px;
  border-top: 1px solid #595959;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#contents a:hover i {
  -webkit-transform: translateX(0.5em);
  -moz-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  -o-transform: translateX(0.5em);
  transform: translateX(0.5em);
}
#contents a:hover i:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 15px;
  height: 12px;
  margin-top: -8px;
  border-top: 1px solid #595959;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#contents #charm .list_charm:last-child {
  margin-bottom: 80px;
}
/**************************
   season
**************************/
#contents #season {
  overflow: hidden;
  margin-bottom: 90px;
}
#contents .season_box {
  width: 50%;
  float: left;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
#contents .season_box .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
#contents .season_box:hover .mask {
  opacity: 1;
}
#contents .season_box .caption {
  text-align: center;
  color: #fff;
  position: absolute;
  inset: 0 0 30px 0;
  margin: auto;
  height: fit-content;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: translateY(-75px);
  transition-delay: 0.1s;
}
#contents .season_box:hover .caption {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: translateY(0);
  transition-delay: 0.1s;
}
#contents .season_box .caption span {
  font-size: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  width: 75%;
}
/**************************
   plan
**************************/
#recommend_plan {
  margin: 0 auto 80px;
}
#recommend_plan ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
}
#recommend_plan li {
  margin-bottom: 30px;
  width: 23%;
  list-style-type: none;
}
#recommend_plan li h4 {
  color: #595959;
  font-weight: 400;
}
#recommend_plan .plan_list {
  text-align: right;
  display: block;
}
#recommend_plan .plan_list a {
  background-color: transparent;
  color: #595959;
  text-align: right;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}
/**************************
   pickup
**************************/
#contents .pickup {
  padding: 50px 0 70px;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}
#contents .pickup .slick-slider {
  width: 80%;
  display: flex;
  margin: auto;
  gap: 32px;
}
#slider_pickup .slider_inner .wrp_st {
  margin: 10px 3px;
}
#slider_pickup .slider_inner .wrp_st .ic {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px 0 10px;
  font-size: 13px;
  line-height: 1;
  color: #8e6127;
  border: solid 1px #8e6127;
}
#slider_pickup .slider_inner .wrp_txt .txt {
  margin: 0;
  padding: 0;
}

.gallery_slide {
  display: flex;
  width: 100%;
  height: fit-content;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}
.swiper-wrapper:first-child {
  animation: loop 40s -20s linear infinite;
}
.swiper-wrapper:last-child {
  animation: loop2 40s linear infinite;
}
.swiper-slide {
  display: inline-block;
  width: calc(100% / 4);
  min-width: 240px;
  list-style: none;
  text-align: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/**************************
 access
**************************/
#access h5 {
  padding-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}
#access h6 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0;
}
#access div:after,
#access ul:after,
#access p:after,
#access dd:after {
  content: "";
  display: block;
  clear: both;
}
#access .access_01 {
  height: 500px;
  overflow: hidden;
  position: relative;
}
#access .access_01 img {
  height: 100%;
  overflow: hidden;
  margin-top: -100px;
  object-fit: cover;
}
#access .access_01:after {
  content: "";
  display: block;
  clear: both;
}
#contents #access h2 {
  margin-bottom: -10px;
}
#access .access_map {
  position: relative;
}
#access .access_map::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0px;
  width: 950px;
  height: 90%;
  background-color: #fbede2;
  z-index: -1;
}
#access .access_map .map_img {
  display: flex;
  position: relative;
  justify-content: center;
}

#access .access_map .map_img p:first-child {
  width: 64%;
  padding: 0 0 0px 10px;
  margin-top: 50px;
  margin-bottom: 0;
}
#access .access_map .map_img p:last-child {
  width: 38%;
  margin-left: -2px;
}
#access .access_map p img {
  width: 100%;
}
#access .access_map .point_btn {
  background: url(https://www.lakeresort.jp/rakuten/niji/top/img/yazi.png) no-repeat 15px 18px #402617;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  width: 220px;
  position: absolute;
  right: 12px;
  bottom: 3px;
  text-align: center;
}
#access .access_map .point_btn:hover {
  background-color: #665145;
}
#access .access_map .point_btn:after {
  content: "";
  display: block;
  clear: both;
}
#access .access_detail {
  display: flex;
  margin-top: 50px;
}
#access .con_acc1 {
  width: 30%;
}
#access .access_detail .con_acc1 table {
  border-spacing: 0;
  box-sizing: border-box;
  border-collapse: collapse;
}
#access .access_detail .con_acc1 table tbody {
  border-bottom: solid 1px #ada8a4;
}
#access .access_detail .con_acc1 table th,
.access_detail .con_acc1 table td {
  border: solid 1px #ada8a4;
  border-bottom: none;
}
#access .access_detail .con_acc1 table,
#access .access_detail .con_acc1 table th,
#access .access_detail .con_acc1 table td {
  display: block;
  margin: 0;
}
#access .access_detail .con_acc1 table th {
  background-color: #e4dfdb;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: #000;
}
#access .access_detail .con_acc1 table tr.car th::before {
  content: "\f1b9";
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 0.5em;
  line-height: 1;
}
#access .access_detail .con_acc1 table tr.train th::before {
  content: "\f239";
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 0.5em;
  line-height: 1;
}
#access .access_detail .con_acc1 table tr.airplane th::before {
  content: "\f072";
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 0.5em;
  line-height: 1;
}
#access .access_detail .con_acc2 h4::before {
  content: "\f207";
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 0.5em;
  line-height: 1;
}
#access .access_detail .con_acc1 table td {
  font-size: 12px;
  text-align: left;
  padding: 20px;
  background: #fff;
}
#access .con_acc2 {
  width: 70%;
  box-sizing: border-box;
}
#access .con_acc2 .con_bus {
  border: solid 1px #ada8a4;
}
#access .con_acc2 h4 {
  border-bottom: solid 1px #ada8a4;
  padding: 10px;
  background-color: #e4dfdb;
  margin: 0;
  font-size: 16px;
  color: #000;
  text-align: center;
}
#access .con_acc2 .box_acc {
  overflow: hidden;
  float: left;
  padding-top: 5px;
  background: #fff;
}
#access .bus_1 .box_acc .txtarea {
  width: 50%;
  float: left;
  padding: 15px;
  margin-top: 5px;
  box-sizing: border-box;
}
#access .bus_2 .box_acc .txtarea .txt_bus {
  width: 49%;
  float: left;
  padding: 15px;
  margin-top: 5px;
  box-sizing: border-box;
}
#access .con_acc2 .box_acc .txtarea .txt_bus {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  padding: 0;
}
#access .bus_1 .box_acc .txtarea .txt_bus {
  margin: 10px 0;
}
#access .con_acc2 .txt_limit {
  color: #c00;
  font-weight: 800;
}
#access .con_acc2 .box_acc .txtarea p {
  padding: 0 0 15px 0;
  margin: 0;
}
#access .bus_2 .box_acc a {
  text-decoration: underline;
}
#access .bus_2 .box_acc a:hover {
  text-decoration: none;
}
#access .img_r {
  float: right;
  width: 50%;
  padding: 0 15px 0 0;
  margin: 20px auto;
  box-sizing: border-box;
}
#access .img_r img {
  width: 100%;
  height: auto;
}
#access .con_acc2 .con_course {
  overflow: hidden;
  float: left;
  background: #fff;
}
#access .bus_1 .con_course .box_course {
  padding: 0px 15px 20px;
  margin: 0 auto;
}
#access .bus_2 .con_course .box_course {
  padding: 20px 0 0;
  margin: 0 auto;
}
#access .con_acc2 .con_course .box_course .box_course_left {
  padding: 0;
  float: left;
  width: 49%;
}
#access .unkou_kikan {
  font-weight: bold;
}
#access .con_acc2 .con_course .box_course p {
  display: block;
  width: 88%;
  margin: auto;
}
#access .con_acc2 .con_course .box_course p img {
  width: 100%;
}
#access .con_acc2 .con_course .box_course table {
  border-right: none;
  margin: 10px auto 0;
  border: 1px dotted #999;
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "メイリオ", Meiryo, Helvetica, Arial, sans-serif;
}
#access .con_acc2 .con_course .box_course table th {
  border-right: 1px dotted #999;
  padding: 15px 3px;
  text-align: center;
  border-bottom: 1px dotted #999;
  background: #e9e7da;
  font-size: 11px;
}
#access .con_acc2 .con_course .box_course table td {
  font-weight: bold;
  border-right: 1px dotted #999;
  border-bottom: 1px dotted #999;
  padding: 10px;
  width: 188px;
  font-size: 14px;
  text-align: center;
}
#access .con_acc2 .con_course .box_course .box_course_right {
  width: 49%;
  float: left;
  margin-left: 12px;
}
#access .con_acc2 .con_course .box_course b {
  display: inline-block;
  text-align: left;
  width: 100%;
  font-size: 14px;
  margin: 20px auto;
}
#access .con_acc2 .con_course .con_course .kougengou_time {
  margin: 20px;
}
#access .con_acc2 .con_course .con_course .kougengou_time p {
  text-align: left;
  margin: 0;
  font-size: 14px;
}
#access .con_acc2 .con_course b,
#access .con_acc2 .con_course .kougengou_time a {
  display: inline-block;
  text-align: left;
  width: 100%;
  font-size: 14px;
  padding: 2px;
}
#access .con_acc2 .bus_2 {
  margin-top: 20px;
}
#access .con_acc2 .bus_2 .box_acc {
  padding: 12px;
  background: #fff;
}
#access .con_acc2 .bus_2 .box_acc p,
#access .con_acc2 .bus_2 .box_acc b {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  width: 100%;
  padding: 8px 0;
  margin: 0;
}
/**************************
   footer
**************************/
#contents #footer .plan_link {
  background-color: #442414;
  width: 100%;
  margin: 30px auto 50px;
}
#contents #footer .plan_link a {
  display: inline-block;
  width: 295px;
  box-sizing: border-box;
  background: url(https://www.lakeresort.jp/rakuten/niji/top/img/yazi.png) no-repeat 15px 18px #013567;
  color: #fff;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", serif;
  font-size: 17px;
  padding: 9px;
  text-align: center;
  letter-spacing: 0.05rem;
}
#contents p.bottom_bnr {
  width: 750px;
  margin: auto;
}
#contents .bottom_bnr span {
  font-size: 16px;
}
#contents .bottom_bnr span img {
  width: auto;
}
#access .con_acc2 .bus_2 .box_acc .tel {
  float: right;
  width: 50%;
}
#access .con_acc2 .con_course .box_course p,
#access .con_acc3 .con_course .box_course p {
  font-size: 14px;
  font-weight: bold;
  font-family: "ãƒ’ãƒ©ã‚®ãƒŽæ˜Žæœ Pro W3", "Hiragino Mincho Pro", "MS æ˜Žæœ", "MS Mincho", serif;
  width: 100%;
  text-align: left;
}

.tab_wrap {
  margin: 20px 0;
}
input[type="radio"] {
  display: none;
}
.tab_area {
  font-size: 0;
  margin: 0 10px;
  text-align: center;
}
#tab1:checked ~ .tab_area .tab1_label {
  background: #003466;
  color: #fff;
}
#tab2:checked ~ .tab_area .tab2_label {
  background: #003466;
  color: #fff;
}
.tab_area label {
  width: 300px;
  margin: 0 5px;
  display: inline-block;
  padding: 12px 0;
  color: #000;
  background: #e3e3e3;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  transition: ease 0.2s opacity;
}
.tab_area label:hover {
  background: #003466;
  color: #fff;
}
.panel_area {
  background: #fff;
  padding: 0 15px;
}
#tab1:checked ~ .panel_area #panel1 {
  display: block;
  border: 1px solid #999;
}
#tab2:checked ~ .panel_area #panel2 {
  display: block;
  border: 1px solid #999;
}
.tab_panel {
  width: 100%;
  padding: 20px 15px;
  display: none;
  box-sizing: border-box;
}
.box_course b {
  color: red;
}
tr.red {
  background-color: #ff000014;
}
tr.red td::before {
  content: "※";
  color: red;
}
p.mt_10.mb_30 {
  color: red;
}
