@charset "UTF-8";
/* ---------------------------------

 Page CSS - 各ページ用CSS

 --------------------------------- */
/* ---------------------------------
 page common #ページ共通パーツ
--------------------------------- */
/* page_head_cover ---- */
.page_head_cover{
  width: 100%;
  height: 400px;
  position: relative;
  background-color: #1F81A6;
}
.page_head_cover img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.5;
}
.page_head_cover .page_title{
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.page_head_cover .page_title .page_title_en{
  font-size: 2.5rem;
  text-align: center;
  line-height: 3.0rem;
  color: #fff;
  letter-spacing: 2px;
}
.page_head_cover .page_title h1.page_title_h1{
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  font-weight: normal;
}

@media screen and (max-width: 896px) {
  .page_head_cover{
    height: 250px;
  }
  .page_head_cover img{
    height: 250px;
  }
  .page_head_cover .page_title .page_title_en{
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
/* page_contents ---- */
.page_contents{
  width: 100%;
  padding: 100px 0;
}
.page_contents .page_contents_inner{
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.page_contents .page_contents_inner_short{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
.page_contents_h2{
  width: 100%;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .page_contents{
    padding: 50px 0;
  }
  .page_contents_h2{
    font-size: 1.3rem;
  }
}

/* ---------------------------------
 meal #お食事
--------------------------------- */
.meal_link{
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.meal_link a.meal_link_btn{
  display: block;
  text-align: center;
  color: #1F81A6;
  padding: 15px;
  position: relative;
  border: 1px solid #1F81A6;
  border-radius: 99999px;
  width: 24%;
}
.meal_link a.meal_link_btn::before {
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #1F81A6;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  transition: 0.3s;
}
.meal_link a.meal_link_btn:hover{
  color: #fff;
  background-color: #1F81A6;
}
@media screen and (max-width: 896px) {
  .meal_link{
    margin: 25px 0;
  }
  .meal_link a.meal_link_btn{
    margin-bottom: 10px;
    width: 49%;
    font-size: 0.9rem;
    text-align: left;
    padding: 10px 10px 10px 15px;
  }
}
/* meal_main_title */
.meal_main_title{
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.7rem;
  position: relative;
}
.meal_main_title::before {
  background-color: #1F81A6;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px; /* 線の高さ */
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px; /* 線の長さ */
}
/* meal_box ------- */
.meal_box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-top: 100px; /* ページ内リンク調整用 */
  margin-top: -100px; /* ページ内リンク調整用 */
}
.meal_box.meal_box_mb{
  margin-bottom: 150px;
}
.meal_box .meal_box_photo{
  width: 60%;
}
.meal_box .meal_box_photo img{
  vertical-align: bottom;
}
.meal_box .meal_box_note{
  width: 38%;
  margin-left: 2%;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #F1F1E6;
}
.meal_box h4.meal_title{
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.3rem;
}
.meal_box h4.meal_title span{
  display: inline-block;
  color: #fff;
  padding: 5px 25px;
  border-radius: 9999px;
}
.meal_photo_slider_thumb .slick-track {
  transform: unset !important;
  float: left;
}
.meal_photo_slide_thumb_item {
  opacity: 0.5;
  transition: opacity .3s linear;
}
.meal_photo_slide_thumb_item.slick-current {
  opacity: 1;
}
@media screen and (max-width: 896px) {
  .meal_main_title{
    font-size: 1.5rem;
  }
  .meal_box{
    padding-top: 50px;
    margin-top: -50px;
  }
  .meal_box.meal_box_mb{
    margin-bottom: 50px;
  }
  .meal_box .meal_box_photo{
    width: 100%;
  }
  .meal_box .meal_box_note{
    width: 100%;
    margin-left: 0;
    padding: 20px;
  }
  .meal_box h4.meal_title{
    margin-bottom: 25px;
  }
}
/* slickの矢印のカスタマイズ */
.meal_photo_slider .slick-arrow {
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
.meal_photo_slider .slick-arrow:hover {
  opacity: 0.7;
}
.meal_photo_slider .slick-next::before,
.meal_photo_slider .slick-next::after,
.meal_photo_slider .slick-prev::before,
.meal_photo_slider .slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.meal_photo_slider .slick-next::after,
.meal_photo_slider .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.meal_photo_slider .next_black .slick-next::after,
.meal_photo_slider .next_black .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.meal_photo_slider .slick-next {
  right: 26px;
}
.meal_photo_slider .slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
.meal_photo_slider .slick-prev {
  left: 26px;
}
.meal_photo_slider .slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .meal_photo_slider .slick-next::after,
  .meal_photo_slider .slick-prev::after {
    width: 20px;
    height: 20px;
  }
  .meal_photo_slider .slick-next {
    right: 8px;
  }
  .meal_photo_slider .slick-prev {
    left: 8px;
  }
  .meal_photo_slider .slick-next::after {
    right: 2px;
  }
}

/* ---------------------------------
 news #ニュース
--------------------------------- */
/* news single ------------------------------- */
.news_contents{
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}
.news_date{
  width: 100%;
  margin-bottom: 20px;
}
h2.news_title{
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.news_date .news_date_time{
  margin-right: 10px;
}
.news_cate{
  padding: 1px 10px;
  display: inline-block;
  color: #1F81A6;
  font-size: 14px;
  border-radius: 99999px;
  border: 1px solid #1F81A6;

}
.article_news{
  width: 100%;
  padding: 30px;
  border: 1px solid #EDF0F3;
}
a.btn_tp{
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 15px 10px;
  margin: 10px auto;
  border: 1px solid #696FB1;
  color: #10164C;
  text-align: center;
}
a.btn_tp:hover{
  background-color: #696FB1;
  color: #fff;
}

@media screen and (max-width: 896px) {
  .news_date{
    margin-bottom: 10px;
  }
  h2.news_title{
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .article_news{
    padding: 20px;
  }
}
/* news_list -------------- */
h3.news_list_h3{
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
}
.news_list{
  width:100%;
  max-width: 1200px;
  margin: 0 auto;
}
.news_list .news_list_box{
  width:100%;
  padding: 15px 15px;
  background-color: #fff;
  margin-bottom: 10px;
}
.news_list .news_list_box .news_day{
  margin-right: 10px;
  color: #6C6C6C;
}
.news_list .news_list_box .news_cate{
  padding: 1px 10px;
  font-size: 14px;
  color: #6C6C6C;
  border-radius: 99999px;
  border: 1px solid #6C6C6C;
  margin-right: 10px;
}

/* news archive ------------------------------- */
.news_archive_area{
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 30px auto;
}
.news_archive_area .news_archive_box{
  width: 100%;
  margin: 20px 0;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.news_archive_area .news_archive_box .news_archive_box_img{
  width: 25%;
  margin-right: 5%;
}
.news_archive_area .news_archive_box .news_archive_box_note{
  width: 70%;
}
.news_archive_area .news_archive_box .news_cat{
  padding: 0 10px;
  display: inline-block;
  color: #1F81A6;
  font-size: 14px;
  border-radius: 99999px;
  border: 1px solid #1F81A6;
  margin-left: 10px;
}
h3.news_archive_title{
  width: 100%;
  margin: 10px 0;
  font-size: 1.2rem;
}
.news_archive_area .news_archive_box .news_archive_more{
  width: 100%;
  margin-top: 20px;
}
.news_archive_area .news_archive_box .news_archive_more a{
  display: inline-block;
  padding: 3px 15px;
  border-radius: 99999px;
  background-color: #1F81A6;
  color: #fff;
}
/* category選択用 */
.link_archive_category{
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.link_archive_category a.link_archive_category_link{
  display: block;
  width: 48%;
  max-width: 300px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
}

/* categoryページ用 */
.archive_category_name{
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.archive_category_name span{
  display: block;
  margin: 0 auto;
  width: 70%;
  max-width: 300px;
  color: #fff;
  padding: 2px 10px;
}

@media screen and (max-width: 896px) {
  h3.news_archive_title{
    font-size: 1.0rem;
  }
  .news_archive_area .news_archive_box{
    padding: 20px;
  }
  .news_archive_area .news_archive_box .news_archive_box_img{
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .news_archive_area .news_archive_box .news_archive_box_note{
    width: 100%;
  }
  .news_archive_area .news_archive_box .news_archive_more{
    text-align: right;
  }
}

/* ---------------------------------
 stay #過ごし方から探す
--------------------------------- */
/* タブ関連の設定 */
.stay_tab_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 50px auto;
}
.stay_tab_container .stay_tab {
  width: 19%;
  margin: 0 1% 10px 0;
  padding: 10px;
  border: 1px solid #e0e0e0;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
  font-size: 1.0rem;
  box-sizing: border-box;
}
.stay_tab_container .stay_tab:hover {
  background-color: #1F81A6;
  border: 1px solid #1F81A6;
  color: #fff;
}
.stay_tab_container .stay_tab.active {
  background-color: #1F81A6;
  border: 1px solid #1F81A6;
  color: #fff;
}
/* 本文の設定 */
.stay_content {
    display: none;
}
.stay_content.show {
    display: block;
}
@media screen and (max-width:896px) {
  #stay{
    width: 94%;
    margin: 0 auto;
  }
  .stay_tab_container .stay_tab {
    width: 48%;
    margin: 0 1% 15px 1%;
    font-size: 0.7rem;
  }
}
/* 本文内のCSSは以下より */
h3.stay_content_h3{
  width: 100%;
  margin: 50px 0;
  text-align: center;
  font-size: 1.5rem;
}
.stay_list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.stay_list .stay_list_box{
  width: 23%;
  margin: 15px 1%;
}
.stay_list .stay_list_box .stay_list_img{
  width: 100%;
}
.stay_list .stay_list_box .stay_list_facility{
  width: 100%;
  margin-top: 10px;
  font-size: 0.8rem;
}
.stay_list .stay_list_box h4.stay_list_h4{
  width: 100%;
}
.stay_list .stay_list_box .stay_list_feature01{
  width: 100%;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.stay_list .stay_list_box .stay_list_feature01 .stay_feature01_icon{
  width: 49%;
  padding: 3px;
  text-align: center;
  background-color: #1F81A6;
  color: #fff;;
  font-size: 0.9rem;
  border-radius: 10px;
}
.stay_list .stay_list_box .stay_list_feature02{
  width: 100%;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.stay_list .stay_list_box .stay_list_feature02 .stay_feature02_item{
  width: 50%;
  padding: 5px 5px 5px 40px;
  background-position: left 5px center;
  background-repeat: no-repeat;
  background-size: 30px 30px; 
  line-height: 30px;
  font-size: 0.8rem;
  /* 折り返しの対応 */
  overflow-wrap: break-word;
  &.bath {
    background-image: url("../img/stay/bath.svg");
  }
  &.sauna {
    background-image: url("../img/stay/sauna.svg");
  }
  &.pool {
    background-image: url("../img/stay/pool.svg");
  }
  &.freebar {
    background-image: url("../img/stay/freebar.svg");
  }
  &.dogrun {
    background-image: url("../img/stay/dogrun.svg");
  }
  &.fire {
    background-image: url("../img/stay/fire.svg");
  }
}
.stay_list .stay_list_box .stay_list_more{
  width: 100%;
  margin-top: 10px;
}
.stay_list .stay_list_box .stay_list_more a.stay_list_more_btn{
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #1F81A6;
  padding: 3px 10px;
  border: 1px solid #1F81A6;
  border-radius: 10px;
}
.stay_list .stay_list_box .stay_list_more a.stay_list_more_btn:hover{
  color: #fff;
  background-color: #1F81A6;
}
@media screen and (max-width:896px) {
  h3.stay_content_h3{
    margin: 30px 0;
    font-size: 1.3rem;
  }
  .stay_list .stay_list_box{
    width: 48%;
    margin: 15px 1%;
  }
  .stay_list .stay_list_box .stay_list_feature01 .stay_feature01_icon{
    width: 100%;
    padding: 3px;
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  .stay_list .stay_list_box .stay_list_feature02 .stay_feature02_item{
    width: 100%;
    padding: 0px 0px 5px 40px;
    font-size: 0.8rem;
  }
  .stay_list .stay_list_box .stay_list_more a.stay_list_more_btn{
    font-size: 0.8rem;
  }
}